diff --git a/docs/API/BlobClass.md b/docs/API/BlobClass.md
index 42ba5e21e84d44..f609db9dfdf2a3 100644
--- a/docs/API/BlobClass.md
+++ b/docs/API/BlobClass.md
@@ -30,7 +30,8 @@ The Blob class lets you create and manipulate [blob objects](../Concepts/dt_blob
| Parameter | Type | | Description |
| --------- | --------------- | :-: | ------------ |
-| blob | Blob or 4D.Blob | -> | Blob to copy |
+| blobScal | Blob | -> | Blob to copy |
+| blobObj | 4D.Blob | -> | Blob to copy |
| Result | 4D.Blob | <- | New 4D.Blob |
diff --git a/docs/API/CollectionClass.md b/docs/API/CollectionClass.md
index 39c269f2da33f4..7b652287f12e87 100644
--- a/docs/API/CollectionClass.md
+++ b/docs/API/CollectionClass.md
@@ -531,7 +531,7 @@ If the collection contains objects, you can pass the *propertyPath* parameter. I
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|value|Text, Number, Boolean, Date, Object, Collection|->|Value to count|
+|value|any|->|Value to count|
|propertyPath|Text|->|Object property path to be used for calculation|
|Result|Real|<-|Number of occurrences of the value |
@@ -922,10 +922,10 @@ $c2:=$c.extract("name";"City";"zc";"Zip") //$c2=[{Zip:35060},{City:null,Zip:3504
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|value|number, Text, Collection, Object, Date, Boolean|->|Filling value|
+|value|any|->|Filling value|
|startFrom|Integer|->|Start index (included)|
|end|Integer|->|End index (not included)|
-|Result|collection|<-|Original collection with filled values|
+|Result|Collection|<-|Original collection with filled values|
@@ -1438,7 +1438,7 @@ $c2:=$c.flatMap($f; $c.sum())
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|toSearch|expression|->|Expression to search in the collection|
+|toSearch| Expression |->|Expression to search in the collection|
|startFrom|Integer|->|Index to start the search at|
|Result|Boolean |<-|True if *toSearch* is found in the collection|
@@ -1508,7 +1508,7 @@ Optionally, you can pass the index of collection from which to start the search
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|toSearch|expression|->|Expression to search in the collection|
+|toSearch| Expression |->|Expression to search in the collection|
|startFrom|Integer|->|Index to start the search at|
|Result|Integer |<-|Index of the first occurrence of toSearch in the collection, -1 if not found|
@@ -1780,7 +1780,7 @@ $last:=$emptyCol.last() // returns Undefined
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|toSearch|expression|->|The element that is to be searched for within the collection|
+|toSearch| Expression |->|The element that is to be searched for within the collection|
|startFrom|Integer|->|Index to start the search at|
|Result|Integer |<-|Index of last occurrence of toSearch in the collection, -1 if not found|
@@ -1947,7 +1947,7 @@ $c2:=$c.map(Formula(Round(($1.value/$2)*100; 2)); $c.sum())
|Parameter|Type||Description|
|---------|--- |:---:|------|
|propertyPath|Text|->|Object property path to be used for evaluation|
-|Result|Boolean, Text, Number, Collection, Object, Date |<-|Maximum value in the collection|
+|Result|any |<-|Maximum value in the collection|
@@ -2001,7 +2001,7 @@ If the collection is empty, `.max()` returns *Undefined*.
|Parameter|Type||Description|
|---------|--- |:---:|------|
|propertyPath|Text|->|Object property path to be used for evaluation|
-|Result|Boolean, Text, Number, Collection, Object, Date |<-|Minimum value in the collection|
+|Result|any |<-|Minimum value in the collection|
@@ -2882,9 +2882,9 @@ More examples of queries can be found in the `dataClass.query()` page. Note howe
|---------|--- |:---:|------|
|formula|4D.Function|->|Formula object|
|methodName|Text|->|Name of a method|
-|initValue |Text, Number, Object, Collection, Date, Boolean|->|Value to use as the first argument to the first call of *formula* or *methodName*|
-|param |expression|->|Parameter(s) to pass|
-|Result|Text, Number, Object, Collection, Date, Boolean |<-|Result of the accumulator value|
+|initValue |any|->|Value to use as the first argument to the first call of *formula* or *methodName*|
+|param | Expression |->|Parameter(s) to pass|
+|Result|any |<-|Result of the accumulator value|
@@ -2975,9 +2975,9 @@ With the following ***Flatten*** method:
|---------|--- |:---:|------|
|formula|4D.Function|->|Formula object|
|methodName|Text|->|Name of a method|
-|initValue |Text, Number, Object, Collection, Date, Boolean|->|Value to use as the first argument to the first call of *formula* or *methodName*|
-|param |expression|->|Parameter(s) to pass|
-|Result|Text, Number, Object, Collection, Date, Boolean |<-|Result of the accumulator value|
+|initValue |any|->|Value to use as the first argument to the first call of *formula* or *methodName*|
+|param | Expression |->|Parameter(s) to pass|
+|Result|any |<-|Result of the accumulator value|
@@ -3134,7 +3134,7 @@ If you try to remove an element from an empty collection, the method does nothin
|Parameter|Type||Description|
|---------|--- |:---:|------|
|size |Integer|->|New size of the collection|
-|defaultValue |Number, Text, Object, Collection, Date, Boolean|->|Default value to fill new elements|
+|defaultValue |any|->|Default value to fill new elements|
|Result|Collection|<-|Resized original collection|
@@ -3588,7 +3588,7 @@ If the collection contains objects, pass the *propertyPath* parameter to indicat
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|value |Text, Number, Object, Collection, Date |->|Value(s) to insert at the beginning of the collection|
+|value |any |->|Value(s) to insert at the beginning of the collection|
|Result|Collection|<-|Collection containing added element(s)
|
diff --git a/docs/API/CryptoKeyClass.md b/docs/API/CryptoKeyClass.md
index ec92757d67908b..0908f8baf84922 100644
--- a/docs/API/CryptoKeyClass.md
+++ b/docs/API/CryptoKeyClass.md
@@ -316,7 +316,7 @@ The returned value is the public key.
|Parameter|Type||Description|
|---|----|---|---|
-|message|Text OR Blob|->|Message to sign|
+|message|Text, Blob|->|Message to sign|
|options|Object|->|Signing options|
|Result|Text|<-|Signature in Base64 or Base64URL representation, depending on "encoding" option|
@@ -395,7 +395,7 @@ Contains the name of the key type - "RSA", "
|Parameter|Type||Description|
|---|---|---|---|
-|message|Text OR Blob|->|Message that was used to produce the signature|
+|message|Text, Blob|->|Message that was used to produce the signature|
|signature|Text|->|Signature to verify, in Base64 or Base64URL representation, depending on `options.encoding` value|
|options|Object|->|Signing options|
|Result|Object|<-|Status of the verification|
diff --git a/docs/API/DataClassClass.md b/docs/API/DataClassClass.md
index 6ec0d8d43a7016..48f108abb7796c 100644
--- a/docs/API/DataClassClass.md
+++ b/docs/API/DataClassClass.md
@@ -444,7 +444,7 @@ In this example, the first entity will be created and saved but the second will
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|primaryKey |Integer OR Text|->|Primary key value of the entity to retrieve|
+|primaryKey |Integer, Text|->|Primary key value of the entity to retrieve|
|settings |Object|->|Build option: context|
|Result|4D.Entity|<-|Entity matching the designated primary key|
diff --git a/docs/API/FileClass.md b/docs/API/FileClass.md
index 8c3c3a49835fa0..d0dd588985fe4f 100644
--- a/docs/API/FileClass.md
+++ b/docs/API/FileClass.md
@@ -695,7 +695,7 @@ $app.setAppInfo($info)
|Parameter|Type||Description|
|---|---|---|---|
-|content|BLOB|->|New contents for the file|
+|content|Blob|->|New contents for the file|
#### Description
diff --git a/docs/API/IMAPTransporterClass.md b/docs/API/IMAPTransporterClass.md
index 62574427369fd0..5577ddcbce1271 100644
--- a/docs/API/IMAPTransporterClass.md
+++ b/docs/API/IMAPTransporterClass.md
@@ -1060,7 +1060,7 @@ You want to retrieve the 20 most recent emails without changing their "seen" sta
|msgNumber|Integer|-> |Sequence number of the message|
|msgID|Text|-> |Unique ID of the message|
|updateSeen|Boolean|->|If True, the message is marked "seen" in the mailbox. If False the message is left untouched.|
-|Result|BLOB|<-|Blob of the MIME string returned from the mail server|
+|Result|Blob|<-|Blob of the MIME string returned from the mail server|
#### Description
diff --git a/docs/API/MailAttachmentClass.md b/docs/API/MailAttachmentClass.md
index 1219e3c35720ed..e6a504a294cf10 100644
--- a/docs/API/MailAttachmentClass.md
+++ b/docs/API/MailAttachmentClass.md
@@ -43,7 +43,7 @@ Attachment objects provide the following read-only properties and functions:
|---------|--- |:---:|------|
|file|4D.File|->|Attachment file|
|zipFile|4D.ZipFile|->|Attachment Zipfile|
-|blob|4D.Blob|->|BLOB containing the attachment|
+|blob|4D.Blob|->|Blob containing the attachment|
|path|Text|->|Path of the attachment file|
|name|Text|->|Name + extension used by the mail client to designate the attachment|
|cid|Text|->|ID of attachment (HTML messages only), or " " if no cid is required|
diff --git a/docs/API/SessionClass.md b/docs/API/SessionClass.md
index 4ac82bcf84d507..d762871e420982 100644
--- a/docs/API/SessionClass.md
+++ b/docs/API/SessionClass.md
@@ -22,15 +22,16 @@ Session objects are returned by the [`Session`](../commands/session.md) command.
The following types of sessions are supported by this class:
-- [**Web user sessions**](WebServer/sessions.md): Web user sessions are available when [scalable sessions are enabled in your project](WebServer/sessions.md#enabling-web-sessions). They are used for Web and REST connections, and can be assigned privileges.
-- [**Remote client user sessions**](../Desktop/clientServer.md#remote-user-sessions): In client/server applications, remote users have their own sessions managed on the server.
-- [**Stored procedures session**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): All stored procedures executed on the server share the same virtual user session.
-- [**Standalone session**](../Project/overview.md#development): Local session object returned in single-user application (useful in development and test phases of client/server applications).
+- [**Web user sessions**](WebServer/sessions.md): Web user sessions are available when [scalable sessions are enabled in your project](WebServer/sessions.md#enabling-web-sessions). They are used for Web connections (including and REST access), and are controlled by assigned [privileges](../ORDA/privileges.md).
+- [**Desktop sessions**](../Desktop/sessions.md), which include:
+ - [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions): In client/server applications, remote users have their own sessions managed on the server.
+ - [**Stored procedures sessions**](../Desktop/sessions.md#stored-procedure-sessions): Virtual user session for all stored procedures executed on the server.
+ - [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions): Local session object returned in single-user application (useful in development and test phases of client/server applications).
-:::note
+:::warning About session privileges
-The availability of properties and functions in the `Session` object depends on the session type.
+All session types can handle privileges, but only the code executed in a **web context** is actually controlled by session's privileges.
:::
@@ -66,7 +67,7 @@ The availability of properties and functions in the `Session` object depends on
|Release|Changes|
|---|---|
-|21|Support of remote sessions|
+|21|Support of remote and standalone sessions|
|18 R6|Added|
@@ -83,15 +84,9 @@ The availability of properties and functions in the `Session` object depends on
#### Description
-:::note
-
-This function does nothing and always returns **True** with stored procedure sessions and standalone sessions.
-
-:::
The `.clearPrivileges()` function removes all the privileges associated to the session (excluding promoted privileges) and returns **True** if the execution was successful.
-Unless in ["forceLogin" mode](../REST/authUsers.md#force-login-mode), the session automatically becomes a Guest session. In "forceLogin" mode, `.clearPrivileges()` does not transform the session to a Guest session, it only clears the session's privileges.
:::note
@@ -99,22 +94,25 @@ This function does not remove **promoted privileges** from the web process, whet
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
+
+
#### Example
```4d
//Invalidate a web user session
-var $isGuest : Boolean
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest is True
```
-
## .createOTP()
@@ -122,7 +120,7 @@ $isGuest:=Session.isGuest() //$isGuest is True
|Release|Changes|
|---|---|
-|21|Support of remote sessions|
+|21|Support of remote and standalone sessions|
|20 R9|Added|
@@ -133,31 +131,27 @@ $isGuest:=Session.isGuest() //$isGuest is True
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|lifespan|Integer|->|Session token lifespan in seconds|
+|lifespan|Integer|->|Session token lifespan in seconds (web sessions only)|
|Result|Text|<-|UUID of the token|
#### Description
-:::note
-
-This function is available with web user sessions and remote sessions. It returns an empty string in stored procedure and standalone sessions.
-
-:::
-
The `.createOTP()` function creates a new OTP (One Time Passcode) for the session and returns its token UUID. This token is unique to the session in which it was generated.
+
For more information about the OTP tokens, please refer to [this section](../WebServer/sessions.md#session-token-otp).
-You can set a custom timeout by passing a value in seconds in *lifespan*. If an expired token is used to restore a session, it is ignored. By default, if the *lifespan* parameter is omitted:
+If an expired token is used to restore a session, it is ignored.
-- with web user sessions, the token is created with the same lifespan as the [`.idleTimeOut`](#idletimeout) of the session.
-- with remote sessions, the token is created with a 10 seconds lifespan.
+For web sessions, you can set a custom timeout by passing a value in seconds in *lifespan*. By default, if the *lifespan* parameter is omitted, the token is created with the same lifespan as the [`.idleTimeOut`](#idletimeout) of the session.
-For **web user sessions**, the returned token can be used in exchanges with third-party applications or websites to securely identify the session. For example, the session OTP token can be used with a payment application.
+For desktop sessions, the token is created with a 10 seconds lifespan.
-For **remote sessions**, the returned token can be used on 4D Server to identitfy requests coming from a [remote 4D running Qodly forms in a Web area](../Desktop/clientServer.md#remote-user-sessions).
+The returned token can be used in exchanges with third-party applications or websites to securely identify the session. For example, the session OTP token can be used with a payment application.
+
+The returned token can be used by 4D Server or 4D single-user application to identify requests coming from the web that [share the session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Example
@@ -192,12 +186,6 @@ $token := Session.createOTP( 60 ) //the token is valid for 1 mn
#### Description
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.demote()` function removes the promoted privilege whose id you passed in *promoteId* from the web process, if it was previously added by the [`.promote()`](#promote) function.
If no privilege with *promoteId* was promoted using [`.promote()`](#promote) in the web process, the function does nothing.
@@ -261,8 +249,10 @@ This property is only available with web user sessions.
The `.expirationDate` property contains the expiration date and time of the session cookie. The value is expressed as text in the ISO 8601 format: `YYYY-MM-DDTHH:MM:SS.mmmZ`.
+
This property is **read-only**. It is automatically recomputed if the [`.idleTimeout`](#idletimeout) property value is modified.
+
#### Example
```4d
@@ -280,7 +270,7 @@ $expiration:=Session.expirationDate //eg "2021-11-05T17:10:42Z"
|Release|Changes|
|---|---|
-|21|Support of remote client sessions|
+|21|Support of remote and standalone sessions|
|20 R6|Added|
@@ -298,15 +288,18 @@ $expiration:=Session.expirationDate //eg "2021-11-05T17:10:42Z"
The `.getPrivileges()` function returns a collection of all the privilege names associated to the session.
+
:::note
This function returns privileges assigned to a Session using the [`setPrivileges()`](#setprivileges) function only. Promoted privileges are NOT returned by the function, whether they are added through the [roles.json](../ORDA/privileges.md#rolesjson-file) file or the [`promote()`](#promote) function.
:::
-With remote client sessions, the privileges only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
-With stored procedure sessions and standalone sessions, this function returns a collection only containing "WebAdmin".
#### Example
@@ -382,7 +375,7 @@ $privileges := Session.getPrivileges()
|Release|Changes|
|---|---|
-|21|Returns True for promoted privileges, Support of remote client sessions|
+|21|Returns True for promoted privileges, Support of remote and standalone sessions|
|18 R6|Added|
@@ -409,27 +402,29 @@ This function returns True for the *privilege* if called from a function that wa
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
-With stored procedure sessions and standalone sessions, this function always returns True, whatever the *privilege*.
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Example
-You want to check if the "WebAdmin" privilege is associated to the web user session:
+You want to check if the "CreateInvoices" privilege is associated to the web user session:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Access is granted, do nothing
+If (Session.hasPrivilege("CreateInvoices"))
+ //Access to Invoice creation features
Else
- //Display an authentication page
+ //No access to Invoice creation features
End if
```
#### See also
-[*Blog posts about this feature*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog post)](https://blog.4d.com/?s=hasPrivilege)
@@ -480,7 +475,7 @@ You can use this property to get the [`.storage`](#storage) object of a session
:::note
-This property is only available with web user sessions.
+This property is only available with web user sessions.
:::
@@ -526,27 +521,18 @@ End if
#### Description
-:::note
-
-This property is only available with remote client, stored procedure, and standalone sessions.
-:::
-
-The `.info` property describes the remote client or stored procedure session on the server, or the standalone session.
+The `.info` property describes the desktop or web session.
-:::note
+- **Remote sessions** and **Stored procedure sessions**: The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command.
+- **Standalone sessions**: The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command.
-- The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command for remote client and stored procedure sessions.
-- The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command for a standalone session.
-
-
-:::
The `.info` object contains the following properties:
|Property|Type|Description|
|---|---|---|
-|type|Text|Session type: "remote", "storedProcedure", "standalone"|
+|type|Text|Session type: "remote", "storedProcedure", "standalone", "rest", "web"|
|userName|Text|4D user name (same value as [`.userName`](#username))|
|machineName|Text|Remote sessions: name of the remote machine. Stored procedures session: name of the server machine. Standalone session: name of the machine|
|systemUserName|Text|Remote sessions: name of the system session opened on the remote machine. |
@@ -584,18 +570,25 @@ Since `.info` is a computed property, it is recommended to call it once and then
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|Result|Boolean|<-|True if session is a Guest one, False otherwise|
+|Result|Boolean|<-|True if session is a Guest one, False otherwise (web sessions only)|
#### Description
:::note
-This function always returns **False** with remote client, stored procedure, and standalone sessions.
+This function always returns **False** with desktop sessions.
:::
-The `.isGuest()` function returns True if the session is a Guest session (i.e. it has no privileges).
+
+The `.isGuest()` function returns True as long as `setPrivileges()` is not called in the session or after a [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) has been executed in the session.
+
+:::note Compatibility
+
+With legacy sessions, `.isGuest()` returns True if the session has no privileges.
+
+:::
#### Example
@@ -635,14 +628,9 @@ End if
#### Description
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.promote()` function adds the privilege defined in the *privilege* parameter to the current process during the execution of the calling function and returns the id of the promoted privilege.
+
Dynamically adding privileges is useful when access rights depend on the execution context, which cannot be fully defined in the "roles.json" file. This is particularly relevant when the same function can be executed by users with different access levels. The use of `.promote()` ensures that only the current process is granted the necessary privileges, without affecting others.
The function does nothing and returns 0 if:
@@ -657,6 +645,12 @@ The returned id is incremented each time a privilege is dynamically added to the
To remove a privilege dynamically, call the `demote()` function with the appropriate id.
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
+
+
#### Example
Several users connect to a single endpoint that serves different applications. A user from application #1 does not need the "super_admin" privilege because they don't create "VerySensitiveInfo". A user from application #2 needs "super_admin" privilege.
@@ -717,14 +711,10 @@ End if
#### Description
-:::note
-
-This function is only available with web user sessions. It returns False in other contexts.
-
-:::
The `.restore()` function replaces the current web user session with their original session corresponding to the *token* UUID. Session's storage and privileges are restored.
+
If the original user session has been correctly restored, the function returns `true`.
The function returns `false` if:
@@ -766,7 +756,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
|Release|Changes|
|---|---|
-|21|Support of remote client sessions|
+|21|Support of remote and standalone sessions|
|19 R8|Support of "roles" Settings property|
|18 R6|Added|
@@ -786,12 +776,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Description
-:::note
-
-This function does nothing and always returns **False** with stored procedure sessions and standalone sessions.
-
-:::
-
The `.setPrivileges()` function associates the privilege(s) and/or role(s) defined in the parameter to the session and returns **True** if the execution was successful.
- In the *privilege* parameter, pass a string containing a privilege name (or several comma-separated privilege names).
@@ -816,7 +800,10 @@ By default when no privilege or role is associated to the session, the session i
The [`userName`](#username) property is available at session object level (read-only).
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Example
@@ -850,7 +837,7 @@ End if
|Release|Changes|
|---|---|
-|20 R5|Support of remote client and stored procedure sessions|
+|20 R5|Support of desktop sessions|
|18 R6|Added|
@@ -861,7 +848,7 @@ End if
The `.storage` property contains a shared object that can be used to store information available to all processes of the session.
-When a `Session` object is created, the `.storage` property is empty. Since it is a shared object, this property will be available in the `Storage` object of the server.
+When a `Session` object is created, the `.storage` property is empty. Since it is a shared object, this property will be available in the `Storage` object of the server.
> Like the `Storage` object of the server, the `.storage` property is always "single": adding a shared object or a shared collection to `.storage` does not create a shared group.
@@ -873,6 +860,8 @@ You can get the `.storage` property of a session using the [`Session storage`](.
:::
+When a desktop session and a web session are [shared using an OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), they also share the same `.storage` object.
+
#### Web session example
@@ -912,7 +901,7 @@ End use
|Release|Changes|
|---|---|
-|20 R5|Support of remote client and stored procedure sessions|
+|20 R5|Support of desktop sessions|
|18 R6|Added|
@@ -923,11 +912,11 @@ End use
The `.userName` property contains the user name associated to the session. You can use it to identify the user within your code.
-- With web sessions, this property is an empty string by default. It can be set using the `privileges` property of the [`setPrivileges()`](#setprivileges) function.
-- With remote and stored procedure sessions, this property returns the same user name as the [`Current user`](../commands-legacy/current-user.md) command.
-- With standalone sessions, this property contains "designer" or the name set with the [`SET USER ALIAS`](../commands-legacy/set-user-alias.md) command.
+- **Web sessions**: This property is an empty string by default. It can be set using the `privileges` property of the [`setPrivileges()`](#setprivileges) function.
+- **Remote/Stored procedure sessions**: This property returns the same user name as the [`Current user`](../commands-legacy/current-user.md) command.
+- **Standalone sessions**: This property contains "designer" or the name set with the [`SET USER ALIAS`](../commands-legacy/set-user-alias.md) command.
-This property is **read only**.
+This property is **read only** for desktop sessions.
diff --git a/docs/API/SystemWorkerClass.md b/docs/API/SystemWorkerClass.md
index 228e3591743fc9..e7e01e632158dc 100644
--- a/docs/API/SystemWorkerClass.md
+++ b/docs/API/SystemWorkerClass.md
@@ -103,7 +103,7 @@ All callback functions receive two object parameters. Their contents depend on t
|---|---|---|---|---|---|---|
|$param1|Object|SystemWorker|SystemWorker|SystemWorker|SystemWorker|SystemWorker|
|$param2.type|Text|"response"|"data"|"error"|"error"|"termination"|
-|$param2.data|Text or Blob||received data|error data|||
+|$param2.data|Text, Blob||received data|error data|||
Here is the sequence of callback calls:
diff --git a/docs/API/TCPListenerClass.md b/docs/API/TCPListenerClass.md
index aa44e71d1d1796..634613dcbf405a 100644
--- a/docs/API/TCPListenerClass.md
+++ b/docs/API/TCPListenerClass.md
@@ -74,7 +74,7 @@ TCPListener objects provide the following properties and functions:
|Parameter|Type| |Description|
|---|---|---|---|
-|port|Number|->|TCP port to listen|
+|port|Real|->|TCP port to listen|
|options|Object|->|Configuration [options](#options-parameter) for the listener|
|Result|4D.TCPListener|<-|New TCPListener object|
diff --git a/docs/API/UDPSocketClass.md b/docs/API/UDPSocketClass.md
index d0142612926de6..3122b4a036e50a 100644
--- a/docs/API/UDPSocketClass.md
+++ b/docs/API/UDPSocketClass.md
@@ -51,7 +51,7 @@ UDPSocket objects provide the following properties and functions:
|---|---|---|---|
|port|Integer|->|Local port used for UDP socket (0 or omitted = find any unused port to use)|
|options|Object|->|Configuration [options](#options-parameter) for the socket|
-|Result|UDPSocket|<-|New UDPSocket object|
+|Result|4D.UDPSocket|<-|New UDPSocket object|
diff --git a/docs/API/VectorClass.md b/docs/API/VectorClass.md
index dccf506d875bcb..4307df9ed6f9a4 100644
--- a/docs/API/VectorClass.md
+++ b/docs/API/VectorClass.md
@@ -52,7 +52,7 @@ Vector objects are shared, immutable, and streamable.
|Parameter|Type||Description|
|---|---|---|---|
-|parameter|Collection of reals|->|Collection of real numbers representing a vector|
+|parameter|Collection|->|Collection of real numbers representing a vector|
|Result|4D.Vector|<-|New Vector object|
diff --git a/docs/API/WebFormClass.md b/docs/API/WebFormClass.md
index 8dbb4b7206aa72..306a80dd34ded5 100644
--- a/docs/API/WebFormClass.md
+++ b/docs/API/WebFormClass.md
@@ -63,7 +63,7 @@ While `myForm` may not display typical object properties when examined in the de
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|state|string|->|Name of state to disable from the web page|
+|state|Text|->|Name of state to disable from the web form|
#### Description
@@ -88,7 +88,7 @@ For more information on web pages states, please refer to the [States section in
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|state|string|->|Name of state to enable on the web pages|
+|state|Text|->|Name of state to enable on the web form|
#### Description
@@ -122,7 +122,7 @@ Function authenticationError()
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|msg|string|->|Error message to display in the web page|
+|msg|Text|->|Error message to display in the web form|
#### Description
@@ -155,7 +155,7 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|msg|string|->|Information message to display in the web page|
+|msg|Text|->|Information message to display in the web form|
#### Description
@@ -188,7 +188,7 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|msg|string|->|Warning message to display in the web page|
+|msg|Text|->|Warning message to display in the web form|
#### Description
@@ -218,4 +218,4 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
[Web Form](../commands/web-form.md)
[Web Event](../commands/web-event.md)
-[WebFormItem class](../API/WebFormItemClass.md)
\ No newline at end of file
+[WebFormItem class](../API/WebFormItemClass.md)
diff --git a/docs/API/WebFormItemClass.md b/docs/API/WebFormItemClass.md
index e21473dece77d5..3d49e86a185f10 100644
--- a/docs/API/WebFormItemClass.md
+++ b/docs/API/WebFormItemClass.md
@@ -39,7 +39,7 @@ For example, `WebFormObject.myImage` refers to the image component with `myImage
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|className|string|->|Name of the CSS class to add to the component|
+|className|Text|->|Name of the CSS class to add to the component|
#### Description
@@ -92,7 +92,7 @@ exposed Function isHidden()
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|className|string|->|Name of the CSS class to remove from the component|
+|className|Text|->|Name of the CSS class to remove from the component|
#### Description
diff --git a/docs/API/WebSocketConnectionClass.md b/docs/API/WebSocketConnectionClass.md
index 8149e23bb067ee..961f0a6130288a 100644
--- a/docs/API/WebSocketConnectionClass.md
+++ b/docs/API/WebSocketConnectionClass.md
@@ -74,7 +74,7 @@ This property is read-only.
|Parameter|Type||Description|
|---------|--- |:---:|------|
-|message|Text / Blob / Object|->|The message to send|
+|message|Text, Blob, Object|->|The message to send|
#### Description
diff --git a/docs/API/WebSocketServerClass.md b/docs/API/WebSocketServerClass.md
index af6284a96d6c49..f73fa81eebad77 100644
--- a/docs/API/WebSocketServerClass.md
+++ b/docs/API/WebSocketServerClass.md
@@ -248,7 +248,7 @@ As a result of the `WSHandler.onConnection` callback, pass a `connectionHandler`
|ws||[`4D.WebSocketConnection`](WebSocketConnectionClass.md)|<-|Current WebSocket connection object|
|event||Object|<-|Parameters|
||type|Text||"message"|
-||data|Text / Blob / Object||data sent by the client|
+||data|Text, Blob, Object||data sent by the client|
This Callback for WebSocket data. Called each time the WebSocket receives data.
diff --git a/docs/Admin/cli.md b/docs/Admin/cli.md
index c3be1cd20e42e0..276bdc42b4774c 100644
--- a/docs/Admin/cli.md
+++ b/docs/Admin/cli.md
@@ -50,7 +50,7 @@ Syntax:
|`--skip-onstartup`||Launches the project without executing any "automatic" methods, including the `On Startup` and `On Exit` database methods|
|`--startup-method`|Project method name (string)|Project method to execute immediately after the `On Startup` database method (if not skipped with `--skip-onstartup`).|
-(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (licence alert, conversion dialog, database selection, data file selection). In such case, an error message is thrown both in the stderr stream and the system event log, and then the application quits.
+(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). In such case, an error message is thrown both in the stderr stream and the system event log, and then the application quits.
### Examples
diff --git a/docs/Admin/data-collect.md b/docs/Admin/data-collect.md
index 587032eadcc4a0..2943b399c7f1bd 100644
--- a/docs/Admin/data-collect.md
+++ b/docs/Admin/data-collect.md
@@ -34,6 +34,7 @@ Some data is also collected at regular intervals.
|cacheReadBytes|Object|Number of bytes read from cache|
|cacheReadCount|Object|Number of reads in the cache |
|cacheSize|Number|Cache size in bytes|
+|classUsage|Object|Number of instances of certain language classes|
|compiled|Boolean|True if the application is compiled|
|connectionSystems|Collection|Client OS without the build number (in parenthesis) and number of clients using it|
|CPU|Text|Name, type, and speed of the processor|
diff --git a/docs/Admin/licenses.md b/docs/Admin/licenses.md
index 21f3482586ffa2..2d75cf1056dd21 100644
--- a/docs/Admin/licenses.md
+++ b/docs/Admin/licenses.md
@@ -38,7 +38,7 @@ Deployment licenses can be embedded at build step by the developer or entered at
Some 4D licenses have an expiry date, after which they must be renewed. When the license subscription is renewed on 4D Store, your licenses are automatically updated in your 4D applications at startup [when you log](GettingStarted/Installation.md) in the Welcome Wizard.
-In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licences Manager dialog box.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
diff --git a/docs/Admin/webAdmin.md b/docs/Admin/webAdmin.md
index 0e520dc29a1b46..361980b453d2cd 100644
--- a/docs/Admin/webAdmin.md
+++ b/docs/Admin/webAdmin.md
@@ -1,24 +1,30 @@
---
id: webAdmin
-title: WebAdmin
+title: Web Administration Server
---
-An embedded web server component, named `WebAdmin`, is used by 4D and 4D Server to provide a secured web access to specific management features such as the [Data Explorer](dataExplorer.md). You can connect locally or remotely to this web server from a browser or any web application and access the associated 4D application.
+An embedded web server component, named `WebAdmin`, is used by 4D and 4D Server to provide a secured web access to specific features:
-The WebAdmin handles the authentication of users with "WebAdmin" privileges, so that they can open administration sessions and access dedicated interfaces.
+- REST accesses to the project
+- the [Data Explorer](dataExplorer.md)
+- the [Qodly Studio preview rendering](https://developer.4d.com/qodly/4DQodlyPro/rendering#preview-in-qodly-studio)
+
+You can connect locally or remotely to this web server from a browser or any web application and access the associated 4D application.
+
+The Web Administration Server handles the authentication of users with `WebAdmin` privileges, so that they can open administration sessions and access dedicated interfaces.
This feature can be used in 4D applications running headless as well as 4D applications running with interfaces.
-## Starting the WebAdmin web server
+## Starting the Web Administration Server
-By default, the `WebAdmin` web server is not launched. You need to configure the launch at startup, or (in versions with interface) launch it manually using a menu item.
+By default, the Web Administration Server web server is not launched. You need to configure the launch at startup, or (in versions with interface) launch it manually using a menu item.
### Launch at startup
-You can configure the `WebAdmin` web server to be launched at 4D or 4D Server application startup (before any project is loaded).
+You can configure the Web Administration Server to be launched at 4D or 4D Server application startup (before any project is loaded).
- If you use a 4D application with interface, select the **File > Web Administration > Settings...** menu item.
@@ -35,26 +41,26 @@ Check the **Launch WebAdmin server at startup** option in the settings dialog bo
open ~/Desktop/4D.app --webadmin-auto-start true
```
-> If the TCP port used by the `WebAdmin` web server ([HTTPS](#https-port) or [HTTP](#http-port), depending on the settings) is not free at startup, 4D will try successively the 20 following ports, and use the first one that is available. If no port is available, the web server is not launched and an error is displayed or (headless application) logged in the console.
+> If the TCP port used by the Web Administration Server ([HTTPS](#https-port) or [HTTP](#http-port), depending on the settings) is not free at startup, 4D will try successively the 20 following ports, and use the first one that is available. If no port is available, the web server is not launched and an error is displayed or (headless application) logged in the console.
### Start and stop
-If you use a 4D application with interface, you can start or stop the `WebAdmin` web server for your project at any moment:
+If you use a 4D application with interface, you can start or stop the Web Administration Server for your project at any moment:
Select the **File > Web Administration > Start Server** menu item.

-The menu item becomes **Stop Server** when the server is launched; select **Stop Server** to stop the `WebAdmin` web server.
+The menu item becomes **Stop Server** when the server is launched; select **Stop Server** to stop the Web Administration Server.
-## WebAdmin Settings
+## Settings {#settings}
-Configuring the `WebAdmin` component is mandatory in particular to define the [**access key**](#access-key). By default when the access key is not set, access via a URL is not allowed.
+Configuring the Web Administration Server is mandatory in particular to define the [**access key**](#access-key). By default when the access key is not set, access via a URL is not allowed.
-You can configure the `WebAdmin` component using the [Web Administration settings dialog box](#settings-dialog-box) (see below).
+You can configure the Web Administration Server using the [Web Administration settings dialog box](#settings-dialog-box) (see below).
> If you use a headless 4D application, you can use [*Command Line Interface* arguments](#webadmin-headless-configuration) to define basic settings. You will have to customize the settings file to define advanced parameters.
@@ -71,29 +77,32 @@ The following dialog box is displayed:
#### Launch WebAdmin server at startup
-Check this option if you want the `WebAdmin` web server to be automatically launched when the 4D or 4D Server application starts ([see above](#launch-at-startup)). By default, this option is not checked.
+Check this option if you want the Web Administration Server to be automatically launched when the 4D or 4D Server application starts ([see above](#launch-at-startup)). By default, this option is not checked.
#### Accept HTTP connections on localhost
-When this option is checked, you will be able to connect to the `WebAdmin` web server through HTTP on the same machine as the 4D application. By default, this option is checked.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTP on the same machine as the 4D application. By default, this option is checked.
+
+:::note Notes
-**Notes:**
- Connections with HTTP other than localhost are never accepted.
- Even if this option is checked, when [Accept HTTPS](#accept-https) is checked and the TLS configuration is valid, localhost connections use HTTPS.
+:::
+
#### HTTP Port
-Port number to use for connections through HTTP to the `WebAdmin` web server when the **Accept HTTP connections on localhost** option is checked. Default value is 7080.
+Port number to use for connections through HTTP to the Web Administration Server when the **Accept HTTP connections on localhost** option is checked. Default value is 7080.
#### Accept HTTPS
-When this option is checked, you will be able to connect to the `WebAdmin` web server through HTTPS. By default, this option is checked.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTPS. By default, this option is checked.
#### HTTPS Port
-Port number to use for connections through HTTPS to the `WebAdmin` web server when the **Accept HTTPS** option is checked. Default value is 7443.
+Port number to use for connections through HTTPS to the Web Administration Server when the **Accept HTTPS** option is checked. Default value is 7443.
#### Certificate folder path
@@ -112,7 +121,7 @@ Status or format of the HTTP request log file (HTTPDebugLog_*nn*.txt, stored in
#### Access Key
-Defining an access key is mandatory to unlock access to the `WebAdmin` web server through a URL (access via a 4D menu command does not require an access key). When no access key is defined, no web client is allowed to connect through a URL to a web administration interface like the [Data Explorer page](dataExplorer.md). An error page is returned in case of connection request:
+Defining an access key is mandatory to unlock access to the Web Administration Server through a URL (access via a 4D menu command does not require an access key). When no access key is defined, no web client is allowed to connect through a URL to a web administration interface like the [Data Explorer page](dataExplorer.md). An error page is returned in case of connection request:

@@ -132,10 +141,16 @@ This option only appears if the Qodly Studio license is activated.
This option enables user access to [Qodly Studio](../WebServer/qodly-studio.md) at the 4D application level. Note that you also need to [enable the access at every project level](../settings/web.md#enable-access-to-qodly-studio).
+:::note
+
+This option is automatically checked if you used the [One-click configuration dialog box](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration).
-## WebAdmin Headless Configuration
+:::
-All [WebAdmin settings](#webadmin-settings) are stored in the `WebAdmin.4DSettings` file. There is one default `WebAdmin.4DSettings` file per 4D and 4D Server application, so that it is possible to deploy multiple applications on the same host machine.
+
+## Headless Configuration
+
+All [Web Administration Server settings](#settings) are stored in the `WebAdmin.4DSettings` file. There is one default `WebAdmin.4DSettings` file per 4D and 4D Server application, so that it is possible to deploy multiple applications on the same host machine.
When running a 4D or 4D Server application headless, you can set and use the default `WebAdmin.4DSettings` file, or designate a custom `.4DSettings` file.
@@ -155,12 +170,19 @@ Example:
```
-## Authentication and Session
+## Authentication
+
+When a web page controlled by the Web Administration Server is accessed by entering a URL and without prior identification, an authentication is required. The user must enter the [access key](#access-key) in an authentication dialog box:
-- When a web management page is accessed by entering a URL and without prior identification, an authentication is required. The user must enter the [access key](#access-key) in an authentication dialog box. If the access key was not defined in the `WebAdmin` settings, no access via URL is possible.
+
-- When a web management page is accessed directly from a 4D or 4D Server menu item (such as **Records > Data Explorer** or **Window > Data Explorer** (4D Server)), access is granted without authentication, the user is automatically authenticated.
+If the access key was not defined in the Web Administration Server settings, no access via URL is possible (a specific message is displayed).
+
+When a web page controlled by the Web Administration Server page is accessed directly from a 4D or 4D Server menu item (such as **Records > Data Explorer** or **Window > Data Explorer** (4D Server)), access is granted without authentication, the user is automatically authenticated.
+
+:::note
-Once the access is granted, a web [session](WebServer/sessions.md) with the "WebAdmin" privilege is created on the 4D application. As long as the current session has "WebAdmin" privilege, the `WebAdmin` component delivers requested pages.
+Once the access is granted, a [web session](WebServer/sessions.md) with a specific "WebAdmin" privilege is created by the Web Administration Server. This privilege provides an open access to all data through web processes, as soon as no [specific permissions are applied to resources](../ORDA/privileges.md).
+:::
diff --git a/docs/Concepts/quick-tour.md b/docs/Concepts/quick-tour.md
index 5cc1d247e13bb2..ef70f0c93c3289 100644
--- a/docs/Concepts/quick-tour.md
+++ b/docs/Concepts/quick-tour.md
@@ -438,5 +438,6 @@ In the following example, the **Carriage return** character (escape sequence `\r
The following conventions are used in the 4D language documentation:
- the `{ }` characters (braces) indicate optional parameters. For example, `.delete( { option : Integer } )` means that the *option* parameter may be omitted when calling the function.
-- the `{ ; ...param }` notation indicates an unlimited number of parameters. For example, `.concat( value : any { ;...valueN } ) : Collection` means that an unlimited number of values of any type can be passed to the function.
+- the `{; ...*param* : Type}` notation indicates an unlimited number of parameters of the same type. For example, `.concat( value : any { ;...valueN : Text } ) : Collection` means that an unlimited number of values of any type can be passed to the function.
+- the `{; ...(*param* : Type ; *param2* : Type) }` notation indicates an unlimited number of groups of parameters. For example, `COLLECTION TO ARRAY ( collection : Collection ; array : Array {; propertyName : Text}{; ...(array : Array ; propertyName : Text) } )` means that an unlimited number of couple values or type array/text can be passed to the command.
- the `any` keyword is used for parameters that can be of any type (number, text, boolean, date, time, object, collection...).
diff --git a/docs/Debugging/debugger.md b/docs/Debugging/debugger.md
index 1738c604e6db42..0d64012a0115cf 100644
--- a/docs/Debugging/debugger.md
+++ b/docs/Debugging/debugger.md
@@ -42,7 +42,7 @@ The Debugger window is usually displayed on the machine where the code is execut
:::note Notes
- If the server is running headless, no debugger window can be displayed on the server, you need to use the remote debugger. See [Debugging from remote machines](./debugging-remote.md).
-- You can also [attach the Qodly Studio debugger to a 4D Server application](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) if you need to debug Qodly pages in a deployed environment.
+- You can also [attach the Qodly Studio debugger to a 4D Server application](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) if you need to debug Qodly pages in a deployed environment.
:::
diff --git a/docs/Desktop/building.md b/docs/Desktop/building.md
index ce888da259c689..50798254db6eb3 100644
--- a/docs/Desktop/building.md
+++ b/docs/Desktop/building.md
@@ -410,8 +410,8 @@ Items must be installed:
To enable this feature, add the `DatabaseToEmbedInClientWinFolder` and/or `DatabaseToEmbedInClientMacFolder` keys in the *buildApp* settings file. When one of these keys is present, the client application building process generates a single-user application: the compiled structure, instead of the *EnginedServer.4Dlink* file, is placed in the "Database" folder.
-* If a default data folder exists in the single-user application, a licence is embedded.
-* If no default data folder exists in the single-user application, it will be executed without data file and without licence.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
The basic scenario is:
@@ -500,10 +500,12 @@ The following optional modules can be deselected:
* **SpellChecker**: Used for built-in [spellchecking features](../FormObjects/properties_Entry.md#auto-spellcheck) and commands available for input areas and 4D Write Pro areas.
* **4D Updater**: Controls the [automatic update](#what-is-a-clientserver-application) of client parts and is used by the `SET UPDATE FOLDER` command for [automated server updates](#automatic-updating-of-server-or-single-user-applications).
+* **4D Qodly Pro and Data Explorer**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/) as well as the [Data Explorer](../Admin/dataExplorer.md).
+
## Licenses & Certificate page
-The Licences & Certificate page can be used to:
+The Licenses & Certificate page can be used to:
* configure the [deployment license(s)](../Admin/licenses.md#deployment-licenses) that you want to integrate into your [stand-alone](#application-page) or [client-server](#clientserver-page) application,
* sign the application by means of a certificate in macOS.
@@ -543,7 +545,7 @@ An internet connection is required on the user machine at the first launch of th
- The [`License info`](../commands/license-info.md) command allows you to know the application license type (*.attributes* collection) and its expiration date (*.expirationDate* object).
- The BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) xml key allows you to manage evaluation versions.
-- The [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/docs/Desktop/clientServer.md b/docs/Desktop/clientServer.md
index d4fd324c4ae7de..79aa509e085e31 100644
--- a/docs/Desktop/clientServer.md
+++ b/docs/Desktop/clientServer.md
@@ -86,97 +86,3 @@ However, you need to pay attention to the following behavior differences compare
> It is not recommended to install plug-ins or components at the 4D or 4D Server application level.
-
-## Remote user sessions
-
-On the server, the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. This object is handled through the functions and properties of the [`Session` class](../API/SessionClass.md).
-
-:::tip Related blog posts
-
-[4D remote session object with Client/Server connection and Stored procedure](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
-
-:::
-
-### Usage
-
-The `session` object allows you to handle information and privileges for the remote user session.
-
-You can share data between all processes of the user session using the [`session.storage`](../API/SessionClass.md#storage) shared object. For example, you can launch a user authentication and verification procedure when a client connects to the server, involving entering a code sent by e-mail or SMS into the application. You then add the user information to the session storage, enabling the server to identify the user. This way, the 4D server can access user information for all client processes, enabling customized code to be written according to the user's role.
-
-You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
-
-
-### Availability
-
-The remote user `session` object is available from:
-
-- Project methods that have the [Execute on Server](../Project/code-overview.md#execute-on-server) attribute (they are executed in the "twinned" process of the client process),
-- Triggers,
-- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword,
-- `On Server Open Connection` and `On Server Shutdown Connection` database methods.
-
-:::info
-
-All stored procedures on the server share the same virtual user session. For more information, see [this page on doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Sharing the session with Qodly pages in Web areas
-
-Remote client sessions can be used to handle Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
-
-To manage this configuration, you need to use remote client sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip Related blog post
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-
-
-#### Example
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-*resetPrivileges()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-*getOTP()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/docs/Desktop/sessions.md b/docs/Desktop/sessions.md
new file mode 100644
index 00000000000000..9640ca6317e88a
--- /dev/null
+++ b/docs/Desktop/sessions.md
@@ -0,0 +1,172 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Session types
+
+Desktop sessions include:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+
+The following diagram shows the different session types and how they interact:
+
+
+
+
+
+
+
+## Remote user sessions
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. This object is handled through the functions and properties of the [`Session` class](../API/SessionClass.md).
+
+:::note
+
+On a remote 4D, the `session` object always returns null.
+
+:::
+
+
+:::tip Related blog posts
+
+[4D remote session object with Client/Server connection and Stored procedure](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
+
+:::
+
+### Usage
+
+The `session` object allows you to handle information and privileges for the remote user session.
+
+You can share data between all processes of the user session using the [`session.storage`](../API/SessionClass.md#storage) shared object. For example, you can launch a user authentication and verification procedure when a client connects to the server, involving entering a code sent by e-mail or SMS into the application. You then add the user information to the session storage, enabling the server to identify the user. This way, the 4D server can access user information for all client processes, enabling customized code to be written according to the user's role.
+
+You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
+
+
+### Availability
+
+The remote user `session` object is available from:
+
+- Project methods that have the [Execute on Server](../Project/code-overview.md#execute-on-server) attribute (they are executed in the "twinned" process of the client process),
+- Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+
+## Stored procedure sessions
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Usage
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Availability
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### Usage
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Availability
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+
+:::tip Related blog post
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+
+
+### Example
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/docs/Develop/explorer.md b/docs/Develop/explorer.md
new file mode 100644
index 00000000000000..2076bcd29e4d72
--- /dev/null
+++ b/docs/Develop/explorer.md
@@ -0,0 +1,78 @@
+---
+id: explorer
+title: Explorer
+---
+
+The Explorer is a window in the Design environment that gives you convenient access to tables, forms, methods, built-in 4D commands, constants and plug-ins. It also provides information about these items. You can display the Explorer at any time by choosing one of the pages in the **Design > Explorer** sub-menu or by clicking on the **Explorer** button in the toolbar.
+
+:::note
+
+For a comprehensive description of the Explorer, please refer to the [Explorer chapter on doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Explorer.200-7676561.en.html).
+
+:::
+
+
+## Forms page
+
+The Forms page contains three lists: **Project Forms**, **Table Forms**, and **Qodly Pages**.
+
+
+### Qodly Pages
+
+
+
+This section allows you to view the list of Qodly pages defined your project. You can also add or open pages.
+
+
+The pages listed in the Qodly Pages section are stored in the [**WebForm** subfolder](../Project/architecture.md#webforms) of the project's Sources folder.
+
+:::note
+
+Qodly pages are not visible in the **Home** page of the Explorer.
+
+:::
+
+
+### Requirements
+
+Qodly pages are created and edited in [Qodly Studio](https://developer.4d.com/qodly/4DQodlyPro/qodlyStudioInterface), a web-based development tool. Accessing Qodly Studio from 4D requires some [specific configurations](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#requirements), that you [can set in one click](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration).
+
+### Adding or opening a Qodly page
+
+You can add or open Qodly pages directly from the 4D Explorer. If [requirements](#requirements) are met, the page is opened in the [Page editor of Qodly Studio](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview).
+
+To add a page:
+
+- Select **New Qodly page...** in the contextual menu,
+
+
+- or click the **+** icon or select **New Qodly page...** in the bottom area of the Explorer.
+
+
+Enter the name of the page and click **OK** to open the page in Qodly Studio:
+
+
+
+
+
+To open a page:
+
+- double-click on a Qodly page name, or
+- right-click on a Qodly page name and select **Edit...** in the contextual menu.
+
+
+
+### Renaming or deleting a Qodly page
+
+Renaming or deleting a Qodly page can only be done in the [Page editor of Qodly Studio](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview).
+
+Click on the pen icon to rename the page:
+
+
+Click on the options button and select **Delete** to delete a page:
+
+
+A confirmation dialog box is displayed.
+
+
+
diff --git a/docs/Extensions/develop-components.md b/docs/Extensions/develop-components.md
index 5c3c898ecc6110..7b82d4136dc26e 100644
--- a/docs/Extensions/develop-components.md
+++ b/docs/Extensions/develop-components.md
@@ -462,6 +462,33 @@ Executing initialization or closing code is done by means of the `On Host Databa
> For security reasons, you must explicitly authorize the execution of the `On Host Database Event` database method in the host database in order to be able to call it. To do this, you must check the [**Execute "On Host Database Event" method of the components** option](../settings/security.md#options) in the Security page of the Settings.
+## Custom icon
+
+You can use a **custom icon** for your dependency, so that it can be visually distinguished from other components in the [Project Dependencies panel](../Project/components.md#monitoring-project-dependencies).
+
+When no custom icon is defined, components use a **default icon**:
+
+
+
+To declare a custom icon for your component:
+
+1. Create a picture file for the icon and name it `logo.svg` or `logo.png`. Note that the picture will be displayed with a square shape (and automatically resized if necessary). The **svg** format is recommended.
+
+2. Copy the icon file in the [**Resources folder**](../Project/architecture.md#resources) of the component.
+
+
+The logo file will be used in the Project Dependency window for the component, whether it is interpreted or [built](../Desktop/building.md#build-component).
+
+
+
+
+:::note
+
+If both a `logo.svg` and `logo.png` files are found, the `logo.svg` takes priority.
+
+:::
+
+
## Info.plist
Components can have an `Info.plist` file at their [root folder](../Project/architecture.md) to provide extra information readable by the system (macOS only) and the [Dependency manager](../Project/components.md#loading-components).
diff --git a/docs/FormObjects/subform_overview.md b/docs/FormObjects/subform_overview.md
index fdb1e05fdb1abe..e7326eab48a66c 100644
--- a/docs/FormObjects/subform_overview.md
+++ b/docs/FormObjects/subform_overview.md
@@ -189,12 +189,21 @@ Communication between the parent form and the instances of the subform may requi
> The `GOTO OBJECT` command looks for the destination object in the parent form even if it is executed from a subform.
-#### CALL SUBFORM CONTAINER command
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
The `CALL SUBFORM CONTAINER` command lets a subform instance send an [event](../Events/overview.md) to the subform container object, which can then process it in the context of the parent form. The event is received in the container object method. It may be at the origin of any event detected by the subform (click, drag-and-drop, etc.).
The code of the event is unrestricted (for example, 20000 or -100). You can use a code that corresponds to an existing event (for example, 3 for `On Validate`), or use a custom code. In the first case, you can only use events that you have checked in the Property List for subform containers. In the second case, the code must not correspond to any existing form event. It is recommended to use a negative value to be sure that this code will not be used by 4D in future versions.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
For more information, refer to the description of the `CALL SUBFORM CONTAINER` command.
#### EXECUTE METHOD IN SUBFORM command
diff --git a/docs/Notes/updates.md b/docs/Notes/updates.md
index f66a02ec73c1fc..6434de2e81cfa4 100644
--- a/docs/Notes/updates.md
+++ b/docs/Notes/updates.md
@@ -12,6 +12,8 @@ Read [**What’s new in 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2
- [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) has been enhanced to provide greater precision in error detection (see [this blog post](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) for more information).
- [4D Write Pro standard actions](../WritePro/user-legacy/standard-actions.md) that apply [lists](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) now automatically adjust paragraph margins to keep markers positioned inside it.
- Built-in support of `order by` in query strings for AI vector searches using [`query()`](../API/DataClassClass.md#query-by-vector-similarity) functions and the [REST API](../REST/$orderby.md).
+- You can now create and open Qodly Pages from the [Explorer](../Develop/explorer.md).
+- You can [customize the icons of your components](../Extensions/develop-components.md#custom-icon).
- 4D AIKit component: new [File API](../aikit/Classes/OpenAIFilesAPI.md) class to implement **file upload** features.
- [**Find in Design**](../Project/search-replace.md#search-in-components) and [**Replace in contents**](../Project/search-replace.md#replace-in-contents) features can now support editable components.
- [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=21_R2): list of all bugs that have been fixed in 4D 21 R2.
@@ -28,7 +30,7 @@ Read [**What’s new in 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2
|Library|Current version|Updated in 4D|Comment|
|---|---|---|----|
-|BoringSSL|9b86817|**21 R2**|Used for QUIC|
+|BoringSSL|9b86817|**21**|Used for QUIC|
|CEF|7258|**21**|Chromium 139|
|Hunspell|1.7.2|20|Used for spell checking in 4D forms and 4D Write Pro|
|ICU|77.1|**21**|This upgrade forces an automatic rebuild of alphanumeric, text and object indexes.|
@@ -38,10 +40,10 @@ Read [**What’s new in 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2
|Libuv |1.51.0|**21**|Used for QUIC|
|libZip|1.11.4|**21**|Used by zip class, 4D Write Pro, svg and serverNet components|
|LZMA|5.8.1|**21**||
-|ngtcp2|1.18.0|**21 R2**|Used for QUIC|
+|ngtcp2|1.18.0|**21**|Used for QUIC|
|OpenSSL|3.5.2|**21**||
|PDFWriter|4.7.0|**21**|Used for [`WP Export document`](../WritePro/commands/wp-export-document.md) and [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
-|SpreadJS|17.1.0|20 R7|See [this blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) for an overview of the new features|
+|SpreadJS|18.2.0|21 R2|See [this blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-21-r2/) for an overview of the new features|
|webKit|WKWebView|19||
|Xerces|3.3.0|**21**|Used for XML commands|
|Zlib|1.3.1|**21**||
diff --git a/docs/Project/architecture.md b/docs/Project/architecture.md
index 0d3ddfef1e0bae..f74c0f92bce87f 100644
--- a/docs/Project/architecture.md
+++ b/docs/Project/architecture.md
@@ -73,33 +73,44 @@ styleSheets_windows.css|Windows css style sheets (from converted binary database
+#### `Classes`
+
+Contents|Description|Format
+--------|-------|----
+*className*.4dm|User class definition method, allowing to instantiate specific objects. One file per class, the name of the file is the class name|text
+
+
#### `DatabaseMethods`
Contents|Description|Format
--------|-------|----
*databaseMethodName*.4dm|Database methods defined in the project. One file per database method|text
-#### `Methods`
+#### `Forms`
Contents|Description|Format
--------|-------|----
-*methodName*.4dm|Project methods defined in the project. One file per method|text
+*formName*/form.4DForm|Project form description|json
+*formName*/method.4dm|Project form method|text
+*formName*/Images/*pictureName*|Project form static picture|picture
+*formName*/ObjectMethods/*objectName*.4dm|Object methods. One file per object method|text
-#### `Classes`
+
+#### `Methods`
Contents|Description|Format
--------|-------|----
-*className*.4dm|User class definition method, allowing to instantiate specific objects. One file per class, the name of the file is the class name|text
+*methodName*.4dm|Project methods defined in the project. One file per method|text
-#### `Forms`
+#### `Shared`
Contents|Description|Format
--------|-------|----
-*formName*/form.4DForm|Project form description|json
-*formName*/method.4dm|Project form method|text
-*formName*/Images/*pictureName*|Project form static picture|picture
-*formName*/ObjectMethods/*objectName*.4dm|Object methods. One file per object method|text
+assets/|[Shared files](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#shared-folder) such as pictures used in Qodly pages|various
+CustomComponents/|[Custom components](https://developer.4d.com/qodly/Integrations/customComponent/overview) files used in Qodly pages|json
+*other_files*.json|shared elements such as css or datasources used in Qodly pages|json
+
#### `TableForms`
@@ -124,6 +135,15 @@ table_*n*.4dm|Trigger methods defined in the project. One trigger file per table
The .4dm file extension is a text-based file format, containing the code of a 4D method. It is compliant with source control tools.
+#### `WebForms`
+
+Contents|Description|Format
+--------|-------|----
+*QodlyFormName*.WebForm|Json representations of Qodly pages|JSON
+crafted_components.json|Description of [components crafted](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/craftedComponents) on Qodly pages|JSON
+
+
+
### `Trash`
The Trash folder contains methods and forms that were deleted from the project (if any). It can contain the following folders:
diff --git a/docs/REST/authUsers.md b/docs/REST/authUsers.md
index 2a1befa8b3a399..e9758e3e0b085d 100644
--- a/docs/REST/authUsers.md
+++ b/docs/REST/authUsers.md
@@ -35,7 +35,7 @@ Descriptive REST requests are always processed by the server, even if no web use
2. You call your [`authentify()` function](#function-authentify) (created beforehand), in which you check the user credentials and call [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) with appropriate privileges. `authentify()` must be an exposed [datastore class function](../ORDA/ordaClasses.md#datastore-class).
-3. The `/rest/$catalog/authentify` request is sent to the server along with user credentials. This step only requires a basic login form that do not access data; it can be a [Qodly page](../WebServer/qodly-studio.md) (called via the `/rest/$getWebForm` request).
+3. The `/rest/$catalog/authentify` request is sent to the server along with user credentials. This step only requires a basic login form that do not access data; it can be a [Qodly page](https://developer.4d.com/qodly/) (called via the `/rest/$getWebForm` request).
4. If the user is successfully authentified, a 4D license is consumed on the server and all REST requests are accepted.
diff --git a/docs/ServerWindow/monitor.md b/docs/ServerWindow/monitor.md
index ba5230fdd0236a..2661132d1a645a 100644
--- a/docs/ServerWindow/monitor.md
+++ b/docs/ServerWindow/monitor.md
@@ -35,7 +35,7 @@ The "Overview" area provides various information concerning the system, applicat

-Usually, you will need to check the [**Licences Manager**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Details Area
diff --git a/docs/WebServer/sessions.md b/docs/WebServer/sessions.md
index de6ef58170d98c..0312e26638390d 100644
--- a/docs/WebServer/sessions.md
+++ b/docs/WebServer/sessions.md
@@ -10,7 +10,7 @@ Web sessions allow to:
- handle multiple requests simultaneously from the same web client through an unlimited number of preemptive processes (web sessions are **scalable**),
- manage session through a `Session` object and the [Session API](API/SessionClass.md),
- store and share data between processes of a web client using the [.storage](../API/SessionClass.md#storage) of the session,
-- associate privileges to the user running the session.
+- associate [privileges](../ORDA/privileges.md) to the user running the session.
:::tip Related blog post
@@ -18,12 +18,19 @@ Web sessions allow to:
:::
+:::note
+
+Destkop applications (client/server and single-user) also provide 4D developers with [specific sessions](../Desktop/sessions.md).
+
+:::
+
+
## Usages
Web sessions are used for:
- [Web applications](gettingStarted.md) sending http requests (including [SOAP Web services](../commands/theme/Web_Services_Server.md) and [/4DACTION](../WebServer/httpRequests.md#4daction) requests),
-- calls to the [REST API](../REST/authUsers.md), which are used by [remote datastores](../ORDA/remoteDatastores.md) and [Qodly forms](qodly-studio.md).
+- calls to the [REST API](../REST/authUsers.md), which are used by [remote datastores](../ORDA/remoteDatastores.md) and [Qodly forms](https://developer.4d.com/qodly/).
## Enabling web sessions {#enabling-web-sessions}
@@ -65,7 +72,7 @@ The cookie name can be get using the [`.sessionCookieName`](API/WebServerClass.m
:::note
-Creating a web session for a REST request may require that a licence is available, see [this page](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -73,11 +80,7 @@ The `Session` object of the current session can then be accessed through the [`S

-:::info
-Web processes usually do not end, they are recycled in a pool for efficiency. When a process finishes executing a request, it is put back in the pool and made available for the next request. Since a web process can be reused by any session, [process variables](Concepts/variables.md#process-variables) must be cleared by your code at the end of its execution (using [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) for example). This cleanup is necessary for any process related information, such as a reference to an opened file. This is the reason why **it is recommended** to use the [Session](API/SessionClass.md) object when you want to keep session related information.
-
-:::
## Storing and sharing session information
@@ -102,7 +105,7 @@ When a web session is closed, if the [`Session`](commands/session.md) command is
:::info
-You can close a session from a Qodly form using the [**logout**](qodly-studio.md#logout) feature.
+You can close a session from a Qodly form using the [**logout**](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) feature.
:::
@@ -227,6 +230,13 @@ In 4D, OTP session tokens are useful when calling external URLs and being called
:::
+
+:::note
+
+Session tokens can be shared with [desktop sessions](../Desktop/sessions.md) to implement applications using hybrid sessions.
+
+:::
+
### Overview
The basic sequence of an OTP session token use in a 4D web application is the following:
@@ -492,7 +502,7 @@ A new user is created, and some information is stored in the session, especially
- Both HTTP and HTTPS schemas are supported.
- Only [scalable sessions](#enabling-web-sessions) can be reused with tokens.
- Only sessions of the host database can be reused (sessions created in component web servers cannot be restored).
-- Tokens are not supported with client/server sessions or single-user sessions.
+- Tokens can be **shared** with [desktop sessions](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses) for hybrid accesses (desktop and web).
### Lifespan
diff --git a/docs/WritePro/commands-legacy/wp-bookmark-range.md b/docs/WritePro/commands-legacy/wp-bookmark-range.md
index 8a33a3afeb3745..6037d517587753 100644
--- a/docs/WritePro/commands-legacy/wp-bookmark-range.md
+++ b/docs/WritePro/commands-legacy/wp-bookmark-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-bookmark-range
displayed_sidebar: docs
---
-**WP Bookmark range** ( *wpDoc* ; *bkName* ) : Object
+**WP Bookmark range** ( *wpDoc* : Object ; *bkName* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-compute-formulas.md b/docs/WritePro/commands-legacy/wp-compute-formulas.md
index d4a9f74ef5845f..0484c16a07f703 100644
--- a/docs/WritePro/commands-legacy/wp-compute-formulas.md
+++ b/docs/WritePro/commands-legacy/wp-compute-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-compute-formulas
displayed_sidebar: docs
---
-**WP COMPUTE FORMULAS** ( *targetObj* )
+**WP COMPUTE FORMULAS** ( *targetObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-bookmark.md b/docs/WritePro/commands-legacy/wp-delete-bookmark.md
index a00dfe08a47445..821b51f53e15b6 100644
--- a/docs/WritePro/commands-legacy/wp-delete-bookmark.md
+++ b/docs/WritePro/commands-legacy/wp-delete-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-bookmark
displayed_sidebar: docs
---
-**WP DELETE BOOKMARK** ( *wpDoc* ; *bkName* )
+**WP DELETE BOOKMARK** ( *wpDoc* : Object ; *bkName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-footer.md b/docs/WritePro/commands-legacy/wp-delete-footer.md
index 48e277868d4139..fdd6dc65106c0d 100644
--- a/docs/WritePro/commands-legacy/wp-delete-footer.md
+++ b/docs/WritePro/commands-legacy/wp-delete-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-footer
displayed_sidebar: docs
---
-**WP DELETE FOOTER** ( *wpSection* )
+**WP DELETE FOOTER** ( *wpSection* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-header.md b/docs/WritePro/commands-legacy/wp-delete-header.md
index e1149f36168456..6f46ea58537c95 100644
--- a/docs/WritePro/commands-legacy/wp-delete-header.md
+++ b/docs/WritePro/commands-legacy/wp-delete-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-header
displayed_sidebar: docs
---
-**WP DELETE HEADER** ( *wpSection* )
+**WP DELETE HEADER** ( *wpSection* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-picture.md b/docs/WritePro/commands-legacy/wp-delete-picture.md
index 1a2d10eb24c942..19d0963a9a6b82 100644
--- a/docs/WritePro/commands-legacy/wp-delete-picture.md
+++ b/docs/WritePro/commands-legacy/wp-delete-picture.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-picture
displayed_sidebar: docs
---
-**WP DELETE PICTURE** ( *imgObj* )
+**WP DELETE PICTURE** ( *imgObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-style-sheet.md b/docs/WritePro/commands-legacy/wp-delete-style-sheet.md
index d247fc1d64b1ff..db1f70258afd50 100644
--- a/docs/WritePro/commands-legacy/wp-delete-style-sheet.md
+++ b/docs/WritePro/commands-legacy/wp-delete-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-style-sheet
displayed_sidebar: docs
---
-**WP DELETE STYLE SHEET** ( *styleSheetObj* ) | (*wpDoc* ; *styleSheetName* )
+**WP DELETE STYLE SHEET** ( *styleSheetObj* : Object )
**WP DELETE STYLE SHEET** (*wpDoc* : Object ; *styleSheetName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-delete-text-box.md b/docs/WritePro/commands-legacy/wp-delete-text-box.md
index bbacc0b466d715..71d2e3c6cae07c 100644
--- a/docs/WritePro/commands-legacy/wp-delete-text-box.md
+++ b/docs/WritePro/commands-legacy/wp-delete-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-text-box
displayed_sidebar: docs
---
-**WP DELETE TEXT BOX** ( *textBox* )
+**WP DELETE TEXT BOX** ( *textBox* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-find-all.md b/docs/WritePro/commands-legacy/wp-find-all.md
index b77aa1ce41dfce..5d6abb385e6a1b 100644
--- a/docs/WritePro/commands-legacy/wp-find-all.md
+++ b/docs/WritePro/commands-legacy/wp-find-all.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-all
displayed_sidebar: docs
---
-**WP Find all** ( *targetObj* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) : Collection
+**WP Find all** ( *targetObj* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-find-next.md b/docs/WritePro/commands-legacy/wp-find-next.md
index 564f987874b374..7f911d5a683717 100644
--- a/docs/WritePro/commands-legacy/wp-find-next.md
+++ b/docs/WritePro/commands-legacy/wp-find-next.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-next
displayed_sidebar: docs
---
-**WP Find next** ( *targetObj* ; *searchAfter* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) : Object
+**WP Find next** ( *targetObj* : Object ; *searchAfter* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-find-previous.md b/docs/WritePro/commands-legacy/wp-find-previous.md
index 4fea79198b9e6b..c589d4ad093a6e 100644
--- a/docs/WritePro/commands-legacy/wp-find-previous.md
+++ b/docs/WritePro/commands-legacy/wp-find-previous.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-previous
displayed_sidebar: docs
---
-**WP Find previous** ( *targetObj* ; *searchBefore* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) : Object
+**WP Find previous** ( *targetObj* : Object ; *searchBefore* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-freeze-formulas.md b/docs/WritePro/commands-legacy/wp-freeze-formulas.md
index 7ee0fbcb871a71..eb6bf42f2378c9 100644
--- a/docs/WritePro/commands-legacy/wp-freeze-formulas.md
+++ b/docs/WritePro/commands-legacy/wp-freeze-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-freeze-formulas
displayed_sidebar: docs
---
-**WP FREEZE FORMULAS** ( *targetObj* {; *recompute*} )
+**WP FREEZE FORMULAS** ( *targetObj* : Object {; *recompute* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-body.md b/docs/WritePro/commands-legacy/wp-get-body.md
index 580a13d8d28e6e..2d12c11bbc0e7c 100644
--- a/docs/WritePro/commands-legacy/wp-get-body.md
+++ b/docs/WritePro/commands-legacy/wp-get-body.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-body
displayed_sidebar: docs
---
-**WP Get body** ( *wpDoc* ) : Object
+**WP Get body** ( *wpDoc* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-bookmarks.md b/docs/WritePro/commands-legacy/wp-get-bookmarks.md
index 7fea5c8d6808b9..4fae72dc6a0280 100644
--- a/docs/WritePro/commands-legacy/wp-get-bookmarks.md
+++ b/docs/WritePro/commands-legacy/wp-get-bookmarks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-bookmarks
displayed_sidebar: docs
---
-**WP GET BOOKMARKS** ( *wpDoc* ; *arrBKNames* )
+**WP GET BOOKMARKS** ( *wpDoc* : Object ; *arrBKNames* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-breaks.md b/docs/WritePro/commands-legacy/wp-get-breaks.md
index 19807b1c4109e7..899496b49be4a3 100644
--- a/docs/WritePro/commands-legacy/wp-get-breaks.md
+++ b/docs/WritePro/commands-legacy/wp-get-breaks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-breaks
displayed_sidebar: docs
---
-**WP Get breaks** ( *targetObj* {; *breakType*} ) : Collection
+**WP Get breaks** ( *targetObj* : Object {; *breakType* : Integer} ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-data-context.md b/docs/WritePro/commands-legacy/wp-get-data-context.md
index f6cce43ef2e6f9..6aa87dd8a51164 100644
--- a/docs/WritePro/commands-legacy/wp-get-data-context.md
+++ b/docs/WritePro/commands-legacy/wp-get-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-data-context
displayed_sidebar: docs
---
-**WP Get data context** ( *wpDoc* ) : Object
+**WP Get data context** ( *wpDoc* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-element-by-id.md b/docs/WritePro/commands-legacy/wp-get-element-by-id.md
index 4f881da28a7911..9276c75f6e16d8 100644
--- a/docs/WritePro/commands-legacy/wp-get-element-by-id.md
+++ b/docs/WritePro/commands-legacy/wp-get-element-by-id.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-element-by-id
displayed_sidebar: docs
---
-**WP Get element by ID** ( *wpDoc* ; *ID* ) : Object
+**WP Get element by ID** ( *wpDoc* : Object ; *ID* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-elements.md b/docs/WritePro/commands-legacy/wp-get-elements.md
index 481b6d2577e7c4..29fcd54836ff2f 100644
--- a/docs/WritePro/commands-legacy/wp-get-elements.md
+++ b/docs/WritePro/commands-legacy/wp-get-elements.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-elements
displayed_sidebar: docs
---
-**WP Get elements** ( *targetObj* {; *elementType*} ) : Collection
+**WP Get elements** ( *targetObj* : Object {; *elementType* : Integer} ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-footer.md b/docs/WritePro/commands-legacy/wp-get-footer.md
index c3a734c2995b8f..b5b457a0a38192 100644
--- a/docs/WritePro/commands-legacy/wp-get-footer.md
+++ b/docs/WritePro/commands-legacy/wp-get-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-footer
displayed_sidebar: docs
---
-**WP Get footer** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* {; *sectionSubType*} ) : Object
+**WP Get footer** ( *targetObj* : Object ) : Object
**WP Get footer** (*wpDoc* : Object ; *sectionIndex* : Integer {; *sectionSubType* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-formulas.md b/docs/WritePro/commands-legacy/wp-get-formulas.md
index 14f96e86384c61..8404bb8b1c56e1 100644
--- a/docs/WritePro/commands-legacy/wp-get-formulas.md
+++ b/docs/WritePro/commands-legacy/wp-get-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-formulas
displayed_sidebar: docs
---
-**WP Get formulas** ( *targetObj* ) : Collection
+**WP Get formulas** ( *targetObj* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-frame.md b/docs/WritePro/commands-legacy/wp-get-frame.md
index 2c749c1327fba4..927f31802cbfab 100644
--- a/docs/WritePro/commands-legacy/wp-get-frame.md
+++ b/docs/WritePro/commands-legacy/wp-get-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-frame
displayed_sidebar: docs
---
-**WP Get frame** ( {* ;} *wpArea* {; *textBoxID*} ) : Integer
+**WP Get frame** ( {* ;} *wpArea* : Text {; *textBoxID* : Text} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-header.md b/docs/WritePro/commands-legacy/wp-get-header.md
index e62971f278a34e..266f142a6cc594 100644
--- a/docs/WritePro/commands-legacy/wp-get-header.md
+++ b/docs/WritePro/commands-legacy/wp-get-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-header
displayed_sidebar: docs
---
-**WP Get header** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* {; *subSectionType*} ) : Object
+**WP Get header** ( *targetObj* : Object ) : Object
**WP Get header** (*wpDoc* : Object ; *sectionIndex* : Integer {; *subSectionType* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-links.md b/docs/WritePro/commands-legacy/wp-get-links.md
index 0e0d5a84869c59..65a3b7a8dafab8 100644
--- a/docs/WritePro/commands-legacy/wp-get-links.md
+++ b/docs/WritePro/commands-legacy/wp-get-links.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-links
displayed_sidebar: docs
---
-**WP Get links** ( *targetObj* ) : Collection
+**WP Get links** ( *targetObj* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-page-count.md b/docs/WritePro/commands-legacy/wp-get-page-count.md
index 44cabd65151f47..c2650f63673930 100644
--- a/docs/WritePro/commands-legacy/wp-get-page-count.md
+++ b/docs/WritePro/commands-legacy/wp-get-page-count.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-page-count
displayed_sidebar: docs
---
-**WP Get page count** ( *targetObj* ) : Integer
+**WP Get page count** ( *targetObj* : Object ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-position.md b/docs/WritePro/commands-legacy/wp-get-position.md
index a50e77f8e0bc43..3d0c597ce40398 100644
--- a/docs/WritePro/commands-legacy/wp-get-position.md
+++ b/docs/WritePro/commands-legacy/wp-get-position.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-position
displayed_sidebar: docs
---
-**WP Get position** ( *targetObj* {; *layout*} ) : Object
+**WP Get position** ( *targetObj* : Object {; *layout* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-section.md b/docs/WritePro/commands-legacy/wp-get-section.md
index 99a027404a9fa6..d35b3f01516973 100644
--- a/docs/WritePro/commands-legacy/wp-get-section.md
+++ b/docs/WritePro/commands-legacy/wp-get-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-section
displayed_sidebar: docs
---
-**WP Get section** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* ) : Object
+**WP Get section** ( *targetObj* : Object ) : Object
**WP Get section** (*wpDoc* : Object ; *sectionIndex* : Integer ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-sections.md b/docs/WritePro/commands-legacy/wp-get-sections.md
index 3c28157c095d51..91d3e94939cb35 100644
--- a/docs/WritePro/commands-legacy/wp-get-sections.md
+++ b/docs/WritePro/commands-legacy/wp-get-sections.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-sections
displayed_sidebar: docs
---
-**WP Get sections** ( *targetObj* ) : Collection
+**WP Get sections** ( *targetObj* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-style-sheet.md b/docs/WritePro/commands-legacy/wp-get-style-sheet.md
index 6cf882a4845bce..d2a0881740b045 100644
--- a/docs/WritePro/commands-legacy/wp-get-style-sheet.md
+++ b/docs/WritePro/commands-legacy/wp-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheet
displayed_sidebar: docs
---
-**WP Get style sheet** ( *wpDoc* ; *styleSheetName* ) : Object
+**WP Get style sheet** ( *wpDoc* : Object ; *styleSheetName* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-style-sheets.md b/docs/WritePro/commands-legacy/wp-get-style-sheets.md
index 7cbac5f0577534..4892dbd67facad 100644
--- a/docs/WritePro/commands-legacy/wp-get-style-sheets.md
+++ b/docs/WritePro/commands-legacy/wp-get-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheets
displayed_sidebar: docs
---
-**WP Get style sheets** ( *wpDoc* ; *type* ) : Collection
+**WP Get style sheets** ( *wpDoc* : Object ; *type* : Integer ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-subsection.md b/docs/WritePro/commands-legacy/wp-get-subsection.md
index e3d9455922b242..b918417c3aea9d 100644
--- a/docs/WritePro/commands-legacy/wp-get-subsection.md
+++ b/docs/WritePro/commands-legacy/wp-get-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-subsection
displayed_sidebar: docs
---
-**WP Get subsection** ( *targetObj* ) | (*wpSection* ; *subSectionType* ) : Object
+**WP Get subsection** ( *targetObj* : Object ) : Object
**WP Get subsection** (*wpSection* : Object ; *subSectionType* : Integer ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-get-text.md b/docs/WritePro/commands-legacy/wp-get-text.md
index c3d9aa45052106..4bcfde815466c3 100644
--- a/docs/WritePro/commands-legacy/wp-get-text.md
+++ b/docs/WritePro/commands-legacy/wp-get-text.md
@@ -5,12 +5,12 @@ slug: /WritePro/commands/wp-get-text
displayed_sidebar: docs
---
-**WP Get text** ( *targetObj* {; *expressions*} ) : Text
+**WP Get text** ( *targetObj* : Object {; *expressions* : Real} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
-| expressions | Number | → | Instructions for expression evaluation |
+| expressions | Real | → | Instructions for expression evaluation |
| Function result | Text | ← | Text of targetObj |
diff --git a/docs/WritePro/commands-legacy/wp-get-view-properties.md b/docs/WritePro/commands-legacy/wp-get-view-properties.md
index 30eb27c2e4c150..8ad7413e1554a2 100644
--- a/docs/WritePro/commands-legacy/wp-get-view-properties.md
+++ b/docs/WritePro/commands-legacy/wp-get-view-properties.md
@@ -5,11 +5,11 @@ slug: /WritePro/commands/wp-get-view-properties
displayed_sidebar: docs
---
-**WP Get view properties** ( * ; *wpArea* ) : Object
+**WP Get view properties** ( * ; *wpArea* : Text, Object ) : Object
**WP Get view properties** ( *wpArea* : Text, Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| * | Operator | → | If specified, wpArea is a form object name (string). If omitted, wpArea is an object field or variable (document) |
+| * | Operator | → | If specified, wpArea is a form object name (text). If omitted, wpArea is an object field or variable (document) |
| wpArea | Text, Object | → | Form object name (if * is specified) or 4D Write Pro object variable or field (if * is omitted) |
| Function result | Object | ← | Current view properties |
diff --git a/docs/WritePro/commands-legacy/wp-import-style-sheets.md b/docs/WritePro/commands-legacy/wp-import-style-sheets.md
index 1e67b12ca3645a..d6a1deee87689e 100644
--- a/docs/WritePro/commands-legacy/wp-import-style-sheets.md
+++ b/docs/WritePro/commands-legacy/wp-import-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-import-style-sheets
displayed_sidebar: docs
---
-**WP IMPORT STYLE SHEETS** ( *targetDoc* ; *sourceDoc* )
+**WP IMPORT STYLE SHEETS** ( *targetDoc* : Object ; *sourceDoc* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-insert-table.md b/docs/WritePro/commands-legacy/wp-insert-table.md
index 2dac1897b619d9..2ce8574c2d8af6 100644
--- a/docs/WritePro/commands-legacy/wp-insert-table.md
+++ b/docs/WritePro/commands-legacy/wp-insert-table.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-insert-table
displayed_sidebar: docs
---
-**WP Insert table** ( *targetObj* ; *mode* {; *rangeUpdate* {; *nbCols* {; *nbRows*}}} ) : Object
+**WP Insert table** ( *targetObj* : Object ; *mode* : Integer {; *rangeUpdate* : Integer {; *nbCols* : Integer {; *nbRows* : Integer}}} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-is-font-style-supported.md b/docs/WritePro/commands-legacy/wp-is-font-style-supported.md
index 8a016066b45d8d..62af05fec68303 100644
--- a/docs/WritePro/commands-legacy/wp-is-font-style-supported.md
+++ b/docs/WritePro/commands-legacy/wp-is-font-style-supported.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-is-font-style-supported
displayed_sidebar: docs
---
-**WP Is font style supported** ( *targetObj* ; *wpFontStyle* ) : Boolean
+**WP Is font style supported** ( *targetObj* : Object ; *wpFontStyle* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-bookmark.md b/docs/WritePro/commands-legacy/wp-new-bookmark.md
index 186325cdcfc2e1..8667228687b2c4 100644
--- a/docs/WritePro/commands-legacy/wp-new-bookmark.md
+++ b/docs/WritePro/commands-legacy/wp-new-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-bookmark
displayed_sidebar: docs
---
-**WP NEW BOOKMARK** ( *targetObj* ; *bkName* )
+**WP NEW BOOKMARK** ( *targetObj* : Object ; *bkName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-footer.md b/docs/WritePro/commands-legacy/wp-new-footer.md
index d1d6282cb7854c..6b7156844a63a0 100644
--- a/docs/WritePro/commands-legacy/wp-new-footer.md
+++ b/docs/WritePro/commands-legacy/wp-new-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-footer
displayed_sidebar: docs
---
-**WP New footer** ( *wpSection* ) : Object
+**WP New footer** ( *wpSection* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-header.md b/docs/WritePro/commands-legacy/wp-new-header.md
index 3245b46c4b9097..0e7c242a7c65e9 100644
--- a/docs/WritePro/commands-legacy/wp-new-header.md
+++ b/docs/WritePro/commands-legacy/wp-new-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-header
displayed_sidebar: docs
---
-**WP New header** ( *wpSection* ) : Object
+**WP New header** ( *wpSection* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-style-sheet.md b/docs/WritePro/commands-legacy/wp-new-style-sheet.md
index 1f690645409be9..98afd43f9fc3b4 100644
--- a/docs/WritePro/commands-legacy/wp-new-style-sheet.md
+++ b/docs/WritePro/commands-legacy/wp-new-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-style-sheet
displayed_sidebar: docs
---
-**WP New style sheet** ( *wpDoc* ; *styleSheetType* ; *styleSheetName* ) : Object
+**WP New style sheet** ( *wpDoc* : Object ; *styleSheetType* : Integer ; *styleSheetName* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-subsection.md b/docs/WritePro/commands-legacy/wp-new-subsection.md
index 0282fc018b01a3..2ba265ed201d27 100644
--- a/docs/WritePro/commands-legacy/wp-new-subsection.md
+++ b/docs/WritePro/commands-legacy/wp-new-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-subsection
displayed_sidebar: docs
---
-**WP New subsection** ( *wpSection* ; *subSectionType* ) : Object
+**WP New subsection** ( *wpSection* : Object ; *subSectionType* : Integer ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-new-text-box.md b/docs/WritePro/commands-legacy/wp-new-text-box.md
index 08b0f787a149bc..3f681b6f0a5861 100644
--- a/docs/WritePro/commands-legacy/wp-new-text-box.md
+++ b/docs/WritePro/commands-legacy/wp-new-text-box.md
@@ -5,12 +5,12 @@ slug: /WritePro/commands/wp-new-text-box
displayed_sidebar: docs
---
-**WP New text box** ( *wpDoc* ; *pageNum* ) : Object
+**WP New text box** ( *wpDoc* : Object ; *pageNum* : Real ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| wpDoc | Object | → | 4D Write Pro document |
-| pageNum | Number | → | Page number where to anchor the text box |
+| pageNum | Real | → | Page number where to anchor the text box |
| Function result | Object | ← | Text box object |
diff --git a/docs/WritePro/commands-legacy/wp-new.md b/docs/WritePro/commands-legacy/wp-new.md
index ce1f75165f25b4..6d02b87ac77559 100644
--- a/docs/WritePro/commands-legacy/wp-new.md
+++ b/docs/WritePro/commands-legacy/wp-new.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new
displayed_sidebar: docs
---
-**WP New** {( *source* {; *option*} )} : Object
+**WP New** ( *source* : Text, Blob, Object {; *option* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-paragraph-range.md b/docs/WritePro/commands-legacy/wp-paragraph-range.md
index 47c40482344d56..ec06b51ed36df6 100644
--- a/docs/WritePro/commands-legacy/wp-paragraph-range.md
+++ b/docs/WritePro/commands-legacy/wp-paragraph-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-paragraph-range
displayed_sidebar: docs
---
-**WP Paragraph range** ( *targetObj* ) : Object
+**WP Paragraph range** ( *targetObj* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-picture-range.md b/docs/WritePro/commands-legacy/wp-picture-range.md
index 3827ee0b4b900f..8e51896359a9f7 100644
--- a/docs/WritePro/commands-legacy/wp-picture-range.md
+++ b/docs/WritePro/commands-legacy/wp-picture-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-picture-range
displayed_sidebar: docs
---
-**WP Picture range** ( *targetObj* ) : Object
+**WP Picture range** ( *targetObj* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-print.md b/docs/WritePro/commands-legacy/wp-print.md
index 61f324e71f7021..43e1eddefbd74c 100644
--- a/docs/WritePro/commands-legacy/wp-print.md
+++ b/docs/WritePro/commands-legacy/wp-print.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-print
displayed_sidebar: docs
---
-**WP PRINT** ( *wpDoc* {; *printOptions*} )
+**WP PRINT** ( *wpDoc* : Object {; *printOptions* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-select.md b/docs/WritePro/commands-legacy/wp-select.md
index 79cedfd11fa3e4..bf38f7f7828acf 100644
--- a/docs/WritePro/commands-legacy/wp-select.md
+++ b/docs/WritePro/commands-legacy/wp-select.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-select
displayed_sidebar: docs
---
-**WP SELECT** ( {{* ;} *wpArea*;} {*targetObj*} {; *startRange* ; *endRange*} )
+**WP SELECT** ( {{* ;} *wpArea* : Text, Object;} {*targetObj* : Object} {; *startRange* : Integer ; *endRange* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-selection-range.md b/docs/WritePro/commands-legacy/wp-selection-range.md
index 701ee02a39e273..1fb9e7e7d8fc90 100644
--- a/docs/WritePro/commands-legacy/wp-selection-range.md
+++ b/docs/WritePro/commands-legacy/wp-selection-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-selection-range
displayed_sidebar: docs
---
-**WP Selection range** ( {* ;} *wpArea* ) : Object
+**WP Selection range** ( {* ;} *wpArea* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-set-data-context.md b/docs/WritePro/commands-legacy/wp-set-data-context.md
index 55e7f74a0cbfe8..78a40f96c8c9c7 100644
--- a/docs/WritePro/commands-legacy/wp-set-data-context.md
+++ b/docs/WritePro/commands-legacy/wp-set-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-data-context
displayed_sidebar: docs
---
-**WP SET DATA CONTEXT** ( *wpDoc* ; *contextData* )
+**WP SET DATA CONTEXT** ( *wpDoc* : Object ; *contextData* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-set-frame.md b/docs/WritePro/commands-legacy/wp-set-frame.md
index 0242d9d49dd1e8..d0c3e43ddd90c8 100644
--- a/docs/WritePro/commands-legacy/wp-set-frame.md
+++ b/docs/WritePro/commands-legacy/wp-set-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-frame
displayed_sidebar: docs
---
-**WP SET FRAME** ( {* ;} *wpArea* ; *frameSelector* {; *textBoxID*} )
+**WP SET FRAME** ( {* ;} *wpArea* : Text ; *frameSelector* : Integer {; *textBoxID* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-set-link.md b/docs/WritePro/commands-legacy/wp-set-link.md
index c9c6039c2a7e99..9b23cc8f78b652 100644
--- a/docs/WritePro/commands-legacy/wp-set-link.md
+++ b/docs/WritePro/commands-legacy/wp-set-link.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-link
displayed_sidebar: docs
---
-**WP SET LINK** ( *targetObj* ; *linkObj* )
+**WP SET LINK** ( *targetObj* : Object ; *linkObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-set-text.md b/docs/WritePro/commands-legacy/wp-set-text.md
index 354ec413aa3553..88de35900c36ec 100644
--- a/docs/WritePro/commands-legacy/wp-set-text.md
+++ b/docs/WritePro/commands-legacy/wp-set-text.md
@@ -5,14 +5,14 @@ slug: /WritePro/commands/wp-set-text
displayed_sidebar: docs
---
-**WP SET TEXT** ( *targetObj* ; *newText* ; *textPosition* {; *rangeUpdate*} )
+**WP SET TEXT** ( *targetObj* : Object ; *newText* : Text ; *textPosition* : Real {; *rangeUpdate* : Real} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
| newText | Text | → | Text to insert |
-| textPosition | Number | → | Insertion position (replace, before, after) |
-| rangeUpdate | Number | → | Includes or excludes the inserted content within the range |
+| textPosition | Real | → | Insertion position (replace, before, after) |
+| rangeUpdate | Real | → | Includes or excludes the inserted content within the range |
diff --git a/docs/WritePro/commands-legacy/wp-set-view-properties.md b/docs/WritePro/commands-legacy/wp-set-view-properties.md
index 799299a193e0a8..69210835470b12 100644
--- a/docs/WritePro/commands-legacy/wp-set-view-properties.md
+++ b/docs/WritePro/commands-legacy/wp-set-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-view-properties
displayed_sidebar: docs
---
-**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* ; *wpViewProps* )
+**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* : Text, Object ; *wpViewProps* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-delete-columns.md b/docs/WritePro/commands-legacy/wp-table-delete-columns.md
index 91a60fbd3c5f78..7c44e41806cb75 100644
--- a/docs/WritePro/commands-legacy/wp-table-delete-columns.md
+++ b/docs/WritePro/commands-legacy/wp-table-delete-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-columns
displayed_sidebar: docs
---
-**WP TABLE DELETE COLUMNS** ( *targetObj* ) | ( *tableRef* ; *colNumber* {; *numColumns*} )
+**WP TABLE DELETE COLUMNS** ( *targetObj* : Object )
**WP TABLE DELETE COLUMNS** ( *tableRef* : Object ; *colNumber* : Integer {; *numColumns* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-delete-rows.md b/docs/WritePro/commands-legacy/wp-table-delete-rows.md
index 2e442736f1d6af..afdad223676d64 100644
--- a/docs/WritePro/commands-legacy/wp-table-delete-rows.md
+++ b/docs/WritePro/commands-legacy/wp-table-delete-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-rows
displayed_sidebar: docs
---
-**WP TABLE DELETE ROWS** ( *targetObj* ) | ( *tableRef* ; *rowNumber* {; *numRows*} )
+**WP TABLE DELETE ROWS** ( *targetObj* : Object )
**WP TABLE DELETE ROWS**( *tableRef* : Object ; *rowNumber* : Integer {; *numRows* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-get-cells.md b/docs/WritePro/commands-legacy/wp-table-get-cells.md
index b01e808b7d0474..43444d41fbd92c 100644
--- a/docs/WritePro/commands-legacy/wp-table-get-cells.md
+++ b/docs/WritePro/commands-legacy/wp-table-get-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-cells
displayed_sidebar: docs
---
-**WP Table get cells** ( *targetObj* ) | ( *tableRef* ; *startCol* ; *startRow* {; *numCols*{; *numRows*}} ) : Object
+**WP Table get cells** ( *targetObj* : Object ) : Object
**WP Table get cells** ( *tableRef* : Object ; *startCol* : Integer ; *startRow* : Integer {; *numCols* : Integer{; *numRows* : Integer}} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-get-columns.md b/docs/WritePro/commands-legacy/wp-table-get-columns.md
index daa30827f56c82..0d7c586109e107 100644
--- a/docs/WritePro/commands-legacy/wp-table-get-columns.md
+++ b/docs/WritePro/commands-legacy/wp-table-get-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-columns
displayed_sidebar: docs
---
-**WP Table get columns** ( *targetObj* ) | ( *tableRef* ; *startCol* {; *numCols*} ) : Object
+**WP Table get columns** ( *targetObj* : Object ) : Object
**WP Table get columns** ( *tableRef* : Object ; *startCol* : Integer {; *numCols* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-get-rows.md b/docs/WritePro/commands-legacy/wp-table-get-rows.md
index df4d0215136d12..d89f22956fbb3a 100644
--- a/docs/WritePro/commands-legacy/wp-table-get-rows.md
+++ b/docs/WritePro/commands-legacy/wp-table-get-rows.md
@@ -5,13 +5,14 @@ slug: /WritePro/commands/wp-table-get-rows
displayed_sidebar: docs
---
-**WP Table get rows** ( *targetObj* ) | ( *tableRef* ; startRow | wk header rows {; *numRows*} ) : Object
+**WP Table get rows** ( *targetObj* : Object ) : Object
**WP Table get rows** ( *tableRef* : Object ; startRow {; *numRows* : Integer} ) : Object
**WP Table get rows** ( *tableRef* : Object ; *headers* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
| tableRef | Object | → | Table reference |
-| startRow | wk header rows | Integer, Text | → | Position of first row OR wk header rows |
+| startRow | Integer | → | Position of first row |
+| headers | Text | → | `wk header rows` |
| numRows | Integer | → | Number of rows to get |
| Function result | Object | ← | New row range containing selected rows |
diff --git a/docs/WritePro/commands-legacy/wp-table-insert-columns.md b/docs/WritePro/commands-legacy/wp-table-insert-columns.md
index 1a6ffcea48aa2d..6711bb87841c5e 100644
--- a/docs/WritePro/commands-legacy/wp-table-insert-columns.md
+++ b/docs/WritePro/commands-legacy/wp-table-insert-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-columns
displayed_sidebar: docs
---
-**WP Table insert columns** ( targetObj | {*tableRef* ; *colNumber*} {; *numColumns*} ) : Object
+**WP Table insert columns** ( *targetObj* : Object {; *numColumns* : Integer }) : Object
**WP Table insert columns** ( *tableRef* : Object ; *colNumber* : Integer {; *numColumns* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -23,7 +23,7 @@ displayed_sidebar: docs
This command supports two syntaxes:
-* If you pass a targetObj as the first parameter, the command will insert the column(s) in the first table intersecting the target. *targetObj* can contain:
+* If you pass a *targetObj* as the first parameter, the command will insert the column(s) in the first table intersecting the target. *targetObj* can contain:
* a range, or
* an element (row / paragraph / body / header / footer / inline picture / section / subsection), or
* a 4D Write Pro document.
diff --git a/docs/WritePro/commands-legacy/wp-table-insert-rows.md b/docs/WritePro/commands-legacy/wp-table-insert-rows.md
index 7867b4750d51e6..d05a0dd9d3d787 100644
--- a/docs/WritePro/commands-legacy/wp-table-insert-rows.md
+++ b/docs/WritePro/commands-legacy/wp-table-insert-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-rows
displayed_sidebar: docs
---
-**WP Table insert rows** ( targetObj | {*tableRef* ; *rowNumber*} {; *numRows*} ) : Object
+**WP Table insert rows** ( *targetObj* : Object {; *numRows* : Integer}) : Object
**WP Table insert rows** ( *tableRef* : Object ; *rowNumber* : Integer {; *numRows* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-merge-cells.md b/docs/WritePro/commands-legacy/wp-table-merge-cells.md
index 7bae7cd86361f6..8aee0f35b6e2d0 100644
--- a/docs/WritePro/commands-legacy/wp-table-merge-cells.md
+++ b/docs/WritePro/commands-legacy/wp-table-merge-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-merge-cells
displayed_sidebar: docs
---
-**WP TABLE MERGE CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE MERGE CELLS** ( *targetObj* : Object )
**WP TABLE MERGE CELLS** ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-range.md b/docs/WritePro/commands-legacy/wp-table-range.md
index 4e1eb11906fdf1..817057a7847779 100644
--- a/docs/WritePro/commands-legacy/wp-table-range.md
+++ b/docs/WritePro/commands-legacy/wp-table-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-range
displayed_sidebar: docs
---
-**WP Table range** ( *targetObj* ) : Object
+**WP Table range** ( *targetObj* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-table-split-cells.md b/docs/WritePro/commands-legacy/wp-table-split-cells.md
index 62d524cc3470b4..bbd933f38b4891 100644
--- a/docs/WritePro/commands-legacy/wp-table-split-cells.md
+++ b/docs/WritePro/commands-legacy/wp-table-split-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-split-cells
displayed_sidebar: docs
---
-**WP TABLE SPLIT CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE SPLIT CELLS** ( *targetObj* : Object )
**WP TABLE SPLIT CELLS** ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-text-range.md b/docs/WritePro/commands-legacy/wp-text-range.md
index 10b8b5b82f845f..4133be8cc83f5e 100644
--- a/docs/WritePro/commands-legacy/wp-text-range.md
+++ b/docs/WritePro/commands-legacy/wp-text-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-text-range
displayed_sidebar: docs
---
-**WP Text range** ( *targetObj* ; *startRange* ; *endRange* ) : Object
+**WP Text range** ( *targetObj* : Object ; *startRange* : Integer ; *endRange* : Integer ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands-legacy/wp-use-page-setup.md b/docs/WritePro/commands-legacy/wp-use-page-setup.md
index effd963ce79875..dd8e6d2ad68d5c 100644
--- a/docs/WritePro/commands-legacy/wp-use-page-setup.md
+++ b/docs/WritePro/commands-legacy/wp-use-page-setup.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-use-page-setup
displayed_sidebar: docs
---
-**WP USE PAGE SETUP** ( *wpDoc* )
+**WP USE PAGE SETUP** ( *wpDoc* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-add-picture.md b/docs/WritePro/commands/wp-add-picture.md
index 57b8fcc794fab8..36ad9876d0b599 100644
--- a/docs/WritePro/commands/wp-add-picture.md
+++ b/docs/WritePro/commands/wp-add-picture.md
@@ -4,7 +4,7 @@ title: WP Add picture
displayed_sidebar: docs
---
-**WP Add picture** ( *wpDoc* {; *picture*} ) : Object
**WP Add picture** ( *wpDoc* {; *picturePath*} ) : Object
**WP Add picture** ( *wpDoc* {; *pictureFileObj*} ) : Object
+**WP Add picture** ( *wpDoc* : Object {; *picture* : Picture} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *picturePath* : Text} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *pictureFileObj* : 4D.File} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-delete-section.md b/docs/WritePro/commands/wp-delete-section.md
index f85e2de9509b76..2e98a11b3874a4 100644
--- a/docs/WritePro/commands/wp-delete-section.md
+++ b/docs/WritePro/commands/wp-delete-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-section
displayed_sidebar: docs
---
-**WP DELETE SECTION** ( *section* )
**WP DELETE SECTION** ( *wpDoc* ; *indexNumber* {; *count*} )
+**WP DELETE SECTION** ( *section* : Object )
**WP DELETE SECTION** ( *wpDoc* : Object ; *indexNumber* : Integer {; *count* : Integer} )
| Parameter | Type | | Description |
diff --git a/docs/WritePro/commands/wp-delete-subsection.md b/docs/WritePro/commands/wp-delete-subsection.md
index 1409b0e0777520..8d3e48338436e2 100644
--- a/docs/WritePro/commands/wp-delete-subsection.md
+++ b/docs/WritePro/commands/wp-delete-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-subsection
displayed_sidebar: docs
---
-**WP DELETE SUBSECTION** ( *wpSection* ; *subSectionType* )
**WP DELETE SUBSECTION** ( *subSection* )
+**WP DELETE SUBSECTION** ( *wpSection* : Object ; *subSectionType* : Integer )
**WP DELETE SUBSECTION** ( *subSection* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-export-document.md b/docs/WritePro/commands/wp-export-document.md
index 5753f22499cc14..4f30a66d0e9d23 100644
--- a/docs/WritePro/commands/wp-export-document.md
+++ b/docs/WritePro/commands/wp-export-document.md
@@ -4,7 +4,7 @@ title: WP EXPORT DOCUMENT
displayed_sidebar: docs
---
-**WP EXPORT DOCUMENT** ( *wpDoc* ; *filePath* {; *format* {; *option*}} )
**WP EXPORT DOCUMENT** ( *wpDoc* ; *fileObj* {; *format* {; *option*}} )
+**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *filePath* : Text {; *format* : Integer {; *option* : Object, Integer}} )
**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *fileObj* : 4D.File {; *format* : Integer {; *option* : Object, Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-export-variable.md b/docs/WritePro/commands/wp-export-variable.md
index 74288fad4569b9..8d80ca82fa3620 100644
--- a/docs/WritePro/commands/wp-export-variable.md
+++ b/docs/WritePro/commands/wp-export-variable.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-export-variable
displayed_sidebar: docs
---
-**WP EXPORT VARIABLE** ( *wpDoc* ; *destination* ; *format* {; *option*} )
+**WP EXPORT VARIABLE** ( *wpDoc* : Object ; *destination* : Text, Blob ; *format* : Integer {; *option* : Object, Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-get-attributes.md b/docs/WritePro/commands/wp-get-attributes.md
index 86ea9fec75b853..0592a663b8844a 100644
--- a/docs/WritePro/commands/wp-get-attributes.md
+++ b/docs/WritePro/commands/wp-get-attributes.md
@@ -4,13 +4,13 @@ title: WP Get attributes
displayed_sidebar: docs
---
-**WP Get attributes** ( *targetObj* ; *...attribName* ; *...attribValue* ) : Object
**WP Get attributes** ( *targetObj* ; *attribColl* ) : Object
+**WP Get attributes** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any ) : Object
**WP Get attributes** ( *targetObj* : Object ; *attribColl* : Collection ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
| attribName | Text | → | Name of attribute to get |
-| attribValue | Text, Number, Array, Collection, Picture, Date | ← | Current value of attribute for the target |
+| attribValue | any | ← | Current value of attribute for the target |
| attribColl | Collection | → | Collection of attribute names to get |
| Function result | Object | ← | Attribute names and values |
diff --git a/docs/WritePro/commands/wp-import-document.md b/docs/WritePro/commands/wp-import-document.md
index 6f18be7fcf4a43..84b2adc1e87301 100644
--- a/docs/WritePro/commands/wp-import-document.md
+++ b/docs/WritePro/commands/wp-import-document.md
@@ -4,7 +4,7 @@ title: WP Import document
displayed_sidebar: docs
---
-**WP Import document** ( *filePath* {; *option*} ) : Object
**WP Import document** ( *fileObj* {; *option*} ) : Object
+**WP Import document** ( *filePath* : Text {; *option* : Integer, Object} ) : Object
**WP Import document** ( *fileObj* : 4D.File {; *option* : Integer, Object} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-insert-break.md b/docs/WritePro/commands/wp-insert-break.md
index 262e882c75e14c..d941ff21599b77 100644
--- a/docs/WritePro/commands/wp-insert-break.md
+++ b/docs/WritePro/commands/wp-insert-break.md
@@ -4,7 +4,7 @@ title: WP Insert break
displayed_sidebar: docs
---
-**WP Insert break** ( *targetObj* ; *breakType* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert break** ( *targetObj* : Object ; *breakType* : Integer ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-insert-document-body.md b/docs/WritePro/commands/wp-insert-document-body.md
index e25c1664d76b94..87519a054cfc1b 100644
--- a/docs/WritePro/commands/wp-insert-document-body.md
+++ b/docs/WritePro/commands/wp-insert-document-body.md
@@ -4,7 +4,7 @@ title: WP Insert document body
displayed_sidebar: docs
---
-**WP Insert document body** ( *targetObj* ; *wpDoc* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert document body** ( *targetObj* : Object ; *wpDoc* : Object ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-insert-formula.md b/docs/WritePro/commands/wp-insert-formula.md
index 5838f5b741a94a..d86898d0a008a3 100644
--- a/docs/WritePro/commands/wp-insert-formula.md
+++ b/docs/WritePro/commands/wp-insert-formula.md
@@ -4,14 +4,14 @@ title: WP Insert formula
displayed_sidebar: docs
---
-**WP Insert formula** ( *targetObj* ; *formula* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert formula** ( *targetObj* : Object ; *formula* : Object ; *mode* : Real {; *rangeUpdate* : Real} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
| formula | Object | → | Formula object OR Object with formula and name properties |
-| mode | Number | → | Insertion mode |
-| rangeUpdate | Number | → | Includes or excludes the inserted content within the range |
+| mode | Real | → | Insertion mode |
+| rangeUpdate | Real | → | Includes or excludes the inserted content within the range |
| Function result | Object | ← | Text range object reprsenting the result of the formula |
diff --git a/docs/WritePro/commands/wp-insert-picture.md b/docs/WritePro/commands/wp-insert-picture.md
index 4e9c3aae8a5659..9d95a3d649084d 100644
--- a/docs/WritePro/commands/wp-insert-picture.md
+++ b/docs/WritePro/commands/wp-insert-picture.md
@@ -4,7 +4,7 @@ title: WP Insert picture
displayed_sidebar: docs
---
-**WP Insert picture** ( *targetObj* ; *picture* ; *mode* {; *rangeUpdate*} ): Object
**WP Insert picture** ( *targetObj* ; *pictureFileObj*; *mode* {; *rangeUpdate*}): Object
+**WP Insert picture** ( *targetObj* : Object ; *picture* : Picture ; *mode* : Integer {; *rangeUpdate* : Integer} ): Object
**WP Insert picture** ( *targetObj* : Object ; *pictureFileObj* : 4D.File; *mode* : Integer {; *rangeUpdate* : Integer}): Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-reset-attributes.md b/docs/WritePro/commands/wp-reset-attributes.md
index fb04a5e2d12ec6..a192e2bbdf1eac 100644
--- a/docs/WritePro/commands/wp-reset-attributes.md
+++ b/docs/WritePro/commands/wp-reset-attributes.md
@@ -4,7 +4,7 @@ title: WP RESET ATTRIBUTES
displayed_sidebar: docs
---
-**WP RESET ATTRIBUTES** ( *targetObj* ; *...attribName* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *...attribName* })
**WP RESET ATTRIBUTES** ( *targetObj* ; *attribColl* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *attribColl*})
+**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *...attribName* : Text })
**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *attribColl* : Collection )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *attribColl* : Collection})
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/WritePro/commands/wp-set-attributes.md b/docs/WritePro/commands/wp-set-attributes.md
index 9aaff9f08e4a70..2cd8ebdf166849 100644
--- a/docs/WritePro/commands/wp-set-attributes.md
+++ b/docs/WritePro/commands/wp-set-attributes.md
@@ -4,13 +4,13 @@ title: WP SET ATTRIBUTES
displayed_sidebar: docs
---
-**WP SET ATTRIBUTES** ( *targetObj* ; *...attribName* ; *...attribValue* )
**WP SET ATTRIBUTES** ( *targetObj* ; *attribObj* )
+**WP SET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any )
**WP SET ATTRIBUTES** ( *targetObj* : Object ; *attribObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetObj | Object | → | Range or element or 4D Write Pro document |
| attribName | Text | → | Name of attribute to set |
-| attribValue | Text, Number, Object, Collection, Picture, Date | → | New attribute value |
+| attribValue | any | → | New attribute value |
| attribObj | Object | → | Object containing attribute names and their corresponding values to set |
diff --git a/docs/WritePro/commands/wp-table-append-row.md b/docs/WritePro/commands/wp-table-append-row.md
index 11b20f02264031..58f0cb2f0ad1b8 100644
--- a/docs/WritePro/commands/wp-table-append-row.md
+++ b/docs/WritePro/commands/wp-table-append-row.md
@@ -4,12 +4,12 @@ title: WP Table append row
displayed_sidebar: docs
---
-**WP Table append row** ( *tableRef* ; *...value* ) : Object
**WP Table append row** ( *tableRef* ; *valueColl* ) : Object
+**WP Table append row** ( *tableRef* : Object ; *...value* : any ) : Object
**WP Table append row** ( *tableRef* : Object ; *valueColl* : Collection ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| tableRef | Object | → | Table reference |
-| value | Text, Number, Time, Date, Picture, Object | → | Value(s) to set in the row |
+| value | any | → | Value(s) to set in the row |
| valueColl | Collection | → | Collection of values to set in the row |
| Function result | Object | ← | Row range object |
diff --git a/docs/assets/en/Admin/accessKeyEnter.png b/docs/assets/en/Admin/accessKeyEnter.png
index 293036a14b5daa..50f2d9e129f93a 100644
Binary files a/docs/assets/en/Admin/accessKeyEnter.png and b/docs/assets/en/Admin/accessKeyEnter.png differ
diff --git a/docs/assets/en/Desktop/buildappcomps.png b/docs/assets/en/Desktop/buildappcomps.png
index 3e44784e3e2008..41392b4d0207e3 100644
Binary files a/docs/assets/en/Desktop/buildappcomps.png and b/docs/assets/en/Desktop/buildappcomps.png differ
diff --git a/docs/assets/en/Desktop/sessions.png b/docs/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/docs/assets/en/Desktop/sessions.png differ
diff --git a/docs/assets/en/Develop/explorer-qodly.png b/docs/assets/en/Develop/explorer-qodly.png
new file mode 100644
index 00000000000000..2a2bf4eac64d65
Binary files /dev/null and b/docs/assets/en/Develop/explorer-qodly.png differ
diff --git a/docs/assets/en/Develop/icon-comp-default.png b/docs/assets/en/Develop/icon-comp-default.png
new file mode 100644
index 00000000000000..4c0128bc351b26
Binary files /dev/null and b/docs/assets/en/Develop/icon-comp-default.png differ
diff --git a/docs/assets/en/Develop/icon-comp-folder.png b/docs/assets/en/Develop/icon-comp-folder.png
new file mode 100644
index 00000000000000..dc2f7389acf6eb
Binary files /dev/null and b/docs/assets/en/Develop/icon-comp-folder.png differ
diff --git a/docs/assets/en/Develop/icon-comp.png b/docs/assets/en/Develop/icon-comp.png
new file mode 100644
index 00000000000000..a0b979c2a19216
Binary files /dev/null and b/docs/assets/en/Develop/icon-comp.png differ
diff --git a/docs/assets/en/Develop/qodly-add.png b/docs/assets/en/Develop/qodly-add.png
new file mode 100644
index 00000000000000..24f0f90a585117
Binary files /dev/null and b/docs/assets/en/Develop/qodly-add.png differ
diff --git a/docs/assets/en/Develop/qodly-bad-name.png b/docs/assets/en/Develop/qodly-bad-name.png
new file mode 100644
index 00000000000000..dda0eee24fe3d5
Binary files /dev/null and b/docs/assets/en/Develop/qodly-bad-name.png differ
diff --git a/docs/assets/en/Develop/qodly-context.png b/docs/assets/en/Develop/qodly-context.png
new file mode 100644
index 00000000000000..ce32dd404512f4
Binary files /dev/null and b/docs/assets/en/Develop/qodly-context.png differ
diff --git a/docs/assets/en/Develop/qodly-create.png b/docs/assets/en/Develop/qodly-create.png
new file mode 100644
index 00000000000000..470dba01034ec3
Binary files /dev/null and b/docs/assets/en/Develop/qodly-create.png differ
diff --git a/docs/assets/en/Develop/qodly-delete.png b/docs/assets/en/Develop/qodly-delete.png
new file mode 100644
index 00000000000000..9c0c03f5185f3f
Binary files /dev/null and b/docs/assets/en/Develop/qodly-delete.png differ
diff --git a/docs/assets/en/Develop/qodly-rename.png b/docs/assets/en/Develop/qodly-rename.png
new file mode 100644
index 00000000000000..8d548672ca9abb
Binary files /dev/null and b/docs/assets/en/Develop/qodly-rename.png differ
diff --git a/docs/assets/en/Project/dependency.png b/docs/assets/en/Project/dependency.png
index c7238306059187..560d044b9b944c 100644
Binary files a/docs/assets/en/Project/dependency.png and b/docs/assets/en/Project/dependency.png differ
diff --git a/docs/commands-legacy/abort-process-by-id.md b/docs/commands-legacy/abort-process-by-id.md
index 461b968253686c..d6c643a80d0a03 100644
--- a/docs/commands-legacy/abort-process-by-id.md
+++ b/docs/commands-legacy/abort-process-by-id.md
@@ -5,7 +5,7 @@ slug: /commands/abort-process-by-id
displayed_sidebar: docs
---
-**ABORT PROCESS BY ID** ( *uniqueID* )
+**ABORT PROCESS BY ID** ( *uniqueID* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ You want to stop the selected process of the processes collection displayed in a
| | |
| --- | --- |
| Command number | 1634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/abort.md b/docs/commands-legacy/abort.md
index cbd0558c0761e9..c06822da7b7d89 100644
--- a/docs/commands-legacy/abort.md
+++ b/docs/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Although the **ABORT** command is intended to be used only from within a error-h
| | |
| --- | --- |
| Command number | 156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/abs.md b/docs/commands-legacy/abs.md
index 052ab872f48b7c..9747ce2c8558b3 100644
--- a/docs/commands-legacy/abs.md
+++ b/docs/commands-legacy/abs.md
@@ -5,7 +5,7 @@ slug: /commands/abs
displayed_sidebar: docs
---
-**Abs** ( *number* ) : Real
+**Abs** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ The following example returns the absolute value of –10.3, which is 10.3:
| | |
| --- | --- |
| Command number | 99 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/accept.md b/docs/commands-legacy/accept.md
index bd34e5063168d8..37249da4880441 100644
--- a/docs/commands-legacy/accept.md
+++ b/docs/commands-legacy/accept.md
@@ -41,7 +41,7 @@ The **ACCEPT** command is allowed in headless mode, in the context of offscreen
| | |
| --- | --- |
| Command number | 269 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/accumulate.md b/docs/commands-legacy/accumulate.md
index aea561b5b19f9d..943a9bfffa34dc 100644
--- a/docs/commands-legacy/accumulate.md
+++ b/docs/commands-legacy/accumulate.md
@@ -5,7 +5,7 @@ slug: /commands/accumulate
displayed_sidebar: docs
---
-**ACCUMULATE** ( *...data* )
+**ACCUMULATE** ( *...data* : Field)
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -17,7 +17,7 @@ displayed_sidebar: docs
**ACCUMULATE** specifies the fields or variables to be accumulated during a form report performed using [PRINT SELECTION](print-selection.md).
-You **must** execute [BREAK LEVEL](break-level.md) and **ACCUMULATE** before every report for which you want to do break processing. These commands activate break processing for a report. See the explanation for the [Subtotal](subtotal.md) command.
+You **must** execute [BREAK LEVEL](break-level.md) and **ACCUMULATE** before every report for which you want to do break processing. These commands activate break processing for a report. See the explanation for the [Subtotal](subtotal.md) command.
Use **ACCUMULATE** when you want to include subtotals for numeric fields or variables in a form report. **ACCUMULATE** tells 4D to store subtotals for each of the Data arguments. The subtotals are accumulated for each break level specified with the [Subtotal](subtotal.md) command.
@@ -41,6 +41,6 @@ See the example for the [BREAK LEVEL](break-level.md) command.
| | |
| --- | --- |
| Command number | 303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/action-info.md b/docs/commands-legacy/action-info.md
index 4e3bd552ca6d90..ae1d122962a089 100644
--- a/docs/commands-legacy/action-info.md
+++ b/docs/commands-legacy/action-info.md
@@ -5,7 +5,7 @@ slug: /commands/action-info
displayed_sidebar: docs
---
-**Action info** ( *action* {; *target*} ) : Object
+**Action info** ( *action* : Text {; *target* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -71,6 +71,6 @@ You want to know if the copy action is available (i.e. if some data is selected)
| | |
| --- | --- |
| Command number | 1442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/activated.md b/docs/commands-legacy/activated.md
index 48ad299c7410fe..dbac42805e7460 100644
--- a/docs/commands-legacy/activated.md
+++ b/docs/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 346 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/active-transaction.md b/docs/commands-legacy/active-transaction.md
index 266bbc4159b4f0..02bc540d0d6eeb 100644
--- a/docs/commands-legacy/active-transaction.md
+++ b/docs/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ You want to know the current transaction status:
| | |
| --- | --- |
| Command number | 1387 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/activity-snapshot.md b/docs/commands-legacy/activity-snapshot.md
index 3c3e2bca6508ee..18b495f7212e53 100644
--- a/docs/commands-legacy/activity-snapshot.md
+++ b/docs/commands-legacy/activity-snapshot.md
@@ -5,14 +5,14 @@ slug: /commands/activity-snapshot
displayed_sidebar: docs
---
-**ACTIVITY SNAPSHOT** ( *arrActivities* {; *} )
**ACTIVITY SNAPSHOT** ( *arrUUID* ; *arrStart* ; *arrDuration* ; *arrInfo* {; *arrDetails*}{; *} )
+**ACTIVITY SNAPSHOT** ( *arrActivities* : Object array {; *} )
**ACTIVITY SNAPSHOT** ( *arrUUID* : Text array ; *arrStart* : Text array ; *arrDuration* : Integer array ; *arrInfo* : Text array {; *arrDetails* : Object array}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| arrActivities | Object array | ← | Complete description of operations |
| arrUUID | Text array | ← | Operation UUIDs |
| arrStart | Text array | ← | Operation start times |
-| arrDuration | Array integer | ← | Operation durations in milliseconds |
+| arrDuration | Integer array | ← | Operation durations in milliseconds |
| arrInfo | Text array | ← | Description |
| arrDetails | Object array | ← | Details of context and sub-operations (if any) |
| * | Operator | → | If passed = Get server activity |
@@ -112,6 +112,6 @@ You get arrays such as:
| | |
| --- | --- |
| Command number | 1277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/add-record.md b/docs/commands-legacy/add-record.md
index 246de5f9abe0eb..9346fa06839694 100644
--- a/docs/commands-legacy/add-record.md
+++ b/docs/commands-legacy/add-record.md
@@ -5,7 +5,7 @@ slug: /commands/add-record
displayed_sidebar: docs
---
-**ADD RECORD** ( {*aTable*}{;}{*} )
+**ADD RECORD** ( {*aTable* : Table}{;}{*} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -95,7 +95,7 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK
| | |
| --- | --- |
| Command number | 56 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/add-to-date.md b/docs/commands-legacy/add-to-date.md
index cf7ff9fb4b2271..a667f19560bfa5 100644
--- a/docs/commands-legacy/add-to-date.md
+++ b/docs/commands-legacy/add-to-date.md
@@ -5,7 +5,7 @@ slug: /commands/add-to-date
displayed_sidebar: docs
---
-**Add to date** ( *date* ; *years* ; *months* ; *days* ) : Date
+**Add to date** ( *date* : Date ; *years* : Integer ; *months* : Integer ; *days* : Integer ) : Date
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ Although you can use the [Self](self.md) to add days to a date, **Add to date**
| | |
| --- | --- |
| Command number | 393 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/add-to-set.md b/docs/commands-legacy/add-to-set.md
index c8a66ae898d40e..30f3c01c20c7b3 100644
--- a/docs/commands-legacy/add-to-set.md
+++ b/docs/commands-legacy/add-to-set.md
@@ -5,7 +5,7 @@ slug: /commands/add-to-set
displayed_sidebar: docs
---
-**ADD TO SET** ( {*aTable* ;} *set* )
+**ADD TO SET** ( {*aTable* : Table ;} *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 119 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/adjust-blobs-cache-priority.md b/docs/commands-legacy/adjust-blobs-cache-priority.md
index c4c5d9424701aa..1e6d46f9982a4a 100644
--- a/docs/commands-legacy/adjust-blobs-cache-priority.md
+++ b/docs/commands-legacy/adjust-blobs-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/adjust-blobs-cache-priority
displayed_sidebar: docs
---
-**ADJUST BLOBS CACHE PRIORITY** ( *aTable* ; *priority* )
+**ADJUST BLOBS CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ You want to temporarily change the cache priority for the \[Docs\] table text fi
| | |
| --- | --- |
| Command number | 1431 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/adjust-index-cache-priority.md b/docs/commands-legacy/adjust-index-cache-priority.md
index 019acc21585d31..3faeca477a830e 100644
--- a/docs/commands-legacy/adjust-index-cache-priority.md
+++ b/docs/commands-legacy/adjust-index-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/adjust-index-cache-priority
displayed_sidebar: docs
---
-**ADJUST INDEX CACHE PRIORITY** ( *aField* ; *priority* )
+**ADJUST INDEX CACHE PRIORITY** ( *aField* : Field ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ You want to temporarily change the cache priority for the \[Docs\]Comments field
| | |
| --- | --- |
| Command number | 1430 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/adjust-table-cache-priority.md b/docs/commands-legacy/adjust-table-cache-priority.md
index a188a2778d95ed..ef502cb49cbd3a 100644
--- a/docs/commands-legacy/adjust-table-cache-priority.md
+++ b/docs/commands-legacy/adjust-table-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/adjust-table-cache-priority
displayed_sidebar: docs
---
-**ADJUST TABLE CACHE PRIORITY** ( *aTable* ; *priority* )
+**ADJUST TABLE CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ You want to temporarily change the cache priority for the \[Docs\] scalar fields
| | |
| --- | --- |
| Command number | 1429 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/after.md b/docs/commands-legacy/after.md
index 2d40e26313d193..8eeb9aa1c96c85 100644
--- a/docs/commands-legacy/after.md
+++ b/docs/commands-legacy/after.md
@@ -30,6 +30,6 @@ In order for the **After** execution cycle to be generated, make sure that the O
| | |
| --- | --- |
| Command number | 31 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/alert.md b/docs/commands-legacy/alert.md
index 72ab6ec773f38f..7b2a9e4b4b02f9 100644
--- a/docs/commands-legacy/alert.md
+++ b/docs/commands-legacy/alert.md
@@ -5,7 +5,7 @@ slug: /commands/alert
displayed_sidebar: docs
---
-**ALERT** ( *message* {; *okButtonTitle*} )
+**ALERT** ( *message* : Text {; *okButtonTitle* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ displays the alert dialog box (on Windows) shown:
| | |
| --- | --- |
| Command number | 41 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/all-records.md b/docs/commands-legacy/all-records.md
index 1ae2aaabd7e5e6..22840bad0c5eed 100644
--- a/docs/commands-legacy/all-records.md
+++ b/docs/commands-legacy/all-records.md
@@ -5,7 +5,7 @@ slug: /commands/all-records
displayed_sidebar: docs
---
-**ALL RECORDS** {( *aTable* )}
+**ALL RECORDS** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ The following example displays all the records from the \[People\] table:
| | |
| --- | --- |
| Command number | 47 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/append-data-to-pasteboard.md b/docs/commands-legacy/append-data-to-pasteboard.md
index 433b67e5f83528..8352ec52d52f60 100644
--- a/docs/commands-legacy/append-data-to-pasteboard.md
+++ b/docs/commands-legacy/append-data-to-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/append-data-to-pasteboard
displayed_sidebar: docs
---
-**APPEND DATA TO PASTEBOARD** ( *dataType* ; *data* )
+**APPEND DATA TO PASTEBOARD** ( *dataType* : Text ; *data* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -223,7 +223,7 @@ If the BLOB data is correctly appended to the pasteboard, OK is set to 1; otherw
| | |
| --- | --- |
| Command number | 403 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/append-document.md b/docs/commands-legacy/append-document.md
index 6459eb8bc9e0dc..3e352730477f2b 100644
--- a/docs/commands-legacy/append-document.md
+++ b/docs/commands-legacy/append-document.md
@@ -5,7 +5,7 @@ slug: /commands/append-document
displayed_sidebar: docs
---
-**Append document** ( *document* {; *fileType*} ) : Time
+**Append document** ( *document* : Text {; *fileType* : Text} ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ The following example opens an existing document called Note, appends the string
| | |
| --- | --- |
| Command number | 265 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/append-menu-item.md b/docs/commands-legacy/append-menu-item.md
index 90bdeb9fa5958b..65ca79d8d0ae36 100644
--- a/docs/commands-legacy/append-menu-item.md
+++ b/docs/commands-legacy/append-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/append-menu-item
displayed_sidebar: docs
---
-**APPEND MENU ITEM** ( *menu* ; *itemText* {; *subMenu* {; *process* {; *}}} )
+**APPEND MENU ITEM** ( *menu* : Integer ; *itemText* : Text {; *subMenu* : Text {; *process* : Integer {; *}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,7 +85,7 @@ Then, in any form or project method, you can write:
| | |
| --- | --- |
| Command number | 411 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/append-to-array.md b/docs/commands-legacy/append-to-array.md
index 7b98a997bafc66..cd9499b7dbfeec 100644
--- a/docs/commands-legacy/append-to-array.md
+++ b/docs/commands-legacy/append-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/append-to-array
displayed_sidebar: docs
---
-**APPEND TO ARRAY** ( *array* ; *value* )
+**APPEND TO ARRAY** ( *array* : Array ; *value* : Expression )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following code:
| | |
| --- | --- |
| Command number | 911 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/append-to-list.md b/docs/commands-legacy/append-to-list.md
index 5280e3059b3a73..84b154b66033f5 100644
--- a/docs/commands-legacy/append-to-list.md
+++ b/docs/commands-legacy/append-to-list.md
@@ -5,7 +5,7 @@ slug: /commands/append-to-list
displayed_sidebar: docs
---
-**APPEND TO LIST** ( *list* ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
+**APPEND TO LIST** ( *list* : Integer ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -162,6 +162,6 @@ When the form is executed, the list will look like this:
| | |
| --- | --- |
| Command number | 376 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/application-file.md b/docs/commands-legacy/application-file.md
index a7c7f422e582cc..68f69cb8a50b6b 100644
--- a/docs/commands-legacy/application-file.md
+++ b/docs/commands-legacy/application-file.md
@@ -45,6 +45,6 @@ At startup on Windows, you need to check if a DLL Library is correctly located a
| | |
| --- | --- |
| Command number | 491 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/application-info.md b/docs/commands-legacy/application-info.md
index fcbfdd3e5a8385..398ba81cbff9b0 100644
--- a/docs/commands-legacy/application-info.md
+++ b/docs/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ If the code is executed on 4D Server, the object contains (for example):
| | |
| --- | --- |
| Command number | 1599 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/application-type.md b/docs/commands-legacy/application-type.md
index 1f2e905af36e86..8206be6728013e 100644
--- a/docs/commands-legacy/application-type.md
+++ b/docs/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Somewhere in your code, other than in the *On Server Startup Database Method*, y
| | |
| --- | --- |
| Command number | 494 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/application-version.md b/docs/commands-legacy/application-version.md
index 90bba93a24b8f2..48451c88d2166f 100644
--- a/docs/commands-legacy/application-version.md
+++ b/docs/commands-legacy/application-version.md
@@ -5,7 +5,7 @@ slug: /commands/application-version
displayed_sidebar: docs
---
-**Application version** {( *buildNum* {; *} )} : Text
+**Application version** ( *buildNum* : Integer {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -125,6 +125,6 @@ You want to use the application's short version value returned by the command to
| | |
| --- | --- |
| Command number | 493 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/apply-to-selection.md b/docs/commands-legacy/apply-to-selection.md
index 0df9d6557e78ab..4503e0c785c3d6 100644
--- a/docs/commands-legacy/apply-to-selection.md
+++ b/docs/commands-legacy/apply-to-selection.md
@@ -5,7 +5,7 @@ slug: /commands/apply-to-selection
displayed_sidebar: docs
---
-**APPLY TO SELECTION** ( *aTable* ; *statement* )
+**APPLY TO SELECTION** ( *aTable* : Table ; *statement* : Expression )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,7 +68,7 @@ If the user clicks the Stop button in the progress thermometer, the OK system va
| | |
| --- | --- |
| Command number | 70 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/arctan.md b/docs/commands-legacy/arctan.md
index dd03f778b374c1..773ca5e7ce9b16 100644
--- a/docs/commands-legacy/arctan.md
+++ b/docs/commands-legacy/arctan.md
@@ -5,7 +5,7 @@ slug: /commands/arctan
displayed_sidebar: docs
---
-**Arctan** ( *number* ) : Real
+**Arctan** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ The following example shows the value of Pi:
| | |
| --- | --- |
| Command number | 20 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-blob.md b/docs/commands-legacy/array-blob.md
index 5187e0cf813c52..740b4a18b9fe76 100644
--- a/docs/commands-legacy/array-blob.md
+++ b/docs/commands-legacy/array-blob.md
@@ -5,7 +5,7 @@ slug: /commands/array-blob
displayed_sidebar: docs
---
-**ARRAY BLOB** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY BLOB** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ This example creates a local array of 100 rows each containing 50 BLOB-type elem
| | |
| --- | --- |
| Command number | 1222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-boolean.md b/docs/commands-legacy/array-boolean.md
index f43a450b9a8d21..c8d15640b7faf5 100644
--- a/docs/commands-legacy/array-boolean.md
+++ b/docs/commands-legacy/array-boolean.md
@@ -5,7 +5,7 @@ slug: /commands/array-boolean
displayed_sidebar: docs
---
-**ARRAY BOOLEAN** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY BOOLEAN** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ This example creates an interprocess array of 50 Boolean elements and sets each
| | |
| --- | --- |
| Command number | 223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-date.md b/docs/commands-legacy/array-date.md
index c424e59a47046e..83ca4a6dfb3b54 100644
--- a/docs/commands-legacy/array-date.md
+++ b/docs/commands-legacy/array-date.md
@@ -5,7 +5,7 @@ slug: /commands/array-date
displayed_sidebar: docs
---
-**ARRAY DATE** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY DATE** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ This example creates an interprocess array of 50 Date elements, and sets each el
| | |
| --- | --- |
| Command number | 224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-integer.md b/docs/commands-legacy/array-integer.md
index b6c85eab6eabef..ab6768d2984bb7 100644
--- a/docs/commands-legacy/array-integer.md
+++ b/docs/commands-legacy/array-integer.md
@@ -5,7 +5,7 @@ slug: /commands/array-integer
displayed_sidebar: docs
---
-**ARRAY INTEGER** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY INTEGER** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ This example creates an interprocess array of 50 2-byte [Integer](# "Number betw
| | |
| --- | --- |
| Command number | 220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-longint.md b/docs/commands-legacy/array-longint.md
index 02f06086b2d195..62c33218a6dda2 100644
--- a/docs/commands-legacy/array-longint.md
+++ b/docs/commands-legacy/array-longint.md
@@ -5,7 +5,7 @@ slug: /commands/array-longint
displayed_sidebar: docs
---
-**ARRAY LONGINT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY LONGINT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ This example creates an interprocess array of 50 4-byte Long Integer elements an
| | |
| --- | --- |
| Command number | 221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-object.md b/docs/commands-legacy/array-object.md
index 3408d6d136249e..aedcafcffe4440 100644
--- a/docs/commands-legacy/array-object.md
+++ b/docs/commands-legacy/array-object.md
@@ -5,7 +5,7 @@ slug: /commands/array-object
displayed_sidebar: docs
---
-**ARRAY OBJECT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY OBJECT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,6 +74,6 @@ Creation and filling of a local object array:
| | |
| --- | --- |
| Command number | 1221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-picture.md b/docs/commands-legacy/array-picture.md
index b6d79ea44c1b08..27e766c5857a6f 100644
--- a/docs/commands-legacy/array-picture.md
+++ b/docs/commands-legacy/array-picture.md
@@ -5,7 +5,7 @@ slug: /commands/array-picture
displayed_sidebar: docs
---
-**ARRAY PICTURE** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY PICTURE** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ This example creates an interprocess array of [Picture](# "Can be any Windows or
| | |
| --- | --- |
| Command number | 279 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-pointer.md b/docs/commands-legacy/array-pointer.md
index 2991341a6ae6ab..d7a02935ab7cc3 100644
--- a/docs/commands-legacy/array-pointer.md
+++ b/docs/commands-legacy/array-pointer.md
@@ -5,7 +5,7 @@ slug: /commands/array-pointer
displayed_sidebar: docs
---
-**ARRAY POINTER** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY POINTER** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ This example creates an interprocess array of [Pointer](# "A reference to anothe
| | |
| --- | --- |
| Command number | 280 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-real.md b/docs/commands-legacy/array-real.md
index 2f3a2ada31005d..4dbaae5a52eaee 100644
--- a/docs/commands-legacy/array-real.md
+++ b/docs/commands-legacy/array-real.md
@@ -5,7 +5,7 @@ slug: /commands/array-real
displayed_sidebar: docs
---
-**ARRAY REAL** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY REAL** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ This example creates an interprocess array of 50 Real elements and sets each ele
| | |
| --- | --- |
| Command number | 219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-text.md b/docs/commands-legacy/array-text.md
index 3195c881b38306..6182909f84b46a 100644
--- a/docs/commands-legacy/array-text.md
+++ b/docs/commands-legacy/array-text.md
@@ -5,7 +5,7 @@ slug: /commands/array-text
displayed_sidebar: docs
---
-**ARRAY TEXT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY TEXT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ This example creates an interprocess array of 50 [Text](# "A character string th
| | |
| --- | --- |
| Command number | 222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-time.md b/docs/commands-legacy/array-time.md
index c5442cded22ce9..30b8bcb9ba0fe1 100644
--- a/docs/commands-legacy/array-time.md
+++ b/docs/commands-legacy/array-time.md
@@ -5,7 +5,7 @@ slug: /commands/array-time
displayed_sidebar: docs
---
-**ARRAY TIME** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY TIME** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ Since time arrays accept numeric values, the following code is valid:
| | |
| --- | --- |
| Command number | 1223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-to-collection.md b/docs/commands-legacy/array-to-collection.md
index 8c74734a480d5e..06cc4deb55ed2d 100644
--- a/docs/commands-legacy/array-to-collection.md
+++ b/docs/commands-legacy/array-to-collection.md
@@ -5,12 +5,12 @@ slug: /commands/array-to-collection
displayed_sidebar: docs
---
-**ARRAY TO COLLECTION** ( *...collection* ; *...array* {; *...propertyName*} )
+**ARRAY TO COLLECTION** ( *collection* : Collection ; *...array* : Array {; *...propertyName* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| collection | Collection | ← | Collection to receive the array data |
-| array | Array | → | Array to copy to the collection; if propertyName passed, array to copy to the values of propertyName in the collection |
+| array | Array | → | Array to copy to the collection; if *propertyName* passed, array to copy to the values of *propertyName* in the collection |
| propertyName | Text | → | Object property name whose value to fill with array elements |
@@ -88,6 +88,6 @@ You want to copy a text array in a shared collection:
| | |
| --- | --- |
| Command number | 1563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/array-to-list.md b/docs/commands-legacy/array-to-list.md
index 0464e9802e30fd..1a09f098e9ac50 100644
--- a/docs/commands-legacy/array-to-list.md
+++ b/docs/commands-legacy/array-to-list.md
@@ -5,7 +5,7 @@ slug: /commands/array-to-list
displayed_sidebar: docs
---
-**ARRAY TO LIST** ( *array* ; *list* {; *itemRefs*} )
+**ARRAY TO LIST** ( *array* : Array ; *list* : Text, Integer {; *itemRefs* : Array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,7 +66,7 @@ An error *\-9957* is generated when ARRAY TO LIST is applied to a list that is c
| | |
| --- | --- |
| Command number | 287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/array-to-selection.md b/docs/commands-legacy/array-to-selection.md
index 6e57ac62f7e840..cb9c0d82ee3a06 100644
--- a/docs/commands-legacy/array-to-selection.md
+++ b/docs/commands-legacy/array-to-selection.md
@@ -5,7 +5,7 @@ slug: /commands/array-to-selection
displayed_sidebar: docs
---
-**ARRAY TO SELECTION** {( *array* ; *aField* {; *array2* ; *aField2* ; ... ; *arrayN* ; *aFieldN*}{; *} )}
+**ARRAY TO SELECTION** ({ *array* : Array ; *aField* : Field {; ...(*array* : Array, *aField* : Field)}{; *} })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -86,7 +86,7 @@ You want to copy a selection of records to an archive table by selecting the fie
| | |
| --- | --- |
| Command number | 261 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/assert.md b/docs/commands-legacy/assert.md
index 3f0fbc1f46df23..828a3435023f9f 100644
--- a/docs/commands-legacy/assert.md
+++ b/docs/commands-legacy/assert.md
@@ -5,7 +5,7 @@ slug: /commands/assert
displayed_sidebar: docs
---
-**ASSERT** ( *boolExpression* {; *messageText*} )
+**ASSERT** ( *boolExpression* : Boolean {; *messageText* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,7 +59,7 @@ An assertion can allow parameters passed to a project method to be tested in ord
| | |
| --- | --- |
| Command number | 1129 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/asserted.md b/docs/commands-legacy/asserted.md
index 05a75d32876b30..d88f54cfb52c7b 100644
--- a/docs/commands-legacy/asserted.md
+++ b/docs/commands-legacy/asserted.md
@@ -5,7 +5,7 @@ slug: /commands/asserted
displayed_sidebar: docs
---
-**Asserted** ( *boolExpression* {; *messageText*} ) : Boolean
+**Asserted** ( *boolExpression* : Boolean {; *messageText* : Text} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,7 +47,7 @@ Insertion of an assertion in the evaluation of an expression:
| | |
| --- | --- |
| Command number | 1132 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/average.md b/docs/commands-legacy/average.md
index 190e88c18a7ba3..fb667a11468047 100644
--- a/docs/commands-legacy/average.md
+++ b/docs/commands-legacy/average.md
@@ -5,7 +5,7 @@ slug: /commands/average
displayed_sidebar: docs
---
-**Average** ( *series* {; *attributePath*} ) : Real
+**Average** ( *series* : Field, Array {; *attributePath* : Text} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -95,7 +95,7 @@ You can perform the following computations:
| | |
| --- | --- |
| Command number | 2 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/backup-info.md b/docs/commands-legacy/backup-info.md
index 76d550b9eb5e83..3c4c62c24c1841 100644
--- a/docs/commands-legacy/backup-info.md
+++ b/docs/commands-legacy/backup-info.md
@@ -5,7 +5,7 @@ slug: /commands/backup-info
displayed_sidebar: docs
---
-**BACKUP INFO** ( *selector* ; *info1* ; *info2* )
+**BACKUP INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Time, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ Pass the type of information to get in *selector*. The type and content of the *
| | |
| --- | --- |
| Command number | 888 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/backup.md b/docs/commands-legacy/backup.md
index 0889e63a9330a1..49afcd3255c90c 100644
--- a/docs/commands-legacy/backup.md
+++ b/docs/commands-legacy/backup.md
@@ -43,7 +43,7 @@ If an incident occurs during backup, information about the incident is written i
| | |
| --- | --- |
| Command number | 887 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/base64-decode.md b/docs/commands-legacy/base64-decode.md
index e94cb61eeb84c1..b617c3ceffea45 100644
--- a/docs/commands-legacy/base64-decode.md
+++ b/docs/commands-legacy/base64-decode.md
@@ -5,12 +5,11 @@ slug: /commands/base64-decode
displayed_sidebar: docs
---
-**BASE64 DECODE** ( *toDecode* {; *decoded*}{; *} )
+**BASE64 DECODE** ( *toDecode* : Text, Blob {; *decoded* : Text, Blob}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| toDecode | Text, Blob | → | Encoded value to decode |
-| ← | Decoded value (if decoded parameter omitted) |
+| toDecode | Text, Blob | ↔ |*in:* Encoded value to decode
*out:* Decoded value (if decoded parameter omitted)|
| decoded | Text, Blob | ← | Decoded value |
| * | Operator | → | Decode in Base64URL format |
@@ -22,7 +21,7 @@ displayed_sidebar: docs
Pass in *toDecode* the Base64 or Base64URL encoded text or blob value to decode.
-If you pass the *decoded* parameter, the command decodes the contents of *toDecode* in the decoded parameter -- the *toDecode* parameter is left untouched. If you omit the *decoded* parameter, the command directly modifies the contents of the *toDecode* parameter.
+If you pass the *decoded* parameter, the command decodes the contents of *toDecode* in the *decoded* parameter -- the *toDecode* parameter is left untouched. If you omit the *decoded* parameter, the command directly modifies the contents of the *toDecode* parameter.
**Note:** If a text variable is passed to receive what is decoded by the command, it receives the decoded bytes interpreted as utf-8.
@@ -53,7 +52,6 @@ This example lets you transfer a picture via a BLOB:
[BASE64 ENCODE](base64-encode.md)
[Generate digest](generate-digest.md)
-*Overview of XML DOM Commands*
[XML DECODE](xml-decode.md)
## Properties
@@ -61,6 +59,6 @@ This example lets you transfer a picture via a BLOB:
| | |
| --- | --- |
| Command number | 896 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/base64-encode.md b/docs/commands-legacy/base64-encode.md
index d5c2514f7535e0..09d3e52652282f 100644
--- a/docs/commands-legacy/base64-encode.md
+++ b/docs/commands-legacy/base64-encode.md
@@ -5,12 +5,11 @@ slug: /commands/base64-encode
displayed_sidebar: docs
---
-**BASE64 ENCODE** ( *toEncode* {; *encoded*}{; *} )
+**BASE64 ENCODE** ( *toEncode* : Blob, Text {; *encoded* : Blob, Text}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| toEncode | Blob, Text | → | Value to encode |
-| ← | Encoded value (if encoded parameter omitted) |
+| toEncode | Blob, Text | ↔ |*in:* Value to encode
*out:* Encoded value (if encoded parameter omitted)|
| encoded | Blob, Text | ← | Encoded value |
| * | Operator | → | Encode in Base64URL format |
@@ -36,7 +35,6 @@ By default if the *\** parameter is omitted, the command uses a Base64 encoding.
[BASE64 DECODE](base64-decode.md)
[Generate digest](generate-digest.md)
-*Overview of XML DOM Commands*
[XML DECODE](xml-decode.md)
## Properties
@@ -44,6 +42,6 @@ By default if the *\** parameter is omitted, the command uses a Base64 encoding.
| | |
| --- | --- |
| Command number | 895 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/beep.md b/docs/commands-legacy/beep.md
index 5eb2ba7541a802..76b28ed64b9386 100644
--- a/docs/commands-legacy/beep.md
+++ b/docs/commands-legacy/beep.md
@@ -39,6 +39,6 @@ In the following example, if no records are found by the query, a beep is emitte
| | |
| --- | --- |
| Command number | 151 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/before-selection.md b/docs/commands-legacy/before-selection.md
index 41cb3bbf925bd4..b70c1020d638d9 100644
--- a/docs/commands-legacy/before-selection.md
+++ b/docs/commands-legacy/before-selection.md
@@ -5,7 +5,7 @@ slug: /commands/before-selection
displayed_sidebar: docs
---
-**Before selection** {( *aTable* )} : Boolean
+**Before selection** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ This form method is used during the printing of a report. It sets a variable, *v
| | |
| --- | --- |
| Command number | 198 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/before.md b/docs/commands-legacy/before.md
index ddbd91700e21d0..794d51c8d6e56f 100644
--- a/docs/commands-legacy/before.md
+++ b/docs/commands-legacy/before.md
@@ -30,6 +30,6 @@ In order for the **Before** execution cycle to be generated, make sure that the
| | |
| --- | --- |
| Command number | 29 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/begin-sql.md b/docs/commands-legacy/begin-sql.md
index 73ae684991e619..b7782c88da5d70 100644
--- a/docs/commands-legacy/begin-sql.md
+++ b/docs/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note that the 4D *Debugger* will evaluate the SQL code line by line. In certain
| | |
| --- | --- |
| Command number | 948 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-properties.md b/docs/commands-legacy/blob-properties.md
index 839b7dfcf70ad4..1edcadb2024210 100644
--- a/docs/commands-legacy/blob-properties.md
+++ b/docs/commands-legacy/blob-properties.md
@@ -5,11 +5,11 @@ slug: /commands/blob-properties
displayed_sidebar: docs
---
-**BLOB PROPERTIES** ( *blob* ; *compressed* {; *expandedSize* {; *currentSize*}} )
+**BLOB PROPERTIES** ( *blob* : Blob ; *compressed* : Integer {; *expandedSize* : Integer {; *currentSize* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB for which to get information |
+| Blob | Blob | → | BLOB for which to get information |
| compressed | Integer | ← | 0 = BLOB is not compressed, 1 = Compact compression, 2 = Fast compression, -1 = GZIP Best compression, -2 = GZIP Fast compression |
| expandedSize | Integer | ← | Size of BLOB (in bytes) when not compressed |
| currentSize | Integer | ← | Current size of BLOB (in bytes) |
@@ -84,6 +84,6 @@ After this method has been added to your application, you can use it this way:
| | |
| --- | --- |
| Command number | 536 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-size.md b/docs/commands-legacy/blob-size.md
index 2732433e14a664..c4a265c7254229 100644
--- a/docs/commands-legacy/blob-size.md
+++ b/docs/commands-legacy/blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/blob-size
displayed_sidebar: docs
---
-**BLOB size** ( *blob* ) : Integer
+**BLOB size** ( *blob* : Blob ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB field or variable |
+| Blob | Blob | → | BLOB field or variable |
| Function result | Integer | ← | Size in bytes of the BLOB |
@@ -35,6 +35,6 @@ The line of code adds 100 bytes to the BLOB *myBlob*:
| | |
| --- | --- |
| Command number | 605 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-to-document.md b/docs/commands-legacy/blob-to-document.md
index c480b8bb74eecd..ed75fc2a806f0a 100644
--- a/docs/commands-legacy/blob-to-document.md
+++ b/docs/commands-legacy/blob-to-document.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-document
displayed_sidebar: docs
---
-**BLOB TO DOCUMENT** ( *document* ; *blob* )
+**BLOB TO DOCUMENT** ( *document* : Text ; *blob* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| document | Text | → | Name of the document |
-| blob | Blob | → | New contents for the document |
+| Blob | Blob | → | New contents for the document |
@@ -56,7 +56,7 @@ In all cases, you can trap the error using an [ON ERR CALL](on-err-call.md) inte
| | |
| --- | --- |
| Command number | 526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/blob-to-integer.md b/docs/commands-legacy/blob-to-integer.md
index addfe45c62b473..a810fc92f7a16c 100644
--- a/docs/commands-legacy/blob-to-integer.md
+++ b/docs/commands-legacy/blob-to-integer.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-integer
displayed_sidebar: docs
---
-**BLOB to integer** ( *blob* ; *byteOrder* {; *offset*} ) : Integer
+**BLOB to integer** ( *blob* : Blob ; *byteOrder* : Integer {; *offset* : Variable} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB from which to get the integer value |
+| Blob | Blob | → | BLOB from which to get the integer value |
| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | Variable | ↔ | Offset within the BLOB (expressed in bytes) |
| ||| New offset after reading |
@@ -64,6 +64,6 @@ The following example reads 20 Integer values from a BLOB, starting at the offse
| | |
| --- | --- |
| Command number | 549 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-to-list.md b/docs/commands-legacy/blob-to-list.md
index 361570c4a0a058..dde3b9744ad4c3 100644
--- a/docs/commands-legacy/blob-to-list.md
+++ b/docs/commands-legacy/blob-to-list.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-list
displayed_sidebar: docs
---
-**BLOB to list** ( *blob* {; *offset*} ) : Integer
+**BLOB to list** ( *blob* : Blob {; *offset* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB containing a hierarchical list |
+| Blob | Blob | → | BLOB containing a hierarchical list |
| offset | Integer | ↔ | Offset within the BLOB (expressed in bytes) |
|||| New offset after reading |
| Function result | Integer | ← | Reference to newly created list |
@@ -65,7 +65,7 @@ The OK variable is set to 1 if the list has been successfully created, otherwise
| | |
| --- | --- |
| Command number | 557 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/blob-to-longint.md b/docs/commands-legacy/blob-to-longint.md
index d8738ad012e5b2..b0e1e8c277f9be 100644
--- a/docs/commands-legacy/blob-to-longint.md
+++ b/docs/commands-legacy/blob-to-longint.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-longint
displayed_sidebar: docs
---
-**BLOB to longint** ( *blob* ; *byteOrder* {; *offset*} ) : Integer
+**BLOB to longint** ( *blob* : Blob ; *byteOrder* : Integer {; *offset* : Variable} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB from which to get the Long Integer value |
+| Blob | Blob | → | BLOB from which to get the Long Integer value |
| byteOrder | Integer | → | 0 = Native byte ordering, 1 = Macintosh byte ordering, 2 = PC byte ordering |
| offset | Variable | ↔ | Offset within the BLOB (expressed in bytes) |
|||| New offset after reading |
@@ -64,6 +64,6 @@ The following example reads 20 Long Integer values from a BLOB, starting at the
| | |
| --- | --- |
| Command number | 551 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-to-picture.md b/docs/commands-legacy/blob-to-picture.md
index 7f4d6cbb6c841a..3fa3bf7eae370d 100644
--- a/docs/commands-legacy/blob-to-picture.md
+++ b/docs/commands-legacy/blob-to-picture.md
@@ -5,7 +5,7 @@ slug: /commands/blob-to-picture
displayed_sidebar: docs
---
-**BLOB TO PICTURE** ( *pictureBlob* ; *picture* {; *codec*} )
+**BLOB TO PICTURE** ( *pictureBlob* : Blob ; *picture* : Picture {; *codec* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 682 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/blob-to-print-settings.md b/docs/commands-legacy/blob-to-print-settings.md
index 377dfb55a729d0..2376a0dc9692d7 100644
--- a/docs/commands-legacy/blob-to-print-settings.md
+++ b/docs/commands-legacy/blob-to-print-settings.md
@@ -5,7 +5,7 @@ slug: /commands/blob-to-print-settings
displayed_sidebar: docs
---
-**BLOB to print settings** ( *printSettings* {; *params*} ) : Integer
+**BLOB to print settings** ( *printSettings* : Blob {; *params* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,6 +75,6 @@ You want to apply print settings previously saved to disk to the current 4D prin
| | |
| --- | --- |
| Command number | 1434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/blob-to-real.md b/docs/commands-legacy/blob-to-real.md
index 5740ca1a3cf33a..e0e0218858d9c5 100644
--- a/docs/commands-legacy/blob-to-real.md
+++ b/docs/commands-legacy/blob-to-real.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-real
displayed_sidebar: docs
---
-**BLOB to real** ( *blob* ; *realFormat* {; *offset*} ) : Real
+**BLOB to real** ( *blob* : Blob ; *realFormat* : Integer {; *offset* : Variable} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB from which to get the Real value |
+| Blob | Blob | → | BLOB from which to get the Real value |
| realFormat | Integer | → | 0=Native real format, 1=Extended real format, 2=Macintosh Double real format, 3=Windows Double real format |
| offset | Variable | ↔ | Offset within the BLOB (expressed in bytes) |
|||| New offset after reading |
@@ -65,6 +65,6 @@ The following example reads 20 Real values from a BLOB, starting at the offset 0
| | |
| --- | --- |
| Command number | 553 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-to-text.md b/docs/commands-legacy/blob-to-text.md
index 5c7b97473bf341..56ecb3696349d8 100644
--- a/docs/commands-legacy/blob-to-text.md
+++ b/docs/commands-legacy/blob-to-text.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-text
displayed_sidebar: docs
---
-**BLOB to text** ( *blob* ; *textFormat* {; *offset* {; *textLength*}} ) : Text
+**BLOB to text** ( *blob* : Blob ; *textFormat* : Integer {; *offset* : Variable {; *textLength* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB from which to get the text |
+| Blob | Blob | → | BLOB from which to get the text |
| textFormat | Integer | → | Format and character set of text |
| offset | Variable | ↔ | Offset within the BLOB (expressed in bytes) |
| || | New offset after reading |
@@ -66,6 +66,6 @@ After the call, the variable is incremented by the number of bytes read. Therefo
| | |
| --- | --- |
| Command number | 555 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/blob-to-users.md b/docs/commands-legacy/blob-to-users.md
index 55276410da3e8c..89761684a5aa03 100644
--- a/docs/commands-legacy/blob-to-users.md
+++ b/docs/commands-legacy/blob-to-users.md
@@ -5,7 +5,7 @@ slug: /commands/blob-to-users
displayed_sidebar: docs
---
-**BLOB TO USERS** ( *users* )
+**BLOB TO USERS** ( *users* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 850 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/blob-to-variable.md b/docs/commands-legacy/blob-to-variable.md
index 66a4bd5d75a0b2..2a65951e1d8518 100644
--- a/docs/commands-legacy/blob-to-variable.md
+++ b/docs/commands-legacy/blob-to-variable.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-variable
displayed_sidebar: docs
---
-**BLOB TO VARIABLE** ( *blob* ; *variable* {; *offset*} )
+**BLOB TO VARIABLE** ( *blob* : Blob ; *variable* : Variable {; *offset* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB containing 4D variables |
+| Blob | Blob | → | BLOB containing 4D variables |
| variable | Variable | ← | Variable to write with BLOB contents |
| offset | Integer | ↔ | Position of variable within BLOB |
| ||| Position of following variable within BLOB |
@@ -47,7 +47,7 @@ The OK variable is set to 1 if the variable has been successfully rewritten, oth
| | |
| --- | --- |
| Command number | 533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/bool.md b/docs/commands-legacy/bool.md
index 373f2d8d1070ab..6d90ba58ce3a2c 100644
--- a/docs/commands-legacy/bool.md
+++ b/docs/commands-legacy/bool.md
@@ -5,7 +5,7 @@ slug: /commands/bool
displayed_sidebar: docs
---
-**Bool** ( *expression* ) : Boolean
+**Bool** ( *expression* : Expression ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ You select a value depending on the contents of an object field attribute, antic
| | |
| --- | --- |
| Command number | 1537 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/boolean-array-from-set.md b/docs/commands-legacy/boolean-array-from-set.md
index d98b0be67c69e2..b0c656a4a87985 100644
--- a/docs/commands-legacy/boolean-array-from-set.md
+++ b/docs/commands-legacy/boolean-array-from-set.md
@@ -5,7 +5,7 @@ slug: /commands/boolean-array-from-set
displayed_sidebar: docs
---
-**BOOLEAN ARRAY FROM SET** ( *booleanArr* {; *set*} )
+**BOOLEAN ARRAY FROM SET** ( *booleanArr* : Boolean array {; *set* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ If you don’t pass the *set* parameter, the command will use UserSet in the cur
| | |
| --- | --- |
| Command number | 646 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/break-level.md b/docs/commands-legacy/break-level.md
index eb73ad0fe03baa..e6c830a9f64857 100644
--- a/docs/commands-legacy/break-level.md
+++ b/docs/commands-legacy/break-level.md
@@ -5,7 +5,7 @@ slug: /commands/break-level
displayed_sidebar: docs
---
-**BREAK LEVEL** ( *level* {; *pageBreak*} )
+**BREAK LEVEL** ( *level* : Integer {; *pageBreak* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following example prints a report with two break levels. The selection is so
| | |
| --- | --- |
| Command number | 302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/bring-to-front.md b/docs/commands-legacy/bring-to-front.md
index 57cae080623ba1..0c6b982f475cd3 100644
--- a/docs/commands-legacy/bring-to-front.md
+++ b/docs/commands-legacy/bring-to-front.md
@@ -5,7 +5,7 @@ slug: /commands/bring-to-front
displayed_sidebar: docs
---
-**BRING TO FRONT** ( *process* )
+**BRING TO FRONT** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The following example is a method that can be executed from a menu. It checks to
| | |
| --- | --- |
| Command number | 326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/build-application.md b/docs/commands-legacy/build-application.md
index cc34e224d66ece..ee02e5d6910ada 100644
--- a/docs/commands-legacy/build-application.md
+++ b/docs/commands-legacy/build-application.md
@@ -5,7 +5,7 @@ slug: /commands/build-application
displayed_sidebar: docs
---
-**BUILD APPLICATION** {( *buildAppSettings* )}
+**BUILD APPLICATION** ({ *buildAppSettings* : Text })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ If the command fails, an error is generated that you can intercept using the [ON
| | |
| --- | --- |
| Command number | 871 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, Document, error |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/cache-info.md b/docs/commands-legacy/cache-info.md
index 0881d974eb82df..9de4fce897f1ca 100644
--- a/docs/commands-legacy/cache-info.md
+++ b/docs/commands-legacy/cache-info.md
@@ -5,7 +5,7 @@ slug: /commands/cache-info
displayed_sidebar: docs
---
-**Cache info** {( *dbFilter* )} : Object
+**Cache info** ( *dbFilter* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ You want to get cache information for the database and all opened components:
| | |
| --- | --- |
| Command number | 1402 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/call-form.md b/docs/commands-legacy/call-form.md
index d370a451a50505..98ff66a6298bd4 100644
--- a/docs/commands-legacy/call-form.md
+++ b/docs/commands-legacy/call-form.md
@@ -5,7 +5,7 @@ slug: /commands/call-form
displayed_sidebar: docs
---
-**CALL FORM** ( *window* ; *formula* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL FORM** ( *window* : Integer ; *formula* : Object, Text {; *...param* : Expression} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -107,6 +107,6 @@ You can then add other messages by executing the **CALL FORM** command again:
| | |
| --- | --- |
| Command number | 1391 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/call-subform-container.md b/docs/commands-legacy/call-subform-container.md
index 51616b24741021..17acfa35cd029a 100644
--- a/docs/commands-legacy/call-subform-container.md
+++ b/docs/commands-legacy/call-subform-container.md
@@ -5,7 +5,7 @@ slug: /commands/call-subform-container
displayed_sidebar: docs
---
-**CALL SUBFORM CONTAINER** ( *event* )
+**CALL SUBFORM CONTAINER** ( *event* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -19,7 +19,7 @@ displayed_sidebar: docs
This command must be placed in the form method of the subform or in the object method of one of the subform objects. The event will only be received in the object method of the subform container.
-In *event*, you can pass any predefined form event of 4D (you can use the constants of the "*Form Events*" theme) or any value corresponding to a custom event. In the first case, the event must be checked for the subform. In the case of a custom event, it is recommended to pass a negative value in *event* in order to avoid the risk of interfering with existing or future 4D event numbers.
+In *event*, you can pass one of the [4D form events that are supported by subforms](../FormObjects/subform_overview.md#call-subform-container-command) or any value corresponding to a custom event. In the first case, the event must be checked for the subform. In the case of a custom event, it is recommended to pass a negative value in *event* in order to avoid the risk of interfering with existing or future 4D event numbers.
*Example of execution of the* CALL SUBFORM CONTAINER *command:*
@@ -35,6 +35,6 @@ In *event*, you can pass any predefined form event of 4D (you can use the consta
| | |
| --- | --- |
| Command number | 1086 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/call-worker.md b/docs/commands-legacy/call-worker.md
index 33f8d6667f43f7..60699349cf1478 100644
--- a/docs/commands-legacy/call-worker.md
+++ b/docs/commands-legacy/call-worker.md
@@ -5,7 +5,7 @@ slug: /commands/call-worker
displayed_sidebar: docs
---
-**CALL WORKER** ( *process* ; *formula* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL WORKER** ( *process* : Text, Integer ; *formula* : Object, Text {; *...param* : Expression} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -82,6 +82,6 @@ The code of *workerMethod* is:
| | |
| --- | --- |
| Command number | 1389 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/cancel-transaction.md b/docs/commands-legacy/cancel-transaction.md
index fcb260effb51a7..418175a7bec640 100644
--- a/docs/commands-legacy/cancel-transaction.md
+++ b/docs/commands-legacy/cancel-transaction.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 241 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/cancel.md b/docs/commands-legacy/cancel.md
index 8cfb18e59c1b63..c9a5ba480397f7 100644
--- a/docs/commands-legacy/cancel.md
+++ b/docs/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ When the [CANCEL](cancel.md) command is executed (form or printing cancelled), t
| | |
| --- | --- |
| Command number | 270 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/caps-lock-down.md b/docs/commands-legacy/caps-lock-down.md
index 70e5e725e2c254..d3128448f7393c 100644
--- a/docs/commands-legacy/caps-lock-down.md
+++ b/docs/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/change-current-user.md b/docs/commands-legacy/change-current-user.md
index dbe2961c31c1a9..08088aa1588d6a 100644
--- a/docs/commands-legacy/change-current-user.md
+++ b/docs/commands-legacy/change-current-user.md
@@ -5,7 +5,7 @@ slug: /commands/change-current-user
displayed_sidebar: docs
---
-**CHANGE CURRENT USER** {( *user* ; *password* )}
+**CHANGE CURRENT USER** ({ *user* : Text, Integer ; *password* : Text })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,6 +72,6 @@ The following example simply displays the connection dialog box:
| | |
| --- | --- |
| Command number | 289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/change-licenses.md b/docs/commands-legacy/change-licenses.md
index 9d2a94c0b9bdea..42d42b05bda42c 100644
--- a/docs/commands-legacy/change-licenses.md
+++ b/docs/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ This way a user can activate licenses without having to modify the database.
| | |
| --- | --- |
| Command number | 637 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/change-password.md b/docs/commands-legacy/change-password.md
index 1af1c9dcf09e30..c093cd93c5d5d0 100644
--- a/docs/commands-legacy/change-password.md
+++ b/docs/commands-legacy/change-password.md
@@ -5,7 +5,7 @@ slug: /commands/change-password
displayed_sidebar: docs
---
-**CHANGE PASSWORD** ( *password* )
+**CHANGE PASSWORD** ( *password* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following example allows the user to change his or her password.
| | |
| --- | --- |
| Command number | 186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/change-string.md b/docs/commands-legacy/change-string.md
index 335387ae2f73ca..5517f3eba267a5 100644
--- a/docs/commands-legacy/change-string.md
+++ b/docs/commands-legacy/change-string.md
@@ -5,7 +5,7 @@ slug: /commands/change-string
displayed_sidebar: docs
---
-**Change string** ( *source* ; *newChars* ; *where* ) : Text
+**Change string** ( *source* : Text ; *newChars* : Text ; *where* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The following example illustrates the use of **Change string**. The results are
| | |
| --- | --- |
| Command number | 234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/char.md b/docs/commands-legacy/char.md
index 5e3561c4be3f63..939c5d2fd53331 100644
--- a/docs/commands-legacy/char.md
+++ b/docs/commands-legacy/char.md
@@ -5,7 +5,7 @@ slug: /commands/char
displayed_sidebar: docs
---
-**Char** ( *charCode* ) : Text
+**Char** ( *charCode* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The following example uses **Char** to insert a carriage return within the text
| | |
| --- | --- |
| Command number | 90 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/character-code.md b/docs/commands-legacy/character-code.md
index dc16fb7aca5129..6f487b7c167653 100644
--- a/docs/commands-legacy/character-code.md
+++ b/docs/commands-legacy/character-code.md
@@ -5,7 +5,7 @@ slug: /commands/character-code
displayed_sidebar: docs
---
-**Character code** ( *character* ) : Integer
+**Character code** ( *character* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ The second piece of code runs faster for two reasons: it does only one character
| | |
| --- | --- |
| Command number | 91 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/check-log-file.md b/docs/commands-legacy/check-log-file.md
index 29866ca60d3c5a..aae8201301e26a 100644
--- a/docs/commands-legacy/check-log-file.md
+++ b/docs/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ You can intercept these errors using an error-handling method installed with the
| | |
| --- | --- |
| Command number | 799 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/choose.md b/docs/commands-legacy/choose.md
index eba7a08323d295..b5b00d348c9eba 100644
--- a/docs/commands-legacy/choose.md
+++ b/docs/commands-legacy/choose.md
@@ -5,7 +5,7 @@ slug: /commands/choose
displayed_sidebar: docs
---
-**Choose** ( *criterion* ; *value* {; *value2* ; ... ; *valueN*} ) : any
+**Choose** ( *criterion* : Boolean, Integer ; *value* : Expression {; *...value* : Expression} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,6 +85,6 @@ This code is strictly equivalent to:
| | |
| --- | --- |
| Command number | 955 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/clear-list.md b/docs/commands-legacy/clear-list.md
index c0ef6202459d59..774936451e3464 100644
--- a/docs/commands-legacy/clear-list.md
+++ b/docs/commands-legacy/clear-list.md
@@ -5,7 +5,7 @@ slug: /commands/clear-list
displayed_sidebar: docs
---
-**CLEAR LIST** ( *list* {; *} )
+**CLEAR LIST** ( *list* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ See example for the [BLOB to list](blob-to-list.md) command.
| | |
| --- | --- |
| Command number | 377 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/clear-named-selection.md b/docs/commands-legacy/clear-named-selection.md
index 3ad2e7a01b0fb9..87dd1be9e1536b 100644
--- a/docs/commands-legacy/clear-named-selection.md
+++ b/docs/commands-legacy/clear-named-selection.md
@@ -5,7 +5,7 @@ slug: /commands/clear-named-selection
displayed_sidebar: docs
---
-**CLEAR NAMED SELECTION** ( *name* )
+**CLEAR NAMED SELECTION** ( *name* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If *name* was created using the [CUT NAMED SELECTION](cut-named-selection.md) co
| | |
| --- | --- |
| Command number | 333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/clear-pasteboard.md b/docs/commands-legacy/clear-pasteboard.md
index f1ef582622c0b2..ee5af0fba47bce 100644
--- a/docs/commands-legacy/clear-pasteboard.md
+++ b/docs/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co
| | |
| --- | --- |
| Command number | 402 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/clear-semaphore.md b/docs/commands-legacy/clear-semaphore.md
index 66d736e6d8658b..35afca3073ccb5 100644
--- a/docs/commands-legacy/clear-semaphore.md
+++ b/docs/commands-legacy/clear-semaphore.md
@@ -5,7 +5,7 @@ slug: /commands/clear-semaphore
displayed_sidebar: docs
---
-**CLEAR SEMAPHORE** ( *semaphore* )
+**CLEAR SEMAPHORE** ( *semaphore* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ See the example for [Semaphore](semaphore.md).
| | |
| --- | --- |
| Command number | 144 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/clear-set.md b/docs/commands-legacy/clear-set.md
index 5d8fda7546b9dd..4f5dd1af43612c 100644
--- a/docs/commands-legacy/clear-set.md
+++ b/docs/commands-legacy/clear-set.md
@@ -5,7 +5,7 @@ slug: /commands/clear-set
displayed_sidebar: docs
---
-**CLEAR SET** ( *set* )
+**CLEAR SET** ( *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ See the example for [USE SET](use-set.md).
| | |
| --- | --- |
| Command number | 117 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/clear-variable.md b/docs/commands-legacy/clear-variable.md
index f9fb61df196c77..b98520c04cf66d 100644
--- a/docs/commands-legacy/clear-variable.md
+++ b/docs/commands-legacy/clear-variable.md
@@ -5,7 +5,7 @@ slug: /commands/clear-variable
displayed_sidebar: docs
---
-**CLEAR VARIABLE** ( *variable* )
+**CLEAR VARIABLE** ( *variable* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ In a form, you are using the drop-down list *asMyDropDown* whose sole purpose is
| | |
| --- | --- |
| Command number | 89 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/clickcount.md b/docs/commands-legacy/clickcount.md
index a3a2a048b53dee..426fcab99a8df9 100644
--- a/docs/commands-legacy/clickcount.md
+++ b/docs/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Labels are not enterable but they become so after a triple-click. If you want to
| | |
| --- | --- |
| Command number | 1332 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/close-document.md b/docs/commands-legacy/close-document.md
index 2e3058e867ba14..6c0da71b004b27 100644
--- a/docs/commands-legacy/close-document.md
+++ b/docs/commands-legacy/close-document.md
@@ -5,7 +5,7 @@ slug: /commands/close-document
displayed_sidebar: docs
---
-**CLOSE DOCUMENT** ( *docRef* )
+**CLOSE DOCUMENT** ( *docRef* : Time )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ The following example lets the user create a new document, writes the string “
| | |
| --- | --- |
| Command number | 267 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/close-printing-job.md b/docs/commands-legacy/close-printing-job.md
index 8431df9f961c18..7e9d3323448233 100644
--- a/docs/commands-legacy/close-printing-job.md
+++ b/docs/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 996 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/close-resource-file.md b/docs/commands-legacy/close-resource-file.md
index 16389673ccd712..fd6f8dfe94738f 100644
--- a/docs/commands-legacy/close-resource-file.md
+++ b/docs/commands-legacy/close-resource-file.md
@@ -5,7 +5,7 @@ slug: /commands/close-resource-file
displayed_sidebar: docs
---
-**CLOSE RESOURCE FILE** ( *resFile* )
+**CLOSE RESOURCE FILE** ( *resFile* : Time )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Remember to eventually call **CLOSE RESOURCE FILE** for a resource file that you
| | |
| --- | --- |
| Command number | 498 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/close-window.md b/docs/commands-legacy/close-window.md
index 21de52f056ba97..3dbb505b2fc932 100644
--- a/docs/commands-legacy/close-window.md
+++ b/docs/commands-legacy/close-window.md
@@ -5,7 +5,7 @@ slug: /commands/close-window
displayed_sidebar: docs
---
-**CLOSE WINDOW** {( *window* )}
+**CLOSE WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The following example opens a form window and adds new records with the [ADD REC
| | |
| --- | --- |
| Command number | 154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/collection-to-array.md b/docs/commands-legacy/collection-to-array.md
index a90103de378e59..1c089072ac0dfd 100644
--- a/docs/commands-legacy/collection-to-array.md
+++ b/docs/commands-legacy/collection-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/collection-to-array
displayed_sidebar: docs
---
-**COLLECTION TO ARRAY** ( *collection* ; *array* {; *propertyName*}{; *array2* ; *propertyName2* ; ... ; *arrayN* ; *propertyNameN*} )
+**COLLECTION TO ARRAY** ( *collection* : Collection ; *array* : Array {; *propertyName* : Text}{; ...(*array* : Array ; *propertyName* : Text) } )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -71,6 +71,6 @@ You want to copy different property values from a collection of objects in diffe
| | |
| --- | --- |
| Command number | 1562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/combine-pictures.md b/docs/commands-legacy/combine-pictures.md
index a4f99e6d48ac81..10fbc678a2c8ac 100644
--- a/docs/commands-legacy/combine-pictures.md
+++ b/docs/commands-legacy/combine-pictures.md
@@ -5,7 +5,7 @@ slug: /commands/combine-pictures
displayed_sidebar: docs
---
-**COMBINE PICTURES** ( *resultingPict* ; *pict1* ; *operator* ; *pict2* {; *horOffset* ; *vertOffset*} )
+**COMBINE PICTURES** ( *resultingPict* : Picture ; *pict1* : Picture ; *operator* : Integer ; *pict2* : Picture {; *horOffset* : Integer ; *vertOffset* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ Result:
| | |
| --- | --- |
| Command number | 987 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/compact-data-file.md b/docs/commands-legacy/compact-data-file.md
index 166159ceda379c..4629c9115036d1 100644
--- a/docs/commands-legacy/compact-data-file.md
+++ b/docs/commands-legacy/compact-data-file.md
@@ -5,7 +5,7 @@ slug: /commands/compact-data-file
displayed_sidebar: docs
---
-**Compact data file** ( *structurePath* ; *dataPath* {; *archiveFolder* {; *option* {; *method*}}} ) : Text
+**Compact data file** ( *structurePath* : Text ; *dataPath* : Text {; *archiveFolder* : Text {; *option* : Integer {; *method* : Text}}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,7 +74,7 @@ If the compacting operation is carried out correctly, the OK system variable is
| | |
| --- | --- |
| Command number | 937 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/compare-strings.md b/docs/commands-legacy/compare-strings.md
index 05038fe23e2b4a..cfdb1910331eab 100644
--- a/docs/commands-legacy/compare-strings.md
+++ b/docs/commands-legacy/compare-strings.md
@@ -5,12 +5,12 @@ slug: /commands/compare-strings
displayed_sidebar: docs
---
-**Compare strings** ( *aString* ; *bString* {; *options*} ) : Integer
+**Compare strings** ( *aString* : Text ; *bString* : Text {; *options* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| aText | Text | → | String to compare |
-| bText | Text | → | String to compare |
+| aString | Text | → | String to compare |
+| bString | Text | → | String to compare |
| options | Integer | → | Comparison rule(s) |
| Function result | Integer | ← | Result of string comparison |
@@ -111,6 +111,6 @@ The following examples illustrate the specific impact of options in **Japanese d
| | |
| --- | --- |
| Command number | 1756 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/component-list.md b/docs/commands-legacy/component-list.md
index dade4ed9baec21..f562584a128eec 100644
--- a/docs/commands-legacy/component-list.md
+++ b/docs/commands-legacy/component-list.md
@@ -5,7 +5,7 @@ slug: /commands/component-list
displayed_sidebar: docs
---
-**COMPONENT LIST** ( *componentsArray* )
+**COMPONENT LIST** ( *componentsArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ For more information about 4D components, please refer to the Design Reference m
| | |
| --- | --- |
| Command number | 1001 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/compress-blob.md b/docs/commands-legacy/compress-blob.md
index ca69420bc97383..dc9fb15d699157 100644
--- a/docs/commands-legacy/compress-blob.md
+++ b/docs/commands-legacy/compress-blob.md
@@ -5,11 +5,11 @@ slug: /commands/compress-blob
displayed_sidebar: docs
---
-**COMPRESS BLOB** ( *blob* {; *compression*} )
+**COMPRESS BLOB** ( *blob* : Blob {; *compression* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB to compress |
+| Blob | Blob | → | BLOB to compress |
| compression | Integer | → | If not omitted: 1, compress as compact as possible 2, compress as fast as possible |
@@ -98,7 +98,7 @@ The OK variable is set to 1 if the BLOB has been successfully compressed; otherw
| | |
| --- | --- |
| Command number | 534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/confirm.md b/docs/commands-legacy/confirm.md
index 040eb06783db69..8e862fc4323855 100644
--- a/docs/commands-legacy/confirm.md
+++ b/docs/commands-legacy/confirm.md
@@ -5,7 +5,7 @@ slug: /commands/confirm
displayed_sidebar: docs
---
-**CONFIRM** ( *message* {; *okButtonTitle* {; *cancelButtonTitle*}} )
+**CONFIRM** ( *message* : Text {; *okButtonTitle* : Text {; *cancelButtonTitle* : Text}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,7 +98,7 @@ will display the confirm dialog box (on Windows) shown here:
| | |
| --- | --- |
| Command number | 162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/contextual-click.md b/docs/commands-legacy/contextual-click.md
index 58a28326bd9a2a..a030cbcb85df6a 100644
--- a/docs/commands-legacy/contextual-click.md
+++ b/docs/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ This method, combined with a scrollable area, enables you to change the value of
| | |
| --- | --- |
| Command number | 713 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/convert-coordinates.md b/docs/commands-legacy/convert-coordinates.md
index d18c37560eb8a6..8fcd282b385a76 100644
--- a/docs/commands-legacy/convert-coordinates.md
+++ b/docs/commands-legacy/convert-coordinates.md
@@ -5,14 +5,12 @@ slug: /commands/convert-coordinates
displayed_sidebar: docs
---
-**CONVERT COORDINATES** ( *xCoord* ; *yCoord* ; *from* ; *to* )
+**CONVERT COORDINATES** ( *xCoord* : Integer ; *yCoord* : Integer ; *from* : Integer ; *to* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| xCoord | Integer | → | Horizontal coordinate of a point (initial) |
-| ← | Horizontal coordinate of a point (converted) |
-| yCoord | Integer | → | Vertical coordinate of a point (initial) |
-| ← | Vertical coordinate of a point (converted) |
+| xCoord | Integer | ↔ | *in:* Horizontal coordinate of a point (initial)
*out:* Horizontal coordinate of a point (converted) |
+| yCoord | Integer | ↔ | *in:* Vertical coordinate of a point (initial)
*out:* Vertical coordinate of a point (converted) |
| from | Integer | → | Coordinates system to convert from |
| to | Integer | → | Coordinates system to convert to |
@@ -90,6 +88,6 @@ You want to open a pop-up window at the position of the mouse cursor. On Windows
| | |
| --- | --- |
| Command number | 1365 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/convert-from-text.md b/docs/commands-legacy/convert-from-text.md
index 8d055f5274ba3f..eed033551f0149 100644
--- a/docs/commands-legacy/convert-from-text.md
+++ b/docs/commands-legacy/convert-from-text.md
@@ -5,7 +5,7 @@ slug: /commands/convert-from-text
displayed_sidebar: docs
---
-**CONVERT FROM TEXT** ( *4Dtext* ; *charSet* ; *convertedBLOB* )
+**CONVERT FROM TEXT** ( *4Dtext* : Text ; *charSet* : Text, Integer ; *convertedBLOB* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -193,7 +193,7 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw
| | |
| --- | --- |
| Command number | 1011 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/convert-path-posix-to-system.md b/docs/commands-legacy/convert-path-posix-to-system.md
index 501b5b63e90562..55b37f43198729 100644
--- a/docs/commands-legacy/convert-path-posix-to-system.md
+++ b/docs/commands-legacy/convert-path-posix-to-system.md
@@ -5,7 +5,7 @@ slug: /commands/convert-path-posix-to-system
displayed_sidebar: docs
---
-**Convert path POSIX to system** ( *posixPath* {; *} ) : Text
+**Convert path POSIX to system** ( *posixPath* : Text {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ Examples under Windows:
| | |
| --- | --- |
| Command number | 1107 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/convert-path-system-to-posix.md b/docs/commands-legacy/convert-path-system-to-posix.md
index a8ce9eecafc097..abb6fe352ff925 100644
--- a/docs/commands-legacy/convert-path-system-to-posix.md
+++ b/docs/commands-legacy/convert-path-system-to-posix.md
@@ -5,7 +5,7 @@ slug: /commands/convert-path-system-to-posix
displayed_sidebar: docs
---
-**Convert path system to POSIX** ( *systemPath* {; *} ) : Text
+**Convert path system to POSIX** ( *systemPath* : Text {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ Example under Windows
| | |
| --- | --- |
| Command number | 1106 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/convert-picture.md b/docs/commands-legacy/convert-picture.md
index 8f042dcf9121ed..da9fcbed794d13 100644
--- a/docs/commands-legacy/convert-picture.md
+++ b/docs/commands-legacy/convert-picture.md
@@ -5,12 +5,11 @@ slug: /commands/convert-picture
displayed_sidebar: docs
---
-**CONVERT PICTURE** ( *picture* ; *codec* {; *compression*} )
+**CONVERT PICTURE** ( *picture* : Picture ; *codec* : Text {; *compression* : Real} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| picture | Picture | → | Picture to be converted |
-| ← | Converted picture |
+| picture | Picture | ↔ | *in:* Picture to be converted
*out:* Converted picture |
| codec | Text | → | Picture Codec ID |
| compression | Real | → | Quality of compression |
@@ -55,6 +54,6 @@ Conversion of a picture with 60% quality:
| | |
| --- | --- |
| Command number | 1002 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/convert-to-text.md b/docs/commands-legacy/convert-to-text.md
index 17f95da166a383..ad4bb6b2b220e0 100644
--- a/docs/commands-legacy/convert-to-text.md
+++ b/docs/commands-legacy/convert-to-text.md
@@ -5,11 +5,11 @@ slug: /commands/convert-to-text
displayed_sidebar: docs
---
-**Convert to text** ( *blob* ; *charSet* ) : Text
+**Convert to text** ( *blob* : Blob ; *charSet* : Text, Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB containing text expressed in a specific character set |
+| Blob | Blob | → | BLOB containing text expressed in a specific character set |
| charSet | Text, Integer | → | Name or Number of BLOB character set |
| Function result | Text | ← | Contents of BLOB expressed in 4D character set |
@@ -36,7 +36,7 @@ If the command has been correctly executed, the OK variable is set to 1\. Otherw
| | |
| --- | --- |
| Command number | 1012 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/copy-array.md b/docs/commands-legacy/copy-array.md
index 235bdd7ddab374..f541d5a6142e77 100644
--- a/docs/commands-legacy/copy-array.md
+++ b/docs/commands-legacy/copy-array.md
@@ -5,7 +5,7 @@ slug: /commands/copy-array
displayed_sidebar: docs
---
-**COPY ARRAY** ( *source* ; *destination* )
+**COPY ARRAY** ( *source* : Array ; *destination* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The following example fills the array named C. It then creates a new array, name
| | |
| --- | --- |
| Command number | 226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/copy-blob.md b/docs/commands-legacy/copy-blob.md
index a16969d4685aec..af84f80485df9d 100644
--- a/docs/commands-legacy/copy-blob.md
+++ b/docs/commands-legacy/copy-blob.md
@@ -5,7 +5,7 @@ slug: /commands/copy-blob
displayed_sidebar: docs
---
-**COPY BLOB** ( *srcBLOB* ; *dstBLOB* ; *srcOffset* ; *dstOffset* ; *len* )
+**COPY BLOB** ( *srcBLOB* : Blob ; *dstBLOB* : Blob ; *srcOffset* : Integer ; *dstOffset* : Integer ; *len* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ The copy starts at the position (expressed relative to the beginning of the sour
| | |
| --- | --- |
| Command number | 558 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/copy-document.md b/docs/commands-legacy/copy-document.md
index 08e7fbb298fbbb..d2af52a7e42f22 100644
--- a/docs/commands-legacy/copy-document.md
+++ b/docs/commands-legacy/copy-document.md
@@ -5,7 +5,7 @@ slug: /commands/copy-document
displayed_sidebar: docs
---
-**COPY DOCUMENT** ( *sourceName* ; *destinationName* {; *newName*} {; *} )
+**COPY DOCUMENT** ( *sourceName* : Text ; *destinationName* : Text {; *newName* : Text} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -126,7 +126,7 @@ The following examples create different files and folders in the database folder
| | |
| --- | --- |
| Command number | 541 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/copy-list.md b/docs/commands-legacy/copy-list.md
index 00b983ba32f5fb..c3c45adeb704fe 100644
--- a/docs/commands-legacy/copy-list.md
+++ b/docs/commands-legacy/copy-list.md
@@ -5,7 +5,7 @@ slug: /commands/copy-list
displayed_sidebar: docs
---
-**Copy list** ( *list* ) : Integer
+**Copy list** ( *list* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ After you have finished with the new list, call [CLEAR LIST](clear-list.md) to d
| | |
| --- | --- |
| Command number | 626 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/copy-named-selection.md b/docs/commands-legacy/copy-named-selection.md
index 7822d8d2e8a702..a91066f361bc83 100644
--- a/docs/commands-legacy/copy-named-selection.md
+++ b/docs/commands-legacy/copy-named-selection.md
@@ -5,7 +5,7 @@ slug: /commands/copy-named-selection
displayed_sidebar: docs
---
-**COPY NAMED SELECTION** ( {*aTable* ;} *name* )
+**COPY NAMED SELECTION** ( {*aTable* : Table ;} *name* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ The following example allows you to check if there are other overdue invoices in
| | |
| --- | --- |
| Command number | 331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/copy-parameters.md b/docs/commands-legacy/copy-parameters.md
index 66a770992b4309..652f9831771fe0 100644
--- a/docs/commands-legacy/copy-parameters.md
+++ b/docs/commands-legacy/copy-parameters.md
@@ -5,7 +5,7 @@ slug: /commands/copy-parameters
displayed_sidebar: docs
---
-**Copy parameters** {( *startFrom* )} : Collection
+**Copy parameters** ( *startFrom* : Integer ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -86,6 +86,6 @@ Since the command returns a collection, it can be used with **.join()** to build
| | |
| --- | --- |
| Command number | 1790 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/copy-set.md b/docs/commands-legacy/copy-set.md
index 36a275ff8fceb5..d605f8cc9ecee5 100644
--- a/docs/commands-legacy/copy-set.md
+++ b/docs/commands-legacy/copy-set.md
@@ -5,7 +5,7 @@ slug: /commands/copy-set
displayed_sidebar: docs
---
-**COPY SET** ( *srcSet* ; *dstSet* )
+**COPY SET** ( *srcSet* : Text ; *dstSet* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ The following example, in Client/Server, copies the process set "*SetA*", mainta
| | |
| --- | --- |
| Command number | 600 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/cos.md b/docs/commands-legacy/cos.md
index 0d6efce3034efd..06c9597950f907 100644
--- a/docs/commands-legacy/cos.md
+++ b/docs/commands-legacy/cos.md
@@ -5,7 +5,7 @@ slug: /commands/cos
displayed_sidebar: docs
---
-**Cos** ( *number* ) : Real
+**Cos** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 18 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/count-in-array.md b/docs/commands-legacy/count-in-array.md
index d8c5e38bca0c08..c485fd895116f4 100644
--- a/docs/commands-legacy/count-in-array.md
+++ b/docs/commands-legacy/count-in-array.md
@@ -5,7 +5,7 @@ slug: /commands/count-in-array
displayed_sidebar: docs
---
-**Count in array** ( *array* ; *value* ) : Integer
+**Count in array** ( *array* : Array ; *value* : Expression ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ You want to count object references in an object array:
| | |
| --- | --- |
| Command number | 907 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/count-list-items.md b/docs/commands-legacy/count-list-items.md
index b42a1ae0be3148..4388e7d08e5932 100644
--- a/docs/commands-legacy/count-list-items.md
+++ b/docs/commands-legacy/count-list-items.md
@@ -5,7 +5,7 @@ slug: /commands/count-list-items
displayed_sidebar: docs
---
-**Count list items** ( {* ;} *list* {; *} ) : Integer
+**Count list items** ( {* ;} *list* : Integer, Text {; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ Here a list named *hList* shown in the Application environment:
| | |
| --- | --- |
| Command number | 380 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/count-menu-items.md b/docs/commands-legacy/count-menu-items.md
index 5a60f30b1abc95..deec6c2ca54e9a 100644
--- a/docs/commands-legacy/count-menu-items.md
+++ b/docs/commands-legacy/count-menu-items.md
@@ -5,7 +5,7 @@ slug: /commands/count-menu-items
displayed_sidebar: docs
---
-**Count menu items** ( *menu* {; *process*} ) : Integer
+**Count menu items** ( *menu* : Integer, Text {; *process* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If you omit the *process* parameter, **Count menu items** applies to the menu ba
| | |
| --- | --- |
| Command number | 405 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/count-menus.md b/docs/commands-legacy/count-menus.md
index f00ddf1ccd32b4..617c022bc7858a 100644
--- a/docs/commands-legacy/count-menus.md
+++ b/docs/commands-legacy/count-menus.md
@@ -5,7 +5,7 @@ slug: /commands/count-menus
displayed_sidebar: docs
---
-**Count menus** {( *process* )} : Integer
+**Count menus** ( *process* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,7 +29,7 @@ If you omit the *process* parameter, **Count menus** applies to the menu bar for
| | |
| --- | --- |
| Command number | 404 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/count-parameters.md b/docs/commands-legacy/count-parameters.md
index 1c26b2ce2699df..2318845cfd221b 100644
--- a/docs/commands-legacy/count-parameters.md
+++ b/docs/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ or:
| | |
| --- | --- |
| Command number | 259 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/count-screens.md b/docs/commands-legacy/count-screens.md
index ac27faa43cceae..5bb1aee248767c 100644
--- a/docs/commands-legacy/count-screens.md
+++ b/docs/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 437 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/count-tasks.md b/docs/commands-legacy/count-tasks.md
index 5b476482adb5f0..ab50e227e88155 100644
--- a/docs/commands-legacy/count-tasks.md
+++ b/docs/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ See the example for [Process state](process-state.md) and for the [Semaphore](se
| | |
| --- | --- |
| Command number | 335 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/count-user-processes.md b/docs/commands-legacy/count-user-processes.md
index 2ef12805f85088..8555f5cc64c49f 100644
--- a/docs/commands-legacy/count-user-processes.md
+++ b/docs/commands-legacy/count-user-processes.md
@@ -31,6 +31,6 @@ The Count user processes function returns the number of processes opened directl
| | |
| --- | --- |
| Command number | 343 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/count-users.md b/docs/commands-legacy/count-users.md
index 106f9916465a4a..0d875d4f880ecb 100644
--- a/docs/commands-legacy/count-users.md
+++ b/docs/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ When executed on a 4D single-user application, **Count users** returns 1.
| | |
| --- | --- |
| Command number | 342 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-alias.md b/docs/commands-legacy/create-alias.md
index 91b587847998e9..359e9cbefff0df 100644
--- a/docs/commands-legacy/create-alias.md
+++ b/docs/commands-legacy/create-alias.md
@@ -5,7 +5,7 @@ slug: /commands/create-alias
displayed_sidebar: docs
---
-**CREATE ALIAS** ( *targetPath* ; *aliasPath* )
+**CREATE ALIAS** ( *targetPath* : Text ; *aliasPath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,7 +73,7 @@ The OK system variable is set to 1 if the command execution was successful; othe
| | |
| --- | --- |
| Command number | 694 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/create-data-file.md b/docs/commands-legacy/create-data-file.md
index e98fefe327a5e6..391a5b6a2fbb15 100644
--- a/docs/commands-legacy/create-data-file.md
+++ b/docs/commands-legacy/create-data-file.md
@@ -5,7 +5,7 @@ slug: /commands/create-data-file
displayed_sidebar: docs
---
-**CREATE DATA FILE** ( *accessPath* )
+**CREATE DATA FILE** ( *accessPath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ Before launching the operation, the command verifies that the specified access p
| | |
| --- | --- |
| Command number | 313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-document.md b/docs/commands-legacy/create-document.md
index cd18b997b8a1a7..7be11f0f86dbab 100644
--- a/docs/commands-legacy/create-document.md
+++ b/docs/commands-legacy/create-document.md
@@ -5,7 +5,7 @@ slug: /commands/create-document
displayed_sidebar: docs
---
-**Create document** ( *document* {; *fileType*} ) : Time
+**Create document** ( *document* : Text {; *fileType* : Text} ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,7 +78,7 @@ If the document has been created correctly, the system variable OK is set to 1 a
| | |
| --- | --- |
| Command number | 266 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/create-empty-set.md b/docs/commands-legacy/create-empty-set.md
index 08064e15ffbcb7..e71c4215be7cc5 100644
--- a/docs/commands-legacy/create-empty-set.md
+++ b/docs/commands-legacy/create-empty-set.md
@@ -5,7 +5,7 @@ slug: /commands/create-empty-set
displayed_sidebar: docs
---
-**CREATE EMPTY SET** ( {*aTable* ;} *set* )
+**CREATE EMPTY SET** ( {*aTable* : Table ;} *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Please refer to the examples of the *Sets* section.
| | |
| --- | --- |
| Command number | 140 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-folder.md b/docs/commands-legacy/create-folder.md
index f59d4eb480dd28..db299440a4066c 100644
--- a/docs/commands-legacy/create-folder.md
+++ b/docs/commands-legacy/create-folder.md
@@ -5,7 +5,7 @@ slug: /commands/create-folder
displayed_sidebar: docs
---
-**CREATE FOLDER** ( *folderPath* {; *} )
+**CREATE FOLDER** ( *folderPath* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -77,7 +77,7 @@ Creation of the "\\February\\" subfolder in the existing "C:\\Archives\\" folder
| | |
| --- | --- |
| Command number | 475 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/create-index.md b/docs/commands-legacy/create-index.md
index fe58c54e869c25..169c0f30316aa5 100644
--- a/docs/commands-legacy/create-index.md
+++ b/docs/commands-legacy/create-index.md
@@ -5,7 +5,7 @@ slug: /commands/create-index
displayed_sidebar: docs
---
-**CREATE INDEX** ( *aTable* ; *fieldsArray* ; *indexType* ; *indexName* {; *} )
+**CREATE INDEX** ( *aTable* : Table ; *fieldsArray* : Pointer array ; *indexType* : Integer ; *indexName* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -93,6 +93,6 @@ Creation of a composite index on the “City” and “Zipcode” fields of the
| | |
| --- | --- |
| Command number | 966 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-menu.md b/docs/commands-legacy/create-menu.md
index 354de4c9b5ddd0..adced6225fa998 100644
--- a/docs/commands-legacy/create-menu.md
+++ b/docs/commands-legacy/create-menu.md
@@ -5,7 +5,7 @@ slug: /commands/create-menu
displayed_sidebar: docs
---
-**Create menu** {( *menu* )} : Text
+**Create menu** ( *menu* : Text, Integer, Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command.
| | |
| --- | --- |
| Command number | 408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/create-record.md b/docs/commands-legacy/create-record.md
index 8622fca96fc8b3..5db232be05aaec 100644
--- a/docs/commands-legacy/create-record.md
+++ b/docs/commands-legacy/create-record.md
@@ -5,7 +5,7 @@ slug: /commands/create-record
displayed_sidebar: docs
---
-**CREATE RECORD** {( *aTable* )}
+**CREATE RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ The following example archives records that are over 30 days old. It does does t
| | |
| --- | --- |
| Command number | 68 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/create-related-one.md b/docs/commands-legacy/create-related-one.md
index 4204d9568d7a5d..cba84d5228ac88 100644
--- a/docs/commands-legacy/create-related-one.md
+++ b/docs/commands-legacy/create-related-one.md
@@ -5,7 +5,7 @@ slug: /commands/create-related-one
displayed_sidebar: docs
---
-**CREATE RELATED ONE** ( *aField* )
+**CREATE RELATED ONE** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If a related record exists, **CREATE RELATED ONE** acts just like [RELATE ONE](r
| | |
| --- | --- |
| Command number | 65 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-selection-from-array.md b/docs/commands-legacy/create-selection-from-array.md
index 90d868a53e2f61..195edf53489102 100644
--- a/docs/commands-legacy/create-selection-from-array.md
+++ b/docs/commands-legacy/create-selection-from-array.md
@@ -5,7 +5,7 @@ slug: /commands/create-selection-from-array
displayed_sidebar: docs
---
-**CREATE SELECTION FROM ARRAY** ( *aTable* ; *recordArray* {; *selectionName*} )
+**CREATE SELECTION FROM ARRAY** ( *aTable* : Table ; *recordArray* : Integer, Boolean array {; *selectionName* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,7 +54,7 @@ If a record number is invalid (record not created), the error -10503 is generate
| | |
| --- | --- |
| Command number | 640 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
| Changes current selection ||
diff --git a/docs/commands-legacy/create-set-from-array.md b/docs/commands-legacy/create-set-from-array.md
index 4cf3910d01c9e2..5607e5f2b23836 100644
--- a/docs/commands-legacy/create-set-from-array.md
+++ b/docs/commands-legacy/create-set-from-array.md
@@ -5,7 +5,7 @@ slug: /commands/create-set-from-array
displayed_sidebar: docs
---
-**CREATE SET FROM ARRAY** ( *aTable* ; *recordsArray* {; *setName*} )
+**CREATE SET FROM ARRAY** ( *aTable* : Table ; *recordsArray* : Integer, Boolean array {; *setName* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ In a Longint array, if a record number is invalid (record not created), the erro
| | |
| --- | --- |
| Command number | 641 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/create-set.md b/docs/commands-legacy/create-set.md
index 97282e37ca6e8d..4851618084363d 100644
--- a/docs/commands-legacy/create-set.md
+++ b/docs/commands-legacy/create-set.md
@@ -5,7 +5,7 @@ slug: /commands/create-set
displayed_sidebar: docs
---
-**CREATE SET** ( {*aTable* ;} *set* )
+**CREATE SET** ( {*aTable* : Table ;} *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ The following example creates a set after doing a search, in order to save the s
| | |
| --- | --- |
| Command number | 116 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/create-thumbnail.md b/docs/commands-legacy/create-thumbnail.md
index f6494ab8419f26..666d70fac5389c 100644
--- a/docs/commands-legacy/create-thumbnail.md
+++ b/docs/commands-legacy/create-thumbnail.md
@@ -5,7 +5,7 @@ slug: /commands/create-thumbnail
displayed_sidebar: docs
---
-**CREATE THUMBNAIL** ( *source* ; *dest* {; *width* {; *height* {; *mode* {; *depth*}}}} )
+**CREATE THUMBNAIL** ( *source* : Picture ; *dest* : Picture {; *width* : Integer {; *height* : Integer {; *mode* : Integer {; *depth* : Integer}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ The *depth* parameter is ignored and must be omitted. The command always uses th
| | |
| --- | --- |
| Command number | 679 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-client-authentication.md b/docs/commands-legacy/current-client-authentication.md
index 2b80dbfa1c904b..fc8f3d4ebb8995 100644
--- a/docs/commands-legacy/current-client-authentication.md
+++ b/docs/commands-legacy/current-client-authentication.md
@@ -5,7 +5,7 @@ slug: /commands/current-client-authentication
displayed_sidebar: docs
---
-**Current client authentication** {( *domain* ; *protocol* )} : Text
+**Current client authentication** ( *domain* : Text ; *protocol* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -79,6 +79,6 @@ With this setting, no password dialog will be displayed for a remote 4D that con
| | |
| --- | --- |
| Command number | 1355 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-date.md b/docs/commands-legacy/current-date.md
index 1542f60f8721ed..a57670b95a77a5 100644
--- a/docs/commands-legacy/current-date.md
+++ b/docs/commands-legacy/current-date.md
@@ -5,7 +5,7 @@ slug: /commands/current-date
displayed_sidebar: docs
---
-**Current date** {( * )} : Date
+**Current date** ( * ) : Date
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -103,6 +103,6 @@ The following project method allows you to do so:
| | |
| --- | --- |
| Command number | 33 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-default-table.md b/docs/commands-legacy/current-default-table.md
index 52a47041092a52..fe6dd5181b8f84 100644
--- a/docs/commands-legacy/current-default-table.md
+++ b/docs/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Provided a default table has been set, the following line of code sets the windo
| | |
| --- | --- |
| Command number | 363 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-form-name.md b/docs/commands-legacy/current-form-name.md
index e89f0af757653c..4c6131076cf8cd 100644
--- a/docs/commands-legacy/current-form-name.md
+++ b/docs/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ You want to get the current form if it is a project form:
| | |
| --- | --- |
| Command number | 1298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/current-form-table.md b/docs/commands-legacy/current-form-table.md
index 283a5d47244395..6e52ef994ef289 100644
--- a/docs/commands-legacy/current-form-table.md
+++ b/docs/commands-legacy/current-form-table.md
@@ -69,6 +69,6 @@ To do so, use the object method to create the variable *vsCurrentRecord*, then c
| | |
| --- | --- |
| Command number | 627 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/current-form-window.md b/docs/commands-legacy/current-form-window.md
index 48f6cbb36456cb..826e2ac9c4f7ee 100644
--- a/docs/commands-legacy/current-form-window.md
+++ b/docs/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ The current form window can be generated automatically using a command such as [
| | |
| --- | --- |
| Command number | 827 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/current-machine.md b/docs/commands-legacy/current-machine.md
index a3af43241f5d19..b53f10cbe175d8 100644
--- a/docs/commands-legacy/current-machine.md
+++ b/docs/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Even if you are not running with the Client/Server version of the 4D environment
| | |
| --- | --- |
| Command number | 483 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-method-name.md b/docs/commands-legacy/current-method-name.md
index a86ef4c42011e9..0268d67a3d578f 100644
--- a/docs/commands-legacy/current-method-name.md
+++ b/docs/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ This command cannot be called from within a 4D formula.
| | |
| --- | --- |
| Command number | 684 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-method-path.md b/docs/commands-legacy/current-method-path.md
index 6c6342be2d8266..14d746cf90cb75 100644
--- a/docs/commands-legacy/current-method-path.md
+++ b/docs/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1201 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-process-name.md b/docs/commands-legacy/current-process-name.md
index a87e54a46daeee..b688e4e841c853 100644
--- a/docs/commands-legacy/current-process-name.md
+++ b/docs/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ You want to call a worker and pass the calling process name as parameter:
| | |
| --- | --- |
| Command number | 1392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-process.md b/docs/commands-legacy/current-process.md
index 869561796d9354..7003e076c93671 100644
--- a/docs/commands-legacy/current-process.md
+++ b/docs/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ See the examples for [DELAY PROCESS](delay-process.md) and [Process info](../com
| | |
| --- | --- |
| Command number | 322 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-system-user.md b/docs/commands-legacy/current-system-user.md
index 03605e858e5f6f..e4f15d2b5d398b 100644
--- a/docs/commands-legacy/current-system-user.md
+++ b/docs/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ See example for the [Current machine](current-machine.md) command.
| | |
| --- | --- |
| Command number | 484 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-time.md b/docs/commands-legacy/current-time.md
index b310a267e66cba..005231bb0c537a 100644
--- a/docs/commands-legacy/current-time.md
+++ b/docs/commands-legacy/current-time.md
@@ -5,7 +5,7 @@ slug: /commands/current-time
displayed_sidebar: docs
---
-**Current time** {( * )} : Time
+**Current time** ( * ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ The following example extracts the hours, minutes, and seconds from the current
| | |
| --- | --- |
| Command number | 178 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/current-user.md b/docs/commands-legacy/current-user.md
index 3bf814fb6dc3e7..68cf5ac32a0225 100644
--- a/docs/commands-legacy/current-user.md
+++ b/docs/commands-legacy/current-user.md
@@ -5,7 +5,7 @@ slug: /commands/current-user
displayed_sidebar: docs
---
-**Current user** {( *user* )} : Text
+**Current user** ( *user* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ See example for the [User in group](user-in-group.md) command.
| | |
| --- | --- |
| Command number | 182 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/cut-named-selection.md b/docs/commands-legacy/cut-named-selection.md
index 2c74e7ddb544dd..0b24b91a008c80 100644
--- a/docs/commands-legacy/cut-named-selection.md
+++ b/docs/commands-legacy/cut-named-selection.md
@@ -5,7 +5,7 @@ slug: /commands/cut-named-selection
displayed_sidebar: docs
---
-**CUT NAMED SELECTION** ( {*aTable* ;} *name* )
+**CUT NAMED SELECTION** ( {*aTable* : Table ;} *name* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ The following method empties the current selection of a table *\[Customers\]*:
| | |
| --- | --- |
| Command number | 334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/data-file-encryption-status.md b/docs/commands-legacy/data-file-encryption-status.md
index efaabd3c4a0128..f43546ded8f93b 100644
--- a/docs/commands-legacy/data-file-encryption-status.md
+++ b/docs/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ You want to know the encryption status of a data file that corresponds to the cu
| | |
| --- | --- |
| Command number | 1609 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/data-file.md b/docs/commands-legacy/data-file.md
index b25fad0ce72014..78199b63650b44 100644
--- a/docs/commands-legacy/data-file.md
+++ b/docs/commands-legacy/data-file.md
@@ -5,7 +5,7 @@ slug: /commands/data-file
displayed_sidebar: docs
---
-**Data file** {( *segment* )} : Text
+**Data file** ( *segment* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ If, for example, you are working with the database located in the folder Documen
| | |
| --- | --- |
| Command number | 490 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/database-measures.md b/docs/commands-legacy/database-measures.md
index 2bae468ef09ff1..f146ab26f7c16f 100644
--- a/docs/commands-legacy/database-measures.md
+++ b/docs/commands-legacy/database-measures.md
@@ -5,7 +5,7 @@ slug: /commands/database-measures
displayed_sidebar: docs
---
-**Database measures** {( *options* )} : Object
+**Database measures** ( *options* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -337,6 +337,6 @@ We want to request measures for cache bytes read within the last two minutes:
| | |
| --- | --- |
| Command number | 1314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/date.md b/docs/commands-legacy/date.md
index c3817647a58ca5..8a9865d36952ee 100644
--- a/docs/commands-legacy/date.md
+++ b/docs/commands-legacy/date.md
@@ -5,7 +5,7 @@ slug: /commands/date
displayed_sidebar: docs
---
-**Date** ( *expression* ) : Date
+**Date** ( *expression* : Text, Date ) : Date
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ You want to get a date from an object attribute, whatever the current attribute
| | |
| --- | --- |
| Command number | 102 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/day-number.md b/docs/commands-legacy/day-number.md
index 7887208078f156..99ea102a570486 100644
--- a/docs/commands-legacy/day-number.md
+++ b/docs/commands-legacy/day-number.md
@@ -5,7 +5,7 @@ slug: /commands/day-number
displayed_sidebar: docs
---
-**Day number** ( *aDate* ) : Integer
+**Day number** ( *aDate* : Date ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ The following example is a function that returns the current day as a string:
| | |
| --- | --- |
| Command number | 114 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/day-of.md b/docs/commands-legacy/day-of.md
index 13bfdf50dfc8f5..8ed29b1ffd7b71 100644
--- a/docs/commands-legacy/day-of.md
+++ b/docs/commands-legacy/day-of.md
@@ -5,7 +5,7 @@ slug: /commands/day-of
displayed_sidebar: docs
---
-**Day of** ( *date* ) : Integer
+**Day of** ( *date* : Date ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ See the example for the [Current date](current-date.md) command.
| | |
| --- | --- |
| Command number | 23 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/deactivated.md b/docs/commands-legacy/deactivated.md
index 77f0ad9599a49b..fa79fbc15e7ee8 100644
--- a/docs/commands-legacy/deactivated.md
+++ b/docs/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ In order for the **Deactivated** execution cycle to be generated, make sure that
| | |
| --- | --- |
| Command number | 347 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/dec.md b/docs/commands-legacy/dec.md
index b92775613e3492..1053dc5d585444 100644
--- a/docs/commands-legacy/dec.md
+++ b/docs/commands-legacy/dec.md
@@ -5,7 +5,7 @@ slug: /commands/dec
displayed_sidebar: docs
---
-**Dec** ( *number* ) : Real
+**Dec** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ The following example takes a monetary value expressed as a real number, and ext
| | |
| --- | --- |
| Command number | 9 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/decrypt-blob.md b/docs/commands-legacy/decrypt-blob.md
index 6c5f84cb085fe2..4ef3b746780469 100644
--- a/docs/commands-legacy/decrypt-blob.md
+++ b/docs/commands-legacy/decrypt-blob.md
@@ -5,7 +5,7 @@ slug: /commands/decrypt-blob
displayed_sidebar: docs
---
-**DECRYPT BLOB** ( *toDecrypt* ; *sendPubKey* {; *recipPrivKey*} )
+**DECRYPT BLOB** ( *toDecrypt* : Blob ; *sendPubKey* : Blob {; *recipPrivKey* : Blob} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Refer to the examples given for the [ENCRYPT BLOB](encrypt-blob.md) command.
| | |
| --- | --- |
| Command number | 690 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/decrypt-data-blob.md b/docs/commands-legacy/decrypt-data-blob.md
index c4aa458af7722a..32a7feada6869f 100644
--- a/docs/commands-legacy/decrypt-data-blob.md
+++ b/docs/commands-legacy/decrypt-data-blob.md
@@ -5,7 +5,7 @@ slug: /commands/decrypt-data-blob
displayed_sidebar: docs
---
-**Decrypt data BLOB** ( *blobToDecrypt* ; *keyObject* ; *salt* ; *decryptedBLOB* ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* ; *passPhrase* ; *salt* ; *decryptedBLOB* ) : Boolean
+**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *keyObject* : Object, Text ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *passPhrase* : Object, Text ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ The *passPhrase* and *salt* used for decryption are identical to the *passPhrase
| | |
| --- | --- |
| Command number | 1774 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/default-table.md b/docs/commands-legacy/default-table.md
index 8ebf1086eecfd1..eb996ad3041b98 100644
--- a/docs/commands-legacy/default-table.md
+++ b/docs/commands-legacy/default-table.md
@@ -5,7 +5,7 @@ slug: /commands/default-table
displayed_sidebar: docs
---
-**DEFAULT TABLE** ( *aTable* )
+**DEFAULT TABLE** ( *aTable* : Table )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -81,6 +81,6 @@ Specifying the default table results in this code:
| | |
| --- | --- |
| Command number | 46 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delay-process.md b/docs/commands-legacy/delay-process.md
index 6517d0530e8efe..9a460643f2f50f 100644
--- a/docs/commands-legacy/delay-process.md
+++ b/docs/commands-legacy/delay-process.md
@@ -5,7 +5,7 @@ slug: /commands/delay-process
displayed_sidebar: docs
---
-**DELAY PROCESS** ( *process* ; *duration* )
+**DELAY PROCESS** ( *process* : Integer ; *duration* : Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ See example for the command [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Command number | 323 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delete-document.md b/docs/commands-legacy/delete-document.md
index 9d6d21767bcf65..4b1e40e8be5624 100644
--- a/docs/commands-legacy/delete-document.md
+++ b/docs/commands-legacy/delete-document.md
@@ -5,7 +5,7 @@ slug: /commands/delete-document
displayed_sidebar: docs
---
-**DELETE DOCUMENT** ( *document* )
+**DELETE DOCUMENT** ( *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ Deleting a document sets the OK system variable to 1\. If **DELETE DOCUMENT** ca
| | |
| --- | --- |
| Command number | 159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/delete-folder.md b/docs/commands-legacy/delete-folder.md
index 79fc7c2c92132d..1aca414aab38ec 100644
--- a/docs/commands-legacy/delete-folder.md
+++ b/docs/commands-legacy/delete-folder.md
@@ -5,7 +5,7 @@ slug: /commands/delete-folder
displayed_sidebar: docs
---
-**DELETE FOLDER** ( *folder* {; *deleteOption*} )
+**DELETE FOLDER** ( *folder* : Text {; *deleteOption* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ You can intercept these errors using a method installed by the [ON ERR CALL](on-
| | |
| --- | --- |
| Command number | 693 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/delete-from-array.md b/docs/commands-legacy/delete-from-array.md
index aac2190017fda5..6f391184c77bba 100644
--- a/docs/commands-legacy/delete-from-array.md
+++ b/docs/commands-legacy/delete-from-array.md
@@ -5,7 +5,7 @@ slug: /commands/delete-from-array
displayed_sidebar: docs
---
-**DELETE FROM ARRAY** ( *array* ; *where* {; *howMany*} )
+**DELETE FROM ARRAY** ( *array* : Array ; *where* : Integer {; *howMany* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following example deletes the last element from an array, if it exists:
| | |
| --- | --- |
| Command number | 228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delete-from-blob.md b/docs/commands-legacy/delete-from-blob.md
index 641008ecc62f13..aa25b43d1a01c5 100644
--- a/docs/commands-legacy/delete-from-blob.md
+++ b/docs/commands-legacy/delete-from-blob.md
@@ -5,11 +5,11 @@ slug: /commands/delete-from-blob
displayed_sidebar: docs
---
-**DELETE FROM BLOB** ( *blob* ; *offset* ; *len* )
+**DELETE FROM BLOB** ( *blob* : Blob ; *offset* : Integer ; *len* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB from which to delete bytes |
+| Blob | Blob | → | BLOB from which to delete bytes |
| offset | Integer | → | Starting offset where bytes will be deleted |
| len | Integer | → | Number of bytes to be deleted |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 560 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delete-from-list.md b/docs/commands-legacy/delete-from-list.md
index 1e5a0021093856..66187fdfd4147e 100644
--- a/docs/commands-legacy/delete-from-list.md
+++ b/docs/commands-legacy/delete-from-list.md
@@ -5,7 +5,7 @@ slug: /commands/delete-from-list
displayed_sidebar: docs
---
-**DELETE FROM LIST** ( {* ;} *list* ; *itemRef* {; *} )
**DELETE FROM LIST** ( * ; *list* ; * {; *} )
+**DELETE FROM LIST** ( * ; *list* : Text ; *itemRef* : Integer, Operator {; *} )
**DELETE FROM LIST** ( *list* : Integer ; *itemRef* : Integer, Operator {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following code deletes the currently selected item of the list *hList*. If t
| | |
| --- | --- |
| Command number | 624 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/delete-index.md b/docs/commands-legacy/delete-index.md
index bc3c0f184b3ff0..4d6e154ce8bfd7 100644
--- a/docs/commands-legacy/delete-index.md
+++ b/docs/commands-legacy/delete-index.md
@@ -5,7 +5,7 @@ slug: /commands/delete-index
displayed_sidebar: docs
---
-**DELETE INDEX** ( *fieldPtr* {; *} )
**DELETE INDEX** ( *indexName* {; *} )
+**DELETE INDEX** ( *fieldPtr* : Pointer, Text {; *} )
**DELETE INDEX** ( *indexName* : Pointer, Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ This example illustrates both syntaxes of the command:
| | |
| --- | --- |
| Command number | 967 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delete-menu-item.md b/docs/commands-legacy/delete-menu-item.md
index 204e1f375f7e44..ff52e851347065 100644
--- a/docs/commands-legacy/delete-menu-item.md
+++ b/docs/commands-legacy/delete-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/delete-menu-item
displayed_sidebar: docs
---
-**DELETE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**DELETE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If you omit the *process* parameter, **DELETE MENU ITEM** applies to the menu ba
| | |
| --- | --- |
| Command number | 413 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/delete-record.md b/docs/commands-legacy/delete-record.md
index eeabf7de15aa82..1cefaf20bc7e9c 100644
--- a/docs/commands-legacy/delete-record.md
+++ b/docs/commands-legacy/delete-record.md
@@ -5,7 +5,7 @@ slug: /commands/delete-record
displayed_sidebar: docs
---
-**DELETE RECORD** {( *aTable* )}
+**DELETE RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ The following example deletes an employee record. The code asks the user what em
| | |
| --- | --- |
| Command number | 58 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/delete-selection.md b/docs/commands-legacy/delete-selection.md
index e055cf489de2da..2abee6f65a3a59 100644
--- a/docs/commands-legacy/delete-selection.md
+++ b/docs/commands-legacy/delete-selection.md
@@ -5,7 +5,7 @@ slug: /commands/delete-selection
displayed_sidebar: docs
---
-**DELETE SELECTION** {( *aTable* )}
+**DELETE SELECTION** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,7 +69,7 @@ If a locked record is encountered during the execution of **DELETE SELECTION**,
| | |
| --- | --- |
| Command number | 66 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/delete-string.md b/docs/commands-legacy/delete-string.md
index 7fe10a821b2673..21321d20718cc4 100644
--- a/docs/commands-legacy/delete-string.md
+++ b/docs/commands-legacy/delete-string.md
@@ -5,7 +5,7 @@ slug: /commands/delete-string
displayed_sidebar: docs
---
-**Delete string** ( *source* ; *where* ; *numChars* ) : Text
+**Delete string** ( *source* : Text ; *where* : Integer ; *numChars* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ The following example illustrates the use of Delete string. The results are assi
| | |
| --- | --- |
| Command number | 232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/delete-user.md b/docs/commands-legacy/delete-user.md
index 0ee7c474b0a054..46e641ad329e2c 100644
--- a/docs/commands-legacy/delete-user.md
+++ b/docs/commands-legacy/delete-user.md
@@ -5,7 +5,7 @@ slug: /commands/delete-user
displayed_sidebar: docs
---
-**DELETE USER** ( *userID* )
+**DELETE USER** ( *userID* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If you do not have the proper access privileges for calling DELETE USER or if th
| | |
| --- | --- |
| Command number | 615 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/describe-query-execution.md b/docs/commands-legacy/describe-query-execution.md
index 3913de0407f2ce..72bdff94c6d88a 100644
--- a/docs/commands-legacy/describe-query-execution.md
+++ b/docs/commands-legacy/describe-query-execution.md
@@ -5,7 +5,7 @@ slug: /commands/describe-query-execution
displayed_sidebar: docs
---
-**DESCRIBE QUERY EXECUTION** ( *status* )
+**DESCRIBE QUERY EXECUTION** ( *status* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Command number | 1044 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/difference.md b/docs/commands-legacy/difference.md
index c4d26a778122e7..f2839d5fb6ecf6 100644
--- a/docs/commands-legacy/difference.md
+++ b/docs/commands-legacy/difference.md
@@ -5,7 +5,7 @@ slug: /commands/difference
displayed_sidebar: docs
---
-**DIFFERENCE** ( *set1* ; *set2* ; *resultSet* )
+**DIFFERENCE** ( *set1* : Text ; *set2* : Text ; *resultSet* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ At the bottom of the list of records is a button with an object method. The obje
| | |
| --- | --- |
| Command number | 122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/disable-menu-item.md b/docs/commands-legacy/disable-menu-item.md
index 82071835b7e681..b522c261cef7c2 100644
--- a/docs/commands-legacy/disable-menu-item.md
+++ b/docs/commands-legacy/disable-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/disable-menu-item
displayed_sidebar: docs
---
-**DISABLE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**DISABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ If the *menuItem* parameter designates a hierarchical submenu, all the items of
| | |
| --- | --- |
| Command number | 150 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/discover-data-key.md b/docs/commands-legacy/discover-data-key.md
index 019c1ebc65cf6e..9485760a41e5eb 100644
--- a/docs/commands-legacy/discover-data-key.md
+++ b/docs/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Key files (".4DKeyChain" extension files) must be stored at the top level of con
| | |
| --- | --- |
| Command number | 1639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/display-notification.md b/docs/commands-legacy/display-notification.md
index deb20c91f0fb49..ef3148fce09ddf 100644
--- a/docs/commands-legacy/display-notification.md
+++ b/docs/commands-legacy/display-notification.md
@@ -5,7 +5,7 @@ slug: /commands/display-notification
displayed_sidebar: docs
---
-**DISPLAY NOTIFICATION** ( *title* ; *text* {; *duration*} )
+**DISPLAY NOTIFICATION** ( *title* : Text ; *text* : Text {; *duration* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ Under Windows, the message window remains displayed as long as no activity has b
| | |
| --- | --- |
| Command number | 910 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/display-record.md b/docs/commands-legacy/display-record.md
index 38ef9097d767a4..b0de98878d615a 100644
--- a/docs/commands-legacy/display-record.md
+++ b/docs/commands-legacy/display-record.md
@@ -5,7 +5,7 @@ slug: /commands/display-record
displayed_sidebar: docs
---
-**DISPLAY RECORD** {( *aTable* )}
+**DISPLAY RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ The following example displays a series of records as a slide show:
| | |
| --- | --- |
| Command number | 105 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/display-selection.md b/docs/commands-legacy/display-selection.md
index c2022eb1e1f206..735e3f5f65d414 100644
--- a/docs/commands-legacy/display-selection.md
+++ b/docs/commands-legacy/display-selection.md
@@ -5,7 +5,8 @@ slug: /commands/display-selection
displayed_sidebar: docs
---
-**DISPLAY SELECTION** ( {*aTable*}{; *selectMode*}{; *enterList*}{; *}{; *} )
+**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *})
**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean} ; * {; *} )
+
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -99,7 +100,7 @@ You can also use other commands, such as [PRINT SELECTION](print-selection.md),
| | |
| --- | --- |
| Command number | 59 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/displayed-line-number.md b/docs/commands-legacy/displayed-line-number.md
index c3013a50dbfa74..f026b22127ec8d 100644
--- a/docs/commands-legacy/displayed-line-number.md
+++ b/docs/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ This example lets you apply an alternating color to a list form displayed on scr
| | |
| --- | --- |
| Command number | 897 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/distinct-attribute-paths.md b/docs/commands-legacy/distinct-attribute-paths.md
index ab554602376ce8..1488634000dfca 100644
--- a/docs/commands-legacy/distinct-attribute-paths.md
+++ b/docs/commands-legacy/distinct-attribute-paths.md
@@ -5,7 +5,7 @@ slug: /commands/distinct-attribute-paths
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE PATHS** ( *objectField* ; *pathArray* )
+**DISTINCT ATTRIBUTE PATHS** ( *objectField* : Field ; *pathArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ The *aTPaths* array receives the following elements:
| | |
| --- | --- |
| Command number | 1395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/distinct-attribute-values.md b/docs/commands-legacy/distinct-attribute-values.md
index 5fe5c0b64d643b..4622f3013bbc6e 100644
--- a/docs/commands-legacy/distinct-attribute-values.md
+++ b/docs/commands-legacy/distinct-attribute-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-attribute-values
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE VALUES** ( *objectField* ; *path* ; *valuesArray* )
+**DISTINCT ATTRIBUTE VALUES** ( *objectField* : Field ; *path* : Text ; *valuesArray* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| objectField | Field | → | Object field from which to get the list of distinct attribute values |
| path | Text | → | Path of attribute whose distinct values you want to get |
-| valuesArray | Text array, Array integer, Boolean array, Date array, Time array | ← | Distinct values in attribute path |
+| valuesArray | Array | ← | Distinct values in attribute path |
@@ -99,6 +99,6 @@ The *aLChildNum* array receives the following elements:
| | |
| --- | --- |
| Command number | 1397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/distinct-values.md b/docs/commands-legacy/distinct-values.md
index 975b638384e984..0f52b62fbb069c 100644
--- a/docs/commands-legacy/distinct-values.md
+++ b/docs/commands-legacy/distinct-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-values
displayed_sidebar: docs
---
-**DISTINCT VALUES** ( *aField* ; *array* {; *countArray*} )
+**DISTINCT VALUES** ( *aField* : Field ; *array* : Array {; *countArray* : Integer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aField | Field | → | Indexable field to use for data |
| array | Array | ← | Array to receive field data |
-| countArray | Array integer, Real array | ← | Array to receive count of each value |
+| countArray | Integer array | ← | Array to receive count of each value |
@@ -32,7 +32,7 @@ After the call, the size of the array is equal to the number of distinct values
**Note:** When **DISTINCT VALUES** is executed with a text or picture field associated with a keyword index, the command fills the array with the keywords of the index. Unlike other types of data, the values returned differ according to the existence of the index. In the case of a Text field, the keyword index is always taken into account, even when the field is also associated with a standard index. If the Text or Picture field is not associated with a keyword index, the array is returned empty.
-The command accepts a *countArray* array as an optional parameter. When it is passed, this array returns, for each non-repeated value in *aField*, the number of occurrences detected in the current selection. The *countArray* array is automatically sized to the number of elements in *array*. For example, for a selection that contains three records with field values "A", "B", and "A", *array* will contain {A;B} and *countArray* will contain {2;1}. You can pass either a Longint array or a Real array in *countArray*.
+The command accepts a *countArray* array as an optional parameter. When it is passed, this array returns, for each non-repeated value in *aField*, the number of occurrences detected in the current selection. The *countArray* array is automatically sized to the number of elements in *array*. For example, for a selection that contains three records with field values "A", "B", and "A", *array* will contain {A;B} and *countArray* will contain {2;1}. You can pass either an Integer array or a Real array in *countArray*.
**Note:** The *countArray* parameter is not supported for text or picture fields that are associated with keyword indexes (in this context, it is returned empty).
@@ -88,6 +88,6 @@ To compute statistics, you want to sort the number of distinct values in a field
| | |
| --- | --- |
| Command number | 339 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/document-list.md b/docs/commands-legacy/document-list.md
index cbf444ce9f286c..860dcc3ceca847 100644
--- a/docs/commands-legacy/document-list.md
+++ b/docs/commands-legacy/document-list.md
@@ -5,7 +5,7 @@ slug: /commands/document-list
displayed_sidebar: docs
---
-**DOCUMENT LIST** ( *pathname* ; *documents* {; *options*} )
+**DOCUMENT LIST** ( *pathname* : Text ; *documents* : Text array {; *options* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -119,7 +119,7 @@ List of all documents in recursive Posix (relative) mode:
| | |
| --- | --- |
| Command number | 474 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/document-to-blob.md b/docs/commands-legacy/document-to-blob.md
index f21d95ed47e89d..a611e72474ba03 100644
--- a/docs/commands-legacy/document-to-blob.md
+++ b/docs/commands-legacy/document-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/document-to-blob
displayed_sidebar: docs
---
-**DOCUMENT TO BLOB** ( *document* ; *blob* )
+**DOCUMENT TO BLOB** ( *document* : Text ; *blob* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| document | Text | → | Name of the document |
-| blob | Blob | ↔ | BLOB field or variable to receive the document |
+| Blob | Blob | ↔ | BLOB field or variable to receive the document |
||| | Document contents |
@@ -56,7 +56,7 @@ In each case, you can trap the error using an [ON ERR CALL](on-err-call.md) inte
| | |
| --- | --- |
| Command number | 525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/document-to-text.md b/docs/commands-legacy/document-to-text.md
index fb64dbd9988eb5..877ad9f9fc1cfb 100644
--- a/docs/commands-legacy/document-to-text.md
+++ b/docs/commands-legacy/document-to-text.md
@@ -5,7 +5,7 @@ slug: /commands/document-to-text
displayed_sidebar: docs
---
-**Document to text** ( *fileName* {; *charSet* {; *breakMode*}} ) : Text
+**Document to text** ( *fileName* : Text {; *charSet* : Text, Integer {; *breakMode* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -83,6 +83,6 @@ When you execute this code:
| | |
| --- | --- |
| Command number | 1236 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-append-xml-child-node.md b/docs/commands-legacy/dom-append-xml-child-node.md
index d79b373ab3eae0..ce68564ce66c0d 100644
--- a/docs/commands-legacy/dom-append-xml-child-node.md
+++ b/docs/commands-legacy/dom-append-xml-child-node.md
@@ -5,7 +5,7 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---
-**DOM Append XML child node** ( *elementRef* ; *childType* ; *childValue* ) : Text
+**DOM Append XML child node** ( *elementRef* : Text ; *childType* : Integer ; *childValue* : Text, Blob ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -151,6 +151,6 @@ If the contents of *childValue* are not valid, an error is returned.
| | |
| --- | --- |
| Command number | 1080 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-append-xml-element.md b/docs/commands-legacy/dom-append-xml-element.md
index 8da3461110133c..50294380687efc 100644
--- a/docs/commands-legacy/dom-append-xml-element.md
+++ b/docs/commands-legacy/dom-append-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-append-xml-element
displayed_sidebar: docs
---
-**DOM Append XML element** ( *targetElementRef* ; *sourceElementRef* ) : Text
+**DOM Append XML element** ( *targetElementRef* : Text ; *sourceElementRef* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ See the example of the [DOM Insert XML element](dom-insert-xml-element.md "DOM I
| | |
| --- | --- |
| Command number | 1082 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-close-xml.md b/docs/commands-legacy/dom-close-xml.md
index 63bbd0a5960fb1..a0eacffa9e285f 100644
--- a/docs/commands-legacy/dom-close-xml.md
+++ b/docs/commands-legacy/dom-close-xml.md
@@ -5,7 +5,7 @@ slug: /commands/dom-close-xml
displayed_sidebar: docs
---
-**DOM CLOSE XML** ( *elementRef* )
+**DOM CLOSE XML** ( *elementRef* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,7 +33,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 722 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-count-xml-attributes.md b/docs/commands-legacy/dom-count-xml-attributes.md
index 476badd0d6224f..32c54814a87a07 100644
--- a/docs/commands-legacy/dom-count-xml-attributes.md
+++ b/docs/commands-legacy/dom-count-xml-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/dom-count-xml-attributes
displayed_sidebar: docs
---
-**DOM Count XML attributes** ( *elementRef* ) : Integer
+**DOM Count XML attributes** ( *elementRef* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,7 +58,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 727 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-count-xml-elements.md b/docs/commands-legacy/dom-count-xml-elements.md
index 2920849109b828..d46dc54c14b904 100644
--- a/docs/commands-legacy/dom-count-xml-elements.md
+++ b/docs/commands-legacy/dom-count-xml-elements.md
@@ -5,7 +5,7 @@ slug: /commands/dom-count-xml-elements
displayed_sidebar: docs
---
-**DOM Count XML elements** ( *elementRef* ; *elementName* ) : Integer
+**DOM Count XML elements** ( *elementRef* : Text ; *elementName* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,7 +33,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 726 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-create-xml-element-arrays.md b/docs/commands-legacy/dom-create-xml-element-arrays.md
index aabc279e7b1a62..10fb566e3b0fa6 100644
--- a/docs/commands-legacy/dom-create-xml-element-arrays.md
+++ b/docs/commands-legacy/dom-create-xml-element-arrays.md
@@ -5,7 +5,7 @@ slug: /commands/dom-create-xml-element-arrays
displayed_sidebar: docs
---
-**DOM Create XML element arrays** ( *elementRef* ; *xPath* {; *attribNamesArray* ; *attribValuesArray*} {; *attribNamesArray2* ; *attribValuesArray2* ; ... ; *attribNamesArrayN* ; *attribValuesArrayN*} ) : Text
+**DOM Create XML element arrays** ( *elementRef* : Text ; *xPath* : Text {; *attribNamesArray* : Text array ; *attribValuesArray* : Text array} {; ...(*attribNamesArray* : Text array, *attribValuesArray* : Text array)} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ For this, you can simply write:
| | |
| --- | --- |
| Command number | 1097 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-create-xml-element.md b/docs/commands-legacy/dom-create-xml-element.md
index 4ca7a6ef1b66fd..8da58c1adce5b5 100644
--- a/docs/commands-legacy/dom-create-xml-element.md
+++ b/docs/commands-legacy/dom-create-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-create-xml-element
displayed_sidebar: docs
---
-**DOM Create XML element** ( *elementRef* ; *xPath* {; *attribName* ; *attrValue*} {; *attribName2* ; *attrValue2* ; ... ; *attribNameN* ; *attrValueN*} ) : Text
+**DOM Create XML element** ( *elementRef* : Text ; *xPath* : Text {; *attribName* : Text ; *attrValue* : Text, Boolean, Integer, Real, Time, Date} {; ...(*attribName* : Text, *attrValue* : Text, Boolean, Integer, Real, Time, Date)} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -183,7 +183,7 @@ An error is generated when:
| | |
| --- | --- |
| Command number | 865 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-create-xml-ref.md b/docs/commands-legacy/dom-create-xml-ref.md
index 34d03f09eecb1d..172262e481d853 100644
--- a/docs/commands-legacy/dom-create-xml-ref.md
+++ b/docs/commands-legacy/dom-create-xml-ref.md
@@ -5,7 +5,7 @@ slug: /commands/dom-create-xml-ref
displayed_sidebar: docs
---
-**DOM Create XML Ref** ( *root* {; *nameSpace*} {; *nameSpaceName* ; *nameSpaceValue*} {; *nameSpaceName2* ; *nameSpaceValue2* ; ... ; *nameSpaceNameN* ; *nameSpaceValueN*} ) : Text
+**DOM Create XML Ref** ( *root* : Text {; *nameSpace* : Text} {; *nameSpaceName* : Text ; *nameSpaceValue* : Text} {; ...(*nameSpaceName* : Text, *nameSpaceValue* : Text)} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -104,7 +104,7 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe
| | |
| --- | --- |
| Command number | 861 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-export-to-file.md b/docs/commands-legacy/dom-export-to-file.md
index b6cfba5c3515f9..c7698f16495b56 100644
--- a/docs/commands-legacy/dom-export-to-file.md
+++ b/docs/commands-legacy/dom-export-to-file.md
@@ -5,7 +5,7 @@ slug: /commands/dom-export-to-file
displayed_sidebar: docs
---
-**DOM EXPORT TO FILE** ( *elementRef* ; *filePath* )
+**DOM EXPORT TO FILE** ( *elementRef* : Text ; *filePath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,7 +68,7 @@ An error is generated when:
| | |
| --- | --- |
| Command number | 862 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-export-to-var.md b/docs/commands-legacy/dom-export-to-var.md
index 134f21df953f5d..bdada6ff4310ec 100644
--- a/docs/commands-legacy/dom-export-to-var.md
+++ b/docs/commands-legacy/dom-export-to-var.md
@@ -5,7 +5,7 @@ slug: /commands/dom-export-to-var
displayed_sidebar: docs
---
-**DOM EXPORT TO VAR** ( *elementRef* ; *vXmlVar* )
+**DOM EXPORT TO VAR** ( *elementRef* : Text ; *vXmlVar* : Text, Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,7 +61,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 863 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-find-xml-element-by-id.md b/docs/commands-legacy/dom-find-xml-element-by-id.md
index a8db58d20d1c37..f90a9cadb4d276 100644
--- a/docs/commands-legacy/dom-find-xml-element-by-id.md
+++ b/docs/commands-legacy/dom-find-xml-element-by-id.md
@@ -5,7 +5,7 @@ slug: /commands/dom-find-xml-element-by-id
displayed_sidebar: docs
---
-**DOM Find XML element by ID** ( *elementRef* ; *id* ) : Text
+**DOM Find XML element by ID** ( *elementRef* : Text ; *id* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,7 +34,7 @@ The command returns the XML reference of the element found as a result.
| | |
| --- | --- |
| Command number | 1010 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-find-xml-element.md b/docs/commands-legacy/dom-find-xml-element.md
index 235af5bf4dd6cb..053fa61342f525 100644
--- a/docs/commands-legacy/dom-find-xml-element.md
+++ b/docs/commands-legacy/dom-find-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-find-xml-element
displayed_sidebar: docs
---
-**DOM Find XML element** ( *elementRef* ; *xPath* {; *arrElementRefs*} ) : Text
+**DOM Find XML element** ( *elementRef* : Text ; *xPath* : Text {; *arrElementRefs* : Text array} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -123,7 +123,7 @@ An error is generated when:
| | |
| --- | --- |
| Command number | 864 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-get-first-child-xml-element.md b/docs/commands-legacy/dom-get-first-child-xml-element.md
index 418bce3deab04d..9ebedcf8aed10a 100644
--- a/docs/commands-legacy/dom-get-first-child-xml-element.md
+++ b/docs/commands-legacy/dom-get-first-child-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-first-child-xml-element
displayed_sidebar: docs
---
-**DOM Get first child XML element** ( *elementRef* {; *childElemName* {; *childElemValue*}} ) : Text
+**DOM Get first child XML element** ( *elementRef* : Text {; *childElemName* : Text {; *childElemValue* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,7 +64,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 723 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-last-child-xml-element.md b/docs/commands-legacy/dom-get-last-child-xml-element.md
index 513be642caaa41..3520a13a3ecd3e 100644
--- a/docs/commands-legacy/dom-get-last-child-xml-element.md
+++ b/docs/commands-legacy/dom-get-last-child-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-last-child-xml-element
displayed_sidebar: docs
---
-**DOM Get last child XML element** ( *elementRef* {; *childElemName* {; *childElemValue*}} ) : Text
+**DOM Get last child XML element** ( *elementRef* : Text {; *childElemName* : Text {; *childElemValue* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,7 +49,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 925 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-next-sibling-xml-element.md b/docs/commands-legacy/dom-get-next-sibling-xml-element.md
index 67f0381fae6a9e..fc83d679ae476e 100644
--- a/docs/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/docs/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-next-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get next sibling XML element** ( *elementRef* {; *siblingElemName* {; *siblingElemValue*}} ) : Text
+**DOM Get next sibling XML element** ( *elementRef* : Text {; *siblingElemName* : Text {; *siblingElemValue* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,7 +66,7 @@ If the command has been correctly executed and if the parsed element is not the
| | |
| --- | --- |
| Command number | 724 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-parent-xml-element.md b/docs/commands-legacy/dom-get-parent-xml-element.md
index 59a3c3cab88dd2..9377f7d110b160 100644
--- a/docs/commands-legacy/dom-get-parent-xml-element.md
+++ b/docs/commands-legacy/dom-get-parent-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-parent-xml-element
displayed_sidebar: docs
---
-**DOM Get parent XML element** ( *elementRef* {; *parentElemName* {; *parentElemValue*}} ) : Text
+**DOM Get parent XML element** ( *elementRef* : Text {; *parentElemName* : Text {; *parentElemValue* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 923 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-previous-sibling-xml-element.md b/docs/commands-legacy/dom-get-previous-sibling-xml-element.md
index 0eedd5d7cfc952..09a641613a9cab 100644
--- a/docs/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/docs/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-previous-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get previous sibling XML element** ( *elementRef* {; *siblingElemName* {; *siblingElemValue*}} ) : Text
+**DOM Get previous sibling XML element** ( *elementRef* : Text {; *siblingElemName* : Text {; *siblingElemValue* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If the command has been executed correctly and if the referenced element is not
| | |
| --- | --- |
| Command number | 924 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-root-xml-element.md b/docs/commands-legacy/dom-get-root-xml-element.md
index 4f6995b4edf7e9..265f7bdec42e41 100644
--- a/docs/commands-legacy/dom-get-root-xml-element.md
+++ b/docs/commands-legacy/dom-get-root-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-root-xml-element
displayed_sidebar: docs
---
-**DOM Get root XML element** ( *elementRef* ) : Text
+**DOM Get root XML element** ( *elementRef* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1053 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-get-xml-attribute-by-index.md b/docs/commands-legacy/dom-get-xml-attribute-by-index.md
index 28f23a2757ef4d..0c92e99a7df820 100644
--- a/docs/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/docs/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-attribute-by-index
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* ; *attribIndex* ; *attribName* ; *attribValue* )
+**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* : Text ; *attribIndex* : Integer ; *attribName* : Variable ; *attribValue* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 729 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-get-xml-attribute-by-name.md b/docs/commands-legacy/dom-get-xml-attribute-by-name.md
index 244151b4e19225..35290e70c353ff 100644
--- a/docs/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/docs/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-attribute-by-name
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* ; *attribName* ; *attribValue* )
+**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* : Text ; *attribName* : Text ; *attribValue* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 728 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-get-xml-child-nodes.md b/docs/commands-legacy/dom-get-xml-child-nodes.md
index 8750f9722915cf..224a3379ca067b 100644
--- a/docs/commands-legacy/dom-get-xml-child-nodes.md
+++ b/docs/commands-legacy/dom-get-xml-child-nodes.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-child-nodes
displayed_sidebar: docs
---
-**DOM GET XML CHILD NODES** ( *elementRef* ; *childTypesArr* ; *nodeRefsArr* )
+**DOM GET XML CHILD NODES** ( *elementRef* : Text ; *childTypesArr* : Integer array ; *nodeRefsArr* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| elementRef | Text | → | XML element reference |
-| childTypesArr | Array integer | ← | Types of child nodes |
+| childTypesArr | Integer array | ← | Types of child nodes |
| nodeRefsArr | Text array | ← | References or Values of child nodes |
@@ -68,6 +68,6 @@ After executing these instructions:
| | |
| --- | --- |
| Command number | 1081 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-get-xml-document-ref.md b/docs/commands-legacy/dom-get-xml-document-ref.md
index b977737e2aadc6..cc72f9ef415f71 100644
--- a/docs/commands-legacy/dom-get-xml-document-ref.md
+++ b/docs/commands-legacy/dom-get-xml-document-ref.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-document-ref
displayed_sidebar: docs
---
-**DOM Get XML document ref** ( *elementRef* ) : Text
+**DOM Get XML document ref** ( *elementRef* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ In this example, we want to find the DTD declaration of the XML document:
| | |
| --- | --- |
| Command number | 1088 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-get-xml-element-name.md b/docs/commands-legacy/dom-get-xml-element-name.md
index e59c073f4a8abf..ca391cec308ea2 100644
--- a/docs/commands-legacy/dom-get-xml-element-name.md
+++ b/docs/commands-legacy/dom-get-xml-element-name.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-element-name
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT NAME** ( *elementRef* ; *elementName* )
+**DOM GET XML ELEMENT NAME** ( *elementRef* : Text ; *elementName* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-xml-element-value.md b/docs/commands-legacy/dom-get-xml-element-value.md
index f7e3d1c7bacb2a..e593035b84fcef 100644
--- a/docs/commands-legacy/dom-get-xml-element-value.md
+++ b/docs/commands-legacy/dom-get-xml-element-value.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-element-value
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT VALUE** ( *elementRef* ; *elementValue* {; *cDATA*} )
+**DOM GET XML ELEMENT VALUE** ( *elementRef* : Text ; *elementValue* : Variable {; *cDATA* : Variable} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,7 +49,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-get-xml-element.md b/docs/commands-legacy/dom-get-xml-element.md
index fe8aadaa8c8026..4483d480b25985 100644
--- a/docs/commands-legacy/dom-get-xml-element.md
+++ b/docs/commands-legacy/dom-get-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-element
displayed_sidebar: docs
---
-**DOM Get XML element** ( *elementRef* ; *elementName* ; *index* ; *elementValue* ) : Text
+**DOM Get XML element** ( *elementRef* : Text ; *elementName* : Text ; *index* : Integer ; *elementValue* : Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 725 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-get-xml-information.md b/docs/commands-legacy/dom-get-xml-information.md
index 8ddde3b34acb6d..6404f9085bf9ce 100644
--- a/docs/commands-legacy/dom-get-xml-information.md
+++ b/docs/commands-legacy/dom-get-xml-information.md
@@ -5,7 +5,7 @@ slug: /commands/dom-get-xml-information
displayed_sidebar: docs
---
-**DOM Get XML information** ( *elementRef* ; *xmlInfo* ) : Text
+**DOM Get XML information** ( *elementRef* : Text ; *xmlInfo* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ In *xmlInfo*, pass a code indicating the type of information to be retrieved. Yo
| | |
| --- | --- |
| Command number | 721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-insert-xml-element.md b/docs/commands-legacy/dom-insert-xml-element.md
index 3ec51de602ada2..4085aad971ad54 100644
--- a/docs/commands-legacy/dom-insert-xml-element.md
+++ b/docs/commands-legacy/dom-insert-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-insert-xml-element
displayed_sidebar: docs
---
-**DOM Insert XML element** ( *targetElementRef* ; *sourceElementRef* ; *childIndex* ) : Text
+**DOM Insert XML element** ( *targetElementRef* : Text ; *sourceElementRef* : Text ; *childIndex* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -80,6 +80,6 @@ To do this, simply execute the following code:
| | |
| --- | --- |
| Command number | 1083 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-parse-xml-source.md b/docs/commands-legacy/dom-parse-xml-source.md
index 07ce527eea8126..6c8837ac78be32 100644
--- a/docs/commands-legacy/dom-parse-xml-source.md
+++ b/docs/commands-legacy/dom-parse-xml-source.md
@@ -5,7 +5,7 @@ slug: /commands/dom-parse-xml-source
displayed_sidebar: docs
---
-**DOM Parse XML source** ( *document* {; *validation* {; *dtd* }} ) : Text
**DOM Parse XML source** ( *document* {; *validation* {; *schema* }} ) : Text
+**DOM Parse XML source** ( *document* : Text {; *validation* : Boolean {; *dtd* : Text }} ) : Text
**DOM Parse XML source** ( *document* : Text {; *validation* : Boolean {; *schema* : Text }} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -101,7 +101,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 719 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-parse-xml-variable.md b/docs/commands-legacy/dom-parse-xml-variable.md
index 5b88f990919eee..75e057a2cbe86f 100644
--- a/docs/commands-legacy/dom-parse-xml-variable.md
+++ b/docs/commands-legacy/dom-parse-xml-variable.md
@@ -5,7 +5,7 @@ slug: /commands/dom-parse-xml-variable
displayed_sidebar: docs
---
-**DOM Parse XML variable** ( *variable* {; *validation* {; *dtd* }} ) : Text
**DOM Parse XML variable** ( *variable* {; *validation* {; *schema*}} ) : Text
+**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *dtd* : Text }} ) : Text
**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *schema* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,7 +89,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 720 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-remove-xml-attribute.md b/docs/commands-legacy/dom-remove-xml-attribute.md
index ac7cd3286f2331..da2d96aeacf74b 100644
--- a/docs/commands-legacy/dom-remove-xml-attribute.md
+++ b/docs/commands-legacy/dom-remove-xml-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/dom-remove-xml-attribute
displayed_sidebar: docs
---
-**DOM REMOVE XML ATTRIBUTE** ( *elementRef* ; *attribName* )
+**DOM REMOVE XML ATTRIBUTE** ( *elementRef* : Text ; *attribName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ The following code can be used to remove the first attribute "N=1":
| | |
| --- | --- |
| Command number | 1084 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-remove-xml-element.md b/docs/commands-legacy/dom-remove-xml-element.md
index a4a85d79bb7253..3020c37e5bce9f 100644
--- a/docs/commands-legacy/dom-remove-xml-element.md
+++ b/docs/commands-legacy/dom-remove-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/dom-remove-xml-element
displayed_sidebar: docs
---
-**DOM REMOVE XML ELEMENT** ( *elementRef* )
+**DOM REMOVE XML ELEMENT** ( *elementRef* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ An error is generated when the element reference is invalid.
| | |
| --- | --- |
| Command number | 869 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-set-xml-attribute.md b/docs/commands-legacy/dom-set-xml-attribute.md
index 7bbb91e79454ab..9bb72128cc3540 100644
--- a/docs/commands-legacy/dom-set-xml-attribute.md
+++ b/docs/commands-legacy/dom-set-xml-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/dom-set-xml-attribute
displayed_sidebar: docs
---
-**DOM SET XML ATTRIBUTE** ( *elementRef* ; *attribName* ; *attrValue* {; *attribName2* ; *attrValue2* ; ... ; *attribNameN* ; *attrValueN*} )
+**DOM SET XML ATTRIBUTE** ( *elementRef* : Text ; *attribName* : Text ; *attrValue* : Text, Boolean, Integer, Real, Time, Date {; ...(*attribName* : Text, *attrValue* : Text, Boolean, Integer, Real, Time, Date)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,7 +72,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 866 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/dom-set-xml-declaration.md b/docs/commands-legacy/dom-set-xml-declaration.md
index c35cab0ce8a88c..caa133ab0c625a 100644
--- a/docs/commands-legacy/dom-set-xml-declaration.md
+++ b/docs/commands-legacy/dom-set-xml-declaration.md
@@ -5,7 +5,7 @@ slug: /commands/dom-set-xml-declaration
displayed_sidebar: docs
---
-**DOM SET XML DECLARATION** ( *elementRef* ; *encoding* {; *standalone* {; *indentation*}} )
+**DOM SET XML DECLARATION** ( *elementRef* : Text ; *encoding* : Text {; *standalone* : Boolean {; *indentation* : Boolean}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ The following example sets the encoding to use and the standalone option in the
| | |
| --- | --- |
| Command number | 859 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/dom-set-xml-element-name.md b/docs/commands-legacy/dom-set-xml-element-name.md
index 1ff5df6c097309..9a8f5dd4827247 100644
--- a/docs/commands-legacy/dom-set-xml-element-name.md
+++ b/docs/commands-legacy/dom-set-xml-element-name.md
@@ -5,7 +5,7 @@ slug: /commands/dom-set-xml-element-name
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT NAME** ( *elementRef* ; *elementName* )
+**DOM SET XML ELEMENT NAME** ( *elementRef* : Text ; *elementName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,7 +64,7 @@ An error is generated when:
| | |
| --- | --- |
| Command number | 867 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/dom-set-xml-element-value.md b/docs/commands-legacy/dom-set-xml-element-value.md
index e211e272fadd1a..932905b2c0adbf 100644
--- a/docs/commands-legacy/dom-set-xml-element-value.md
+++ b/docs/commands-legacy/dom-set-xml-element-value.md
@@ -5,7 +5,7 @@ slug: /commands/dom-set-xml-element-value
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT VALUE** ( *elementRef* {; *xPath*}; *elementValue* {; *} )
+**DOM SET XML ELEMENT VALUE** ( *elementRef* : Text {; *xPath* : Text}; *elementValue* : Text, Variable {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -122,7 +122,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 868 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/drag-window.md b/docs/commands-legacy/drag-window.md
index cacc650b7c809a..071e6fe8b11126 100644
--- a/docs/commands-legacy/drag-window.md
+++ b/docs/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Then you can drag the window by clicking anywhere on the borders.
| | |
| --- | --- |
| Command number | 452 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/drop-position.md b/docs/commands-legacy/drop-position.md
index b59b3a04ec1757..4190948f87672e 100644
--- a/docs/commands-legacy/drop-position.md
+++ b/docs/commands-legacy/drop-position.md
@@ -5,7 +5,7 @@ slug: /commands/drop-position
displayed_sidebar: docs
---
-**Drop position** {( *columnNumber* )} : Integer
**Drop position** {( *pictPosY* )} : Integer
+**Drop position** ( *columnNumber* : Integer ) : Integer
**Drop position** ( *pictPosY* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ The left (destination) list box object method contains the following code:
| | |
| --- | --- |
| Command number | 608 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/drop-remote-user.md b/docs/commands-legacy/drop-remote-user.md
index 782b3a38b7293d..6e378f58abc9bc 100644
--- a/docs/commands-legacy/drop-remote-user.md
+++ b/docs/commands-legacy/drop-remote-user.md
@@ -5,7 +5,7 @@ slug: /commands/drop-remote-user
displayed_sidebar: docs
---
-**DROP REMOTE USER** ( *userSession* )
+**DROP REMOTE USER** ( *userSession* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ You want to drop a specific remote user:
| | |
| --- | --- |
| Command number | 1633 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/duplicate-record.md b/docs/commands-legacy/duplicate-record.md
index a3d99ec6d1445e..5a26be998e92c3 100644
--- a/docs/commands-legacy/duplicate-record.md
+++ b/docs/commands-legacy/duplicate-record.md
@@ -5,7 +5,7 @@ slug: /commands/duplicate-record
displayed_sidebar: docs
---
-**DUPLICATE RECORD** {( *aTable* )}
+**DUPLICATE RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/dynamic-pop-up-menu.md b/docs/commands-legacy/dynamic-pop-up-menu.md
index 86956672f08ab5..2e4af8f6411f11 100644
--- a/docs/commands-legacy/dynamic-pop-up-menu.md
+++ b/docs/commands-legacy/dynamic-pop-up-menu.md
@@ -5,7 +5,7 @@ slug: /commands/dynamic-pop-up-menu
displayed_sidebar: docs
---
-**Dynamic pop up menu** ( *menu* {; *default* {; *xCoord* ; *yCoord*}} ) : Text
+**Dynamic pop up menu** ( *menu* : Text {; *default* : Text {; *xCoord* : Integer ; *yCoord* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -97,6 +97,6 @@ This code allows creating a hierarchical dynamic pop up menu built upon standard
| | |
| --- | --- |
| Command number | 1006 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/edit-access.md b/docs/commands-legacy/edit-access.md
index 5b8c3326ded7d2..4a887f806acfb3 100644
--- a/docs/commands-legacy/edit-access.md
+++ b/docs/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ The following example displays the Users and User groups management window to th
| | |
| --- | --- |
| Command number | 281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/edit-formula.md b/docs/commands-legacy/edit-formula.md
index 30bf969113f755..661f934ea6ef67 100644
--- a/docs/commands-legacy/edit-formula.md
+++ b/docs/commands-legacy/edit-formula.md
@@ -5,13 +5,12 @@ slug: /commands/edit-formula
displayed_sidebar: docs
---
-**EDIT FORMULA** ( *aTable* ; *formula* )
+**EDIT FORMULA** ( *aTable* : Table ; *formula* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table to display by default in the Formula editor |
-| formula | Text | → | Variable containing the formula to display in the Formula editor or "" to display editor only |
-|| ← | Formula validated by the user |
+| formula | Text | ↔ | *in:* Variable containing the formula to display in the Formula editor or "" to display editor only
*out:* Formula validated by the user|
@@ -60,7 +59,7 @@ If the user validates the dialog box, the system variable OK is set to 1\. If th
| | |
| --- | --- |
| Command number | 806 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/edit-item.md b/docs/commands-legacy/edit-item.md
index f9d679d4530873..9469104b989828 100644
--- a/docs/commands-legacy/edit-item.md
+++ b/docs/commands-legacy/edit-item.md
@@ -5,7 +5,7 @@ slug: /commands/edit-item
displayed_sidebar: docs
---
-**EDIT ITEM** ( {* ;} *object* {; *item*} )
+**EDIT ITEM** ( * ; *object* : Text {; *item* : Integer} )
**EDIT ITEM** ( *object* : Field, Variable {; *item* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -77,6 +77,6 @@ Given two columns in a list box whose variable names are “Array1” and “Arr
| | |
| --- | --- |
| Command number | 870 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/enable-menu-item.md b/docs/commands-legacy/enable-menu-item.md
index 1a2d962840e9bd..c51fd07f95ecf6 100644
--- a/docs/commands-legacy/enable-menu-item.md
+++ b/docs/commands-legacy/enable-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/enable-menu-item
displayed_sidebar: docs
---
-**ENABLE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**ENABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ If you omit the *process* parameter, **ENABLE MENU ITEM** applies to the menu ba
| | |
| --- | --- |
| Command number | 149 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/encrypt-blob.md b/docs/commands-legacy/encrypt-blob.md
index 87eb7e13dc9da9..545b394aea8ebe 100644
--- a/docs/commands-legacy/encrypt-blob.md
+++ b/docs/commands-legacy/encrypt-blob.md
@@ -5,7 +5,7 @@ slug: /commands/encrypt-blob
displayed_sidebar: docs
---
-**ENCRYPT BLOB** ( *toEncrypt* ; *sendPrivKey* {; *recipPubKey*} )
+**ENCRYPT BLOB** ( *toEncrypt* : Blob ; *sendPrivKey* : Blob {; *recipPubKey* : Blob} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -187,6 +187,6 @@ A company wants to use the Internet to exchange information. Each subsidiary rec
| | |
| --- | --- |
| Command number | 689 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/encrypt-data-blob.md b/docs/commands-legacy/encrypt-data-blob.md
index 7d50100677a987..fb6cbae4d49dae 100644
--- a/docs/commands-legacy/encrypt-data-blob.md
+++ b/docs/commands-legacy/encrypt-data-blob.md
@@ -5,7 +5,7 @@ slug: /commands/encrypt-data-blob
displayed_sidebar: docs
---
-**Encrypt data BLOB** ( *blobToEncrypt* ; *keyObject* ; *salt* ; *encryptedBLOB* ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* ; *passPhrase* ; *salt* ; *encryptedBLOB* ) : Boolean
+**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *keyObject* : Object, Text ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *passPhrase* : Object, Text ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ Encrypt a text file located in the RESOURCES folder of the database:
| | |
| --- | --- |
| Command number | 1773 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/encrypt-data-file.md b/docs/commands-legacy/encrypt-data-file.md
index a4da763c944dd5..4eacd1916dc429 100644
--- a/docs/commands-legacy/encrypt-data-file.md
+++ b/docs/commands-legacy/encrypt-data-file.md
@@ -5,7 +5,7 @@ slug: /commands/encrypt-data-file
displayed_sidebar: docs
---
-**Encrypt data file** ( *structurePath* ; *dataPath* {; *newPassPhrase* {; *archiveFolder* {; *curPassPhrase* {; *methodName*}}}} ) : Text
**Encrypt data file** ( *structurePath* ; *dataPath* {; *newDataKey* {; *archiveFolder* {; *curDataKey* {; *methodName*}}}} ) : Text
+**Encrypt data file** ( *structurePath* : Text ; *dataPath* : Text {; *newPassPhrase* : Text, Object {; *archiveFolder* : Text {; *curPassPhrase* : Text, Object {; *methodName* : Text}}}} ) : Text
**Encrypt data file** ( *structurePath* : Text ; *dataPath* : Text {; *newDataKey* : Text, Object {; *archiveFolder* : Text {; *curDataKey* : Text, Object {; *methodName* : Text}}}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -138,6 +138,6 @@ Re-encrypt an encrypted data file with the current key (for example, when the en
| | |
| --- | --- |
| Command number | 1610 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/end-selection.md b/docs/commands-legacy/end-selection.md
index 39c3bdf8db78ae..9c69ea64f1c6eb 100644
--- a/docs/commands-legacy/end-selection.md
+++ b/docs/commands-legacy/end-selection.md
@@ -5,7 +5,7 @@ slug: /commands/end-selection
displayed_sidebar: docs
---
-**End selection** {( *aTable* )} : Boolean
+**End selection** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ This form method is used during the printing of a report. It sets the variable *
| | |
| --- | --- |
| Command number | 36 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/end-sql.md b/docs/commands-legacy/end-sql.md
index 121609d733733f..de49c86780d71c 100644
--- a/docs/commands-legacy/end-sql.md
+++ b/docs/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ A sequence of SQL statements must be enclosed with the [Begin SQL](begin-sql.md)
| | |
| --- | --- |
| Command number | 949 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/equal-pictures.md b/docs/commands-legacy/equal-pictures.md
index 69cb045f9a4001..b98eef084b12cd 100644
--- a/docs/commands-legacy/equal-pictures.md
+++ b/docs/commands-legacy/equal-pictures.md
@@ -5,7 +5,7 @@ slug: /commands/equal-pictures
displayed_sidebar: docs
---
-**Equal pictures** ( *picture1* ; *picture2* ; *mask* ) : Boolean
+**Equal pictures** ( *picture1* : Picture, Picture ; *picture2* : Picture, Picture ; *mask* : Picture, Picture ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ Here is the code for the **Compare** button:
| | |
| --- | --- |
| Command number | 1196 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/erase-window.md b/docs/commands-legacy/erase-window.md
index c7616f501ef63d..5137a758fef984 100644
--- a/docs/commands-legacy/erase-window.md
+++ b/docs/commands-legacy/erase-window.md
@@ -5,7 +5,7 @@ slug: /commands/erase-window
displayed_sidebar: docs
---
-**ERASE WINDOW** {( *window* )}
+**ERASE WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ Do not confuse **ERASE WINDOW**, which clears the contents of a window, with [CL
| | |
| --- | --- |
| Command number | 160 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/euro-converter.md b/docs/commands-legacy/euro-converter.md
index 1762f55b5133f8..770351dce8454d 100644
--- a/docs/commands-legacy/euro-converter.md
+++ b/docs/commands-legacy/euro-converter.md
@@ -5,7 +5,7 @@ slug: /commands/euro-converter
displayed_sidebar: docs
---
-**Euro converter** ( *value* ; *fromCurrency* ; *toCurrency* ) : Real
+**Euro converter** ( *value* : Real ; *fromCurrency* : Text ; *toCurrency* : Text ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,6 +85,6 @@ Here are some examples of conversions that can be done with this command:
| | |
| --- | --- |
| Command number | 676 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/execute-formula.md b/docs/commands-legacy/execute-formula.md
index 74d6ee14386686..27d3ee8a7ba7d3 100644
--- a/docs/commands-legacy/execute-formula.md
+++ b/docs/commands-legacy/execute-formula.md
@@ -5,7 +5,7 @@ slug: /commands/execute-formula
displayed_sidebar: docs
---
-**EXECUTE FORMULA** ( *statement* )
+**EXECUTE FORMULA** ( *statement* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ You want to execute a formula including calls to 4D commands and tables. Since t
| | |
| --- | --- |
| Command number | 63 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/execute-method-in-subform.md b/docs/commands-legacy/execute-method-in-subform.md
index d7444c2e4e325a..c2c0f36a736ed7 100644
--- a/docs/commands-legacy/execute-method-in-subform.md
+++ b/docs/commands-legacy/execute-method-in-subform.md
@@ -5,14 +5,14 @@ slug: /commands/execute-method-in-subform
displayed_sidebar: docs
---
-**EXECUTE METHOD IN SUBFORM** ( *subformObject* ; *formula* {; *return* {; *param*} {; *param2* ; ... ; *paramN*}} )
+**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; *return* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; * {; ...*param* : Expression} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| subformObject | Text | → | Name of subform object |
| formula | Object, Text | → | Formula object or Name of project method |
-| return | *, Variable | → | * if formula does not return a value |
-| ← | Value returned by formula |
+| return | Variable | ← | Value returned by formula (if any) |
+| \* | Operator | → | Formula does not return a value |
| param | Expression | → | Parameter(s) passed to formula |
@@ -79,7 +79,7 @@ If this command is executed correctly, the system variable OK is set to 1; other
| | |
| --- | --- |
| Command number | 1085 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/execute-method.md b/docs/commands-legacy/execute-method.md
index ad0ea2dda6398a..74525ac98a859d 100644
--- a/docs/commands-legacy/execute-method.md
+++ b/docs/commands-legacy/execute-method.md
@@ -5,12 +5,12 @@ slug: /commands/execute-method
displayed_sidebar: docs
---
-**EXECUTE METHOD** ( *methodName* {; *result* {; *param*}}{; *param2* ; ... ; *paramN*} )
+**EXECUTE METHOD** ( *methodName* : Text ; *result* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD** ( *methodName* : Text ; * {; ...*param* : Expression} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| methodName | Text | → | Name of project method to be executed |
-| result | Variable, * | ← | Variable receiving the method result or * for a method not returning a result |
+| result | Variable, Operator | ← | Variable receiving the method result or * for a method not returning a result |
| param | Expression | → | Parameter(s) of the method |
@@ -38,7 +38,7 @@ If this command is executed correctly, the system variable OK is set to 1; other
| | |
| --- | --- |
| Command number | 1007 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/execute-on-client.md b/docs/commands-legacy/execute-on-client.md
index ad9f8fc27f5845..95bd11585c9785 100644
--- a/docs/commands-legacy/execute-on-client.md
+++ b/docs/commands-legacy/execute-on-client.md
@@ -5,13 +5,13 @@ slug: /commands/execute-on-client
displayed_sidebar: docs
---
-**EXECUTE ON CLIENT** ( *clientName* ; *methodName* {; *param*}{; *param2* ; ... ; *paramN*} )
+**EXECUTE ON CLIENT** ( *clientName* : Text ; *methodName* : Text {; *...param* : any} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| clientName | Text | → | 4D Client’s registered name |
| methodName | Text | → | Name of the method to execute |
-| param | → | Method’s parameter(s) |
+| param | any| → | Method’s parameter(s) |
@@ -66,7 +66,7 @@ The **OK** system variable is equal to 1 if 4D Server has correctly received the
| | |
| --- | --- |
| Command number | 651 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/execute-on-server.md b/docs/commands-legacy/execute-on-server.md
index c2b1733a2c53e0..013c01dac4ce77 100644
--- a/docs/commands-legacy/execute-on-server.md
+++ b/docs/commands-legacy/execute-on-server.md
@@ -5,7 +5,7 @@ slug: /commands/execute-on-server
displayed_sidebar: docs
---
-**Execute on server** ( *procedure* ; *stack* {; *name* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**Execute on server** ( *procedure* : Text ; *stack* : Integer {; *name* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -193,6 +193,6 @@ Refer to the *SP-Based Services (Example)* section in the *4D Server Reference*
| | |
| --- | --- |
| Command number | 373 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/exp.md b/docs/commands-legacy/exp.md
index 8fae5f59f00c31..9b871e851a698d 100644
--- a/docs/commands-legacy/exp.md
+++ b/docs/commands-legacy/exp.md
@@ -5,7 +5,7 @@ slug: /commands/exp
displayed_sidebar: docs
---
-**Exp** ( *number* ) : Real
+**Exp** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ The following example assigns the exponential of 1 to *vrE* (the log of *vrE* is
| | |
| --- | --- |
| Command number | 21 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/expand-blob.md b/docs/commands-legacy/expand-blob.md
index 50384c6461be5a..2c6edcd0aab1a0 100644
--- a/docs/commands-legacy/expand-blob.md
+++ b/docs/commands-legacy/expand-blob.md
@@ -5,11 +5,11 @@ slug: /commands/expand-blob
displayed_sidebar: docs
---
-**EXPAND BLOB** ( *blob* )
+**EXPAND BLOB** ( *blob* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB to expand |
+| Blob | Blob | → | BLOB to expand |
@@ -70,7 +70,7 @@ The OK variable is set to 1 if the BLOB has been successfully expanded, otherwis
| | |
| --- | --- |
| Command number | 535 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/export-data.md b/docs/commands-legacy/export-data.md
index 5cd8cf3d3d0524..9af06b2ad4896e 100644
--- a/docs/commands-legacy/export-data.md
+++ b/docs/commands-legacy/export-data.md
@@ -5,13 +5,12 @@ slug: /commands/export-data
displayed_sidebar: docs
---
-**EXPORT DATA** ( *fileName* {; *project* {; *}} )
+**EXPORT DATA** ( *fileName* : Text {; *project* : Text, Blob {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| fileName | Text | → | Full path name of the export file |
-| project | Text, Blob | → | Contents of the export project |
-| ← | New contents of the export project (if the * parameter has been passed) |
+| project | Text, Blob | ↔ | *in:* Contents of the export project
*out:* New contents of the export project (if the * parameter has been passed) |
| * | Operator | → | Displays the export dialog box and updates the project |
@@ -101,7 +100,7 @@ If the user clicks **Cancel** in the standard open file dialog box or in the exp
| | |
| --- | --- |
| Command number | 666 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/export-dif.md b/docs/commands-legacy/export-dif.md
index 8c8dcd80a380fe..11e30e33ed1db5 100644
--- a/docs/commands-legacy/export-dif.md
+++ b/docs/commands-legacy/export-dif.md
@@ -5,7 +5,7 @@ slug: /commands/export-dif
displayed_sidebar: docs
---
-**EXPORT DIF** ( {*aTable* ;} *document* )
+**EXPORT DIF** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to
| | |
| --- | --- |
| Command number | 84 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/export-structure-file.md b/docs/commands-legacy/export-structure-file.md
index c8f94b3696d67e..cc0d6e37f238dc 100644
--- a/docs/commands-legacy/export-structure-file.md
+++ b/docs/commands-legacy/export-structure-file.md
@@ -5,7 +5,7 @@ slug: /commands/export-structure-file
displayed_sidebar: docs
---
-**Export structure file** ( *folderPath* {; *options*} ) : Object
+**Export structure file** ( *folderPath* : Text {; *options* : Object} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -120,6 +120,6 @@ You want to export only project and database methods, and a log file:
| | |
| --- | --- |
| Command number | 1565 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/export-structure.md b/docs/commands-legacy/export-structure.md
index 4131cced57937e..051d1ebb608f96 100644
--- a/docs/commands-legacy/export-structure.md
+++ b/docs/commands-legacy/export-structure.md
@@ -5,7 +5,7 @@ slug: /commands/export-structure
displayed_sidebar: docs
---
-**EXPORT STRUCTURE** ( *exportedStructure* {; *format*} )
+**EXPORT STRUCTURE** ( *exportedStructure* : Text {; *format* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ You want to export the current database structure in html format:
| | |
| --- | --- |
| Command number | 1311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/export-sylk.md b/docs/commands-legacy/export-sylk.md
index 02ea1e45b1ca69..baa655f7a6e963 100644
--- a/docs/commands-legacy/export-sylk.md
+++ b/docs/commands-legacy/export-sylk.md
@@ -5,7 +5,7 @@ slug: /commands/export-sylk
displayed_sidebar: docs
---
-**EXPORT SYLK** ( {*aTable* ;} *document* )
+**EXPORT SYLK** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to
| | |
| --- | --- |
| Command number | 85 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/export-text.md b/docs/commands-legacy/export-text.md
index ab4ccaacd89b26..a9db3f4bfdeb2e 100644
--- a/docs/commands-legacy/export-text.md
+++ b/docs/commands-legacy/export-text.md
@@ -5,7 +5,7 @@ slug: /commands/export-text
displayed_sidebar: docs
---
-**EXPORT TEXT** ( {*aTable* ;} *document* )
+**EXPORT TEXT** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ OK is set to 1 if the export is successfully completed; otherwise, it is set to
| | |
| --- | --- |
| Command number | 167 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/false.md b/docs/commands-legacy/false.md
index 7a780ea2cda885..3cc9f735feeefe 100644
--- a/docs/commands-legacy/false.md
+++ b/docs/commands-legacy/false.md
@@ -35,6 +35,6 @@ The following example sets the variable *vbOptions* to False:
| | |
| --- | --- |
| Command number | 215 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/field-name.md b/docs/commands-legacy/field-name.md
index 765fc2500fa7b7..b321f4eb1fdec6 100644
--- a/docs/commands-legacy/field-name.md
+++ b/docs/commands-legacy/field-name.md
@@ -5,7 +5,7 @@ slug: /commands/field-name
displayed_sidebar: docs
---
-**Field name** ( *fieldPtr* ) : Text
**Field name** ( *tableNum* ; *fieldNum* ) : Text
+**Field name** ( *fieldPtr* : Pointer, Integer ) : Text
**Field name** ( *tableNum* : Pointer, Integer ; *fieldNum* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ This example displays an alert. This method passes a pointer to a field:
| | |
| --- | --- |
| Command number | 257 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/field.md b/docs/commands-legacy/field.md
index 9d993d93538400..f2866cfc1f61a2 100644
--- a/docs/commands-legacy/field.md
+++ b/docs/commands-legacy/field.md
@@ -5,18 +5,14 @@ slug: /commands/field
displayed_sidebar: docs
---
-**Field** ( *tableNum* ; *fieldNum* ) -> fieldPtr
-**Field** ( *fieldPtr* ) -> fieldNum
+**Field** ( *tableNum* : Integer ; *fieldNum* : Integer ) -> Pointer
**Field** ( *fieldPtr* : Pointer ) -> Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| tableNum | Integer | → | Table number |
| fieldNum | Integer | → | Field number |
-| fieldPtr | Pointer | ← | Field pointer |
-| Field ( fieldPtr ) -> fieldNum |
-| Parameter | Type | Description |
-| fieldPtr | Pointer | → | Field pointer |
-| fieldNum | Integer | ← | Field number |
+| fieldPtr | Pointer | → | Field pointer |
+| Function result | Pointer, Integer | ← | Field pointer or Field number |
@@ -24,8 +20,8 @@ displayed_sidebar: docs
The **Field** command has two forms:
-* If you pass a table number in *tableNum* and a field number in *fieldNum*, **Field** returns a pointer to the field.
-* If you pass a field pointer in *fieldPtr*, **Field** returns the field number of the field.
+* If you pass a table number in *tableNum* and a field number in *fieldNum*, **Field** returns a pointer to the field.
+* If you pass a field pointer in *fieldPtr*, **Field** returns the field number of the field.
## Example 1
@@ -63,6 +59,6 @@ The following example sets the *FieldNum* variable to the field number of \[Tabl
| | |
| --- | --- |
| Command number | 253 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/filter-event.md b/docs/commands-legacy/filter-event.md
index 941bfcc50a939c..ff83c54e40ed5c 100644
--- a/docs/commands-legacy/filter-event.md
+++ b/docs/commands-legacy/filter-event.md
@@ -46,7 +46,7 @@ See example for the [ON EVENT CALL](on-event-call.md) command.
| | |
| --- | --- |
| Command number | 321 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/filter-keystroke.md b/docs/commands-legacy/filter-keystroke.md
index dc9deb930c03dc..313b0b3d245ec5 100644
--- a/docs/commands-legacy/filter-keystroke.md
+++ b/docs/commands-legacy/filter-keystroke.md
@@ -5,7 +5,7 @@ slug: /commands/filter-keystroke
displayed_sidebar: docs
---
-**FILTER KEYSTROKE** ( *filteredChar* )
+**FILTER KEYSTROKE** ( *filteredChar* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -246,6 +246,6 @@ The Get highlighted text method is listed here:
| | |
| --- | --- |
| Command number | 389 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/find-in-array.md b/docs/commands-legacy/find-in-array.md
index e12f07dd797d62..a4a8f2c136a779 100644
--- a/docs/commands-legacy/find-in-array.md
+++ b/docs/commands-legacy/find-in-array.md
@@ -5,7 +5,7 @@ slug: /commands/find-in-array
displayed_sidebar: docs
---
-**Find in array** ( *array* ; *value* {; *start*} ) : Integer
+**Find in array** ( *array* : Array ; *value* : Expression {; *start* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -116,6 +116,6 @@ You want to find an object reference:
| | |
| --- | --- |
| Command number | 230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/find-in-field.md b/docs/commands-legacy/find-in-field.md
index dca3f2aeee606f..7b5618d0d7ddd7 100644
--- a/docs/commands-legacy/find-in-field.md
+++ b/docs/commands-legacy/find-in-field.md
@@ -5,13 +5,12 @@ slug: /commands/find-in-field
displayed_sidebar: docs
---
-**Find in field** ( *targetField* ; *value* ) : Integer
+**Find in field** ( *targetField* : Field ; *value* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| targetField | Field | → | Field on which to execute the search |
-| value | Field, Variable | → | Value to search |
-| ← | Value found |
+| value | Field, Variable | ↔ | *in:* Value to search
*out:* Value found|
| Function result | Integer | ← | Number of the record found or -1 if no record was found |
@@ -68,6 +67,6 @@ Note the >= that lets you cover all cases. In fact, the function returns a recor
| | |
| --- | --- |
| Command number | 653 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/find-in-list.md b/docs/commands-legacy/find-in-list.md
index 80aca6b25f4740..3feb565333b35c 100644
--- a/docs/commands-legacy/find-in-list.md
+++ b/docs/commands-legacy/find-in-list.md
@@ -5,7 +5,7 @@ slug: /commands/find-in-list
displayed_sidebar: docs
---
-**Find in list** ( {* ;} *list* ; *value* ; *scope* {; *itemsArray* {; *}} ) : Integer
+**Find in list** ( {* ;} *list* : Integer, Text ; *value* : Text ; *scope* : Integer {; *itemsArray* : Integer array {; *}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| list | Integer, Text | → | List reference number (if * omitted) Name of list type object (if * passed) |
| value | Text | → | Value to be searched for |
| scope | Integer | → | 0=Main list, 1=Sublist |
-| itemsArray | Array integer | ← | - If 2nd * omitted: array of positions of items found - If 2nd * passed: array of reference numbers of items found |
+| itemsArray | Integer array | ← | - If 2nd * omitted: array of positions of items found - If 2nd * passed: array of reference numbers of items found |
| * | Operator | → | - If omitted: use position of items - If passed: use reference number of items |
| Function result | Integer | ← | - If 2nd * omitted: position of item found - If 2nd * passed: reference number of item found |
@@ -68,6 +68,6 @@ Given the following hierarchical list:
| | |
| --- | --- |
| Command number | 952 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/find-in-sorted-array.md b/docs/commands-legacy/find-in-sorted-array.md
index 0f8399aa4b2571..f379b208d20cd5 100644
--- a/docs/commands-legacy/find-in-sorted-array.md
+++ b/docs/commands-legacy/find-in-sorted-array.md
@@ -5,7 +5,7 @@ slug: /commands/find-in-sorted-array
displayed_sidebar: docs
---
-**Find in sorted array** ( *array* ; *value* ; > or < {; *posFirst* {; *posLast*}} ) : Boolean
+**Find in sorted array** ( *array* : Array ; *value* : Expression ; > or < {; *posFirst* : Integer {; *posLast* : Integer}} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -77,6 +77,6 @@ You want to find the number of occurrences of strings starting with "test" and c
| | |
| --- | --- |
| Command number | 1333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/find-window.md b/docs/commands-legacy/find-window.md
index 37064aeb66500e..fda45b54d92264 100644
--- a/docs/commands-legacy/find-window.md
+++ b/docs/commands-legacy/find-window.md
@@ -5,7 +5,7 @@ slug: /commands/find-window
displayed_sidebar: docs
---
-**Find window** ( *left* ; *top* {; *windowPart*} ) : Integer
+**Find window** ( *left* : Integer ; *top* : Integer {; *windowPart* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ The *windowPart* parameter returns 3 if the window is touched, and 0 otherwise.
| | |
| --- | --- |
| Command number | 449 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/first-record.md b/docs/commands-legacy/first-record.md
index e90983575603ff..0fc34bba493951 100644
--- a/docs/commands-legacy/first-record.md
+++ b/docs/commands-legacy/first-record.md
@@ -5,7 +5,7 @@ slug: /commands/first-record
displayed_sidebar: docs
---
-**FIRST RECORD** {( *aTable* )}
+**FIRST RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ The following example makes the first record of the \[Customers\] table the firs
| | |
| --- | --- |
| Command number | 50 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/flush-cache.md b/docs/commands-legacy/flush-cache.md
index c27bd65eb207fd..76181b0b712985 100644
--- a/docs/commands-legacy/flush-cache.md
+++ b/docs/commands-legacy/flush-cache.md
@@ -5,7 +5,7 @@ slug: /commands/flush-cache
displayed_sidebar: docs
---
-**FLUSH CACHE** {( size )}
**FLUSH CACHE** {( * )}
+**FLUSH CACHE** ({ size })
**FLUSH CACHE** ({ * })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ In normal cases, you should not call this command, as 4D saves data modification
| | |
| --- | --- |
| Command number | 297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/focus-object.md b/docs/commands-legacy/focus-object.md
index 6577435868e74a..206a513494e24a 100644
--- a/docs/commands-legacy/focus-object.md
+++ b/docs/commands-legacy/focus-object.md
@@ -50,6 +50,6 @@ The following example is an object method for a button. The object method change
| | |
| --- | --- |
| Command number | 278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/folder-list.md b/docs/commands-legacy/folder-list.md
index 82a2b487caeacf..69251c9adc247c 100644
--- a/docs/commands-legacy/folder-list.md
+++ b/docs/commands-legacy/folder-list.md
@@ -5,7 +5,7 @@ slug: /commands/folder-list
displayed_sidebar: docs
---
-**FOLDER LIST** ( *pathname* ; *directories* )
+**FOLDER LIST** ( *pathname* : Text ; *directories* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,7 +30,7 @@ If there are no folders at the specified location, the command returns an empty
| | |
| --- | --- |
| Command number | 473 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/font-file.md b/docs/commands-legacy/font-file.md
index ab6bcb02166a8d..7079a2d95c5828 100644
--- a/docs/commands-legacy/font-file.md
+++ b/docs/commands-legacy/font-file.md
@@ -5,7 +5,7 @@ slug: /commands/font-file
displayed_sidebar: docs
---
-**Font file** ( *fontFamily* {; *fontStyle*} ) : any
+**Font file** ( *fontFamily* : Text {; *fontStyle* : Integer} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ You want to make sure the font used in a text area is available on the user syst
| | |
| --- | --- |
| Command number | 1700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/font-list.md b/docs/commands-legacy/font-list.md
index 503ddfe915159f..8de5f992ca905e 100644
--- a/docs/commands-legacy/font-list.md
+++ b/docs/commands-legacy/font-list.md
@@ -5,7 +5,7 @@ slug: /commands/font-list
displayed_sidebar: docs
---
-**FONT LIST** ( *fonts* {; *listType* } )
**FONT LIST** ( *fonts* {; *} )
+**FONT LIST** ( *fonts* : Text array {; *listType* : Integer, Operator } )
**FONT LIST** ( *fonts* : Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -79,6 +79,6 @@ You want to get a list of recent fonts:
| | |
| --- | --- |
| Command number | 460 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/font-style-list.md b/docs/commands-legacy/font-style-list.md
index a052e973e14126..f759c6dda2fba4 100644
--- a/docs/commands-legacy/font-style-list.md
+++ b/docs/commands-legacy/font-style-list.md
@@ -5,7 +5,7 @@ slug: /commands/font-style-list
displayed_sidebar: docs
---
-**FONT STYLE LIST** ( *fontFamily* ; *fontStyleList* ; *fontNameList* )
+**FONT STYLE LIST** ( *fontFamily* : Text ; *fontStyleList* : Text array ; *fontNameList* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ You want to select styles of the "Verdana" font family (if available):
| | |
| --- | --- |
| Command number | 1362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/form-convert-to-dynamic.md b/docs/commands-legacy/form-convert-to-dynamic.md
index ae76c57da7447f..c134381941452e 100644
--- a/docs/commands-legacy/form-convert-to-dynamic.md
+++ b/docs/commands-legacy/form-convert-to-dynamic.md
@@ -5,7 +5,7 @@ slug: /commands/form-convert-to-dynamic
displayed_sidebar: docs
---
-**FORM Convert to dynamic** ( {*aTable* ;} *formName* ) : Object
+**FORM Convert to dynamic** ( {*aTable* : Table ;} *formName* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ If you execute the code:
| | |
| --- | --- |
| Command number | 1570 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-first-page.md b/docs/commands-legacy/form-first-page.md
index 9267d53b05bc2a..b8942c8607864e 100644
--- a/docs/commands-legacy/form-first-page.md
+++ b/docs/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ The following example is a one-line method called from a menu command. It displa
| | |
| --- | --- |
| Command number | 250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-color-scheme.md b/docs/commands-legacy/form-get-color-scheme.md
index 111fce1f9b5fac..07cb5c34d729d3 100644
--- a/docs/commands-legacy/form-get-color-scheme.md
+++ b/docs/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ You want to load a picture depending on the form current scheme:
| | |
| --- | --- |
| Command number | 1761 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-current-page.md b/docs/commands-legacy/form-get-current-page.md
index c15deaff2d20e4..e66e35108130e1 100644
--- a/docs/commands-legacy/form-get-current-page.md
+++ b/docs/commands-legacy/form-get-current-page.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-current-page
displayed_sidebar: docs
---
-**FORM Get current page** {( * )} : Integer
+**FORM Get current page** ( * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ In a form, when you select a menu item from the menu bar or when the form receiv
| | |
| --- | --- |
| Command number | 276 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-entry-order.md b/docs/commands-legacy/form-get-entry-order.md
index c05b941802043e..3fc7d63e96f4c1 100644
--- a/docs/commands-legacy/form-get-entry-order.md
+++ b/docs/commands-legacy/form-get-entry-order.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-entry-order
displayed_sidebar: docs
---
-**FORM GET ENTRY ORDER** ( *objectNames* {; *pageNumber* } )
**FORM GET ENTRY ORDER** ( *objectNames* {; *} )
+**FORM GET ENTRY ORDER** ( *objectNames* : Text array {; *pageNumber* : Integer, Operator } )
**FORM GET ENTRY ORDER** ( *objectNames* : Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ You want to exclude some objects from the current entry order:
| | |
| --- | --- |
| Command number | 1469 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-horizontal-resizing.md b/docs/commands-legacy/form-get-horizontal-resizing.md
index 0195df642e8f56..04d51da4b91a7a 100644
--- a/docs/commands-legacy/form-get-horizontal-resizing.md
+++ b/docs/commands-legacy/form-get-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-horizontal-resizing
displayed_sidebar: docs
---
-**FORM GET HORIZONTAL RESIZING** ( *resize* {; *minWidth* {; *maxWidth*}} )
+**FORM GET HORIZONTAL RESIZING** ( *resize* : Boolean {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1077 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-names.md b/docs/commands-legacy/form-get-names.md
index ee7e392d5f3665..84fb3cacc4d8c7 100644
--- a/docs/commands-legacy/form-get-names.md
+++ b/docs/commands-legacy/form-get-names.md
@@ -5,15 +5,14 @@ slug: /commands/form-get-names
displayed_sidebar: docs
---
-**FORM GET NAMES** ( {*aTable* ;} *arrNames* {; *filter* {; *marker*}}{; *} )
+**FORM GET NAMES** ( {*aTable* : Table ;} *arrNames* : Text array {; *filter* : Text {; *marker* : Real}}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table reference |
| arrNames | Text array | ← | Array of form names |
| filter | Text | → | Name filter |
-| marker | Real | → | Marker for minimum version to return |
-| ← | New value |
+| marker | Real | ↔ | *in:* Marker for minimum version to return
*out:* New value |
| * | Operator | → | If passed = command applies to host database when executed from a component (parameter ignored outside of this context) |
@@ -69,6 +68,6 @@ Examples of typical use:
| | |
| --- | --- |
| Command number | 1167 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-objects.md b/docs/commands-legacy/form-get-objects.md
index cbe0be653db7a6..1db6ccdf2ae776 100644
--- a/docs/commands-legacy/form-get-objects.md
+++ b/docs/commands-legacy/form-get-objects.md
@@ -5,13 +5,13 @@ slug: /commands/form-get-objects
displayed_sidebar: docs
---
-**FORM GET OBJECTS** ( *objectsArray* {; *variablesArray* {; *pagesArray*}} {; *formPageOption*} )
**FORM GET OBJECTS** ( *objectsArray* {; *variablesArray* {; *pagesArray*}} {; *} )
+**FORM GET OBJECTS** ( *objectsArray* : Text array {; *variablesArray* : Pointer array {; *pagesArray* : Integer array}} {; *formPageOption* : Integer, Operator} )
**FORM GET OBJECTS** ( *objectsArray* : Text array {; *variablesArray* : Pointer array {; *pagesArray* : Integer array}} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| objectsArray | Text array | ← | Name of form objects |
| variablesArray | Pointer array | ← | Pointers to variables or fields associated with objects |
-| pagesArray | Array integer | ← | Page number of each object |
+| pagesArray | Integer array | ← | Page number of each object |
| formPageOption | * | Integer, Operator | → | 1=Form current page, 2=Form all pages, 4=Form inherited
If * passed (obsolete) = current page with inherited objects |
@@ -129,6 +129,6 @@ You want to load a form and get a list of all the objects of list boxes that it
| | |
| --- | --- |
| Command number | 898 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-properties.md b/docs/commands-legacy/form-get-properties.md
index d29ffb1ad46ffb..3c43f0d4d783ac 100644
--- a/docs/commands-legacy/form-get-properties.md
+++ b/docs/commands-legacy/form-get-properties.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-properties
displayed_sidebar: docs
---
-**FORM GET PROPERTIES** ( {*aTable* ;} *formName* ; *width* ; *height* {; *numPages* {; *fixedWidth* {; *fixedHeight* {; *title*}}}} )
+**FORM GET PROPERTIES** ( {*aTable* : Table ;} *formName* : Text ; *width* : Integer ; *height* : Integer {; *numPages* : Integer {; *fixedWidth* : Boolean {; *fixedHeight* : Boolean {; *title* : Text}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ The *title* parameter returns the title of the form's window as it was defined i
| | |
| --- | --- |
| Command number | 674 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-get-vertical-resizing.md b/docs/commands-legacy/form-get-vertical-resizing.md
index eeaee0ab80415d..3af11e082294ae 100644
--- a/docs/commands-legacy/form-get-vertical-resizing.md
+++ b/docs/commands-legacy/form-get-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-vertical-resizing
displayed_sidebar: docs
---
-**FORM GET VERTICAL RESIZING** ( *resize* {; *minHeight* {; *maxHeight*}} )
+**FORM GET VERTICAL RESIZING** ( *resize* : Boolean {; *minHeight* : Integer {; *maxHeight* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1078 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-goto-page.md b/docs/commands-legacy/form-goto-page.md
index 1be8f6ba1ce520..cf266ab3e39614 100644
--- a/docs/commands-legacy/form-goto-page.md
+++ b/docs/commands-legacy/form-goto-page.md
@@ -5,7 +5,7 @@ slug: /commands/form-goto-page
displayed_sidebar: docs
---
-**FORM GOTO PAGE** ( *pageNumber* {; *} )
+**FORM GOTO PAGE** ( *pageNumber* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ The following example is an object method for a button. It displays a specific p
| | |
| --- | --- |
| Command number | 247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-last-page.md b/docs/commands-legacy/form-last-page.md
index b2ec7347622fc6..b8a5f5d6091574 100644
--- a/docs/commands-legacy/form-last-page.md
+++ b/docs/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ The following example is a one-line method called from a menu command. It displa
| | |
| --- | --- |
| Command number | 251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-next-page.md b/docs/commands-legacy/form-next-page.md
index c69b8fb63e3743..8ff18cef0a441c 100644
--- a/docs/commands-legacy/form-next-page.md
+++ b/docs/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ The following example is a one-line method called from a menu command. It displa
| | |
| --- | --- |
| Command number | 248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-previous-page.md b/docs/commands-legacy/form-previous-page.md
index d2d1124288b7e3..cb7fb7edf8ffbd 100644
--- a/docs/commands-legacy/form-previous-page.md
+++ b/docs/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ The following example is a one-line method called from a menu command. It displa
| | |
| --- | --- |
| Command number | 249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-screenshot.md b/docs/commands-legacy/form-screenshot.md
index 696baa7da5531a..dc2d26eb194b7f 100644
--- a/docs/commands-legacy/form-screenshot.md
+++ b/docs/commands-legacy/form-screenshot.md
@@ -5,7 +5,7 @@ slug: /commands/form-screenshot
displayed_sidebar: docs
---
-**FORM SCREENSHOT** ( {{*aTable* ;} *formName* ;} *formPict* {; *pageNum*} )
+**FORM SCREENSHOT** ( {{*aTable* : Table ;} *formName* : Text ;} *formPict* : Picture {; *pageNum* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ By default, the command returns a screenshot of page 1 of the form. If you only
| | |
| --- | --- |
| Command number | 940 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-entry-order.md b/docs/commands-legacy/form-set-entry-order.md
index 5cd3c1fb4748c2..bb5c41bfc3179e 100644
--- a/docs/commands-legacy/form-set-entry-order.md
+++ b/docs/commands-legacy/form-set-entry-order.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-entry-order
displayed_sidebar: docs
---
-**FORM SET ENTRY ORDER** ( *objectNames* {; *pageNumber*} )
+**FORM SET ENTRY ORDER** ( *objectNames* : Text array {; *pageNumber* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ You want to set the entry order of objects in the form based upon their names:
| | |
| --- | --- |
| Command number | 1468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-horizontal-resizing.md b/docs/commands-legacy/form-set-horizontal-resizing.md
index 59b438a953165f..c4986c708b68b4 100644
--- a/docs/commands-legacy/form-set-horizontal-resizing.md
+++ b/docs/commands-legacy/form-set-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-horizontal-resizing
displayed_sidebar: docs
---
-**FORM SET HORIZONTAL RESIZING** ( *resize* {; *minWidth* {; *maxWidth*}} )
+**FORM SET HORIZONTAL RESIZING** ( *resize* : Boolean {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command.
| | |
| --- | --- |
| Command number | 892 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-input.md b/docs/commands-legacy/form-set-input.md
index 5daed4281f4eb4..7037852e9efe97 100644
--- a/docs/commands-legacy/form-set-input.md
+++ b/docs/commands-legacy/form-set-input.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-input
displayed_sidebar: docs
---
-**FORM SET INPUT** ( {*aTable* ;} *form* {; *userForm* {; *}} )
+**FORM SET INPUT** ( {*aTable* : Table ;} *form* : Text, Object {; *userForm* : Text {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -112,6 +112,6 @@ which displays:
| | |
| --- | --- |
| Command number | 55 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-output.md b/docs/commands-legacy/form-set-output.md
index f1c02698fa7d77..c5d703a4167e2f 100644
--- a/docs/commands-legacy/form-set-output.md
+++ b/docs/commands-legacy/form-set-output.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-output
displayed_sidebar: docs
---
-**FORM SET OUTPUT** ( {*aTable* ;} *form* {; *userForm*} )
+**FORM SET OUTPUT** ( {*aTable* : Table ;} *form* : Text, Object {; *userForm* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,6 +75,6 @@ The following example uses the path to a .json form to print the records in an e
| | |
| --- | --- |
| Command number | 54 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-size.md b/docs/commands-legacy/form-set-size.md
index 447a26b6c7f5e8..32a2c65c91b7cc 100644
--- a/docs/commands-legacy/form-set-size.md
+++ b/docs/commands-legacy/form-set-size.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-size
displayed_sidebar: docs
---
-**FORM SET SIZE** ( {*object* ;} *horizontal* ; *vertical* {; *} )
+**FORM SET SIZE** ( {*object* : Text ;} *horizontal* : Integer ; *vertical* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -128,6 +128,6 @@ The object method associated with this button is as follows:
| | |
| --- | --- |
| Command number | 891 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-set-vertical-resizing.md b/docs/commands-legacy/form-set-vertical-resizing.md
index 133beb15ef31e7..1956eae309a6d3 100644
--- a/docs/commands-legacy/form-set-vertical-resizing.md
+++ b/docs/commands-legacy/form-set-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-set-vertical-resizing
displayed_sidebar: docs
---
-**FORM SET VERTICAL RESIZING** ( *resize* {; *minHeight* {; *maxHeight*}} )
+**FORM SET VERTICAL RESIZING** ( *resize* : Boolean {; *minHeight* : Integer {; *maxHeight* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ Refer to the example of the [FORM SET SIZE](form-set-size.md) command.
| | |
| --- | --- |
| Command number | 893 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/form-unload.md b/docs/commands-legacy/form-unload.md
index 8ae2cfb7b459a6..a2ec89dc9b157a 100644
--- a/docs/commands-legacy/form-unload.md
+++ b/docs/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Calling this command is necessary when you use the [FORM LOAD](../commands/form-
| | |
| --- | --- |
| Command number | 1299 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/frontmost-process.md b/docs/commands-legacy/frontmost-process.md
index 6edaa0ce209b0f..38b03c8fd6bb4f 100644
--- a/docs/commands-legacy/frontmost-process.md
+++ b/docs/commands-legacy/frontmost-process.md
@@ -5,7 +5,7 @@ slug: /commands/frontmost-process
displayed_sidebar: docs
---
-**Frontmost process** {( * )} : Integer
+**Frontmost process** ( * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ See the example for [BRING TO FRONT](bring-to-front.md).
| | |
| --- | --- |
| Command number | 327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/frontmost-window.md b/docs/commands-legacy/frontmost-window.md
index fba025405f1e27..6854074ec8240b 100644
--- a/docs/commands-legacy/frontmost-window.md
+++ b/docs/commands-legacy/frontmost-window.md
@@ -5,7 +5,7 @@ slug: /commands/frontmost-window
displayed_sidebar: docs
---
-**Frontmost window** {( * )} : Integer
+**Frontmost window** ( * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 447 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/generate-certificate-request.md b/docs/commands-legacy/generate-certificate-request.md
index 818525e702395a..4a414de856dab6 100644
--- a/docs/commands-legacy/generate-certificate-request.md
+++ b/docs/commands-legacy/generate-certificate-request.md
@@ -5,13 +5,13 @@ slug: /commands/generate-certificate-request
displayed_sidebar: docs
---
-**GENERATE CERTIFICATE REQUEST** ( *privKey* ; *certifRequest* ; *codeArray* ; *nameArray* )
+**GENERATE CERTIFICATE REQUEST** ( *privKey* : Blob ; *certifRequest* : Blob ; *codeArray* : Integer array ; *nameArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| privKey | Blob | → | BLOB containing the private key |
| certifRequest | Blob | ← | BLOB receiving the certificate request |
-| codeArray | Array integer | → | Information code list |
+| codeArray | Integer array | → | Information code list |
| nameArray | Text array | → | Name list |
@@ -92,6 +92,6 @@ Here is the **Generate** button method:
| | |
| --- | --- |
| Command number | 691 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/generate-digest.md b/docs/commands-legacy/generate-digest.md
index 72b343e48f9394..f2249f27ea714a 100644
--- a/docs/commands-legacy/generate-digest.md
+++ b/docs/commands-legacy/generate-digest.md
@@ -5,7 +5,7 @@ slug: /commands/generate-digest
displayed_sidebar: docs
---
-**Generate digest** ( *param* ; *algorithm* {; *} ) : Text
+**Generate digest** ( *param* : Blob, Text ; *algorithm* : Integer {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,6 +90,6 @@ These examples illustrate how to retrieve the digest key of a text:
| | |
| --- | --- |
| Command number | 1147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/generate-encryption-keypair.md b/docs/commands-legacy/generate-encryption-keypair.md
index 72eb417e2b9b01..2fa2d0eea2c52c 100644
--- a/docs/commands-legacy/generate-encryption-keypair.md
+++ b/docs/commands-legacy/generate-encryption-keypair.md
@@ -5,7 +5,7 @@ slug: /commands/generate-encryption-keypair
displayed_sidebar: docs
---
-**GENERATE ENCRYPTION KEYPAIR** ( *privKey* ; *pubKey* {; *length*} )
+**GENERATE ENCRYPTION KEYPAIR** ( *privKey* : Blob ; *pubKey* : Blob {; *length* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ See example for the [ENCRYPT BLOB](encrypt-blob.md) command.
| | |
| --- | --- |
| Command number | 688 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/generate-password-hash.md b/docs/commands-legacy/generate-password-hash.md
index ab07a5c5fffdb7..b97eef7f715328 100644
--- a/docs/commands-legacy/generate-password-hash.md
+++ b/docs/commands-legacy/generate-password-hash.md
@@ -5,7 +5,7 @@ slug: /commands/generate-password-hash
displayed_sidebar: docs
---
-**Generate password hash** ( *password* {; *options*} ) : Text
+**Generate password hash** ( *password* : Text {; *options* : Object} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ This example generates a password hash using bcrypt with a cost factor 4.
| | |
| --- | --- |
| Command number | 1533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-4d-file.md b/docs/commands-legacy/get-4d-file.md
index d21243fcf7f4ff..828179fed5e6c4 100644
--- a/docs/commands-legacy/get-4d-file.md
+++ b/docs/commands-legacy/get-4d-file.md
@@ -5,7 +5,7 @@ slug: /commands/get-4d-file
displayed_sidebar: docs
---
-**Get 4D file** ( *file* {; *} ) : Text
+**Get 4D file** ( *file* : Integer {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,6 +75,6 @@ You want to get the path of the last backup file:
| | |
| --- | --- |
| Command number | 1418 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-4d-folder.md b/docs/commands-legacy/get-4d-folder.md
index ac3a6fad32e6d0..14a8bfd6cb6488 100644
--- a/docs/commands-legacy/get-4d-folder.md
+++ b/docs/commands-legacy/get-4d-folder.md
@@ -5,7 +5,7 @@ slug: /commands/get-4d-folder
displayed_sidebar: docs
---
-**Get 4D folder** {( *folder* {; *options*} {; *})} : Text
+**Get 4D folder** ( *folder* : Integer {; *options* : Object} {; *}) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -213,7 +213,7 @@ If the *folder* parameter is invalid or if the pathname returned is empty, the O
| | |
| --- | --- |
| Command number | 485 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-adjusted-blobs-cache-priority.md b/docs/commands-legacy/get-adjusted-blobs-cache-priority.md
index 49ebe7f220bb6b..14f34e0361144c 100644
--- a/docs/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/docs/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/get-adjusted-blobs-cache-priority
displayed_sidebar: docs
---
-**Get adjusted blobs cache priority** ( *aTable* ) : Integer
+**Get adjusted blobs cache priority** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1428 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-adjusted-index-cache-priority.md b/docs/commands-legacy/get-adjusted-index-cache-priority.md
index 9702cee066d0c6..72aae0e0aeabf4 100644
--- a/docs/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/docs/commands-legacy/get-adjusted-index-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/get-adjusted-index-cache-priority
displayed_sidebar: docs
---
-**Get adjusted index cache priority** ( *aField* ) : Integer
+**Get adjusted index cache priority** ( *aField* : Field ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1427 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-adjusted-table-cache-priority.md b/docs/commands-legacy/get-adjusted-table-cache-priority.md
index 9fcf1191886357..b2292dd8430c2c 100644
--- a/docs/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/docs/commands-legacy/get-adjusted-table-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/get-adjusted-table-cache-priority
displayed_sidebar: docs
---
-**Get adjusted table cache priority** ( *aTable* ) : Integer
+**Get adjusted table cache priority** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ Scalar data field types include fields of date/hour, numeric, or string type.
| | |
| --- | --- |
| Command number | 1426 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-allowed-methods.md b/docs/commands-legacy/get-allowed-methods.md
index 08cb135ace5b3e..03923c6ab2f842 100644
--- a/docs/commands-legacy/get-allowed-methods.md
+++ b/docs/commands-legacy/get-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/get-allowed-methods
displayed_sidebar: docs
---
-**GET ALLOWED METHODS** ( *methodsArray* )
+**GET ALLOWED METHODS** ( *methodsArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ This example authorizes a set of specific methods to create a report:
| | |
| --- | --- |
| Command number | 908 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-application-color-scheme.md b/docs/commands-legacy/get-application-color-scheme.md
index a8d8d3e35ffab7..ac9f12e26e33fd 100644
--- a/docs/commands-legacy/get-application-color-scheme.md
+++ b/docs/commands-legacy/get-application-color-scheme.md
@@ -5,7 +5,7 @@ slug: /commands/get-application-color-scheme
displayed_sidebar: docs
---
-**Get Application color scheme** {( * )} : Text
+**Get Application color scheme** ( * ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Please refer to the [SET APPLICATION COLOR SCHEME](set-application-color-scheme.
| | |
| --- | --- |
| Command number | 1763 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-assert-enabled.md b/docs/commands-legacy/get-assert-enabled.md
index 76ab3f15256918..dc28a7ee0bf1a6 100644
--- a/docs/commands-legacy/get-assert-enabled.md
+++ b/docs/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ By default, assertions are enabled but they may have been disabled using the [SE
| | |
| --- | --- |
| Command number | 1130 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-automatic-relations.md b/docs/commands-legacy/get-automatic-relations.md
index 1f53070d1335a7..b13cea70a86b23 100644
--- a/docs/commands-legacy/get-automatic-relations.md
+++ b/docs/commands-legacy/get-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/get-automatic-relations
displayed_sidebar: docs
---
-**GET AUTOMATIC RELATIONS** ( *one* ; *many* )
+**GET AUTOMATIC RELATIONS** ( *one* : Boolean ; *many* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ Refer to the example of the [GET FIELD RELATION](get-field-relation.md) command.
| | |
| --- | --- |
| Command number | 899 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-cache-size.md b/docs/commands-legacy/get-cache-size.md
index 5dae88af54654a..2ff5b7199d9bd2 100644
--- a/docs/commands-legacy/get-cache-size.md
+++ b/docs/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ See example for [SET CACHE SIZE](set-cache-size.md) command.
| | |
| --- | --- |
| Command number | 1432 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-current-printer.md b/docs/commands-legacy/get-current-printer.md
index 6c20a62cdfc33a..d7ce722e0bdfb4 100644
--- a/docs/commands-legacy/get-current-printer.md
+++ b/docs/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ If no printer is installed, an error is generated.
| | |
| --- | --- |
| Command number | 788 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-database-localization.md b/docs/commands-legacy/get-database-localization.md
index 11e07caa1bf47c..0b036c19cbdfcb 100644
--- a/docs/commands-legacy/get-database-localization.md
+++ b/docs/commands-legacy/get-database-localization.md
@@ -5,7 +5,7 @@ slug: /commands/get-database-localization
displayed_sidebar: docs
---
-**Get database localization** {( {*languageType*}{;}{*} )} : Text
+**Get database localization** ( {*languageType* : Integer}{;}{*} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ The current language of the database determines the .lproj folder where the prog
| | |
| --- | --- |
| Command number | 1009 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-database-parameter.md b/docs/commands-legacy/get-database-parameter.md
index 16b58bb86a66db..5f20c005b52ef3 100644
--- a/docs/commands-legacy/get-database-parameter.md
+++ b/docs/commands-legacy/get-database-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/get-database-parameter
displayed_sidebar: docs
---
-**Get database parameter** ( {*aTable* ;} *selector* {; *stringValue*} ) : Real
+**Get database parameter** ( {*aTable* : Table ;} *selector* : Integer {; *stringValue* : Text} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -1099,6 +1099,6 @@ In the [On Startup database method](on-startup-database-method.md), you write:
| | |
| --- | --- |
| Command number | 643 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-default-user.md b/docs/commands-legacy/get-default-user.md
index 70186d6b27f344..8162e9b9ee1651 100644
--- a/docs/commands-legacy/get-default-user.md
+++ b/docs/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ If no default user has been set, the command returns 0.
| | |
| --- | --- |
| Command number | 826 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-document-icon.md b/docs/commands-legacy/get-document-icon.md
index d3948555ae9eef..74e927fe5dd1bb 100644
--- a/docs/commands-legacy/get-document-icon.md
+++ b/docs/commands-legacy/get-document-icon.md
@@ -5,7 +5,7 @@ slug: /commands/get-document-icon
displayed_sidebar: docs
---
-**GET DOCUMENT ICON** ( *docPath* ; *icon* {; *size*} )
+**GET DOCUMENT ICON** ( *docPath* : Text ; *icon* : Picture, Picture {; *size* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ The optional *size* parameter sets the dimensions in pixels of the returned icon
| | |
| --- | --- |
| Command number | 700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | Document, error |
diff --git a/docs/commands-legacy/get-document-position.md b/docs/commands-legacy/get-document-position.md
index fbda1d71a62e32..077dde0b2c619b 100644
--- a/docs/commands-legacy/get-document-position.md
+++ b/docs/commands-legacy/get-document-position.md
@@ -5,7 +5,7 @@ slug: /commands/get-document-position
displayed_sidebar: docs
---
-**Get document position** ( *docRef* ) : Real
+**Get document position** ( *docRef* : Time ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 481 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-document-properties.md b/docs/commands-legacy/get-document-properties.md
index 8af0aaf6d59b1a..85e61678d61055 100644
--- a/docs/commands-legacy/get-document-properties.md
+++ b/docs/commands-legacy/get-document-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-document-properties
displayed_sidebar: docs
---
-**GET DOCUMENT PROPERTIES** ( *document* ; *locked* ; *invisible* ; created on ; created at ; modified on ; modified at )
+**GET DOCUMENT PROPERTIES** ( *document* : Text ; *locked* : Boolean ; *invisible* : Boolean ; created on ; created at ; modified on ; modified at )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -210,7 +210,7 @@ Once this is implemented in the database, we have all we need to write the proje
| | |
| --- | --- |
| Command number | 477 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-document-size.md b/docs/commands-legacy/get-document-size.md
index f1b10927720494..3e68e1e472fc0a 100644
--- a/docs/commands-legacy/get-document-size.md
+++ b/docs/commands-legacy/get-document-size.md
@@ -5,7 +5,7 @@ slug: /commands/get-document-size
displayed_sidebar: docs
---
-**Get document size** ( *document* {; *} ) : Real
+**Get document size** ( *document* : Text, Time {; *} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ On Macintosh, if you do not pass the optional *\** parameter, the size of the da
| | |
| --- | --- |
| Command number | 479 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-edited-text.md b/docs/commands-legacy/get-edited-text.md
index 402640c5c6ddc1..e456df1d2b702d 100644
--- a/docs/commands-legacy/get-edited-text.md
+++ b/docs/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ Here is an example of how to process on the fly characters entered in a text fie
| | |
| --- | --- |
| Command number | 655 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-external-data-path.md b/docs/commands-legacy/get-external-data-path.md
index f6b41244e51b7f..d753e922253f1a 100644
--- a/docs/commands-legacy/get-external-data-path.md
+++ b/docs/commands-legacy/get-external-data-path.md
@@ -5,7 +5,7 @@ slug: /commands/get-external-data-path
displayed_sidebar: docs
---
-**Get external data path** ( *aField* ) : Text
+**Get external data path** ( *aField* : Text, Blob, Picture ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ More particularly, this command lets you recopy the external file.
| | |
| --- | --- |
| Command number | 1133 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-field-entry-properties.md b/docs/commands-legacy/get-field-entry-properties.md
index ef8eb1f8a339d2..09da068bc91861 100644
--- a/docs/commands-legacy/get-field-entry-properties.md
+++ b/docs/commands-legacy/get-field-entry-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-field-entry-properties
displayed_sidebar: docs
---
-**GET FIELD ENTRY PROPERTIES** ( *fieldPtr* ; *list* ; *mandatory* ; *nonEnterable* ; *nonModifiable* )
**GET FIELD ENTRY PROPERTIES** ( *tableNum* ; *fieldNum* ; *list* ; *mandatory* ; *nonEnterable* ; *nonModifiable* )
+**GET FIELD ENTRY PROPERTIES** ( *fieldPtr* : Pointer, Integer ; *list* : Text ; *mandatory* : Boolean ; *nonEnterable* : Boolean ; *nonModifiable* : Boolean )
**GET FIELD ENTRY PROPERTIES** ( *tableNum* : Pointer, Integer ; *fieldNum* : Integer ; *list* : Text ; *mandatory* : Boolean ; *nonEnterable* : Boolean ; *nonModifiable* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ If there is no choice list associated to the field or if the field type is not s
| | |
| --- | --- |
| Command number | 685 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-field-properties.md b/docs/commands-legacy/get-field-properties.md
index 556fab690867ab..0536d8ffed6403 100644
--- a/docs/commands-legacy/get-field-properties.md
+++ b/docs/commands-legacy/get-field-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-field-properties
displayed_sidebar: docs
---
-**GET FIELD PROPERTIES** ( *fieldPtr* ; *fieldType* {; *fieldLength* {; *indexed* {; *unique* {; *invisible*}}}} )
**GET FIELD PROPERTIES** ( *tableNum* ; *fieldNum* ; *fieldType* {; *fieldLength* {; *indexed* {; *unique* {; *invisible*}}}} )
+**GET FIELD PROPERTIES** ( *fieldPtr* : Pointer, Integer ; *fieldType* : Integer {; *fieldLength* : Integer {; *indexed* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
**GET FIELD PROPERTIES** ( *tableNum* : Pointer, Integer ; *fieldNum* : Integer ; *fieldType* : Integer {; *fieldLength* : Integer {; *indexed* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -80,6 +80,6 @@ This example sets the variables *vType*, *vLength*, *vIndex*, *vUnique* and *vIn
| | |
| --- | --- |
| Command number | 258 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-field-relation.md b/docs/commands-legacy/get-field-relation.md
index 9f102f7fbcd2c8..adf3c76dfc9d76 100644
--- a/docs/commands-legacy/get-field-relation.md
+++ b/docs/commands-legacy/get-field-relation.md
@@ -5,7 +5,7 @@ slug: /commands/get-field-relation
displayed_sidebar: docs
---
-**GET FIELD RELATION** ( *manyField* ; *one* ; *many* {; *} )
+**GET FIELD RELATION** ( *manyField* : Field ; *one* : Integer ; *many* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ The following code illustrates the various possibilities offered by the **GET FI
| | |
| --- | --- |
| Command number | 920 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-field-titles.md b/docs/commands-legacy/get-field-titles.md
index 62e9c17d562cc7..ba641c9ccd6f52 100644
--- a/docs/commands-legacy/get-field-titles.md
+++ b/docs/commands-legacy/get-field-titles.md
@@ -5,13 +5,13 @@ slug: /commands/get-field-titles
displayed_sidebar: docs
---
-**GET FIELD TITLES** ( *aTable* ; *fieldTitles* ; *fieldNums* )
+**GET FIELD TITLES** ( *aTable* : Table ; *fieldTitles* : Text array ; *fieldNums* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table for which you want to find out the field names |
| fieldTitles | Text array | ← | Current field names |
-| fieldNums | Array integer | ← | Field numbers |
+| fieldNums | Integer array | ← | Field numbers |
@@ -35,6 +35,6 @@ In both cases, the command does not return invisible fields.
| | |
| --- | --- |
| Command number | 804 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-file-from-pasteboard.md b/docs/commands-legacy/get-file-from-pasteboard.md
index 7d10a2b31a9555..6cec06dc1e095c 100644
--- a/docs/commands-legacy/get-file-from-pasteboard.md
+++ b/docs/commands-legacy/get-file-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-file-from-pasteboard
displayed_sidebar: docs
---
-**Get file from pasteboard** ( *xIndex* ) : Text
+**Get file from pasteboard** ( *xIndex* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ The following example can be used to retrieve in an array all the pathnames of t
| | |
| --- | --- |
| Command number | 976 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-group-access.md b/docs/commands-legacy/get-group-access.md
index b6b1397647bc01..3f22aa9b36a6a2 100644
--- a/docs/commands-legacy/get-group-access.md
+++ b/docs/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ You want to check if the current user belongs to the "plugins" group:
| | |
| --- | --- |
| Command number | 1738 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-group-list.md b/docs/commands-legacy/get-group-list.md
index 71ca74bb5c7af0..d9a7d7d3d1ef39 100644
--- a/docs/commands-legacy/get-group-list.md
+++ b/docs/commands-legacy/get-group-list.md
@@ -5,12 +5,12 @@ slug: /commands/get-group-list
displayed_sidebar: docs
---
-**GET GROUP LIST** ( *groupNames* ; *groupNumbers* )
+**GET GROUP LIST** ( *groupNames* : Text array ; *groupNumbers* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| groupNames | Text array | ← | Names of the groups as they appear in the Password editor window |
-| groupNumbers | Array integer | ← | Corresponding unique group ID numbers |
+| groupNumbers | Integer array | ← | Corresponding unique group ID numbers |
@@ -38,7 +38,7 @@ If you do not have the proper access privileges for calling GET GROUP LIST or if
| | |
| --- | --- |
| Command number | 610 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-group-properties.md b/docs/commands-legacy/get-group-properties.md
index c83f96fefe7ec6..2d469adfff4c04 100644
--- a/docs/commands-legacy/get-group-properties.md
+++ b/docs/commands-legacy/get-group-properties.md
@@ -5,14 +5,14 @@ slug: /commands/get-group-properties
displayed_sidebar: docs
---
-**GET GROUP PROPERTIES** ( *groupID* ; *name* ; *owner* {; *members*} )
+**GET GROUP PROPERTIES** ( *groupID* : Integer ; *name* : Text ; *owner* : Integer {; *members* : Integer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| groupID | Integer | → | Unique group ID number |
| name | Text | ← | Name of the group |
| owner | Integer | ← | User ID number of group owner (Binary databases only) |
-| members | Array integer | ← | Group members |
+| members | Integer array | ← | Group members |
@@ -45,7 +45,7 @@ If you do not have the proper access privileges for calling GET GROUP PROPERTIES
| | |
| --- | --- |
| Command number | 613 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-highlight.md b/docs/commands-legacy/get-highlight.md
index 26190e3d97f75b..7c78a9f35f8e16 100644
--- a/docs/commands-legacy/get-highlight.md
+++ b/docs/commands-legacy/get-highlight.md
@@ -5,7 +5,7 @@ slug: /commands/get-highlight
displayed_sidebar: docs
---
-**GET HIGHLIGHT** ( {* ;} *object* ; *startSel* ; *endSel* )
+**GET HIGHLIGHT** ( {* ;} *object* : Field, Variable, any ; *startSel* : Integer ; *endSel* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ Modification of highlighted text style:
| | |
| --- | --- |
| Command number | 209 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-highlighted-records.md b/docs/commands-legacy/get-highlighted-records.md
index a386063617843a..23f168e8e7f545 100644
--- a/docs/commands-legacy/get-highlighted-records.md
+++ b/docs/commands-legacy/get-highlighted-records.md
@@ -5,7 +5,7 @@ slug: /commands/get-highlighted-records
displayed_sidebar: docs
---
-**GET HIGHLIGHTED RECORDS** ( {*aTable* ;} *setName* )
+**GET HIGHLIGHTED RECORDS** ( {*aTable* : Table ;} *setName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ If the command was executed properly, the system variable OK is set to 1\. Other
| | |
| --- | --- |
| Command number | 902 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-indexed-string.md b/docs/commands-legacy/get-indexed-string.md
index 743889d8957508..71f868eb8da824 100644
--- a/docs/commands-legacy/get-indexed-string.md
+++ b/docs/commands-legacy/get-indexed-string.md
@@ -5,7 +5,7 @@ slug: /commands/get-indexed-string
displayed_sidebar: docs
---
-**Get indexed string** ( *resID* ; *strID* {; *resFile*} ) : Text
+**Get indexed string** ( *resID* : Integer ; *strID* : Integer {; *resFile* : Time} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero).
| | |
| --- | --- |
| Command number | 510 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-list-item-font.md b/docs/commands-legacy/get-list-item-font.md
index 3881e5109eec27..14e79ee03cc65e 100644
--- a/docs/commands-legacy/get-list-item-font.md
+++ b/docs/commands-legacy/get-list-item-font.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item-font
displayed_sidebar: docs
---
-**Get list item font** ( {* ;} *list* ; *itemRef* ) : Text
**Get list item font** ( * ; *list* ; * ) : Text
+**Get list item font** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer, Operator ) : Text
**Get list item font** ( * ; *list* : Integer, Text ; * ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ Lastly, you can pass \* in *itemRef*: in this case, the command will get the fon
| | |
| --- | --- |
| Command number | 954 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-item-icon.md b/docs/commands-legacy/get-list-item-icon.md
index edca23ea377c97..7cf88fe795b553 100644
--- a/docs/commands-legacy/get-list-item-icon.md
+++ b/docs/commands-legacy/get-list-item-icon.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item-icon
displayed_sidebar: docs
---
-**GET LIST ITEM ICON** ( {* ;} *list* ; *itemRef* ; *icon* )
**GET LIST ITEM ICON** ( * ; *list* ; * ; *icon*
+**GET LIST ITEM ICON** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ; *icon* : Picture )
**GET LIST ITEM ICON** ( * ; *list* : Integer, Text ; * ; *icon* : Picture
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ If no icon is associated with the item, the icon variable is returned empty.
| | |
| --- | --- |
| Command number | 951 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-item-parameter-arrays.md b/docs/commands-legacy/get-list-item-parameter-arrays.md
index 046591b5e7cc50..0a77df7f897181 100644
--- a/docs/commands-legacy/get-list-item-parameter-arrays.md
+++ b/docs/commands-legacy/get-list-item-parameter-arrays.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item-parameter-arrays
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* ; *itemRef* ; *arrSelection* {; *arrValues*} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *list* ; * ; *arrSelection* {; *arrValues*} )
+**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer, Operator ; *arrSelection* : Text array {; *arrValues* : Text array} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *list* : Integer, Text ; * ; *arrSelection* : Text array {; *arrValues* : Text array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -80,6 +80,6 @@ If you want to get the parameter values as well, you write:
| | |
| --- | --- |
| Command number | 1195 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-item-parameter.md b/docs/commands-legacy/get-list-item-parameter.md
index 9d60b3a3b7c032..f55ecda3792763 100644
--- a/docs/commands-legacy/get-list-item-parameter.md
+++ b/docs/commands-legacy/get-list-item-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item-parameter
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER** ( {* ;} *list* ; *itemRef* ; *selector* ; *value* )
**GET LIST ITEM PARAMETER** ( * ; *list* ; * ; *selector* ; *value* )
+**GET LIST ITEM PARAMETER** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer, Operator ; *selector* : Text ; *value* : Text, Boolean, Real )
**GET LIST ITEM PARAMETER** ( * ; *list* : Integer, Text ; * ; *selector* : Text ; *value* : Text, Boolean, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ In *selector*, you can pass the Additional text or Associated standard action co
| | |
| --- | --- |
| Command number | 985 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-item-properties.md b/docs/commands-legacy/get-list-item-properties.md
index 13956343c7b69f..e4e579f27cbd93 100644
--- a/docs/commands-legacy/get-list-item-properties.md
+++ b/docs/commands-legacy/get-list-item-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item-properties
displayed_sidebar: docs
---
-**GET LIST ITEM PROPERTIES** ( {* ;} *list* ; *itemRef* ; *enterable* {; *styles* {; *icon* {; *color*}}} )
**GET LIST ITEM PROPERTIES** ( * ; *list* ; * ; *enterable* {; *styles* {; *icon* {; *color*}}} )
+**GET LIST ITEM PROPERTIES** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ; *enterable* : Boolean {; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}}} )
**GET LIST ITEM PROPERTIES** ( * ; *list* : Integer, Text ; * ; *enterable* : Boolean {; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ For details about these properties, see the description of the command [SET LIST
| | |
| --- | --- |
| Command number | 631 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-item.md b/docs/commands-legacy/get-list-item.md
index d5aa09394a5d2b..3aeb28d844c543 100644
--- a/docs/commands-legacy/get-list-item.md
+++ b/docs/commands-legacy/get-list-item.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-item
displayed_sidebar: docs
---
-**GET LIST ITEM** ( {* ;} *list* ; *itemPos* ; *itemRef* ; *itemText* {; *sublist* ; *expanded*} )
**GET LIST ITEM** ( {* ;} *list* ; * ; *itemRef* ; *itemText* {; *sublist* ; *expanded*} )
+**GET LIST ITEM** ( {* ;} *list* : Integer, Text ; *itemPos* : Operator, Integer ; *itemRef* : Integer ; *itemText* : Text {; *sublist* : Integer ; *expanded* : Boolean} )
**GET LIST ITEM** ( {* ;} *list* : Integer, Text ; * ; *itemRef* : Integer ; *itemText* : Text {; *sublist* : Integer ; *expanded* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -71,6 +71,6 @@ Refer to the example of the [APPEND TO LIST](append-to-list.md) command.
| | |
| --- | --- |
| Command number | 378 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-list-properties.md b/docs/commands-legacy/get-list-properties.md
index 18484cbdc8ee14..7e40159aa0962c 100644
--- a/docs/commands-legacy/get-list-properties.md
+++ b/docs/commands-legacy/get-list-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-list-properties
displayed_sidebar: docs
---
-**GET LIST PROPERTIES** ( *list* ; *appearance* {; *icon* {; *lineHeight* {; *doubleClick* {; *multiSelections* {; *editable*}}}}} )
+**GET LIST PROPERTIES** ( *list* : Integer ; *appearance* : Integer {; *icon* : Integer {; *lineHeight* : Integer {; *doubleClick* : Integer {; *multiSelections* : Integer {; *editable* : Integer}}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ For a complete description of the appearance, node icons, minimal line height an
| | |
| --- | --- |
| Command number | 632 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-macro-parameter.md b/docs/commands-legacy/get-macro-parameter.md
index aead2840c39f4e..1612d46df598a1 100644
--- a/docs/commands-legacy/get-macro-parameter.md
+++ b/docs/commands-legacy/get-macro-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/get-macro-parameter
displayed_sidebar: docs
---
-**GET MACRO PARAMETER** ( *selector* ; *textParam* )
+**GET MACRO PARAMETER** ( *selector* : Integer ; *textParam* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Refer to the example of the [SET MACRO PARAMETER](set-macro-parameter.md) comman
| | |
| --- | --- |
| Command number | 997 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-bar-reference.md b/docs/commands-legacy/get-menu-bar-reference.md
index b437a12ae6d44c..b62d23b7c2fb18 100644
--- a/docs/commands-legacy/get-menu-bar-reference.md
+++ b/docs/commands-legacy/get-menu-bar-reference.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-bar-reference
displayed_sidebar: docs
---
-**Get menu bar reference** {( *process* )} : Text
+**Get menu bar reference** ( *process* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ Refer to the example of the [GET MENU ITEMS](get-menu-items.md) command.
| | |
| --- | --- |
| Command number | 979 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-icon.md b/docs/commands-legacy/get-menu-item-icon.md
index 1dda3a620da893..9c67d7a366ce31 100644
--- a/docs/commands-legacy/get-menu-item-icon.md
+++ b/docs/commands-legacy/get-menu-item-icon.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-icon
displayed_sidebar: docs
---
-**GET MENU ITEM ICON** ( *menu* ; *menuItem* ; *iconRef* {; *process*} )
+**GET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *iconRef* : Text, Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ If no icon is associated with the menu item, the command returns a blank value.
| | |
| --- | --- |
| Command number | 983 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-key.md b/docs/commands-legacy/get-menu-item-key.md
index 7bfd6e692aea5d..9fd7a634059b25 100644
--- a/docs/commands-legacy/get-menu-item-key.md
+++ b/docs/commands-legacy/get-menu-item-key.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-key
displayed_sidebar: docs
---
-**Get menu item key** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item key** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,7 +54,7 @@ To obtain the shortcut associated with a menu item, it is useful to implement a
| | |
| --- | --- |
| Command number | 424 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/get-menu-item-mark.md b/docs/commands-legacy/get-menu-item-mark.md
index 170810072add47..6a5abe6ebacd90 100644
--- a/docs/commands-legacy/get-menu-item-mark.md
+++ b/docs/commands-legacy/get-menu-item-mark.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-mark
displayed_sidebar: docs
---
-**Get menu item mark** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item mark** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ The following example toggles the check mark of a menu item:
| | |
| --- | --- |
| Command number | 428 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/get-menu-item-method.md b/docs/commands-legacy/get-menu-item-method.md
index 2dd312e8f88a5e..b76c59ba857cbe 100644
--- a/docs/commands-legacy/get-menu-item-method.md
+++ b/docs/commands-legacy/get-menu-item-method.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-method
displayed_sidebar: docs
---
-**Get menu item method** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item method** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ The command returns the name of the 4D method as a character string (expression)
| | |
| --- | --- |
| Command number | 981 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-modifiers.md b/docs/commands-legacy/get-menu-item-modifiers.md
index 880af2cce75806..cf8efa43ce8979 100644
--- a/docs/commands-legacy/get-menu-item-modifiers.md
+++ b/docs/commands-legacy/get-menu-item-modifiers.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-modifiers
displayed_sidebar: docs
---
-**Get menu item modifiers** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item modifiers** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ Refer to the example of the [Get menu item key](get-menu-item-key.md) command.
| | |
| --- | --- |
| Command number | 980 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-parameter.md b/docs/commands-legacy/get-menu-item-parameter.md
index 8718166c387eb8..09ecafde54b85b 100644
--- a/docs/commands-legacy/get-menu-item-parameter.md
+++ b/docs/commands-legacy/get-menu-item-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-parameter
displayed_sidebar: docs
---
-**Get menu item parameter** ( *menu* ; *menuItem* ) : Text
+**Get menu item parameter** ( *menu* : Integer, Text ; *menuItem* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1003 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-property.md b/docs/commands-legacy/get-menu-item-property.md
index 2184204fa325c9..e1359626085bb0 100644
--- a/docs/commands-legacy/get-menu-item-property.md
+++ b/docs/commands-legacy/get-menu-item-property.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-property
displayed_sidebar: docs
---
-**GET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *property* ; *value* {; *process*} )
+**GET MENU ITEM PROPERTY** ( *menu* : Integer ; *menuItem* : Integer ; *property* : Text ; *value* : any {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ In the *property* parameter, pass the property for which you want to get the val
| | |
| --- | --- |
| Command number | 972 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-item-style.md b/docs/commands-legacy/get-menu-item-style.md
index fd27646032f1f6..c2fce4b51278da 100644
--- a/docs/commands-legacy/get-menu-item-style.md
+++ b/docs/commands-legacy/get-menu-item-style.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item-style
displayed_sidebar: docs
---
-**Get menu item style** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item style** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ To test if a menu item is displayed in bold, you write:
| | |
| --- | --- |
| Command number | 426 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/get-menu-item.md b/docs/commands-legacy/get-menu-item.md
index 971ca65b4743d5..8bcc6b3f89057d 100644
--- a/docs/commands-legacy/get-menu-item.md
+++ b/docs/commands-legacy/get-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-item
displayed_sidebar: docs
---
-**Get menu item** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,7 +34,7 @@ If you omit the *process* parameter, **Get menu item** applies to the menu bar f
| | |
| --- | --- |
| Command number | 422 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/get-menu-items.md b/docs/commands-legacy/get-menu-items.md
index 438554f490a08b..241d926fe3ffef 100644
--- a/docs/commands-legacy/get-menu-items.md
+++ b/docs/commands-legacy/get-menu-items.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-items
displayed_sidebar: docs
---
-**GET MENU ITEMS** ( *menu* ; *menuTitlesArray* ; *menuRefsArray* )
+**GET MENU ITEMS** ( *menu* : Integer, Text ; *menuTitlesArray* : Text array ; *menuRefsArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ You want to find out the contents of the menu bar of the current process:
| | |
| --- | --- |
| Command number | 977 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-menu-title.md b/docs/commands-legacy/get-menu-title.md
index 96f341c10d9de2..3bd16188332a0d 100644
--- a/docs/commands-legacy/get-menu-title.md
+++ b/docs/commands-legacy/get-menu-title.md
@@ -5,7 +5,7 @@ slug: /commands/get-menu-title
displayed_sidebar: docs
---
-**Get menu title** ( *menu* {; *process*} ) : Text
+**Get menu title** ( *menu* : Integer, Text {; *process* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If you omit the *process* parameter, **Get menu title** applies to the menu bar
| | |
| --- | --- |
| Command number | 430 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/get-missing-table-names.md b/docs/commands-legacy/get-missing-table-names.md
index 62c5a3483d4578..7d6641ffbdfef0 100644
--- a/docs/commands-legacy/get-missing-table-names.md
+++ b/docs/commands-legacy/get-missing-table-names.md
@@ -5,7 +5,7 @@ slug: /commands/get-missing-table-names
displayed_sidebar: docs
---
-**GET MISSING TABLE NAMES** ( *missingTables* )
+**GET MISSING TABLE NAMES** ( *missingTables* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Once you have identified the missing tables of the database, you can reactivate
| | |
| --- | --- |
| Command number | 1125 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-pasteboard-data-type.md b/docs/commands-legacy/get-pasteboard-data-type.md
index 3023e62d403d6a..01be464785702b 100644
--- a/docs/commands-legacy/get-pasteboard-data-type.md
+++ b/docs/commands-legacy/get-pasteboard-data-type.md
@@ -5,7 +5,7 @@ slug: /commands/get-pasteboard-data-type
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA TYPE** ( *4Dsignatures* ; *nativeTypes* {; *formatNames*} )
+**GET PASTEBOARD DATA TYPE** ( *4Dsignatures* : Text array ; *nativeTypes* : Text array {; *formatNames* : Text array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ For more information about the data types supported, please refer to the *Managi
| | |
| --- | --- |
| Command number | 958 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-pasteboard-data.md b/docs/commands-legacy/get-pasteboard-data.md
index a9dacba495b3ee..3a018a834e0d60 100644
--- a/docs/commands-legacy/get-pasteboard-data.md
+++ b/docs/commands-legacy/get-pasteboard-data.md
@@ -5,7 +5,7 @@ slug: /commands/get-pasteboard-data
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA** ( *dataType* ; *data* )
+**GET PASTEBOARD DATA** ( *dataType* : Text ; *data* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,7 +59,7 @@ If the data is correctly extracted, OK is set to 1; otherwise OK is set to 0 and
| | |
| --- | --- |
| Command number | 401 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-picture-file-name.md b/docs/commands-legacy/get-picture-file-name.md
index abd91e68c38c79..c759c4b749d6ec 100644
--- a/docs/commands-legacy/get-picture-file-name.md
+++ b/docs/commands-legacy/get-picture-file-name.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-file-name
displayed_sidebar: docs
---
-**Get picture file name** ( *picture* ) : Text
+**Get picture file name** ( *picture* : Picture, Picture ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ If the picture does not have a default name, the command returns an empty string
| | |
| --- | --- |
| Command number | 1171 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-picture-formats.md b/docs/commands-legacy/get-picture-formats.md
index 4efc904e53bb8e..5d809749be2a0a 100644
--- a/docs/commands-legacy/get-picture-formats.md
+++ b/docs/commands-legacy/get-picture-formats.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-formats
displayed_sidebar: docs
---
-**GET PICTURE FORMATS** ( *picture* ; *codecIDs* )
+**GET PICTURE FORMATS** ( *picture* : Picture ; *codecIDs* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ You want to know the picture formats stored in a field for the current record:
| | |
| --- | --- |
| Command number | 1406 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-picture-from-library.md b/docs/commands-legacy/get-picture-from-library.md
index a7d9401965ec75..a8a1b7102757e2 100644
--- a/docs/commands-legacy/get-picture-from-library.md
+++ b/docs/commands-legacy/get-picture-from-library.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-library
displayed_sidebar: docs
---
-**GET PICTURE FROM LIBRARY** ( *picRef * ; *picture* )
**GET PICTURE FROM LIBRARY** ( *picName* ; *picture* )
+**GET PICTURE FROM LIBRARY** ( *picRef* : Integer, Text ; *picture* : Picture )
**GET PICTURE FROM LIBRARY** ( *picName* : Integer, Text ; *picture* : Picture )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,7 +67,7 @@ If there is not enough memory to return the picture, an error -108 is generated.
| | |
| --- | --- |
| Command number | 565 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/get-picture-from-pasteboard.md b/docs/commands-legacy/get-picture-from-pasteboard.md
index 58f925e3278319..47c1cb90ad7edf 100644
--- a/docs/commands-legacy/get-picture-from-pasteboard.md
+++ b/docs/commands-legacy/get-picture-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-pasteboard
displayed_sidebar: docs
---
-**GET PICTURE FROM PASTEBOARD** ( *picture* )
+**GET PICTURE FROM PASTEBOARD** ( *picture* : Picture )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ If the picture is correctly extracted, OK is set to 1; otherwise OK is set to 0.
| | |
| --- | --- |
| Command number | 522 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-picture-keywords.md b/docs/commands-legacy/get-picture-keywords.md
index aedb14e7a58490..5c2fec5c9e1a25 100644
--- a/docs/commands-legacy/get-picture-keywords.md
+++ b/docs/commands-legacy/get-picture-keywords.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-keywords
displayed_sidebar: docs
---
-**GET PICTURE KEYWORDS** ( *picture* ; *arrKeywords* {; *} )
+**GET PICTURE KEYWORDS** ( *picture* : Picture, Picture ; *arrKeywords* : Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ If the picture does not contain keywords or IPTC/Keywords metadata, the command
| | |
| --- | --- |
| Command number | 1142 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-picture-metadata.md b/docs/commands-legacy/get-picture-metadata.md
index 991aa2aa0a4a19..2fb11dfa6d379f 100644
--- a/docs/commands-legacy/get-picture-metadata.md
+++ b/docs/commands-legacy/get-picture-metadata.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-metadata
displayed_sidebar: docs
---
-**GET PICTURE METADATA** ( *picture* ; *metaName* ; *metaContents* {; *metaName2* ; *metaContents2* ; ... ; *metaNameN* ; *metaContentsN*} )
+**GET PICTURE METADATA** ( *picture* : Picture ; *metaName* : Text ; *metaContents* : Variable {; ...(*metaName* : Text, *metaContents* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -106,7 +106,7 @@ The *OK* system variable returns 1 if the retrieval of the metadata has proceede
| | |
| --- | --- |
| Command number | 1122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-picture-resource.md b/docs/commands-legacy/get-picture-resource.md
index 0e7f03bb569fa1..9416143ca7cf39 100644
--- a/docs/commands-legacy/get-picture-resource.md
+++ b/docs/commands-legacy/get-picture-resource.md
@@ -5,13 +5,12 @@ slug: /commands/get-picture-resource
displayed_sidebar: docs
---
-**GET PICTURE RESOURCE** ( *resID* ; *resData* {; *resFile*} )
+**GET PICTURE RESOURCE** ( *resID* : Integer ; *resData* : Field, Variable {; *resFile* : Time} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| resID | Integer | → | Resource ID number |
-| resData | Field, Variable | → | Picture field or variable to receive the picture |
-| ← | Contents of the PICT resource |
+| resData | Field, Variable | ↔ | *in:* Picture field or variable to receive the picture
*out:* Contents of the PICT resource |
| resFile | Time | → | Resource file reference number, or all open resource files, if omitted |
@@ -47,7 +46,7 @@ If there is not enough memory to load the picture, an error is generated. You ca
| | |
| --- | --- |
| Command number | 502 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/get-plugin-access.md b/docs/commands-legacy/get-plugin-access.md
index e66146d96ee0af..49fb7ebae6fb72 100644
--- a/docs/commands-legacy/get-plugin-access.md
+++ b/docs/commands-legacy/get-plugin-access.md
@@ -5,7 +5,7 @@ slug: /commands/get-plugin-access
displayed_sidebar: docs
---
-**Get plugin access** ( *plugIn* ) : Text
+**Get plugin access** ( *plugIn* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Pass the number of the plug-in for which you want to find out the associated gro
| | |
| --- | --- |
| Command number | 846 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-pointer.md b/docs/commands-legacy/get-pointer.md
index b29128668cec78..689d5496fede13 100644
--- a/docs/commands-legacy/get-pointer.md
+++ b/docs/commands-legacy/get-pointer.md
@@ -5,7 +5,7 @@ slug: /commands/get-pointer
displayed_sidebar: docs
---
-**Get pointer** ( *varName* ) : Pointer
+**Get pointer** ( *varName* : Text ) : Pointer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ Using pointers to elements of two-dimensional arrays:
| | |
| --- | --- |
| Command number | 304 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-print-marker.md b/docs/commands-legacy/get-print-marker.md
index 0c2e4cc8d25a06..127f5cc917861f 100644
--- a/docs/commands-legacy/get-print-marker.md
+++ b/docs/commands-legacy/get-print-marker.md
@@ -5,7 +5,7 @@ slug: /commands/get-print-marker
displayed_sidebar: docs
---
-**Get print marker** ( *markNum* ) : Integer
+**Get print marker** ( *markNum* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command.
| | |
| --- | --- |
| Command number | 708 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-print-option.md b/docs/commands-legacy/get-print-option.md
index ba2d8a6c7183ea..8d480fff1eed3b 100644
--- a/docs/commands-legacy/get-print-option.md
+++ b/docs/commands-legacy/get-print-option.md
@@ -5,7 +5,7 @@ slug: /commands/get-print-option
displayed_sidebar: docs
---
-**GET PRINT OPTION** ( *option* ; *value1* {; *value2*} )
+**GET PRINT OPTION** ( *option* : Integer ; *value1* : Integer, Text {; *value2* : Integer, Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ The system variable OK is set to 1 if the command has been executed correctly; o
| | |
| --- | --- |
| Command number | 734 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-print-preview.md b/docs/commands-legacy/get-print-preview.md
index 76ec2ad9af257f..b9623b5f0c38b1 100644
--- a/docs/commands-legacy/get-print-preview.md
+++ b/docs/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note that the user can modify this option before validating the dialog box. To g
| | |
| --- | --- |
| Command number | 1197 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-printable-area.md b/docs/commands-legacy/get-printable-area.md
index 509cdd8d5ad082..38b33f2d6e4ed0 100644
--- a/docs/commands-legacy/get-printable-area.md
+++ b/docs/commands-legacy/get-printable-area.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-area
displayed_sidebar: docs
---
-**GET PRINTABLE AREA** ( *height* {; *width*} )
+**GET PRINTABLE AREA** ( *height* : Integer {; *width* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ To know the total size of the page, you can:
| | |
| --- | --- |
| Command number | 703 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-printable-margin.md b/docs/commands-legacy/get-printable-margin.md
index a54d64c22f3e3a..30bccbf3a9bc8f 100644
--- a/docs/commands-legacy/get-printable-margin.md
+++ b/docs/commands-legacy/get-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-margin
displayed_sidebar: docs
---
-**GET PRINTABLE MARGIN** ( *left* ; *top* ; *right* ; *bottom* )
+**GET PRINTABLE MARGIN** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ It is possible to base the form printing carried out using the [Print form](../c
| | |
| --- | --- |
| Command number | 711 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-printed-height.md b/docs/commands-legacy/get-printed-height.md
index 52fdc1795c11eb..4b235594a6da8e 100644
--- a/docs/commands-legacy/get-printed-height.md
+++ b/docs/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ The right and left printable margins, unlike the top and bottom margins (which m
| | |
| --- | --- |
| Command number | 702 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-process-variable.md b/docs/commands-legacy/get-process-variable.md
index 7451f1a7c5fa7c..46e24e8e4983bb 100644
--- a/docs/commands-legacy/get-process-variable.md
+++ b/docs/commands-legacy/get-process-variable.md
@@ -5,7 +5,7 @@ slug: /commands/get-process-variable
displayed_sidebar: docs
---
-**GET PROCESS VARIABLE** ( *process* ; *srcVar* ; *dstVar* {; *srcVar2* ; *dstVar2* ; ... ; *srcVarN* ; *dstVarN*} )
+**GET PROCESS VARIABLE** ( *process* : Integer ; *srcVar* : Variable ; *dstVar* : Variable {; ...(*srcVar* : Variable, *dstVar* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -122,6 +122,6 @@ See the example for the *\_o\_DRAG AND DROP PROPERTIES* command.
| | |
| --- | --- |
| Command number | 371 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-query-destination.md b/docs/commands-legacy/get-query-destination.md
index dca73c656865b1..7812447982b0bd 100644
--- a/docs/commands-legacy/get-query-destination.md
+++ b/docs/commands-legacy/get-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/get-query-destination
displayed_sidebar: docs
---
-**GET QUERY DESTINATION** ( *destinationType* ; *destinationObject* ; *destinationPtr* )
+**GET QUERY DESTINATION** ( *destinationType* : Integer ; *destinationObject* : Text ; *destinationPtr* : Pointer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ We want to modify the query destination temporarily and then restore the previou
| | |
| --- | --- |
| Command number | 1155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-query-limit.md b/docs/commands-legacy/get-query-limit.md
index afa669ad7215ad..dcd222c7a36309 100644
--- a/docs/commands-legacy/get-query-limit.md
+++ b/docs/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ By default, if no limit is set, the command returns 0.
| | |
| --- | --- |
| Command number | 1156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-registered-clients.md b/docs/commands-legacy/get-registered-clients.md
index 443ffd6d1b3ace..3f17c53509f197 100644
--- a/docs/commands-legacy/get-registered-clients.md
+++ b/docs/commands-legacy/get-registered-clients.md
@@ -5,12 +5,12 @@ slug: /commands/get-registered-clients
displayed_sidebar: docs
---
-**GET REGISTERED CLIENTS** ( *clientList* ; *methods* )
+**GET REGISTERED CLIENTS** ( *clientList* : Text array ; *methods* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| clientList | Text array | ← | List of the saved 4D Clients |
-| methods | Array integer | ← | List of the methods to be executed |
+| methods | Integer array | ← | List of the methods to be executed |
@@ -50,7 +50,7 @@ If the operation was successful, the OK system variable is equal to 1.
| | |
| --- | --- |
| Command number | 650 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-relation-properties.md b/docs/commands-legacy/get-relation-properties.md
index a91a673494c322..12c1748a2aa101 100644
--- a/docs/commands-legacy/get-relation-properties.md
+++ b/docs/commands-legacy/get-relation-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-relation-properties
displayed_sidebar: docs
---
-**GET RELATION PROPERTIES** ( *fieldPtr* ; *oneTable* ; *oneField* {; *choiceField* {; *autoOne* {; *autoMany*}}} )
**GET RELATION PROPERTIES** ( *tableNum* ; *fieldNum* ; *oneTable* ; *oneField* {; *choiceField* {; *autoOne* {; *autoMany*}}} )
+**GET RELATION PROPERTIES** ( *fieldPtr* : Pointer, Integer ; *oneTable* : Integer ; *oneField* : Integer {; *choiceField* : Integer {; *autoOne* : Boolean {; *autoMany* : Boolean}}} )
**GET RELATION PROPERTIES** ( *tableNum* : Pointer, Integer ; *fieldNum* : Integer ; *oneTable* : Integer ; *oneField* : Integer {; *choiceField* : Integer {; *autoOne* : Boolean {; *autoMany* : Boolean}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Once the command has been executed:
| | |
| --- | --- |
| Command number | 686 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-resource-name.md b/docs/commands-legacy/get-resource-name.md
index b04aa29e299786..94c48994f2da06 100644
--- a/docs/commands-legacy/get-resource-name.md
+++ b/docs/commands-legacy/get-resource-name.md
@@ -5,7 +5,7 @@ slug: /commands/get-resource-name
displayed_sidebar: docs
---
-**Get resource name** ( *resType* ; *resID* {; *resFile*} ) : Text
+**Get resource name** ( *resType* : Text ; *resID* : Integer {; *resFile* : Time} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If the resource does not exist, **Get resource name** returns an empty string.
| | |
| --- | --- |
| Command number | 513 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-resource-properties.md b/docs/commands-legacy/get-resource-properties.md
index f437e51efc98bd..55b85bd779246a 100644
--- a/docs/commands-legacy/get-resource-properties.md
+++ b/docs/commands-legacy/get-resource-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-resource-properties
displayed_sidebar: docs
---
-**Get resource properties** ( *resType* ; *resID* {; *resFile*} ) : Integer
+**Get resource properties** ( *resType* : Text ; *resID* : Integer {; *resFile* : Time} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ The OK variable is set to 0 if the resource does not exist; otherwise, it is set
| | |
| --- | --- |
| Command number | 515 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-resource.md b/docs/commands-legacy/get-resource.md
index 9e5ea0878a4d6c..737d911c1b43be 100644
--- a/docs/commands-legacy/get-resource.md
+++ b/docs/commands-legacy/get-resource.md
@@ -5,14 +5,13 @@ slug: /commands/get-resource
displayed_sidebar: docs
---
-**GET RESOURCE** ( *resType* ; *resID* ; *resData* {; *resFile*} )
+**GET RESOURCE** ( *resType* : Text ; *resID* : Integer ; *resData* : Blob {; *resFile* : Time} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| resType | Text | → | 4-character resource type |
| resID | Integer | → | Resource ID number |
-| resData | Blob | → | BLOB field or variable to receive the data |
-| ← | Contents of the resource |
+| resData | Blob | ↔ | *in:* BLOB field or variable to receive the data
*out:* Contents of the resource |
| resFile | Time | → | Resource file reference number, or all open resource files, if omitted |
@@ -31,11 +30,8 @@ If you pass a valid resource file reference number in *resFile*, the resource is
## Platform independence
- Remember that you are working with Mac OS-based resources. No matter what the platform, internal resource data such as Long Integer is stored using Macintosh byte ordering. On Windows, the data for standard resources (such as string list and pictures resources) is automatically byte swapped when necessary. On the other hand, if you create and use your own internal data structures, it is up to you to byte swap the data you extract from the BLOB (i.e., passing Macintosh byte ordering to a command such as [BLOB to longint](blob-to-longint.md)).
+ Remember that you are working with macOS-based resources. No matter what the platform, internal resource data such as Long Integer is stored using Macintosh byte ordering. On Windows, the data for standard resources (such as string list and pictures resources) is automatically byte swapped when necessary. On the other hand, if you create and use your own internal data structures, it is up to you to byte swap the data you extract from the BLOB (i.e., passing Macintosh byte ordering to a command such as [BLOB to longint](blob-to-longint.md)).
-## Example
-
-See the example for the command.
## System variables and sets
@@ -54,7 +50,7 @@ If there is not enough memory to load the resource, an error is generated. You c
| | |
| --- | --- |
| Command number | 508 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/get-selected-menu-item-parameter.md b/docs/commands-legacy/get-selected-menu-item-parameter.md
index e727f02aba4dec..38561ffa318955 100644
--- a/docs/commands-legacy/get-selected-menu-item-parameter.md
+++ b/docs/commands-legacy/get-selected-menu-item-parameter.md
@@ -30,6 +30,6 @@ If no menu item has been selected, the command returns an empty string "".
| | |
| --- | --- |
| Command number | 1005 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-serial-port-mapping.md b/docs/commands-legacy/get-serial-port-mapping.md
index ef0f28326e98e8..501085eaad7366 100644
--- a/docs/commands-legacy/get-serial-port-mapping.md
+++ b/docs/commands-legacy/get-serial-port-mapping.md
@@ -5,11 +5,11 @@ slug: /commands/get-serial-port-mapping
displayed_sidebar: docs
---
-**GET SERIAL PORT MAPPING** ( *numArray* ; *nameArray* )
+**GET SERIAL PORT MAPPING** ( *numArray* : Integer array ; *nameArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| numArray | Array integer | ← | Array of port numbers |
+| numArray | Integer array | ← | Array of port numbers |
| nameArray | Text array | ← | Array of port names |
@@ -55,6 +55,6 @@ This project method can be used to address the same serial port (without protoco
| | |
| --- | --- |
| Command number | 909 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-string-resource.md b/docs/commands-legacy/get-string-resource.md
index f3dbfdca7dbb61..252e540cabafd2 100644
--- a/docs/commands-legacy/get-string-resource.md
+++ b/docs/commands-legacy/get-string-resource.md
@@ -5,7 +5,7 @@ slug: /commands/get-string-resource
displayed_sidebar: docs
---
-**Get string resource** ( *resID* {; *resFile*} ) : Text
+**Get string resource** ( *resID* : Integer {; *resFile* : Time} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero).
| | |
| --- | --- |
| Command number | 506 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-style-sheet-info.md b/docs/commands-legacy/get-style-sheet-info.md
index ef94ba33022ba5..dc76773d2a2d6d 100644
--- a/docs/commands-legacy/get-style-sheet-info.md
+++ b/docs/commands-legacy/get-style-sheet-info.md
@@ -5,7 +5,7 @@ slug: /commands/get-style-sheet-info
displayed_sidebar: docs
---
-**GET STYLE SHEET INFO** ( *styleSheetName* ; *font* ; *size* ; *styles* )
+**GET STYLE SHEET INFO** ( *styleSheetName* : Text ; *font* : Text ; *size* : Integer ; *styles* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,7 +70,7 @@ You want to find out the current configuration of the "Automatic" style sheet:
| | |
| --- | --- |
| Command number | 1256 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-subrecord-key.md b/docs/commands-legacy/get-subrecord-key.md
index e5f9ba1073665e..0cafe3bd70ee1e 100644
--- a/docs/commands-legacy/get-subrecord-key.md
+++ b/docs/commands-legacy/get-subrecord-key.md
@@ -5,7 +5,7 @@ slug: /commands/get-subrecord-key
displayed_sidebar: docs
---
-**Get subrecord key** ( *idField* ) : Integer
+**Get subrecord key** ( *idField* : Field ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,6 +85,6 @@ This code will work with either a special relation or a standard one.
| | |
| --- | --- |
| Command number | 1137 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-system-format.md b/docs/commands-legacy/get-system-format.md
index c4c22e43a75e61..c76303bb7f236e 100644
--- a/docs/commands-legacy/get-system-format.md
+++ b/docs/commands-legacy/get-system-format.md
@@ -5,7 +5,7 @@ slug: /commands/get-system-format
displayed_sidebar: docs
---
-**GET SYSTEM FORMAT** ( *format* ; *value* )
+**GET SYSTEM FORMAT** ( *format* : Integer ; *value* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ In the *format* parameter, pass the type of parameter whose value you want to kn
| | |
| --- | --- |
| Command number | 994 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-table-properties.md b/docs/commands-legacy/get-table-properties.md
index c2f4f078f66ba1..a383340e98fc7c 100644
--- a/docs/commands-legacy/get-table-properties.md
+++ b/docs/commands-legacy/get-table-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-table-properties
displayed_sidebar: docs
---
-**GET TABLE PROPERTIES** ( *tablePtr* ; *invisible* {; *trigSaveNew* {; *trigSaveRec* {; *trigDelRec* {; *trigLoadRec*}}}} )
**GET TABLE PROPERTIES** ( *tableNum* ; *invisible* {; *trigSaveNew* {; *trigSaveRec* {; *trigDelRec* {; *trigLoadRec*}}}} )
+**GET TABLE PROPERTIES** ( *tablePtr* : Pointer, Integer ; *invisible* : Boolean {; *trigSaveNew* : Boolean {; *trigSaveRec* : Boolean {; *trigDelRec* : Boolean {; *trigLoadRec* : Boolean}}}} )
**GET TABLE PROPERTIES** ( *tableNum* : Pointer, Integer ; *invisible* : Boolean {; *trigSaveNew* : Boolean {; *trigSaveRec* : Boolean {; *trigDelRec* : Boolean {; *trigLoadRec* : Boolean}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Once the command has been executed:
| | |
| --- | --- |
| Command number | 687 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-table-titles.md b/docs/commands-legacy/get-table-titles.md
index bc873bc69cd167..22753b6d3b749c 100644
--- a/docs/commands-legacy/get-table-titles.md
+++ b/docs/commands-legacy/get-table-titles.md
@@ -5,12 +5,12 @@ slug: /commands/get-table-titles
displayed_sidebar: docs
---
-**GET TABLE TITLES** ( *tableTitles* ; *tableNums* )
+**GET TABLE TITLES** ( *tableTitles* : Text array ; *tableNums* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| tableTitles | Text array | ← | Current table names |
-| tableNums | Array integer | ← | Table numbers |
+| tableNums | Integer array | ← | Table numbers |
@@ -34,6 +34,6 @@ In both cases, the command does not return invisible tables.
| | |
| --- | --- |
| Command number | 803 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-text-from-pasteboard.md b/docs/commands-legacy/get-text-from-pasteboard.md
index d8478f8c2e1eac..2f1c555f2718df 100644
--- a/docs/commands-legacy/get-text-from-pasteboard.md
+++ b/docs/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ If the text is correctly extracted, OK is set to 1; otherwise OK is set to 0.
| | |
| --- | --- |
| Command number | 524 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-text-keywords.md b/docs/commands-legacy/get-text-keywords.md
index 2b4e131618b746..f0f7137534c7f2 100644
--- a/docs/commands-legacy/get-text-keywords.md
+++ b/docs/commands-legacy/get-text-keywords.md
@@ -5,7 +5,7 @@ slug: /commands/get-text-keywords
displayed_sidebar: docs
---
-**GET TEXT KEYWORDS** ( *text* ; *arrKeywords* {; *} )
+**GET TEXT KEYWORDS** ( *text* : Text ; *arrKeywords* : Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ To count words in a text:
| | |
| --- | --- |
| Command number | 1141 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/get-text-resource.md b/docs/commands-legacy/get-text-resource.md
index 1290576c482d1f..b54d93bb4cf0c0 100644
--- a/docs/commands-legacy/get-text-resource.md
+++ b/docs/commands-legacy/get-text-resource.md
@@ -5,7 +5,7 @@ slug: /commands/get-text-resource
displayed_sidebar: docs
---
-**Get text resource** ( *resID* {; *resFile*} ) : Text
+**Get text resource** ( *resID* : Integer {; *resFile* : Time} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero).
| | |
| --- | --- |
| Command number | 504 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/get-user-list.md b/docs/commands-legacy/get-user-list.md
index 5764ef47d5685a..0fecf877a7acad 100644
--- a/docs/commands-legacy/get-user-list.md
+++ b/docs/commands-legacy/get-user-list.md
@@ -5,12 +5,12 @@ slug: /commands/get-user-list
displayed_sidebar: docs
---
-**GET USER LIST** ( *userNames* ; *userNumbers* )
+**GET USER LIST** ( *userNames* : Text array ; *userNumbers* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| userNames | Text array | ← | User names as they appear in the Password editor window |
-| userNumbers | Array integer | ← | Corresponding unique user ID numbers |
+| userNumbers | Integer array | ← | Corresponding unique user ID numbers |
@@ -41,7 +41,7 @@ If you do not have the proper access privileges for calling GET USER LIST or if
| | |
| --- | --- |
| Command number | 609 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-user-properties.md b/docs/commands-legacy/get-user-properties.md
index 1726bcdc0730f6..dcec601aeb21a1 100644
--- a/docs/commands-legacy/get-user-properties.md
+++ b/docs/commands-legacy/get-user-properties.md
@@ -5,7 +5,7 @@ slug: /commands/get-user-properties
displayed_sidebar: docs
---
-**GET USER PROPERTIES** ( *userID* ; *name* ; *startup* ; *password* ; *nbLogin* ; *lastLogin* {; *memberships* {; *groupOwner*}} )
+**GET USER PROPERTIES** ( *userID* : Integer ; *name* : Text ; *startup* : Text ; *password* : Text ; *nbLogin* : Integer ; *lastLogin* : Date {; *memberships* : Integer array {; *groupOwner* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -15,7 +15,7 @@ displayed_sidebar: docs
| password | Text | ← | Always an empty string |
| nbLogin | Integer | ← | Number of logins to the database (Binary databases only) |
| lastLogin | Date | ← | Date of last login to the database (Binary databases only) |
-| memberships | Array integer | ← | ID numbers of groups to which the user belongs |
+| memberships | Integer array | ← | ID numbers of groups to which the user belongs |
| groupOwner | Integer | ← | ID number of user group owner (Binary databases only) |
@@ -58,7 +58,7 @@ If you do not have the proper access privileges for calling GET USER PROPERTIES
| | |
| --- | --- |
| Command number | 611 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/get-window-rect.md b/docs/commands-legacy/get-window-rect.md
index edbd4694b4eef7..04806066470f2a 100644
--- a/docs/commands-legacy/get-window-rect.md
+++ b/docs/commands-legacy/get-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-rect
displayed_sidebar: docs
---
-**GET WINDOW RECT** ( *left* ; *top* ; *right* ; *bottom* {; *window*} )
+**GET WINDOW RECT** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *window* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ See example for the [WINDOW LIST](window-list.md) command.
| | |
| --- | --- |
| Command number | 443 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/get-window-title.md b/docs/commands-legacy/get-window-title.md
index ed1f72ef695ac8..a62630f917676c 100644
--- a/docs/commands-legacy/get-window-title.md
+++ b/docs/commands-legacy/get-window-title.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-title
displayed_sidebar: docs
---
-**Get window title** {( *window* )} : Text
+**Get window title** ( *window* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ See example for the [SET WINDOW TITLE](set-window-title.md) command.
| | |
| --- | --- |
| Command number | 450 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/goto-object.md b/docs/commands-legacy/goto-object.md
index 7267da59bb81e9..e86cbe032ba7bb 100644
--- a/docs/commands-legacy/goto-object.md
+++ b/docs/commands-legacy/goto-object.md
@@ -5,7 +5,7 @@ slug: /commands/goto-object
displayed_sidebar: docs
---
-**GOTO OBJECT** ( {* ;} *object* )
+**GOTO OBJECT** ( {* ;} *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ See the example for the [REJECT](reject.md) command.
| | |
| --- | --- |
| Command number | 206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/goto-record.md b/docs/commands-legacy/goto-record.md
index 90230682d7799f..083c48b8632142 100644
--- a/docs/commands-legacy/goto-record.md
+++ b/docs/commands-legacy/goto-record.md
@@ -5,7 +5,7 @@ slug: /commands/goto-record
displayed_sidebar: docs
---
-**GOTO RECORD** ( {*aTable* ;} *record* )
+**GOTO RECORD** ( {*aTable* : Table ;} *record* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,7 +34,7 @@ See the example for [Record number](record-number.md).
| | |
| --- | --- |
| Command number | 242 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
| Changes current selection ||
diff --git a/docs/commands-legacy/goto-selected-record.md b/docs/commands-legacy/goto-selected-record.md
index a7cf850cef4558..56aea2d0cba63d 100644
--- a/docs/commands-legacy/goto-selected-record.md
+++ b/docs/commands-legacy/goto-selected-record.md
@@ -5,7 +5,7 @@ slug: /commands/goto-selected-record
displayed_sidebar: docs
---
-**GOTO SELECTED RECORD** ( {*aTable* ;} *record* )
+**GOTO SELECTED RECORD** ( {*aTable* : Table ;} *record* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,7 +67,7 @@ The following object method for *atNames* selects the correct record in the \[Pe
| | |
| --- | --- |
| Command number | 245 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/goto-xy.md b/docs/commands-legacy/goto-xy.md
index b8a3a057337e94..de17f3dcdf7556 100644
--- a/docs/commands-legacy/goto-xy.md
+++ b/docs/commands-legacy/goto-xy.md
@@ -5,7 +5,7 @@ slug: /commands/goto-xy
displayed_sidebar: docs
---
-**GOTO XY** ( *x* ; *y* )
+**GOTO XY** ( *x* : Integer ; *y* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ displays the following window (on Macintosh) for 30 seconds:
| | |
| --- | --- |
| Command number | 161 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/graph-settings.md b/docs/commands-legacy/graph-settings.md
index ff14d2613fdb56..479a3c4738acef 100644
--- a/docs/commands-legacy/graph-settings.md
+++ b/docs/commands-legacy/graph-settings.md
@@ -5,7 +5,7 @@ slug: /commands/graph-settings
displayed_sidebar: docs
---
-**GRAPH SETTINGS** ( *graphPicture* ; *xmin* ; *xmax* ; *ymin* ; *ymax* ; *xprop* ; *xgrid* ; *ygrid* ; *title* {; *title2* ; ... ; *titleN*} )
+**GRAPH SETTINGS** ( *graphPicture* : Picture ; *xmin* : Integer, Date, Time ; *xmax* : Integer, Date, Time ; *ymin* : Integer ; *ymax* : Integer ; *xprop* : Boolean ; *xgrid* : Boolean ; *ygrid* : Boolean ; *title* : Text {; *...title* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ See example for the [GRAPH](graph.md) command.
| | |
| --- | --- |
| Command number | 298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/graph.md b/docs/commands-legacy/graph.md
index f487ae7a405363..7e7f44436915da 100644
--- a/docs/commands-legacy/graph.md
+++ b/docs/commands-legacy/graph.md
@@ -5,7 +5,7 @@ slug: /commands/graph
displayed_sidebar: docs
---
-**GRAPH** ( *graphPicture* ; *graphNumber* ; *xLabels* {; *yElements*} {; *yElements2* ; ... ; *yElementsN*} )
**GRAPH** ( *graphPicture* ; *graphSettings* ; *xLabels* {; *yElements*} {; *yElements2* ; ... ; *yElementsN*} )
+**GRAPH** ( *graphPicture* : Picture ; *graphNumber* : Integer, Object ; *xLabels* : Array {; *...yElements* : Array} )
**GRAPH** ( *graphPicture* : Picture ; *graphSettings* : Integer, Object ; *xLabels* : Array {; *...yElements* : Array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -283,6 +283,6 @@ In this example, we customize a few settings:
| | |
| --- | --- |
| Command number | 169 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/hide-menu-bar.md b/docs/commands-legacy/hide-menu-bar.md
index 458bb0195822f6..d9e0500886269e 100644
--- a/docs/commands-legacy/hide-menu-bar.md
+++ b/docs/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ The following method displays a record in full-screen display (Macintosh) until
| | |
| --- | --- |
| Command number | 432 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/hide-process.md b/docs/commands-legacy/hide-process.md
index ce2e12b914a833..58aa0266c392c9 100644
--- a/docs/commands-legacy/hide-process.md
+++ b/docs/commands-legacy/hide-process.md
@@ -5,7 +5,7 @@ slug: /commands/hide-process
displayed_sidebar: docs
---
-**HIDE PROCESS** ( *process* )
+**HIDE PROCESS** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The following example hides all the windows belonging to the current process:
| | |
| --- | --- |
| Command number | 324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/hide-tool-bar.md b/docs/commands-legacy/hide-tool-bar.md
index f6f41df8d9c1f8..1f3a152d37e3d3 100644
--- a/docs/commands-legacy/hide-tool-bar.md
+++ b/docs/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ To prevent this, in the On Resize form event of the standard window, you need to
| | |
| --- | --- |
| Command number | 434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/hide-window.md b/docs/commands-legacy/hide-window.md
index 0de1b88faf3ae4..3f323877159a68 100644
--- a/docs/commands-legacy/hide-window.md
+++ b/docs/commands-legacy/hide-window.md
@@ -5,7 +5,7 @@ slug: /commands/hide-window
displayed_sidebar: docs
---
-**HIDE WINDOW** {( *window* )}
+**HIDE WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ This example corresponds to a method of a button located in an input form. This
| | |
| --- | --- |
| Command number | 436 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/highlight-records.md b/docs/commands-legacy/highlight-records.md
index ae11c07be75668..cea26aaa3fa52d 100644
--- a/docs/commands-legacy/highlight-records.md
+++ b/docs/commands-legacy/highlight-records.md
@@ -5,7 +5,7 @@ slug: /commands/highlight-records
displayed_sidebar: docs
---
-**HIGHLIGHT RECORDS** ( {*aTable* }{;}{ *setName* {; *}} )
+**HIGHLIGHT RECORDS** ( {*aTable* : Table }{;}{ *setName* : Text {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ When the user clicks the button, the standard query dialog box appears. Once the
| | |
| --- | --- |
| Command number | 656 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/highlight-text.md b/docs/commands-legacy/highlight-text.md
index 33488a7192d19e..15ea18a3ce3968 100644
--- a/docs/commands-legacy/highlight-text.md
+++ b/docs/commands-legacy/highlight-text.md
@@ -5,7 +5,7 @@ slug: /commands/highlight-text
displayed_sidebar: docs
---
-**HIGHLIGHT TEXT** ( {* ;} *object* ; *startSel* ; *endSel* )
+**HIGHLIGHT TEXT** ( {* ;} *object* : Field, Variable, any ; *startSel* : Integer ; *endSel* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,6 +75,6 @@ See example for the [FILTER KEYSTROKE](filter-keystroke.md) command.
| | |
| --- | --- |
| Command number | 210 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/http-authenticate.md b/docs/commands-legacy/http-authenticate.md
index a16acd009a6ba6..3d5c80cf6246e7 100644
--- a/docs/commands-legacy/http-authenticate.md
+++ b/docs/commands-legacy/http-authenticate.md
@@ -5,7 +5,7 @@ slug: /commands/http-authenticate
displayed_sidebar: docs
---
-**HTTP AUTHENTICATE** ( *name* ; *password* {; *authMethod*} {; *} )
+**HTTP AUTHENTICATE** ( *name* : Text ; *password* : Text {; *authMethod* : Integer} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ Examples of requests with authentication:
| | |
| --- | --- |
| Command number | 1161 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/http-get-certificates-folder.md b/docs/commands-legacy/http-get-certificates-folder.md
index 9752e9b6f06eb7..86d7a051b91624 100644
--- a/docs/commands-legacy/http-get-certificates-folder.md
+++ b/docs/commands-legacy/http-get-certificates-folder.md
@@ -46,6 +46,6 @@ You want to change certificates folder temporarily:
| | |
| --- | --- |
| Command number | 1307 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/http-get-option.md b/docs/commands-legacy/http-get-option.md
index 610db13c4704d5..ed03695bdbf30c 100644
--- a/docs/commands-legacy/http-get-option.md
+++ b/docs/commands-legacy/http-get-option.md
@@ -5,7 +5,7 @@ slug: /commands/http-get-option
displayed_sidebar: docs
---
-**HTTP GET OPTION** ( *option* ; *value* )
+**HTTP GET OPTION** ( *option* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ In the *value* parameter, pass a variable to receive the current value of the *o
| | |
| --- | --- |
| Command number | 1159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/http-get.md b/docs/commands-legacy/http-get.md
index 676e4676e0c61c..9fe27e23750f54 100644
--- a/docs/commands-legacy/http-get.md
+++ b/docs/commands-legacy/http-get.md
@@ -5,16 +5,14 @@ slug: /commands/http-get
displayed_sidebar: docs
---
-**HTTP Get** ( *url* ; *response* {; *headerNames* ; *headerValues*}{; *} ) : Integer
+**HTTP Get** ( *url* : Text ; *response* : Text, Blob, Picture, Object {; *headerNames* : Text array ; *headerValues* : Text array}{; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| url | Text | → | URL to which to send the request |
| response | Text, Blob, Picture, Object | ← | Result of request |
-| headerNames | Text array | → | Header names of the request |
-| ← | Returned header names |
-| headerValues | Text array | → | Header values of the request |
-| ← | Returned header values |
+| headerNames | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| headerValues | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
| * | Operator | → | If passed, connection is maintained (keep-alive)If omitted, connection is closed automatically |
| Function result | Integer | ← | HTTP status code |
@@ -110,7 +108,7 @@ Retrieval of a video:
| | |
| --- | --- |
| Command number | 1157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/http-request.md b/docs/commands-legacy/http-request.md
index 6f7b4cbe75b944..040495ecf7808a 100644
--- a/docs/commands-legacy/http-request.md
+++ b/docs/commands-legacy/http-request.md
@@ -5,7 +5,7 @@ slug: /commands/http-request
displayed_sidebar: docs
---
-**HTTP Request** ( *httpMethod* ; *url* ; *contents* ; *response* {; *headerNames* ; *headerValues*}{; *} ) : Integer
+**HTTP Request** ( *httpMethod* : Text ; *url* : Text ; *contents* : Text, Blob, Picture, Object ; *response* : Text, Blob, Picture, Object {; *headerNames* : Text array ; *headerValues* : Text array}{; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -13,10 +13,8 @@ displayed_sidebar: docs
| url | Text | → | URL to which to send the request |
| contents | Text, Blob, Picture, Object | → | Contents of request body |
| response | Text, Blob, Picture, Object | ← | Result of request |
-| headerNames | Text array | → | Header names of the request |
-| ← | Returned header names |
-| headerValues | Text array | → | Header values of the request |
-| ← | Returned header values |
+| headerNames | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| headerValues | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
| * | Operator | → | If passed, connection is maintained (keep-alive)If omitted, connection is closed automatically |
| Function result | Integer | ← | HTTP status code |
@@ -132,6 +130,6 @@ Request to add a record in JSON to a remote database::
| | |
| --- | --- |
| Command number | 1158 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/http-set-certificates-folder.md b/docs/commands-legacy/http-set-certificates-folder.md
index e17f9645cc8f3b..28c9a4bc940337 100644
--- a/docs/commands-legacy/http-set-certificates-folder.md
+++ b/docs/commands-legacy/http-set-certificates-folder.md
@@ -5,7 +5,7 @@ slug: /commands/http-set-certificates-folder
displayed_sidebar: docs
---
-**HTTP SET CERTIFICATES FOLDER** ( *certificatesFolder* )
+**HTTP SET CERTIFICATES FOLDER** ( *certificatesFolder* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ You want to change certificates folder temporarily:
| | |
| --- | --- |
| Command number | 1306 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/http-set-option.md b/docs/commands-legacy/http-set-option.md
index b37dda4f85e1ec..fe8a87545ac229 100644
--- a/docs/commands-legacy/http-set-option.md
+++ b/docs/commands-legacy/http-set-option.md
@@ -5,7 +5,7 @@ slug: /commands/http-set-option
displayed_sidebar: docs
---
-**HTTP SET OPTION** ( *option* ; *value* )
+**HTTP SET OPTION** ( *option* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ You can call options in any order. If the same option is set more than once, onl
| | |
| --- | --- |
| Command number | 1160 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/idle.md b/docs/commands-legacy/idle.md
index 03008fa0d02aa3..668ee71eb4ec7d 100644
--- a/docs/commands-legacy/idle.md
+++ b/docs/commands-legacy/idle.md
@@ -57,6 +57,6 @@ with:
| | |
| --- | --- |
| Command number | 311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/import-data.md b/docs/commands-legacy/import-data.md
index 202a41143c9368..5575206391e828 100644
--- a/docs/commands-legacy/import-data.md
+++ b/docs/commands-legacy/import-data.md
@@ -5,13 +5,12 @@ slug: /commands/import-data
displayed_sidebar: docs
---
-**IMPORT DATA** ( *fileName* {; *project* {; *}} )
+**IMPORT DATA** ( *fileName* : Text {; *project* : Text, Blob {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| fileName | Text | → | Access path and name of the import file |
-| project | Text, Blob | → | Contents of the import project |
-| ← | New contents of the import project (if the * parameter has been passed) |
+| project | Text, Blob | ↔ | *in:* Contents of the import project
*out:* New contents of the import project (if the * parameter has been passed)|
| * | Operator | → | Displays the import dialog box and updates the project |
@@ -53,7 +52,7 @@ If the user clicks **Cancel** in the standard save file dialog box or in the imp
| | |
| --- | --- |
| Command number | 665 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/import-dif.md b/docs/commands-legacy/import-dif.md
index b4c7e47bae5f02..8c1030ad9d95fc 100644
--- a/docs/commands-legacy/import-dif.md
+++ b/docs/commands-legacy/import-dif.md
@@ -5,7 +5,7 @@ slug: /commands/import-dif
displayed_sidebar: docs
---
-**IMPORT DIF** ( {*aTable* ;} *document* )
+**IMPORT DIF** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to
| | |
| --- | --- |
| Command number | 86 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/import-structure.md b/docs/commands-legacy/import-structure.md
index 97a4d5fbeb7d57..290c92c207d709 100644
--- a/docs/commands-legacy/import-structure.md
+++ b/docs/commands-legacy/import-structure.md
@@ -5,7 +5,7 @@ slug: /commands/import-structure
displayed_sidebar: docs
---
-**IMPORT STRUCTURE** ( *xmlStructure* )
+**IMPORT STRUCTURE** ( *xmlStructure* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ You want to import a saved structure definition into the current database:
| | |
| --- | --- |
| Command number | 1310 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/import-sylk.md b/docs/commands-legacy/import-sylk.md
index 2742285d1b7d71..269df99a4460e9 100644
--- a/docs/commands-legacy/import-sylk.md
+++ b/docs/commands-legacy/import-sylk.md
@@ -5,7 +5,7 @@ slug: /commands/import-sylk
displayed_sidebar: docs
---
-**IMPORT SYLK** ( {*aTable* ;} *document* )
+**IMPORT SYLK** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ OK is set to 1 if the import is successfully complete; otherwise, it is set to 0
| | |
| --- | --- |
| Command number | 87 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/import-text.md b/docs/commands-legacy/import-text.md
index 4fa7d1006245ff..666201cf1a3fc6 100644
--- a/docs/commands-legacy/import-text.md
+++ b/docs/commands-legacy/import-text.md
@@ -5,7 +5,7 @@ slug: /commands/import-text
displayed_sidebar: docs
---
-**IMPORT TEXT** ( {*aTable* ;} *document* )
+**IMPORT TEXT** ( {*aTable* : Table ;} *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,7 +59,7 @@ OK is set to 1 if the import is successfully completed; otherwise, it is set to
| | |
| --- | --- |
| Command number | 168 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/in-break.md b/docs/commands-legacy/in-break.md
index 173e2989fc5afd..8a69d0a4914273 100644
--- a/docs/commands-legacy/in-break.md
+++ b/docs/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ In order for the **In break** execution cycle to be generated, make sure that th
| | |
| --- | --- |
| Command number | 113 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/in-footer.md b/docs/commands-legacy/in-footer.md
index 9136efa76bd8e4..bd0822068c3ff9 100644
--- a/docs/commands-legacy/in-footer.md
+++ b/docs/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ In order for the **In footer** execution cycle to be generated, make sure that
| | |
| --- | --- |
| Command number | 191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/in-header.md b/docs/commands-legacy/in-header.md
index a26537c33f3f5b..8eda86b936bb72 100644
--- a/docs/commands-legacy/in-header.md
+++ b/docs/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ In order for the **In header** execution cycle to be generated, make sure that t
| | |
| --- | --- |
| Command number | 112 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/in-transaction.md b/docs/commands-legacy/in-transaction.md
index 75cb2fa9956a06..219110e526a169 100644
--- a/docs/commands-legacy/in-transaction.md
+++ b/docs/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ If you perform the operation from within a trigger or from a subroutine (that ca
| | |
| --- | --- |
| Command number | 397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/insert-in-array.md b/docs/commands-legacy/insert-in-array.md
index a8a4ef2920f621..e63704aa2462cd 100644
--- a/docs/commands-legacy/insert-in-array.md
+++ b/docs/commands-legacy/insert-in-array.md
@@ -5,7 +5,7 @@ slug: /commands/insert-in-array
displayed_sidebar: docs
---
-**INSERT IN ARRAY** ( *array* ; *where* {; *howMany*} )
+**INSERT IN ARRAY** ( *array* : Array ; *where* : Integer {; *howMany* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ The following example appends an element to an array:
| | |
| --- | --- |
| Command number | 227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/insert-in-blob.md b/docs/commands-legacy/insert-in-blob.md
index 488812e0298b15..4bce56ff8045d7 100644
--- a/docs/commands-legacy/insert-in-blob.md
+++ b/docs/commands-legacy/insert-in-blob.md
@@ -5,11 +5,11 @@ slug: /commands/insert-in-blob
displayed_sidebar: docs
---
-**INSERT IN BLOB** ( *blob* ; *offset* ; *len* {; *filler*} )
+**INSERT IN BLOB** ( *blob* : Blob ; *offset* : Integer ; *len* : Integer {; *filler* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB into which bytes will be inserted |
+| Blob | Blob | → | BLOB into which bytes will be inserted |
| offset | Integer | → | Starting position where bytes will be inserted |
| len | Integer | → | Number of bytes to be inserted |
| filler | Integer | → | Default byte value (0x00..0xFF) 0x00 if omitted |
@@ -37,6 +37,6 @@ Before the call, you pass in the *offset* parameter the position of the insertio
| | |
| --- | --- |
| Command number | 559 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/insert-in-list.md b/docs/commands-legacy/insert-in-list.md
index caee4ace7e598b..0054cb3bb5607c 100644
--- a/docs/commands-legacy/insert-in-list.md
+++ b/docs/commands-legacy/insert-in-list.md
@@ -5,7 +5,7 @@ slug: /commands/insert-in-list
displayed_sidebar: docs
---
-**INSERT IN LIST** ( {* ;} *list* ; *beforeItemRef* ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
**INSERT IN LIST** ( * ; *list* ; * ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
+**INSERT IN LIST** ( {* ;} *list* : Integer, Text ; *beforeItemRef* : Integer, Operator ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
**INSERT IN LIST** ( * ; *list* : Integer, Text ; * ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ The following code inserts an item (with no attached sublist) just before the cu
| | |
| --- | --- |
| Command number | 625 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/insert-menu-item.md b/docs/commands-legacy/insert-menu-item.md
index a7d5d5aab8c6b3..cc7b3fcd376e12 100644
--- a/docs/commands-legacy/insert-menu-item.md
+++ b/docs/commands-legacy/insert-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/insert-menu-item
displayed_sidebar: docs
---
-**INSERT MENU ITEM** ( *menu* ; *afterItem* ; *itemText* {; *subMenu* {; *process*}}{; *} )
+**INSERT MENU ITEM** ( *menu* : Integer ; *afterItem* : Integer ; *itemText* : Text {; *subMenu* : Text {; *process* : Integer}}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,7 +60,7 @@ The following example creates a menu consisting of two commands to which it assi
| | |
| --- | --- |
| Command number | 412 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/insert-string.md b/docs/commands-legacy/insert-string.md
index 50cef4caa02c31..fd52440b36eff2 100644
--- a/docs/commands-legacy/insert-string.md
+++ b/docs/commands-legacy/insert-string.md
@@ -5,7 +5,7 @@ slug: /commands/insert-string
displayed_sidebar: docs
---
-**Insert string** ( *source* ; *what* ; *where* ) : Text
+**Insert string** ( *source* : Text ; *what* : Text ; *where* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ The following example illustrates the use of **Insert string**. The results are
| | |
| --- | --- |
| Command number | 231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/int.md b/docs/commands-legacy/int.md
index 522c1af1d070e5..6b5bfed7913cdc 100644
--- a/docs/commands-legacy/int.md
+++ b/docs/commands-legacy/int.md
@@ -5,7 +5,7 @@ slug: /commands/int
displayed_sidebar: docs
---
-**Int** ( *number* ) : Real
+**Int** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ The following example illustrates how Int works for both positive and negative n
| | |
| --- | --- |
| Command number | 8 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/integer-to-blob.md b/docs/commands-legacy/integer-to-blob.md
index 21e2e275650a87..81ca25960dcd53 100644
--- a/docs/commands-legacy/integer-to-blob.md
+++ b/docs/commands-legacy/integer-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/integer-to-blob
displayed_sidebar: docs
---
-**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; offset} )
**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; *} )
+**INTEGER TO BLOB** ( *integer* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; offset} )
**INTEGER TO BLOB** ( *integer* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| integer| Integer | → | Integer value to write into the BLOB |
-| blob | Blob | → | BLOB to receive the Integer value |
+| Blob | Blob | → | BLOB to receive the Integer value |
| byteOrder| Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | Variable | ↔ | Offset expressed in bytes within the BLOB
New offset after writing if not * |
| * | Operator | → | * to append the value |
@@ -121,6 +121,6 @@ After executing this code:
| | |
| --- | --- |
| Command number | 548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/integrate-mirror-log-file.md b/docs/commands-legacy/integrate-mirror-log-file.md
index fb79cf6dff0932..31da8d6deb50fe 100644
--- a/docs/commands-legacy/integrate-mirror-log-file.md
+++ b/docs/commands-legacy/integrate-mirror-log-file.md
@@ -5,13 +5,12 @@ slug: /commands/integrate-mirror-log-file
displayed_sidebar: docs
---
-**INTEGRATE MIRROR LOG FILE** ( *pathName* ; *operationNum* {; *mode* {; *errObject*}} )
+**INTEGRATE MIRROR LOG FILE** ( *pathName* : Text ; *operationNum* : Real {; *mode* : Integer {; *errObject* : Object}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| pathName | Text | → | Name or pathname of the log file to be integrated |
-| operationNum | Real | → | Number of last operation integrated or -2 to integrate the whole file |
-| ← | New number of last operation integrated |
+| pathName | Text | → | Name or pathname of the log file to be integrated |
+| operationNum | Real | ↔ | *in:* Number of last operation integrated or -2 to integrate the whole file
*out:* New number of last operation integrated |
| mode | Integer | → | 0=strict mode (default mode), 1=auto repair mode |
| errObject | Object | ← | Missed operation(s) |
@@ -23,7 +22,7 @@ displayed_sidebar: docs
The **INTEGRATE MIRROR LOG FILE** integrates the log file designated by *pathName* into a 4D Server database, after the *operationNum* operation. The command accepts to integrate any log file into the database, even if it does not correspond to the the data file. This command is specifically intended for use in the context of a mirror database.
-**Note:** Since 4D v14, it is possible to use a log file as part of a "mirror" database: the "Use Log File" option can now be checked in the Database Settings of a 4D Server used as a logical mirror, thus allowing the implementation of a series of cascading mirror servers (see the *Setting up a logical mirror* section in the 4D Server manual).
+**Note:** It is possible to use a log file as part of a "mirror" database: the "Use Log File" option can now be checked in the Database Settings of a 4D Server used as a logical mirror, thus allowing the implementation of a series of cascading mirror servers (see the *Setting up a logical mirror* section in the 4D Server manual).
Unlike the existing *\_o\_INTEGRATE LOG FILE* command, at the end of its execution **INTEGRATE MIRROR LOG FILE** does not replace the current log file with the integrated one: the current log file of the database continues to be used. Accordingly, any changes made during integration are saved in the current log file.
@@ -31,7 +30,7 @@ In *pathName*, you pass an absolute or relative path to the database folder. If
In the *operationNum* variable, you pass the number of the last operation integrated, so that integration begins at the next operation. After integration, the value of the *operationNum* variable is updated with the number of the last operation integrated. You must save this variable and then reuse it directly as the *operationNum* parameter for the next integration operation. This allows you to follow on with subsequent log file integrations using **INTEGRATE MIRROR LOG FILE**. Pass -2 in the variable to integrate all the operations in the log file.
-***Compatibility note:* In versions of 4D prior to v15 R4,* **the operationNum parameter was optional; however, from now on, if* **the operationNum parameter is omitted, an error is generated. To restore the original functioning of your former code, you can just pass -2* **in the operationNum parameter variable.*
+**Compatibility note:** In versions of 4D prior to v15 R4, the *operationNum* parameter was optional; however, from now on, if the *operationNum* parameter is omitted, an error is generated. To restore the original functioning of your former code, you can just pass -2 in the *operationNum* parameter variable.
In *mode*, you pass the integration mode you want to activate. You can use one of the following constants found in the "*Backup and Restore*" theme:
@@ -105,7 +104,7 @@ If the integration is carried out correctly, the system variable OK is set to 1;
| | |
| --- | --- |
| Command number | 1312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/intersection.md b/docs/commands-legacy/intersection.md
index e66710cb16ce56..51020776f43f7a 100644
--- a/docs/commands-legacy/intersection.md
+++ b/docs/commands-legacy/intersection.md
@@ -5,7 +5,7 @@ slug: /commands/intersection
displayed_sidebar: docs
---
-**INTERSECTION** ( *set1* ; *set2* ; *resultSet* )
+**INTERSECTION** ( *set1* : Text ; *set2* : Text ; *resultSet* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ The following example finds the customers who are served by two sales representa
| | |
| --- | --- |
| Command number | 121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/invoke-action.md b/docs/commands-legacy/invoke-action.md
index 17126c3457c7ad..5126cf8a0677ea 100644
--- a/docs/commands-legacy/invoke-action.md
+++ b/docs/commands-legacy/invoke-action.md
@@ -5,7 +5,7 @@ slug: /commands/invoke-action
displayed_sidebar: docs
---
-**INVOKE ACTION** ( *action* {; *target*} )
+**INVOKE ACTION** ( *action* : Text {; *target* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ You want to execute a **Goto page** standard action (page 3) in the main form:
| | |
| --- | --- |
| Command number | 1439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-a-list.md b/docs/commands-legacy/is-a-list.md
index e741731c643033..fed3734bbb82e0 100644
--- a/docs/commands-legacy/is-a-list.md
+++ b/docs/commands-legacy/is-a-list.md
@@ -5,7 +5,7 @@ slug: /commands/is-a-list
displayed_sidebar: docs
---
-**Is a list** ( *list* ) : Boolean
+**Is a list** ( *list* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ See example for the [CLEAR LIST](clear-list.md) command.
| | |
| --- | --- |
| Command number | 621 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-a-variable.md b/docs/commands-legacy/is-a-variable.md
index 2d2c58b26c2f06..1d761bada482bf 100644
--- a/docs/commands-legacy/is-a-variable.md
+++ b/docs/commands-legacy/is-a-variable.md
@@ -5,7 +5,7 @@ slug: /commands/is-a-variable
displayed_sidebar: docs
---
-**Is a variable** ( *aPointer* ) : Boolean
+**Is a variable** ( *aPointer* : Pointer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ When you want to know the name of the variable being pointed to or the field num
| | |
| --- | --- |
| Command number | 294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-compiled-mode.md b/docs/commands-legacy/is-compiled-mode.md
index 0202d08ba78555..822be39b85e6c5 100644
--- a/docs/commands-legacy/is-compiled-mode.md
+++ b/docs/commands-legacy/is-compiled-mode.md
@@ -5,7 +5,7 @@ slug: /commands/is-compiled-mode
displayed_sidebar: docs
---
-**Is compiled mode** {( * )} : Boolean
+**Is compiled mode** ( * ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ In one of your routines, you include debugging code useful only when you are run
| | |
| --- | --- |
| Command number | 492 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-data-file-locked.md b/docs/commands-legacy/is-data-file-locked.md
index d0727dd547bdd4..eb3bcfd0e4688c 100644
--- a/docs/commands-legacy/is-data-file-locked.md
+++ b/docs/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ This method will prevent the opening of the database if the data file is locked:
| | |
| --- | --- |
| Command number | 716 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-editing-text.md b/docs/commands-legacy/is-editing-text.md
index 0515be02bd129a..0d574e2b24be0b 100644
--- a/docs/commands-legacy/is-editing-text.md
+++ b/docs/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ You want to allow the user to select a row beginning with the typed letter or nu
| | |
| --- | --- |
| Command number | 1744 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-field-number-valid.md b/docs/commands-legacy/is-field-number-valid.md
index 014a64ed98a70c..04a79d8e008e93 100644
--- a/docs/commands-legacy/is-field-number-valid.md
+++ b/docs/commands-legacy/is-field-number-valid.md
@@ -5,7 +5,7 @@ slug: /commands/is-field-number-valid
displayed_sidebar: docs
---
-**Is field number valid** ( *tablePtr* ; *fieldNum* ) : Boolean
**Is field number valid** ( *tableNum* ; *fieldNum* ) : Boolean
+**Is field number valid** ( *tablePtr* : Integer, Pointer ; *fieldNum* : Integer ) : Boolean
**Is field number valid** ( *tableNum* : Integer, Pointer ; *fieldNum* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ This command can be used to detect any field deletions, which create gaps in the
| | |
| --- | --- |
| Command number | 1000 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-field-value-null.md b/docs/commands-legacy/is-field-value-null.md
index 27779366c86d83..0e3f8889398da9 100644
--- a/docs/commands-legacy/is-field-value-null.md
+++ b/docs/commands-legacy/is-field-value-null.md
@@ -5,7 +5,7 @@ slug: /commands/is-field-value-null
displayed_sidebar: docs
---
-**Is field value Null** ( *aField* ) : Boolean
+**Is field value Null** ( *aField* : Field ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ The value returned by this command is only meaningful if the "*Map NULL values t
| | |
| --- | --- |
| Command number | 964 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-in-print-preview.md b/docs/commands-legacy/is-in-print-preview.md
index efd9a8c9c46a93..1ce917eba6203d 100644
--- a/docs/commands-legacy/is-in-print-preview.md
+++ b/docs/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ This example takes all types of printing into account:
| | |
| --- | --- |
| Command number | 1198 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-in-set.md b/docs/commands-legacy/is-in-set.md
index 0d4c35620fa60b..464d29ff409ce0 100644
--- a/docs/commands-legacy/is-in-set.md
+++ b/docs/commands-legacy/is-in-set.md
@@ -5,7 +5,7 @@ slug: /commands/is-in-set
displayed_sidebar: docs
---
-**Is in set** ( *set* ) : Boolean
+**Is in set** ( *set* : Text ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ The following example is a button object method. It tests to see whether or not
| | |
| --- | --- |
| Command number | 273 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-license-available.md b/docs/commands-legacy/is-license-available.md
index e5c4570e3c31ce..8400b669266225 100644
--- a/docs/commands-legacy/is-license-available.md
+++ b/docs/commands-legacy/is-license-available.md
@@ -5,7 +5,7 @@ slug: /commands/is-license-available
displayed_sidebar: docs
---
-**Is license available** {( *license* )} : Boolean
+**Is license available** ( *license* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ Is license available returns [False](false.md "False") if the plug-in is operati
| | |
| --- | --- |
| Command number | 714 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-macos.md b/docs/commands-legacy/is-macos.md
index aded6817af4112..3c9ca62c2e8b23 100644
--- a/docs/commands-legacy/is-macos.md
+++ b/docs/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ You want to determine if the current operating system is macOS:
| | |
| --- | --- |
| Command number | 1572 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-new-record.md b/docs/commands-legacy/is-new-record.md
index b3a3205930f279..36a8dc042f6596 100644
--- a/docs/commands-legacy/is-new-record.md
+++ b/docs/commands-legacy/is-new-record.md
@@ -5,7 +5,7 @@ slug: /commands/is-new-record
displayed_sidebar: docs
---
-**Is new record** {( *aTable* )} : Boolean
+**Is new record** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ The following two statements are identical. The second one is strongly advised s
| | |
| --- | --- |
| Command number | 668 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-nil-pointer.md b/docs/commands-legacy/is-nil-pointer.md
index 0805618824ca75..32f20aa5fcceda 100644
--- a/docs/commands-legacy/is-nil-pointer.md
+++ b/docs/commands-legacy/is-nil-pointer.md
@@ -5,7 +5,7 @@ slug: /commands/is-nil-pointer
displayed_sidebar: docs
---
-**Is nil pointer** ( *aPointer* ) : Boolean
+**Is nil pointer** ( *aPointer* : Pointer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ If you want to find out the name of the variable or the number of the field that
| | |
| --- | --- |
| Command number | 315 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-picture-file.md b/docs/commands-legacy/is-picture-file.md
index 3ec5819db9db52..6641a3a889e08f 100644
--- a/docs/commands-legacy/is-picture-file.md
+++ b/docs/commands-legacy/is-picture-file.md
@@ -5,7 +5,7 @@ slug: /commands/is-picture-file
displayed_sidebar: docs
---
-**Is picture file** ( *filePath* {; *} ) : Boolean
+**Is picture file** ( *filePath* : Text {; *} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ If you do not pass the *\** parameter, the command tests the file by looking for
| | |
| --- | --- |
| Command number | 1113 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-record-loaded.md b/docs/commands-legacy/is-record-loaded.md
index 1d6faf5fb88569..91d6512d5d86b6 100644
--- a/docs/commands-legacy/is-record-loaded.md
+++ b/docs/commands-legacy/is-record-loaded.md
@@ -5,7 +5,7 @@ slug: /commands/is-record-loaded
displayed_sidebar: docs
---
-**Is record loaded** {( *aTable* )} : Boolean
+**Is record loaded** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Instead of using the “Next record” or “Previous record” automatic action
| | |
| --- | --- |
| Command number | 669 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-table-number-valid.md b/docs/commands-legacy/is-table-number-valid.md
index 5dbf7fc6947bc2..333e5538e865cf 100644
--- a/docs/commands-legacy/is-table-number-valid.md
+++ b/docs/commands-legacy/is-table-number-valid.md
@@ -5,7 +5,7 @@ slug: /commands/is-table-number-valid
displayed_sidebar: docs
---
-**Is table number valid** ( *tableNum* ) : Boolean
+**Is table number valid** ( *tableNum* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ This command can be used to detect any table deletions, which create gaps in the
| | |
| --- | --- |
| Command number | 999 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/is-user-deleted.md b/docs/commands-legacy/is-user-deleted.md
index bad0418e5b7e30..601e6cbf5aed7c 100644
--- a/docs/commands-legacy/is-user-deleted.md
+++ b/docs/commands-legacy/is-user-deleted.md
@@ -5,7 +5,7 @@ slug: /commands/is-user-deleted
displayed_sidebar: docs
---
-**Is user deleted** ( *userNumber* ) : Boolean
+**Is user deleted** ( *userNumber* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,7 +35,7 @@ If you do not have the proper access privileges for calling Is user deleted or i
| | |
| --- | --- |
| Command number | 616 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/is-waiting-mouse-up.md b/docs/commands-legacy/is-waiting-mouse-up.md
index 70cd1515aef0fb..7f417411745037 100644
--- a/docs/commands-legacy/is-waiting-mouse-up.md
+++ b/docs/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ The following code can be used to manage a mouse tracking feature in a picture o
| | |
| --- | --- |
| Command number | 1422 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-window-maximized.md b/docs/commands-legacy/is-window-maximized.md
index 0f59281ac7a986..2257c8ab580607 100644
--- a/docs/commands-legacy/is-window-maximized.md
+++ b/docs/commands-legacy/is-window-maximized.md
@@ -5,7 +5,7 @@ slug: /commands/is-window-maximized
displayed_sidebar: docs
---
-**Is window maximized** ( *window* ) : Boolean
+**Is window maximized** ( *window* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ You want to switch between the maximized and previous states:
| | |
| --- | --- |
| Command number | 1830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-window-reduced.md b/docs/commands-legacy/is-window-reduced.md
index db3abb201efb0b..3cd181725695f0 100644
--- a/docs/commands-legacy/is-window-reduced.md
+++ b/docs/commands-legacy/is-window-reduced.md
@@ -5,7 +5,7 @@ slug: /commands/is-window-reduced
displayed_sidebar: docs
---
-**Is window reduced** ( *window* ) : Boolean
+**Is window reduced** ( *window* : Integer ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/is-windows.md b/docs/commands-legacy/is-windows.md
index 7c14e6ef40c2b3..fd3ab36e41b3a3 100644
--- a/docs/commands-legacy/is-windows.md
+++ b/docs/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ You want to determine if the current operating system is Windows:
| | |
| --- | --- |
| Command number | 1573 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-parse-array.md b/docs/commands-legacy/json-parse-array.md
index a585220da80de7..8e0bb5d05b73bd 100644
--- a/docs/commands-legacy/json-parse-array.md
+++ b/docs/commands-legacy/json-parse-array.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse-array
displayed_sidebar: docs
---
-**JSON PARSE ARRAY** ( *jsonString* ; *array* )
+**JSON PARSE ARRAY** ( *jsonString* ; *array* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| jsonText | Text | → | JSON string to parse |
+| jsonString | Text | → | JSON string to parse |
| array | Array | ← | Array containing result from parsing of JSON string |
@@ -64,6 +64,6 @@ In this example, data from fields of the records in a table are extracted and th
| | |
| --- | --- |
| Command number | 1219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-parse.md b/docs/commands-legacy/json-parse.md
index c09ccd0952e8a9..1f62a5677cb15d 100644
--- a/docs/commands-legacy/json-parse.md
+++ b/docs/commands-legacy/json-parse.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse
displayed_sidebar: docs
---
-**JSON Parse** ( *jsonString* {; *type*}{; *} ) : any
+**JSON Parse** ( *jsonString* : Text {; *type* : Integer}{; *} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| jsonText | Text | → | JSON string to parse |
+| jsonString | Text | → | JSON string to parse |
| type | Integer | → | Type in which to convert the values |
| * | Operator | → | Adds line position and offset of each property if returned value is an object |
| Function result | any | ← | Values extracted from JSON string |
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Command number | 1218 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-resolve-pointers.md b/docs/commands-legacy/json-resolve-pointers.md
index 71cde221bd9332..b033d24b017b88 100644
--- a/docs/commands-legacy/json-resolve-pointers.md
+++ b/docs/commands-legacy/json-resolve-pointers.md
@@ -5,12 +5,11 @@ slug: /commands/json-resolve-pointers
displayed_sidebar: docs
---
-**JSON Resolve pointers** ( *object* {; *options*} ) : Object
+**JSON Resolve pointers** ( *object* : Object {; *options* : Object} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| object | Object | → | Object containing JSON pointers to resolve |
-| ← | Object with JSON pointers resolved (only if result is an object) |
+| object | Object | ↔ | *in:* Object containing JSON pointers to resolve
*out:* Object with JSON pointers resolved (only if result is an object) |
| options | Object | → | Options for pointer resolution |
| Function result | Object | ← | Object containing the result of the processing |
@@ -237,6 +236,6 @@ If you execute:
| | |
| --- | --- |
| Command number | 1478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-stringify-array.md b/docs/commands-legacy/json-stringify-array.md
index d9fe11bd3ead66..067119e9d156ac 100644
--- a/docs/commands-legacy/json-stringify-array.md
+++ b/docs/commands-legacy/json-stringify-array.md
@@ -5,7 +5,7 @@ slug: /commands/json-stringify-array
displayed_sidebar: docs
---
-**JSON Stringify array** ( *array* {; *} ) : Text
+**JSON Stringify array** ( *array* : Text array, Real array, Boolean array, Pointer array, Object array {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -114,6 +114,6 @@ Conversion of a 4D selection in an object array:
| | |
| --- | --- |
| Command number | 1228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-stringify.md b/docs/commands-legacy/json-stringify.md
index fcfb55e8ba60fc..4d71ce7a7b0ae3 100644
--- a/docs/commands-legacy/json-stringify.md
+++ b/docs/commands-legacy/json-stringify.md
@@ -5,7 +5,7 @@ slug: /commands/json-stringify
displayed_sidebar: docs
---
-**JSON Stringify** ( *value* {; *} ) : Text
+**JSON Stringify** ( *value* : Object, any {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -179,6 +179,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Command number | 1217 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-to-selection.md b/docs/commands-legacy/json-to-selection.md
index d0dc3c2526923d..1954a6a688fda8 100644
--- a/docs/commands-legacy/json-to-selection.md
+++ b/docs/commands-legacy/json-to-selection.md
@@ -5,7 +5,7 @@ slug: /commands/json-to-selection
displayed_sidebar: docs
---
-**JSON TO SELECTION** ( *aTable* ; *jsonArray* )
+**JSON TO SELECTION** ( *aTable* : Table ; *jsonArray* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,6 +74,6 @@ Using the **JSON TO SELECTION** command to add records to the \[Company\] table:
| | |
| --- | --- |
| Command number | 1235 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/json-validate.md b/docs/commands-legacy/json-validate.md
index 0fbd11440a9733..d5b507707a4575 100644
--- a/docs/commands-legacy/json-validate.md
+++ b/docs/commands-legacy/json-validate.md
@@ -5,7 +5,7 @@ slug: /commands/json-validate
displayed_sidebar: docs
---
-**JSON Validate** ( *vJson* ; *vSchema* ) : Object
+**JSON Validate** ( *vJson* : Object ; *vSchema* : Object ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -110,6 +110,6 @@ You want to validate a JSON object with a schema and get the list of validation
| | |
| --- | --- |
| Command number | 1456 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/keystroke.md b/docs/commands-legacy/keystroke.md
index 44e22317016ef0..904f2d2bad8a22 100644
--- a/docs/commands-legacy/keystroke.md
+++ b/docs/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ Using the interprocess communication capabilities of 4D, you can similarily buil
| | |
| --- | --- |
| Command number | 390 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/kill-worker.md b/docs/commands-legacy/kill-worker.md
index ffbc42513ee466..d7fd381008458b 100644
--- a/docs/commands-legacy/kill-worker.md
+++ b/docs/commands-legacy/kill-worker.md
@@ -5,7 +5,7 @@ slug: /commands/kill-worker
displayed_sidebar: docs
---
-**KILL WORKER** {( *process* )}
+**KILL WORKER** ({ *process* : Text, Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ In the worker method (*theWorker*), you add some code to handle this situation:
| | |
| --- | --- |
| Command number | 1390 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/last-field-number.md b/docs/commands-legacy/last-field-number.md
index 55b4e493c3e8e5..6e1f506caa9751 100644
--- a/docs/commands-legacy/last-field-number.md
+++ b/docs/commands-legacy/last-field-number.md
@@ -5,7 +5,7 @@ slug: /commands/last-field-number
displayed_sidebar: docs
---
-**Last field number** ( *tableNum* ) : Integer
**Last field number** ( *tablePtr* ) : Integer
+**Last field number** ( *tableNum* : Integer, Pointer ) : Integer
**Last field number** ( *tablePtr* : Integer, Pointer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following project method builds the array *asFields*, consisting of the fiel
| | |
| --- | --- |
| Command number | 255 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/last-query-path.md b/docs/commands-legacy/last-query-path.md
index 4415bf0f98da39..138d1c801170e8 100644
--- a/docs/commands-legacy/last-query-path.md
+++ b/docs/commands-legacy/last-query-path.md
@@ -5,7 +5,7 @@ slug: /commands/last-query-path
displayed_sidebar: docs
---
-**Last query path** ( *descFormat* ) : Text
+**Last query path** ( *descFormat* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ The description of the last query path can be compared to the description of the
| | |
| --- | --- |
| Command number | 1045 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/last-query-plan.md b/docs/commands-legacy/last-query-plan.md
index bb9d6a30435809..5c3069ffe4a53e 100644
--- a/docs/commands-legacy/last-query-plan.md
+++ b/docs/commands-legacy/last-query-plan.md
@@ -5,7 +5,7 @@ slug: /commands/last-query-plan
displayed_sidebar: docs
---
-**Last query plan** ( *descFormat* ) : Text
+**Last query plan** ( *descFormat* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ The description of the last query plan can be compared to the description of the
| | |
| --- | --- |
| Command number | 1046 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/last-record.md b/docs/commands-legacy/last-record.md
index f4a6f663082957..3a4571db283d49 100644
--- a/docs/commands-legacy/last-record.md
+++ b/docs/commands-legacy/last-record.md
@@ -5,7 +5,7 @@ slug: /commands/last-record
displayed_sidebar: docs
---
-**LAST RECORD** {( *aTable* )}
+**LAST RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ The following example makes the last record of the \[People\] table the current
| | |
| --- | --- |
| Command number | 200 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/last-table-number.md b/docs/commands-legacy/last-table-number.md
index c6ef7fb629efcc..7e926a3ada2092 100644
--- a/docs/commands-legacy/last-table-number.md
+++ b/docs/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ The following example builds an array, named asTables*,* with the names of table
| | |
| --- | --- |
| Command number | 254 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/last-update-log-path.md b/docs/commands-legacy/last-update-log-path.md
index 9e414ddd35b3e6..9f3c69b87db0e6 100644
--- a/docs/commands-legacy/last-update-log-path.md
+++ b/docs/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ This command is intended to be used in an automatic update process for a merged
| | |
| --- | --- |
| Command number | 1301 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/launch-external-process.md b/docs/commands-legacy/launch-external-process.md
index d140aa4edca5e7..83529658c05555 100644
--- a/docs/commands-legacy/launch-external-process.md
+++ b/docs/commands-legacy/launch-external-process.md
@@ -5,7 +5,7 @@ slug: /commands/launch-external-process
displayed_sidebar: docs
---
-**LAUNCH EXTERNAL PROCESS** ( *fileName* {; *inputStream* {; *outputStream* {; *errorStream*}}}{; *pid*} )
+**LAUNCH EXTERNAL PROCESS** ( *fileName* : Text {; *inputStream* : Text, Blob {; *outputStream* : Text, Blob {; *errorStream* : Text, Blob}}}{; *pid* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -152,7 +152,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 811 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/ldap-login.md b/docs/commands-legacy/ldap-login.md
index ab1645f1eccb28..d99543ca1572fa 100644
--- a/docs/commands-legacy/ldap-login.md
+++ b/docs/commands-legacy/ldap-login.md
@@ -5,7 +5,7 @@ slug: /commands/ldap-login
displayed_sidebar: docs
---
-**LDAP LOGIN** ( *url* ; *login* ; *password* {; *digest*} )
+**LDAP LOGIN** ( *url* : Text ; *login* : Text ; *password* : Text {; *digest* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -101,6 +101,6 @@ This example tries to connect to an application:
| | |
| --- | --- |
| Command number | 1326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/ldap-logout.md b/docs/commands-legacy/ldap-logout.md
index 2fb9af6d94ee2c..b97ffc36a91fcd 100644
--- a/docs/commands-legacy/ldap-logout.md
+++ b/docs/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/ldap-search-all.md b/docs/commands-legacy/ldap-search-all.md
index 97a1d2f7504c69..705c9e326a76af 100644
--- a/docs/commands-legacy/ldap-search-all.md
+++ b/docs/commands-legacy/ldap-search-all.md
@@ -5,7 +5,7 @@ slug: /commands/ldap-search-all
displayed_sidebar: docs
---
-**LDAP SEARCH ALL** ( *dnRootEntry* ; *arrResult* ; *filter* {; *scope* {; *attributes* {; *attributesAsArray*}}} )
+**LDAP SEARCH ALL** ( *dnRootEntry* : Text ; *arrResult* : Object array ; *filter* : Text {; *scope* : Text {; *attributes* : Text array {; *attributesAsArray* : Boolean array}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -121,6 +121,6 @@ These examples illustrate the use of the *attributesAsArray* parameter:
| | |
| --- | --- |
| Command number | 1329 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/ldap-search.md b/docs/commands-legacy/ldap-search.md
index 65949e71589454..a833fd7ad7b5e7 100644
--- a/docs/commands-legacy/ldap-search.md
+++ b/docs/commands-legacy/ldap-search.md
@@ -5,7 +5,7 @@ slug: /commands/ldap-search
displayed_sidebar: docs
---
-**LDAP Search** ( *dnRootEntry* ; *filter* {; *scope* {; *attributes* {; *attributesAsArray*}}} ) : Object
+**LDAP Search** ( *dnRootEntry* : Text ; *filter* : Text {; *scope* : Text {; *attributes* : Text array {; *attributesAsArray* : Boolean array}}} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ We want to get an array of all entries found for the "memberOf" attribute:
| | |
| --- | --- |
| Command number | 1328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/length.md b/docs/commands-legacy/length.md
index 5261bc1b927beb..c25cded0b09e10 100644
--- a/docs/commands-legacy/length.md
+++ b/docs/commands-legacy/length.md
@@ -5,7 +5,7 @@ slug: /commands/length
displayed_sidebar: docs
---
-**Length** ( *string* ) : Integer
+**Length** ( *string* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ This example illustrates the use of **Length**. The results, described in the co
| | |
| --- | --- |
| Command number | 16 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/level.md b/docs/commands-legacy/level.md
index 5f6cf01f3d6ecc..ae793bc682bf2c 100644
--- a/docs/commands-legacy/level.md
+++ b/docs/commands-legacy/level.md
@@ -72,6 +72,6 @@ This example is a template for a form method. It shows each of the possible even
| | |
| --- | --- |
| Command number | 101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/license-usage.md b/docs/commands-legacy/license-usage.md
index be95d14fe684e2..0222a9539f0408 100644
--- a/docs/commands-legacy/license-usage.md
+++ b/docs/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ This table details the contents of the session object for REST sessions:
| | |
| --- | --- |
| Command number | 1782 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-item-parent.md b/docs/commands-legacy/list-item-parent.md
index f5862a36d44c3f..5ed05bd0a47a63 100644
--- a/docs/commands-legacy/list-item-parent.md
+++ b/docs/commands-legacy/list-item-parent.md
@@ -5,7 +5,7 @@ slug: /commands/list-item-parent
displayed_sidebar: docs
---
-**List item parent** ( {* ;} *list* ; *itemRef* ) : Integer
**List item parent** ( * ; *list* ; * ) : Integer
+**List item parent** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ) : Integer
**List item parent** ( * ; *list* : Integer, Text ; * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -76,6 +76,6 @@ The item reference numbers are set as follows:
| | |
| --- | --- |
| Command number | 633 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-item-position.md b/docs/commands-legacy/list-item-position.md
index 1e89539ce5fb99..a88b7aaa45e6f4 100644
--- a/docs/commands-legacy/list-item-position.md
+++ b/docs/commands-legacy/list-item-position.md
@@ -5,7 +5,7 @@ slug: /commands/list-item-position
displayed_sidebar: docs
---
-**List item position** ( {* ;} *list* ; *itemRef* ) : Integer
+**List item position** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ If the item does not exist, **List item position** returns 0.
| | |
| --- | --- |
| Command number | 629 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-of-choice-lists.md b/docs/commands-legacy/list-of-choice-lists.md
index 7fd50383e2c66a..da1891f0e83334 100644
--- a/docs/commands-legacy/list-of-choice-lists.md
+++ b/docs/commands-legacy/list-of-choice-lists.md
@@ -5,11 +5,11 @@ slug: /commands/list-of-choice-lists
displayed_sidebar: docs
---
-**LIST OF CHOICE LISTS** ( *numsArray* ; *namesArray* )
+**LIST OF CHOICE LISTS** ( *numsArray* : Integer array ; *namesArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| numsArray | Array integer | ← | Numbers of choice lists |
+| numsArray | Integer array | ← | Numbers of choice lists |
| namesArray | Text array | ← | Names of choice lists |
@@ -26,6 +26,6 @@ The numbers of choice lists correspond to their order of creation. In the list e
| | |
| --- | --- |
| Command number | 957 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-of-style-sheets.md b/docs/commands-legacy/list-of-style-sheets.md
index 39bbb62b5f8712..047753aeb8966c 100644
--- a/docs/commands-legacy/list-of-style-sheets.md
+++ b/docs/commands-legacy/list-of-style-sheets.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-style-sheets
displayed_sidebar: docs
---
-**LIST OF STYLE SHEETS** ( *arrStyleSheets* )
+**LIST OF STYLE SHEETS** ( *arrStyleSheets* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ If you execute the following code:
| | |
| --- | --- |
| Command number | 1255 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-to-array.md b/docs/commands-legacy/list-to-array.md
index f80a89ac491b3b..941c8fe23d3803 100644
--- a/docs/commands-legacy/list-to-array.md
+++ b/docs/commands-legacy/list-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/list-to-array
displayed_sidebar: docs
---
-**LIST TO ARRAY** ( *list* ; *array* {; *itemRefs*} )
+**LIST TO ARRAY** ( *list* : Text, Integer ; *array* : Array {; *itemRefs* : Array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,6 +90,6 @@ If you execute the following statement:
| | |
| --- | --- |
| Command number | 288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/list-to-blob.md b/docs/commands-legacy/list-to-blob.md
index a8510688231c06..62f2f7c1e71a6d 100644
--- a/docs/commands-legacy/list-to-blob.md
+++ b/docs/commands-legacy/list-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/list-to-blob
displayed_sidebar: docs
---
-**LIST TO BLOB** ( *list* ; *blob* {; *} )
+**LIST TO BLOB** ( *list* : Integer ; *blob* : Blob {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| list | Integer | → | Hierarchical list to store in the BLOB |
-| blob | Blob | → | BLOB to receive the Hierarchical list |
+| Blob | Blob | → | BLOB to receive the Hierarchical list |
| * | Operator | → | * to append the value |
@@ -51,7 +51,7 @@ See example for the command [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Command number | 556 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/listbox-collapse.md b/docs/commands-legacy/listbox-collapse.md
index 8b059e84ad6ed5..e53fb9f7a647fe 100644
--- a/docs/commands-legacy/listbox-collapse.md
+++ b/docs/commands-legacy/listbox-collapse.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-collapse
displayed_sidebar: docs
---
-**LISTBOX COLLAPSE** ( {* ;} *object* {; *recursive* {; *selector* {; *line* {; *column*}}}} )
+**LISTBOX COLLAPSE** ( * ; *object* : Text {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
**LISTBOX COLLAPSE** ( *object* : Field, Variable {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ This example collapses the first level of the break rows of the selection in the
| | |
| --- | --- |
| Command number | 1101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-delete-column.md b/docs/commands-legacy/listbox-delete-column.md
index 6b451353702beb..4230c7e7dbe1ea 100644
--- a/docs/commands-legacy/listbox-delete-column.md
+++ b/docs/commands-legacy/listbox-delete-column.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-delete-column
displayed_sidebar: docs
---
-**LISTBOX DELETE COLUMN** ( {* ;} *object* ; *colPosition* {; *number*} )
+**LISTBOX DELETE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer {; *number* : Integer} )
**LISTBOX DELETE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer {; *number* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ If the *colPosition* parameter is greater than the number of columns in the list
| | |
| --- | --- |
| Command number | 830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-delete-rows.md b/docs/commands-legacy/listbox-delete-rows.md
index 95b0b879069d92..05d17bb7927e0a 100644
--- a/docs/commands-legacy/listbox-delete-rows.md
+++ b/docs/commands-legacy/listbox-delete-rows.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-delete-rows
displayed_sidebar: docs
---
-**LISTBOX DELETE ROWS** ( {* ;} *object* ; *rowPosition* {; *numRows*} )
+**LISTBOX DELETE ROWS** ( * ; *object* : Text ; *rowPosition* : Integer {; *numRows* : Integer} )
**LISTBOX DELETE ROWS** ( *object* : Field, Variable ; *rowPosition* : Integer {; *numRows* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ If the *rowPosition* value is higher than the total number of rows in the list b
| | |
| --- | --- |
| Command number | 914 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/listbox-duplicate-column.md b/docs/commands-legacy/listbox-duplicate-column.md
index c67129447cd891..e1dff7c768fe07 100644
--- a/docs/commands-legacy/listbox-duplicate-column.md
+++ b/docs/commands-legacy/listbox-duplicate-column.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-duplicate-column
displayed_sidebar: docs
---
-**LISTBOX DUPLICATE COLUMN** ( {* ;} *object* ; *colPosition* ; *colName* ; *colVariable* ; *headerName* ; *headerVar* {; *footerName* ; *footerVar*} )
+**LISTBOX DUPLICATE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX DUPLICATE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -99,6 +99,6 @@ You want to duplicate a Boolean column and change its title:
| | |
| --- | --- |
| Command number | 1273 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-expand.md b/docs/commands-legacy/listbox-expand.md
index 87be2753f6b625..f609687f95a947 100644
--- a/docs/commands-legacy/listbox-expand.md
+++ b/docs/commands-legacy/listbox-expand.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-expand
displayed_sidebar: docs
---
-**LISTBOX EXPAND** ( {* ;} *object* {; *recursive* {; *selector* {; *line* {; *column*}}}} )
+**LISTBOX EXPAND** ( * ; *object* : Text {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
**LISTBOX EXPAND** ( *object* : Field, Variable {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,6 +85,6 @@ This example illustrates different ways of using the command. Given the followin
| | |
| --- | --- |
| Command number | 1100 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-array.md b/docs/commands-legacy/listbox-get-array.md
index 8cb0a280a3074f..4d97c648bfc6cc 100644
--- a/docs/commands-legacy/listbox-get-array.md
+++ b/docs/commands-legacy/listbox-get-array.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-array
displayed_sidebar: docs
---
-**LISTBOX Get array** ( {* ;} *object* ; *arrType* ) : Pointer
+**LISTBOX Get array** ( * ; *object* : Text ; *arrType* : Integer ) : Pointer
**LISTBOX Get array** ( *object* : Field, Variable ; *arrType* : Integer ) : Pointer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ Typical examples of use:
| | |
| --- | --- |
| Command number | 1278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-arrays.md b/docs/commands-legacy/listbox-get-arrays.md
index fd15697c36b19d..62bf732386b9f7 100644
--- a/docs/commands-legacy/listbox-get-arrays.md
+++ b/docs/commands-legacy/listbox-get-arrays.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-arrays
displayed_sidebar: docs
---
-**LISTBOX GET ARRAYS** ( {* ;} *object* ; *arrColNames* ; *arrHeaderNames* ; *arrColVars* ; *arrHeaderVars* ; *arrColsVisible* ; *arrStyles* {; *arrFooterNames* ; *arrFooterVars*} )
+**LISTBOX GET ARRAYS** ( * ; *object* : Text ; *arrColNames* : Text array ; *arrHeaderNames* : Text array ; *arrColVars* : Pointer array ; *arrHeaderVars* : Pointer array ; *arrColsVisible* : Boolean array ; *arrStyles* : Pointer array {; *arrFooterNames* : Text array ; *arrFooterVars* : Pointer array} )
**LISTBOX GET ARRAYS** ( *object* : Field, Variable ; *arrColNames* : Text array ; *arrHeaderNames* : Text array ; *arrColVars* : Pointer array ; *arrHeaderVars* : Pointer array ; *arrColsVisible* : Boolean array ; *arrStyles* : Pointer array {; *arrFooterNames* : Text array ; *arrFooterVars* : Pointer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ For record selection, collection or entity selection type list boxes, *arrStyles
| | |
| --- | --- |
| Command number | 832 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-auto-row-height.md b/docs/commands-legacy/listbox-get-auto-row-height.md
index a1df6a535da8d3..721c8cf592d1bb 100644
--- a/docs/commands-legacy/listbox-get-auto-row-height.md
+++ b/docs/commands-legacy/listbox-get-auto-row-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX Get auto row height** ( {* ;} *object* ; *selector* {; *unit*} ) : Integer
+**LISTBOX Get auto row height** ( * ; *object* : Text ; *selector* : Integer {; *unit* : Integer} ) : Integer
**LISTBOX Get auto row height** ( *object* : Field, Variable ; *selector* : Integer {; *unit* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ You want to get the maximum number of lines for a list box row:
| | |
| --- | --- |
| Command number | 1502 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-cell-coordinates.md b/docs/commands-legacy/listbox-get-cell-coordinates.md
index e4757257f6ab3c..b91ae020c12497 100644
--- a/docs/commands-legacy/listbox-get-cell-coordinates.md
+++ b/docs/commands-legacy/listbox-get-cell-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-cell-coordinates
displayed_sidebar: docs
---
-**LISTBOX GET CELL COORDINATES** ( {* ;} *object* ; *column* ; *row* ; *left* ; *top* ; *right* ; *bottom* )
+**LISTBOX GET CELL COORDINATES** ( * ; *object* : Text ; *column* : Integer ; *row* : Integer ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
**LISTBOX GET CELL COORDINATES** ( *object* : Field, Variable ; *column* : Integer ; *row* : Integer ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ You want to draw a red rectangle around the selected cell of a list box:
| | |
| --- | --- |
| Command number | 1330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-cell-position.md b/docs/commands-legacy/listbox-get-cell-position.md
index 50ca962d1c1883..874b330c94b7f6 100644
--- a/docs/commands-legacy/listbox-get-cell-position.md
+++ b/docs/commands-legacy/listbox-get-cell-position.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-cell-position
displayed_sidebar: docs
---
-**LISTBOX GET CELL POSITION** ( {* ;} *object* {; *X* ; *Y* }; *column* ; *row* {; *colVar*} )
+**LISTBOX GET CELL POSITION** ( * ; *object* : Text {; *X* : Real ; *Y* : Real }; *column* : Integer ; *row* : Integer {; *colVar* : Pointer} )
**LISTBOX GET CELL POSITION** ( *object* : Field, Variable {; *X* : Real ; *Y* : Real }; *column* : Integer ; *row* : Integer {; *colVar* : Pointer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ This command takes into account any selection or deselection actions whether by
| | |
| --- | --- |
| Command number | 971 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-column-formula.md b/docs/commands-legacy/listbox-get-column-formula.md
index df41504f6fcbff..0d2b5055ed9086 100644
--- a/docs/commands-legacy/listbox-get-column-formula.md
+++ b/docs/commands-legacy/listbox-get-column-formula.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-column-formula
displayed_sidebar: docs
---
-**LISTBOX Get column formula** ( {* ;} *object* ) : Text
+**LISTBOX Get column formula** ( * ; *object* : Text ) : Text
**LISTBOX Get column formula** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, this indicates that the *object* parame
| | |
| --- | --- |
| Command number | 1202 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-column-width.md b/docs/commands-legacy/listbox-get-column-width.md
index 92103f3ba792cd..4f9afa871ce721 100644
--- a/docs/commands-legacy/listbox-get-column-width.md
+++ b/docs/commands-legacy/listbox-get-column-width.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-column-width
displayed_sidebar: docs
---
-**LISTBOX Get column width** ( {* ;} *object* {; *minWidth* {; *maxWidth*}} ) : Integer
+**LISTBOX Get column width** ( * ; *object* : Text {; *minWidth* : Integer {; *maxWidth* : Integer}} ) : Integer
**LISTBOX Get column width** ( *object* : Field, Variable {; *minWidth* : Integer {; *maxWidth* : Integer}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ If no minimum and/or maximum value has been set for the column, the correspondin
| | |
| --- | --- |
| Command number | 834 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-footer-calculation.md b/docs/commands-legacy/listbox-get-footer-calculation.md
index e50f064bfe8c65..69fdfa69c7e0db 100644
--- a/docs/commands-legacy/listbox-get-footer-calculation.md
+++ b/docs/commands-legacy/listbox-get-footer-calculation.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX Get footer calculation** ( {* ;} *object* ) : Integer
+**LISTBOX Get footer calculation** ( * ; *object* : Text ) : Integer
**LISTBOX Get footer calculation** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ You can compare the value returned with the constants of the *Listbox Footer Cal
| | |
| --- | --- |
| Command number | 1150 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-footers-height.md b/docs/commands-legacy/listbox-get-footers-height.md
index 8d7b297da7efd8..f35287c125d1b4 100644
--- a/docs/commands-legacy/listbox-get-footers-height.md
+++ b/docs/commands-legacy/listbox-get-footers-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-footers-height
displayed_sidebar: docs
---
-**LISTBOX Get footers height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get footers height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get footers height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ By default, if you omit the *unit* parameter, the height of the row returned is
| | |
| --- | --- |
| Command number | 1146 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-grid-colors.md b/docs/commands-legacy/listbox-get-grid-colors.md
index 33180769ba6f6f..84f63b6a7989e7 100644
--- a/docs/commands-legacy/listbox-get-grid-colors.md
+++ b/docs/commands-legacy/listbox-get-grid-colors.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-grid-colors
displayed_sidebar: docs
---
-**LISTBOX GET GRID COLORS** ( {* ;} *object* ; *hColor* ; *vColor* )
+**LISTBOX GET GRID COLORS** ( * ; *object* : Text ; *hColor* : Text, Integer ; *vColor* : Text, Integer )
**LISTBOX GET GRID COLORS** ( *object* : Field, Variable ; *hColor* : Text, Integer ; *vColor* : Text, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ In *hColor* and *vColor*, the command returns the values of the RGB colors. The
| | |
| --- | --- |
| Command number | 1200 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-grid.md b/docs/commands-legacy/listbox-get-grid.md
index 670240c22fe30f..d17f40e03dc879 100644
--- a/docs/commands-legacy/listbox-get-grid.md
+++ b/docs/commands-legacy/listbox-get-grid.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-grid
displayed_sidebar: docs
---
-**LISTBOX GET GRID** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**LISTBOX GET GRID** ( * ; *object* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX GET GRID** ( *object* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ In *horizontal* and *vertical*, the command returns the value **True** or **Fals
| | |
| --- | --- |
| Command number | 1199 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-headers-height.md b/docs/commands-legacy/listbox-get-headers-height.md
index 2244929da2b89c..f5f0deaee26a20 100644
--- a/docs/commands-legacy/listbox-get-headers-height.md
+++ b/docs/commands-legacy/listbox-get-headers-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-headers-height
displayed_sidebar: docs
---
-**LISTBOX Get headers height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get headers height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get headers height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ By default, if you omit the *unit* parameter, the height of the row returned is
| | |
| --- | --- |
| Command number | 1144 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-hierarchy.md b/docs/commands-legacy/listbox-get-hierarchy.md
index 1cc89da7c0f742..022d91aa023d8f 100644
--- a/docs/commands-legacy/listbox-get-hierarchy.md
+++ b/docs/commands-legacy/listbox-get-hierarchy.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-hierarchy
displayed_sidebar: docs
---
-**LISTBOX GET HIERARCHY** ( {* ;} *object* ; *hierarchical* {; *hierarchy*} )
+**LISTBOX GET HIERARCHY** ( * ; *object* : Text ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
**LISTBOX GET HIERARCHY** ( *object* : Field, Variable ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ If the list box is in hierarchical mode, the command fills the *hierarchy* array
| | |
| --- | --- |
| Command number | 1099 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-locked-columns.md b/docs/commands-legacy/listbox-get-locked-columns.md
index 5c0b8e0cf50f0a..2faeb4b9b701f1 100644
--- a/docs/commands-legacy/listbox-get-locked-columns.md
+++ b/docs/commands-legacy/listbox-get-locked-columns.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-locked-columns
displayed_sidebar: docs
---
-**LISTBOX Get locked columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get locked columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get locked columns** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ However, the command does not take into account the visible/invisible status of
| | |
| --- | --- |
| Command number | 1152 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-number-of-columns.md b/docs/commands-legacy/listbox-get-number-of-columns.md
index 0c8b2508b6e6c7..b552eda2011451 100644
--- a/docs/commands-legacy/listbox-get-number-of-columns.md
+++ b/docs/commands-legacy/listbox-get-number-of-columns.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-number-of-columns
displayed_sidebar: docs
---
-**LISTBOX Get number of columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get number of columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get number of columns** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-number-of-rows.md b/docs/commands-legacy/listbox-get-number-of-rows.md
index 60794465a46e27..5e5cd75db7b031 100644
--- a/docs/commands-legacy/listbox-get-number-of-rows.md
+++ b/docs/commands-legacy/listbox-get-number-of-rows.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-number-of-rows
displayed_sidebar: docs
---
-**LISTBOX Get number of rows** ( {* ;} *object* ) : Integer
+**LISTBOX Get number of rows** ( * ; *object* : Text ) : Integer
**LISTBOX Get number of rows** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 915 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-objects.md b/docs/commands-legacy/listbox-get-objects.md
index 9618fea79a8bc3..5bbb7603cff2fe 100644
--- a/docs/commands-legacy/listbox-get-objects.md
+++ b/docs/commands-legacy/listbox-get-objects.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-objects
displayed_sidebar: docs
---
-**LISTBOX GET OBJECTS** ( {* ;} *object* ; *arrObjectNames* )
+**LISTBOX GET OBJECTS** ( * ; *object* : Text ; *arrObjectNames* : Text array )
**LISTBOX GET OBJECTS** ( *object* : Field, Variable ; *arrObjectNames* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ You want to load a form and get a list of all the objects of list boxes that it
| | |
| --- | --- |
| Command number | 1302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-print-information.md b/docs/commands-legacy/listbox-get-print-information.md
index 3f2165e49fe80d..ea88080c846fdf 100644
--- a/docs/commands-legacy/listbox-get-print-information.md
+++ b/docs/commands-legacy/listbox-get-print-information.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-print-information
displayed_sidebar: docs
---
-**LISTBOX GET PRINT INFORMATION** ( {* ;} *object* ; *selector* ; *info* )
+**LISTBOX GET PRINT INFORMATION** ( * ; *object* : Text ; *selector* : Integer ; *info* : Integer )
**LISTBOX GET PRINT INFORMATION** ( *object* : Field, Variable ; *selector* : Integer ; *info* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ Printing at least 500 rows of the list box, knowing that certain rows are hidden
| | |
| --- | --- |
| Command number | 1110 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-row-color-as-number.md b/docs/commands-legacy/listbox-get-row-color-as-number.md
index 9fba789147eb04..e826e91328fd13 100644
--- a/docs/commands-legacy/listbox-get-row-color-as-number.md
+++ b/docs/commands-legacy/listbox-get-row-color-as-number.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-row-color-as-number
displayed_sidebar: docs
---
-**LISTBOX Get row color as number** ( {* ;} *object* ; *row* {; *colorType*} ) : Integer
+**LISTBOX Get row color as number** ( * ; *object* : Text ; *row* : Integer {; *colorType* : Integer} ) : Integer
**LISTBOX Get row color as number** ( *object* : Field, Variable ; *row* : Integer {; *colorType* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ Given the following list box:
| | |
| --- | --- |
| Command number | 1271 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-row-color.md b/docs/commands-legacy/listbox-get-row-color.md
index 8a58192aed58a6..e343357ee12b7a 100644
--- a/docs/commands-legacy/listbox-get-row-color.md
+++ b/docs/commands-legacy/listbox-get-row-color.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-row-color
displayed_sidebar: docs
---
-**LISTBOX Get row color** ( {* ;} *object* ; *row* {; *colorType*} ) : Text
+**LISTBOX Get row color** ( * ; *object* : Text ; *row* : Integer {; *colorType* : Integer} ) : Text
**LISTBOX Get row color** ( *object* : Field, Variable ; *row* : Integer {; *colorType* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ Given the following list box:
| | |
| --- | --- |
| Command number | 1658 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-row-font-style.md b/docs/commands-legacy/listbox-get-row-font-style.md
index 2a7b81aac76b87..d130c4f2e93401 100644
--- a/docs/commands-legacy/listbox-get-row-font-style.md
+++ b/docs/commands-legacy/listbox-get-row-font-style.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-row-font-style
displayed_sidebar: docs
---
-**LISTBOX Get row font style** ( {* ;} *object* ; *row* ) : Integer
+**LISTBOX Get row font style** ( * ; *object* : Text ; *row* : Integer ) : Integer
**LISTBOX Get row font style** ( *object* : Field, Variable ; *row* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ Given the following list box:
| | |
| --- | --- |
| Command number | 1269 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-row-height.md b/docs/commands-legacy/listbox-get-row-height.md
index d5d13c48f30cda..f7577c2dfe7558 100644
--- a/docs/commands-legacy/listbox-get-row-height.md
+++ b/docs/commands-legacy/listbox-get-row-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-row-height
displayed_sidebar: docs
---
-**LISTBOX Get row height** ( {* ;} *object* ; *row* ) : Integer
+**LISTBOX Get row height** ( * ; *object* : Text ; *row* : Integer ) : Integer
**LISTBOX Get row height** ( *object* : Field, Variable ; *row* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ The returned height value is expressed:
| | |
| --- | --- |
| Command number | 1408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-rows-height.md b/docs/commands-legacy/listbox-get-rows-height.md
index d1541b0bb2083a..021ef9a76158a5 100644
--- a/docs/commands-legacy/listbox-get-rows-height.md
+++ b/docs/commands-legacy/listbox-get-rows-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-rows-height
displayed_sidebar: docs
---
-**LISTBOX Get rows height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get rows height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get rows height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ By default, if you omit the *unit* parameter, the row height returned is express
| | |
| --- | --- |
| Command number | 836 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-static-columns.md b/docs/commands-legacy/listbox-get-static-columns.md
index 5e5d88cf381cde..56ce9e76a9558a 100644
--- a/docs/commands-legacy/listbox-get-static-columns.md
+++ b/docs/commands-legacy/listbox-get-static-columns.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-static-columns
displayed_sidebar: docs
---
-**LISTBOX Get static columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get static columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get static columns** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ However, the command does not take into account the visible/invisible status of
| | |
| --- | --- |
| Command number | 1154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-get-table-source.md b/docs/commands-legacy/listbox-get-table-source.md
index c65f64c0d15b6b..ef73517ff3f4ac 100644
--- a/docs/commands-legacy/listbox-get-table-source.md
+++ b/docs/commands-legacy/listbox-get-table-source.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-get-table-source
displayed_sidebar: docs
---
-**LISTBOX GET TABLE SOURCE** ( {* ;} *object* ; *tableNum* {; *name* {; *highlightName*}} )
+**LISTBOX GET TABLE SOURCE** ( * ; *object* : Text ; *tableNum* : Integer {; *name* : Text {; *highlightName* : Text}} )
**LISTBOX GET TABLE SOURCE** ( *object* : Field, Variable ; *tableNum* : Integer {; *name* : Text {; *highlightName* : Text}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ If the list box is associated with arrays, *tableNum* returns -1 and *name*, if
| | |
| --- | --- |
| Command number | 1014 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-insert-column-formula.md b/docs/commands-legacy/listbox-insert-column-formula.md
index b606a3e1a9ae0e..034665bf39722e 100644
--- a/docs/commands-legacy/listbox-insert-column-formula.md
+++ b/docs/commands-legacy/listbox-insert-column-formula.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-insert-column-formula
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN FORMULA** ( {* ;} *object* ; *colPosition* ; *colName* ; *formula* ; *dataType* ; *headerName* ; *headerVar* {; *footerName* ; *footerVar*} )
+**LISTBOX INSERT COLUMN FORMULA** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *formula* : Text ; *dataType* : Integer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN FORMULA** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *formula* : Text ; *dataType* : Integer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -124,6 +124,6 @@ The column is added to the list box:
| | |
| --- | --- |
| Command number | 970 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-insert-column.md b/docs/commands-legacy/listbox-insert-column.md
index 5c64739d86a610..446eaae7718f67 100644
--- a/docs/commands-legacy/listbox-insert-column.md
+++ b/docs/commands-legacy/listbox-insert-column.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-insert-column
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN** ( {* ;} *object* ; *colPosition* ; *colName* ; *colVariable* ; *headerName* ; *headerVar* {; *footerName* ; *footerVar*} )
+**LISTBOX INSERT COLUMN** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,6 +102,6 @@ You want to insert a column dynamically into an array type list box and define i
| | |
| --- | --- |
| Command number | 829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-insert-rows.md b/docs/commands-legacy/listbox-insert-rows.md
index ecfbf161b76c0a..cf11bbdf543785 100644
--- a/docs/commands-legacy/listbox-insert-rows.md
+++ b/docs/commands-legacy/listbox-insert-rows.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-insert-rows
displayed_sidebar: docs
---
-**LISTBOX INSERT ROWS** ( {* ;} *object* ; *rowPosition* {; *numRows*} )
+**LISTBOX INSERT ROWS** ( * ; *object* : Text ; *rowPosition* : Integer {; *numRows* : Integer} )
**LISTBOX INSERT ROWS** ( *object* : Field, Variable ; *rowPosition* : Integer {; *numRows* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If the *rowPosition* value is higher than the total number of rows in the list b
| | |
| --- | --- |
| Command number | 913 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/listbox-move-column.md b/docs/commands-legacy/listbox-move-column.md
index b14e36a8972931..281ace6741f523 100644
--- a/docs/commands-legacy/listbox-move-column.md
+++ b/docs/commands-legacy/listbox-move-column.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-move-column
displayed_sidebar: docs
---
-**LISTBOX MOVE COLUMN** ( {* ;} *object* ; *colPosition* )
+**LISTBOX MOVE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer )
**LISTBOX MOVE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ You want to swap the 2nd and 3rd columns of the list box:
| | |
| --- | --- |
| Command number | 1274 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-moved-column-number.md b/docs/commands-legacy/listbox-moved-column-number.md
index 45bad1318771dd..3151b9dc80386f 100644
--- a/docs/commands-legacy/listbox-moved-column-number.md
+++ b/docs/commands-legacy/listbox-moved-column-number.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-moved-column-number
displayed_sidebar: docs
---
-**LISTBOX MOVED COLUMN NUMBER** ( {* ;} *object* ; *oldPosition* ; *newPosition* )
+**LISTBOX MOVED COLUMN NUMBER** ( * ; *object* : Text ; *oldPosition* : Integer ; *newPosition* : Integer )
**LISTBOX MOVED COLUMN NUMBER** ( *object* : Field, Variable ; *oldPosition* : Integer ; *newPosition* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ This command must be used with the form event On Column Moved (see the [Form eve
| | |
| --- | --- |
| Command number | 844 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-moved-row-number.md b/docs/commands-legacy/listbox-moved-row-number.md
index c80fd8fac79aac..2a6cca76f64978 100644
--- a/docs/commands-legacy/listbox-moved-row-number.md
+++ b/docs/commands-legacy/listbox-moved-row-number.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-moved-row-number
displayed_sidebar: docs
---
-**LISTBOX MOVED ROW NUMBER** ( {* ;} *object* ; *oldPosition* ; *newPosition* )
+**LISTBOX MOVED ROW NUMBER** ( * ; *object* : Text ; *oldPosition* : Integer ; *newPosition* : Integer )
**LISTBOX MOVED ROW NUMBER** ( *object* : Field, Variable ; *oldPosition* : Integer ; *newPosition* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ This command must be used with the form event On Row Moved (see the [Form event
| | |
| --- | --- |
| Command number | 837 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-select-break.md b/docs/commands-legacy/listbox-select-break.md
index d2e88f88b9ca8f..41da67fa6347d8 100644
--- a/docs/commands-legacy/listbox-select-break.md
+++ b/docs/commands-legacy/listbox-select-break.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-select-break
displayed_sidebar: docs
---
-**LISTBOX SELECT BREAK** ( {* ;} *object* ; *row* ; *column* {; *action*} )
+**LISTBOX SELECT BREAK** ( * ; *object* : Text ; *row* : Integer ; *column* : Integer {; *action* : Integer} )
**LISTBOX SELECT BREAK** ( *object* : Field, Variable ; *row* : Integer ; *column* : Integer {; *action* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ Here is the result:
| | |
| --- | --- |
| Command number | 1117 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-select-row.md b/docs/commands-legacy/listbox-select-row.md
index 3424bf7f3dd77d..725ee6d55158ef 100644
--- a/docs/commands-legacy/listbox-select-row.md
+++ b/docs/commands-legacy/listbox-select-row.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-select-row
displayed_sidebar: docs
---
-**LISTBOX SELECT ROW** ( {* ;} *object* ; *rowPosition* {; *action*} )
+**LISTBOX SELECT ROW** ( * ; *object* : Text ; *rowPosition* : Integer {; *action* : Integer} )
**LISTBOX SELECT ROW** ( *object* : Field, Variable ; *rowPosition* : Integer {; *action* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ After execution of the method, the arrays are synchronized: if the source array
| | |
| --- | --- |
| Command number | 912 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-select-rows.md b/docs/commands-legacy/listbox-select-rows.md
index 397e2013cee407..0c2040fbbfd2bf 100644
--- a/docs/commands-legacy/listbox-select-rows.md
+++ b/docs/commands-legacy/listbox-select-rows.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-select-rows
displayed_sidebar: docs
---
-**LISTBOX SELECT ROWS** ( {* ;} *object* ; *selection* {; *action*} )
+**LISTBOX SELECT ROWS** ( * ; *object* : Text ; *selection* : Object, Collection {; *action* : Integer} )
**LISTBOX SELECT ROWS** ( *object* : Field, Variable ; *selection* : Object, Collection {; *action* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ Example with a collection of objects:
| | |
| --- | --- |
| Command number | 1715 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-array.md b/docs/commands-legacy/listbox-set-array.md
index 888c810dda8ca8..88c2520f0f2dda 100644
--- a/docs/commands-legacy/listbox-set-array.md
+++ b/docs/commands-legacy/listbox-set-array.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-array
displayed_sidebar: docs
---
-**LISTBOX SET ARRAY** ( {* ;} *object* ; *arrType* ; *arrPtr* )
+**LISTBOX SET ARRAY** ( * ; *object* : Text ; *arrType* : Integer ; *arrPtr* : Pointer )
**LISTBOX SET ARRAY** ( *object* : Field, Variable ; *arrType* : Integer ; *arrPtr* : Pointer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ You want to set a row height array for a list box:
| | |
| --- | --- |
| Command number | 1279 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-auto-row-height.md b/docs/commands-legacy/listbox-set-auto-row-height.md
index 7c4b91d6de74b8..450faffd42ce4d 100644
--- a/docs/commands-legacy/listbox-set-auto-row-height.md
+++ b/docs/commands-legacy/listbox-set-auto-row-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX SET AUTO ROW HEIGHT** ( {* ;} *object* ; *selector* ; *value* ; *unit* )
+**LISTBOX SET AUTO ROW HEIGHT** ( * ; *object* : Text ; *selector* : Integer ; *value* : Integer ; *unit* : Integer )
**LISTBOX SET AUTO ROW HEIGHT** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Integer ; *unit* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ You want to set the minimum and maximum heights for a list box with an automatic
| | |
| --- | --- |
| Command number | 1501 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-column-formula.md b/docs/commands-legacy/listbox-set-column-formula.md
index b8aa11cd527848..c045359a6dc35b 100644
--- a/docs/commands-legacy/listbox-set-column-formula.md
+++ b/docs/commands-legacy/listbox-set-column-formula.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-column-formula
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN FORMULA** ( {* ;} *object* ; *formula* ; *dataType* )
+**LISTBOX SET COLUMN FORMULA** ( * ; *object* : Text ; *formula* : Text ; *dataType* : Integer )
**LISTBOX SET COLUMN FORMULA** ( *object* : Field, Variable ; *formula* : Text ; *dataType* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ The *dataType* parameter designates the type of data resulting from the executio
| | |
| --- | --- |
| Command number | 1203 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-column-width.md b/docs/commands-legacy/listbox-set-column-width.md
index adc71667f24ba3..21e1c9f2eae61d 100644
--- a/docs/commands-legacy/listbox-set-column-width.md
+++ b/docs/commands-legacy/listbox-set-column-width.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-column-width
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN WIDTH** ( {* ;} *object* ; *width* {; *minWidth* {; *maxWidth*}} )
+**LISTBOX SET COLUMN WIDTH** ( * ; *object* : Text ; *width* : Integer {; *minWidth* : Integer {; *maxWidth* : Integer}} )
**LISTBOX SET COLUMN WIDTH** ( *object* : Field, Variable ; *width* : Integer {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ The optional *minWidth* and *maxWidth* parameters can be used to set limits for
| | |
| --- | --- |
| Command number | 833 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-footer-calculation.md b/docs/commands-legacy/listbox-set-footer-calculation.md
index cc6373512d0d90..d119db8beff2fb 100644
--- a/docs/commands-legacy/listbox-set-footer-calculation.md
+++ b/docs/commands-legacy/listbox-set-footer-calculation.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX SET FOOTER CALCULATION** ( {* ;} *object* ; *calculation* )
+**LISTBOX SET FOOTER CALCULATION** ( * ; *object* : Text ; *calculation* : Integer )
**LISTBOX SET FOOTER CALCULATION** ( *object* : Field, Variable ; *calculation* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ If the data type of a column or of even one column of the list box (when object
| | |
| --- | --- |
| Command number | 1140 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-footers-height.md b/docs/commands-legacy/listbox-set-footers-height.md
index c640a568165405..5562b299b94311 100644
--- a/docs/commands-legacy/listbox-set-footers-height.md
+++ b/docs/commands-legacy/listbox-set-footers-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-footers-height
displayed_sidebar: docs
---
-**LISTBOX SET FOOTERS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET FOOTERS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET FOOTERS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Pass the height to set in the *height* parameter. By default, if you omit the *u
| | |
| --- | --- |
| Command number | 1145 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-grid-color.md b/docs/commands-legacy/listbox-set-grid-color.md
index b4f75ce7842c3a..69e6e8442c5f0b 100644
--- a/docs/commands-legacy/listbox-set-grid-color.md
+++ b/docs/commands-legacy/listbox-set-grid-color.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-grid-color
displayed_sidebar: docs
---
-**LISTBOX SET GRID COLOR** ( {* ;} *object* ; *color* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID COLOR** ( * ; *object* : Text ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID COLOR** ( *object* : Field, Variable ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The *horizontal* and *vertical* parameters allow you to set the grid lines to wh
| | |
| --- | --- |
| Command number | 842 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-grid.md b/docs/commands-legacy/listbox-set-grid.md
index 77ebd0ab7ad639..245ee007aee92f 100644
--- a/docs/commands-legacy/listbox-set-grid.md
+++ b/docs/commands-legacy/listbox-set-grid.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-grid
displayed_sidebar: docs
---
-**LISTBOX SET GRID** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID** ( * ; *object* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID** ( *object* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ Pass the Boolean values in *horizontal* and *vertical* that indicate if the corr
| | |
| --- | --- |
| Command number | 841 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-headers-height.md b/docs/commands-legacy/listbox-set-headers-height.md
index e5f7a8aa8dcb6d..9cd14d018141cf 100644
--- a/docs/commands-legacy/listbox-set-headers-height.md
+++ b/docs/commands-legacy/listbox-set-headers-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-headers-height
displayed_sidebar: docs
---
-**LISTBOX SET HEADERS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET HEADERS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET HEADERS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ Headers must respect the minimum height set by the system. This height is 24 pix
| | |
| --- | --- |
| Command number | 1143 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-hierarchy.md b/docs/commands-legacy/listbox-set-hierarchy.md
index a37ffe94f787cb..285a14d703cb76 100644
--- a/docs/commands-legacy/listbox-set-hierarchy.md
+++ b/docs/commands-legacy/listbox-set-hierarchy.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-hierarchy
displayed_sidebar: docs
---
-**LISTBOX SET HIERARCHY** ( {* ;} *object* ; *hierarchical* {; *hierarchy*} )
+**LISTBOX SET HIERARCHY** ( * ; *object* : Text ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
**LISTBOX SET HIERARCHY** ( *object* : Field, Variable ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ Definition of the aCountry, aRegion and aCity arrays as the hierarchy of a list
| | |
| --- | --- |
| Command number | 1098 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-locked-columns.md b/docs/commands-legacy/listbox-set-locked-columns.md
index 888cfb06dccd0b..cd127fb9c4f95a 100644
--- a/docs/commands-legacy/listbox-set-locked-columns.md
+++ b/docs/commands-legacy/listbox-set-locked-columns.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-locked-columns
displayed_sidebar: docs
---
-**LISTBOX SET LOCKED COLUMNS** ( {* ;} *object* ; *numColumns* )
+**LISTBOX SET LOCKED COLUMNS** ( * ; *object* : Text ; *numColumns* : Integer )
**LISTBOX SET LOCKED COLUMNS** ( *object* : Field, Variable ; *numColumns* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ To remove the column locking, pass 0 or a negative value in *numColumns*.
| | |
| --- | --- |
| Command number | 1151 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-row-color.md b/docs/commands-legacy/listbox-set-row-color.md
index b734a99fb06c1f..1fad39c45a1ccf 100644
--- a/docs/commands-legacy/listbox-set-row-color.md
+++ b/docs/commands-legacy/listbox-set-row-color.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-row-color
displayed_sidebar: docs
---
-**LISTBOX SET ROW COLOR** ( {* ;} *object* ; *row* ; *color* {; *colorType*} )
+**LISTBOX SET ROW COLOR** ( * ; *object* : Text ; *row* : Integer ; *color* : Text, Integer {; *colorType* : Integer} )
**LISTBOX SET ROW COLOR** ( *object* : Field, Variable ; *row* : Integer ; *color* : Text, Integer {; *colorType* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ In an array type list box, we want to set colors for a row and for one cell in t
| | |
| --- | --- |
| Command number | 1270 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-row-font-style.md b/docs/commands-legacy/listbox-set-row-font-style.md
index 45457153e181f3..287fa734d8beca 100644
--- a/docs/commands-legacy/listbox-set-row-font-style.md
+++ b/docs/commands-legacy/listbox-set-row-font-style.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-row-font-style
displayed_sidebar: docs
---
-**LISTBOX SET ROW FONT STYLE** ( {* ;} *object* ; *row* ; *style* )
+**LISTBOX SET ROW FONT STYLE** ( * ; *object* : Text ; *row* : Integer ; *style* : Integer )
**LISTBOX SET ROW FONT STYLE** ( *object* : Field, Variable ; *row* : Integer ; *style* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -83,6 +83,6 @@ After the second statement, all the cells of the third row change to underlined
| | |
| --- | --- |
| Command number | 1268 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-row-height.md b/docs/commands-legacy/listbox-set-row-height.md
index 165979d12a597f..0bb9bb69f09db1 100644
--- a/docs/commands-legacy/listbox-set-row-height.md
+++ b/docs/commands-legacy/listbox-set-row-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-row-height
displayed_sidebar: docs
---
-**LISTBOX SET ROW HEIGHT** ( {* ;} *object* ; *row* ; *height* )
+**LISTBOX SET ROW HEIGHT** ( * ; *object* : Text ; *row* : Integer ; *height* : Integer )
**LISTBOX SET ROW HEIGHT** ( *object* : Field, Variable ; *row* : Integer ; *height* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -88,6 +88,6 @@ On the other hand, if the code below is executed subsequently…
| | |
| --- | --- |
| Command number | 1409 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-rows-height.md b/docs/commands-legacy/listbox-set-rows-height.md
index 2b9a162a6f7ed1..9d12bde3976a0d 100644
--- a/docs/commands-legacy/listbox-set-rows-height.md
+++ b/docs/commands-legacy/listbox-set-rows-height.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-rows-height
displayed_sidebar: docs
---
-**LISTBOX SET ROWS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET ROWS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET ROWS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ By default, if you omit the *unit* parameter, the height is expressed in pixels.
| | |
| --- | --- |
| Command number | 835 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-static-columns.md b/docs/commands-legacy/listbox-set-static-columns.md
index f86af09fa07e85..92c5dcbf310d00 100644
--- a/docs/commands-legacy/listbox-set-static-columns.md
+++ b/docs/commands-legacy/listbox-set-static-columns.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-static-columns
displayed_sidebar: docs
---
-**LISTBOX SET STATIC COLUMNS** ( {* ;} *object* ; *numColumn* )
+**LISTBOX SET STATIC COLUMNS** ( * ; *object* : Text ; *numColumn* : Integer )
**LISTBOX SET STATIC COLUMNS** ( *object* : Field, Variable ; *numColumn* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ Static columns cannot be moved within the list box.
| | |
| --- | --- |
| Command number | 1153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-set-table-source.md b/docs/commands-legacy/listbox-set-table-source.md
index 459d61c0647376..f794f228e3ad73 100644
--- a/docs/commands-legacy/listbox-set-table-source.md
+++ b/docs/commands-legacy/listbox-set-table-source.md
@@ -5,7 +5,7 @@ slug: /commands/listbox-set-table-source
displayed_sidebar: docs
---
-**LISTBOX SET TABLE SOURCE** ( {* ;} *object* ; *tableNum* {; *highlightName*} )
**LISTBOX SET TABLE SOURCE** ( {* ;} *object* ; *selName* {; *highlightName*} )
+**LISTBOX SET TABLE SOURCE** ( * ; *object* : Text ; *tableNum* : Integer, Text {; *highlightName* : Text} )
**LISTBOX SET TABLE SOURCE** ( *object* : Field, Variable ; *tableNum* : Integer, Text {; *highlightName* : Text} )
**LISTBOX SET TABLE SOURCE** ( * ; *object* : Text ; *selName* : Integer, Text {; *highlightName* : Text} )
**LISTBOX SET TABLE SOURCE** ( *object* : Field, Variable ; *selName* : Integer, Text {; *highlightName* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ If the listbox already contains columns, their contents will be updated after th
| | |
| --- | --- |
| Command number | 1013 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/listbox-sort-columns.md b/docs/commands-legacy/listbox-sort-columns.md
index fef6a09e00a3be..245bac76da3384 100644
--- a/docs/commands-legacy/listbox-sort-columns.md
+++ b/docs/commands-legacy/listbox-sort-columns.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-sort-columns
displayed_sidebar: docs
---
-**LISTBOX SORT COLUMNS** ( {* ;} *object* ; *colNum* ; *order* {; *colNum2* ; *order2* ; ... ; *colNumN* ; *orderN*} )
+**LISTBOX SORT COLUMNS** ( * ; *object* : Text ; *colNum* : Integer ; *order* : Operator {; ...(*colNum* : Integer, *order* : Operator)} )
**LISTBOX SORT COLUMNS** ( *object* : Field, Variable ; *colNum* : Integer ; *order* : Operator {; ...(*colNum* : Integer, *order* : Operator)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string) If omitted, object is a variable |
| object | any | → | Object name (if * is specified) or Variable (if * is omitted) |
| colNum | Integer | → | Column number(s) to sort |
-| order | * | → | ">" to sort in ascending order or "<" to sort in descending order |
+| order | Operator | → | `>` to sort in ascending order or `<` to sort in descending order |
@@ -40,6 +40,6 @@ In conformity with the principle of list box operation, the columns are synchron
| | |
| --- | --- |
| Command number | 916 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/load-4d-view-document.md b/docs/commands-legacy/load-4d-view-document.md
index eb53d03b4fd0a3..05dbcdf7741f7c 100644
--- a/docs/commands-legacy/load-4d-view-document.md
+++ b/docs/commands-legacy/load-4d-view-document.md
@@ -5,7 +5,7 @@ slug: /commands/load-4d-view-document
displayed_sidebar: docs
---
-**Load 4D View document** ( *4DViewDocument* ) : Object
+**Load 4D View document** ( *4DViewDocument* : Blob ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -201,6 +201,6 @@ You will get the following result (stringified object):
| | |
| --- | --- |
| Command number | 1528 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/load-list.md b/docs/commands-legacy/load-list.md
index fe8cc2f3482b10..f02e6c294ce0c9 100644
--- a/docs/commands-legacy/load-list.md
+++ b/docs/commands-legacy/load-list.md
@@ -5,7 +5,7 @@ slug: /commands/load-list
displayed_sidebar: docs
---
-**Load list** ( *listName* ) : Integer
+**Load list** ( *listName* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ You create a database for the international market and you need to switch to dif
| | |
| --- | --- |
| Command number | 383 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/load-record.md b/docs/commands-legacy/load-record.md
index d037af2c8b0083..90094e4f1a2443 100644
--- a/docs/commands-legacy/load-record.md
+++ b/docs/commands-legacy/load-record.md
@@ -5,7 +5,7 @@ slug: /commands/load-record
displayed_sidebar: docs
---
-**LOAD RECORD** {( *aTable* )}
+**LOAD RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ In multi-user and multi-process environments, when you need to modify an existin
| | |
| --- | --- |
| Command number | 52 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/load-set.md b/docs/commands-legacy/load-set.md
index 79473c6660652a..fd1da73bad00c2 100644
--- a/docs/commands-legacy/load-set.md
+++ b/docs/commands-legacy/load-set.md
@@ -5,7 +5,7 @@ slug: /commands/load-set
displayed_sidebar: docs
---
-**LOAD SET** ( {*aTable* ;} *set* ; *document* )
+**LOAD SET** ( {*aTable* : Table ;} *set* : Text ; *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ If the user clicks Cancel in the Open File dialog box, or there is an error duri
| | |
| --- | --- |
| Command number | 185 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/load-variables.md b/docs/commands-legacy/load-variables.md
index 04ac45b4389176..05c968a68b7438 100644
--- a/docs/commands-legacy/load-variables.md
+++ b/docs/commands-legacy/load-variables.md
@@ -5,7 +5,7 @@ slug: /commands/load-variables
displayed_sidebar: docs
---
-**LOAD VARIABLES** ( *document* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**LOAD VARIABLES** ( *document* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,7 +51,7 @@ If the variables are loaded properly, the OK system variable is set to 1; otherw
| | |
| --- | --- |
| Command number | 74 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/localized-document-path.md b/docs/commands-legacy/localized-document-path.md
index 7f584cb234a2e4..413482ea36a1f2 100644
--- a/docs/commands-legacy/localized-document-path.md
+++ b/docs/commands-legacy/localized-document-path.md
@@ -5,7 +5,7 @@ slug: /commands/localized-document-path
displayed_sidebar: docs
---
-**Localized document path** ( *relativePath* ) : Text
+**Localized document path** ( *relativePath* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,6 +72,6 @@ If the current language is, for example, French Canadian (fr-ca), the command re
| | |
| --- | --- |
| Command number | 1105 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/localized-string.md b/docs/commands-legacy/localized-string.md
index 3103a28b674e8e..7e5e15fdf80404 100644
--- a/docs/commands-legacy/localized-string.md
+++ b/docs/commands-legacy/localized-string.md
@@ -5,7 +5,7 @@ slug: /commands/localized-string
displayed_sidebar: docs
---
-**Localized string** ( *resName* ) : Text
+**Localized string** ( *resName* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,7 +60,7 @@ If the command is executed correctly, the OK variable is set to 1\. If *resName*
| | |
| --- | --- |
| Command number | 991 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/locked-by.md b/docs/commands-legacy/locked-by.md
index 8d9b136777189c..ee497c180750a4 100644
--- a/docs/commands-legacy/locked-by.md
+++ b/docs/commands-legacy/locked-by.md
@@ -5,7 +5,7 @@ slug: /commands/locked-by
displayed_sidebar: docs
---
-**LOCKED BY** ( {*aTable* ;} *process* ; *4Duser* ; *sessionUser* ; *processName* )
+**LOCKED BY** ( {*aTable* : Table ;} *process* : Integer ; *4Duser* : Text ; *sessionUser* : Text ; *processName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ If the record has been locked by a *$lock REST request*:
| | |
| --- | --- |
| Command number | 353 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/locked-records-info.md b/docs/commands-legacy/locked-records-info.md
index edad18cfc67ae0..001dea1b569438 100644
--- a/docs/commands-legacy/locked-records-info.md
+++ b/docs/commands-legacy/locked-records-info.md
@@ -5,7 +5,7 @@ slug: /commands/locked-records-info
displayed_sidebar: docs
---
-**Locked records info** ( *aTable* ) : Object
+**Locked records info** ( *aTable* : Table ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -94,6 +94,6 @@ If the code is executed on a 4D Server and the locking is caused by a remote cli
| | |
| --- | --- |
| Command number | 1316 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/locked.md b/docs/commands-legacy/locked.md
index dee6efc28cd5b4..ed126992d07933 100644
--- a/docs/commands-legacy/locked.md
+++ b/docs/commands-legacy/locked.md
@@ -5,7 +5,7 @@ slug: /commands/locked
displayed_sidebar: docs
---
-**Locked** {( *aTable* )} : Boolean
+**Locked** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ During transaction processing, [LOAD RECORD](load-record.md) and **Locked** are
| | |
| --- | --- |
| Command number | 147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/log-event.md b/docs/commands-legacy/log-event.md
index 0951a62b44be62..18dd2c8a4d57ba 100644
--- a/docs/commands-legacy/log-event.md
+++ b/docs/commands-legacy/log-event.md
@@ -5,7 +5,7 @@ slug: /commands/log-event
displayed_sidebar: docs
---
-**LOG EVENT** ( {*outputType* ;} *message* {; *importance*} )
+**LOG EVENT** ( {*outputType* : Integer ;} *message* : Text {; *importance* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ Each time the database is opened, this information will be written in Windows’
| | |
| --- | --- |
| Command number | 667 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/log-file-to-json.md b/docs/commands-legacy/log-file-to-json.md
index 7822b4c8c288e1..e416e4284e49d6 100644
--- a/docs/commands-legacy/log-file-to-json.md
+++ b/docs/commands-legacy/log-file-to-json.md
@@ -5,7 +5,7 @@ slug: /commands/log-file-to-json
displayed_sidebar: docs
---
-**LOG FILE TO JSON** ( *destFolderPath* {; *maxSize* {; *logPath* {; *fieldAtt*}}} )
+**LOG FILE TO JSON** ( *destFolderPath* : Text {; *maxSize* : Integer {; *logPath* : Text {; *fieldAtt* : Integer}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,7 +102,7 @@ The **LOG FILE TO JSON** command modifies the value of the OK and Document varia
| | |
| --- | --- |
| Command number | 1352 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/log-file.md b/docs/commands-legacy/log-file.md
index 47fbc64a2c5ec7..c843f821006077 100644
--- a/docs/commands-legacy/log-file.md
+++ b/docs/commands-legacy/log-file.md
@@ -37,6 +37,6 @@ If the database operates with a log file, the system variable OK is set to 1\. T
| | |
| --- | --- |
| Command number | 928 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/log.md b/docs/commands-legacy/log.md
index 0a72cef2b76826..73ca6c557a9d10 100644
--- a/docs/commands-legacy/log.md
+++ b/docs/commands-legacy/log.md
@@ -5,7 +5,7 @@ slug: /commands/log
displayed_sidebar: docs
---
-**Log** ( *number* ) : Real
+**Log** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ The following line displays 1:
| | |
| --- | --- |
| Command number | 22 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/longint-array-from-selection.md b/docs/commands-legacy/longint-array-from-selection.md
index cce124704bf93b..9e6e1d1f373b42 100644
--- a/docs/commands-legacy/longint-array-from-selection.md
+++ b/docs/commands-legacy/longint-array-from-selection.md
@@ -5,12 +5,12 @@ slug: /commands/longint-array-from-selection
displayed_sidebar: docs
---
-**LONGINT ARRAY FROM SELECTION** ( *aTable* ; *recordArray* {; *selection*} )
+**LONGINT ARRAY FROM SELECTION** ( *aTable* : Table ; *recordArray* : Integer array {; *selection* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table of the current selection |
-| recordArray | Array integer | ← | Array of record numbers |
+| recordArray | Integer array | ← | Array of record numbers |
| selection | Text | → | Name of the named selection or the current selection if this parameter is omitted |
@@ -41,6 +41,6 @@ You want to retrieve the numbers of the records in the current selection:
| | |
| --- | --- |
| Command number | 647 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/longint-to-blob.md b/docs/commands-legacy/longint-to-blob.md
index f239aa87af8f95..15c646179718a3 100644
--- a/docs/commands-legacy/longint-to-blob.md
+++ b/docs/commands-legacy/longint-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/longint-to-blob
displayed_sidebar: docs
---
-**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; offset } )
**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; *} )
+**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; offset } )
**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| longInt | Integer | → | Long Integer value to write into the BLOB |
-| blob | Blob | → | BLOB to receive the Long Integer value |
+| Blob | Blob | → | BLOB to receive the Long Integer value |
| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | * | Variable, Operator | ↔ | Offset within the BLOB (expressed in bytes) or * to append the value |
|||| New offset after writing if not * |
@@ -120,6 +120,6 @@ After executing this code:
| | |
| --- | --- |
| Command number | 550 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/lowercase.md b/docs/commands-legacy/lowercase.md
index fc21034e3b6078..619f98e9943b9a 100644
--- a/docs/commands-legacy/lowercase.md
+++ b/docs/commands-legacy/lowercase.md
@@ -5,11 +5,11 @@ slug: /commands/lowercase
displayed_sidebar: docs
---
-**Lowercase** ( *aString* {; *} ) : Text
+**Lowercase** ( *aString* : Text {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| aText | Text | → | String to convert to lowercase |
+| aString | Text | → | String to convert to lowercase |
| * | Operator | → | If passed: keep accents |
| Function result | Text | ← | String in lowercase |
@@ -54,6 +54,6 @@ This example compares the results obtained according to whether or not the *\**
| | |
| --- | --- |
| Command number | 14 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/macintosh-command-down.md b/docs/commands-legacy/macintosh-command-down.md
index 56fb3a706554e5..c1859ffa62c5c3 100644
--- a/docs/commands-legacy/macintosh-command-down.md
+++ b/docs/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 546 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/macintosh-control-down.md b/docs/commands-legacy/macintosh-control-down.md
index 5a2a7e79cbfbf6..c65b43216bd16f 100644
--- a/docs/commands-legacy/macintosh-control-down.md
+++ b/docs/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 544 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/macintosh-option-down.md b/docs/commands-legacy/macintosh-option-down.md
index 166224d632204c..6554475ac72d85 100644
--- a/docs/commands-legacy/macintosh-option-down.md
+++ b/docs/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 545 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/match-regex.md b/docs/commands-legacy/match-regex.md
index 8b7a4271016ad3..8749d1e7a8a5ed 100644
--- a/docs/commands-legacy/match-regex.md
+++ b/docs/commands-legacy/match-regex.md
@@ -5,23 +5,18 @@ slug: /commands/match-regex
displayed_sidebar: docs
---
-**Match regex** ( *pattern* ; *aString* ; *start* {; pos_found ; length_found}{; *} ) -> Function result
-**Match regex** ( *pattern* ; *aString* ) -> Function result
+**Match regex** ( *pattern* : Text ; *aString* : Text ; *start* : Integer {; pos_found ; length_found}{; *} ) -> Function result
**Match regex** ( *pattern* : Text ; *aString* : Text ) -> Function result
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| pattern | Text | → | Regular expression |
+| pattern | Text | → | Regular expression (complete equality with two-parameters syntax)|
| aString | Text | → | String in which search will be done |
| start | Integer | → | Position in aString where search will start |
-| pos_found | Array integer, Integer | ← | Position of occurrence |
-| length_found | Array integer, Integer | ← | Length of occurrence |
+| pos_found | Integer, Integer array | ← | Position of occurrence |
+| length_found | Integer, Integer array | ← | Length of occurrence |
| * | Operator | → | If passed: only searches at position indicated |
| Function result | Boolean | ← | True = search has found an occurrence; Otherwise, False. |
-| Match regex ( pattern ; aString ) -> Function result |
-| Parameter | Type | Description |
-| pattern | Text | → | Regular expression (complete equality) |
-| aString | Text | → | String in which search will be done |
-| Function result | Boolean | ← | True = search has found an occurrence; Otherwise, False. |
+
@@ -114,7 +109,7 @@ In the event of an error, the command generates an error that you can intercept
| | |
| --- | --- |
| Command number | 1019 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/max.md b/docs/commands-legacy/max.md
index 2dbe661d6982ef..d9cdb89fc3ae0b 100644
--- a/docs/commands-legacy/max.md
+++ b/docs/commands-legacy/max.md
@@ -5,13 +5,13 @@ slug: /commands/max
displayed_sidebar: docs
---
-**Max** ( *series* {; *attributePath*} ) : any
+**Max** ( *series* : Field, Array {; *attributePath* : Text} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| series | Field, Array | → | Data for which to return the maximum value |
| attributePath | Text | → | Path of attribute for which to return the maximum value |
-| Function result | Date, Number | ← | Maximum value in series |
+| Function result | Date, Real | ← | Maximum value in series |
@@ -75,7 +75,7 @@ For an example of computing an object field attribute, please refer to the examp
| | |
| --- | --- |
| Command number | 3 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/maximize-window.md b/docs/commands-legacy/maximize-window.md
index f94eb39b0f60c0..71bcaf05059150 100644
--- a/docs/commands-legacy/maximize-window.md
+++ b/docs/commands-legacy/maximize-window.md
@@ -5,7 +5,7 @@ slug: /commands/maximize-window
displayed_sidebar: docs
---
-**MAXIMIZE WINDOW** {( *window* )}
+**MAXIMIZE WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -88,6 +88,6 @@ In this context, when the user clicks on the button:
| | |
| --- | --- |
| Command number | 453 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/memory-statistics.md b/docs/commands-legacy/memory-statistics.md
index 4df6850017bcc4..e1924b4cfd2f09 100644
--- a/docs/commands-legacy/memory-statistics.md
+++ b/docs/commands-legacy/memory-statistics.md
@@ -5,7 +5,7 @@ slug: /commands/memory-statistics
displayed_sidebar: docs
---
-**MEMORY STATISTICS** ( *infoType* ; *arrNames* ; *arrValues* ; *arrCount* )
+**MEMORY STATISTICS** ( *infoType* : Integer ; *arrNames* : Text array ; *arrValues* : Real array ; *arrCount* : Real array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ After the command has been executed, the statistics are provided in the *arrName
| | |
| --- | --- |
| Command number | 1118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/menu-bar-height.md b/docs/commands-legacy/menu-bar-height.md
index 029be2dc70f616..99679ab204f595 100644
--- a/docs/commands-legacy/menu-bar-height.md
+++ b/docs/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ The command returns 0:
| | |
| --- | --- |
| Command number | 440 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/menu-bar-screen.md b/docs/commands-legacy/menu-bar-screen.md
index c646775e9bcc82..c4349348cfa3cf 100644
--- a/docs/commands-legacy/menu-bar-screen.md
+++ b/docs/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 441 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/menu-selected.md b/docs/commands-legacy/menu-selected.md
index 60bcb1d57f06f0..0b034f3f032162 100644
--- a/docs/commands-legacy/menu-selected.md
+++ b/docs/commands-legacy/menu-selected.md
@@ -5,7 +5,7 @@ slug: /commands/menu-selected
displayed_sidebar: docs
---
-**Menu selected** {( *subMenu* )} : Integer
+**Menu selected** ( *subMenu* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,7 +65,7 @@ The following form method uses **Menu selected** to supply the menu and menu ite
| | |
| --- | --- |
| Command number | 152 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/message.md b/docs/commands-legacy/message.md
index 89cc16d50e1084..f891cf7631e461 100644
--- a/docs/commands-legacy/message.md
+++ b/docs/commands-legacy/message.md
@@ -5,7 +5,7 @@ slug: /commands/message
displayed_sidebar: docs
---
-**MESSAGE** ( *message* )
+**MESSAGE** ( *message* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -118,6 +118,6 @@ This provides the following result (shown here on Windows):
| | |
| --- | --- |
| Command number | 88 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/messages-off.md b/docs/commands-legacy/messages-off.md
index fe0307fb7703fe..d322f2ffff6e0c 100644
--- a/docs/commands-legacy/messages-off.md
+++ b/docs/commands-legacy/messages-off.md
@@ -73,6 +73,6 @@ The following example turns off the progress meter before doing a sort, and then
| | |
| --- | --- |
| Command number | 175 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/messages-on.md b/docs/commands-legacy/messages-on.md
index 3bc2bc0439c55b..e7ff39c1dff4f6 100644
--- a/docs/commands-legacy/messages-on.md
+++ b/docs/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 181 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/method-called-on-error.md b/docs/commands-legacy/method-called-on-error.md
index 6cf4e5066b3525..6e31b78b794ef2 100644
--- a/docs/commands-legacy/method-called-on-error.md
+++ b/docs/commands-legacy/method-called-on-error.md
@@ -5,7 +5,7 @@ slug: /commands/method-called-on-error
displayed_sidebar: docs
---
-**Method called on error** {( *scope* )} : Text
+**Method called on error** ( *scope* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ This command is particularly useful in the context of components because it enab
| | |
| --- | --- |
| Command number | 704 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/method-called-on-event.md b/docs/commands-legacy/method-called-on-event.md
index 1a9e094c8c822b..027bdf3d1ee84b 100644
--- a/docs/commands-legacy/method-called-on-event.md
+++ b/docs/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ If no such method has been installed, an empty string ("") is returned.
| | |
| --- | --- |
| Command number | 705 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-attribute.md b/docs/commands-legacy/method-get-attribute.md
index 71f3135e9ec095..09d92c7919bd40 100644
--- a/docs/commands-legacy/method-get-attribute.md
+++ b/docs/commands-legacy/method-get-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-attribute
displayed_sidebar: docs
---
-**METHOD Get attribute** ( *path* ; *attribType* {; *} ) : Boolean
+**METHOD Get attribute** ( *path* : Text ; *attribType* : Integer {; *} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ The command returns **True** when an attribute is selected and **False** if it i
| | |
| --- | --- |
| Command number | 1169 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-attributes.md b/docs/commands-legacy/method-get-attributes.md
index cd1d981743c1cc..1d245c122d71de 100644
--- a/docs/commands-legacy/method-get-attributes.md
+++ b/docs/commands-legacy/method-get-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-attributes
displayed_sidebar: docs
---
-**METHOD GET ATTRIBUTES** ( *path* ; *attributes* {; *} )
+**METHOD GET ATTRIBUTES** ( *path* : Text, Text array ; *attributes* : Object, Object array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ After execution, $att contains, for example:
| | |
| --- | --- |
| Command number | 1334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/method-get-code.md b/docs/commands-legacy/method-get-code.md
index 384ea19aaa0a5b..cfb10097a87b5b 100644
--- a/docs/commands-legacy/method-get-code.md
+++ b/docs/commands-legacy/method-get-code.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-code
displayed_sidebar: docs
---
-**METHOD GET CODE** ( *path* ; *code* {; *option*} {; *} )
+**METHOD GET CODE** ( *path* : Text, Text array ; *code* : Text, Text array {; *option* : Integer} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -124,6 +124,6 @@ The resulting document will contain:
| | |
| --- | --- |
| Command number | 1190 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-comments.md b/docs/commands-legacy/method-get-comments.md
index 82fe07582543ff..5738aff3b496df 100644
--- a/docs/commands-legacy/method-get-comments.md
+++ b/docs/commands-legacy/method-get-comments.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-comments
displayed_sidebar: docs
---
-**METHOD GET COMMENTS** ( *path* ; *comments* {; *} )
+**METHOD GET COMMENTS** ( *path* : Text, Text array ; *comments* : Text, Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ If the command is executed from a component, it applies by default to the compon
| | |
| --- | --- |
| Command number | 1189 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-folders.md b/docs/commands-legacy/method-get-folders.md
index 1b24322f600601..7cde798af6361f 100644
--- a/docs/commands-legacy/method-get-folders.md
+++ b/docs/commands-legacy/method-get-folders.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-folders
displayed_sidebar: docs
---
-**METHOD GET FOLDERS** ( *arrNames* {; *filter*}{; *} )
+**METHOD GET FOLDERS** ( *arrNames* : Text array {; *filter* : Text}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ If the command is executed from a component, it returns by default the paths of
| | |
| --- | --- |
| Command number | 1206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-modification-date.md b/docs/commands-legacy/method-get-modification-date.md
index 3f27ca32e97229..3543179704332f 100644
--- a/docs/commands-legacy/method-get-modification-date.md
+++ b/docs/commands-legacy/method-get-modification-date.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-modification-date
displayed_sidebar: docs
---
-**METHOD GET MODIFICATION DATE** ( *path* ; *modDate* ; *modTime* {; *} )
+**METHOD GET MODIFICATION DATE** ( *path* : Text, Text array ; *modDate* : Date, Date array ; *modTime* : Time, Integer array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| path | Text, Text array | → | Text or Text array containing one or more method path(s) |
| modDate | Date, Date array | ← | Method modification date(s) |
-| modTime | Time, Array integer | ← | Method modification time(s) |
+| modTime | Time, Integer array | ← | Method modification time(s) |
| * | Operator | → | If passed = command applies to host database when executed from a component (parameter ignored outside of this context) |
@@ -74,6 +74,6 @@ You want to get modification dates for methods in a module that are prefixed wit
| | |
| --- | --- |
| Command number | 1170 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-names.md b/docs/commands-legacy/method-get-names.md
index fa9ba899d5fedd..c151dfc7dd20e8 100644
--- a/docs/commands-legacy/method-get-names.md
+++ b/docs/commands-legacy/method-get-names.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-names
displayed_sidebar: docs
---
-**METHOD GET NAMES** ( *arrNames* {; *filter*}{; *} )
+**METHOD GET NAMES** ( *arrNames* : Text array {; *filter* : Text}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ Here are a few typical examples of use:
| | |
| --- | --- |
| Command number | 1166 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/method-get-path.md b/docs/commands-legacy/method-get-path.md
index cc0c34297f331f..51325d21873422 100644
--- a/docs/commands-legacy/method-get-path.md
+++ b/docs/commands-legacy/method-get-path.md
@@ -5,7 +5,7 @@ slug: /commands/method-get-path
displayed_sidebar: docs
---
-**METHOD Get path** ( *methodType* {; *aTable*}{; *objectName*{; *formObjectName*}}{; *} ) : Text
+**METHOD Get path** ( *methodType* : Integer {; *aTable* : Table}{; *objectName* : Text{; *formObjectName* : Text}}{; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ If the command is executed from a component, it returns by default the paths of
| | |
| --- | --- |
| Command number | 1164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-paths-form.md b/docs/commands-legacy/method-get-paths-form.md
index 901d40ee0b77f7..8b95f70a3ed1f2 100644
--- a/docs/commands-legacy/method-get-paths-form.md
+++ b/docs/commands-legacy/method-get-paths-form.md
@@ -5,15 +5,14 @@ slug: /commands/method-get-paths-form
displayed_sidebar: docs
---
-**METHOD GET PATHS FORM** ( {*aTable* ;} *arrPaths* {; *filter*}{; *stamp*}{; *} )
+**METHOD GET PATHS FORM** ( {*aTable* : Table ;} *arrPaths* : Text array {; *filter* : Text}{; *stamp* : Real}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table reference |
| arrPaths | Text array | ← | Array of method paths and names |
| filter | Text | → | Name filter |
-| stamp | Real | → | Minimum value of stamp |
-| ← | New current value |
+| stamp | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
| * | Operator | → | If passed = command applies to host database when executed from a component (parameter ignored outside of this context) |
@@ -75,6 +74,6 @@ List of all objects of the "input" form for the \[Employees\] table from a compo
| | |
| --- | --- |
| Command number | 1168 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-get-paths.md b/docs/commands-legacy/method-get-paths.md
index 1c270b11d25136..2a2e0a5ff823dd 100644
--- a/docs/commands-legacy/method-get-paths.md
+++ b/docs/commands-legacy/method-get-paths.md
@@ -5,15 +5,14 @@ slug: /commands/method-get-paths
displayed_sidebar: docs
---
-**METHOD GET PATHS** ( {*folderName* ;} *methodType* ; *arrPaths* {; *stamp*}{; *} )
+**METHOD GET PATHS** ( {*folderName* : Text ;} *methodType* : Integer ; *arrPaths* : Text array {; *stamp* : Real}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| folderName | Text | → | Name of Home page folder |
| methodType | Integer | → | Selector of method type to get |
| arrPaths | Text array | ← | Array of method paths and names |
-| stamp | Real | → | Minimum value of stamp |
-| ← | New current value |
+| stamp | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
| * | Operator | → | If passed = command applies to host database when executed from a component (parameter ignored outside of this context) |
@@ -90,6 +89,6 @@ Refer to the example of the [METHOD SET CODE](method-set-code.md) command.
| | |
| --- | --- |
| Command number | 1163 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-open-path.md b/docs/commands-legacy/method-open-path.md
index cea65fffe8ef19..222da209ff9f43 100644
--- a/docs/commands-legacy/method-open-path.md
+++ b/docs/commands-legacy/method-open-path.md
@@ -5,12 +5,12 @@ slug: /commands/method-open-path
displayed_sidebar: docs
---
-**METHOD OPEN PATH** ( *path* {; *line*}{; *} )
+**METHOD OPEN PATH** ( *path* : Text {; *line* : Real}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| path | Text | → | Path of method to open |
-| line | Number | → | Line number |
+| line | Real | → | Line number |
| * | Operator | → | If passed = command applies to host database when executed from a component (parameter ignored outside of this context) |
@@ -37,6 +37,6 @@ You can execute this command from a component, but in this case, you must pass t
| | |
| --- | --- |
| Command number | 1213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-resolve-path.md b/docs/commands-legacy/method-resolve-path.md
index 317b0ec1e2d790..b4bbdee20a8f73 100644
--- a/docs/commands-legacy/method-resolve-path.md
+++ b/docs/commands-legacy/method-resolve-path.md
@@ -5,7 +5,7 @@ slug: /commands/method-resolve-path
displayed_sidebar: docs
---
-**METHOD RESOLVE PATH** ( *path* ; *methodType* ; *ptrTable* ; *objectName* ; *formObjectName* {; *} )
+**METHOD RESOLVE PATH** ( *path* : Text ; *methodType* : Integer ; *ptrTable* : Pointer ; *objectName* : Text ; *formObjectName* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -88,6 +88,6 @@ Resolution of a path for an object of a table form method:
| | |
| --- | --- |
| Command number | 1165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-set-access-mode.md b/docs/commands-legacy/method-set-access-mode.md
index 8fda22721e8d56..9fd71acd4cff9f 100644
--- a/docs/commands-legacy/method-set-access-mode.md
+++ b/docs/commands-legacy/method-set-access-mode.md
@@ -5,7 +5,7 @@ slug: /commands/method-set-access-mode
displayed_sidebar: docs
---
-**METHOD SET ACCESS MODE** ( *mode* )
+**METHOD SET ACCESS MODE** ( *mode* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ In *mode*, you pass one of the following constants of the *Design Object Access*
| | |
| --- | --- |
| Command number | 1191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-set-attribute.md b/docs/commands-legacy/method-set-attribute.md
index 8f542e76e537f3..f80458fa0301bc 100644
--- a/docs/commands-legacy/method-set-attribute.md
+++ b/docs/commands-legacy/method-set-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/method-set-attribute
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTE** ( *path* ; *attribType* ; *attribValue* {; *attribType2* ; *attribValue2* ; ... ; *attribTypeN* ; *attribValueN*}{; *} )
+**METHOD SET ATTRIBUTE** ( *path* : Text ; *attribType* : Integer ; *attribValue* : Boolean, Text {; ...(*attribType* : Integer, *attribValue* : Boolean, Text)}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ Setting several attribute/value pairs:
| | |
| --- | --- |
| Command number | 1192 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-set-attributes.md b/docs/commands-legacy/method-set-attributes.md
index e00fd927f7b3b7..58f846172a834b 100644
--- a/docs/commands-legacy/method-set-attributes.md
+++ b/docs/commands-legacy/method-set-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/method-set-attributes
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTES** ( *path* ; *attributes* {; *} )
+**METHOD SET ATTRIBUTES** ( *path* : Text, Text array ; *attributes* : Object, Object array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ You want to set a single attribute:
| | |
| --- | --- |
| Command number | 1335 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-set-code.md b/docs/commands-legacy/method-set-code.md
index 64c40c5e0fa801..8fa6d21c3d85a0 100644
--- a/docs/commands-legacy/method-set-code.md
+++ b/docs/commands-legacy/method-set-code.md
@@ -5,7 +5,7 @@ slug: /commands/method-set-code
displayed_sidebar: docs
---
-**METHOD SET CODE** ( *path* ; *code* {; *} )
+**METHOD SET CODE** ( *path* : Text, Text array ; *code* : Text, Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -103,6 +103,6 @@ This example exports and imports all the project methods of an application:
| | |
| --- | --- |
| Command number | 1194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/method-set-comments.md b/docs/commands-legacy/method-set-comments.md
index b6baffa46164f0..b837248d5594e6 100644
--- a/docs/commands-legacy/method-set-comments.md
+++ b/docs/commands-legacy/method-set-comments.md
@@ -5,7 +5,7 @@ slug: /commands/method-set-comments
displayed_sidebar: docs
---
-**METHOD SET COMMENTS** ( *path* ; *comments* {; *} )
+**METHOD SET COMMENTS** ( *path* : Text, Text array ; *comments* : Text, Text array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ Add a modification date to an existing trigger documentation:
| | |
| --- | --- |
| Command number | 1193 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/milliseconds.md b/docs/commands-legacy/milliseconds.md
index 83f791db3a8a10..f3555806a37754 100644
--- a/docs/commands-legacy/milliseconds.md
+++ b/docs/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ The following code waits up to 5 seconds for a locked record to become unlocked
| | |
| --- | --- |
| Command number | 459 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/min.md b/docs/commands-legacy/min.md
index 0e2755deebc3e8..283b6808a20ca3 100644
--- a/docs/commands-legacy/min.md
+++ b/docs/commands-legacy/min.md
@@ -5,13 +5,13 @@ slug: /commands/min
displayed_sidebar: docs
---
-**Min** ( *series* {; *attributePath*} ) : any
+**Min** ( *series* : Field, Array {; *attributePath* : Text} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| series | Field, Array | → | Data for which to return the minimum value |
| attributePath | Text | → | Path of attribute for which to return the minimum value |
-| Function result | Date, Number | ← | Minimum value in series |
+| Function result | Date, Real | ← | Minimum value in series |
@@ -83,7 +83,7 @@ For an example of computing an object field attribute, please refer to the examp
| | |
| --- | --- |
| Command number | 4 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/minimize-window.md b/docs/commands-legacy/minimize-window.md
index 2acedb3a2ddb1c..c986e6e4ff647c 100644
--- a/docs/commands-legacy/minimize-window.md
+++ b/docs/commands-legacy/minimize-window.md
@@ -5,7 +5,7 @@ slug: /commands/minimize-window
displayed_sidebar: docs
---
-**MINIMIZE WINDOW** {( *window* )}
+**MINIMIZE WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ Mac OS
| | |
| --- | --- |
| Command number | 454 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/mobile-app-refresh-sessions.md b/docs/commands-legacy/mobile-app-refresh-sessions.md
index c0d713fee0be8c..e18ac0cea8e19f 100644
--- a/docs/commands-legacy/mobile-app-refresh-sessions.md
+++ b/docs/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ You want to reset all current sessions for all mobile applications:
| | |
| --- | --- |
| Command number | 1596 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/mod.md b/docs/commands-legacy/mod.md
index 9603a98582ce53..b14e98db0c3b79 100644
--- a/docs/commands-legacy/mod.md
+++ b/docs/commands-legacy/mod.md
@@ -5,7 +5,7 @@ slug: /commands/mod
displayed_sidebar: docs
---
-**Mod** ( *number1* ; *number2* ) : Real
+**Mod** ( *number1* : Integer ; *number2* : Integer ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The following example illustrates how the Mod function works with different argu
| | |
| --- | --- |
| Command number | 98 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/modified-record.md b/docs/commands-legacy/modified-record.md
index 8b9a80046dc8df..f94312753a1632 100644
--- a/docs/commands-legacy/modified-record.md
+++ b/docs/commands-legacy/modified-record.md
@@ -5,7 +5,7 @@ slug: /commands/modified-record
displayed_sidebar: docs
---
-**Modified record** {( *aTable* )} : Boolean
+**Modified record** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following example shows a typical use for **Modified record**:
| | |
| --- | --- |
| Command number | 314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/modified.md b/docs/commands-legacy/modified.md
index 06fffb76dd534d..17ab846b3380de 100644
--- a/docs/commands-legacy/modified.md
+++ b/docs/commands-legacy/modified.md
@@ -5,7 +5,7 @@ slug: /commands/modified
displayed_sidebar: docs
---
-**Modified** ( *aField* ) : Boolean
+**Modified** ( *aField* : Field ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ You select a record for the table *\[anyTable\]*, then you call multiple subrout
| | |
| --- | --- |
| Command number | 32 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/modify-record.md b/docs/commands-legacy/modify-record.md
index 8775016ef7402e..3e3890db2c24e0 100644
--- a/docs/commands-legacy/modify-record.md
+++ b/docs/commands-legacy/modify-record.md
@@ -5,7 +5,7 @@ slug: /commands/modify-record
displayed_sidebar: docs
---
-**MODIFY RECORD** ( {*aTable*}{;}{*} )
+**MODIFY RECORD** ( {*aTable* : Table}{;}{*} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,7 +54,7 @@ Accepting the record sets the OK system variable to 1; canceling it sets the OK
| | |
| --- | --- |
| Command number | 57 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/modify-selection.md b/docs/commands-legacy/modify-selection.md
index 94e7d36b4dd8b3..ea307babf6f5f0 100644
--- a/docs/commands-legacy/modify-selection.md
+++ b/docs/commands-legacy/modify-selection.md
@@ -5,7 +5,7 @@ slug: /commands/modify-selection
displayed_sidebar: docs
---
-**MODIFY SELECTION** ( {*aTable*}{; *selectMode*}{; *enterList*}{; *}{; *} )
+**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *} )
**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}; * {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 204 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/monitored-activity.md b/docs/commands-legacy/monitored-activity.md
index 9bcb60f49ad8af..c604d364abc0a8 100644
--- a/docs/commands-legacy/monitored-activity.md
+++ b/docs/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Command number | 1713 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/month-of.md b/docs/commands-legacy/month-of.md
index d13acd2d82580b..e3ef0aa03c825d 100644
--- a/docs/commands-legacy/month-of.md
+++ b/docs/commands-legacy/month-of.md
@@ -5,7 +5,7 @@ slug: /commands/month-of
displayed_sidebar: docs
---
-**Month of** ( *aDate* ) : Integer
+**Month of** ( *aDate* : Date ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ See example for the [Current date](current-date.md) command.
| | |
| --- | --- |
| Command number | 24 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/mouse-position.md b/docs/commands-legacy/mouse-position.md
index 5a57f1e77bc75b..78aec7fb345363 100644
--- a/docs/commands-legacy/mouse-position.md
+++ b/docs/commands-legacy/mouse-position.md
@@ -5,7 +5,7 @@ slug: /commands/mouse-position
displayed_sidebar: docs
---
-**MOUSE POSITION** ( *mouseX* ; *mouseY* ; *mouseButton* {; *} )
+**MOUSE POSITION** ( *mouseX* : Real ; *mouseY* : Real ; *mouseButton* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ See the example for the [Pop up menu](pop-up-menu.md) command.
| | |
| --- | --- |
| Command number | 468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/move-document.md b/docs/commands-legacy/move-document.md
index 2a285a2c0017bc..3b87e7452acb25 100644
--- a/docs/commands-legacy/move-document.md
+++ b/docs/commands-legacy/move-document.md
@@ -5,7 +5,7 @@ slug: /commands/move-document
displayed_sidebar: docs
---
-**MOVE DOCUMENT** ( *srcPathname* ; *dstPathname* )
+**MOVE DOCUMENT** ( *srcPathname* : Text ; *dstPathname* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ The following example moves the document DocName:
| | |
| --- | --- |
| Command number | 540 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/multi-sort-array.md b/docs/commands-legacy/multi-sort-array.md
index 1d087c1a967794..0b3098d36ded2f 100644
--- a/docs/commands-legacy/multi-sort-array.md
+++ b/docs/commands-legacy/multi-sort-array.md
@@ -5,15 +5,14 @@ slug: /commands/multi-sort-array
displayed_sidebar: docs
---
-**MULTI SORT ARRAY** ( *array* {; *sort*}{; *array2* ; *sort2* ; ... ; *arrayN* ; *sortN*} )
-**MULTI SORT ARRAY** ( *ptrArrayName* ; *sortArrayName* )
+**MULTI SORT ARRAY** ( *array* : Array {; *sort* : Operator}{; ...*array* : Array ; ...*sort* : Operator} )
**MULTI SORT ARRAY** ( *ptrArrayName* : Pointer array ; *sortArrayName* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| array | Array | → | Array(s) to be sorted |
-| sort | * | → | ">" to sort by increasing order or "<" to sort by decreasing order If omitted no sort |
+| sort | Operator | → | `>` to sort by increasing order or `<` to sort by decreasing order; if omitted no sort |
| ptrArrayName | Pointer array | → | Array of array pointers |
-| sortArrayName | Array integer | → | Sort order array (1 = sort by increasing order, -1 = sort by decreasing order, 0 = synchronization with previous sorts) |
+| sortArrayName | Integer array | → | Sort order array (1 = sort by increasing order, -1 = sort by decreasing order, 0 = synchronization with previous sorts) |
@@ -113,6 +112,6 @@ If you want the array of names be used as a third sort criterion, you need to as
| | |
| --- | --- |
| Command number | 718 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/new-data-key.md b/docs/commands-legacy/new-data-key.md
index 11c3dda0e30c1f..a5c32268823813 100644
--- a/docs/commands-legacy/new-data-key.md
+++ b/docs/commands-legacy/new-data-key.md
@@ -5,7 +5,7 @@ slug: /commands/new-data-key
displayed_sidebar: docs
---
-**New data key** ( *passPhrase* ) : Object
+**New data key** ( *passPhrase* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ You want to save an encryption key in a .4DKeyChain file:
| | |
| --- | --- |
| Command number | 1611 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/new-list.md b/docs/commands-legacy/new-list.md
index 7926bf1b9aa8c1..4e22ffa7cf0484 100644
--- a/docs/commands-legacy/new-list.md
+++ b/docs/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ See example for the [APPEND TO LIST](append-to-list.md) command.
| | |
| --- | --- |
| Command number | 375 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/new-object.md b/docs/commands-legacy/new-object.md
index a5f7420d1a1069..4f87764f01d3b7 100644
--- a/docs/commands-legacy/new-object.md
+++ b/docs/commands-legacy/new-object.md
@@ -5,7 +5,7 @@ slug: /commands/new-object
displayed_sidebar: docs
---
-**New object** {( *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )} : Object
+**New object** ( *property* : Text ; *value* : any {; ...(*property* : Text, *value* : any)} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -112,6 +112,6 @@ With this command, you can easily handle objects in loops:
| | |
| --- | --- |
| Command number | 1471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/new-process.md b/docs/commands-legacy/new-process.md
index b82e7b49327a92..bd9eed3256cb05 100644
--- a/docs/commands-legacy/new-process.md
+++ b/docs/commands-legacy/new-process.md
@@ -14,7 +14,7 @@ displayed_sidebar: docs
-**New process** ( *method* ; *stack* {; *name* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**New process** ( *method* : Text ; *stack* : Integer {; *name* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -119,6 +119,6 @@ In the Menu Bar editor, you replace the method ADD CUSTOMERS with the method STA
| | |
| --- | --- |
| Command number | 317 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/new-shared-object.md b/docs/commands-legacy/new-shared-object.md
index dad97894176fc6..6bab47306c1545 100644
--- a/docs/commands-legacy/new-shared-object.md
+++ b/docs/commands-legacy/new-shared-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-shared-object
displayed_sidebar: docs
---
-**New shared object** {( *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )} : Object
+**New shared object** ( *property* : Text ; *value* : any {; ...(*property* : Text, *value* : any)} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| property | Text | → | Name of property to create |
-| value | Text, Date, Boolean, Pointer, Number, Object | → | Value of property |
+| value | any | → | Value of property |
| Function result | Object | ← | New shared object |
@@ -73,6 +73,6 @@ You want to create and modify a shared object. The structure must be called for
| | |
| --- | --- |
| Command number | 1526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/next-record.md b/docs/commands-legacy/next-record.md
index 6e42b93f19423c..0d3b965839884b 100644
--- a/docs/commands-legacy/next-record.md
+++ b/docs/commands-legacy/next-record.md
@@ -5,7 +5,7 @@ slug: /commands/next-record
displayed_sidebar: docs
---
-**NEXT RECORD** {( *aTable* )}
+**NEXT RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ See the example for [DISPLAY RECORD](display-record.md).
| | |
| --- | --- |
| Command number | 51 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/next-window.md b/docs/commands-legacy/next-window.md
index 2e6329fbc75af3..5bdcfa5d42fe14 100644
--- a/docs/commands-legacy/next-window.md
+++ b/docs/commands-legacy/next-window.md
@@ -5,7 +5,7 @@ slug: /commands/next-window
displayed_sidebar: docs
---
-**Next window** ( *window* ) : Integer
+**Next window** ( *window* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 448 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/no-default-table.md b/docs/commands-legacy/no-default-table.md
index 066b291ea513d5..62afa725106e36 100644
--- a/docs/commands-legacy/no-default-table.md
+++ b/docs/commands-legacy/no-default-table.md
@@ -48,6 +48,6 @@ In a database containing a project form named “TheForm” and a table form wit
| | |
| --- | --- |
| Command number | 993 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/not.md b/docs/commands-legacy/not.md
index 3337a313095706..d471179145e330 100644
--- a/docs/commands-legacy/not.md
+++ b/docs/commands-legacy/not.md
@@ -5,7 +5,7 @@ slug: /commands/not
displayed_sidebar: docs
---
-**Not** ( *boolean* ) : Boolean
+**Not** ( *boolean* : Boolean ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ This example first assigns True to a variable, then changes the variable value t
| | |
| --- | --- |
| Command number | 34 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/notify-resources-folder-modification.md b/docs/commands-legacy/notify-resources-folder-modification.md
index d83c92eb863229..52ce81b8cfc41e 100644
--- a/docs/commands-legacy/notify-resources-folder-modification.md
+++ b/docs/commands-legacy/notify-resources-folder-modification.md
@@ -40,6 +40,6 @@ Current settings are set either:
| | |
| --- | --- |
| Command number | 1052 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/null.md b/docs/commands-legacy/null.md
index d8b4886f561274..3ae735b7ed0836 100644
--- a/docs/commands-legacy/null.md
+++ b/docs/commands-legacy/null.md
@@ -136,6 +136,6 @@ Here are the different results of the [Undefined](undefined.md) command as well
| | |
| --- | --- |
| Command number | 1517 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-class.md b/docs/commands-legacy/ob-class.md
index 7663b892ed3cad..ca7f8fdc6d3225 100644
--- a/docs/commands-legacy/ob-class.md
+++ b/docs/commands-legacy/ob-class.md
@@ -5,7 +5,7 @@ slug: /commands/ob-class
displayed_sidebar: docs
---
-**OB Class** ( *object* ) : any
+**OB Class** ( *object* : Object ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Then, in a method, you can write:
| | |
| --- | --- |
| Command number | 1730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-copy.md b/docs/commands-legacy/ob-copy.md
index b2336fbf8747b2..fbb29057e456f1 100644
--- a/docs/commands-legacy/ob-copy.md
+++ b/docs/commands-legacy/ob-copy.md
@@ -5,7 +5,7 @@ slug: /commands/ob-copy
displayed_sidebar: docs
---
-**OB Copy** ( *object* {; resolvePtrs } ) : Object
**OB Copy** ( *object* {; *option* {; *groupWith*}} ) : Object
+**OB Copy** ( *object* : Object, Object {; resolvePtrs } ) : Object
**OB Copy** ( *object* : Object, Object {; *option* : Integer {; *groupWith* : Collection, Object}} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -170,6 +170,6 @@ We want to copy *$sharedObj* in *$sharedColl* but since they belong to different
| | |
| --- | --- |
| Command number | 1225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-entries.md b/docs/commands-legacy/ob-entries.md
index 406a4716faaef3..79503d06afa082 100644
--- a/docs/commands-legacy/ob-entries.md
+++ b/docs/commands-legacy/ob-entries.md
@@ -5,7 +5,7 @@ slug: /commands/ob-entries
displayed_sidebar: docs
---
-**OB Entries** ( *object* ) : Collection
+**OB Entries** ( *object* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ Using an object as an hash map (key / value system) provides a quick and direct
| | |
| --- | --- |
| Command number | 1720 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/ob-get-array.md b/docs/commands-legacy/ob-get-array.md
index 9fb4e5a292e6e7..ca3c12546b068f 100644
--- a/docs/commands-legacy/ob-get-array.md
+++ b/docs/commands-legacy/ob-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-array
displayed_sidebar: docs
---
-**OB GET ARRAY** ( *object* ; *property* ; *array* )
+**OB GET ARRAY** ( *object* : Object ; *property* : Text ; *array* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| object | Object, Object | → | Structured object |
+| object | Object | → | Structured object |
| property | Text | → | Name of property to read |
-| array | Text array, Real array, Boolean array, Object array, Pointer array, Array integer | ← | Value array of property |
+| array | Array | ← | Value array of property |
@@ -57,6 +57,6 @@ We want to change a value in the first element of the array:
| | |
| --- | --- |
| Command number | 1229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-get-property-names.md b/docs/commands-legacy/ob-get-property-names.md
index 16879c0473761d..a782fd5735edb6 100644
--- a/docs/commands-legacy/ob-get-property-names.md
+++ b/docs/commands-legacy/ob-get-property-names.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-property-names
displayed_sidebar: docs
---
-**OB GET PROPERTY NAMES** ( *object* ; *arrProperties* {; *arrTypes*} )
+**OB GET PROPERTY NAMES** ( *object* : Object ; *arrProperties* : Text array {; *arrTypes* : Integer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| object | Object | → | Structured object |
| arrProperties | Text array | ← | Property names |
-| arrTypes | Array integer | ← | Property types |
+| arrTypes | Integer array | ← | Property types |
@@ -102,6 +102,6 @@ Using an object array element:
| | |
| --- | --- |
| Command number | 1232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-get-type.md b/docs/commands-legacy/ob-get-type.md
index 672d364774b846..00c51d1c0c6cdf 100644
--- a/docs/commands-legacy/ob-get-type.md
+++ b/docs/commands-legacy/ob-get-type.md
@@ -5,7 +5,7 @@ slug: /commands/ob-get-type
displayed_sidebar: docs
---
-**OB Get type** ( *object* ; *property* ) : Integer
+**OB Get type** ( *object* : Object ; *property* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ We want to get the type of standard values:
| | |
| --- | --- |
| Command number | 1230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-get.md b/docs/commands-legacy/ob-get.md
index 63a449fd96ee91..033a8a27750823 100644
--- a/docs/commands-legacy/ob-get.md
+++ b/docs/commands-legacy/ob-get.md
@@ -5,7 +5,7 @@ slug: /commands/ob-get
displayed_sidebar: docs
---
-**OB Get** ( *object* ; *property* {; *type*} ) : any
+**OB Get** ( *object* : Object, Object ; *property* : Text {; *type* : Integer} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -226,6 +226,6 @@ You want to know the size of a picture stored in an object attribute:
| | |
| --- | --- |
| Command number | 1224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-instance-of.md b/docs/commands-legacy/ob-instance-of.md
index 22d2eb8df4b690..649d0424bac8c1 100644
--- a/docs/commands-legacy/ob-instance-of.md
+++ b/docs/commands-legacy/ob-instance-of.md
@@ -5,7 +5,7 @@ slug: /commands/ob-instance-of
displayed_sidebar: docs
---
-**OB Instance of** ( *object* ; *class* ) : Boolean
+**OB Instance of** ( *object* : Object ; *class* : Object ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ Then, in a method, you can write:
| | |
| --- | --- |
| Command number | 1731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-is-defined.md b/docs/commands-legacy/ob-is-defined.md
index 18e87d83bd77c6..2fda0958558aac 100644
--- a/docs/commands-legacy/ob-is-defined.md
+++ b/docs/commands-legacy/ob-is-defined.md
@@ -5,7 +5,7 @@ slug: /commands/ob-is-defined
displayed_sidebar: docs
---
-**OB Is defined** ( *object* {; *property*} ) : Boolean
+**OB Is defined** ( *object* : Object, Object {; *property* : Text} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ This test is equivalent to:
| | |
| --- | --- |
| Command number | 1231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-is-empty.md b/docs/commands-legacy/ob-is-empty.md
index cfc10401e1a1eb..17c71b4f96a1b0 100644
--- a/docs/commands-legacy/ob-is-empty.md
+++ b/docs/commands-legacy/ob-is-empty.md
@@ -5,7 +5,7 @@ slug: /commands/ob-is-empty
displayed_sidebar: docs
---
-**OB Is empty** ( *object* ) : Boolean
+**OB Is empty** ( *object* : Object, Object ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ Here are the different results of this command as well as the [OB Is defined](ob
| | |
| --- | --- |
| Command number | 1297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-is-shared.md b/docs/commands-legacy/ob-is-shared.md
index 41b6ebcee4d216..c8706e0eeb3b03 100644
--- a/docs/commands-legacy/ob-is-shared.md
+++ b/docs/commands-legacy/ob-is-shared.md
@@ -5,7 +5,7 @@ slug: /commands/ob-is-shared
displayed_sidebar: docs
---
-**OB Is shared** ( *toCheck* ) : Boolean
+**OB Is shared** ( *toCheck* : Object, Collection ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ This command returns **True** if you pass a shareable entity selection in *toChe
| | |
| --- | --- |
| Command number | 1759 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-keys.md b/docs/commands-legacy/ob-keys.md
index ba6a947b5b9f54..cb13ca2759ab81 100644
--- a/docs/commands-legacy/ob-keys.md
+++ b/docs/commands-legacy/ob-keys.md
@@ -5,7 +5,7 @@ slug: /commands/ob-keys
displayed_sidebar: docs
---
-**OB Keys** ( *object* ) : Collection
+**OB Keys** ( *object* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ You want a collection with all first-level property names of an object:
| | |
| --- | --- |
| Command number | 1719 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/ob-remove.md b/docs/commands-legacy/ob-remove.md
index 1f3278348641c1..d3e5e035ec30e6 100644
--- a/docs/commands-legacy/ob-remove.md
+++ b/docs/commands-legacy/ob-remove.md
@@ -5,7 +5,7 @@ slug: /commands/ob-remove
displayed_sidebar: docs
---
-**OB REMOVE** ( *object* ; *property* )
+**OB REMOVE** ( *object* : Object, Object ; *property* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ You want to remove the "age" property of an object:
| | |
| --- | --- |
| Command number | 1226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-set-array.md b/docs/commands-legacy/ob-set-array.md
index 008f9536229a5e..08693211ee08a5 100644
--- a/docs/commands-legacy/ob-set-array.md
+++ b/docs/commands-legacy/ob-set-array.md
@@ -5,7 +5,7 @@ slug: /commands/ob-set-array
displayed_sidebar: docs
---
-**OB SET ARRAY** ( *object* ; *property* ; *array* )
+**OB SET ARRAY** ( *object* : Object, Object ; *property* : Text ; *array* : Array, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -138,6 +138,6 @@ Using a picture array:
| | |
| --- | --- |
| Command number | 1227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-set-null.md b/docs/commands-legacy/ob-set-null.md
index bde2ba76dda963..8be7b39c63c8b4 100644
--- a/docs/commands-legacy/ob-set-null.md
+++ b/docs/commands-legacy/ob-set-null.md
@@ -5,7 +5,7 @@ slug: /commands/ob-set-null
displayed_sidebar: docs
---
-**OB SET NULL** ( *object* ; *property* )
+**OB SET NULL** ( *object* : Object, Object ; *property* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ We want to put the null value in the "age" property for Lea:
| | |
| --- | --- |
| Command number | 1233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-set.md b/docs/commands-legacy/ob-set.md
index 7b94f48c51aaab..8f95d10e0ebc82 100644
--- a/docs/commands-legacy/ob-set.md
+++ b/docs/commands-legacy/ob-set.md
@@ -5,7 +5,7 @@ slug: /commands/ob-set
displayed_sidebar: docs
---
-**OB SET** ( *object* ; *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )
+**OB SET** ( *object* : Object, Object ; *property* : Text ; *value* : Expression {; ...(*property* : Text, *value* : Expression)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -202,6 +202,6 @@ You want to store a picture in an object field. You can write:
| | |
| --- | --- |
| Command number | 1220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/ob-values.md b/docs/commands-legacy/ob-values.md
index d000653377651a..4333ef8c7bc1aa 100644
--- a/docs/commands-legacy/ob-values.md
+++ b/docs/commands-legacy/ob-values.md
@@ -5,7 +5,7 @@ slug: /commands/ob-values
displayed_sidebar: docs
---
-**OB Values** ( *object* ) : Collection
+**OB Values** ( *object* : Object ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ You want a collection with all property values of an object:
| | |
| --- | --- |
| Command number | 1718 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-duplicate.md b/docs/commands-legacy/object-duplicate.md
index e9c188dd84a4f8..a5ad760208b03a 100644
--- a/docs/commands-legacy/object-duplicate.md
+++ b/docs/commands-legacy/object-duplicate.md
@@ -5,7 +5,7 @@ slug: /commands/object-duplicate
displayed_sidebar: docs
---
-**OBJECT DUPLICATE** ( {* ;} *object* {; *newName* {; *newVar* {; *boundTo* {; *moveH* {; *moveV* {; *resizeH* {; *resizeV*}}}}}}} {; *} )
+**OBJECT DUPLICATE** ( * ; *object* : Text {; *newName* : Text {; *newVar* : Pointer {; *boundTo* : Text {; *moveH* : Integer {; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer}}}}}}} {; *} )
**OBJECT DUPLICATE** ( *object* : Field, Variable {; *newName* : Text {; *newVar* : Pointer {; *boundTo* : Text {; *moveH* : Integer {; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer}}}}}}} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -110,7 +110,7 @@ Creation of a new radio button "bRadio6" based on the existing radio button "bRa
| | |
| --- | --- |
| Command number | 1111 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/object-get-action.md b/docs/commands-legacy/object-get-action.md
index 17e74f251de3fb..37b0bab08981fd 100644
--- a/docs/commands-legacy/object-get-action.md
+++ b/docs/commands-legacy/object-get-action.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-action
displayed_sidebar: docs
---
-**OBJECT Get action** ( {* ;} *object* ) : Text
+**OBJECT Get action** ( * ; *object* : Text ) : Text
**OBJECT Get action** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ You want to associate the "Cancel" action with all the objects in the form that
| | |
| --- | --- |
| Command number | 1457 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-auto-spellcheck.md b/docs/commands-legacy/object-get-auto-spellcheck.md
index 4d776474a765b5..77f297edeff932 100644
--- a/docs/commands-legacy/object-get-auto-spellcheck.md
+++ b/docs/commands-legacy/object-get-auto-spellcheck.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT Get auto spellcheck** ( {* ;} *object* ) : Boolean
+**OBJECT Get auto spellcheck** ( * ; *object* : Text ) : Boolean
**OBJECT Get auto spellcheck** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ The command returns **True** when automatic spell-checking is enabled for the *o
| | |
| --- | --- |
| Command number | 1174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-best-size.md b/docs/commands-legacy/object-get-best-size.md
index ac0586c216c30e..958360144a0a7f 100644
--- a/docs/commands-legacy/object-get-best-size.md
+++ b/docs/commands-legacy/object-get-best-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-best-size
displayed_sidebar: docs
---
-**OBJECT GET BEST SIZE** ( {* ;} *object* ; *bestWidth* ; *bestHeight* {; *maxWidth*} )
+**OBJECT GET BEST SIZE** ( * ; *object* : Text ; *bestWidth* : Integer ; *bestHeight* : Integer {; *maxWidth* : Integer} )
**OBJECT GET BEST SIZE** ( *object* : Field, Variable ; *bestWidth* : Integer ; *bestHeight* : Integer {; *maxWidth* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ Refer to the example in the [SET PRINT MARKER](set-print-marker.md) command.
| | |
| --- | --- |
| Command number | 717 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-border-style.md b/docs/commands-legacy/object-get-border-style.md
index 06b8c88a471e1f..4b8becee8c2c37 100644
--- a/docs/commands-legacy/object-get-border-style.md
+++ b/docs/commands-legacy/object-get-border-style.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-border-style
displayed_sidebar: docs
---
-**OBJECT Get border style** ( {* ;} *object* ) : Integer
+**OBJECT Get border style** ( * ; *object* : Text ) : Integer
**OBJECT Get border style** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The command returns a value corresponding to the border line style. You can comp
| | |
| --- | --- |
| Command number | 1263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-context-menu.md b/docs/commands-legacy/object-get-context-menu.md
index 8bb1dd20647723..95c152f1fe3653 100644
--- a/docs/commands-legacy/object-get-context-menu.md
+++ b/docs/commands-legacy/object-get-context-menu.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-context-menu
displayed_sidebar: docs
---
-**OBJECT Get context menu** ( {* ;} *object* ) : Boolean
+**OBJECT Get context menu** ( * ; *object* : Text ) : Boolean
**OBJECT Get context menu** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ The command returns **True** if the context menu is enabled for the object and *
| | |
| --- | --- |
| Command number | 1252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-coordinates.md b/docs/commands-legacy/object-get-coordinates.md
index e360948bd864b8..087cf80ebb7f44 100644
--- a/docs/commands-legacy/object-get-coordinates.md
+++ b/docs/commands-legacy/object-get-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-coordinates
displayed_sidebar: docs
---
-**OBJECT GET COORDINATES** ( {* ;} *object* ; *left* ; *top* ; *right* ; *bottom* )
+**OBJECT GET COORDINATES** ( * ; *object* : Text ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
**OBJECT GET COORDINATES** ( *object* : Field, Variable ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,6 +90,6 @@ The method returns theoretical coordinates. In cases where the list box has been
| | |
| --- | --- |
| Command number | 663 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-corner-radius.md b/docs/commands-legacy/object-get-corner-radius.md
index b559aeaf9272cf..88e9867f88495a 100644
--- a/docs/commands-legacy/object-get-corner-radius.md
+++ b/docs/commands-legacy/object-get-corner-radius.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-corner-radius
displayed_sidebar: docs
---
-**OBJECT Get corner radius** ( {* ;} *object* ) : Integer
+**OBJECT Get corner radius** ( * ; *object* : Text ) : Integer
**OBJECT Get corner radius** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ The following code could be added to a button method:
| | |
| --- | --- |
| Command number | 1324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-data-source.md b/docs/commands-legacy/object-get-data-source.md
index 4f5fd77965aa34..58c487d001fcd8 100644
--- a/docs/commands-legacy/object-get-data-source.md
+++ b/docs/commands-legacy/object-get-data-source.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-data-source
displayed_sidebar: docs
---
-**OBJECT Get data source** ( {* ;} *object* ) : Pointer
+**OBJECT Get data source** ( * ; *object* : Text ) : Pointer
**OBJECT Get data source** ( *object* : Field, Variable ) : Pointer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ You execute the following code:
| | |
| --- | --- |
| Command number | 1265 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-drag-and-drop-options.md b/docs/commands-legacy/object-get-drag-and-drop-options.md
index 4752b9f05c5fdf..5e9f12cf2418e4 100644
--- a/docs/commands-legacy/object-get-drag-and-drop-options.md
+++ b/docs/commands-legacy/object-get-drag-and-drop-options.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT GET DRAG AND DROP OPTIONS** ( {* ;} *object* ; *draggable* ; *automaticDrag* ; *droppable* ; *automaticDrop* )
+**OBJECT GET DRAG AND DROP OPTIONS** ( * ; *object* : Text ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
**OBJECT GET DRAG AND DROP OPTIONS** ( *object* : Field, Variable ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ Each parameter returns True or False according to whether the corresponding opti
| | |
| --- | --- |
| Command number | 1184 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-enabled.md b/docs/commands-legacy/object-get-enabled.md
index 182433bebb4219..129720a531d457 100644
--- a/docs/commands-legacy/object-get-enabled.md
+++ b/docs/commands-legacy/object-get-enabled.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-enabled
displayed_sidebar: docs
---
-**OBJECT Get enabled** ( {* ;} *object* ) : Boolean
+**OBJECT Get enabled** ( * ; *object* : Text ) : Boolean
**OBJECT Get enabled** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ This command can be applied to the following types of objects:
| | |
| --- | --- |
| Command number | 1079 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-enterable.md b/docs/commands-legacy/object-get-enterable.md
index 16d2586ddab70e..be30eed8143732 100644
--- a/docs/commands-legacy/object-get-enterable.md
+++ b/docs/commands-legacy/object-get-enterable.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-enterable
displayed_sidebar: docs
---
-**OBJECT Get enterable** ( {* ;} *object* ) : Boolean
+**OBJECT Get enterable** ( * ; *object* : Text ) : Boolean
**OBJECT Get enterable** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 1067 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-events.md b/docs/commands-legacy/object-get-events.md
index 2d1a1cc955b0eb..fd187ffa069b20 100644
--- a/docs/commands-legacy/object-get-events.md
+++ b/docs/commands-legacy/object-get-events.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-events
displayed_sidebar: docs
---
-**OBJECT GET EVENTS** ( {* ;} *object* ; *arrEvents* )
+**OBJECT GET EVENTS** ( * ; *object* : Text ; *arrEvents* : Integer array )
**OBJECT GET EVENTS** ( *object* : Field, Variable ; *arrEvents* : Integer array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name or "" to designate the form (if * is specified) orField or variable (if * is omitted) |
-| arrEvents | Array integer | ← | Array of enabled events |
+| arrEvents | Integer array | ← | Array of enabled events |
@@ -52,6 +52,6 @@ You want to enable two events and get the list of events for an object:
| | |
| --- | --- |
| Command number | 1238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-filter.md b/docs/commands-legacy/object-get-filter.md
index 849046ca8a91ef..7490f43a016711 100644
--- a/docs/commands-legacy/object-get-filter.md
+++ b/docs/commands-legacy/object-get-filter.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-filter
displayed_sidebar: docs
---
-**OBJECT Get filter** ( {* ;} *object* ) : Text
+**OBJECT Get filter** ( * ; *object* : Text ) : Text
**OBJECT Get filter** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 1073 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-focus-rectangle-invisible.md b/docs/commands-legacy/object-get-focus-rectangle-invisible.md
index d343dea593df3c..6e020c57d708a8 100644
--- a/docs/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/docs/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT Get focus rectangle invisible** ( {* ;} *object* ) : Boolean
+**OBJECT Get focus rectangle invisible** ( * ; *object* : Text ) : Boolean
**OBJECT Get focus rectangle invisible** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ The command returns **True** when the focus rectangle is hidden and **False** wh
| | |
| --- | --- |
| Command number | 1178 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-font-size.md b/docs/commands-legacy/object-get-font-size.md
index f1ec52f1fb24d2..3a59413b3228bc 100644
--- a/docs/commands-legacy/object-get-font-size.md
+++ b/docs/commands-legacy/object-get-font-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-font-size
displayed_sidebar: docs
---
-**OBJECT Get font size** ( {* ;} *object* ) : Integer
+**OBJECT Get font size** ( * ; *object* : Text ) : Integer
**OBJECT Get font size** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 1070 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-font-style.md b/docs/commands-legacy/object-get-font-style.md
index b95851fb4ed051..fdc47c55ab7c58 100644
--- a/docs/commands-legacy/object-get-font-style.md
+++ b/docs/commands-legacy/object-get-font-style.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-font-style
displayed_sidebar: docs
---
-**OBJECT Get font style** ( * ; *object* ) : Integer
+**OBJECT Get font style** ( * ; *object* : any ) : Integer
**OBJECT Get font style** ( *object* : any ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ You can compare the value returned with the value of one or more of the followin
| | |
| --- | --- |
| Command number | 1071 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-font.md b/docs/commands-legacy/object-get-font.md
index ec37c0c4a63eac..1beb2b20023fe6 100644
--- a/docs/commands-legacy/object-get-font.md
+++ b/docs/commands-legacy/object-get-font.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-font
displayed_sidebar: docs
---
-**OBJECT Get font** ( {* ;} *object* ) : Text
+**OBJECT Get font** ( * ; *object* : Text ) : Text
**OBJECT Get font** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 1069 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-format.md b/docs/commands-legacy/object-get-format.md
index 619ae68674be56..f5be3c0f8f56e7 100644
--- a/docs/commands-legacy/object-get-format.md
+++ b/docs/commands-legacy/object-get-format.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-format
displayed_sidebar: docs
---
-**OBJECT Get format** ( {* ;} *object* ) : Text
+**OBJECT Get format** ( * ; *object* : Text ) : Text
**OBJECT Get format** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Command number | 894 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-help-tip.md b/docs/commands-legacy/object-get-help-tip.md
index 0d8907cb87a145..dbf040a926f17b 100644
--- a/docs/commands-legacy/object-get-help-tip.md
+++ b/docs/commands-legacy/object-get-help-tip.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-help-tip
displayed_sidebar: docs
---
-**OBJECT Get help tip** ( {* ;} *object* ) : Text
+**OBJECT Get help tip** ( * ; *object* : Text ) : Text
**OBJECT Get help tip** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The title of a picture button is stored as a help message. This title is stored
| | |
| --- | --- |
| Command number | 1182 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-horizontal-alignment.md b/docs/commands-legacy/object-get-horizontal-alignment.md
index 43385add41887e..3834bfffe97d4e 100644
--- a/docs/commands-legacy/object-get-horizontal-alignment.md
+++ b/docs/commands-legacy/object-get-horizontal-alignment.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT Get horizontal alignment** ( {* ;} *object* ) : Integer
+**OBJECT Get horizontal alignment** ( * ; *object* : Text ) : Integer
**OBJECT Get horizontal alignment** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ The form objects to which alignment can be applied are as follows:
| | |
| --- | --- |
| Command number | 707 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-indicator-type.md b/docs/commands-legacy/object-get-indicator-type.md
index 1baa277bb6b4e0..1cc35f1b70f9f4 100644
--- a/docs/commands-legacy/object-get-indicator-type.md
+++ b/docs/commands-legacy/object-get-indicator-type.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-indicator-type
displayed_sidebar: docs
---
-**OBJECT Get indicator type** ( {* ;} *object* ) : Integer
+**OBJECT Get indicator type** ( * ; *object* : Text ) : Integer
**OBJECT Get indicator type** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ You can compare the value returned by the command with the following constants,
| | |
| --- | --- |
| Command number | 1247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-keyboard-layout.md b/docs/commands-legacy/object-get-keyboard-layout.md
index 689a1e51ea5825..7b1455ff231f85 100644
--- a/docs/commands-legacy/object-get-keyboard-layout.md
+++ b/docs/commands-legacy/object-get-keyboard-layout.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT Get keyboard layout** ( {* ;} *object* ) : Text
+**OBJECT Get keyboard layout** ( * ; *object* : Text ) : Text
**OBJECT Get keyboard layout** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ The command returns a string indicating the language code used, based on RFC3066
| | |
| --- | --- |
| Command number | 1180 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-list-name.md b/docs/commands-legacy/object-get-list-name.md
index f4823651989426..184430c2bb2a71 100644
--- a/docs/commands-legacy/object-get-list-name.md
+++ b/docs/commands-legacy/object-get-list-name.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-list-name
displayed_sidebar: docs
---
-**OBJECT Get list name** ( {* ;} *object* {; *listType*} ) : Text
+**OBJECT Get list name** ( * ; *object* : Text {; *listType* : Integer} ) : Text
**OBJECT Get list name** ( *object* : Field, Variable {; *listType* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ If there is no list of the type defined associated with the *object*, the comman
| | |
| --- | --- |
| Command number | 1072 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-list-reference.md b/docs/commands-legacy/object-get-list-reference.md
index 35a7d94f2df590..b47739509cf9cb 100644
--- a/docs/commands-legacy/object-get-list-reference.md
+++ b/docs/commands-legacy/object-get-list-reference.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-list-reference
displayed_sidebar: docs
---
-**OBJECT Get list reference** ( {* ;} *object* {; *listType*} ) : Integer
+**OBJECT Get list reference** ( * ; *object* : Text {; *listType* : Integer} ) : Integer
**OBJECT Get list reference** ( *object* : Field, Variable {; *listType* : Integer} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ If there is no hierarchical list associated with the object for the *listType* d
| | |
| --- | --- |
| Command number | 1267 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-maximum-value.md b/docs/commands-legacy/object-get-maximum-value.md
index d436547f63fc5a..882a316892f4f3 100644
--- a/docs/commands-legacy/object-get-maximum-value.md
+++ b/docs/commands-legacy/object-get-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-maximum-value
displayed_sidebar: docs
---
-**OBJECT GET MAXIMUM VALUE** ( {* ;} *object* ; *maxValue* )
+**OBJECT GET MAXIMUM VALUE** ( * ; *object* : Text ; *maxValue* : Date, Time, Real )
**OBJECT GET MAXIMUM VALUE** ( *object* : Field, Variable ; *maxValue* : Date, Time, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name (if * is specified) or
Field or variable (if * is omitted) |
-| maxValue | Date, Time, Number | ← | Current maximum value for object |
+| maxValue | Date, Time, Real | ← | Current maximum value for object |
@@ -33,6 +33,6 @@ Passing the optional *\** parameter indicates that the *object* parameter is an
| | |
| --- | --- |
| Command number | 1245 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-minimum-value.md b/docs/commands-legacy/object-get-minimum-value.md
index b67155ae4c7ac8..0a9c067f0937aa 100644
--- a/docs/commands-legacy/object-get-minimum-value.md
+++ b/docs/commands-legacy/object-get-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-minimum-value
displayed_sidebar: docs
---
-**OBJECT GET MINIMUM VALUE** ( {* ;} *object* ; *minValue* )
+**OBJECT GET MINIMUM VALUE** ( * ; *object* : Text ; *minValue* : Date, Time, Real )
**OBJECT GET MINIMUM VALUE** ( *object* : Field, Variable ; *minValue* : Date, Time, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name (if * is specified) or
Field or variable (if * is omitted) |
-| minValue | Date, Time, Number | ← | Current minimum value for object |
+| minValue | Date, Time, Real | ← | Current minimum value for object |
@@ -33,6 +33,6 @@ Passing the optional *\** parameter indicates that the *object* parameter is an
| | |
| --- | --- |
| Command number | 1243 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-multiline.md b/docs/commands-legacy/object-get-multiline.md
index 8fc1bbbf67ea5c..3a6a060101aecd 100644
--- a/docs/commands-legacy/object-get-multiline.md
+++ b/docs/commands-legacy/object-get-multiline.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-multiline
displayed_sidebar: docs
---
-**OBJECT Get multiline** ( {* ;} *object* ) : Integer
+**OBJECT Get multiline** ( * ; *object* : Text ) : Integer
**OBJECT Get multiline** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The value returned corresponds to one of the following constants, found in the "
| | |
| --- | --- |
| Command number | 1254 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-name.md b/docs/commands-legacy/object-get-name.md
index bb5fe432b8f025..fd01bfcd62ed4e 100644
--- a/docs/commands-legacy/object-get-name.md
+++ b/docs/commands-legacy/object-get-name.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-name
displayed_sidebar: docs
---
-**OBJECT Get name** {( *selector* )} : Text
+**OBJECT Get name** ( *selector* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ After the execution of this object method, the *$btnName* variable contains the
| | |
| --- | --- |
| Command number | 1087 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-placeholder.md b/docs/commands-legacy/object-get-placeholder.md
index 73bd4ec8c04e99..8a79d9c0a884a8 100644
--- a/docs/commands-legacy/object-get-placeholder.md
+++ b/docs/commands-legacy/object-get-placeholder.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-placeholder
displayed_sidebar: docs
---
-**OBJECT Get placeholder** ( {* ;} *object* ) : Text
+**OBJECT Get placeholder** ( * ; *object* : Text ) : Text
**OBJECT Get placeholder** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ You want to get the field placeholder text:
| | |
| --- | --- |
| Command number | 1296 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-pointer.md b/docs/commands-legacy/object-get-pointer.md
index 29703a405873f5..a1cf0142a25d30 100644
--- a/docs/commands-legacy/object-get-pointer.md
+++ b/docs/commands-legacy/object-get-pointer.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-pointer
displayed_sidebar: docs
---
-**OBJECT Get pointer** {( *selector* {; *objectName* {; *subformName*}})} : Pointer
+**OBJECT Get pointer** ( *selector* : Integer {; *objectName* : Text {; *subformName* : Text}}) : Pointer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ Given a form "SF" used twice as a subform in the same parent form. The subform o
| | |
| --- | --- |
| Command number | 1124 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-print-variable-frame.md b/docs/commands-legacy/object-get-print-variable-frame.md
index 1a348fbf73da45..6f77222fbbb85b 100644
--- a/docs/commands-legacy/object-get-print-variable-frame.md
+++ b/docs/commands-legacy/object-get-print-variable-frame.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT GET PRINT VARIABLE FRAME** ( {* ;} *object* ; *variableFrame* {; *fixedSubform*} )
+**OBJECT GET PRINT VARIABLE FRAME** ( * ; *object* : Text ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
**OBJECT GET PRINT VARIABLE FRAME** ( *object* : Field, Variable ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ If the *object* is a subform and if variable frame printing is disabled (**False
| | |
| --- | --- |
| Command number | 1241 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-resizing-options.md b/docs/commands-legacy/object-get-resizing-options.md
index baa6171654ce13..bb54e3067fe6d4 100644
--- a/docs/commands-legacy/object-get-resizing-options.md
+++ b/docs/commands-legacy/object-get-resizing-options.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-resizing-options
displayed_sidebar: docs
---
-**OBJECT GET RESIZING OPTIONS** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT GET RESIZING OPTIONS** ( * ; *object* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT GET RESIZING OPTIONS** ( *object* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ The *vertical* parameter returns a value indicating the vertical resizing option
| | |
| --- | --- |
| Command number | 1176 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-rgb-colors.md b/docs/commands-legacy/object-get-rgb-colors.md
index 229cb062fb25ba..c31d5d9248d252 100644
--- a/docs/commands-legacy/object-get-rgb-colors.md
+++ b/docs/commands-legacy/object-get-rgb-colors.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-rgb-colors
displayed_sidebar: docs
---
-**OBJECT GET RGB COLORS** ( {* ;} *object* ; *foregroundColor* {; *backgroundColor* {; *altBackgrndColor*}} )
+**OBJECT GET RGB COLORS** ( * ; *object* : Text ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
**OBJECT GET RGB COLORS** ( *object* : Field, Variable ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ For more information about the format of the *foregroundColor*, *backgroundColor
| | |
| --- | --- |
| Command number | 1074 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-scroll-position.md b/docs/commands-legacy/object-get-scroll-position.md
index 163b859e5bae8b..433f4f359124a9 100644
--- a/docs/commands-legacy/object-get-scroll-position.md
+++ b/docs/commands-legacy/object-get-scroll-position.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-scroll-position
displayed_sidebar: docs
---
-**OBJECT GET SCROLL POSITION** ( {* ;} *object* ; *vPosition* {; *hPosition*} )
+**OBJECT GET SCROLL POSITION** ( * ; *object* : Text ; *vPosition* : Integer {; *hPosition* : Integer} )
**OBJECT GET SCROLL POSITION** ( *object* : Field, Variable ; *vPosition* : Integer {; *hPosition* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ If *object* designates a picture (variable or field), *vPosition* returns the ve
| | |
| --- | --- |
| Command number | 1114 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-scrollbar.md b/docs/commands-legacy/object-get-scrollbar.md
index 205654b65ec9d0..b8653ed41ef190 100644
--- a/docs/commands-legacy/object-get-scrollbar.md
+++ b/docs/commands-legacy/object-get-scrollbar.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-scrollbar
displayed_sidebar: docs
---
-**OBJECT GET SCROLLBAR** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT GET SCROLLBAR** ( * ; *object* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT GET SCROLLBAR** ( *object* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ For more information, refer to the description of the [OBJECT SET SCROLLBAR](obj
| | |
| --- | --- |
| Command number | 1076 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-shortcut.md b/docs/commands-legacy/object-get-shortcut.md
index 2a23a54c9c8c8d..b404b545919a97 100644
--- a/docs/commands-legacy/object-get-shortcut.md
+++ b/docs/commands-legacy/object-get-shortcut.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-shortcut
displayed_sidebar: docs
---
-**OBJECT GET SHORTCUT** ( {* ;} *object* ; *key* ; *modifiers* )
+**OBJECT GET SHORTCUT** ( * ; *object* : Text ; *key* : Text ; *modifiers* : Integer )
**OBJECT GET SHORTCUT** ( *object* : Field, Variable ; *key* : Text ; *modifiers* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ If there are no modifier keys for the shortcut, *modifiers* returns 0\.
| | |
| --- | --- |
| Command number | 1186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-style-sheet.md b/docs/commands-legacy/object-get-style-sheet.md
index ec52c5ef6182e3..461f134ae417cb 100644
--- a/docs/commands-legacy/object-get-style-sheet.md
+++ b/docs/commands-legacy/object-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-style-sheet
displayed_sidebar: docs
---
-**OBJECT Get style sheet** ( {* ;} *object* ) : Text
+**OBJECT Get style sheet** ( * ; *object* : Text ) : Text
**OBJECT Get style sheet** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ In **project architecture**, only the three automatic style sheets are supported
| | |
| --- | --- |
| Command number | 1258 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-subform-container-size.md b/docs/commands-legacy/object-get-subform-container-size.md
index d7d3d310bb1a43..509d185c497f76 100644
--- a/docs/commands-legacy/object-get-subform-container-size.md
+++ b/docs/commands-legacy/object-get-subform-container-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform-container-size
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM CONTAINER SIZE** ( *width* ; *height* )
+**OBJECT GET SUBFORM CONTAINER SIZE** ( *width* : Integer ; *height* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ The On Resize event is generated in the subform form method if the subform objec
| | |
| --- | --- |
| Command number | 1148 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-subform-container-value.md b/docs/commands-legacy/object-get-subform-container-value.md
index ada82f21750fa3..a11cc209e51585 100644
--- a/docs/commands-legacy/object-get-subform-container-value.md
+++ b/docs/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Command number | 1785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-subform.md b/docs/commands-legacy/object-get-subform.md
index b3cee7501b567e..1ae320ad297aa8 100644
--- a/docs/commands-legacy/object-get-subform.md
+++ b/docs/commands-legacy/object-get-subform.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM** ( {* ;} *object* ; *tablePtr* ; *detailSubform* {; *listSubform*} )
+**OBJECT GET SUBFORM** ( * ; *object* : Text ; *tablePtr* : Table ; *detailSubform* : Text {; *listSubform* : Text} )
**OBJECT GET SUBFORM** ( *object* : Field, Variable ; *tablePtr* : Table ; *detailSubform* : Text {; *listSubform* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ If there is no list form, an empty string is returned in the *listSubform* param
| | |
| --- | --- |
| Command number | 1139 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-text-orientation.md b/docs/commands-legacy/object-get-text-orientation.md
index 22043cb975f1cb..e20ff8c437888a 100644
--- a/docs/commands-legacy/object-get-text-orientation.md
+++ b/docs/commands-legacy/object-get-text-orientation.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-text-orientation
displayed_sidebar: docs
---
-**OBJECT Get text orientation** ( {* ;} *object* ) : Integer
+**OBJECT Get text orientation** ( * ; *object* : Text ) : Integer
**OBJECT Get text orientation** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ When the form is executed, if you call the following statement:
| | |
| --- | --- |
| Command number | 1283 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-three-states-checkbox.md b/docs/commands-legacy/object-get-three-states-checkbox.md
index 9604f46a945c97..9df6aa0ebfc0ac 100644
--- a/docs/commands-legacy/object-get-three-states-checkbox.md
+++ b/docs/commands-legacy/object-get-three-states-checkbox.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT Get three states checkbox** ( {* ;} *object* ) : Boolean
+**OBJECT Get three states checkbox** ( * ; *object* : Text ) : Boolean
**OBJECT Get three states checkbox** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ You can set the "Three-States" property either using the Property List, or using
| | |
| --- | --- |
| Command number | 1250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-title.md b/docs/commands-legacy/object-get-title.md
index 93cef6abd3a90e..40a1585dea33ed 100644
--- a/docs/commands-legacy/object-get-title.md
+++ b/docs/commands-legacy/object-get-title.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-title
displayed_sidebar: docs
---
-**OBJECT Get title** ( {* ;} *object* ) : Text
+**OBJECT Get title** ( * ; *object* : Text ) : Text
**OBJECT Get title** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ If you pass the optional *\** parameter, you indicate that the *object* paramete
| | |
| --- | --- |
| Command number | 1068 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-type.md b/docs/commands-legacy/object-get-type.md
index 37afb2558efe70..c2283cf5d6511c 100644
--- a/docs/commands-legacy/object-get-type.md
+++ b/docs/commands-legacy/object-get-type.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-type
displayed_sidebar: docs
---
-**OBJECT Get type** ( {* ;} *object* ) : Integer
+**OBJECT Get type** ( * ; *object* : Text ) : Integer
**OBJECT Get type** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -101,6 +101,6 @@ You want to load a form and get a list of all the objects of list boxes that it
| | |
| --- | --- |
| Command number | 1300 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-value.md b/docs/commands-legacy/object-get-value.md
index c420f5f8798746..24e91bf26fc4c8 100644
--- a/docs/commands-legacy/object-get-value.md
+++ b/docs/commands-legacy/object-get-value.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-value
displayed_sidebar: docs
---
-**OBJECT Get value** ( *objectName* ) : any
+**OBJECT Get value** ( *objectName* : Text ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ See the example for the [OBJECT SET VALUE](object-set-value.md) command.
| | |
| --- | --- |
| Command number | 1743 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-vertical-alignment.md b/docs/commands-legacy/object-get-vertical-alignment.md
index c7a56b39a9414e..48bbcf61427440 100644
--- a/docs/commands-legacy/object-get-vertical-alignment.md
+++ b/docs/commands-legacy/object-get-vertical-alignment.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT Get vertical alignment** ( {* ;} *object* ) : Integer
+**OBJECT Get vertical alignment** ( * ; *object* : Text ) : Integer
**OBJECT Get vertical alignment** ( *object* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Vertical alignment can be applied to the following types of form objects:
| | |
| --- | --- |
| Command number | 1188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-get-visible.md b/docs/commands-legacy/object-get-visible.md
index 82aef26ae1e214..8e4e4b1631b88b 100644
--- a/docs/commands-legacy/object-get-visible.md
+++ b/docs/commands-legacy/object-get-visible.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-visible
displayed_sidebar: docs
---
-**OBJECT Get visible** ( {* ;} *object* ) : Boolean
+**OBJECT Get visible** ( * ; *object* : Text ) : Boolean
**OBJECT Get visible** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1075 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-is-styled-text.md b/docs/commands-legacy/object-is-styled-text.md
index 6cf9b7729b83cb..61f02a9542f853 100644
--- a/docs/commands-legacy/object-is-styled-text.md
+++ b/docs/commands-legacy/object-is-styled-text.md
@@ -5,7 +5,7 @@ slug: /commands/object-is-styled-text
displayed_sidebar: docs
---
-**OBJECT Is styled text** ( {* ;} *object* ) : Boolean
+**OBJECT Is styled text** ( * ; *object* : Text ) : Boolean
**OBJECT Is styled text** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ A form contains a field represented by two different objects; one of the objects
| | |
| --- | --- |
| Command number | 1261 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-move.md b/docs/commands-legacy/object-move.md
index e68c7634b1c001..3b02e62d9b430b 100644
--- a/docs/commands-legacy/object-move.md
+++ b/docs/commands-legacy/object-move.md
@@ -5,7 +5,7 @@ slug: /commands/object-move
displayed_sidebar: docs
---
-**OBJECT MOVE** ( {* ;} *object* ; *moveH* ; *moveV* {; *resizeH* {; *resizeV* {; *}}} )
+**OBJECT MOVE** ( * ; *object* : Text ; *moveH* : Integer ; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer {; *}}} )
**OBJECT MOVE** ( *object* : Field, Variable ; *moveH* : Integer ; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer {; *}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ The following statement moves “button\_1” to the following coordinates (10;2
| | |
| --- | --- |
| Command number | 664 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-action.md b/docs/commands-legacy/object-set-action.md
index 8b70a9c9a4a4cc..67b8fe85d47bed 100644
--- a/docs/commands-legacy/object-set-action.md
+++ b/docs/commands-legacy/object-set-action.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-action
displayed_sidebar: docs
---
-**OBJECT SET ACTION** ( {* ;} *object* ; *action* )
+**OBJECT SET ACTION** ( * ; *object* : Text ; *action* : Text )
**OBJECT SET ACTION** ( *object* : Field, Variable ; *action* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ You want to associate the **Validate** standard action with a button:
| | |
| --- | --- |
| Command number | 1259 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-auto-spellcheck.md b/docs/commands-legacy/object-set-auto-spellcheck.md
index 0e288e2b9bffe8..f6965648d452b5 100644
--- a/docs/commands-legacy/object-set-auto-spellcheck.md
+++ b/docs/commands-legacy/object-set-auto-spellcheck.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT SET AUTO SPELLCHECK** ( {* ;} *object* ; *autoSpellcheck* )
+**OBJECT SET AUTO SPELLCHECK** ( * ; *object* : Text ; *autoSpellcheck* : Boolean )
**OBJECT SET AUTO SPELLCHECK** ( *object* : Field, Variable ; *autoSpellcheck* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Pass **True** in *autoSpellcheck* to enable this function for the object, and **
| | |
| --- | --- |
| Command number | 1173 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-border-style.md b/docs/commands-legacy/object-set-border-style.md
index b459e8508ec6ec..a6b680ce8eed5e 100644
--- a/docs/commands-legacy/object-set-border-style.md
+++ b/docs/commands-legacy/object-set-border-style.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-border-style
displayed_sidebar: docs
---
-**OBJECT SET BORDER STYLE** ( {* ;} *object* ; *borderStyle* )
+**OBJECT SET BORDER STYLE** ( * ; *object* : Text ; *borderStyle* : Integer )
**OBJECT SET BORDER STYLE** ( *object* : Field, Variable ; *borderStyle* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ In the *borderStyle* parameter, pass the value of the border line style that you
| | |
| --- | --- |
| Command number | 1262 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-context-menu.md b/docs/commands-legacy/object-set-context-menu.md
index 7b6fc1a0721b23..ff959de7c3f566 100644
--- a/docs/commands-legacy/object-set-context-menu.md
+++ b/docs/commands-legacy/object-set-context-menu.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-context-menu
displayed_sidebar: docs
---
-**OBJECT SET CONTEXT MENU** ( {* ;} *object* ; *contextMenu* )
+**OBJECT SET CONTEXT MENU** ( * ; *object* : Text ; *contextMenu* : Boolean )
**OBJECT SET CONTEXT MENU** ( *object* : Field, Variable ; *contextMenu* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Pass **True** in the *contextMenu* parameter to enable the context menu, and **F
| | |
| --- | --- |
| Command number | 1251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-coordinates.md b/docs/commands-legacy/object-set-coordinates.md
index eebc18906c2252..25bba5589c2f06 100644
--- a/docs/commands-legacy/object-set-coordinates.md
+++ b/docs/commands-legacy/object-set-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-coordinates
displayed_sidebar: docs
---
-**OBJECT SET COORDINATES** ( {* ;} *object* ; *left* ; *top* {; *right* ; *bottom*} )
+**OBJECT SET COORDINATES** ( {* ;} *object* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer ; *bottom* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ The following statement places the "button\_1" object at the (10,20) (30,40) coo
| | |
| --- | --- |
| Command number | 1248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-corner-radius.md b/docs/commands-legacy/object-set-corner-radius.md
index 48751ba3193fd8..271ced6ad2ea32 100644
--- a/docs/commands-legacy/object-set-corner-radius.md
+++ b/docs/commands-legacy/object-set-corner-radius.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-corner-radius
displayed_sidebar: docs
---
-**OBJECT SET CORNER RADIUS** ( {* ;} *object* ; *radius* )
+**OBJECT SET CORNER RADIUS** ( * ; *object* : Text ; *radius* : Integer )
**OBJECT SET CORNER RADIUS** ( *object* : Field, Variable ; *radius* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,6 +72,6 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner
| | |
| --- | --- |
| Command number | 1323 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-data-source.md b/docs/commands-legacy/object-set-data-source.md
index 4609f7b9d97290..ca0f95816cdbe2 100644
--- a/docs/commands-legacy/object-set-data-source.md
+++ b/docs/commands-legacy/object-set-data-source.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-data-source
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE** ( {* ;} *object* ; *dataSource* )
+**OBJECT SET DATA SOURCE** ( * ; *object* : Text ; *dataSource* : Pointer )
**OBJECT SET DATA SOURCE** ( *object* : Field, Variable ; *dataSource* : Pointer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ Modification of the data source for an entry area:
| | |
| --- | --- |
| Command number | 1264 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-drag-and-drop-options.md b/docs/commands-legacy/object-set-drag-and-drop-options.md
index 5fb5216bfcdf52..b7025d34a6611d 100644
--- a/docs/commands-legacy/object-set-drag-and-drop-options.md
+++ b/docs/commands-legacy/object-set-drag-and-drop-options.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT SET DRAG AND DROP OPTIONS** ( {* ;} *object* ; *draggable* ; *automaticDrag* ; *droppable* ; *automaticDrop* )
+**OBJECT SET DRAG AND DROP OPTIONS** ( * ; *object* : Text ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
**OBJECT SET DRAG AND DROP OPTIONS** ( *object* : Field, Variable ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Setting a text area to automatic drag and drop:
| | |
| --- | --- |
| Command number | 1183 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-enabled.md b/docs/commands-legacy/object-set-enabled.md
index 5364995098801b..9d644146ca4c6e 100644
--- a/docs/commands-legacy/object-set-enabled.md
+++ b/docs/commands-legacy/object-set-enabled.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-enabled
displayed_sidebar: docs
---
-**OBJECT SET ENABLED** ( {* ;} *object* ; *active* )
+**OBJECT SET ENABLED** ( * ; *object* : Text ; *active* : Boolean )
**OBJECT SET ENABLED** ( *object* : Field, Variable ; *active* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ This command can be applied to the following types of objects:
| | |
| --- | --- |
| Command number | 1123 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-enterable.md b/docs/commands-legacy/object-set-enterable.md
index e1056de19123d1..bca98b357f2ddc 100644
--- a/docs/commands-legacy/object-set-enterable.md
+++ b/docs/commands-legacy/object-set-enterable.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-enterable
displayed_sidebar: docs
---
-**OBJECT SET ENTERABLE** ( {* ;} *object* ; *enterable* )
+**OBJECT SET ENTERABLE** ( * ; *object* : Text ; *enterable* : Boolean, Integer )
**OBJECT SET ENTERABLE** ( *object* : Field, Variable ; *enterable* : Boolean, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,6 +78,6 @@ Here is the object method of a checkbox located in the header of a list in order
| | |
| --- | --- |
| Command number | 238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-events.md b/docs/commands-legacy/object-set-events.md
index 9510d00031b3a5..8c2f1b21d8811b 100644
--- a/docs/commands-legacy/object-set-events.md
+++ b/docs/commands-legacy/object-set-events.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-events
displayed_sidebar: docs
---
-**OBJECT SET EVENTS** ( {* ;} *object* ; *arrEvents* ; *mode* )
+**OBJECT SET EVENTS** ( * ; *object* : Text ; *arrEvents* : Integer array ; *mode* : Integer )
**OBJECT SET EVENTS** ( *object* : Field, Variable ; *arrEvents* : Integer array ; *mode* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name or "" to designate the form (if * is specified) or
Field or variable (if * is omitted) |
-| arrEvents | Array integer | → | Array of events to set |
+| arrEvents | Integer array | → | Array of events to set |
| mode | Integer | → | Activation mode for events defined in arrEvents |
@@ -171,6 +171,6 @@ Disables a single event of the form without modifying the others:
| | |
| --- | --- |
| Command number | 1239 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-filter.md b/docs/commands-legacy/object-set-filter.md
index 5ff794071759ad..13bc114c1f4fe5 100644
--- a/docs/commands-legacy/object-set-filter.md
+++ b/docs/commands-legacy/object-set-filter.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-filter
displayed_sidebar: docs
---
-**OBJECT SET FILTER** ( {* ;} *object* ; *entryFilter* )
+**OBJECT SET FILTER** ( * ; *object* : Text ; *entryFilter* : Text )
**OBJECT SET FILTER** ( *object* : Field, Variable ; *entryFilter* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ The following example allows only the letters “a,” “b,” “c,” or “g
| | |
| --- | --- |
| Command number | 235 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-focus-rectangle-invisible.md b/docs/commands-legacy/object-set-focus-rectangle-invisible.md
index ada8fd790bf3a1..c980fcecfcbe15 100644
--- a/docs/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/docs/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( {* ;} *object* ; *invisible* )
+**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( * ; *object* : Text ; *invisible* : Boolean )
**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( *object* : Field, Variable ; *invisible* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Pass **True** in the *invisible* parameter to hide the focus rectangle and **Fal
| | |
| --- | --- |
| Command number | 1177 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-font-size.md b/docs/commands-legacy/object-set-font-size.md
index 868b9c0b6e17f5..0b0e75f9f20a1a 100644
--- a/docs/commands-legacy/object-set-font-size.md
+++ b/docs/commands-legacy/object-set-font-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-font-size
displayed_sidebar: docs
---
-**OBJECT SET FONT SIZE** ( {* ;} *object* ; *size* )
+**OBJECT SET FONT SIZE** ( * ; *object* : Text ; *size* : Integer )
**OBJECT SET FONT SIZE** ( *object* : Field, Variable ; *size* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ The following example sets the font size for all the form objects whose name sta
| | |
| --- | --- |
| Command number | 165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-font-style.md b/docs/commands-legacy/object-set-font-style.md
index a2d88567027a91..ae9d6bc60d2fe2 100644
--- a/docs/commands-legacy/object-set-font-style.md
+++ b/docs/commands-legacy/object-set-font-style.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-font-style
displayed_sidebar: docs
---
-**OBJECT SET FONT STYLE** ( {* ;} *object* ; *styles* )
+**OBJECT SET FONT STYLE** ( * ; *object* : Text ; *styles* : Integer )
**OBJECT SET FONT STYLE** ( *object* : Field, Variable ; *styles* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ This example sets the font style to Plain for all form objects with names starti
| | |
| --- | --- |
| Command number | 166 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-font.md b/docs/commands-legacy/object-set-font.md
index 8b36c4d428954c..bf1e391c05bd2d 100644
--- a/docs/commands-legacy/object-set-font.md
+++ b/docs/commands-legacy/object-set-font.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-font
displayed_sidebar: docs
---
-**OBJECT SET FONT** ( {* ;} *object* ; *font* )
+**OBJECT SET FONT** ( * ; *object* : Text ; *font* : Text )
**OBJECT SET FONT** ( *object* : Field, Variable ; *font* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ The following example uses the special *%password* option, designed for entry an
| | |
| --- | --- |
| Command number | 164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-format.md b/docs/commands-legacy/object-set-format.md
index 8ec7c0f4afbc52..eb9ff958133bbc 100644
--- a/docs/commands-legacy/object-set-format.md
+++ b/docs/commands-legacy/object-set-format.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-format
displayed_sidebar: docs
---
-**OBJECT SET FORMAT** ( {* ;} *object* ; *displayFormat* )
+**OBJECT SET FORMAT** ( * ; *object* : Text ; *displayFormat* : Text )
**OBJECT SET FORMAT** ( *object* : Field, Variable ; *displayFormat* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -366,6 +366,6 @@ Switching a thermometer to "Barber shop" mode:
| | |
| --- | --- |
| Command number | 236 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-help-tip.md b/docs/commands-legacy/object-set-help-tip.md
index 3898ad11a26fe0..dc977ae589e5f8 100644
--- a/docs/commands-legacy/object-set-help-tip.md
+++ b/docs/commands-legacy/object-set-help-tip.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-help-tip
displayed_sidebar: docs
---
-**OBJECT SET HELP TIP** ( {* ;} *object* ; *helpTip* )
+**OBJECT SET HELP TIP** ( * ; *object* : Text ; *helpTip* : Text )
**OBJECT SET HELP TIP** ( *object* : Field, Variable ; *helpTip* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -134,6 +134,6 @@ The result is...
| | |
| --- | --- |
| Command number | 1181 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-horizontal-alignment.md b/docs/commands-legacy/object-set-horizontal-alignment.md
index 01f52ea59fc519..886873993d5470 100644
--- a/docs/commands-legacy/object-set-horizontal-alignment.md
+++ b/docs/commands-legacy/object-set-horizontal-alignment.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT SET HORIZONTAL ALIGNMENT** ( {* ;} *object* ; *alignment* )
+**OBJECT SET HORIZONTAL ALIGNMENT** ( * ; *object* : Text ; *alignment* : Integer )
**OBJECT SET HORIZONTAL ALIGNMENT** ( *object* : Field, Variable ; *alignment* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ The form objects to which alignment can be applied are as follows:
| | |
| --- | --- |
| Command number | 706 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-indicator-type.md b/docs/commands-legacy/object-set-indicator-type.md
index 4bd6e3c2215393..37797af034c78c 100644
--- a/docs/commands-legacy/object-set-indicator-type.md
+++ b/docs/commands-legacy/object-set-indicator-type.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-indicator-type
displayed_sidebar: docs
---
-**OBJECT SET INDICATOR TYPE** ( {* ;} *object* ; *indicator* )
+**OBJECT SET INDICATOR TYPE** ( * ; *object* : Text ; *indicator* : Integer )
**OBJECT SET INDICATOR TYPE** ( *object* : Field, Variable ; *indicator* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ In the *indicator* parameter, pass the type of indicator you want to display. Yo
| | |
| --- | --- |
| Command number | 1246 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-keyboard-layout.md b/docs/commands-legacy/object-set-keyboard-layout.md
index 43fe7d5840fa35..8ec4f97683d0bb 100644
--- a/docs/commands-legacy/object-set-keyboard-layout.md
+++ b/docs/commands-legacy/object-set-keyboard-layout.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT SET KEYBOARD LAYOUT** ( {* ;} *object* ; *languageCode* )
+**OBJECT SET KEYBOARD LAYOUT** ( * ; *object* : Text ; *languageCode* : Text )
**OBJECT SET KEYBOARD LAYOUT** ( *object* : Field, Variable ; *languageCode* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ In *languageCode*, you pass a string indicating the code of the language to use,
| | |
| --- | --- |
| Command number | 1179 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-list-by-name.md b/docs/commands-legacy/object-set-list-by-name.md
index 6469bc7d368870..13a930c7ac990d 100644
--- a/docs/commands-legacy/object-set-list-by-name.md
+++ b/docs/commands-legacy/object-set-list-by-name.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-list-by-name
displayed_sidebar: docs
---
-**OBJECT SET LIST BY NAME** ( {* ;} *object* {; *listType*}; *list* )
+**OBJECT SET LIST BY NAME** ( * ; *object* : Text {; *listType* : Integer}; *list* : Text )
**OBJECT SET LIST BY NAME** ( *object* : Field, Variable {; *listType* : Integer}; *list* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -95,6 +95,6 @@ You want to remove the list associations:
| | |
| --- | --- |
| Command number | 237 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-list-by-reference.md b/docs/commands-legacy/object-set-list-by-reference.md
index 95f46a0f5ebe7d..e2b0d07b9895c8 100644
--- a/docs/commands-legacy/object-set-list-by-reference.md
+++ b/docs/commands-legacy/object-set-list-by-reference.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-list-by-reference
displayed_sidebar: docs
---
-**OBJECT SET LIST BY REFERENCE** ( {* ;} *object* {; *listType*}; *list* )
+**OBJECT SET LIST BY REFERENCE** ( * ; *object* : Text {; *listType* : Integer}; *list* : Integer )
**OBJECT SET LIST BY REFERENCE** ( *object* : Field, Variable {; *listType* : Integer}; *list* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -133,6 +133,6 @@ In order to update the list associated with the pop-up managed by array, you nee
| | |
| --- | --- |
| Command number | 1266 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-maximum-value.md b/docs/commands-legacy/object-set-maximum-value.md
index 9a105f23bcde95..c87ad684851967 100644
--- a/docs/commands-legacy/object-set-maximum-value.md
+++ b/docs/commands-legacy/object-set-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-maximum-value
displayed_sidebar: docs
---
-**OBJECT SET MAXIMUM VALUE** ( {* ;} *object* ; *maxValue* )
+**OBJECT SET MAXIMUM VALUE** ( * ; *object* : Text ; *maxValue* : Date, Time, Real )
**OBJECT SET MAXIMUM VALUE** ( *object* : Field, Variable ; *maxValue* : Date, Time, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name (if * is specified) or
Field or variable (if * is omitted) |
-| maxValue | Date, Time, Number | → | Maximum value for object |
+| maxValue | Date, Time, Real | → | Maximum value for object |
@@ -35,6 +35,6 @@ In *maxValue*, pass the new maximum value you want to assign to the object for t
| | |
| --- | --- |
| Command number | 1244 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-minimum-value.md b/docs/commands-legacy/object-set-minimum-value.md
index 58f2cc6dc64f58..f84b7f0670139e 100644
--- a/docs/commands-legacy/object-set-minimum-value.md
+++ b/docs/commands-legacy/object-set-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-minimum-value
displayed_sidebar: docs
---
-**OBJECT SET MINIMUM VALUE** ( {* ;} *object* ; *minValue* )
+**OBJECT SET MINIMUM VALUE** ( * ; *object* : Text ; *minValue* : Date, Time, Real )
**OBJECT SET MINIMUM VALUE** ( *object* : Field, Variable ; *minValue* : Date, Time, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string)
If omitted, object is a field or variable |
| object | any | → | Object name (if * is specified) or
Field or variable (if * is omitted) |
-| minValue | Date, Time, Number | → | Minimum value for object |
+| minValue | Date, Time, Real | → | Minimum value for object |
@@ -35,6 +35,6 @@ In *minValue*, pass the new minimum value you want to assign to the object for t
| | |
| --- | --- |
| Command number | 1242 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-multiline.md b/docs/commands-legacy/object-set-multiline.md
index 4bb6f3574c4755..e224c068c89420 100644
--- a/docs/commands-legacy/object-set-multiline.md
+++ b/docs/commands-legacy/object-set-multiline.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-multiline
displayed_sidebar: docs
---
-**OBJECT SET MULTILINE** ( {* ;} *object* ; *multiline* )
+**OBJECT SET MULTILINE** ( * ; *object* : Text ; *multiline* : Integer )
**OBJECT SET MULTILINE** ( *object* : Field, Variable ; *multiline* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ You want to prohibit multiple lines in an entry area:
| | |
| --- | --- |
| Command number | 1253 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-placeholder.md b/docs/commands-legacy/object-set-placeholder.md
index 344300c6aa3e19..fa26bfe0f28b6a 100644
--- a/docs/commands-legacy/object-set-placeholder.md
+++ b/docs/commands-legacy/object-set-placeholder.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-placeholder
displayed_sidebar: docs
---
-**OBJECT SET PLACEHOLDER** ( {* ;} *object* ; *placeholderText* )
+**OBJECT SET PLACEHOLDER** ( * ; *object* : Text ; *placeholderText* : Text )
**OBJECT SET PLACEHOLDER** ( *object* : Field, Variable ; *placeholderText* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ You want to display "Search" as placeholder text in a combo box:
| | |
| --- | --- |
| Command number | 1295 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-print-variable-frame.md b/docs/commands-legacy/object-set-print-variable-frame.md
index 79c66d88188149..2f4efa8ffd34f5 100644
--- a/docs/commands-legacy/object-set-print-variable-frame.md
+++ b/docs/commands-legacy/object-set-print-variable-frame.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT SET PRINT VARIABLE FRAME** ( {* ;} *object* ; *variableFrame* {; *fixedSubform*} )
+**OBJECT SET PRINT VARIABLE FRAME** ( * ; *object* : Text ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
**OBJECT SET PRINT VARIABLE FRAME** ( *object* : Field, Variable ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The optional *fixedSubform* parameter lets you set an additional option when you
| | |
| --- | --- |
| Command number | 1240 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-resizing-options.md b/docs/commands-legacy/object-set-resizing-options.md
index 6cdc9ea8b57d09..8f822198554aca 100644
--- a/docs/commands-legacy/object-set-resizing-options.md
+++ b/docs/commands-legacy/object-set-resizing-options.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-resizing-options
displayed_sidebar: docs
---
-**OBJECT SET RESIZING OPTIONS** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT SET RESIZING OPTIONS** ( * ; *object* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT SET RESIZING OPTIONS** ( *object* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ In the *vertical* parameter, you pass a value indicating the vertical resizing o
| | |
| --- | --- |
| Command number | 1175 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-rgb-colors.md b/docs/commands-legacy/object-set-rgb-colors.md
index 4761567563b117..106750b1312e25 100644
--- a/docs/commands-legacy/object-set-rgb-colors.md
+++ b/docs/commands-legacy/object-set-rgb-colors.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-rgb-colors
displayed_sidebar: docs
---
-**OBJECT SET RGB COLORS** ( {* ;} *object* ; *foregroundColor* {; *backgroundColor* {; *altBackgrndColor*}} )
+**OBJECT SET RGB COLORS** ( * ; *object* : Text ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
**OBJECT SET RGB COLORS** ( *object* : Field, Variable ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -109,6 +109,6 @@ Changing to transparent background with a light font color:
| | |
| --- | --- |
| Command number | 628 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-scroll-position.md b/docs/commands-legacy/object-set-scroll-position.md
index e1feae283b3278..9e9b9b76ef4331 100644
--- a/docs/commands-legacy/object-set-scroll-position.md
+++ b/docs/commands-legacy/object-set-scroll-position.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-scroll-position
displayed_sidebar: docs
---
-**OBJECT SET SCROLL POSITION** ( * ; *object* {; *vPosition* {; *hPosition*}}{; *} )
+**OBJECT SET SCROLL POSITION** ( * ; *object* : any {; *vPosition* : Integer {; *hPosition* : Integer}}{; *} )
**OBJECT SET SCROLL POSITION** ( *object* : any {; *vPosition* : Integer {; *hPosition* : Integer}}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| object | any | → | Object name (if * is specified) or Table or field or variable (if * is omitted) |
| vPosition | Integer | → | Line number to display or Vertical scrolling in pixels (pictures) |
| hPosition | Integer | → | Column number to display (list box) or
Horizontal scrolling in pixels (pictures) |
-| * | Operator | → | Display of line (and column if the hPosition parameter is passed) in first position after scroll |
+| * | Operator | → | Display of line (and column if the *hPosition* parameter is passed) in first position after scroll |
@@ -96,6 +96,6 @@ Make sure that you do not omit the second *\** parameter in this case, otherwise
| | |
| --- | --- |
| Command number | 906 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-scrollbar.md b/docs/commands-legacy/object-set-scrollbar.md
index 38fa055ca0e953..f63f9a06711464 100644
--- a/docs/commands-legacy/object-set-scrollbar.md
+++ b/docs/commands-legacy/object-set-scrollbar.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-scrollbar
displayed_sidebar: docs
---
-**OBJECT SET SCROLLBAR** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT SET SCROLLBAR** ( * ; *object* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT SET SCROLLBAR** ( *object* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following table indicates the values you can pass in the *horizontal* and *v
| | |
| --- | --- |
| Command number | 843 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-shortcut.md b/docs/commands-legacy/object-set-shortcut.md
index 3e7f75c54522b0..f110faa63d6f22 100644
--- a/docs/commands-legacy/object-set-shortcut.md
+++ b/docs/commands-legacy/object-set-shortcut.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-shortcut
displayed_sidebar: docs
---
-**OBJECT SET SHORTCUT** ( {* ;} *object* ; *key* {; *modifiers*} )
+**OBJECT SET SHORTCUT** ( * ; *object* : Text ; *key* : Text {; *modifiers* : Integer} )
**OBJECT SET SHORTCUT** ( *object* : Field, Variable ; *key* : Text {; *modifiers* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -93,6 +93,6 @@ You want to associate a different shortcut depending on the current language of
| | |
| --- | --- |
| Command number | 1185 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-style-sheet.md b/docs/commands-legacy/object-set-style-sheet.md
index 0bb8706b1c9f6d..c4be653c0813ad 100644
--- a/docs/commands-legacy/object-set-style-sheet.md
+++ b/docs/commands-legacy/object-set-style-sheet.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-style-sheet
displayed_sidebar: docs
---
-**OBJECT SET STYLE SHEET** ( {* ;} *object* ; *styleSheetName* )
+**OBJECT SET STYLE SHEET** ( * ; *object* : Text ; *styleSheetName* : Text )
**OBJECT SET STYLE SHEET** ( *object* : Field, Variable ; *styleSheetName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ In **project architecture**, only the three automatic style sheets are supported
| | |
| --- | --- |
| Command number | 1257 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-subform-container-value.md b/docs/commands-legacy/object-set-subform-container-value.md
index 42ac77ab5befc2..67e706936c0d62 100644
--- a/docs/commands-legacy/object-set-subform-container-value.md
+++ b/docs/commands-legacy/object-set-subform-container-value.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-subform-container-value
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* )
+**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* : any )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Command number | 1784 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-subform.md b/docs/commands-legacy/object-set-subform.md
index 83c63feae56d65..67db01aa1708f7 100644
--- a/docs/commands-legacy/object-set-subform.md
+++ b/docs/commands-legacy/object-set-subform.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-subform
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM** ( {* ;} *object* {; *aTable*}; *detailSubform* {; *listSubform*} )
+**OBJECT SET SUBFORM** ( * ; *object* : Text {; *aTable* : Table}; *detailSubform* : Text, Object {; *listSubform* : Text, Object} )
**OBJECT SET SUBFORM** ( *object* : Field, Variable {; *aTable* : Table}; *detailSubform* : Text, Object {; *listSubform* : Text, Object} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ When you modify a page subform, the command can be executed at any time; current
| | |
| --- | --- |
| Command number | 1138 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-text-orientation.md b/docs/commands-legacy/object-set-text-orientation.md
index 67f1c955909e38..00764846ff8f4b 100644
--- a/docs/commands-legacy/object-set-text-orientation.md
+++ b/docs/commands-legacy/object-set-text-orientation.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-text-orientation
displayed_sidebar: docs
---
-**OBJECT SET TEXT ORIENTATION** ( {* ;} *object* ; *orientation* )
+**OBJECT SET TEXT ORIENTATION** ( * ; *object* : Text ; *orientation* : Integer )
**OBJECT SET TEXT ORIENTATION** ( *object* : Field, Variable ; *orientation* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ You want to apply an orientation of 270° to a variable in your form:
| | |
| --- | --- |
| Command number | 1284 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-three-states-checkbox.md b/docs/commands-legacy/object-set-three-states-checkbox.md
index 3f4f482cae408c..0ff1a974b3700d 100644
--- a/docs/commands-legacy/object-set-three-states-checkbox.md
+++ b/docs/commands-legacy/object-set-three-states-checkbox.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT SET THREE STATES CHECKBOX** ( {* ;} *object* ; *threeStates* )
+**OBJECT SET THREE STATES CHECKBOX** ( * ; *object* : Text ; *threeStates* : Boolean )
**OBJECT SET THREE STATES CHECKBOX** ( *object* : Field, Variable ; *threeStates* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ In the *threeStates* parameter, pass **True** to enable the "three states" mode,
| | |
| --- | --- |
| Command number | 1249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-title.md b/docs/commands-legacy/object-set-title.md
index 2f36740016eeec..0653b28c5ac837 100644
--- a/docs/commands-legacy/object-set-title.md
+++ b/docs/commands-legacy/object-set-title.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-title
displayed_sidebar: docs
---
-**OBJECT SET TITLE** ( {* ;} *object* ; *title* )
+**OBJECT SET TITLE** ( * ; *object* : Text ; *title* : Text )
**OBJECT SET TITLE** ( *object* : Field, Variable ; *title* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -77,6 +77,6 @@ You want to insert titles on two lines:
| | |
| --- | --- |
| Command number | 194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-value.md b/docs/commands-legacy/object-set-value.md
index 7f3b87d13460e4..ca0f7d40905ac4 100644
--- a/docs/commands-legacy/object-set-value.md
+++ b/docs/commands-legacy/object-set-value.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-value
displayed_sidebar: docs
---
-**OBJECT SET VALUE** ( *objectName* ; *value* )
+**OBJECT SET VALUE** ( *objectName* : Text ; *value* : any )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ You want to get the data source value for a form object, get its name, and set a
| | |
| --- | --- |
| Command number | 1742 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-vertical-alignment.md b/docs/commands-legacy/object-set-vertical-alignment.md
index 0c6f2845619582..8c3dcd948f3088 100644
--- a/docs/commands-legacy/object-set-vertical-alignment.md
+++ b/docs/commands-legacy/object-set-vertical-alignment.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT SET VERTICAL ALIGNMENT** ( {* ;} *object* ; *alignment* )
+**OBJECT SET VERTICAL ALIGNMENT** ( * ; *object* : Text ; *alignment* : Integer )
**OBJECT SET VERTICAL ALIGNMENT** ( *object* : Field, Variable ; *alignment* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ Vertical alignment can be applied to the following form objects:
| | |
| --- | --- |
| Command number | 1187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-set-visible.md b/docs/commands-legacy/object-set-visible.md
index 4fc23c5fcc216c..463435c14fe6ee 100644
--- a/docs/commands-legacy/object-set-visible.md
+++ b/docs/commands-legacy/object-set-visible.md
@@ -5,7 +5,7 @@ slug: /commands/object-set-visible
displayed_sidebar: docs
---
-**OBJECT SET VISIBLE** ( {* ;} *object* ; *visible* )
+**OBJECT SET VISIBLE** ( * ; *object* : Text ; *visible* : Boolean )
**OBJECT SET VISIBLE** ( *object* : Field, Variable ; *visible* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ or:
| | |
| --- | --- |
| Command number | 603 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/object-to-path.md b/docs/commands-legacy/object-to-path.md
index 905596335c79f0..732ccb787bc5e3 100644
--- a/docs/commands-legacy/object-to-path.md
+++ b/docs/commands-legacy/object-to-path.md
@@ -5,7 +5,7 @@ slug: /commands/object-to-path
displayed_sidebar: docs
---
-**Object to path** ( *pathObject* ) : Text
+**Object to path** ( *pathObject* : Object ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ We want to duplicate and rename a file in its own folder:
| | |
| --- | --- |
| Command number | 1548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/old-related-many.md b/docs/commands-legacy/old-related-many.md
index ccdef2c7618f60..4ffb794a8d6b3f 100644
--- a/docs/commands-legacy/old-related-many.md
+++ b/docs/commands-legacy/old-related-many.md
@@ -5,7 +5,7 @@ slug: /commands/old-related-many
displayed_sidebar: docs
---
-**OLD RELATED MANY** ( *aField* )
+**OLD RELATED MANY** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 263 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/old-related-one.md b/docs/commands-legacy/old-related-one.md
index 3abb9c46cf15b4..845e9355bdf130 100644
--- a/docs/commands-legacy/old-related-one.md
+++ b/docs/commands-legacy/old-related-one.md
@@ -5,7 +5,7 @@ slug: /commands/old-related-one
displayed_sidebar: docs
---
-**OLD RELATED ONE** ( *aField* )
+**OLD RELATED ONE** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,7 +37,7 @@ If the command has been executed correctly and if the related records have been
| | |
| --- | --- |
| Command number | 44 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/old.md b/docs/commands-legacy/old.md
index 496269c8eefba0..7204ae6ae053a2 100644
--- a/docs/commands-legacy/old.md
+++ b/docs/commands-legacy/old.md
@@ -5,7 +5,7 @@ slug: /commands/old
displayed_sidebar: docs
---
-**Old** ( *aField* ) : any
+**Old** ( *aField* : Field ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ To restore the original value of a field, assign it the value returned by **Old*
| | |
| --- | --- |
| Command number | 35 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/on-err-call.md b/docs/commands-legacy/on-err-call.md
index b50565797453f1..db7243584bb693 100644
--- a/docs/commands-legacy/on-err-call.md
+++ b/docs/commands-legacy/on-err-call.md
@@ -5,7 +5,7 @@ slug: /commands/on-err-call
displayed_sidebar: docs
---
-**ON ERR CALL** ( *errorMethod* {; *scope*} )
+**ON ERR CALL** ( *errorMethod* : Text {; *scope* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -186,6 +186,6 @@ The following error-handling method ignores the user interruptions and displays
| | |
| --- | --- |
| Command number | 155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/on-event-call.md b/docs/commands-legacy/on-event-call.md
index ffb9295dfb071d..8311a4d056dd0c 100644
--- a/docs/commands-legacy/on-event-call.md
+++ b/docs/commands-legacy/on-event-call.md
@@ -5,7 +5,7 @@ slug: /commands/on-event-call
displayed_sidebar: docs
---
-**ON EVENT CALL** ( *eventMethod* {; *processName*} )
+**ON EVENT CALL** ( *eventMethod* : Text {; *processName* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -121,7 +121,7 @@ If you print a report using [PRINT SELECTION](print-selection.md), you do NOT ne
| | |
| --- | --- |
| Command number | 190 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/on-exit-database-method.md b/docs/commands-legacy/on-exit-database-method.md
index 36352e79a16a54..5a57f0e2a1be46 100644
--- a/docs/commands-legacy/on-exit-database-method.md
+++ b/docs/commands-legacy/on-exit-database-method.md
@@ -111,6 +111,6 @@ The following example shows a typical case where you launch one or more backgrou
| | |
| --- | --- |
| Command number | 905252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/on-mobile-app-authentication-database-method.md b/docs/commands-legacy/on-mobile-app-authentication-database-method.md
index f0c36930bfa7cd..6fefe9e0ec2f3e 100644
--- a/docs/commands-legacy/on-mobile-app-authentication-database-method.md
+++ b/docs/commands-legacy/on-mobile-app-authentication-database-method.md
@@ -5,7 +5,7 @@ slug: /commands/on-mobile-app-authentication-database-method
displayed_sidebar: docs
---
-**On Mobile App Authentication database method** ( *mobileInfo* ; *status* )
+**On Mobile App Authentication database method** ( *mobileInfo* : Object ; *status* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/commands-legacy/on-rest-authentication-database-method.md b/docs/commands-legacy/on-rest-authentication-database-method.md
index 58e53d3abd0017..02218793d17ed3 100644
--- a/docs/commands-legacy/on-rest-authentication-database-method.md
+++ b/docs/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ The [Force login authentication](../REST/authUsers.md) is now highly recommended
| | |
| --- | --- |
| Command number | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/on-server-open-connection-database-method.md b/docs/commands-legacy/on-server-open-connection-database-method.md
index 2a254f1ab88314..b0a51c9d6a2954 100644
--- a/docs/commands-legacy/on-server-open-connection-database-method.md
+++ b/docs/commands-legacy/on-server-open-connection-database-method.md
@@ -138,6 +138,6 @@ The following example prevents any new connection from 2 to 4 A.M.
| | |
| --- | --- |
| Command number | 16001 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/on-startup-database-method.md b/docs/commands-legacy/on-startup-database-method.md
index fc042bbf4045e7..5d6e7bfed217bb 100644
--- a/docs/commands-legacy/on-startup-database-method.md
+++ b/docs/commands-legacy/on-startup-database-method.md
@@ -51,6 +51,6 @@ See the example in the [Semaphore](semaphore.md) section.
| | |
| --- | --- |
| Command number | 905263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/one-record-select.md b/docs/commands-legacy/one-record-select.md
index c6845a447aaf38..ce7f1c33f51476 100644
--- a/docs/commands-legacy/one-record-select.md
+++ b/docs/commands-legacy/one-record-select.md
@@ -5,7 +5,7 @@ slug: /commands/one-record-select
displayed_sidebar: docs
---
-**ONE RECORD SELECT** {( *aTable* )}
+**ONE RECORD SELECT** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,7 +35,7 @@ This command was useful to “return” a record that had been pushed and popped
| | |
| --- | --- |
| Command number | 189 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/open-administration-window.md b/docs/commands-legacy/open-administration-window.md
index cd026651771113..d7a5f18ec14363 100644
--- a/docs/commands-legacy/open-administration-window.md
+++ b/docs/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ If the command has been executed correctly, the OK system variable is set to 1\.
| | |
| --- | --- |
| Command number | 1047 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/open-color-picker.md b/docs/commands-legacy/open-color-picker.md
index 2d1859a98d6874..7923379a3acbd8 100644
--- a/docs/commands-legacy/open-color-picker.md
+++ b/docs/commands-legacy/open-color-picker.md
@@ -5,7 +5,7 @@ slug: /commands/open-color-picker
displayed_sidebar: docs
---
-**OPEN COLOR PICKER** {( *textOrBackground* )}
+**OPEN COLOR PICKER** ({ *textOrBackground* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ If the color was changed, the On After Edit form event is generated for the obje
| | |
| --- | --- |
| Command number | 1304 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/open-data-file.md b/docs/commands-legacy/open-data-file.md
index b51181a8fa83a1..ec6be11ccb5979 100644
--- a/docs/commands-legacy/open-data-file.md
+++ b/docs/commands-legacy/open-data-file.md
@@ -5,7 +5,7 @@ slug: /commands/open-data-file
displayed_sidebar: docs
---
-**OPEN DATA FILE** ( *accessPath* )
+**OPEN DATA FILE** ( *accessPath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ In the context of deploying a merged application, you want to open or create the
| | |
| --- | --- |
| Command number | 312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/open-database.md b/docs/commands-legacy/open-database.md
index 1754d0094b3502..0c0c64858d16bd 100644
--- a/docs/commands-legacy/open-database.md
+++ b/docs/commands-legacy/open-database.md
@@ -5,7 +5,7 @@ slug: /commands/open-database
displayed_sidebar: docs
---
-**OPEN DATABASE** ( *filePath* )
+**OPEN DATABASE** ( *filePath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -76,6 +76,6 @@ You want to select a server at startup from a single-user application. You could
| | |
| --- | --- |
| Command number | 1321 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/open-document.md b/docs/commands-legacy/open-document.md
index 202d082b92a093..424dd19f96613f 100644
--- a/docs/commands-legacy/open-document.md
+++ b/docs/commands-legacy/open-document.md
@@ -5,7 +5,7 @@ slug: /commands/open-document
displayed_sidebar: docs
---
-**Open document** ( *document* {; *fileType*}{; *mode*} ) : Time
+**Open document** ( *document* : Text {; *fileType* : Text}{; *mode* : Integer} ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -93,7 +93,7 @@ If you call **Open document** with a mode of 3, the function returns ?00:00:00?
| | |
| --- | --- |
| Command number | 264 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/open-font-picker.md b/docs/commands-legacy/open-font-picker.md
index 45df5719a3082d..4b6ac5aadee138 100644
--- a/docs/commands-legacy/open-font-picker.md
+++ b/docs/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Here is the button code:
| | |
| --- | --- |
| Command number | 1303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/open-form-window.md b/docs/commands-legacy/open-form-window.md
index c23158620aaa1f..aeea3df62d78fb 100644
--- a/docs/commands-legacy/open-form-window.md
+++ b/docs/commands-legacy/open-form-window.md
@@ -5,7 +5,7 @@ slug: /commands/open-form-window
displayed_sidebar: docs
---
-**Open form window** ( {*aTable* ;} *formName* {; *type* {; *hPos* {; *vPos* {; *}}}} ) : Integer
+**Open form window** ( {*aTable* : Table ;} *formName* : Text, Object {; *type* : Integer {; *hPos* : Integer {; *vPos* : Integer {; *}}}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -139,6 +139,6 @@ which displays:
| | |
| --- | --- |
| Command number | 675 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/open-printing-job.md b/docs/commands-legacy/open-printing-job.md
index 54fc6727e47372..da496c8c70219f 100644
--- a/docs/commands-legacy/open-printing-job.md
+++ b/docs/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ The OK system variable is set to 1 if the print job has been successfully open.
| | |
| --- | --- |
| Command number | 995 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/open-resource-file.md b/docs/commands-legacy/open-resource-file.md
index c46a3ca907428d..0b9a8993d39a18 100644
--- a/docs/commands-legacy/open-resource-file.md
+++ b/docs/commands-legacy/open-resource-file.md
@@ -5,7 +5,7 @@ slug: /commands/open-resource-file
displayed_sidebar: docs
---
-**Open resource file** ( *resFilename* {; *fileType*} ) : Time
+**Open resource file** ( *resFilename* : Text {; *fileType* : Text} ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -103,7 +103,7 @@ If the resource file could not be opened due to a resource or I/O problem, an er
| | |
| --- | --- |
| Command number | 497 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/open-runtime-explorer.md b/docs/commands-legacy/open-runtime-explorer.md
index 19dd6d204b0345..7e36e54999f9b2 100644
--- a/docs/commands-legacy/open-runtime-explorer.md
+++ b/docs/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/open-security-center.md b/docs/commands-legacy/open-security-center.md
index 4524145b0ef2c1..70fe5d59a2062e 100644
--- a/docs/commands-legacy/open-security-center.md
+++ b/docs/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1018 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/open-settings-window.md b/docs/commands-legacy/open-settings-window.md
index ab0d852eaf8495..95c40995ded267 100644
--- a/docs/commands-legacy/open-settings-window.md
+++ b/docs/commands-legacy/open-settings-window.md
@@ -5,7 +5,7 @@ slug: /commands/open-settings-window
displayed_sidebar: docs
---
-**OPEN SETTINGS WINDOW** ( *selector* {; *access* {; *settingsType*}} )
+**OPEN SETTINGS WINDOW** ( *selector* : Text {; *access* : Boolean {; *settingsType* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -145,7 +145,7 @@ If the Preferences/Settings dialog box is validated, the system variable OK retu
| | |
| --- | --- |
| Command number | 903 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/open-url.md b/docs/commands-legacy/open-url.md
index dc00c927a34815..30de007cc55c99 100644
--- a/docs/commands-legacy/open-url.md
+++ b/docs/commands-legacy/open-url.md
@@ -5,7 +5,7 @@ slug: /commands/open-url
displayed_sidebar: docs
---
-**OPEN URL** ( *path* {; *appName*}{; *} )
+**OPEN URL** ( *path* : Text {; *appName* : Text}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -86,6 +86,6 @@ The *appName* parameter lets you open the same text file using different applica
| | |
| --- | --- |
| Command number | 673 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/open-window.md b/docs/commands-legacy/open-window.md
index 76f36f3538c8e6..75a56b07a9e865 100644
--- a/docs/commands-legacy/open-window.md
+++ b/docs/commands-legacy/open-window.md
@@ -5,7 +5,7 @@ slug: /commands/open-window
displayed_sidebar: docs
---
-**Open window** ( *left* ; *top* ; *right* ; *bottom* {; *type* {; *title* {; *controlMenuBox*}}} ) : Integer
+**Open window** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *type* : Integer {; *title* : Text {; *controlMenuBox* : Text}}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -166,6 +166,6 @@ This example illustrates the “delay” mechanism for displaying sheet windows
| | |
| --- | --- |
| Command number | 153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/order-by-attribute.md b/docs/commands-legacy/order-by-attribute.md
index 25a1e8c47ec77e..f4aa725cf3f0ad 100644
--- a/docs/commands-legacy/order-by-attribute.md
+++ b/docs/commands-legacy/order-by-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/order-by-attribute
displayed_sidebar: docs
---
-**ORDER BY ATTRIBUTE** ( {*aTable* ;} *objectField* ; *attributePath* ; > or < {; *objectField2* ; *attributePath2* ; > or <2 ; ... ; *objectFieldN* ; *attributePathN* ; > or
+**ORDER BY ATTRIBUTE** ( {*aTable* : Table ;} {; ...(*objectField* : Field ; *attributePath* : Text {; >,<})} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -118,6 +118,6 @@ Records are in the following order:
| | |
| --- | --- |
| Command number | 1407 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/order-by-formula.md b/docs/commands-legacy/order-by-formula.md
index a5294962193aaa..fe6cee108d12a6 100644
--- a/docs/commands-legacy/order-by-formula.md
+++ b/docs/commands-legacy/order-by-formula.md
@@ -5,7 +5,7 @@ slug: /commands/order-by-formula
displayed_sidebar: docs
---
-**ORDER BY FORMULA** ( *aTable* ; *formula* {; > or <}{; *formula2* ; > or <2 ; ... ; *formulaN* ; > or
+***ORDER BY FORMULA** ( *aTable* : Table ; *formula* : Expression {; >,<} {; ...(*formula* : Expression {; >,<})} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ This example orders the records of the \[People\] table in descending order, bas
| | |
| --- | --- |
| Command number | 300 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
diff --git a/docs/commands-legacy/order-by.md b/docs/commands-legacy/order-by.md
index c0c20d9d1827d1..4ca8d85eeea6f0 100644
--- a/docs/commands-legacy/order-by.md
+++ b/docs/commands-legacy/order-by.md
@@ -5,7 +5,7 @@ slug: /commands/order-by
displayed_sidebar: docs
---
-**ORDER BY** ( {*aTable* ;}{ *aField* }{; > or < }{; *aField2* ; > or <2 ; ... ; *aFieldN* ; > or
+**ORDER BY** ( {*aTable* : Table ;}{; ...(*aField* : Field {; >,<}) } {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -204,7 +204,7 @@ Each button calls the MULTILEVEL project method with a pointer to the correspond
| | |
| --- | --- |
| Command number | 49 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
diff --git a/docs/commands-legacy/outside-call.md b/docs/commands-legacy/outside-call.md
index 4f571fcd221615..7847256198583d 100644
--- a/docs/commands-legacy/outside-call.md
+++ b/docs/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ In order for the **Outside call** execution cycle to be generated, make sure tha
| | |
| --- | --- |
| Command number | 328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/page-break.md b/docs/commands-legacy/page-break.md
index a89922f5534358..058b285abc6bea 100644
--- a/docs/commands-legacy/page-break.md
+++ b/docs/commands-legacy/page-break.md
@@ -5,11 +5,13 @@ slug: /commands/page-break
displayed_sidebar: docs
---
-**PAGE BREAK** {( * )}
**PAGE BREAK** {( > )}
+**PAGE BREAK** ({ * })
**PAGE BREAK** ({ > })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| * | > | → | * Cancel printing job started with Print form, or > Force one printing job |
+| * | Operator | → | Cancel printing job started with Print form |
+| > | Operator | → | Force one printing job |
+
@@ -49,7 +51,7 @@ Refer to the example of the [SET PRINT MARKER](set-print-marker.md) command.
| | |
| --- | --- |
| Command number | 6 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/parse-formula.md b/docs/commands-legacy/parse-formula.md
index e43cd4dc75c2c8..5d0ed1d0452c94 100644
--- a/docs/commands-legacy/parse-formula.md
+++ b/docs/commands-legacy/parse-formula.md
@@ -5,7 +5,7 @@ slug: /commands/parse-formula
displayed_sidebar: docs
---
-**Parse formula** ( *formula* {; *options*}{; *errorMessage*} ) : Text
+**Parse formula** ( *formula* : Text {; *options* : Integer}{; *errorMessage* : Text} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -112,6 +112,6 @@ The optional *errorMessage* parameter will receive an error message if there is
| | |
| --- | --- |
| Command number | 1576 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/pasteboard-data-size.md b/docs/commands-legacy/pasteboard-data-size.md
index cf2017ce3f8838..e9a8ca4d0a236c 100644
--- a/docs/commands-legacy/pasteboard-data-size.md
+++ b/docs/commands-legacy/pasteboard-data-size.md
@@ -5,7 +5,7 @@ slug: /commands/pasteboard-data-size
displayed_sidebar: docs
---
-**Pasteboard data size** ( *dataType* ) : Integer
+**Pasteboard data size** ( *dataType* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -97,7 +97,7 @@ See the example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Command number | 400 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/path-to-object.md b/docs/commands-legacy/path-to-object.md
index 7da93f20afd8ac..816690c915b528 100644
--- a/docs/commands-legacy/path-to-object.md
+++ b/docs/commands-legacy/path-to-object.md
@@ -5,7 +5,7 @@ slug: /commands/path-to-object
displayed_sidebar: docs
---
-**Path to object** ( *path* {; *pathType*} ) : Object
+**Path to object** ( *path* : Text {; *pathType* : Integer} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -180,6 +180,6 @@ You want to know the number of subfolders contained in a path:
| | |
| --- | --- |
| Command number | 1547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/pause-indexes.md b/docs/commands-legacy/pause-indexes.md
index d9a62647d438e6..8dd86b4715781f 100644
--- a/docs/commands-legacy/pause-indexes.md
+++ b/docs/commands-legacy/pause-indexes.md
@@ -5,7 +5,7 @@ slug: /commands/pause-indexes
displayed_sidebar: docs
---
-**PAUSE INDEXES** ( *aTable* )
+**PAUSE INDEXES** ( *aTable* : Table )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ Example of method for importing large amounts of data:
| | |
| --- | --- |
| Command number | 1293 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/pause-process.md b/docs/commands-legacy/pause-process.md
index d1b492eadfa867..88f370f5165276 100644
--- a/docs/commands-legacy/pause-process.md
+++ b/docs/commands-legacy/pause-process.md
@@ -5,7 +5,7 @@ slug: /commands/pause-process
displayed_sidebar: docs
---
-**PAUSE PROCESS** ( *process* )
+**PAUSE PROCESS** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ While process execution is suspended, the windows belonging to this process are
| | |
| --- | --- |
| Command number | 319 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/picture-codec-list.md b/docs/commands-legacy/picture-codec-list.md
index 52cf38ffc66c25..965be21e0a6b3b 100644
--- a/docs/commands-legacy/picture-codec-list.md
+++ b/docs/commands-legacy/picture-codec-list.md
@@ -5,7 +5,7 @@ slug: /commands/picture-codec-list
displayed_sidebar: docs
---
-**PICTURE CODEC LIST** ( *codecArray* {; *namesArray*}{; *} )
+**PICTURE CODEC LIST** ( *codecArray* : Text array {; *namesArray* : Text array}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ By default, if you do not pass the *\** parameter, the command returns only the
| | |
| --- | --- |
| Command number | 992 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/picture-library-list.md b/docs/commands-legacy/picture-library-list.md
index 75b97317f68eb6..b78ad8714cad48 100644
--- a/docs/commands-legacy/picture-library-list.md
+++ b/docs/commands-legacy/picture-library-list.md
@@ -5,11 +5,11 @@ slug: /commands/picture-library-list
displayed_sidebar: docs
---
-**PICTURE LIBRARY LIST** ( *picRefs* ; *picNames* )
+**PICTURE LIBRARY LIST** ( *picRefs* : Integer array ; *picNames* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| picRefs | Array integer | ← | Reference numbers of the Picture Library graphics |
+| picRefs | Integer array | ← | Reference numbers of the Picture Library graphics |
| picNames | Text array | ← | Names of the Picture Library graphics |
@@ -106,6 +106,6 @@ The following example exports the Picture Library to a document on disk:
| | |
| --- | --- |
| Command number | 564 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/picture-properties.md b/docs/commands-legacy/picture-properties.md
index 71c29f8f39c5a1..ca35af20459148 100644
--- a/docs/commands-legacy/picture-properties.md
+++ b/docs/commands-legacy/picture-properties.md
@@ -5,7 +5,7 @@ slug: /commands/picture-properties
displayed_sidebar: docs
---
-**PICTURE PROPERTIES** ( *picture* ; *width* ; *height* {; *hOffset* {; *vOffset* {; *mode*}}} )
+**PICTURE PROPERTIES** ( *picture* : Picture ; *width* : Real ; *height* : Real {; *hOffset* : Integer {; *vOffset* : Integer {; *mode* : Integer}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ The *hOffset*, *vOffset*, and *mode* parameters return the horizontal and vertic
| | |
| --- | --- |
| Command number | 457 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/picture-size.md b/docs/commands-legacy/picture-size.md
index f010914ef63cb3..9a3b94796638b6 100644
--- a/docs/commands-legacy/picture-size.md
+++ b/docs/commands-legacy/picture-size.md
@@ -5,7 +5,7 @@ slug: /commands/picture-size
displayed_sidebar: docs
---
-**Picture size** ( *picture* ) : Integer
+**Picture size** ( *picture* : Picture ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 356 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/picture-to-blob.md b/docs/commands-legacy/picture-to-blob.md
index 2da73e3aec7be7..760650a81a3be9 100644
--- a/docs/commands-legacy/picture-to-blob.md
+++ b/docs/commands-legacy/picture-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/picture-to-blob
displayed_sidebar: docs
---
-**PICTURE TO BLOB** ( *picture* ; *pictureBlob* ; *codec* )
+**PICTURE TO BLOB** ( *picture* : Picture ; *pictureBlob* : Blob ; *codec* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,7 +56,7 @@ You want to convert an image from a proprietary format to GIF format and display
| | |
| --- | --- |
| Command number | 692 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/play.md b/docs/commands-legacy/play.md
index 3352b6d8ce613c..b71be4b53595f6 100644
--- a/docs/commands-legacy/play.md
+++ b/docs/commands-legacy/play.md
@@ -5,7 +5,7 @@ slug: /commands/play
displayed_sidebar: docs
---
-**PLAY** ( *objectName* {; *async*} )
+**PLAY** ( *objectName* : Text {; *async* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ The following example code plays a system sound on macOS:
| | |
| --- | --- |
| Command number | 290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/plugin-list.md b/docs/commands-legacy/plugin-list.md
index d90f8d5fe141c7..0e5b54e0d07ab0 100644
--- a/docs/commands-legacy/plugin-list.md
+++ b/docs/commands-legacy/plugin-list.md
@@ -5,11 +5,11 @@ slug: /commands/plugin-list
displayed_sidebar: docs
---
-**PLUGIN LIST** ( *numbersArray* ; *namesArray* )
+**PLUGIN LIST** ( *numbersArray* : Integer array ; *namesArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| numbersArray | Array integer | ← | Numbers of plug-ins |
+| numbersArray | Integer array | ← | Numbers of plug-ins |
| namesArray | Text array | ← | Names of plug-ins |
@@ -34,6 +34,6 @@ PLUGIN LIST takes all plug-ins into account, including those that are integrated
| | |
| --- | --- |
| Command number | 847 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/pop-record.md b/docs/commands-legacy/pop-record.md
index 6f78055a7d1a21..36408b42cff436 100644
--- a/docs/commands-legacy/pop-record.md
+++ b/docs/commands-legacy/pop-record.md
@@ -5,7 +5,7 @@ slug: /commands/pop-record
displayed_sidebar: docs
---
-**POP RECORD** {( *aTable* )}
+**POP RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,7 +37,7 @@ The following example pops the record for the customer off the record stack:
| | |
| --- | --- |
| Command number | 177 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/pop-up-menu.md b/docs/commands-legacy/pop-up-menu.md
index 21b1863bcb9471..8db70d462c9b14 100644
--- a/docs/commands-legacy/pop-up-menu.md
+++ b/docs/commands-legacy/pop-up-menu.md
@@ -5,7 +5,7 @@ slug: /commands/pop-up-menu
displayed_sidebar: docs
---
-**Pop up menu** ( *contents* {; *default* {; *xCoord* ; *yCoord*}} ) : Integer
+**Pop up menu** ( *contents* : Text {; *default* : Integer {; *xCoord* : Integer ; *yCoord* : Integer}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -108,6 +108,6 @@ The following is the pop-up menu as it appears on Windows (left) and Macintosh (
| | |
| --- | --- |
| Command number | 542 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/position.md b/docs/commands-legacy/position.md
index 1b11c20e962314..02c5cb5f9bc7b1 100644
--- a/docs/commands-legacy/position.md
+++ b/docs/commands-legacy/position.md
@@ -5,26 +5,19 @@ slug: /commands/position
displayed_sidebar: docs
---
-**Position** ( *find* ; *aString* {; *start* {; *lengthFound*}}{; *} ) -> Function result
-**Position** ( *find* ; *aString* ; *start* ; *lengthFound* ; *options* ) -> Function result
+**Position** ( *find* : Text ; *aString* : Text {; *start* : Integer {; *lengthFound* : Integer}}{; *} ) -> Integer
**Position** ( *find* : Text ; *aString* : Text; *start* : Integer ; *lengthFound* : Integer ; *options* : Integer ) -> Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| find | Text | → | String to find |
-| aText | Text | → | String in which to search |
+| aString | Text | → | String in which to search |
| start | Integer | → | Position in string where search will start |
| lengthFound | Integer | ← | Length of string found |
| * | Operator | → | If passed: evaluation based on character codes |
-| Function result | Integer | ← | Position of first occurrence |
-| Position ( find ; aString ; start ; lengthFound ; options ) -> Function result |
-| Parameter | Type | Description |
-| find | Text | → | String to find |
-| aText | Text | → | String in which to search |
-| start | Integer | → | Position in string where search will start |
-| lengthFound | Integer | → | Length of string found |
| options | Integer | → | Search condition(s) |
| Function result | Integer | ← | Position of first occurrence |
+
## Description
@@ -125,6 +118,6 @@ In the following example, you want to find all instances of a string and replace
| | |
| --- | --- |
| Command number | 15 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/post-click.md b/docs/commands-legacy/post-click.md
index 1b2d89c924af23..ee9cf4a83d7300 100644
--- a/docs/commands-legacy/post-click.md
+++ b/docs/commands-legacy/post-click.md
@@ -5,7 +5,7 @@ slug: /commands/post-click
displayed_sidebar: docs
---
-**POST CLICK** ( *mouseX* ; *mouseY* {; *process*} {; *} )
+**POST CLICK** ( *mouseX* : Integer ; *mouseY* : Integer {; *process* : Integer} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ If you specify the *process* parameter, the click is sent to the process whose p
| | |
| --- | --- |
| Command number | 466 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/post-event.md b/docs/commands-legacy/post-event.md
index f4c19bb1f066db..32f3ef2653d304 100644
--- a/docs/commands-legacy/post-event.md
+++ b/docs/commands-legacy/post-event.md
@@ -5,7 +5,7 @@ slug: /commands/post-event
displayed_sidebar: docs
---
-**POST EVENT** ( *what* ; *message* ; *when* ; *mouseX* ; *mouseY* ; *modifiers* {; *process*} )
+**POST EVENT** ( *what* : Integer ; *message* : Integer ; *when* : Integer ; *mouseX* : Integer ; *mouseY* : Integer ; *modifiers* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -79,6 +79,6 @@ If you specify the *process* parameter, the event is sent to the process whose p
| | |
| --- | --- |
| Command number | 467 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/post-key.md b/docs/commands-legacy/post-key.md
index 68783daa0481d3..a952a64acc8789 100644
--- a/docs/commands-legacy/post-key.md
+++ b/docs/commands-legacy/post-key.md
@@ -5,7 +5,7 @@ slug: /commands/post-key
displayed_sidebar: docs
---
-**POST KEY** ( *code* {; *modifiers* {; *process*}} )
+**POST KEY** ( *code* : Integer {; *modifiers* : Integer {; *process* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ See example for the [Process number](../commands/process-number.md) command.
| | |
| --- | --- |
| Command number | 465 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/post-outside-call.md b/docs/commands-legacy/post-outside-call.md
index 5f78d236f084d8..454ca7da6b8b55 100644
--- a/docs/commands-legacy/post-outside-call.md
+++ b/docs/commands-legacy/post-outside-call.md
@@ -5,7 +5,7 @@ slug: /commands/post-outside-call
displayed_sidebar: docs
---
-**POST OUTSIDE CALL** ( *process* )
+**POST OUTSIDE CALL** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ See example for [Semaphore](semaphore.md).
| | |
| --- | --- |
| Command number | 329 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/previous-record.md b/docs/commands-legacy/previous-record.md
index 58bc2136e42f4a..049708fb9d799a 100644
--- a/docs/commands-legacy/previous-record.md
+++ b/docs/commands-legacy/previous-record.md
@@ -5,7 +5,7 @@ slug: /commands/previous-record
displayed_sidebar: docs
---
-**PREVIOUS RECORD** {( *aTable* )}
+**PREVIOUS RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If **PREVIOUS RECORD** moves the current record pointer before the current selec
| | |
| --- | --- |
| Command number | 110 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
diff --git a/docs/commands-legacy/print-label.md b/docs/commands-legacy/print-label.md
index 41ddd67a4d64a1..394f7306f1559c 100644
--- a/docs/commands-legacy/print-label.md
+++ b/docs/commands-legacy/print-label.md
@@ -5,7 +5,7 @@ slug: /commands/print-label
displayed_sidebar: docs
---
-**PRINT LABEL** ( *aTable* {; *document* {; * }} )
**PRINT LABEL** ( *aTable* {; *document* {; >}} )
+**PRINT LABEL** ( *aTable* : Table {; *document* : Text {; * }} )
**PRINT LABEL** ( *aTable* : Table {; *document* : Text {; >}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -112,7 +112,7 @@ The following example lets the user query the \[People\] table, and then display
| | |
| --- | --- |
| Command number | 39 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/print-object.md b/docs/commands-legacy/print-object.md
index 5826fc35da06c7..3a71590f470d92 100644
--- a/docs/commands-legacy/print-object.md
+++ b/docs/commands-legacy/print-object.md
@@ -5,7 +5,7 @@ slug: /commands/print-object
displayed_sidebar: docs
---
-**Print object** ( {* ;} *object* {; *posX* {; *posY* {; *width* {; *height*}}}} ) : Boolean
+**Print object** ( * ; *object* : Text {; *posX* : Integer {; *posY* : Integer {; *width* : Integer {; *height* : Integer}}}} ) : Boolean
**Print object** ( *object* : Field, Variable {; *posX* : Integer {; *posY* : Integer {; *width* : Integer {; *height* : Integer}}}} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,6 +102,6 @@ Example of printing a complete list box:
| | |
| --- | --- |
| Command number | 1095 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/print-option-values.md b/docs/commands-legacy/print-option-values.md
index 44da0d1087fdae..9057028816d248 100644
--- a/docs/commands-legacy/print-option-values.md
+++ b/docs/commands-legacy/print-option-values.md
@@ -5,14 +5,14 @@ slug: /commands/print-option-values
displayed_sidebar: docs
---
-**PRINT OPTION VALUES** ( *option* ; *namesArray* {; *info1Array* {; *info2Array*}} )
+**PRINT OPTION VALUES** ( *option* : Integer ; *namesArray* : Text array {; *info1Array* : Integer array {; *info2Array* : Integer array}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| option | Integer | → | Option number |
| namesArray | Text array | ← | Names of values |
-| info1Array | Array integer | ← | Values (1) of the option |
-| info2Array | Array integer | ← | Values (2) of the option |
+| info1Array | Integer array | ← | Values (1) of the option |
+| info2Array | Integer array | ← | Values (2) of the option |
@@ -59,6 +59,6 @@ All the information returned by these commands is supplied by the operating syst
| | |
| --- | --- |
| Command number | 785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/print-record.md b/docs/commands-legacy/print-record.md
index 0d654b64d294a7..5a006119bd8b3a 100644
--- a/docs/commands-legacy/print-record.md
+++ b/docs/commands-legacy/print-record.md
@@ -5,7 +5,7 @@ slug: /commands/print-record
displayed_sidebar: docs
---
-**PRINT RECORD** ( *aTable* {; *} )
**PRINT RECORD** ( *aTable* {; >} )
+**PRINT RECORD** ( *aTable* : Table {; *} )
**PRINT RECORD** ( *aTable* : Table {; >} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ The following example prints the same current record in two different forms. The
| | |
| --- | --- |
| Command number | 71 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/print-selection.md b/docs/commands-legacy/print-selection.md
index edf47afd8b518c..79e068b1352fe3 100644
--- a/docs/commands-legacy/print-selection.md
+++ b/docs/commands-legacy/print-selection.md
@@ -5,7 +5,7 @@ slug: /commands/print-selection
displayed_sidebar: docs
---
-**PRINT SELECTION** ( *aTable* {; *} )
**PRINT SELECTION** ( *aTable* {; >} )
+**PRINT SELECTION** ( *aTable* : Table {; *} )
**PRINT SELECTION** ( *aTable* : Table {; >} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,7 +66,7 @@ The following example selects all the records in the \[People\] table. It then u
| | |
| --- | --- |
| Command number | 60 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/print-settings-to-blob.md b/docs/commands-legacy/print-settings-to-blob.md
index 5409791c248bf4..32a2ef858bf618 100644
--- a/docs/commands-legacy/print-settings-to-blob.md
+++ b/docs/commands-legacy/print-settings-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings-to-blob
displayed_sidebar: docs
---
-**Print settings to BLOB** ( *printSettings* ) : Integer
+**Print settings to BLOB** ( *printSettings* : Blob ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ You want to store the current print settings to disk:
| | |
| --- | --- |
| Command number | 1433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/print-settings.md b/docs/commands-legacy/print-settings.md
index 9c318c062565a7..090dbcdbffd448 100644
--- a/docs/commands-legacy/print-settings.md
+++ b/docs/commands-legacy/print-settings.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings
displayed_sidebar: docs
---
-**PRINT SETTINGS** {( *dialType* )}
+**PRINT SETTINGS** ({ *dialType* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ If the user clicks OK in both dialog boxes, the OK system variable is set to 1\.
| | |
| --- | --- |
| Command number | 106 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/printers-list.md b/docs/commands-legacy/printers-list.md
index a018aa551e014e..8cf03ef49a8ea1 100644
--- a/docs/commands-legacy/printers-list.md
+++ b/docs/commands-legacy/printers-list.md
@@ -5,7 +5,7 @@ slug: /commands/printers-list
displayed_sidebar: docs
---
-**PRINTERS LIST** ( *namesArray* {; *altNamesArray* {; *modelsArray*}} )
+**PRINTERS LIST** ( *namesArray* : Text array {; *altNamesArray* : Text array {; *modelsArray* : Text array}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ The system variable OK is set to 1 if the command has been executed correctly; o
| | |
| --- | --- |
| Command number | 789 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/printing-page.md b/docs/commands-legacy/printing-page.md
index 3a92c9c93687e6..feebdf33180057 100644
--- a/docs/commands-legacy/printing-page.md
+++ b/docs/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ The following example changes the position of the page numbers on a report so th
| | |
| --- | --- |
| Command number | 275 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/process-4d-tags.md b/docs/commands-legacy/process-4d-tags.md
index e16a6b912478e4..aa54179661f377 100644
--- a/docs/commands-legacy/process-4d-tags.md
+++ b/docs/commands-legacy/process-4d-tags.md
@@ -5,7 +5,7 @@ slug: /commands/process-4d-tags
displayed_sidebar: docs
---
-**PROCESS 4D TAGS** ( *inputTemplate* ; *outputResult* {; *param*}{; *param2* ; ... ; *paramN*} )
+**PROCESS 4D TAGS** ( *inputTemplate* : Text ; *outputResult* : Text {; *...param* : Expression} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Command number | 816 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/process-aborted.md b/docs/commands-legacy/process-aborted.md
index 28ee984ddc8e02..13889f6a4a0c67 100644
--- a/docs/commands-legacy/process-aborted.md
+++ b/docs/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ This status will happen very rarely. Processes are usually stopped before the co
| | |
| --- | --- |
| Command number | 672 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/process-state.md b/docs/commands-legacy/process-state.md
index 479d4516f5e038..6426a762b70624 100644
--- a/docs/commands-legacy/process-state.md
+++ b/docs/commands-legacy/process-state.md
@@ -5,7 +5,7 @@ slug: /commands/process-state
displayed_sidebar: docs
---
-**Process state** ( *process* ) : Integer
+**Process state** ( *process* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ The following example puts the name and process reference number for each proces
| | |
| --- | --- |
| Command number | 330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/push-record.md b/docs/commands-legacy/push-record.md
index 2581d91e189b37..867a9bc2a56b05 100644
--- a/docs/commands-legacy/push-record.md
+++ b/docs/commands-legacy/push-record.md
@@ -5,7 +5,7 @@ slug: /commands/push-record
displayed_sidebar: docs
---
-**PUSH RECORD** {( *aTable* )}
+**PUSH RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ The following example pushes the record for the customer onto the record stack:
| | |
| --- | --- |
| Command number | 176 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/qr-blob-to-report.md b/docs/commands-legacy/qr-blob-to-report.md
index b26582d4dd2272..c13e8929665ba0 100644
--- a/docs/commands-legacy/qr-blob-to-report.md
+++ b/docs/commands-legacy/qr-blob-to-report.md
@@ -5,12 +5,12 @@ slug: /commands/qr-blob-to-report
displayed_sidebar: docs
---
-**QR BLOB TO REPORT** ( *area* ; *blob* )
+**QR BLOB TO REPORT** ( *area* : Integer ; *blob* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| area | Integer | → | Reference of the area |
-| blob | Blob | → | BLOB that houses the report |
+| Blob | Blob | → | BLOB that houses the report |
@@ -49,7 +49,7 @@ The following statement retrieves the Quick Report stored in Field4 and displays
| | |
| --- | --- |
| Command number | 771 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-count-columns.md b/docs/commands-legacy/qr-count-columns.md
index 80375018339082..e66ffa7b28a3c5 100644
--- a/docs/commands-legacy/qr-count-columns.md
+++ b/docs/commands-legacy/qr-count-columns.md
@@ -5,7 +5,7 @@ slug: /commands/qr-count-columns
displayed_sidebar: docs
---
-**QR Count columns** ( *area* ) : Integer
+**QR Count columns** ( *area* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ The following code retrieves the column count and inserts a column to the right
| | |
| --- | --- |
| Command number | 764 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-delete-column.md b/docs/commands-legacy/qr-delete-column.md
index 7e5cc1cec2affb..7baf20195fd81b 100644
--- a/docs/commands-legacy/qr-delete-column.md
+++ b/docs/commands-legacy/qr-delete-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-delete-column
displayed_sidebar: docs
---
-**QR DELETE COLUMN** ( *area* ; *colNumber* )
+**QR DELETE COLUMN** ( *area* : Integer ; *colNumber* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ The following example makes sure the report is a list report and deletes the thi
| | |
| --- | --- |
| Command number | 749 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-delete-offscreen-area.md b/docs/commands-legacy/qr-delete-offscreen-area.md
index b52e440618575b..65d11eaebe18b8 100644
--- a/docs/commands-legacy/qr-delete-offscreen-area.md
+++ b/docs/commands-legacy/qr-delete-offscreen-area.md
@@ -5,7 +5,7 @@ slug: /commands/qr-delete-offscreen-area
displayed_sidebar: docs
---
-**QR DELETE OFFSCREEN AREA** ( *area* )
+**QR DELETE OFFSCREEN AREA** ( *area* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,7 +28,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 754 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-execute-command.md b/docs/commands-legacy/qr-execute-command.md
index d3d0ab0f921c7a..76cdf67f8e6837 100644
--- a/docs/commands-legacy/qr-execute-command.md
+++ b/docs/commands-legacy/qr-execute-command.md
@@ -5,7 +5,7 @@ slug: /commands/qr-execute-command
displayed_sidebar: docs
---
-**QR EXECUTE COMMAND** ( *area* ; *command* )
+**QR EXECUTE COMMAND** ( *area* : Integer ; *command* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,7 +43,7 @@ If you pass an invalid *command* number, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 791 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-find-column.md b/docs/commands-legacy/qr-find-column.md
index a98df17a2fa105..fcc970f1c2e179 100644
--- a/docs/commands-legacy/qr-find-column.md
+++ b/docs/commands-legacy/qr-find-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-find-column
displayed_sidebar: docs
---
-**QR Find column** ( *area* ; *expression* ) : Integer
+**QR Find column** ( *area* : Integer ; *expression* : Text, Pointer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ followed by:
| | |
| --- | --- |
| Command number | 776 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-area-property.md b/docs/commands-legacy/qr-get-area-property.md
index 7d6dadad144565..01906640151de5 100644
--- a/docs/commands-legacy/qr-get-area-property.md
+++ b/docs/commands-legacy/qr-get-area-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-area-property
displayed_sidebar: docs
---
-**QR Get area property** ( *area* ; *property* ) : Integer
+**QR Get area property** ( *area* : Integer ; *property* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ If you pass an invalid *property* parameter, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 795 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-borders.md b/docs/commands-legacy/qr-get-borders.md
index 228c2e9ee75c34..86194ea1e3ed43 100644
--- a/docs/commands-legacy/qr-get-borders.md
+++ b/docs/commands-legacy/qr-get-borders.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-borders
displayed_sidebar: docs
---
-**QR GET BORDERS** ( *area* ; *column* ; *row* ; *border* ; *line* {; *color*} )
+**QR GET BORDERS** ( *area* : Integer ; *column* : Integer ; *row* : Integer ; *border* : Integer ; *line* : Integer {; *color* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,7 +74,7 @@ If you pass an invalid *border* parameter, the error -9854 will be generated.
| | |
| --- | --- |
| Command number | 798 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-command-status.md b/docs/commands-legacy/qr-get-command-status.md
index 7ebbcfefdcd71e..35b18e3d261d01 100644
--- a/docs/commands-legacy/qr-get-command-status.md
+++ b/docs/commands-legacy/qr-get-command-status.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-command-status
displayed_sidebar: docs
---
-**QR Get command status** ( *area* ; *command* {; *value*} ) : Integer
+**QR Get command status** ( *area* : Integer ; *command* : Integer {; *value* : Integer, Text} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ If you pass an invalid *command* number, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 792 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-destination.md b/docs/commands-legacy/qr-get-destination.md
index 81c38987b9c936..851f6f49a2e4fc 100644
--- a/docs/commands-legacy/qr-get-destination.md
+++ b/docs/commands-legacy/qr-get-destination.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-destination
displayed_sidebar: docs
---
-**QR GET DESTINATION** ( *area* ; *type* {; *specifics*} )
+**QR GET DESTINATION** ( *area* : Integer ; *type* : Integer {; *specifics* : Text, Variable} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 756 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-document-property.md b/docs/commands-legacy/qr-get-document-property.md
index 11f7d32ee276f8..ef95eef482af95 100644
--- a/docs/commands-legacy/qr-get-document-property.md
+++ b/docs/commands-legacy/qr-get-document-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-document-property
displayed_sidebar: docs
---
-**QR Get document property** ( *area* ; *property* ) : Integer
+**QR Get document property** ( *area* : Integer ; *property* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ If you pass an invalid *property* value, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 773 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/qr-get-drop-column.md b/docs/commands-legacy/qr-get-drop-column.md
index f2b315a680cca2..94746c9b0eb8b3 100644
--- a/docs/commands-legacy/qr-get-drop-column.md
+++ b/docs/commands-legacy/qr-get-drop-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-drop-column
displayed_sidebar: docs
---
-**QR Get drop column** ( *area* ) : Integer
+**QR Get drop column** ( *area* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 747 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-header-and-footer.md b/docs/commands-legacy/qr-get-header-and-footer.md
index 50d032bb154d9f..2491cf4edf31ee 100644
--- a/docs/commands-legacy/qr-get-header-and-footer.md
+++ b/docs/commands-legacy/qr-get-header-and-footer.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-header-and-footer
displayed_sidebar: docs
---
-**QR GET HEADER AND FOOTER** ( *area* ; *selector* ; *leftTitle* ; *centerTitle* ; *rightTitle* ; *height* {; *picture* {; *pictAlignment*}} )
+**QR GET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *leftTitle* : Text ; *centerTitle* : Text ; *rightTitle* : Text ; *height* : Integer {; *picture* : Picture {; *pictAlignment* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,7 +72,7 @@ The following code retrieves the values of the header titles as well as the head
| | |
| --- | --- |
| Command number | 775 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-html-template.md b/docs/commands-legacy/qr-get-html-template.md
index c683a2cf6889a5..bc4f768b5948be 100644
--- a/docs/commands-legacy/qr-get-html-template.md
+++ b/docs/commands-legacy/qr-get-html-template.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-html-template
displayed_sidebar: docs
---
-**QR Get HTML template** ( *area* ) : Text
+**QR Get HTML template** ( *area* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,7 +31,7 @@ If you pass an invalid area number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 751 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-info-column.md b/docs/commands-legacy/qr-get-info-column.md
index 49f083546cfbcc..dd62471ad25c7e 100644
--- a/docs/commands-legacy/qr-get-info-column.md
+++ b/docs/commands-legacy/qr-get-info-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-info-column
displayed_sidebar: docs
---
-**QR GET INFO COLUMN** ( *area* ; *colNum* ; *title* ; *object* ; *hide* ; *size* ; *repeatedValue* ; *displayFormat* {; *resultVar*} )
+**QR GET INFO COLUMN** ( *area* : Integer ; *colNum* : Integer ; *title* : Text ; *object* : Text ; *hide* : Integer ; *size* : Integer ; *repeatedValue* : Integer ; *displayFormat* : Text {; *resultVar* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -113,7 +113,7 @@ You can write:
| | |
| --- | --- |
| Command number | 766 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-info-row.md b/docs/commands-legacy/qr-get-info-row.md
index 9783319626ec94..8feef981b4d1ed 100644
--- a/docs/commands-legacy/qr-get-info-row.md
+++ b/docs/commands-legacy/qr-get-info-row.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-info-row
displayed_sidebar: docs
---
-**QR Get info row** ( *area* ; *row* ) : Integer
+**QR Get info row** ( *area* : Integer ; *row* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ If you pass an invalid *row* value, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 769 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-report-kind.md b/docs/commands-legacy/qr-get-report-kind.md
index 5861b57ccdda6c..a152473c65b628 100644
--- a/docs/commands-legacy/qr-get-report-kind.md
+++ b/docs/commands-legacy/qr-get-report-kind.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-report-kind
displayed_sidebar: docs
---
-**QR Get report kind** ( *area* ) : Integer
+**QR Get report kind** ( *area* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 755 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-report-table.md b/docs/commands-legacy/qr-get-report-table.md
index 42fee485163fdd..297b72ce883bcc 100644
--- a/docs/commands-legacy/qr-get-report-table.md
+++ b/docs/commands-legacy/qr-get-report-table.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-report-table
displayed_sidebar: docs
---
-**QR Get report table** ( *area* ) : Integer
+**QR Get report table** ( *area* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,7 +29,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 758 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-selection.md b/docs/commands-legacy/qr-get-selection.md
index 02d1faf7a68770..8286c010dac564 100644
--- a/docs/commands-legacy/qr-get-selection.md
+++ b/docs/commands-legacy/qr-get-selection.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-selection
displayed_sidebar: docs
---
-**QR GET SELECTION** ( *area* ; *left* ; *top* {; *right* {; *bottom*}} )
+**QR GET SELECTION** ( *area* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer {; *bottom* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 793 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-sorts.md b/docs/commands-legacy/qr-get-sorts.md
index 938b3935f748e9..87cb128da77531 100644
--- a/docs/commands-legacy/qr-get-sorts.md
+++ b/docs/commands-legacy/qr-get-sorts.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-sorts
displayed_sidebar: docs
---
-**QR GET SORTS** ( *area* ; *aColumns* ; *aOrders* )
+**QR GET SORTS** ( *area* : Integer ; *aColumns* : Real array ; *aOrders* : Real array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 753 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-text-property.md b/docs/commands-legacy/qr-get-text-property.md
index 08f016d77210c5..bd745d17841b21 100644
--- a/docs/commands-legacy/qr-get-text-property.md
+++ b/docs/commands-legacy/qr-get-text-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-text-property
displayed_sidebar: docs
---
-**QR Get text property** ( *area* ; *colNum* ; *rowNum* ; *property* ) : any
+**QR Get text property** ( *area* : Integer ; *colNum* : Integer ; *rowNum* : Integer ; *property* : Integer ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,7 +74,7 @@ If you pass an invalid *property* number, the error -9854 will be generated.
| | |
| --- | --- |
| Command number | 760 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-totals-data.md b/docs/commands-legacy/qr-get-totals-data.md
index 3133982087a902..45d4dc4cb86d10 100644
--- a/docs/commands-legacy/qr-get-totals-data.md
+++ b/docs/commands-legacy/qr-get-totals-data.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-totals-data
displayed_sidebar: docs
---
-**QR GET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *operator* ; *text* )
+**QR GET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *operator* : Integer ; *text* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,7 +78,7 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated.
| | |
| --- | --- |
| Command number | 768 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-get-totals-spacing.md b/docs/commands-legacy/qr-get-totals-spacing.md
index 0d71f2830ab8b1..22499190989c1d 100644
--- a/docs/commands-legacy/qr-get-totals-spacing.md
+++ b/docs/commands-legacy/qr-get-totals-spacing.md
@@ -5,7 +5,7 @@ slug: /commands/qr-get-totals-spacing
displayed_sidebar: docs
---
-**QR GET TOTALS SPACING** ( *area* ; *subtotal* ; *value* )
+**QR GET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ If you pass an invalid *subtotal*, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 762 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-insert-column.md b/docs/commands-legacy/qr-insert-column.md
index 6043e50cb9ee88..5a2b348787c336 100644
--- a/docs/commands-legacy/qr-insert-column.md
+++ b/docs/commands-legacy/qr-insert-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-insert-column
displayed_sidebar: docs
---
-**QR INSERT COLUMN** ( *area* ; *colNumber* ; *object* )
+**QR INSERT COLUMN** ( *area* : Integer ; *colNumber* : Integer ; *object* : Field, Variable, Pointer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ The following statement inserts (or creates) a first column in a Quick Report ar
| | |
| --- | --- |
| Command number | 748 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-move-column.md b/docs/commands-legacy/qr-move-column.md
index c6288e947c6cff..6cc21e133ded89 100644
--- a/docs/commands-legacy/qr-move-column.md
+++ b/docs/commands-legacy/qr-move-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-move-column
displayed_sidebar: docs
---
-**QR MOVE COLUMN** ( *area* ; *column* ; *newPos* )
+**QR MOVE COLUMN** ( *area* : Integer ; *column* : Integer ; *newPos* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ The result is:
| | |
| --- | --- |
| Command number | 1325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/qr-new-area.md b/docs/commands-legacy/qr-new-area.md
index 451612266603d8..748b6b6c4b48be 100644
--- a/docs/commands-legacy/qr-new-area.md
+++ b/docs/commands-legacy/qr-new-area.md
@@ -5,7 +5,7 @@ slug: /commands/qr-new-area
displayed_sidebar: docs
---
-**QR NEW AREA** ( *ptr* )
+**QR NEW AREA** ( *ptr* : Pointer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1320 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/qr-new-offscreen-area.md b/docs/commands-legacy/qr-new-offscreen-area.md
index e038485d466971..0217ef86a6ae04 100644
--- a/docs/commands-legacy/qr-new-offscreen-area.md
+++ b/docs/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 735 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/qr-on-command.md b/docs/commands-legacy/qr-on-command.md
index ad6702239c95b1..1865be15646b03 100644
--- a/docs/commands-legacy/qr-on-command.md
+++ b/docs/commands-legacy/qr-on-command.md
@@ -5,7 +5,7 @@ slug: /commands/qr-on-command
displayed_sidebar: docs
---
-**QR ON COMMAND** ( *area* ; *methodName* )
+**QR ON COMMAND** ( *area* : Integer ; *methodName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,7 +48,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 790 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-report-to-blob.md b/docs/commands-legacy/qr-report-to-blob.md
index d0688f6d783fe9..6286367d72ca96 100644
--- a/docs/commands-legacy/qr-report-to-blob.md
+++ b/docs/commands-legacy/qr-report-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/qr-report-to-blob
displayed_sidebar: docs
---
-**QR REPORT TO BLOB** ( *area* ; *blob* )
+**QR REPORT TO BLOB** ( *area* : Integer ; *blob* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| area | Integer | → | Reference of the area |
-| blob | Blob | ← | BLOB to house the Quick Report |
+| Blob | Blob | ← | BLOB to house the Quick Report |
@@ -37,7 +37,7 @@ The following statement assigns the Quick Report stored in MyArea into a BLOB Fi
| | |
| --- | --- |
| Command number | 770 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-report.md b/docs/commands-legacy/qr-report.md
index 8510f7931815e8..ce1a7d3f54681c 100644
--- a/docs/commands-legacy/qr-report.md
+++ b/docs/commands-legacy/qr-report.md
@@ -5,7 +5,7 @@ slug: /commands/qr-report
displayed_sidebar: docs
---
-**QR REPORT** ( {*aTable* ;} *document* {; *methodName*}{; *} )
+**QR REPORT** ( {*aTable* : Table ;} *document* : Text {; *methodName* : Text}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -137,7 +137,7 @@ The myCallbackMeth method converts the report when it is generated:
| | |
| --- | --- |
| Command number | 197 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/qr-run.md b/docs/commands-legacy/qr-run.md
index 8497bc8a9c0d72..e1d76a67e6b43f 100644
--- a/docs/commands-legacy/qr-run.md
+++ b/docs/commands-legacy/qr-run.md
@@ -5,7 +5,7 @@ slug: /commands/qr-run
displayed_sidebar: docs
---
-**QR RUN** ( *area* )
+**QR RUN** ( *area* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,7 +29,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 746 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-area-property.md b/docs/commands-legacy/qr-set-area-property.md
index 6fb6e161499496..5f4d1565c476da 100644
--- a/docs/commands-legacy/qr-set-area-property.md
+++ b/docs/commands-legacy/qr-set-area-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-area-property
displayed_sidebar: docs
---
-**QR SET AREA PROPERTY** ( *area* ; *property* ; *value* )
+**QR SET AREA PROPERTY** ( *area* : Integer ; *property* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If you pass an invalid *property* parameter, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 796 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-borders.md b/docs/commands-legacy/qr-set-borders.md
index f04fad4c0ba6e3..3efad6aedb8020 100644
--- a/docs/commands-legacy/qr-set-borders.md
+++ b/docs/commands-legacy/qr-set-borders.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-borders
displayed_sidebar: docs
---
-**QR SET BORDERS** ( *area* ; *column* ; *row* ; *border* ; *line* {; *color*} )
+**QR SET BORDERS** ( *area* : Integer ; *column* : Integer ; *row* : Integer ; *border* : Integer ; *line* : Integer {; *color* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -80,7 +80,7 @@ If you pass an invalid line parameter, the error -9855 will be generated.
| | |
| --- | --- |
| Command number | 797 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-destination.md b/docs/commands-legacy/qr-set-destination.md
index 6625743313ca46..7f1044ad05b6a5 100644
--- a/docs/commands-legacy/qr-set-destination.md
+++ b/docs/commands-legacy/qr-set-destination.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-destination
displayed_sidebar: docs
---
-**QR SET DESTINATION** ( *area* ; *type* {; *specifics*} )
+**QR SET DESTINATION** ( *area* : Integer ; *type* : Integer {; *specifics* : Text, Variable} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ The following code sets the destination as being the text file "Mydoc.txt" and e
| | |
| --- | --- |
| Command number | 745 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-document-property.md b/docs/commands-legacy/qr-set-document-property.md
index 08a667a3b0a458..9d5e32dc685ffe 100644
--- a/docs/commands-legacy/qr-set-document-property.md
+++ b/docs/commands-legacy/qr-set-document-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-document-property
displayed_sidebar: docs
---
-**QR SET DOCUMENT PROPERTY** ( *area* ; *property* ; *value* )
+**QR SET DOCUMENT PROPERTY** ( *area* : Integer ; *property* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ If you pass an invalid value in the *property* or *value* parameter, the corresp
| | |
| --- | --- |
| Command number | 772 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-header-and-footer.md b/docs/commands-legacy/qr-set-header-and-footer.md
index 4f4100498263ec..400cdf93b04c3a 100644
--- a/docs/commands-legacy/qr-set-header-and-footer.md
+++ b/docs/commands-legacy/qr-set-header-and-footer.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-header-and-footer
displayed_sidebar: docs
---
-**QR SET HEADER AND FOOTER** ( *area* ; *selector* ; *leftTitle* ; *centerTitle* ; *rightTitle* ; *height* {; *picture* {; *pictAlignment*}} )
+**QR SET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *leftTitle* : Text ; *centerTitle* : Text ; *rightTitle* : Text ; *height* : Integer {; *picture* : Picture {; *pictAlignment* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,7 +61,7 @@ The following statement places the title “Center title” in the header for th
| | |
| --- | --- |
| Command number | 774 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-html-template.md b/docs/commands-legacy/qr-set-html-template.md
index 3ebb4fcc8649fa..459f2be407a94f 100644
--- a/docs/commands-legacy/qr-set-html-template.md
+++ b/docs/commands-legacy/qr-set-html-template.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-html-template
displayed_sidebar: docs
---
-**QR SET HTML TEMPLATE** ( *area* ; *template* )
+**QR SET HTML TEMPLATE** ( *area* : Integer ; *template* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,7 +74,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 750 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-info-column.md b/docs/commands-legacy/qr-set-info-column.md
index e5d9d1ab4d3852..d1feda0cca0dd3 100644
--- a/docs/commands-legacy/qr-set-info-column.md
+++ b/docs/commands-legacy/qr-set-info-column.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-info-column
displayed_sidebar: docs
---
-**QR SET INFO COLUMN** ( *area* ; *colNum* ; *title* ; *object* ; *hide* ; *size* ; *repeatedValue* ; *displayFormat* )
+**QR SET INFO COLUMN** ( *area* : Integer ; *colNum* : Integer ; *title* : Text ; *object* : Field, Variable ; *hide* : Integer ; *size* : Integer ; *repeatedValue* : Integer ; *displayFormat* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -112,7 +112,7 @@ If you pass an invalid *colNum* value, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 765 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-info-row.md b/docs/commands-legacy/qr-set-info-row.md
index 6b5bc31ab3df5d..8c32eb969f38ca 100644
--- a/docs/commands-legacy/qr-set-info-row.md
+++ b/docs/commands-legacy/qr-set-info-row.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-info-row
displayed_sidebar: docs
---
-**QR SET INFO ROW** ( *area* ; *row* ; *hide* )
+**QR SET INFO ROW** ( *area* : Integer ; *row* : Integer ; *hide* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,7 +57,7 @@ The following statement hides the detail row:
| | |
| --- | --- |
| Command number | 763 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-report-kind.md b/docs/commands-legacy/qr-set-report-kind.md
index 4d23a33aa6f416..7d0e2eb33dd10a 100644
--- a/docs/commands-legacy/qr-set-report-kind.md
+++ b/docs/commands-legacy/qr-set-report-kind.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-report-kind
displayed_sidebar: docs
---
-**QR SET REPORT KIND** ( *area* ; *type* )
+**QR SET REPORT KIND** ( *area* : Integer ; *type* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,7 +43,7 @@ If you pass an invalid *type* value, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 738 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-report-table.md b/docs/commands-legacy/qr-set-report-table.md
index 90349c8ab6bc6e..630dd71bab0c6b 100644
--- a/docs/commands-legacy/qr-set-report-table.md
+++ b/docs/commands-legacy/qr-set-report-table.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-report-table
displayed_sidebar: docs
---
-**QR SET REPORT TABLE** ( *area* ; *aTable* )
+**QR SET REPORT TABLE** ( *area* : Integer ; *aTable* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If you pass an invalid *table* value, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 757 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-selection.md b/docs/commands-legacy/qr-set-selection.md
index f2655f3a48e20e..5cbc82c399d70c 100644
--- a/docs/commands-legacy/qr-set-selection.md
+++ b/docs/commands-legacy/qr-set-selection.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-selection
displayed_sidebar: docs
---
-**QR SET SELECTION** ( *area* ; *left* ; *top* {; *right* {; *bottom*}} )
+**QR SET SELECTION** ( *area* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer {; *bottom* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 794 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-sorts.md b/docs/commands-legacy/qr-set-sorts.md
index b98fb5ba765433..cb25d90ff3babd 100644
--- a/docs/commands-legacy/qr-set-sorts.md
+++ b/docs/commands-legacy/qr-set-sorts.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-sorts
displayed_sidebar: docs
---
-**QR SET SORTS** ( *area* ; *aColumns* {; *aOrders*} )
+**QR SET SORTS** ( *area* : Integer ; *aColumns* : Real array {; *aOrders* : Real array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,7 +51,7 @@ If you pass an invalid *area* number, the error -9850 will be generated.
| | |
| --- | --- |
| Command number | 752 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-text-property.md b/docs/commands-legacy/qr-set-text-property.md
index ccc94bc4992709..4d1ccbd4ed7b17 100644
--- a/docs/commands-legacy/qr-set-text-property.md
+++ b/docs/commands-legacy/qr-set-text-property.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-text-property
displayed_sidebar: docs
---
-**QR SET TEXT PROPERTY** ( *area* ; *colNum* ; *rowNum* ; *property* ; *value* )
+**QR SET TEXT PROPERTY** ( *area* : Integer ; *colNum* : Integer ; *rowNum* : Integer ; *property* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,7 +90,7 @@ This method defines several attributes of the first column’s title:
| | |
| --- | --- |
| Command number | 759 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-totals-data.md b/docs/commands-legacy/qr-set-totals-data.md
index aab3499ea427c1..b75542fcfda388 100644
--- a/docs/commands-legacy/qr-set-totals-data.md
+++ b/docs/commands-legacy/qr-set-totals-data.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-totals-data
displayed_sidebar: docs
---
-**QR SET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *operator* )
**QR SET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *value* )
+**QR SET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *operator* : Integer, Text )
**QR SET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -101,7 +101,7 @@ If you pass an invalid *breakNum* number, the error -9853 will be generated.
| | |
| --- | --- |
| Command number | 767 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/qr-set-totals-spacing.md b/docs/commands-legacy/qr-set-totals-spacing.md
index aa644d63b6a37f..d9a314faeda7e8 100644
--- a/docs/commands-legacy/qr-set-totals-spacing.md
+++ b/docs/commands-legacy/qr-set-totals-spacing.md
@@ -5,7 +5,7 @@ slug: /commands/qr-set-totals-spacing
displayed_sidebar: docs
---
-**QR SET TOTALS SPACING** ( *area* ; *subtotal* ; *value* )
+**QR SET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *value* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,7 +43,7 @@ If you pass an invalid *subtotal*, the error -9852 will be generated.
| | |
| --- | --- |
| Command number | 761 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/query-by-attribute.md b/docs/commands-legacy/query-by-attribute.md
index 024cd41c97ac33..1c19ce0eb1bff0 100644
--- a/docs/commands-legacy/query-by-attribute.md
+++ b/docs/commands-legacy/query-by-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/query-by-attribute
displayed_sidebar: docs
---
-**QUERY BY ATTRIBUTE** ( {*aTable*}{;}{*conjOp* ;} *objectField* ; *attributePath* ; *queryOp* ; *value* {; *} )
+**QUERY BY ATTRIBUTE** ( {*aTable* : Table}{;}{*conjOp* : Operator ;} *objectField* : Field ; *attributePath* : Text ; *queryOp* : Text, Operator ; *value* : Text, Real, Date, Time {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| objectField | Field | → | Object field to query attributes |
| attributePath | Text | → | Name or path of attribute |
| queryOp | Text, Operator | → | Query operator (comparator) |
-| value | Text, Number, Date, Time | → | Value to compare |
+| value | Text, Real, Date, Time | → | Value to compare |
| * | Operator | → | Continue query flag |
@@ -412,7 +412,7 @@ The OK variable is set to 0 if:
| | |
| --- | --- |
| Command number | 1331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-by-example.md b/docs/commands-legacy/query-by-example.md
index e8ec83498f9859..a88f15e4248a25 100644
--- a/docs/commands-legacy/query-by-example.md
+++ b/docs/commands-legacy/query-by-example.md
@@ -5,7 +5,7 @@ slug: /commands/query-by-example
displayed_sidebar: docs
---
-**QUERY BY EXAMPLE** ( {*aTable*}{;}{*} )
+**QUERY BY EXAMPLE** ( {*aTable* : Table}{;}{*} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ If the user clicks the Accept button or presses the Enter key, the OK system var
| | |
| --- | --- |
| Command number | 292 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-by-formula.md b/docs/commands-legacy/query-by-formula.md
index 887bf22dd6a673..097e196d7ff302 100644
--- a/docs/commands-legacy/query-by-formula.md
+++ b/docs/commands-legacy/query-by-formula.md
@@ -5,7 +5,7 @@ slug: /commands/query-by-formula
displayed_sidebar: docs
---
-**QUERY BY FORMULA** ( *aTable* {; *queryFormula*} )
+**QUERY BY FORMULA** ( *aTable* : Table {; *queryFormula* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -84,7 +84,7 @@ This example uses a join to query all the lines of "ACME" client invoices even t
| | |
| --- | --- |
| Command number | 48 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-by-sql.md b/docs/commands-legacy/query-by-sql.md
index 69469267e44d30..35ce7fe33689b8 100644
--- a/docs/commands-legacy/query-by-sql.md
+++ b/docs/commands-legacy/query-by-sql.md
@@ -5,7 +5,7 @@ slug: /commands/query-by-sql
displayed_sidebar: docs
---
-**QUERY BY SQL** ( {*aTable* ;} *sqlFormula* )
+**QUERY BY SQL** ( {*aTable* : Table ;} *sqlFormula* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -162,7 +162,7 @@ If the format of the search condition is correct, the system variable OK is set
| | |
| --- | --- |
| Command number | 942 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-selection-by-attribute.md b/docs/commands-legacy/query-selection-by-attribute.md
index 22f6dd1ba3190f..eab5a89dc24f56 100644
--- a/docs/commands-legacy/query-selection-by-attribute.md
+++ b/docs/commands-legacy/query-selection-by-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/query-selection-by-attribute
displayed_sidebar: docs
---
-**QUERY SELECTION BY ATTRIBUTE** ( {*aTable*}{;}{*conjOp* ;} *objectField* ; *attributePath* ; *queryOp* ; *value* {; *} )
+**QUERY SELECTION BY ATTRIBUTE** ( {*aTable* : Table}{;}{*conjOp* : Operator ;} *objectField* : Field ; *attributePath* : Text ; *queryOp* : Text, Operator ; *value* : Text, Real, Date, Time {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| objectField | Field | → | Object field to query attributes |
| attributePath | Text | → | Name or path of attribute |
| queryOp | Text, Operator | → | Query operator (comparator) |
-| value | Text, Number, Date, Time | → | Value to compare |
+| value | Text, Real, Date, Time | → | Value to compare |
| * | Operator | → | Continue query flag |
@@ -51,7 +51,7 @@ You want to find people with an age between 20 and 30, among the records that we
| | |
| --- | --- |
| Command number | 1424 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-selection-by-formula.md b/docs/commands-legacy/query-selection-by-formula.md
index 96efc35794beb8..6558d73046c3d7 100644
--- a/docs/commands-legacy/query-selection-by-formula.md
+++ b/docs/commands-legacy/query-selection-by-formula.md
@@ -5,7 +5,7 @@ slug: /commands/query-selection-by-formula
displayed_sidebar: docs
---
-**QUERY SELECTION BY FORMULA** ( *aTable* {; *queryFormula*} )
+**QUERY SELECTION BY FORMULA** ( *aTable* : Table {; *queryFormula* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ For more information, see the description of the [QUERY BY FORMULA](query-by-for
| | |
| --- | --- |
| Command number | 207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-selection-with-array.md b/docs/commands-legacy/query-selection-with-array.md
index d37fe182db984d..cdf7c14bd25135 100644
--- a/docs/commands-legacy/query-selection-with-array.md
+++ b/docs/commands-legacy/query-selection-with-array.md
@@ -5,7 +5,7 @@ slug: /commands/query-selection-with-array
displayed_sidebar: docs
---
-**QUERY SELECTION WITH ARRAY** ( *targetField* ; *array* )
+**QUERY SELECTION WITH ARRAY** ( *targetField* : Field ; *array* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,7 +34,7 @@ For more information, please refer to the description of the [QUERY WITH ARRAY](
| | |
| --- | --- |
| Command number | 1050 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/query-selection.md b/docs/commands-legacy/query-selection.md
index 6634ed8e831512..7de821e3eed05e 100644
--- a/docs/commands-legacy/query-selection.md
+++ b/docs/commands-legacy/query-selection.md
@@ -5,7 +5,7 @@ slug: /commands/query-selection
displayed_sidebar: docs
---
-**QUERY SELECTION** ( {*aTable* }{;}{ *queryArgument* {; *}} )
+**QUERY SELECTION** ( {*aTable* : Table }{;}{ *queryArgument* : Expression {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,7 +49,7 @@ You will find all companies located in New York City, with a Stock Exchange acti
| | |
| --- | --- |
| Command number | 341 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/query-with-array.md b/docs/commands-legacy/query-with-array.md
index 49678c287b7e8e..eb9d0f58a10ad8 100644
--- a/docs/commands-legacy/query-with-array.md
+++ b/docs/commands-legacy/query-with-array.md
@@ -5,7 +5,7 @@ slug: /commands/query-with-array
displayed_sidebar: docs
---
-**QUERY WITH ARRAY** ( *targetField* ; *array* )
+**QUERY WITH ARRAY** ( *targetField* : Field ; *array* : Array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ The following example allows you to retrieve the records of both French and Amer
| | |
| --- | --- |
| Command number | 644 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/query.md b/docs/commands-legacy/query.md
index 17d128a22c8b7d..47fa0fef6d89e8 100644
--- a/docs/commands-legacy/query.md
+++ b/docs/commands-legacy/query.md
@@ -5,7 +5,7 @@ slug: /commands/query
displayed_sidebar: docs
---
-**QUERY** ( {*aTable* }{;}{ *queryArgument* {; *}} )
+**QUERY** ( {*aTable* : Table }{;}{ *queryArgument* : Expression {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -315,7 +315,7 @@ The OK variable is set to 0 if:
| | |
| --- | --- |
| Command number | 277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/quit-4d.md b/docs/commands-legacy/quit-4d.md
index 49e5df9802db0d..72ca85fefecc2f 100644
--- a/docs/commands-legacy/quit-4d.md
+++ b/docs/commands-legacy/quit-4d.md
@@ -5,7 +5,7 @@ slug: /commands/quit-4d
displayed_sidebar: docs
---
-**QUIT 4D** {( *time* )}
+**QUIT 4D** ({ *time* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ The project method listed here is associated with the Quit or Exit menu item in
| | |
| --- | --- |
| Command number | 291 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/random.md b/docs/commands-legacy/random.md
index 6820c7350e6db6..54621f97126555 100644
--- a/docs/commands-legacy/random.md
+++ b/docs/commands-legacy/random.md
@@ -39,6 +39,6 @@ The following example assigns a random integer between 10 and 30 to the *vlResul
| | |
| --- | --- |
| Command number | 100 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/read-only-state.md b/docs/commands-legacy/read-only-state.md
index 1ed203da6b7a92..c17f88470f1f95 100644
--- a/docs/commands-legacy/read-only-state.md
+++ b/docs/commands-legacy/read-only-state.md
@@ -5,7 +5,7 @@ slug: /commands/read-only-state
displayed_sidebar: docs
---
-**Read only state** {( *aTable* )} : Boolean
+**Read only state** ( *aTable* : Table ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The following example tests the state of an \[Invoice\] table. If the state of t
| | |
| --- | --- |
| Command number | 362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/read-only.md b/docs/commands-legacy/read-only.md
index a11ae7cb956103..35b81a1eae532c 100644
--- a/docs/commands-legacy/read-only.md
+++ b/docs/commands-legacy/read-only.md
@@ -5,7 +5,7 @@ slug: /commands/read-only
displayed_sidebar: docs
---
-**READ ONLY** {( *aTable* )}
**READ ONLY** {( * )}
+**READ ONLY** ({ *aTable* : Table, Operator })
**READ ONLY** ({ * })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ Use READ ONLY when you do not need to modify the record or records.
| | |
| --- | --- |
| Command number | 145 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/read-picture-file.md b/docs/commands-legacy/read-picture-file.md
index 7db58a3deff66b..aff9b8cca128f7 100644
--- a/docs/commands-legacy/read-picture-file.md
+++ b/docs/commands-legacy/read-picture-file.md
@@ -5,7 +5,7 @@ slug: /commands/read-picture-file
displayed_sidebar: docs
---
-**READ PICTURE FILE** ( *fileName* ; *picture* {; *} )
+**READ PICTURE FILE** ( *fileName* : Text ; *picture* : Picture {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ If the command is executed successfully, the system variable Document contains t
| | |
| --- | --- |
| Command number | 678 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/read-write.md b/docs/commands-legacy/read-write.md
index 00e50bcbbcb8dc..26107cafd3a655 100644
--- a/docs/commands-legacy/read-write.md
+++ b/docs/commands-legacy/read-write.md
@@ -5,7 +5,7 @@ slug: /commands/read-write
displayed_sidebar: docs
---
-**READ WRITE** {( *aTable* )}
**READ WRITE** {( * )}
+**READ WRITE** ({ *aTable* : Table, Operator })
**READ WRITE** ({ * })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ Use READ WRITE when you must modify a record and save the changes. Also use READ
| | |
| --- | --- |
| Command number | 146 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/real-to-blob.md b/docs/commands-legacy/real-to-blob.md
index 557d5bdbf041cb..ec70336b96e795 100644
--- a/docs/commands-legacy/real-to-blob.md
+++ b/docs/commands-legacy/real-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/real-to-blob
displayed_sidebar: docs
---
-**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; offset } )
**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; *} )
+**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; offset } )
**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| real | Real | → | Real value to write into the BLOB |
-| blob | Blob | → | BLOB to receive the Real value |
+| Blob | Blob | → | BLOB to receive the Real value |
| realFormat | Integer | → | 0 Native real format 1 Extended real format 2 Macintosh Double real format 3 Windows Double real format |
| offset | * | Variable, Operator | ↔ | Offset within the BLOB (expressed in bytes) or * to append the value |
| ||| New offset after writing if not * |
@@ -138,6 +138,6 @@ After executing this code:
| | |
| --- | --- |
| Command number | 552 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/receive-buffer.md b/docs/commands-legacy/receive-buffer.md
index 9c34a4bfff8448..a50e36b438ef78 100644
--- a/docs/commands-legacy/receive-buffer.md
+++ b/docs/commands-legacy/receive-buffer.md
@@ -5,7 +5,7 @@ slug: /commands/receive-buffer
displayed_sidebar: docs
---
-**RECEIVE BUFFER** ( *receiveVar* )
+**RECEIVE BUFFER** ( *receiveVar* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,7 +69,7 @@ Note that access to the interprocess *◊vtBuffer* variable should be protected
| | |
| --- | --- |
| Command number | 172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/receive-packet.md b/docs/commands-legacy/receive-packet.md
index e765176f3f62f1..e1bd79bfe1d14a 100644
--- a/docs/commands-legacy/receive-packet.md
+++ b/docs/commands-legacy/receive-packet.md
@@ -5,7 +5,7 @@ slug: /commands/receive-packet
displayed_sidebar: docs
---
-**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *stopChar* )
**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *numBytes* )
+**RECEIVE PACKET** ( {*docRef* : Time ;} *receiveVar* : Text, Blob ; *stopChar* : Text, Integer )
**RECEIVE PACKET** ( {*docRef* : Time ;} *receiveVar* : Text, Blob ; *numBytes* : Text, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -119,7 +119,7 @@ After a call to **RECEIVE PACKET**, the OK system variable is set to 1 if the pa
| | |
| --- | --- |
| Command number | 104 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/receive-record.md b/docs/commands-legacy/receive-record.md
index 1a7df53d6f29e4..9263828ec07d8c 100644
--- a/docs/commands-legacy/receive-record.md
+++ b/docs/commands-legacy/receive-record.md
@@ -5,7 +5,7 @@ slug: /commands/receive-record
displayed_sidebar: docs
---
-**RECEIVE RECORD** {( *aTable* )}
+**RECEIVE RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -157,7 +157,7 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK
| | |
| --- | --- |
| Command number | 79 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/receive-variable.md b/docs/commands-legacy/receive-variable.md
index 1e00b1ab65da95..fa6570816a380f 100644
--- a/docs/commands-legacy/receive-variable.md
+++ b/docs/commands-legacy/receive-variable.md
@@ -5,7 +5,7 @@ slug: /commands/receive-variable
displayed_sidebar: docs
---
-**RECEIVE VARIABLE** ( *variable* )
+**RECEIVE VARIABLE** ( *variable* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ The OK system variable is set to 1 if the variable is received. Otherwise, the O
| | |
| --- | --- |
| Command number | 81 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/record-number.md b/docs/commands-legacy/record-number.md
index 2b48947e6e8269..ef7fe40aadce8a 100644
--- a/docs/commands-legacy/record-number.md
+++ b/docs/commands-legacy/record-number.md
@@ -5,7 +5,7 @@ slug: /commands/record-number
displayed_sidebar: docs
---
-**Record number** {( *aTable* )} : Integer
+**Record number** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ The following example saves the current record number and then searches for any
| | |
| --- | --- |
| Command number | 243 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/records-in-selection.md b/docs/commands-legacy/records-in-selection.md
index 7781cf7225aafd..b6e6ef3dde9817 100644
--- a/docs/commands-legacy/records-in-selection.md
+++ b/docs/commands-legacy/records-in-selection.md
@@ -5,7 +5,7 @@ slug: /commands/records-in-selection
displayed_sidebar: docs
---
-**Records in selection** {( *aTable* )} : Integer
+**Records in selection** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ The following example shows a loop technique commonly used to move through all t
| | |
| --- | --- |
| Command number | 76 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/records-in-set.md b/docs/commands-legacy/records-in-set.md
index 01fed32bcf028a..561a9bcf4cbcb3 100644
--- a/docs/commands-legacy/records-in-set.md
+++ b/docs/commands-legacy/records-in-set.md
@@ -5,7 +5,7 @@ slug: /commands/records-in-set
displayed_sidebar: docs
---
-**Records in set** ( *set* ) : Integer
+**Records in set** ( *set* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ The following example displays an alert telling what percentage of the customers
| | |
| --- | --- |
| Command number | 195 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/records-in-table.md b/docs/commands-legacy/records-in-table.md
index 93268c321c7104..86291ff4c48e41 100644
--- a/docs/commands-legacy/records-in-table.md
+++ b/docs/commands-legacy/records-in-table.md
@@ -5,7 +5,7 @@ slug: /commands/records-in-table
displayed_sidebar: docs
---
-**Records in table** {( *aTable* )} : Integer
+**Records in table** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ The following example displays an alert that shows the number of records in a ta
| | |
| --- | --- |
| Command number | 83 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/redraw-window.md b/docs/commands-legacy/redraw-window.md
index 5b51888ffbe291..0c87a0019f7823 100644
--- a/docs/commands-legacy/redraw-window.md
+++ b/docs/commands-legacy/redraw-window.md
@@ -5,7 +5,7 @@ slug: /commands/redraw-window
displayed_sidebar: docs
---
-**REDRAW WINDOW** {( *window* )}
+**REDRAW WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If you omit the *window* parameter, REDRAW WINDOW applies to the frontmost windo
| | |
| --- | --- |
| Command number | 456 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/redraw.md b/docs/commands-legacy/redraw.md
index 951d83e7127359..37694c306cc9c6 100644
--- a/docs/commands-legacy/redraw.md
+++ b/docs/commands-legacy/redraw.md
@@ -5,7 +5,7 @@ slug: /commands/redraw
displayed_sidebar: docs
---
-**REDRAW** ( *object* )
+**REDRAW** ( *object* : any )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ In the context of list boxes in selection mode, when the REDRAW statement is app
| | |
| --- | --- |
| Command number | 174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/reduce-restore-window.md b/docs/commands-legacy/reduce-restore-window.md
index b65bfd07d5054b..91735e5b442114 100644
--- a/docs/commands-legacy/reduce-restore-window.md
+++ b/docs/commands-legacy/reduce-restore-window.md
@@ -5,7 +5,7 @@ slug: /commands/reduce-restore-window
displayed_sidebar: docs
---
-**REDUCE RESTORE WINDOW** ( *window* )
+**REDUCE RESTORE WINDOW** ( *window* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ The command toggles the window state:
| | |
| --- | --- |
| Command number | 1829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/reduce-selection.md b/docs/commands-legacy/reduce-selection.md
index 9f6a6244039d5b..dfc8789f137320 100644
--- a/docs/commands-legacy/reduce-selection.md
+++ b/docs/commands-legacy/reduce-selection.md
@@ -5,7 +5,7 @@ slug: /commands/reduce-selection
displayed_sidebar: docs
---
-**REDUCE SELECTION** ( {*aTable* ;} *number* )
+**REDUCE SELECTION** ( {*aTable* : Table ;} *number* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ The following example first finds the correct statistics for a worldwide contest
| | |
| --- | --- |
| Command number | 351 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/refresh-license.md b/docs/commands-legacy/refresh-license.md
index 527925a1d3ddc3..120a039ef98eb6 100644
--- a/docs/commands-legacy/refresh-license.md
+++ b/docs/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ You want to update your license and receive a message when it's completed:
| | |
| --- | --- |
| Command number | 1336 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/regenerate-missing-table.md b/docs/commands-legacy/regenerate-missing-table.md
index cec60d3e21dd1a..28cc0963f5b64a 100644
--- a/docs/commands-legacy/regenerate-missing-table.md
+++ b/docs/commands-legacy/regenerate-missing-table.md
@@ -5,7 +5,7 @@ slug: /commands/regenerate-missing-table
displayed_sidebar: docs
---
-**REGENERATE MISSING TABLE** ( *tableName* )
+**REGENERATE MISSING TABLE** ( *tableName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ This method regenerates all the missing tables that may be present in the databa
| | |
| --- | --- |
| Command number | 1126 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/register-client.md b/docs/commands-legacy/register-client.md
index 13ae8aed658440..f4ea8c2484bf9e 100644
--- a/docs/commands-legacy/register-client.md
+++ b/docs/commands-legacy/register-client.md
@@ -15,7 +15,7 @@ displayed_sidebar: docs
-**REGISTER CLIENT** ( *clientName* )
+**REGISTER CLIENT** ( *clientName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -131,7 +131,7 @@ If the 4D client is correctly registered, the OK system variable is equal to 1\.
| | |
| --- | --- |
| Command number | 648 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/register-data-key.md b/docs/commands-legacy/register-data-key.md
index f81dcdc953f3d9..4452b657f9e3cc 100644
--- a/docs/commands-legacy/register-data-key.md
+++ b/docs/commands-legacy/register-data-key.md
@@ -5,7 +5,7 @@ slug: /commands/register-data-key
displayed_sidebar: docs
---
-**Register data key** ( *curPassPhrase* ) : Boolean
**Register data key** ( *curDataKey* ) : Boolean
+**Register data key** ( *curPassPhrase* : Text, Object ) : Boolean
**Register data key** ( *curDataKey* : Text, Object ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ In the first parameter, pass the *curPassPhrase* or *curDataKey* that defines th
| | |
| --- | --- |
| Command number | 1638 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/reject-new-remote-connections.md b/docs/commands-legacy/reject-new-remote-connections.md
index 1454e1bfd4ecde..88c861cb98ec41 100644
--- a/docs/commands-legacy/reject-new-remote-connections.md
+++ b/docs/commands-legacy/reject-new-remote-connections.md
@@ -5,7 +5,7 @@ slug: /commands/reject-new-remote-connections
displayed_sidebar: docs
---
-**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* )
+**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ You want to reject or accept new client connections:
| | |
| --- | --- |
| Command number | 1635 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/reject.md b/docs/commands-legacy/reject.md
index d69d498a383c67..d00de7fb0b5114 100644
--- a/docs/commands-legacy/reject.md
+++ b/docs/commands-legacy/reject.md
@@ -5,7 +5,7 @@ slug: /commands/reject
displayed_sidebar: docs
---
-**REJECT** {( *aField* )}
+**REJECT** ({ *aField* : Field })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ The following example is part of an object method for an *\[Employees\]Salary* f
| | |
| --- | --- |
| Command number | 38 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/relate-many-selection.md b/docs/commands-legacy/relate-many-selection.md
index ecc528c59b62c3..4d250385575422 100644
--- a/docs/commands-legacy/relate-many-selection.md
+++ b/docs/commands-legacy/relate-many-selection.md
@@ -5,7 +5,7 @@ slug: /commands/relate-many-selection
displayed_sidebar: docs
---
-**RELATE MANY SELECTION** ( *aField* )
+**RELATE MANY SELECTION** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ This example selects all invoices made to the customers whose credit is greater
| | |
| --- | --- |
| Command number | 340 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/relate-many.md b/docs/commands-legacy/relate-many.md
index 2a43a3d565e4e3..cd3fe1ac0505c5 100644
--- a/docs/commands-legacy/relate-many.md
+++ b/docs/commands-legacy/relate-many.md
@@ -5,7 +5,7 @@ slug: /commands/relate-many
displayed_sidebar: docs
---
-**RELATE MANY** ( *oneTable* )
**RELATE MANY** ( *Field* )
+**RELATE MANY** ( *oneTable* : Table, Field )
**RELATE MANY** ( *Field* : Table, Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,7 +70,7 @@ Note that the RELATE MANY command is needed, even though the relations are autom
| | |
| --- | --- |
| Command number | 262 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current selection ||
diff --git a/docs/commands-legacy/relate-one-selection.md b/docs/commands-legacy/relate-one-selection.md
index cc8691ce497711..f3db28e80f3138 100644
--- a/docs/commands-legacy/relate-one-selection.md
+++ b/docs/commands-legacy/relate-one-selection.md
@@ -5,7 +5,7 @@ slug: /commands/relate-one-selection
displayed_sidebar: docs
---
-**RELATE ONE SELECTION** ( *manyTable* ; *oneTable* )
+**RELATE ONE SELECTION** ( *manyTable* : Table ; *oneTable* : Table )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ The following technique uses **RELATE ONE SELECTION** to accomplish the same res
| | |
| --- | --- |
| Command number | 349 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/relate-one.md b/docs/commands-legacy/relate-one.md
index 69ea11d19b595b..09c0666128888d 100644
--- a/docs/commands-legacy/relate-one.md
+++ b/docs/commands-legacy/relate-one.md
@@ -5,7 +5,7 @@ slug: /commands/relate-one
displayed_sidebar: docs
---
-**RELATE ONE** ( *manyTable* {; *choiceField*} )
**RELATE ONE** ( *field* {; *choiceField*} )
+**RELATE ONE** ( *manyTable* : Table, Field {; *choiceField* : Field} )
**RELATE ONE** ( *field* : Table, Field {; *choiceField* : Field} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -94,7 +94,7 @@ If the command has been executed correctly and if the related records have been
| | |
| --- | --- |
| Command number | 42 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/release-menu.md b/docs/commands-legacy/release-menu.md
index ec26e118d8f6d0..e568ed4c9ac299 100644
--- a/docs/commands-legacy/release-menu.md
+++ b/docs/commands-legacy/release-menu.md
@@ -5,7 +5,7 @@ slug: /commands/release-menu
displayed_sidebar: docs
---
-**RELEASE MENU** ( *menu* )
+**RELEASE MENU** ( *menu* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ This example shows different ways to use this command:
| | |
| --- | --- |
| Command number | 978 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/reload-external-data.md b/docs/commands-legacy/reload-external-data.md
index f99db3a50a123f..663a628d0e9b16 100644
--- a/docs/commands-legacy/reload-external-data.md
+++ b/docs/commands-legacy/reload-external-data.md
@@ -5,7 +5,7 @@ slug: /commands/reload-external-data
displayed_sidebar: docs
---
-**RELOAD EXTERNAL DATA** ( *aField* )
+**RELOAD EXTERNAL DATA** ( *aField* : Text, Blob, Picture, Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ You then need to reload the data using the **RELOAD EXTERNAL DATA** command to u
| | |
| --- | --- |
| Command number | 1135 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/reload-project.md b/docs/commands-legacy/reload-project.md
index 46bc44af25da78..0814a8a1602901 100644
--- a/docs/commands-legacy/reload-project.md
+++ b/docs/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ When the command is called from:
| | |
| --- | --- |
| Command number | 1739 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/remove-from-set.md b/docs/commands-legacy/remove-from-set.md
index e16df72d8c010d..e78239d31232cf 100644
--- a/docs/commands-legacy/remove-from-set.md
+++ b/docs/commands-legacy/remove-from-set.md
@@ -5,7 +5,7 @@ slug: /commands/remove-from-set
displayed_sidebar: docs
---
-**REMOVE FROM SET** ( {*aTable* ;} *set* )
+**REMOVE FROM SET** ( {*aTable* : Table ;} *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 561 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/remove-picture-from-library.md b/docs/commands-legacy/remove-picture-from-library.md
index 06fd5e4059b2c8..3d1742139ce945 100644
--- a/docs/commands-legacy/remove-picture-from-library.md
+++ b/docs/commands-legacy/remove-picture-from-library.md
@@ -5,7 +5,7 @@ slug: /commands/remove-picture-from-library
displayed_sidebar: docs
---
-**REMOVE PICTURE FROM LIBRARY** ( *picRef* )
**REMOVE PICTURE FROM LIBRARY** ( *picName* )
+**REMOVE PICTURE FROM LIBRARY** ( *picRef* : Integer, Text )
**REMOVE PICTURE FROM LIBRARY** ( *picName* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ The following example deletes from the Picture Library any pictures whose names
| | |
| --- | --- |
| Command number | 567 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/replace-string.md b/docs/commands-legacy/replace-string.md
index 5eeee54e8247cb..3280cf35223434 100644
--- a/docs/commands-legacy/replace-string.md
+++ b/docs/commands-legacy/replace-string.md
@@ -5,13 +5,13 @@ slug: /commands/replace-string
displayed_sidebar: docs
---
-**Replace string** ( *source* ; *oldString* ; *newString* {; *howMany*}{; *} ) : Text
+**Replace string** ( *source* : Text ; *oldString* : Text ; *newString* : Text {; *howMany* : Integer}{; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| source | Text | → | Original string |
-| oldText | Text | → | Characters to replace |
-| newText | Text | → | Replacement string (if empty string, occurrences are deleted) |
+| oldString | Text | → | Characters to replace |
+| newString | Text | → | Replacement string (if empty string, occurrences are deleted) |
| howMany | Integer | → | How many times to replace If omitted, all occurrences are replaced |
| * | Operator | → | If passed: evaluation based on character codes |
| Function result | Text | ← | Resulting string |
@@ -76,6 +76,6 @@ The following example illustrates the use of the \* parameter in the case of a d
| | |
| --- | --- |
| Command number | 233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/request.md b/docs/commands-legacy/request.md
index 8c11d459e90184..8964e364962723 100644
--- a/docs/commands-legacy/request.md
+++ b/docs/commands-legacy/request.md
@@ -5,7 +5,7 @@ slug: /commands/request
displayed_sidebar: docs
---
-**Request** ( *message* {; *defaultResponse* {; *OKButtonTitle* {; *CancelButtonTitle*}}} ) : Text
+**Request** ( *message* : Text {; *defaultResponse* : Text {; *OKButtonTitle* : Text {; *CancelButtonTitle* : Text}}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -84,7 +84,7 @@ will display the request dialog box (on Windows) shown here:
| | |
| --- | --- |
| Command number | 163 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/resize-form-window.md b/docs/commands-legacy/resize-form-window.md
index 57709e086122e4..caf6dd4d4e51f7 100644
--- a/docs/commands-legacy/resize-form-window.md
+++ b/docs/commands-legacy/resize-form-window.md
@@ -5,7 +5,7 @@ slug: /commands/resize-form-window
displayed_sidebar: docs
---
-**RESIZE FORM WINDOW** ( *width* ; *height* )
+**RESIZE FORM WINDOW** ( *width* : Integer ; *height* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ After execution of this line:
| | |
| --- | --- |
| Command number | 890 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/resolve-alias.md b/docs/commands-legacy/resolve-alias.md
index d7f350d9b86a05..0c5d9f59b107f1 100644
--- a/docs/commands-legacy/resolve-alias.md
+++ b/docs/commands-legacy/resolve-alias.md
@@ -5,7 +5,7 @@ slug: /commands/resolve-alias
displayed_sidebar: docs
---
-**RESOLVE ALIAS** ( *aliasPath* ; *targetPath* )
+**RESOLVE ALIAS** ( *aliasPath* : Text ; *targetPath* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -37,7 +37,7 @@ If *aliasPath* does specify an alias/shortcut, the OK system variable is set to
| | |
| --- | --- |
| Command number | 695 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/resolve-pointer.md b/docs/commands-legacy/resolve-pointer.md
index 6a4cfd55e705e5..b7868b0d40f7ca 100644
--- a/docs/commands-legacy/resolve-pointer.md
+++ b/docs/commands-legacy/resolve-pointer.md
@@ -5,7 +5,7 @@ slug: /commands/resolve-pointer
displayed_sidebar: docs
---
-**RESOLVE POINTER** ( *aPointer* ; *varName* ; *tableNum* ; *fieldNum* )
+**RESOLVE POINTER** ( *aPointer* : Pointer ; *varName* : Text ; *tableNum* : Integer ; *fieldNum* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -114,6 +114,6 @@ Here is an example of a 2D array pointer:
| | |
| --- | --- |
| Command number | 394 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/resource-list.md b/docs/commands-legacy/resource-list.md
index 13f0c3e6d8c1c6..c456280f2a6497 100644
--- a/docs/commands-legacy/resource-list.md
+++ b/docs/commands-legacy/resource-list.md
@@ -5,12 +5,12 @@ slug: /commands/resource-list
displayed_sidebar: docs
---
-**RESOURCE LIST** ( *resType* ; *resIDs* ; *resNames* {; *resFile*} )
+**RESOURCE LIST** ( *resType* : Text ; *resIDs* : Integer array ; *resNames* : Text array {; *resFile* : Time} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| resType | Text | → | 4-character resource type |
-| resIDs | Array integer | ← | Resource ID numbers for resources of this type |
+| resIDs | Integer array | ← | Resource ID numbers for resources of this type |
| resNames | Text array | ← | Resource names for resources of this type |
| resFile | Time | → | Resource file reference number, or all open resource files, if omitted |
@@ -75,6 +75,6 @@ The following example copies the picture resources present in all currently open
| | |
| --- | --- |
| Command number | 500 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/resource-type-list.md b/docs/commands-legacy/resource-type-list.md
index 3e1cca53f0e259..b3209e54becba9 100644
--- a/docs/commands-legacy/resource-type-list.md
+++ b/docs/commands-legacy/resource-type-list.md
@@ -5,7 +5,7 @@ slug: /commands/resource-type-list
displayed_sidebar: docs
---
-**RESOURCE TYPE LIST** ( *resTypes* {; *resFile*} )
+**RESOURCE TYPE LIST** ( *resTypes* : Text array {; *resFile* : Time} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -84,6 +84,6 @@ Once this project method is implemented in a database, you can write:
| | |
| --- | --- |
| Command number | 499 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/restart-4d.md b/docs/commands-legacy/restart-4d.md
index fc91520f1a7a31..fff62a75056350 100644
--- a/docs/commands-legacy/restart-4d.md
+++ b/docs/commands-legacy/restart-4d.md
@@ -5,7 +5,7 @@ slug: /commands/restart-4d
displayed_sidebar: docs
---
-**RESTART 4D** {( *time* {; *message*} )}
+**RESTART 4D** ({ *time* : Integer {; *message* : Text} })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,7 +40,7 @@ If the command is executed correctly, the OK system variable is set to 1; otherw
| | |
| --- | --- |
| Command number | 1292 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/restore-info.md b/docs/commands-legacy/restore-info.md
index 2d1b440791e2ab..26df7af928b1df 100644
--- a/docs/commands-legacy/restore-info.md
+++ b/docs/commands-legacy/restore-info.md
@@ -5,7 +5,7 @@ slug: /commands/restore-info
displayed_sidebar: docs
---
-**RESTORE INFO** ( *selector* ; *info1* ; *info2* )
+**RESTORE INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Text, Time )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The type and content of the *info1* and *info2* parameters depend on the value o
| | |
| --- | --- |
| Command number | 889 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/restore.md b/docs/commands-legacy/restore.md
index caf25bb0997714..bc9fbc9c60ccd6 100644
--- a/docs/commands-legacy/restore.md
+++ b/docs/commands-legacy/restore.md
@@ -5,7 +5,7 @@ slug: /commands/restore
displayed_sidebar: docs
---
-**RESTORE** {( *archivePath* {; *destFolderPath*} )}
+**RESTORE** ({ *archivePath* : Text {; *destFolderPath* : Text} })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ The RESTORE command modifies the value of the *OK* and *Document* variables: if
| | |
| --- | --- |
| Command number | 918 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/resume-indexes.md b/docs/commands-legacy/resume-indexes.md
index 47efbe104d8153..2a5aeec64f4c25 100644
--- a/docs/commands-legacy/resume-indexes.md
+++ b/docs/commands-legacy/resume-indexes.md
@@ -5,7 +5,7 @@ slug: /commands/resume-indexes
displayed_sidebar: docs
---
-**RESUME INDEXES** ( *aTable* {; *} )
+**RESUME INDEXES** ( *aTable* : Table {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D.
| | |
| --- | --- |
| Command number | 1294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/resume-process.md b/docs/commands-legacy/resume-process.md
index fd03ea9064873b..630cd0413b9527 100644
--- a/docs/commands-legacy/resume-process.md
+++ b/docs/commands-legacy/resume-process.md
@@ -5,7 +5,7 @@ slug: /commands/resume-process
displayed_sidebar: docs
---
-**RESUME PROCESS** ( *process* )
+**RESUME PROCESS** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,7 +31,7 @@ If *process* has been delayed before, see the [PAUSE PROCESS](pause-process.md)
| | |
| --- | --- |
| Command number | 320 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/resume-transaction.md b/docs/commands-legacy/resume-transaction.md
index b5c1f03b310dcd..b0ff0c970dea3c 100644
--- a/docs/commands-legacy/resume-transaction.md
+++ b/docs/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ For more information, please refer to the [Suspending transactions](../Develop-l
| | |
| --- | --- |
| Command number | 1386 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/right-click.md b/docs/commands-legacy/right-click.md
index 6efaef97561452..8db687a41f6728 100644
--- a/docs/commands-legacy/right-click.md
+++ b/docs/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ This command should be used only in the context of the On Clicked form event. It
| | |
| --- | --- |
| Command number | 712 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/round.md b/docs/commands-legacy/round.md
index 7bf93a2f2f5e8c..0df62ae4fd0493 100644
--- a/docs/commands-legacy/round.md
+++ b/docs/commands-legacy/round.md
@@ -5,7 +5,7 @@ slug: /commands/round
displayed_sidebar: docs
---
-**Round** ( *round* ; *places* ) : Real
+**Round** ( *round* : Real ; *places* : Integer ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ The following example illustrates how Round works with different arguments. Each
| | |
| --- | --- |
| Command number | 94 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/save-list.md b/docs/commands-legacy/save-list.md
index 17121d79461fdf..7091596e7f20cb 100644
--- a/docs/commands-legacy/save-list.md
+++ b/docs/commands-legacy/save-list.md
@@ -5,7 +5,7 @@ slug: /commands/save-list
displayed_sidebar: docs
---
-**SAVE LIST** ( *list* ; *listName* )
+**SAVE LIST** ( *list* : Integer ; *listName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ If there is already a list with this name, its contents are replaced.
| | |
| --- | --- |
| Command number | 384 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/save-record.md b/docs/commands-legacy/save-record.md
index 29aceec504465b..11ea970892c49b 100644
--- a/docs/commands-legacy/save-record.md
+++ b/docs/commands-legacy/save-record.md
@@ -5,7 +5,7 @@ slug: /commands/save-record
displayed_sidebar: docs
---
-**SAVE RECORD** {( *aTable* )}
+**SAVE RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ The following example is part of a method that reads records from a document. Th
| | |
| --- | --- |
| Command number | 53 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/save-related-one.md b/docs/commands-legacy/save-related-one.md
index 765a5dbde82bba..24101f6326098d 100644
--- a/docs/commands-legacy/save-related-one.md
+++ b/docs/commands-legacy/save-related-one.md
@@ -5,7 +5,7 @@ slug: /commands/save-related-one
displayed_sidebar: docs
---
-**SAVE RELATED ONE** ( *aField* )
+**SAVE RELATED ONE** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 43 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/save-set.md b/docs/commands-legacy/save-set.md
index 4f7344906df2a6..88e53ca5af790c 100644
--- a/docs/commands-legacy/save-set.md
+++ b/docs/commands-legacy/save-set.md
@@ -5,7 +5,7 @@ slug: /commands/save-set
displayed_sidebar: docs
---
-**SAVE SET** ( *set* ; *document* )
+**SAVE SET** ( *set* : Text ; *document* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,7 +47,7 @@ If the user clicks Cancel in the Save File dialog box, or if there is an error d
| | |
| --- | --- |
| Command number | 184 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/save-variables.md b/docs/commands-legacy/save-variables.md
index b555548fe68034..9a5a97544a68b9 100644
--- a/docs/commands-legacy/save-variables.md
+++ b/docs/commands-legacy/save-variables.md
@@ -5,7 +5,7 @@ slug: /commands/save-variables
displayed_sidebar: docs
---
-**SAVE VARIABLES** ( *document* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**SAVE VARIABLES** ( *document* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,7 +54,7 @@ If the variables are saved properly, the **OK** system variable is set to 1; oth
| | |
| --- | --- |
| Command number | 75 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/sax-add-processing-instruction.md b/docs/commands-legacy/sax-add-processing-instruction.md
index 740b1206420634..907981a29e1d1e 100644
--- a/docs/commands-legacy/sax-add-processing-instruction.md
+++ b/docs/commands-legacy/sax-add-processing-instruction.md
@@ -5,7 +5,7 @@ slug: /commands/sax-add-processing-instruction
displayed_sidebar: docs
---
-**SAX ADD PROCESSING INSTRUCTION** ( *document* ; *statement* )
+**SAX ADD PROCESSING INSTRUCTION** ( *document* : Time ; *statement* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,8 +34,8 @@ The following code:
... will write the following line in the document:
-```4d
-
+```xml
+
```
## System variables and sets
@@ -51,7 +51,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 857 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-add-xml-cdata.md b/docs/commands-legacy/sax-add-xml-cdata.md
index 17771966d7ff79..2dc0a629ff5845 100644
--- a/docs/commands-legacy/sax-add-xml-cdata.md
+++ b/docs/commands-legacy/sax-add-xml-cdata.md
@@ -5,7 +5,7 @@ slug: /commands/sax-add-xml-cdata
displayed_sidebar: docs
---
-**SAX ADD XML CDATA** ( *document* ; *data* )
+**SAX ADD XML CDATA** ( *document* : Time ; *data* : Blob, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -81,7 +81,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 856 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-add-xml-comment.md b/docs/commands-legacy/sax-add-xml-comment.md
index 0da1d6c8c2f1bf..ac82f314324022 100644
--- a/docs/commands-legacy/sax-add-xml-comment.md
+++ b/docs/commands-legacy/sax-add-xml-comment.md
@@ -5,7 +5,7 @@ slug: /commands/sax-add-xml-comment
displayed_sidebar: docs
---
-**SAX ADD XML COMMENT** ( *document* ; *comment* )
+**SAX ADD XML COMMENT** ( *document* : Time ; *comment* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,8 +31,8 @@ The following statement:
... will write the following line in the document:
-```4d
-
+```xml
+
```
## System variables and sets
@@ -52,7 +52,7 @@ In the event of an error, the command returns an error which can be intercepted
| | |
| --- | --- |
| Command number | 852 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-add-xml-doctype.md b/docs/commands-legacy/sax-add-xml-doctype.md
index d4796d8263ae00..c5c308185eec65 100644
--- a/docs/commands-legacy/sax-add-xml-doctype.md
+++ b/docs/commands-legacy/sax-add-xml-doctype.md
@@ -5,7 +5,7 @@ slug: /commands/sax-add-xml-doctype
displayed_sidebar: docs
---
-**SAX ADD XML DOCTYPE** ( *document* ; *docType* )
+**SAX ADD XML DOCTYPE** ( *document* : Time ; *docType* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,8 +31,8 @@ The following statement:
... will write the following line in the document:
-```4d
-
+```xml
+
```
## System variables and sets
@@ -52,7 +52,7 @@ In the event of an error, the the command returns an error which can be intercep
| | |
| --- | --- |
| Command number | 851 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-add-xml-element-value.md b/docs/commands-legacy/sax-add-xml-element-value.md
index 27bc05b4170024..9f6bf606a5ed87 100644
--- a/docs/commands-legacy/sax-add-xml-element-value.md
+++ b/docs/commands-legacy/sax-add-xml-element-value.md
@@ -5,7 +5,7 @@ slug: /commands/sax-add-xml-element-value
displayed_sidebar: docs
---
-**SAX ADD XML ELEMENT VALUE** ( *document* ; *data* {; *} )
+**SAX ADD XML ELEMENT VALUE** ( *document* : Time ; *data* : Text, Variable {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,7 +56,7 @@ If the command has been executed correctly, the system variable OK is set to 1;
| | |
| --- | --- |
| Command number | 855 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-close-xml-element.md b/docs/commands-legacy/sax-close-xml-element.md
index 5463789d4cad8b..0422e1e4352eeb 100644
--- a/docs/commands-legacy/sax-close-xml-element.md
+++ b/docs/commands-legacy/sax-close-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/sax-close-xml-element
displayed_sidebar: docs
---
-**SAX CLOSE XML ELEMENT** ( *document* )
+**SAX CLOSE XML ELEMENT** ( *document* : Time )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,8 +29,8 @@ If the last element opened is **, the following statement:
... will write the following line in the document:
-```4d
-
+```xml
+
```
## See also
@@ -43,6 +43,6 @@ If the last element opened is **, the following statement:
| | |
| --- | --- |
| Command number | 854 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sax-get-xml-cdata.md b/docs/commands-legacy/sax-get-xml-cdata.md
index 0f38cd5c47055d..6883262e6bb69a 100644
--- a/docs/commands-legacy/sax-get-xml-cdata.md
+++ b/docs/commands-legacy/sax-get-xml-cdata.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-cdata
displayed_sidebar: docs
---
-**SAX GET XML CDATA** ( *document* ; *value* )
+**SAX GET XML CDATA** ( *document* : Time ; *value* : Text, Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 878 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-get-xml-comment.md b/docs/commands-legacy/sax-get-xml-comment.md
index 9c7f7d0f5ee770..f90895ec50a760 100644
--- a/docs/commands-legacy/sax-get-xml-comment.md
+++ b/docs/commands-legacy/sax-get-xml-comment.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-comment
displayed_sidebar: docs
---
-**SAX GET XML COMMENT** ( *document* ; *comment* )
+**SAX GET XML COMMENT** ( *document* : Time ; *comment* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,7 +32,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 874 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-get-xml-document-values.md b/docs/commands-legacy/sax-get-xml-document-values.md
index 08b4de0e7e1874..f6a98dd5d4ac2b 100644
--- a/docs/commands-legacy/sax-get-xml-document-values.md
+++ b/docs/commands-legacy/sax-get-xml-document-values.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-document-values
displayed_sidebar: docs
---
-**SAX GET XML DOCUMENT VALUES** ( *document* ; *encoding* ; *version* ; *standalone* )
+**SAX GET XML DOCUMENT VALUES** ( *document* : Time ; *encoding* : Text ; *version* : Text ; *standalone* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -36,7 +36,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 873 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-get-xml-element-value.md b/docs/commands-legacy/sax-get-xml-element-value.md
index 625127dc53de5f..26d604fd89ed04 100644
--- a/docs/commands-legacy/sax-get-xml-element-value.md
+++ b/docs/commands-legacy/sax-get-xml-element-value.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-element-value
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT VALUE** ( *document* ; *value* )
+**SAX GET XML ELEMENT VALUE** ( *document* : Time ; *value* : Text, Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ If the command was executed correctly, the system variable OK is set to 1\. Othe
| | |
| --- | --- |
| Command number | 877 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-get-xml-element.md b/docs/commands-legacy/sax-get-xml-element.md
index a549d4b067d706..e1c488902f8d9d 100644
--- a/docs/commands-legacy/sax-get-xml-element.md
+++ b/docs/commands-legacy/sax-get-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-element
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT** ( *document* ; *name* ; *prefix* ; *attrNames* ; *attrValues* )
+**SAX GET XML ELEMENT** ( *document* : Time ; *name* : Text ; *prefix* : Text ; *attrNames* : Text array ; *attrValues* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 876 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sax-get-xml-entity.md b/docs/commands-legacy/sax-get-xml-entity.md
index 03cc8c54fd8af1..7259d472bf8b1a 100644
--- a/docs/commands-legacy/sax-get-xml-entity.md
+++ b/docs/commands-legacy/sax-get-xml-entity.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-entity
displayed_sidebar: docs
---
-**SAX GET XML ENTITY** ( *document* ; *name* ; *value* )
+**SAX GET XML ENTITY** ( *document* : Time ; *name* : Text ; *value* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,7 +54,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 879 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-get-xml-node.md b/docs/commands-legacy/sax-get-xml-node.md
index 3e43a3ab391357..a55bd10541056e 100644
--- a/docs/commands-legacy/sax-get-xml-node.md
+++ b/docs/commands-legacy/sax-get-xml-node.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-node
displayed_sidebar: docs
---
-**SAX Get XML node** ( *document* ) : Integer
+**SAX Get XML node** ( *document* : Time ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,7 +62,7 @@ If the command has been executed correctly, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 860 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sax-get-xml-processing-instruction.md b/docs/commands-legacy/sax-get-xml-processing-instruction.md
index a8aeb6aa47e564..e38c52526e9561 100644
--- a/docs/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/docs/commands-legacy/sax-get-xml-processing-instruction.md
@@ -5,7 +5,7 @@ slug: /commands/sax-get-xml-processing-instruction
displayed_sidebar: docs
---
-**SAX GET XML PROCESSING INSTRUCTION** ( *document* ; *name* ; *value* )
+**SAX GET XML PROCESSING INSTRUCTION** ( *document* : Time ; *name* : Text ; *value* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ The following instruction will return “PI” in *vName* and “TextProcess”
| | |
| --- | --- |
| Command number | 875 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sax-open-xml-element-arrays.md b/docs/commands-legacy/sax-open-xml-element-arrays.md
index c5ad454381a65e..e4e8902beb62bd 100644
--- a/docs/commands-legacy/sax-open-xml-element-arrays.md
+++ b/docs/commands-legacy/sax-open-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT ARRAYS** ( *document* ; *tag* {; *attribNamesArray* ; *attribValuesArray*} {; *attribNamesArray2* ; *attribValuesArray2* ; ... ; *attribNamesArrayN* ; *attribValuesArrayN*} )
+**SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *tag* : Text {; *attribNamesArray* : Text array ; *attribValuesArray* : Array} {; ...(*attribNamesArray* : Text array, *attribValuesArray* : Array)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| document | Time | → | Reference of open document |
| tag | Text | → | Name of element to open |
| attribNamesArray | Text array | → | Array of attribute names |
-| attribValuesArray | Text array, Array integer, Date array, Real array, Picture array, Boolean array | → | Array of attribute values |
+| attribValuesArray | Array | → | Array of attribute values |
@@ -22,7 +22,7 @@ displayed_sidebar: docs
Except for the support of arrays (see below), this command is identical to [SAX OPEN XML ELEMENT](sax-open-xml-element.md). Please refer to the description of this command for more information about its operation.
-**SAX OPEN XML ELEMENT ARRAYS** accepts arrays of the date, number, Boolean and picture type as *attribValuesArray* parameter(s). 4D automatically carries out the necessary conversions; you can configure these conversions using the [XML SET OPTIONS](xml-set-options.md) command.
+**SAX OPEN XML ELEMENT ARRAYS** accepts arrays of the text, date, number, Boolean and picture type as *attribValuesArray* parameter(s). 4D automatically carries out the necessary conversions; you can configure these conversions using the [XML SET OPTIONS](xml-set-options.md) command.
Optionally, the **SAX OPEN XML ELEMENT ARRAYS** command can be used to pass pairs of attributes and attribute values in the form of arrays in the *attribNamesArray* and *attribValuesArray* parameters.
@@ -60,6 +60,6 @@ The following method:
| | |
| --- | --- |
| Command number | 921 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sax-open-xml-element.md b/docs/commands-legacy/sax-open-xml-element.md
index f5c85022fbdc34..419817084e5983 100644
--- a/docs/commands-legacy/sax-open-xml-element.md
+++ b/docs/commands-legacy/sax-open-xml-element.md
@@ -5,7 +5,7 @@ slug: /commands/sax-open-xml-element
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT** ( *document* ; *tag* {; *attribName* ; *attribValue*} {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**SAX OPEN XML ELEMENT** ( *document* : Time ; *tag* : Text {; *attribName* : Text ; *attribValue* : Text} {; ...(*attribName* : Text, *attribValue* : Text)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,7 +58,7 @@ If an invalid character is passed in *tag*, an error is generated.
| | |
| --- | --- |
| Command number | 853 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/sax-set-xml-declaration.md b/docs/commands-legacy/sax-set-xml-declaration.md
index e1b47b5bfbeb33..eb5b9e955b5070 100644
--- a/docs/commands-legacy/sax-set-xml-declaration.md
+++ b/docs/commands-legacy/sax-set-xml-declaration.md
@@ -5,7 +5,7 @@ slug: /commands/sax-set-xml-declaration
displayed_sidebar: docs
---
-**SAX SET XML DECLARATION** ( *document* ; *encoding* {; *standalone*} )
+**SAX SET XML DECLARATION** ( *document* : Time ; *encoding* : Text {; *standalone* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following code:
| | |
| --- | --- |
| Command number | 858 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/scan-index.md b/docs/commands-legacy/scan-index.md
index f15ca17dc84d0a..7952df6b6d943c 100644
--- a/docs/commands-legacy/scan-index.md
+++ b/docs/commands-legacy/scan-index.md
@@ -5,7 +5,7 @@ slug: /commands/scan-index
displayed_sidebar: docs
---
-**SCAN INDEX** ( *aField* ; *number* {; > or <} )
+**SCAN INDEX** ( *aField* : Field ; *number* : Integer {; > or <} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ The following example mails letters to 50 of the worst customers and then to 50
| | |
| --- | --- |
| Command number | 350 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/screen-coordinates.md b/docs/commands-legacy/screen-coordinates.md
index ebc6cbba48e885..21c1b4ce106e63 100644
--- a/docs/commands-legacy/screen-coordinates.md
+++ b/docs/commands-legacy/screen-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/screen-coordinates
displayed_sidebar: docs
---
-**SCREEN COORDINATES** ( *left* ; *top* ; *right* ; *bottom* {; *screenID* {; *screenArea*}} )
+**SCREEN COORDINATES** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *screenID* : Integer {; *screenArea* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ The following images demonstrate the differences between the screen size and the
| | |
| --- | --- |
| Command number | 438 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/screen-depth.md b/docs/commands-legacy/screen-depth.md
index ef7ce676e2d57b..7dff604b9caf36 100644
--- a/docs/commands-legacy/screen-depth.md
+++ b/docs/commands-legacy/screen-depth.md
@@ -5,7 +5,7 @@ slug: /commands/screen-depth
displayed_sidebar: docs
---
-**SCREEN DEPTH** ( *depth* ; *color* {; *screen*} )
+**SCREEN DEPTH** ( *depth* : Integer ; *color* : Integer {; *screen* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ Your application displays many color graphics. Somewhere in your database, you c
| | |
| --- | --- |
| Command number | 439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/screen-height.md b/docs/commands-legacy/screen-height.md
index 6d180714ada173..bfd8b64a636887 100644
--- a/docs/commands-legacy/screen-height.md
+++ b/docs/commands-legacy/screen-height.md
@@ -5,7 +5,7 @@ slug: /commands/screen-height
displayed_sidebar: docs
---
-**Screen height** {( * )} : Integer
+**Screen height** ( * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ On Macintosh, Screen height returns the height of the main screen, the screen wh
| | |
| --- | --- |
| Command number | 188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/screen-width.md b/docs/commands-legacy/screen-width.md
index 9814b1761f7b66..98a3cee68dbadf 100644
--- a/docs/commands-legacy/screen-width.md
+++ b/docs/commands-legacy/screen-width.md
@@ -5,7 +5,7 @@ slug: /commands/screen-width
displayed_sidebar: docs
---
-**Screen width** {( * )} : Integer
+**Screen width** ( * ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ On Macintosh, Screen width returns the width of the main screen, the screen wher
| | |
| --- | --- |
| Command number | 187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/select-document.md b/docs/commands-legacy/select-document.md
index 03b520e8558d7e..6988bda7a4ed20 100644
--- a/docs/commands-legacy/select-document.md
+++ b/docs/commands-legacy/select-document.md
@@ -5,7 +5,7 @@ slug: /commands/select-document
displayed_sidebar: docs
---
-**Select document** ( *directory* ; *fileTypes* ; *title* ; *options* {; *selected*} ) : Text
+**Select document** ( *directory* : Text, Integer ; *fileTypes* : Text ; *title* : Text ; *options* : Integer {; *selected* : Text array} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,7 +102,7 @@ If no file was selected (for example, if the user clicked on the **Cancel** butt
| | |
| --- | --- |
| Command number | 905 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/select-folder.md b/docs/commands-legacy/select-folder.md
index a3dd1c001e507a..d38dd82aad11e5 100644
--- a/docs/commands-legacy/select-folder.md
+++ b/docs/commands-legacy/select-folder.md
@@ -5,7 +5,7 @@ slug: /commands/select-folder
displayed_sidebar: docs
---
-**Select folder** ( {*message* }{;}{ *defaultPath* {; *options*}} ) : Text
+**Select folder** ( {*message* : Text }{;}{ *defaultPath* : Text, Integer {; *options* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,7 +90,7 @@ The following example allows you to select the folder in which the pictures in t
| | |
| --- | --- |
| Command number | 670 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/select-list-items-by-position.md b/docs/commands-legacy/select-list-items-by-position.md
index b0423b949b4c35..a14a4ff611be7e 100644
--- a/docs/commands-legacy/select-list-items-by-position.md
+++ b/docs/commands-legacy/select-list-items-by-position.md
@@ -5,14 +5,14 @@ slug: /commands/select-list-items-by-position
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY POSITION** ( {* ;} *list* ; *itemPos* {; *positionsArray*} )
+**SELECT LIST ITEMS BY POSITION** ( {* ;} *list* : Integer, Text ; *itemPos* : Integer {; *positionsArray* : Integer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, list is an object name (string) If omitted, list is a list reference number |
| list | Integer, Text | → | List reference number (if * omitted), or Name of list type object (if * passed) |
| itemPos | Integer | → | Position of item in expanded/collapsed list(s) |
-| positionsArray | Array integer | → | Array of the positions in the expanded/collapsed list(s) |
+| positionsArray | Integer array | → | Array of the positions in the expanded/collapsed list(s) |
@@ -78,6 +78,6 @@ After execution of the following lines of code:
| | |
| --- | --- |
| Command number | 381 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/select-list-items-by-reference.md b/docs/commands-legacy/select-list-items-by-reference.md
index c16dd5ae896abd..e185def9ffe6bb 100644
--- a/docs/commands-legacy/select-list-items-by-reference.md
+++ b/docs/commands-legacy/select-list-items-by-reference.md
@@ -5,13 +5,13 @@ slug: /commands/select-list-items-by-reference
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY REFERENCE** ( *list* ; *itemRef* {; *refArray*} )
+**SELECT LIST ITEMS BY REFERENCE** ( *list* : Integer ; *itemRef* : Integer {; *refArray* : Integer array} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| list | Integer | → | List reference number |
| itemRef | Integer | → | Item reference number or 0 for the last item added to the list |
-| refArray | Array integer | → | Array of item reference numbers |
+| refArray | Integer array | → | Array of item reference numbers |
@@ -59,6 +59,6 @@ If you work with item reference numbers, be sure to build a list in which the it
| | |
| --- | --- |
| Command number | 630 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/select-rgb-color.md b/docs/commands-legacy/select-rgb-color.md
index d964b306a41790..0dbf0d17396505 100644
--- a/docs/commands-legacy/select-rgb-color.md
+++ b/docs/commands-legacy/select-rgb-color.md
@@ -5,7 +5,7 @@ slug: /commands/select-rgb-color
displayed_sidebar: docs
---
-**Select RGB color** {( *defaultColor* {; *message*} )} : Integer
+**Select RGB color** ( *defaultColor* : Integer {; *message* : Text} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ The effect of validating this dialog box differs depending on the platform:
| | |
| --- | --- |
| Command number | 956 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/selected-list-items.md b/docs/commands-legacy/selected-list-items.md
index 19dd30322bc024..8cd35465a939e7 100644
--- a/docs/commands-legacy/selected-list-items.md
+++ b/docs/commands-legacy/selected-list-items.md
@@ -5,13 +5,13 @@ slug: /commands/selected-list-items
displayed_sidebar: docs
---
-**Selected list items** ( {* ;} *list* {; *itemsArray* {; *}} ) : Integer
+**Selected list items** ( {* ;} *list* : Integer, Text {; *itemsArray* : Integer array {; *}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, list is an object name (string) If omitted, list is a list reference number |
| list | Integer, Text | → | List reference number (if * omitted), or Name of list type object (if * passed) |
-| itemsArray | Array integer | ← | If 2nd * omitted: Array contains the positions of selected items in the list(s) If 2nd * passed: Array contains the selected item references |
+| itemsArray | Integer array | ← | If 2nd * omitted: Array contains the positions of selected items in the list(s) If 2nd * passed: Array contains the selected item references |
| * | Operator | → | If omitted: Item position(s) If passed: Item reference(s) |
| Function result | Integer | ← | If 2nd * omitted: Position of current selected list item in expanded/collapsed list(s) If 2nd * passed: Reference of the selected item |
@@ -89,6 +89,6 @@ Here a list named *hList,* shown in the Application environment:
| | |
| --- | --- |
| Command number | 379 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/selected-record-number.md b/docs/commands-legacy/selected-record-number.md
index eb8c41770b133d..339e809939e181 100644
--- a/docs/commands-legacy/selected-record-number.md
+++ b/docs/commands-legacy/selected-record-number.md
@@ -5,7 +5,7 @@ slug: /commands/selected-record-number
displayed_sidebar: docs
---
-**Selected record number** {( *aTable* )} : Integer
+**Selected record number** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The following example saves the current selected record number in a variable:
| | |
| --- | --- |
| Command number | 246 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/selection-range-to-array.md b/docs/commands-legacy/selection-range-to-array.md
index 4df87e424c9131..f5160194461de7 100644
--- a/docs/commands-legacy/selection-range-to-array.md
+++ b/docs/commands-legacy/selection-range-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/selection-range-to-array
displayed_sidebar: docs
---
-**SELECTION RANGE TO ARRAY** ( *start* ; *end* ; *aField* ; *array*} {; aField2 ; *array2* ; ... ; aFieldN ; *arrayN*} )
**SELECTION RANGE TO ARRAY** ( *start* ; *end* ; *aTable* ; *array* {; aTable2 ; *array2* ; ... ; aTableN ; *arrayN*} )
+**SELECTION RANGE TO ARRAY** ( *start* : Integer ; *end* : Integer {; ...(*data* : Field, Table ; *array* : Array)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| start | Integer | → | Selected record number where data retrieval starts |
| end | Integer | → | Selected record number where data retrieval ends |
-| aField | aTable | Field, Table | → | Field to use for retrieving data or Table to use for retrieving record numbers |
+| data | Field, Table | → | Field to use for retrieving data or Table to use for retrieving record numbers |
| array | Array | ← | Array to receive field data or record numbers |
@@ -114,6 +114,6 @@ Use the first 50 current records of the \[Invoices\] table to load various array
| | |
| --- | --- |
| Command number | 368 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/selection-to-array.md b/docs/commands-legacy/selection-to-array.md
index 4b6c4ce1b7442a..c18c2e73e9c7fe 100644
--- a/docs/commands-legacy/selection-to-array.md
+++ b/docs/commands-legacy/selection-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/selection-to-array
displayed_sidebar: docs
---
-**SELECTION TO ARRAY** {( *aField* ; *array* {; *aField2* ; *array2* ; ... ; *aFieldN* ; *arrayN*}{; *})
**SELECTION TO ARRAY** {( *aTable* ; *array* {; *aField* ; *array* {; *aField2* ; *array2* ; ... ; *aFieldN* ; *arrayN*}}{; *})}
+**SELECTION TO ARRAY** ({ *aField* : Field ; *array* : Array {; ...(*aField* : Field, *array* : Array)}{; *})
**SELECTION TO ARRAY** ( *aTable* : Field, Table ; *array* : Array {; *aField* : Field ; *array* : Array {; ...(*aField* : Field, *array* : Array)}}{; *}})
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -85,6 +85,6 @@ The same example can be written:
| | |
| --- | --- |
| Command number | 260 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/selection-to-json.md b/docs/commands-legacy/selection-to-json.md
index d03c0f03087d91..4b26d0c1ca8748 100644
--- a/docs/commands-legacy/selection-to-json.md
+++ b/docs/commands-legacy/selection-to-json.md
@@ -5,7 +5,7 @@ slug: /commands/selection-to-json
displayed_sidebar: docs
---
-**Selection to JSON** ( *aTable* {; *aField*}{; *aField2* ; ... ; *aFieldN*}{; *template*}) : Text
+**Selection to JSON** ( *aTable* : Table {; *...aField* : Field}{; *template* : Object}) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -97,6 +97,6 @@ You can use the *template* syntax in order to export fields from different table
| | |
| --- | --- |
| Command number | 1234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/self.md b/docs/commands-legacy/self.md
index eb49a0d31cb578..336a183cf7bf77 100644
--- a/docs/commands-legacy/self.md
+++ b/docs/commands-legacy/self.md
@@ -44,6 +44,6 @@ See the example for the [RESOLVE POINTER](resolve-pointer.md) command.
| | |
| --- | --- |
| Command number | 308 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/semaphore.md b/docs/commands-legacy/semaphore.md
index e5a99744657ac1..e227acb0c55421 100644
--- a/docs/commands-legacy/semaphore.md
+++ b/docs/commands-legacy/semaphore.md
@@ -5,7 +5,7 @@ slug: /commands/semaphore
displayed_sidebar: docs
---
-**Semaphore** ( *semaphore* {; *tickCount*} ) : Boolean
+**Semaphore** ( *semaphore* : Text {; *tickCount* : Integer} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -156,6 +156,6 @@ Syntax:
| | |
| --- | --- |
| Command number | 143 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/send-message-to-remote-user.md b/docs/commands-legacy/send-message-to-remote-user.md
index 0c00bb3980b0ef..0728fe308d60f3 100644
--- a/docs/commands-legacy/send-message-to-remote-user.md
+++ b/docs/commands-legacy/send-message-to-remote-user.md
@@ -5,7 +5,7 @@ slug: /commands/send-message-to-remote-user
displayed_sidebar: docs
---
-**SEND MESSAGE TO REMOTE USER** ( *message* {; *userSession*} )
+**SEND MESSAGE TO REMOTE USER** ( *message* : Text {; *userSession* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ You want to send a message to all users, then send a message to a specific user:
| | |
| --- | --- |
| Command number | 1632 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/send-packet.md b/docs/commands-legacy/send-packet.md
index 452e8aa6bf76a1..5805f15b434060 100644
--- a/docs/commands-legacy/send-packet.md
+++ b/docs/commands-legacy/send-packet.md
@@ -5,7 +5,7 @@ slug: /commands/send-packet
displayed_sidebar: docs
---
-**SEND PACKET** ( {*docRef* ;} *packet* )
+**SEND PACKET** ( {*docRef* : Time ;} *packet* : Text, Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -87,6 +87,6 @@ This example illustrates the sending and retrieval of extended characters via a
| | |
| --- | --- |
| Command number | 103 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/send-record.md b/docs/commands-legacy/send-record.md
index 9a15c7a224893a..2f42d12a6b04e1 100644
--- a/docs/commands-legacy/send-record.md
+++ b/docs/commands-legacy/send-record.md
@@ -5,7 +5,7 @@ slug: /commands/send-record
displayed_sidebar: docs
---
-**SEND RECORD** {( *aTable* )}
+**SEND RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ See example for the [RECEIVE RECORD](receive-record.md) command.
| | |
| --- | --- |
| Command number | 78 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/send-variable.md b/docs/commands-legacy/send-variable.md
index 4a22b60b8952df..987e83d74bf451 100644
--- a/docs/commands-legacy/send-variable.md
+++ b/docs/commands-legacy/send-variable.md
@@ -5,7 +5,7 @@ slug: /commands/send-variable
displayed_sidebar: docs
---
-**SEND VARIABLE** ( *variable* )
+**SEND VARIABLE** ( *variable* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ See example for the [RECEIVE RECORD](receive-record.md) command.
| | |
| --- | --- |
| Command number | 80 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sequence-number.md b/docs/commands-legacy/sequence-number.md
index 30be5c961f24df..8068814785c676 100644
--- a/docs/commands-legacy/sequence-number.md
+++ b/docs/commands-legacy/sequence-number.md
@@ -5,7 +5,7 @@ slug: /commands/sequence-number
displayed_sidebar: docs
---
-**Sequence number** {( *aTable* )} : Integer
+**Sequence number** ( *aTable* : Table ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ The following example is part of a form method. It tests to see if this is a new
| | |
| --- | --- |
| Command number | 244 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-about.md b/docs/commands-legacy/set-about.md
index 0324fe208cf602..57a225ccb7bb3e 100644
--- a/docs/commands-legacy/set-about.md
+++ b/docs/commands-legacy/set-about.md
@@ -5,7 +5,7 @@ slug: /commands/set-about
displayed_sidebar: docs
---
-**SET ABOUT** ( *itemText* ; *method* )
+**SET ABOUT** ( *itemText* : Text ; *method* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ The following example resets the About 4D menu command:
| | |
| --- | --- |
| Command number | 316 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-application-color-scheme.md b/docs/commands-legacy/set-application-color-scheme.md
index b903325ad3eea4..dc58d3c45d98a3 100644
--- a/docs/commands-legacy/set-application-color-scheme.md
+++ b/docs/commands-legacy/set-application-color-scheme.md
@@ -5,7 +5,7 @@ slug: /commands/set-application-color-scheme
displayed_sidebar: docs
---
-**SET APPLICATION COLOR SCHEME** ( *colorScheme* )
+**SET APPLICATION COLOR SCHEME** ( *colorScheme* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ In the *colorScheme* parameter, pass a color scheme to apply:
| | |
| --- | --- |
| Command number | 1762 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-assert-enabled.md b/docs/commands-legacy/set-assert-enabled.md
index 698d97dda4b38d..0feec7fe356f51 100644
--- a/docs/commands-legacy/set-assert-enabled.md
+++ b/docs/commands-legacy/set-assert-enabled.md
@@ -5,7 +5,7 @@ slug: /commands/set-assert-enabled
displayed_sidebar: docs
---
-**SET ASSERT ENABLED** ( *assertions* {; *} )
+**SET ASSERT ENABLED** ( *assertions* : Boolean {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ Disabling assertions:
| | |
| --- | --- |
| Command number | 1131 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-automatic-relations.md b/docs/commands-legacy/set-automatic-relations.md
index 275adb3d682aec..8827aaa509d06c 100644
--- a/docs/commands-legacy/set-automatic-relations.md
+++ b/docs/commands-legacy/set-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/set-automatic-relations
displayed_sidebar: docs
---
-**SET AUTOMATIC RELATIONS** ( *one* {; *many*} )
+**SET AUTOMATIC RELATIONS** ( *one* : Boolean {; *many* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -50,6 +50,6 @@ The following example makes all manual Many-to-One relations automatic and rever
| | |
| --- | --- |
| Command number | 310 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-blob-size.md b/docs/commands-legacy/set-blob-size.md
index de849694ecfa46..fa788389c3d747 100644
--- a/docs/commands-legacy/set-blob-size.md
+++ b/docs/commands-legacy/set-blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/set-blob-size
displayed_sidebar: docs
---
-**SET BLOB SIZE** ( *blob* ; *size* {; *filler*} )
+**SET BLOB SIZE** ( *blob* : Blob ; *size* : Integer {; *filler* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB field or variable |
+| Blob | Blob | → | BLOB field or variable |
| size | Integer | → | New size of the BLOB |
| filler | Integer | → | ASCII code of filler character |
@@ -56,6 +56,6 @@ The following example creates a BLOB of 16K filled of 0xFF:
| | |
| --- | --- |
| Command number | 606 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-blobs-cache-priority.md b/docs/commands-legacy/set-blobs-cache-priority.md
index e88300c5fa8f42..56f3cf64f00874 100644
--- a/docs/commands-legacy/set-blobs-cache-priority.md
+++ b/docs/commands-legacy/set-blobs-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/set-blobs-cache-priority
displayed_sidebar: docs
---
-**SET BLOBS CACHE PRIORITY** ( *aTable* ; *priority* )
+**SET BLOBS CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ In the , you want to set a high priority for the \[Customer\] table "blobs" data
| | |
| --- | --- |
| Command number | 1425 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-cache-size.md b/docs/commands-legacy/set-cache-size.md
index f576695e97dabe..1b5315524ded86 100644
--- a/docs/commands-legacy/set-cache-size.md
+++ b/docs/commands-legacy/set-cache-size.md
@@ -5,7 +5,7 @@ slug: /commands/set-cache-size
displayed_sidebar: docs
---
-**SET CACHE SIZE** ( *size* {; *minFreeSize*} )
+**SET CACHE SIZE** ( *size* : Real {; *minFreeSize* : Real} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ You want to add 100 MB to the current database cache size. You can write:
| | |
| --- | --- |
| Command number | 1399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-channel.md b/docs/commands-legacy/set-channel.md
index 1d888c58fb44c3..dbcb1d92cadc59 100644
--- a/docs/commands-legacy/set-channel.md
+++ b/docs/commands-legacy/set-channel.md
@@ -172,7 +172,7 @@ See examples for the [RECEIVE BUFFER](receive-buffer.md), [SET TIMEOUT](set-time
| | |
| --- | --- |
| Command number | 77 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/set-current-printer.md b/docs/commands-legacy/set-current-printer.md
index 20b7c3132efd85..98199eaf737bd9 100644
--- a/docs/commands-legacy/set-current-printer.md
+++ b/docs/commands-legacy/set-current-printer.md
@@ -5,7 +5,7 @@ slug: /commands/set-current-printer
displayed_sidebar: docs
---
-**SET CURRENT PRINTER** ( *printerName* )
+**SET CURRENT PRINTER** ( *printerName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,7 +58,7 @@ Creation of a PDF document under Windows:
| | |
| --- | --- |
| Command number | 787 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-cursor.md b/docs/commands-legacy/set-cursor.md
index 417ab7e47bd447..9e0171e07f9c77 100644
--- a/docs/commands-legacy/set-cursor.md
+++ b/docs/commands-legacy/set-cursor.md
@@ -5,7 +5,7 @@ slug: /commands/set-cursor
displayed_sidebar: docs
---
-**SET CURSOR** {( *cursor* )}
+**SET CURSOR** ({ *cursor* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ You want the cursor to be displayed as a 
+**SET DATABASE LOCALIZATION** ( *languageCode* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,7 +75,7 @@ The interface of your application uses the static string ":xliff:shopping". The
| | |
| --- | --- |
| Command number | 1104 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-database-parameter.md b/docs/commands-legacy/set-database-parameter.md
index 4a555bb40666fb..a140c425c63d76 100644
--- a/docs/commands-legacy/set-database-parameter.md
+++ b/docs/commands-legacy/set-database-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/set-database-parameter
displayed_sidebar: docs
---
-**SET DATABASE PARAMETER** ( {*aTable* ;} *selector* ; *value* )
+**SET DATABASE PARAMETER** ( {*aTable* : Table ;} *selector* : Integer ; *value* : Real, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -1114,6 +1114,6 @@ You want to export data in JSON that contains a converted 4D date. Note that con
| | |
| --- | --- |
| Command number | 642 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-default-century.md b/docs/commands-legacy/set-default-century.md
index b0ab64a1d9b4ec..e79c7e650a1107 100644
--- a/docs/commands-legacy/set-default-century.md
+++ b/docs/commands-legacy/set-default-century.md
@@ -5,7 +5,7 @@ slug: /commands/set-default-century
displayed_sidebar: docs
---
-**SET DEFAULT CENTURY** ( *century* {; *pivotYear*} )
+**SET DEFAULT CENTURY** ( *century* : Integer {; *pivotYear* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ This command only affects data entry. It has no effect on date storage, computat
| | |
| --- | --- |
| Command number | 392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-document-position.md b/docs/commands-legacy/set-document-position.md
index f3dcec2f10d3ce..016f3c35cacdf1 100644
--- a/docs/commands-legacy/set-document-position.md
+++ b/docs/commands-legacy/set-document-position.md
@@ -5,7 +5,7 @@ slug: /commands/set-document-position
displayed_sidebar: docs
---
-**SET DOCUMENT POSITION** ( *docRef* ; *offset* {; *anchor*} )
+**SET DOCUMENT POSITION** ( *docRef* : Time ; *offset* : Real {; *anchor* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Depending on the anchor you can pass positive or negative values in *offset*.
| | |
| --- | --- |
| Command number | 482 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-document-properties.md b/docs/commands-legacy/set-document-properties.md
index b71233a8196bc3..ab1fb60c6373e0 100644
--- a/docs/commands-legacy/set-document-properties.md
+++ b/docs/commands-legacy/set-document-properties.md
@@ -5,7 +5,7 @@ slug: /commands/set-document-properties
displayed_sidebar: docs
---
-**SET DOCUMENT PROPERTIES** ( *document* ; *locked* ; *invisible* ; created on ; created at ; modified on ; modified at )
+**SET DOCUMENT PROPERTIES** ( *document* : Text ; *locked* : Boolean ; *invisible* : Boolean ; created on ; created at ; modified on ; modified at )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ The dates and times of creation and last modification are managed by the file ma
| | |
| --- | --- |
| Command number | 478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/set-document-size.md b/docs/commands-legacy/set-document-size.md
index c3dcdc2d20575e..f5e6f2d637f193 100644
--- a/docs/commands-legacy/set-document-size.md
+++ b/docs/commands-legacy/set-document-size.md
@@ -5,7 +5,7 @@ slug: /commands/set-document-size
displayed_sidebar: docs
---
-**SET DOCUMENT SIZE** ( *docRef* ; *size* )
+**SET DOCUMENT SIZE** ( *docRef* : Time ; *size* : Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ On Macintosh, the size of the document's data fork is changed.
| | |
| --- | --- |
| Command number | 480 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-drag-icon.md b/docs/commands-legacy/set-drag-icon.md
index d75f42fc76a87a..ba383daccbe6d8 100644
--- a/docs/commands-legacy/set-drag-icon.md
+++ b/docs/commands-legacy/set-drag-icon.md
@@ -5,7 +5,7 @@ slug: /commands/set-drag-icon
displayed_sidebar: docs
---
-**SET DRAG ICON** ( *icon* {; *horOffset* {; *vertOffset*}} )
+**SET DRAG ICON** ( *icon* : Picture {; *horOffset* : Integer {; *vertOffset* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ Note that you can modify the position of the cursor with respect to the picture:
| | |
| --- | --- |
| Command number | 1272 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-environment-variable.md b/docs/commands-legacy/set-environment-variable.md
index f718384f2090c4..d2e04a16f32422 100644
--- a/docs/commands-legacy/set-environment-variable.md
+++ b/docs/commands-legacy/set-environment-variable.md
@@ -5,7 +5,7 @@ slug: /commands/set-environment-variable
displayed_sidebar: docs
---
-**SET ENVIRONMENT VARIABLE** ( *varName* ; *varValue* )
+**SET ENVIRONMENT VARIABLE** ( *varName* : Text ; *varValue* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -23,7 +23,7 @@ This command is maintained for compatibility reasons only. It is now recommended
## Description
-The **SET ENVIRONMENT VARIABLE** command allows you to set the value of an environment variable under macOS and Windows. It is meant to be used with the [LAUNCH EXTERNAL PROCESS](launch-external-process.md) command. It also works with the [PHP Execute](php-execute.md) command.
+The **SET ENVIRONMENT VARIABLE** command allows you to set the value of an environment variable under macOS and Windows. It is meant to be used with the [LAUNCH EXTERNAL PROCESS](launch-external-process.md) command.
Pass the name of the variable to define in *varName* and its value in *varValue*.
@@ -48,6 +48,6 @@ Refer to examples of the [LAUNCH EXTERNAL PROCESS](launch-external-process.md) c
| | |
| --- | --- |
| Command number | 812 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-external-data-path.md b/docs/commands-legacy/set-external-data-path.md
index dac7a5ef0e0502..e291c1fcdaed13 100644
--- a/docs/commands-legacy/set-external-data-path.md
+++ b/docs/commands-legacy/set-external-data-path.md
@@ -5,7 +5,7 @@ slug: /commands/set-external-data-path
displayed_sidebar: docs
---
-**SET EXTERNAL DATA PATH** ( *aField* ; *path* )
+**SET EXTERNAL DATA PATH** ( *aField* : Text, Blob, Picture ; *path* : Text, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ You want to save an existing file in the picture field, stored outside of the da
| | |
| --- | --- |
| Command number | 1134 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-field-relation.md b/docs/commands-legacy/set-field-relation.md
index 4c585a32edaf30..d755e3c6535691 100644
--- a/docs/commands-legacy/set-field-relation.md
+++ b/docs/commands-legacy/set-field-relation.md
@@ -5,7 +5,7 @@ slug: /commands/set-field-relation
displayed_sidebar: docs
---
-**SET FIELD RELATION** ( *manyTable* ; *one* ; *many* )
**SET FIELD RELATION** ( *field* ; *one* ; *many* )
+**SET FIELD RELATION** ( *manyTable* : Table, Field ; *one* : Integer ; *many* : Integer )
**SET FIELD RELATION** ( *field* : Table, Field ; *one* : Integer ; *many* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,7 +60,7 @@ The following code allows setting only useful relations as automatic in the Quic
| | |
| --- | --- |
| Command number | 919 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-field-titles.md b/docs/commands-legacy/set-field-titles.md
index fd5c66c4b06a68..974356445b8358 100644
--- a/docs/commands-legacy/set-field-titles.md
+++ b/docs/commands-legacy/set-field-titles.md
@@ -5,13 +5,13 @@ slug: /commands/set-field-titles
displayed_sidebar: docs
---
-**SET FIELD TITLES** ( *aTable* ; *fieldTitles* ; *fieldNumbers* {; *} )
+**SET FIELD TITLES** ( *aTable* : Table ; *fieldTitles* : Text array ; *fieldNumbers* : Integer array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| aTable | Table | → | Table for which to set the field titles |
| fieldTitles | Text array | → | Field names as they must appear in dialog boxes |
-| fieldNumbers | Array integer | → | Actual field numbers |
+| fieldNumbers | Integer array | → | Actual field numbers |
| * | Operator | → | Use the custom names in the formula editor |
@@ -64,6 +64,6 @@ See example for the [SET TABLE TITLES](set-table-titles.md) command.
| | |
| --- | --- |
| Command number | 602 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-field-value-null.md b/docs/commands-legacy/set-field-value-null.md
index 9a4caac0ffbddb..4b51b942c5f16e 100644
--- a/docs/commands-legacy/set-field-value-null.md
+++ b/docs/commands-legacy/set-field-value-null.md
@@ -5,7 +5,7 @@ slug: /commands/set-field-value-null
displayed_sidebar: docs
---
-**SET FIELD VALUE NULL** ( *aField* )
+**SET FIELD VALUE NULL** ( *aField* : Field )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ The NULL value is used by the SQL kernel of 4D. For more information, please ref
| | |
| --- | --- |
| Command number | 965 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-file-to-pasteboard.md b/docs/commands-legacy/set-file-to-pasteboard.md
index efaaaa381f785d..f5bd686e4153fd 100644
--- a/docs/commands-legacy/set-file-to-pasteboard.md
+++ b/docs/commands-legacy/set-file-to-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/set-file-to-pasteboard
displayed_sidebar: docs
---
-**SET FILE TO PASTEBOARD** ( *file* {; *} )
+**SET FILE TO PASTEBOARD** ( *file* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ The command accepts the star *\** as an optional parameter. By default, when thi
| | |
| --- | --- |
| Command number | 975 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-group-access.md b/docs/commands-legacy/set-group-access.md
index e49484e481d935..9f71d549a29c8a 100644
--- a/docs/commands-legacy/set-group-access.md
+++ b/docs/commands-legacy/set-group-access.md
@@ -5,7 +5,7 @@ slug: /commands/set-group-access
displayed_sidebar: docs
---
-**SET GROUP ACCESS** {( *groups* )}
+**SET GROUP ACCESS** ({ *groups* : Collection })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,7 +49,7 @@ You want to promote the current user to the "admin" and "plugins" groups for the
| | |
| --- | --- |
| Command number | 1737 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-group-properties.md b/docs/commands-legacy/set-group-properties.md
index cd7f28917fe405..94b6175ee0a406 100644
--- a/docs/commands-legacy/set-group-properties.md
+++ b/docs/commands-legacy/set-group-properties.md
@@ -5,15 +5,14 @@ slug: /commands/set-group-properties
displayed_sidebar: docs
---
-**Set group properties** ( *groupID* ; *name* ; *owner* {; *members*} ) : Integer
+**Set group properties** ( *groupID* : Integer ; *name* : Text ; *owner* : Integer {; *members* : Integer array} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| groupID | Integer | → | Unique ID number of group, -1 for adding a group |
-| ← | Unique ID number of added group (if any) |
+| groupID | Integer | ↔ | *in:* Unique ID number of group, -1 for adding a group
*out:* Unique ID number of added group (if any)|
| name | Text | → | New group name |
| owner | Integer | → | User ID number of new group owner (Binary databases only) |
-| members | Array integer | → | New group members |
+| members | Integer array | → | New group members |
| Function result | Integer | ← | Unique ID number of new group |
@@ -62,7 +61,7 @@ If you do not have the proper access privileges for calling Set group properties
| | |
| --- | --- |
| Command number | 614 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
diff --git a/docs/commands-legacy/set-help-menu.md b/docs/commands-legacy/set-help-menu.md
index d00afa9c60214d..ee2dd83d0159f1 100644
--- a/docs/commands-legacy/set-help-menu.md
+++ b/docs/commands-legacy/set-help-menu.md
@@ -5,7 +5,7 @@ slug: /commands/set-help-menu
displayed_sidebar: docs
---
-**SET HELP MENU** ( *menuCol* )
+**SET HELP MENU** ( *menuCol* : Collection )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ You want to customize the **Help** menu for your application:
| | |
| --- | --- |
| Command number | 1801 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-index-cache-priority.md b/docs/commands-legacy/set-index-cache-priority.md
index 146b6f47d25cd4..7dc4979b80d8c5 100644
--- a/docs/commands-legacy/set-index-cache-priority.md
+++ b/docs/commands-legacy/set-index-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/set-index-cache-priority
displayed_sidebar: docs
---
-**SET INDEX CACHE PRIORITY** ( *aField* ; *priority* )
+**SET INDEX CACHE PRIORITY** ( *aField* : Field ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ In the , you want to set a high priority for the \[Customer\]LastName field inde
| | |
| --- | --- |
| Command number | 1401 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-index.md b/docs/commands-legacy/set-index.md
index d0478b783c7eef..2cbc1899f8479b 100644
--- a/docs/commands-legacy/set-index.md
+++ b/docs/commands-legacy/set-index.md
@@ -5,7 +5,7 @@ slug: /commands/set-index
displayed_sidebar: docs
---
-**SET INDEX** ( *aField* ; *index* {; *} )
+**SET INDEX** ( *aField* : Field ; *index* : Boolean, Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -94,6 +94,6 @@ Creation of a keywords index:
| | |
| --- | --- |
| Command number | 344 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-list-item-font.md b/docs/commands-legacy/set-list-item-font.md
index 9b1cfa29ba387a..90b6d54a6f666f 100644
--- a/docs/commands-legacy/set-list-item-font.md
+++ b/docs/commands-legacy/set-list-item-font.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-item-font
displayed_sidebar: docs
---
-**SET LIST ITEM FONT** ( {* ;} *list* ; *itemRef* ; *font* )
**SET LIST ITEM FONT** ( * ; *list* ; * ; *font* )
+**SET LIST ITEM FONT** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer, Operator ; *font* : Text, Integer )
**SET LIST ITEM FONT** ( * ; *list* : Integer, Text ; * ; *font* : Text, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Apply the Times font to the current item of the list:
| | |
| --- | --- |
| Command number | 953 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-list-item-icon.md b/docs/commands-legacy/set-list-item-icon.md
index d847dddefeb666..96762951859ac6 100644
--- a/docs/commands-legacy/set-list-item-icon.md
+++ b/docs/commands-legacy/set-list-item-icon.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-item-icon
displayed_sidebar: docs
---
-**SET LIST ITEM ICON** ( {* ;} *list* ; *itemRef* ; *icon* )
**SET LIST ITEM ICON** ( * ; *list* ; * ; *icon* )
+**SET LIST ITEM ICON** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer, Operator ; *icon* : Picture )
**SET LIST ITEM ICON** ( * ; *list* : Integer, Text ; * ; *icon* : Picture )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ We want to assign the same picture to two different items. The following code is
| | |
| --- | --- |
| Command number | 950 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-list-item-parameter.md b/docs/commands-legacy/set-list-item-parameter.md
index ff3c7f3b98f787..b5cc1c2b9a8a67 100644
--- a/docs/commands-legacy/set-list-item-parameter.md
+++ b/docs/commands-legacy/set-list-item-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-item-parameter
displayed_sidebar: docs
---
-**SET LIST ITEM PARAMETER** ( {* ;} *list* ; *itemRef* ; *selector* ; *value* )
**SET LIST ITEM PARAMETER** ( * ; *list* ; * ; *selector* ; *value* )
+**SET LIST ITEM PARAMETER** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ; *selector* : Text ; *value* : Text, Boolean, Real )
**SET LIST ITEM PARAMETER** ( * ; *list* : Integer, Text ; * ; *selector* : Text ; *value* : Text, Boolean, Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ You want to set as choice list of a hierarchical pop up menu a custom list of fo
| | |
| --- | --- |
| Command number | 986 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-list-item-properties.md b/docs/commands-legacy/set-list-item-properties.md
index e943e1f319feb6..bc6311f3b4b9ec 100644
--- a/docs/commands-legacy/set-list-item-properties.md
+++ b/docs/commands-legacy/set-list-item-properties.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-item-properties
displayed_sidebar: docs
---
-**SET LIST ITEM PROPERTIES** ( {* ;} *list* ; *itemRef* ; *enterable* ; *styles* {; *icon* {; *color*}} )
**SET LIST ITEM PROPERTIES** ( * ; *list* ; * ; *enterable* ; *styles* {; *icon* {; *color*}} )
+**SET LIST ITEM PROPERTIES** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ; *enterable* : Boolean ; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}} )
**SET LIST ITEM PROPERTIES** ( * ; *list* : Integer, Text ; * ; *enterable* : Boolean ; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -83,6 +83,6 @@ The following example changes the text of the current item of *list* to bold and
| | |
| --- | --- |
| Command number | 386 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-list-item.md b/docs/commands-legacy/set-list-item.md
index e214887699eff5..4fe192a29a3ed2 100644
--- a/docs/commands-legacy/set-list-item.md
+++ b/docs/commands-legacy/set-list-item.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-item
displayed_sidebar: docs
---
-**SET LIST ITEM** ( {* ;} *list* ; *itemRef* ; *newItemText* ; *newItemRef* {; *sublist* ; *expanded*} )
**SET LIST ITEM** ( * ; *list* ; * ; *newItemText* ; *newItemRef* {; *sublist* ; *expanded*} )
+**SET LIST ITEM** ( {* ;} *list* : Integer, Text ; *itemRef* : Operator, Integer ; *newItemText* : Text ; *newItemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
**SET LIST ITEM** ( * ; *list* : Integer, Text ; * ; *newItemText* : Text ; *newItemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -83,6 +83,6 @@ See example for the [APPEND TO LIST](append-to-list.md) command.
| | |
| --- | --- |
| Command number | 385 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-list-properties.md b/docs/commands-legacy/set-list-properties.md
index f5a678f098c84b..75b841df4854af 100644
--- a/docs/commands-legacy/set-list-properties.md
+++ b/docs/commands-legacy/set-list-properties.md
@@ -5,7 +5,7 @@ slug: /commands/set-list-properties
displayed_sidebar: docs
---
-**SET LIST PROPERTIES** ( *list* ; *appearance* {; *icon* {; *lineHeight* {; *doubleClick* {; *multiSelections* {; *editable*}}}}} )
+**SET LIST PROPERTIES** ( *list* : Integer ; *appearance* : Integer {; *icon* : Integer {; *lineHeight* : Integer {; *doubleClick* : Integer {; *multiSelections* : Integer {; *editable* : Integer}}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ You want to disallow the expand/collapse sublist on double-click. You can write
| | |
| --- | --- |
| Command number | 387 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-macro-parameter.md b/docs/commands-legacy/set-macro-parameter.md
index 8e5f7fa8dd36fc..9ebfbfd67a9e6f 100644
--- a/docs/commands-legacy/set-macro-parameter.md
+++ b/docs/commands-legacy/set-macro-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/set-macro-parameter
displayed_sidebar: docs
---
-**SET MACRO PARAMETER** ( *selector* ; *textParam* )
+**SET MACRO PARAMETER** ( *selector* : Integer ; *textParam* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ This macro builds a new text that will be returned to the calling method:
| | |
| --- | --- |
| Command number | 998 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-bar.md b/docs/commands-legacy/set-menu-bar.md
index 3dac6562dba140..07a4e6d9441768 100644
--- a/docs/commands-legacy/set-menu-bar.md
+++ b/docs/commands-legacy/set-menu-bar.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-bar
displayed_sidebar: docs
---
-**SET MENU BAR** ( *menuBar* {; *process*}{; *} )
+**SET MENU BAR** ( *menuBar* : Integer, Text, Text {; *process* : Integer}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -124,6 +124,6 @@ In this comprehensive example, we will create, by programming, a menu bar includ
| | |
| --- | --- |
| Command number | 67 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-item-icon.md b/docs/commands-legacy/set-menu-item-icon.md
index a17163e13fb476..7232d353a65584 100644
--- a/docs/commands-legacy/set-menu-item-icon.md
+++ b/docs/commands-legacy/set-menu-item-icon.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-icon
displayed_sidebar: docs
---
-**SET MENU ITEM ICON** ( *menu* ; *menuItem* ; *iconRef* {; *process*} )
+**SET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *iconRef* : Text, Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Use of a picture located in the Resources folder of the database:
| | |
| --- | --- |
| Command number | 984 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-item-mark.md b/docs/commands-legacy/set-menu-item-mark.md
index 7e56924c7519a2..301fa4d015ba1d 100644
--- a/docs/commands-legacy/set-menu-item-mark.md
+++ b/docs/commands-legacy/set-menu-item-mark.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-mark
displayed_sidebar: docs
---
-**SET MENU ITEM MARK** ( *menu* ; *menuItem* ; *mark* {; *process*} )
+**SET MENU ITEM MARK** ( *menu* : Integer, Text ; *menuItem* : Integer ; *mark* : Text {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ See example for the [Get menu item mark](get-menu-item-mark.md) command.
| | |
| --- | --- |
| Command number | 208 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-menu-item-method.md b/docs/commands-legacy/set-menu-item-method.md
index 9f56a61979e37e..333969d7666848 100644
--- a/docs/commands-legacy/set-menu-item-method.md
+++ b/docs/commands-legacy/set-menu-item-method.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-method
displayed_sidebar: docs
---
-**SET MENU ITEM METHOD** ( *menu* ; *menuItem* ; *methodName* {; *process*} )
+**SET MENU ITEM METHOD** ( *menu* : Integer, Text ; *menuItem* : Integer ; *methodName* : Text {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ Refer to the example of the [SET MENU BAR](set-menu-bar.md) command.
| | |
| --- | --- |
| Command number | 982 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-item-parameter.md b/docs/commands-legacy/set-menu-item-parameter.md
index 5007dc4105c8fd..6132f073ab3a6e 100644
--- a/docs/commands-legacy/set-menu-item-parameter.md
+++ b/docs/commands-legacy/set-menu-item-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-parameter
displayed_sidebar: docs
---
-**SET MENU ITEM PARAMETER** ( *menu* ; *menuItem* ; *param* )
+**SET MENU ITEM PARAMETER** ( *menu* : Integer, Text ; *menuItem* : Integer ; *param* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ This code provides a menu including the names of the open windows and lets you g
| | |
| --- | --- |
| Command number | 1004 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-item-property.md b/docs/commands-legacy/set-menu-item-property.md
index fcbf05ecb55172..ea56ce9559ee8e 100644
--- a/docs/commands-legacy/set-menu-item-property.md
+++ b/docs/commands-legacy/set-menu-item-property.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-property
displayed_sidebar: docs
---
-**SET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *property* ; *value* {; *process*} )
+**SET MENU ITEM PROPERTY** ( *menu* : Integer, Text ; *menuItem* : Integer ; *property* : Text ; *value* : Text, Real, Boolean {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| menu | Integer, Text | → | Menu reference or menu number |
| menuItem | Integer | → | Number of menu item or -1 for the last item added to the menu |
| property | Text | → | Property type |
-| value | Text, Number, Boolean | → | Property value |
+| value | Text, Real, Boolean | → | Property value |
| process | Integer | → | Process number |
@@ -67,6 +67,6 @@ In the case of the Associated standard action property, you can pass in the *val
| | |
| --- | --- |
| Command number | 973 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-menu-item-shortcut.md b/docs/commands-legacy/set-menu-item-shortcut.md
index 0e23d14fc2a6f8..406392588e505f 100644
--- a/docs/commands-legacy/set-menu-item-shortcut.md
+++ b/docs/commands-legacy/set-menu-item-shortcut.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-shortcut
displayed_sidebar: docs
---
-**SET MENU ITEM SHORTCUT** ( *menu* ; *menuItem* ; *itemKey* ; *modifiers* {; *process*} )
+**SET MENU ITEM SHORTCUT** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemKey* : Text, Integer ; *modifiers* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -82,7 +82,7 @@ Definition of the F4 shortcut for the "Close" menu item:
| | |
| --- | --- |
| Command number | 423 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-menu-item-style.md b/docs/commands-legacy/set-menu-item-style.md
index 3de3ab275b5179..0f963eccb6a82f 100644
--- a/docs/commands-legacy/set-menu-item-style.md
+++ b/docs/commands-legacy/set-menu-item-style.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item-style
displayed_sidebar: docs
---
-**SET MENU ITEM STYLE** ( *menu* ; *menuItem* ; *itemStyle* {; *process*} )
+**SET MENU ITEM STYLE** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemStyle* : Integer {; *process* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ You specify the font style of the item in the *itemStyle* parameter. You pass a
| | |
| --- | --- |
| Command number | 425 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-menu-item.md b/docs/commands-legacy/set-menu-item.md
index dde88faee2d084..4da49f92b1d4dc 100644
--- a/docs/commands-legacy/set-menu-item.md
+++ b/docs/commands-legacy/set-menu-item.md
@@ -5,7 +5,7 @@ slug: /commands/set-menu-item
displayed_sidebar: docs
---
-**SET MENU ITEM** ( *menu* ; *menuItem* ; *itemText* {; *process*}{; *} )
+**SET MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemText* : Text {; *process* : Integer}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ If you omit the *process* parameter, SET MENU ITEM applies to the menu bar for t
| | |
| --- | --- |
| Command number | 348 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-picture-file-name.md b/docs/commands-legacy/set-picture-file-name.md
index 553b9c0a6bb593..a590acb821a32f 100644
--- a/docs/commands-legacy/set-picture-file-name.md
+++ b/docs/commands-legacy/set-picture-file-name.md
@@ -5,7 +5,7 @@ slug: /commands/set-picture-file-name
displayed_sidebar: docs
---
-**SET PICTURE FILE NAME** ( *picture* ; *fileName* )
+**SET PICTURE FILE NAME** ( *picture* : Picture, Picture ; *fileName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ The default name is used as the file name when the picture is exported in a disk
| | |
| --- | --- |
| Command number | 1172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-picture-metadata.md b/docs/commands-legacy/set-picture-metadata.md
index 4f6319944f0a02..ce0934dfe737ca 100644
--- a/docs/commands-legacy/set-picture-metadata.md
+++ b/docs/commands-legacy/set-picture-metadata.md
@@ -5,7 +5,7 @@ slug: /commands/set-picture-metadata
displayed_sidebar: docs
---
-**SET PICTURE METADATA** ( *picture* ; *metaName* ; *metaContents* {; *metaName2* ; *metaContents2* ; ... ; *metaNameN* ; *metaContentsN*} )
+**SET PICTURE METADATA** ( *picture* : Picture ; *metaName* : Text ; *metaContents* : Variable {; ...(*metaName* : Text, *metaContents* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -87,7 +87,7 @@ When all the metadata are handled via a DOM element reference, the tags are stor
| | |
| --- | --- |
| Command number | 1121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-picture-to-library.md b/docs/commands-legacy/set-picture-to-library.md
index 674639db6adce4..03885aa22a278c 100644
--- a/docs/commands-legacy/set-picture-to-library.md
+++ b/docs/commands-legacy/set-picture-to-library.md
@@ -5,7 +5,7 @@ slug: /commands/set-picture-to-library
displayed_sidebar: docs
---
-**SET PICTURE TO LIBRARY** ( *picture* ; *picRef* ; *picName* )
+**SET PICTURE TO LIBRARY** ( *picture* : Picture ; *picRef* : Integer ; *picName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -104,7 +104,7 @@ If there is not enough memory to add the picture to the Picture Library, an erro
| | |
| --- | --- |
| Command number | 566 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | error |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-picture-to-pasteboard.md b/docs/commands-legacy/set-picture-to-pasteboard.md
index 8675d15a6b44d1..10868dd6740e48 100644
--- a/docs/commands-legacy/set-picture-to-pasteboard.md
+++ b/docs/commands-legacy/set-picture-to-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/set-picture-to-pasteboard
displayed_sidebar: docs
---
-**SET PICTURE TO PASTEBOARD** ( *picture* )
+**SET PICTURE TO PASTEBOARD** ( *picture* : Picture )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ If there is not enough memory to paste the picture into the pasteboard, the OK v
| | |
| --- | --- |
| Command number | 521 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-plugin-access.md b/docs/commands-legacy/set-plugin-access.md
index 0f88b91299f972..5d937ac869bfb9 100644
--- a/docs/commands-legacy/set-plugin-access.md
+++ b/docs/commands-legacy/set-plugin-access.md
@@ -5,7 +5,7 @@ slug: /commands/set-plugin-access
displayed_sidebar: docs
---
-**SET PLUGIN ACCESS** ( *plugIn* ; *group* )
+**SET PLUGIN ACCESS** ( *plugIn* : Integer ; *group* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Pass the name of the group whose users are authorized to use the plug-in in *gro
| | |
| --- | --- |
| Command number | 845 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-print-marker.md b/docs/commands-legacy/set-print-marker.md
index 193c36d24c4f27..9a94fc6f74be93 100644
--- a/docs/commands-legacy/set-print-marker.md
+++ b/docs/commands-legacy/set-print-marker.md
@@ -5,7 +5,7 @@ slug: /commands/set-print-marker
displayed_sidebar: docs
---
-**SET PRINT MARKER** ( *markNum* ; *position* {; *} )
+**SET PRINT MARKER** ( *markNum* : Integer ; *position* : Integer {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -185,6 +185,6 @@ The Print\_List3 form method is as follows:
| | |
| --- | --- |
| Command number | 709 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-print-option.md b/docs/commands-legacy/set-print-option.md
index 6af37c12f1c456..1a62fb002e3e54 100644
--- a/docs/commands-legacy/set-print-option.md
+++ b/docs/commands-legacy/set-print-option.md
@@ -5,7 +5,7 @@ slug: /commands/set-print-option
displayed_sidebar: docs
---
-**SET PRINT OPTION** ( *option* ; *value1* {; *value2*} )
+**SET PRINT OPTION** ( *option* : Integer ; *value1* : Integer, Text {; *value2* : Integer, Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -84,7 +84,7 @@ If the value passed for an *option* is invalid or if it is not available on the
| | |
| --- | --- |
| Command number | 733 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/set-print-preview.md b/docs/commands-legacy/set-print-preview.md
index b7e37484e98da4..817e3b52d7c035 100644
--- a/docs/commands-legacy/set-print-preview.md
+++ b/docs/commands-legacy/set-print-preview.md
@@ -5,7 +5,7 @@ slug: /commands/set-print-preview
displayed_sidebar: docs
---
-**SET PRINT PREVIEW** ( *preview* )
+**SET PRINT PREVIEW** ( *preview* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The following example turns on the Preview on Screen option to display the resul
| | |
| --- | --- |
| Command number | 364 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-printable-margin.md b/docs/commands-legacy/set-printable-margin.md
index 0ec61eddc9a255..f2b075491f59f0 100644
--- a/docs/commands-legacy/set-printable-margin.md
+++ b/docs/commands-legacy/set-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/set-printable-margin
displayed_sidebar: docs
---
-**SET PRINTABLE MARGIN** ( *left* ; *top* ; *right* ; *bottom* )
+**SET PRINTABLE MARGIN** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ The following example gets the paper size:
| | |
| --- | --- |
| Command number | 710 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-process-variable.md b/docs/commands-legacy/set-process-variable.md
index 4f08cb6863e73d..aab2bc67e4dc05 100644
--- a/docs/commands-legacy/set-process-variable.md
+++ b/docs/commands-legacy/set-process-variable.md
@@ -5,7 +5,7 @@ slug: /commands/set-process-variable
displayed_sidebar: docs
---
-**SET PROCESS VARIABLE** ( *process* ; *dstVar* ; *expr* {; *dstVar2* ; *expr2* ; ... ; *dstVarN* ; *exprN*} )
+**SET PROCESS VARIABLE** ( *process* : Integer ; *dstVar* : Variable ; *expr* : Variable {; ...(*dstVar* : Variable, *expr* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,6 +102,6 @@ This example writes the destination process instance of the variables *v1*, *v2*
| | |
| --- | --- |
| Command number | 370 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-query-and-lock.md b/docs/commands-legacy/set-query-and-lock.md
index bf073aa81ee44e..12d606a11c28e5 100644
--- a/docs/commands-legacy/set-query-and-lock.md
+++ b/docs/commands-legacy/set-query-and-lock.md
@@ -5,7 +5,7 @@ slug: /commands/set-query-and-lock
displayed_sidebar: docs
---
-**SET QUERY AND LOCK** ( *lock* )
+**SET QUERY AND LOCK** ( *lock* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -75,7 +75,7 @@ If the command is not called in the context of a transaction, an error is genera
| | |
| --- | --- |
| Command number | 661 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/set-query-destination.md b/docs/commands-legacy/set-query-destination.md
index cef9aca01d80f1..c6339687d9c50f 100644
--- a/docs/commands-legacy/set-query-destination.md
+++ b/docs/commands-legacy/set-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/set-query-destination
displayed_sidebar: docs
---
-**SET QUERY DESTINATION** ( *destinationType* {; *destinationObject* {; *destinationPtr*}} )
+**SET QUERY DESTINATION** ( *destinationType* : Integer {; *destinationObject* : Text, Variable {; *destinationPtr* : Pointer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -258,6 +258,6 @@ After this project method is implemented in your application, you can write:
| | |
| --- | --- |
| Command number | 396 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-query-limit.md b/docs/commands-legacy/set-query-limit.md
index 17e59385fec997..154c5e1f8add7b 100644
--- a/docs/commands-legacy/set-query-limit.md
+++ b/docs/commands-legacy/set-query-limit.md
@@ -5,7 +5,7 @@ slug: /commands/set-query-limit
displayed_sidebar: docs
---
-**SET QUERY LIMIT** ( *limit* )
+**SET QUERY LIMIT** ( *limit* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ See the second example for the [SET QUERY DESTINATION](set-query-destination.md)
| | |
| --- | --- |
| Command number | 395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-real-comparison-level.md b/docs/commands-legacy/set-real-comparison-level.md
index 3bc343fd5934ab..467ae789583b2b 100644
--- a/docs/commands-legacy/set-real-comparison-level.md
+++ b/docs/commands-legacy/set-real-comparison-level.md
@@ -5,7 +5,7 @@ slug: /commands/set-real-comparison-level
displayed_sidebar: docs
---
-**SET REAL COMPARISON LEVEL** ( *epsilon* )
+**SET REAL COMPARISON LEVEL** ( *epsilon* : Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ Using **SET REAL COMPARISON LEVEL**, you can increase or decrease the epsilon va
| | |
| --- | --- |
| Command number | 623 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-recent-fonts.md b/docs/commands-legacy/set-recent-fonts.md
index 1249a0a0f9e06d..60cd2bcf5d1e05 100644
--- a/docs/commands-legacy/set-recent-fonts.md
+++ b/docs/commands-legacy/set-recent-fonts.md
@@ -5,7 +5,7 @@ slug: /commands/set-recent-fonts
displayed_sidebar: docs
---
-**SET RECENT FONTS** ( *fontsArray* )
+**SET RECENT FONTS** ( *fontsArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ Then the menu contains:
| | |
| --- | --- |
| Command number | 1305 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-table-cache-priority.md b/docs/commands-legacy/set-table-cache-priority.md
index 3d0d9c37ada2e5..4bdf4353b99c49 100644
--- a/docs/commands-legacy/set-table-cache-priority.md
+++ b/docs/commands-legacy/set-table-cache-priority.md
@@ -5,7 +5,7 @@ slug: /commands/set-table-cache-priority
displayed_sidebar: docs
---
-**SET TABLE CACHE PRIORITY** ( *aTable* ; *priority* )
+**SET TABLE CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ In the , you want to set a high priority for the \[Customer\] scalar data:
| | |
| --- | --- |
| Command number | 1400 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/set-table-titles.md b/docs/commands-legacy/set-table-titles.md
index de2d5fb0733f6b..98353025d7ee76 100644
--- a/docs/commands-legacy/set-table-titles.md
+++ b/docs/commands-legacy/set-table-titles.md
@@ -5,12 +5,12 @@ slug: /commands/set-table-titles
displayed_sidebar: docs
---
-**SET TABLE TITLES** {( *tableTitles* ; *tableNumbers* {; *})}
+**SET TABLE TITLES** ({ *tableTitles* : Text array ; *tableNumbers* : Integer array {; *}})
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| tableTitles | Text array | → | Table names as they must appear in dialog boxes |
-| tableNumbers | Array integer | → | Actual table numbers |
+| tableNumbers | Integer array | → | Actual table numbers |
| * | Operator | → | Use the custom names in the formula editor |
@@ -191,6 +191,6 @@ You want to remove all defined custom field and table names:
| | |
| --- | --- |
| Command number | 601 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-text-to-pasteboard.md b/docs/commands-legacy/set-text-to-pasteboard.md
index 29e8d7c6508696..784314b9f32fe8 100644
--- a/docs/commands-legacy/set-text-to-pasteboard.md
+++ b/docs/commands-legacy/set-text-to-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/set-text-to-pasteboard
displayed_sidebar: docs
---
-**SET TEXT TO PASTEBOARD** ( *text* )
+**SET TEXT TO PASTEBOARD** ( *text* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,7 +43,7 @@ If a copy of the text is correctly placed in the pasteboard, the OK variable is
| | |
| --- | --- |
| Command number | 523 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/set-timeout.md b/docs/commands-legacy/set-timeout.md
index 7f90c0e854c662..6cc9fdf2bd5867 100644
--- a/docs/commands-legacy/set-timeout.md
+++ b/docs/commands-legacy/set-timeout.md
@@ -5,7 +5,7 @@ slug: /commands/set-timeout
displayed_sidebar: docs
---
-**SET TIMEOUT** ( *seconds* )
+**SET TIMEOUT** ( *seconds* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ The following example sets the serial port to receive data. It then sets a time-
| | |
| --- | --- |
| Command number | 268 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/set-timer.md b/docs/commands-legacy/set-timer.md
index a148b6cdb8e16b..7382599b3693e5 100644
--- a/docs/commands-legacy/set-timer.md
+++ b/docs/commands-legacy/set-timer.md
@@ -5,7 +5,7 @@ slug: /commands/set-timer
displayed_sidebar: docs
---
-**SET TIMER** ( *tickCount* )
+**SET TIMER** ( *tickCount* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ Let’s imagine that you want, when a form is displayed on screen, the computer
| | |
| --- | --- |
| Command number | 645 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-update-folder.md b/docs/commands-legacy/set-update-folder.md
index 4717c28aaf9493..6da5689e7167d5 100644
--- a/docs/commands-legacy/set-update-folder.md
+++ b/docs/commands-legacy/set-update-folder.md
@@ -5,7 +5,7 @@ slug: /commands/set-update-folder
displayed_sidebar: docs
---
-**SET UPDATE FOLDER** ( *folderPath* {; *silentErrors*} )
+**SET UPDATE FOLDER** ( *folderPath* : Text {; *silentErrors* : Boolean} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ You created a "MyUpdates" folder on your disk, where you placed a new version of
| | |
| --- | --- |
| Command number | 1291 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/set-user-alias.md b/docs/commands-legacy/set-user-alias.md
index 2e07f73fcd56ac..54ba0a6daa0938 100644
--- a/docs/commands-legacy/set-user-alias.md
+++ b/docs/commands-legacy/set-user-alias.md
@@ -5,7 +5,7 @@ slug: /commands/set-user-alias
displayed_sidebar: docs
---
-**SET USER ALIAS** ( *alias* )
+**SET USER ALIAS** ( *alias* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ Your users are managed through a custom table and use the same 4D user account.
| | |
| --- | --- |
| Command number | 1666 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/set-user-properties.md b/docs/commands-legacy/set-user-properties.md
index f2c4e36d2ef166..f274d7d1848dc6 100644
--- a/docs/commands-legacy/set-user-properties.md
+++ b/docs/commands-legacy/set-user-properties.md
@@ -5,18 +5,17 @@ slug: /commands/set-user-properties
displayed_sidebar: docs
---
-**Set user properties** ( *userID* ; *name* ; *startup* ; *password* ; *nbLogin* ; *lastLogin* {; *memberships* {; *groupOwner*}} ) : Integer
+**Set user properties** ( *userID* : Integer ; *name* : Text ; *startup* : Text ; *password* : Text ; *nbLogin* : Integer ; *lastLogin* : Date {; *memberships* : Integer array {; *groupOwner* : Integer}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| userID | Integer | → | Unique ID number of user account, -1 for adding a user |
-| ← | Unique ID number of added user account (if any) |
+| userID | Integer | ↔ |*in:* Unique ID number of user account, -1 for adding a user
*out:* Unique ID number of added user account (if any) |
| name | Text | → | New user name |
| startup | Text | → | Name of new user startup method |
| password | Text | → | New (unencrypted) password, or * to leave the password unchanged |
| nbLogin | Integer | → | New number of logins to the database (Binary databases only) |
| lastLogin | Date | → | New date of last login to the database (Binary databases only) |
-| memberships | Array integer | → | ID numbers of groups to which the user belongs |
+| memberships | Integer array | → | ID numbers of groups to which the user belongs |
| groupOwner | Integer | → | Reference number of user group owner (Binary databases only) |
| Function result | Integer | ← | Unique ID number of new user |
@@ -68,6 +67,6 @@ If you do not have the proper access privileges for calling Set user properties
| | |
| --- | --- |
| Command number | 612 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-window-rect.md b/docs/commands-legacy/set-window-rect.md
index 2df0a2b8d52a8d..a4bc5648588a1d 100644
--- a/docs/commands-legacy/set-window-rect.md
+++ b/docs/commands-legacy/set-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/set-window-rect
displayed_sidebar: docs
---
-**SET WINDOW RECT** ( *left* ; *top* ; *right* ; *bottom* {; *window*}{; *} )
+**SET WINDOW RECT** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *window* : Integer}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ The window appears as follows:
| | |
| --- | --- |
| Command number | 444 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/set-window-title.md b/docs/commands-legacy/set-window-title.md
index 7c36ee8b8fd154..32a6b7f12d91b1 100644
--- a/docs/commands-legacy/set-window-title.md
+++ b/docs/commands-legacy/set-window-title.md
@@ -5,7 +5,7 @@ slug: /commands/set-window-title
displayed_sidebar: docs
---
-**SET WINDOW TITLE** ( *title* {; *window*} )
+**SET WINDOW TITLE** ( *title* : Text {; *window* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ While performing data entry in a form, you click on a button that executes a len
| | |
| --- | --- |
| Command number | 213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/shift-down.md b/docs/commands-legacy/shift-down.md
index a09dbea9a3d3dd..755d61cf4301af 100644
--- a/docs/commands-legacy/shift-down.md
+++ b/docs/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ The following object method for the button *bAnyButton* performs different actio
| | |
| --- | --- |
| Command number | 543 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/show-menu-bar.md b/docs/commands-legacy/show-menu-bar.md
index e1348aec513fe9..8e249c70c1b1e8 100644
--- a/docs/commands-legacy/show-menu-bar.md
+++ b/docs/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ See example for the [HIDE MENU BAR](hide-menu-bar.md) command.
| | |
| --- | --- |
| Command number | 431 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Forbidden on the server ||
diff --git a/docs/commands-legacy/show-on-disk.md b/docs/commands-legacy/show-on-disk.md
index 8f7e864e1e5f83..595edc902a0179 100644
--- a/docs/commands-legacy/show-on-disk.md
+++ b/docs/commands-legacy/show-on-disk.md
@@ -5,7 +5,7 @@ slug: /commands/show-on-disk
displayed_sidebar: docs
---
-**SHOW ON DISK** ( *pathname* {; *} )
+**SHOW ON DISK** ( *pathname* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ The system variable OK is set to 1 if the command is executed correctly.
| | |
| --- | --- |
| Command number | 922 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/show-process.md b/docs/commands-legacy/show-process.md
index 494e0a6cf5ee63..af733aae8a7d86 100644
--- a/docs/commands-legacy/show-process.md
+++ b/docs/commands-legacy/show-process.md
@@ -5,7 +5,7 @@ slug: /commands/show-process
displayed_sidebar: docs
---
-**SHOW PROCESS** ( *process* )
+**SHOW PROCESS** ( *process* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ The following example displays a process called Customers, if it has been previo
| | |
| --- | --- |
| Command number | 325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/show-tool-bar.md b/docs/commands-legacy/show-tool-bar.md
index fe0403958cfad5..114fbda3f8de54 100644
--- a/docs/commands-legacy/show-tool-bar.md
+++ b/docs/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Refer to the example of the [HIDE TOOL BAR](hide-tool-bar.md) command.
| | |
| --- | --- |
| Command number | 433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/show-window.md b/docs/commands-legacy/show-window.md
index 302282caa28edf..dc3a0b8cf97abc 100644
--- a/docs/commands-legacy/show-window.md
+++ b/docs/commands-legacy/show-window.md
@@ -5,7 +5,7 @@ slug: /commands/show-window
displayed_sidebar: docs
---
-**SHOW WINDOW** {( *window* )}
+**SHOW WINDOW** ({ *window* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ Refer to the example of the [HIDE WINDOW](hide-window.md) command.
| | |
| --- | --- |
| Command number | 435 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/sin.md b/docs/commands-legacy/sin.md
index 8e70ed432d3f3e..5ac9b8f12737c1 100644
--- a/docs/commands-legacy/sin.md
+++ b/docs/commands-legacy/sin.md
@@ -5,7 +5,7 @@ slug: /commands/sin
displayed_sidebar: docs
---
-**Sin** ( *number* ) : Real
+**Sin** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 17 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/size-of-array.md b/docs/commands-legacy/size-of-array.md
index be8c9e2a8fef63..2effadc4d0bb9f 100644
--- a/docs/commands-legacy/size-of-array.md
+++ b/docs/commands-legacy/size-of-array.md
@@ -5,7 +5,7 @@ slug: /commands/size-of-array
displayed_sidebar: docs
---
-**Size of array** ( *array* ) : Integer
+**Size of array** ( *array* : Array ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,6 +52,6 @@ The following example returns the number of columns for a row in a two-dimension
| | |
| --- | --- |
| Command number | 274 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/soap-declaration.md b/docs/commands-legacy/soap-declaration.md
index 99d5beca392bde..bd40c5fb38b38b 100644
--- a/docs/commands-legacy/soap-declaration.md
+++ b/docs/commands-legacy/soap-declaration.md
@@ -5,7 +5,7 @@ slug: /commands/soap-declaration
displayed_sidebar: docs
---
-**SOAP DECLARATION** ( *variable* ; *type* ; input_output {; *alias*} )
+**SOAP DECLARATION** ( *variable* : Variable ; *type* : Integer ; input_output {; *alias* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -188,6 +188,6 @@ This example illustrates the results of different types of declarations:
| | |
| --- | --- |
| Command number | 782 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/soap-get-info.md b/docs/commands-legacy/soap-get-info.md
index 9aaf5bb4dedab9..d7b1d2a85506d1 100644
--- a/docs/commands-legacy/soap-get-info.md
+++ b/docs/commands-legacy/soap-get-info.md
@@ -5,7 +5,7 @@ slug: /commands/soap-get-info
displayed_sidebar: docs
---
-**SOAP Get info** ( *infoNum* ) : Text
+**SOAP Get info** ( *infoNum* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Pass the number of the type of SOAP information you want to get in the *infoNum*
| | |
| --- | --- |
| Command number | 784 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/soap-reject-new-requests.md b/docs/commands-legacy/soap-reject-new-requests.md
index 8579dc5b4627d4..e62d856f684c28 100644
--- a/docs/commands-legacy/soap-reject-new-requests.md
+++ b/docs/commands-legacy/soap-reject-new-requests.md
@@ -5,7 +5,7 @@ slug: /commands/soap-reject-new-requests
displayed_sidebar: docs
---
-**SOAP REJECT NEW REQUESTS** ( *rejectStatus* )
+**SOAP REJECT NEW REQUESTS** ( *rejectStatus* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ You want to deny any new requests to your Web Services server:
| | |
| --- | --- |
| Command number | 1636 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/soap-request.md b/docs/commands-legacy/soap-request.md
index 77b046ee6a8924..a719f93230dfcc 100644
--- a/docs/commands-legacy/soap-request.md
+++ b/docs/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ This command can be used for security reasons in the *On Web Authentication Data
| | |
| --- | --- |
| Command number | 783 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/soap-send-fault.md b/docs/commands-legacy/soap-send-fault.md
index 1660804f7e6b52..478a91f9bdd803 100644
--- a/docs/commands-legacy/soap-send-fault.md
+++ b/docs/commands-legacy/soap-send-fault.md
@@ -5,7 +5,7 @@ slug: /commands/soap-send-fault
displayed_sidebar: docs
---
-**SOAP SEND FAULT** ( *faultType* ; *description* )
+**SOAP SEND FAULT** ( *faultType* : Integer ; *description* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ To go back to the example of the “Square\_root” Web Service provided in the
| | |
| --- | --- |
| Command number | 781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sort-array.md b/docs/commands-legacy/sort-array.md
index c3861376e2f162..e1b7322a385fed 100644
--- a/docs/commands-legacy/sort-array.md
+++ b/docs/commands-legacy/sort-array.md
@@ -5,7 +5,7 @@ slug: /commands/sort-array
displayed_sidebar: docs
---
-**SORT ARRAY** ( *array* {; *array2* ; ... ; *arrayN*}{; > or <} )
+**SORT ARRAY** ( *array* : Array {; *...array* : Array}{; > or <} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -86,6 +86,6 @@ You display the names from a *\[People\]* table in a floating window. When you c
| | |
| --- | --- |
| Command number | 229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sort-list.md b/docs/commands-legacy/sort-list.md
index deca15ac2c384a..ee69768a050a47 100644
--- a/docs/commands-legacy/sort-list.md
+++ b/docs/commands-legacy/sort-list.md
@@ -5,7 +5,7 @@ slug: /commands/sort-list
displayed_sidebar: docs
---
-**SORT LIST** ( *list* {; > or <} )
+**SORT LIST** ( *list* : Integer {; > or <} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ The list looks like:
| | |
| --- | --- |
| Command number | 391 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/spell-add-to-user-dictionary.md b/docs/commands-legacy/spell-add-to-user-dictionary.md
index bf087150b438be..94658f2163acfb 100644
--- a/docs/commands-legacy/spell-add-to-user-dictionary.md
+++ b/docs/commands-legacy/spell-add-to-user-dictionary.md
@@ -5,7 +5,7 @@ slug: /commands/spell-add-to-user-dictionary
displayed_sidebar: docs
---
-**SPELL ADD TO USER DICTIONARY** ( *words* )
+**SPELL ADD TO USER DICTIONARY** ( *words* : Text, Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ Adding proper nouns to the user dictionary:
| | |
| --- | --- |
| Command number | 1214 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/spell-check-text.md b/docs/commands-legacy/spell-check-text.md
index a5c36bd08a94aa..7aef2183171d0e 100644
--- a/docs/commands-legacy/spell-check-text.md
+++ b/docs/commands-legacy/spell-check-text.md
@@ -5,7 +5,7 @@ slug: /commands/spell-check-text
displayed_sidebar: docs
---
-**SPELL CHECK TEXT** ( *text* ; *errPos* ; *errLength* ; *checkPos* ; *arrSuggest* )
+**SPELL CHECK TEXT** ( *text* : Text ; *errPos* : Integer ; *errLength* : Integer ; *checkPos* : Integer ; *arrSuggest* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,7 +58,7 @@ We want to count the number of possible errors in a text:
| | |
| --- | --- |
| Command number | 1215 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/spell-checking.md b/docs/commands-legacy/spell-checking.md
index 907dec299b212f..d98a0ea49a57c7 100644
--- a/docs/commands-legacy/spell-checking.md
+++ b/docs/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ Spell checking starts with the first word of the field or variable. If an unknow
| | |
| --- | --- |
| Command number | 900 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/spell-get-current-dictionary.md b/docs/commands-legacy/spell-get-current-dictionary.md
index 45531882ce1482..3f68bdf2e21adb 100644
--- a/docs/commands-legacy/spell-get-current-dictionary.md
+++ b/docs/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ We want to display the language of the current dictionary:
| | |
| --- | --- |
| Command number | 1205 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/spell-get-dictionary-list.md b/docs/commands-legacy/spell-get-dictionary-list.md
index c6af6c088de372..00a62ea2724e74 100644
--- a/docs/commands-legacy/spell-get-dictionary-list.md
+++ b/docs/commands-legacy/spell-get-dictionary-list.md
@@ -5,11 +5,11 @@ slug: /commands/spell-get-dictionary-list
displayed_sidebar: docs
---
-**SPELL GET DICTIONARY LIST** ( *langID* ; *langFiles* ; *langNames* )
+**SPELL GET DICTIONARY LIST** ( *langID* : Integer array ; *langFiles* : Text array ; *langNames* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| langID | Array integer | ← | Unique ID of languages |
+| langID | Integer array | ← | Unique ID of languages |
| langFiles | Text array | ← | Names of language files installed |
| langNames | Text array | ← | Local names of languages |
@@ -57,6 +57,6 @@ You put "fr-classic+reform1990.aff" and "fr-classic+reform1990.dic" as well as "
| | |
| --- | --- |
| Command number | 1204 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/spell-set-current-dictionary.md b/docs/commands-legacy/spell-set-current-dictionary.md
index a452ea9587c3e5..f2e9aeafb6f55b 100644
--- a/docs/commands-legacy/spell-set-current-dictionary.md
+++ b/docs/commands-legacy/spell-set-current-dictionary.md
@@ -5,7 +5,7 @@ slug: /commands/spell-set-current-dictionary
displayed_sidebar: docs
---
-**SPELL SET CURRENT DICTIONARY** ( *dictionary* )
+**SPELL SET CURRENT DICTIONARY** ( *dictionary* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,7 +56,7 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder:
| | |
| --- | --- |
| Command number | 904 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/split-string.md b/docs/commands-legacy/split-string.md
index 15ebcfed225e2c..98d26ad2115384 100644
--- a/docs/commands-legacy/split-string.md
+++ b/docs/commands-legacy/split-string.md
@@ -5,7 +5,7 @@ slug: /commands/split-string
displayed_sidebar: docs
---
-**Split string** ( *stringToSplit* ; *separator* {; *options*} ) : Collection
+**Split string** ( *stringToSplit* : Text ; *separator* : Text {; *options* : Integer} ) : Collection
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,6 +63,6 @@ The *separator* parameter can be a multiple-character string:
| | |
| --- | --- |
| Command number | 1554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sql-cancel-load.md b/docs/commands-legacy/sql-cancel-load.md
index 4f7778ebd40432..f3980077846adb 100644
--- a/docs/commands-legacy/sql-cancel-load.md
+++ b/docs/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ If the command has been correctly executed, the system variable OK returns 1\. O
| | |
| --- | --- |
| Command number | 824 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-end-selection.md b/docs/commands-legacy/sql-end-selection.md
index cfb88ec3893093..a7c6e4aecd25fb 100644
--- a/docs/commands-legacy/sql-end-selection.md
+++ b/docs/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ This code will return in the 4D *vName* variable the emp names (ename) stored in
| | |
| --- | --- |
| Command number | 821 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/sql-execute-script.md b/docs/commands-legacy/sql-execute-script.md
index 266f656313f9bf..00ebd7b0e166eb 100644
--- a/docs/commands-legacy/sql-execute-script.md
+++ b/docs/commands-legacy/sql-execute-script.md
@@ -5,7 +5,7 @@ slug: /commands/sql-execute-script
displayed_sidebar: docs
---
-**SQL EXECUTE SCRIPT** ( *scriptPath* ; *errorAction* {; *attribName* ; *attribValue*} {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**SQL EXECUTE SCRIPT** ( *scriptPath* : Text ; *errorAction* : Integer {; *attribName* : Text ; *attribValue* : Text} {; ...(*attribName* : Text, *attribValue* : Text)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -63,7 +63,7 @@ If the script is executed correctly (no error occurs), the *OK* system variable
| | |
| --- | --- |
| Command number | 1089 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-execute.md b/docs/commands-legacy/sql-execute.md
index 44d04c99f63d31..cfc9efffd2f97c 100644
--- a/docs/commands-legacy/sql-execute.md
+++ b/docs/commands-legacy/sql-execute.md
@@ -5,7 +5,7 @@ slug: /commands/sql-execute
displayed_sidebar: docs
---
-**SQL EXECUTE** ( *sqlStatement* {; *boundObj*}{; *boundObj2* ; ... ; *boundObjN*} )
+**SQL EXECUTE** ( *sqlStatement* : Text {; *...boundObj* : Variable, Field} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -164,7 +164,7 @@ If the command has been executed correctly, the system variable OK returns 1\. O
| | |
| --- | --- |
| Command number | 820 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-export-database.md b/docs/commands-legacy/sql-export-database.md
index c948b0b2fc1e5f..5ff18893a02cbe 100644
--- a/docs/commands-legacy/sql-export-database.md
+++ b/docs/commands-legacy/sql-export-database.md
@@ -5,7 +5,7 @@ slug: /commands/sql-export-database
displayed_sidebar: docs
---
-**SQL EXPORT DATABASE** ( *folderPath* {; *numFiles* {; *fileLimitSize* {; *fieldLimitSize*}}} )
+**SQL EXPORT DATABASE** ( *folderPath* : Text {; *numFiles* : Integer {; *fileLimitSize* : Integer {; *fieldLimitSize* : Integer}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,7 +61,7 @@ If the export has been carried out correctly, the OK variable is set to 1\. Othe
| | |
| --- | --- |
| Command number | 1065 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-export-selection.md b/docs/commands-legacy/sql-export-selection.md
index 114b5bcb4beee3..2c1e1a4426f51b 100644
--- a/docs/commands-legacy/sql-export-selection.md
+++ b/docs/commands-legacy/sql-export-selection.md
@@ -5,7 +5,7 @@ slug: /commands/sql-export-selection
displayed_sidebar: docs
---
-**SQL EXPORT SELECTION** ( *aTable* ; *folderPath* {; *numFiles* {; *fileLimitSize* {; *fieldLimitSize*}}} )
+**SQL EXPORT SELECTION** ( *aTable* : Table ; *folderPath* : Text {; *numFiles* : Integer {; *fileLimitSize* : Integer {; *fieldLimitSize* : Integer}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,7 +42,7 @@ If the export is carried out correctly, the *OK* variable is set to 1\. Otherwis
| | |
| --- | --- |
| Command number | 1064 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-get-current-data-source.md b/docs/commands-legacy/sql-get-current-data-source.md
index 00e82ab34f415e..2fb15ae4a39b55 100644
--- a/docs/commands-legacy/sql-get-current-data-source.md
+++ b/docs/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ This command lets you check the current data source, generally before executing
| | |
| --- | --- |
| Command number | 990 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/sql-get-data-source-list.md b/docs/commands-legacy/sql-get-data-source-list.md
index 29237379f65803..6633b2e3ddfd35 100644
--- a/docs/commands-legacy/sql-get-data-source-list.md
+++ b/docs/commands-legacy/sql-get-data-source-list.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-data-source-list
displayed_sidebar: docs
---
-**SQL GET DATA SOURCE LIST** ( *sourceType* ; *sourceNamesArr* ; *driversArr* )
+**SQL GET DATA SOURCE LIST** ( *sourceType* : Integer ; *sourceNamesArr* : Text array ; *driversArr* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,7 +59,7 @@ If the command is executed correctly, the OK system variable is set to 1\. Other
| | |
| --- | --- |
| Command number | 989 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-get-last-error.md b/docs/commands-legacy/sql-get-last-error.md
index 2f97c682992fb4..cde62dc0db6798 100644
--- a/docs/commands-legacy/sql-get-last-error.md
+++ b/docs/commands-legacy/sql-get-last-error.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-last-error
displayed_sidebar: docs
---
-**SQL GET LAST ERROR** ( *errCode* ; *errText* ; *errODBC* ; *errSQLServer* )
+**SQL GET LAST ERROR** ( *errCode* : Integer ; *errText* : Text ; *errODBC* : Text ; *errSQLServer* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ The last two parameters are only filled when the error comes from the ODBC sourc
| | |
| --- | --- |
| Command number | 825 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/sql-get-option.md b/docs/commands-legacy/sql-get-option.md
index 71ed216f4701a3..f49210823e7418 100644
--- a/docs/commands-legacy/sql-get-option.md
+++ b/docs/commands-legacy/sql-get-option.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-option
displayed_sidebar: docs
---
-**SQL GET OPTION** ( *option* ; *value* )
+**SQL GET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,7 +33,7 @@ If the command was properly executed, the system variable OK is set to 1\. Other
| | |
| --- | --- |
| Command number | 819 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-load-record.md b/docs/commands-legacy/sql-load-record.md
index 59cba2d3e0ca5f..d9f76b9bda07ca 100644
--- a/docs/commands-legacy/sql-load-record.md
+++ b/docs/commands-legacy/sql-load-record.md
@@ -5,7 +5,7 @@ slug: /commands/sql-load-record
displayed_sidebar: docs
---
-**SQL LOAD RECORD** {( *numRecords* )}
+**SQL LOAD RECORD** ({ *numRecords* : Integer })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,7 +39,7 @@ If the command has been executed correctly, the system variable OK returns 1\. O
| | |
| --- | --- |
| Command number | 822 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-login.md b/docs/commands-legacy/sql-login.md
index 0f9121cf350a63..dfee9495b5a627 100644
--- a/docs/commands-legacy/sql-login.md
+++ b/docs/commands-legacy/sql-login.md
@@ -5,7 +5,7 @@ slug: /commands/sql-login
displayed_sidebar: docs
---
-**SQL LOGIN** {( *dataEntry* ; *userName* ; *password* ; * )}
+**SQL LOGIN** ({ *dataEntry* : Text ; *userName* : Text ; *password* : Text ; * })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -211,7 +211,7 @@ If the connection is successful, the system variable OK is set to 1; otherwise,
| | |
| --- | --- |
| Command number | 817 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-logout.md b/docs/commands-legacy/sql-logout.md
index 2f89e2a3b2466b..6c9b7cfbe5d22a 100644
--- a/docs/commands-legacy/sql-logout.md
+++ b/docs/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ If the logout is performed properly, the system variable OK is set to 1; otherwi
| | |
| --- | --- |
| Command number | 872 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/sql-set-option.md b/docs/commands-legacy/sql-set-option.md
index aa741adc0af16c..35bcea4e5d9a6d 100644
--- a/docs/commands-legacy/sql-set-option.md
+++ b/docs/commands-legacy/sql-set-option.md
@@ -5,7 +5,7 @@ slug: /commands/sql-set-option
displayed_sidebar: docs
---
-**SQL SET OPTION** ( *option* ; *value* )
+**SQL SET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -51,7 +51,7 @@ If the command was properly executed, the system variable OK returns 1\. Otherwi
| | |
| --- | --- |
| Command number | 818 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/sql-set-parameter.md b/docs/commands-legacy/sql-set-parameter.md
index ba6cf14c279bf3..d4071daf341d67 100644
--- a/docs/commands-legacy/sql-set-parameter.md
+++ b/docs/commands-legacy/sql-set-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/sql-set-parameter
displayed_sidebar: docs
---
-**SQL SET PARAMETER** ( *object* ; *paramType* )
+**SQL SET PARAMETER** ( *object* : Object ; *paramType* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -83,7 +83,7 @@ If the command has been executed correctly, the system variable OK returns 1\. O
| | |
| --- | --- |
| Command number | 823 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/square-root.md b/docs/commands-legacy/square-root.md
index 9b458988864b50..0708bcd433f85e 100644
--- a/docs/commands-legacy/square-root.md
+++ b/docs/commands-legacy/square-root.md
@@ -5,7 +5,7 @@ slug: /commands/square-root
displayed_sidebar: docs
---
-**Square root** ( *number* ) : Real
+**Square root** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ For instance, Hypotenuse (4;3) returns 5.
| | |
| --- | --- |
| Command number | 539 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/st-compute-expressions.md b/docs/commands-legacy/st-compute-expressions.md
index 686412226e6b93..993928c78e66e0 100644
--- a/docs/commands-legacy/st-compute-expressions.md
+++ b/docs/commands-legacy/st-compute-expressions.md
@@ -5,7 +5,7 @@ slug: /commands/st-compute-expressions
displayed_sidebar: docs
---
-**ST COMPUTE EXPRESSIONS** ( {* ;} *object* {; *startSel* {; *endSel*}} )
+**ST COMPUTE EXPRESSIONS** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST COMPUTE EXPRESSIONS** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,7 +73,7 @@ You want to update the references included in the selection of text:
| | |
| --- | --- |
| Command number | 1285 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-freeze-expressions.md b/docs/commands-legacy/st-freeze-expressions.md
index 050f7f540643a4..4c015079f3f2c4 100644
--- a/docs/commands-legacy/st-freeze-expressions.md
+++ b/docs/commands-legacy/st-freeze-expressions.md
@@ -5,7 +5,7 @@ slug: /commands/st-freeze-expressions
displayed_sidebar: docs
---
-**ST FREEZE EXPRESSIONS** ( {* ;} *object* {; *startSel* {; *endSel*}}{; *} )
+**ST FREEZE EXPRESSIONS** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}}{; *} )
**ST FREEZE EXPRESSIONS** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,6 +72,6 @@ You want to insert the current time at the start of the text and then freeze it
| | |
| --- | --- |
| Command number | 1282 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/st-get-attributes.md b/docs/commands-legacy/st-get-attributes.md
index ef89431e70aa73..0c4ea45f166398 100644
--- a/docs/commands-legacy/st-get-attributes.md
+++ b/docs/commands-legacy/st-get-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-attributes
displayed_sidebar: docs
---
-**ST GET ATTRIBUTES** ( {* ;} *object* ; *startSel* ; *endSel* ; *attribName* ; *attribValue* {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**ST GET ATTRIBUTES** ( * ; *object* : Text ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Integer ; *attribValue* : Variable {; ...(*attribName* : Integer, *attribValue* : Variable)} )
**ST GET ATTRIBUTES** ( *object* : Field, Variable ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Integer ; *attribValue* : Variable {; ...(*attribName* : Integer, *attribValue* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -106,7 +106,7 @@ In the case of an error, the variable is not changed. When an error occurs on a
| | |
| --- | --- |
| Command number | 1094 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-get-content-type.md b/docs/commands-legacy/st-get-content-type.md
index 31748607e1d39a..576c64b4256f5f 100644
--- a/docs/commands-legacy/st-get-content-type.md
+++ b/docs/commands-legacy/st-get-content-type.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-content-type
displayed_sidebar: docs
---
-**ST Get content type** ( {* ;} *object* {; *startSel* {; *endSel* {; *startBlock* {; *endBlock*}}}} ) : Integer
+**ST Get content type** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer {; *startBlock* : Integer {; *endBlock* : Integer}}}} ) : Integer
**ST Get content type** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer {; *startBlock* : Integer {; *endBlock* : Integer}}}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -107,7 +107,7 @@ You want to display context-menu commands based on the type of contents selected
| | |
| --- | --- |
| Command number | 1286 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-get-expression.md b/docs/commands-legacy/st-get-expression.md
index 62ecd223b30137..72fec08589bf65 100644
--- a/docs/commands-legacy/st-get-expression.md
+++ b/docs/commands-legacy/st-get-expression.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-expression
displayed_sidebar: docs
---
-**ST Get expression** ( {* ;} *object* {; *startSel* {; *endSel*}} ) : Text
+**ST Get expression** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
**ST Get expression** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -97,7 +97,7 @@ You want to execute a 4D method when a user link is clicked:
| | |
| --- | --- |
| Command number | 1287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-get-options.md b/docs/commands-legacy/st-get-options.md
index 74ed1f01e7029b..46500086ddc310 100644
--- a/docs/commands-legacy/st-get-options.md
+++ b/docs/commands-legacy/st-get-options.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-options
displayed_sidebar: docs
---
-**ST GET OPTIONS** ( {* ;} *object* ; *option* ; *value* {; *option2* ; *value2* ; ... ; *optionN* ; *valueN*} )
+**ST GET OPTIONS** ( * ; *object* : Text ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
**ST GET OPTIONS** ( *object* : Field, Variable ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Pass the code of the option to get in the *option* parameter. The command return
| | |
| --- | --- |
| Command number | 1290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/st-get-plain-text.md b/docs/commands-legacy/st-get-plain-text.md
index b425aec4f17165..7598fb1cbfed4e 100644
--- a/docs/commands-legacy/st-get-plain-text.md
+++ b/docs/commands-legacy/st-get-plain-text.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-plain-text
displayed_sidebar: docs
---
-**ST Get plain text** ( {* ;} *object* {; *refMode*} ) : Text
+**ST Get plain text** ( * ; *object* : Text {; *refMode* : Integer} ) : Text
**ST Get plain text** ( *object* : Field, Variable {; *refMode* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -113,7 +113,7 @@ In the case of an error, the variable is not changed. When an error occurs on a
| | |
| --- | --- |
| Command number | 1092 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-get-text.md b/docs/commands-legacy/st-get-text.md
index f3441be88f8672..61ff42935e0c38 100644
--- a/docs/commands-legacy/st-get-text.md
+++ b/docs/commands-legacy/st-get-text.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-text
displayed_sidebar: docs
---
-**ST Get text** ( {* ;} *object* {; *startSel* {; *endSel*}} ) : Text
+**ST Get text** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
**ST Get text** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,7 +65,7 @@ In the case of an error, the variable is not changed. When an error occurs on a
| | |
| --- | --- |
| Command number | 1116 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-get-url.md b/docs/commands-legacy/st-get-url.md
index 1ec6488cc5b3df..e299a696bdb36e 100644
--- a/docs/commands-legacy/st-get-url.md
+++ b/docs/commands-legacy/st-get-url.md
@@ -5,7 +5,7 @@ slug: /commands/st-get-url
displayed_sidebar: docs
---
-**ST GET URL** ( {* ;} *object* ; *urlText* ; *urlAddress* {; *startSel* {; *endSel*}} )
+**ST GET URL** ( * ; *object* : Text ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST GET URL** ( *object* : Field, Variable ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -76,6 +76,6 @@ When there is a double-click event, you check that there is in fact an URL, and
| | |
| --- | --- |
| Command number | 1288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/st-insert-expression.md b/docs/commands-legacy/st-insert-expression.md
index 5807f1361aadc7..4ea9c7d43b1a34 100644
--- a/docs/commands-legacy/st-insert-expression.md
+++ b/docs/commands-legacy/st-insert-expression.md
@@ -5,7 +5,7 @@ slug: /commands/st-insert-expression
displayed_sidebar: docs
---
-**ST INSERT EXPRESSION** ( {* ;} *object* ; *expression* {; *startSel* {; *endSel*}} )
+**ST INSERT EXPRESSION** ( {* ;} *object* : Object ; *expression* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -93,7 +93,7 @@ You want to replace the highlighted text with a field value:
| | |
| --- | --- |
| Command number | 1281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-insert-url.md b/docs/commands-legacy/st-insert-url.md
index 69caa4724bdb08..a0c900021c1b02 100644
--- a/docs/commands-legacy/st-insert-url.md
+++ b/docs/commands-legacy/st-insert-url.md
@@ -5,7 +5,7 @@ slug: /commands/st-insert-url
displayed_sidebar: docs
---
-**ST INSERT URL** ( {* ;} *object* ; *urlText* ; *urlAddress* {; *startSel* {; *endSel*}} )
+**ST INSERT URL** ( * ; *object* : Text ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST INSERT URL** ( *object* : Field, Variable ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,7 +69,7 @@ You want to insert a link to the 4D Web site to replace the text selected in the
| | |
| --- | --- |
| Command number | 1280 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-set-attributes.md b/docs/commands-legacy/st-set-attributes.md
index 2ef368b67929d5..1891d70e878343 100644
--- a/docs/commands-legacy/st-set-attributes.md
+++ b/docs/commands-legacy/st-set-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/st-set-attributes
displayed_sidebar: docs
---
-**ST SET ATTRIBUTES** ( {* ;} *object* ; *startSel* ; *endSel* ; *attribName* ; *attribValue* {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**ST SET ATTRIBUTES** ( * ; *object* : Text ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Text ; *attribValue* : Text, Integer {; ...(*attribName* : Text, *attribValue* : Text, Integer)} )
**ST SET ATTRIBUTES** ( *object* : Field, Variable ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Text ; *attribValue* : Text, Integer {; ...(*attribName* : Text, *attribValue* : Text, Integer)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -107,7 +107,7 @@ In the case of an error, the variable is not changed. When an error occurs on a
| | |
| --- | --- |
| Command number | 1093 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-set-options.md b/docs/commands-legacy/st-set-options.md
index 49614b92cee2f4..d6b2d5b76055ee 100644
--- a/docs/commands-legacy/st-set-options.md
+++ b/docs/commands-legacy/st-set-options.md
@@ -5,7 +5,7 @@ slug: /commands/st-set-options
displayed_sidebar: docs
---
-**ST SET OPTIONS** ( {* ;} *object* ; *option* ; *value* {; *option2* ; *value2* ; ... ; *optionN* ; *valueN*} )
+**ST SET OPTIONS** ( * ; *object* : Text ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
**ST SET OPTIONS** ( *object* : Field, Variable ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ The following code lets you switch the display mode of the area:
| | |
| --- | --- |
| Command number | 1289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/st-set-plain-text.md b/docs/commands-legacy/st-set-plain-text.md
index f2ee4e9a723f99..2e3ea2172b30fd 100644
--- a/docs/commands-legacy/st-set-plain-text.md
+++ b/docs/commands-legacy/st-set-plain-text.md
@@ -5,7 +5,7 @@ slug: /commands/st-set-plain-text
displayed_sidebar: docs
---
-**ST SET PLAIN TEXT** ( {* ;} *object* ; *newText* {; *startSel* {; *endSel*}} )
+**ST SET PLAIN TEXT** ( * ; *object* : Text ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST SET PLAIN TEXT** ( *object* : Field, Variable ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,7 +98,7 @@ In the case of an error, the variable is not changed. When an error occurs on a
| | |
| --- | --- |
| Command number | 1136 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/st-set-text.md b/docs/commands-legacy/st-set-text.md
index 27f33a6ee51eb2..9f73845eb6f328 100644
--- a/docs/commands-legacy/st-set-text.md
+++ b/docs/commands-legacy/st-set-text.md
@@ -5,7 +5,7 @@ slug: /commands/st-set-text
displayed_sidebar: docs
---
-**ST SET TEXT** ( {* ;} *object* ; *newText* {; *startSel* {; *endSel*}} )
+**ST SET TEXT** ( * ; *object* : Text ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST SET TEXT** ( *object* : Field, Variable ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -95,7 +95,7 @@ Refer to the example of the [ST SET PLAIN TEXT](st-set-plain-text.md) command.
| | |
| --- | --- |
| Command number | 1115 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/start-monitoring-activity.md b/docs/commands-legacy/start-monitoring-activity.md
index a524e0e08adeea..bbab33f4246ff1 100644
--- a/docs/commands-legacy/start-monitoring-activity.md
+++ b/docs/commands-legacy/start-monitoring-activity.md
@@ -5,7 +5,7 @@ slug: /commands/start-monitoring-activity
displayed_sidebar: docs
---
-**START MONITORING ACTIVITY** ( *duration* {; *source*} )
+**START MONITORING ACTIVITY** ( *duration* : Real {; *source* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ You want to start/stop monitoring and review 4D data and debug activities lastin
| | |
| --- | --- |
| Command number | 1712 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/start-sql-server.md b/docs/commands-legacy/start-sql-server.md
index 4ccd79b1348307..26e172aea736af 100644
--- a/docs/commands-legacy/start-sql-server.md
+++ b/docs/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ If the SQL server has been launched correctly, the OK system variable is set to
| | |
| --- | --- |
| Command number | 962 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/start-transaction.md b/docs/commands-legacy/start-transaction.md
index ef461a61b8d415..d44560ea582a88 100644
--- a/docs/commands-legacy/start-transaction.md
+++ b/docs/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ You can nest several transactions (sub-transactions). Each transaction or sub-tr
| | |
| --- | --- |
| Command number | 239 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/std-deviation.md b/docs/commands-legacy/std-deviation.md
index ae4ddfd2b9b3d8..59684005bf9846 100644
--- a/docs/commands-legacy/std-deviation.md
+++ b/docs/commands-legacy/std-deviation.md
@@ -5,7 +5,7 @@ slug: /commands/std-deviation
displayed_sidebar: docs
---
-**Std deviation** ( *series* ) : Real
+**Std deviation** ( *series* : Field, Array ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ This example gets the standard deviation of a series of values placed in an arra
| | |
| --- | --- |
| Command number | 26 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/stop-monitoring-activity.md b/docs/commands-legacy/stop-monitoring-activity.md
index 216b75dbc9e65d..56c106a1835e3e 100644
--- a/docs/commands-legacy/stop-monitoring-activity.md
+++ b/docs/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ See example for **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Command number | 1721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/stop-sql-server.md b/docs/commands-legacy/stop-sql-server.md
index 8d6cf130709021..60fffd514f2c41 100644
--- a/docs/commands-legacy/stop-sql-server.md
+++ b/docs/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ If the SQL server was launched, all the SQL connections are interrupted and the
| | |
| --- | --- |
| Command number | 963 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/storage.md b/docs/commands-legacy/storage.md
index 77b777a800d94b..e5f28db79fd6d4 100644
--- a/docs/commands-legacy/storage.md
+++ b/docs/commands-legacy/storage.md
@@ -88,6 +88,6 @@ This example shows a standard way to set **Storage** values:
| | |
| --- | --- |
| Command number | 1525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/string-list-to-array.md b/docs/commands-legacy/string-list-to-array.md
index dfd0053d78a804..0447602fa3ce29 100644
--- a/docs/commands-legacy/string-list-to-array.md
+++ b/docs/commands-legacy/string-list-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/string-list-to-array
displayed_sidebar: docs
---
-**STRING LIST TO ARRAY** ( *resID* ; *strings* {; *resFile*} )
+**STRING LIST TO ARRAY** ( *resID* : Integer ; *strings* : Text array {; *resFile* : Time} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ If the resource is found, OK is set to 1\. Otherwise, it is set to 0 (zero).
| | |
| --- | --- |
| Command number | 511 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/structure-file.md b/docs/commands-legacy/structure-file.md
index 8cb27a825d5c2c..4a48af448457d5 100644
--- a/docs/commands-legacy/structure-file.md
+++ b/docs/commands-legacy/structure-file.md
@@ -5,7 +5,7 @@ slug: /commands/structure-file
displayed_sidebar: docs
---
-**Structure file** {( * )} : Text
+**Structure file** ( * ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -71,6 +71,6 @@ The following example can be used to find out whether the method is called from
| | |
| --- | --- |
| Command number | 489 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/substring.md b/docs/commands-legacy/substring.md
index 86483769aaba12..57f3661d4377e1 100644
--- a/docs/commands-legacy/substring.md
+++ b/docs/commands-legacy/substring.md
@@ -5,7 +5,7 @@ slug: /commands/substring
displayed_sidebar: docs
---
-**Substring** ( *source* ; *firstChar* {; *numChars*} ) : Text
+**Substring** ( *source* : Text ; *firstChar* : Integer {; *numChars* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ The following project method appends the paragraphs found in the text (passed as
| | |
| --- | --- |
| Command number | 12 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/subtotal.md b/docs/commands-legacy/subtotal.md
index 3778c7fcec5cf0..15ef65ed9c0b26 100644
--- a/docs/commands-legacy/subtotal.md
+++ b/docs/commands-legacy/subtotal.md
@@ -5,7 +5,7 @@ slug: /commands/subtotal
displayed_sidebar: docs
---
-**Subtotal** ( *data* {; *pageBreak*} ) : Real
+**Subtotal** ( *data* : Field {; *pageBreak* : Integer} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ The **Subtotal** function is necessary in order to display values on a form.
| | |
| --- | --- |
| Command number | 97 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/sum-squares.md b/docs/commands-legacy/sum-squares.md
index c2751fb89a14ce..7a396a62ea077e 100644
--- a/docs/commands-legacy/sum-squares.md
+++ b/docs/commands-legacy/sum-squares.md
@@ -5,7 +5,7 @@ slug: /commands/sum-squares
displayed_sidebar: docs
---
-**Sum squares** ( *series* ) : Real
+**Sum squares** ( *series* : Field, Array ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -64,6 +64,6 @@ This example gets the sum of the squares of the values placed in an array:
| | |
| --- | --- |
| Command number | 28 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/sum.md b/docs/commands-legacy/sum.md
index e7784f80220941..94afe63e7e7112 100644
--- a/docs/commands-legacy/sum.md
+++ b/docs/commands-legacy/sum.md
@@ -5,7 +5,7 @@ slug: /commands/sum
displayed_sidebar: docs
---
-**Sum** ( *series* {; *attributePath*} ) : Real
+**Sum** ( *series* : Field, Array {; *attributePath* : Text} ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,7 +78,7 @@ For an example of computing an object field attribute, please refer to the examp
| | |
| --- | --- |
| Command number | 1 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/suspend-transaction.md b/docs/commands-legacy/suspend-transaction.md
index e7a38540599582..a29e88d944762e 100644
--- a/docs/commands-legacy/suspend-transaction.md
+++ b/docs/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ For more information, please refer to the [Suspending transactions](../Develop-l
| | |
| --- | --- |
| Command number | 1385 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/svg-export-to-picture.md b/docs/commands-legacy/svg-export-to-picture.md
index d5bd84eee7b3a3..46d2ecf5a8956b 100644
--- a/docs/commands-legacy/svg-export-to-picture.md
+++ b/docs/commands-legacy/svg-export-to-picture.md
@@ -5,7 +5,7 @@ slug: /commands/svg-export-to-picture
displayed_sidebar: docs
---
-**SVG EXPORT TO PICTURE** ( *elementRef* ; *pictVar* {; *exportType*} )
+**SVG EXPORT TO PICTURE** ( *elementRef* : Text ; *pictVar* : Picture {; *exportType* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ The following example can be used to display “Hello World” in a 4D picture:
| | |
| --- | --- |
| Command number | 1017 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/svg-find-element-id-by-coordinates.md b/docs/commands-legacy/svg-find-element-id-by-coordinates.md
index abf50990ad4181..e5427f35a04e47 100644
--- a/docs/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/docs/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/svg-find-element-id-by-coordinates
displayed_sidebar: docs
---
-**SVG Find element ID by coordinates** ( {* ;} *pictureObject* ; *x* ; *y* ) : Text
+**SVG Find element ID by coordinates** ( {* ;} *pictureObject* : Picture ; *x* : Integer ; *y* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,7 +58,7 @@ If *pictureObject* does not contain a valid SVG picture, the command returns an
| | |
| --- | --- |
| Command number | 1054 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/svg-find-element-ids-by-rect.md b/docs/commands-legacy/svg-find-element-ids-by-rect.md
index 0e12c6cb0da343..fa5178805366e2 100644
--- a/docs/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/docs/commands-legacy/svg-find-element-ids-by-rect.md
@@ -5,7 +5,7 @@ slug: /commands/svg-find-element-ids-by-rect
displayed_sidebar: docs
---
-**SVG Find element IDs by rect** ( {* ;} *pictureObject* ; *x* ; *y* ; *width* ; *height* ; *arrIDs* ) : Boolean
+**SVG Find element IDs by rect** ( {* ;} *pictureObject* : Picture ; *x* : Integer ; *y* : Integer ; *width* : Integer ; *height* : Integer ; *arrIDs* : Text array ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ All elements whose bounding rectangle intersects with the selection rectangle ar
| | |
| --- | --- |
| Command number | 1109 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/svg-get-attribute.md b/docs/commands-legacy/svg-get-attribute.md
index e0a06f4e94032d..7a8f71b06e8c0e 100644
--- a/docs/commands-legacy/svg-get-attribute.md
+++ b/docs/commands-legacy/svg-get-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/svg-get-attribute
displayed_sidebar: docs
---
-**SVG GET ATTRIBUTE** ( {* ;} *pictureObject* ; element_ID ; *attribName* ; *attribValue* )
+**SVG GET ATTRIBUTE** ( {* ;} *pictureObject* : Picture ; element_ID ; *attribName* : Text ; *attribValue* : Text, Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ For more information about SVG attributes, please refer to the description of th
| | |
| --- | --- |
| Command number | 1056 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/svg-set-attribute.md b/docs/commands-legacy/svg-set-attribute.md
index 338677050da5b4..df7c9161ac5b53 100644
--- a/docs/commands-legacy/svg-set-attribute.md
+++ b/docs/commands-legacy/svg-set-attribute.md
@@ -5,7 +5,7 @@ slug: /commands/svg-set-attribute
displayed_sidebar: docs
---
-**SVG SET ATTRIBUTE** ( {* ;} *pictureObject* ; element_ID ; *attribName* ; *attribValue* {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} {; *})
+**SVG SET ATTRIBUTE** ( {* ;} *pictureObject* : Picture ; element_ID ; *attribName* : Text ; *attribValue* : Text, Integer {; ...(*attribName* : Text, *attribValue* : Text, Integer)} {; *})
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -100,7 +100,7 @@ Modification of the contents of a Text type element:
| | |
| --- | --- |
| Command number | 1055 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/svg-show-element.md b/docs/commands-legacy/svg-show-element.md
index 62480d8db8f791..c203e0eeb5db44 100644
--- a/docs/commands-legacy/svg-show-element.md
+++ b/docs/commands-legacy/svg-show-element.md
@@ -5,7 +5,7 @@ slug: /commands/svg-show-element
displayed_sidebar: docs
---
-**SVG SHOW ELEMENT** ( {* ;} *pictureObject* ; *id* {; *margin*} )
+**SVG SHOW ELEMENT** ( {* ;} *pictureObject* : Picture ; *id* : Text {; *margin* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -34,7 +34,7 @@ If this command is not executed in the context of a form or if an invalid *pictu
| | |
| --- | --- |
| Command number | 1108 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/system-folder.md b/docs/commands-legacy/system-folder.md
index ee766371b1b385..6d92f219f39d84 100644
--- a/docs/commands-legacy/system-folder.md
+++ b/docs/commands-legacy/system-folder.md
@@ -5,7 +5,7 @@ slug: /commands/system-folder
displayed_sidebar: docs
---
-**System folder** {( *type* )} : Text
+**System folder** ( *type* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ If you omit the *type* parameter, the function will return the pathname to activ
| | |
| --- | --- |
| Command number | 487 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/system-info.md b/docs/commands-legacy/system-info.md
index 2a72736edd526f..d76d2aa47471a8 100644
--- a/docs/commands-legacy/system-info.md
+++ b/docs/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ returns an object that contains, for example, the following information:
| | |
| --- | --- |
| Command number | 1571 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/table-fragmentation.md b/docs/commands-legacy/table-fragmentation.md
index 61e944741d9dee..285c41384c49fd 100644
--- a/docs/commands-legacy/table-fragmentation.md
+++ b/docs/commands-legacy/table-fragmentation.md
@@ -5,7 +5,7 @@ slug: /commands/table-fragmentation
displayed_sidebar: docs
---
-**Table fragmentation** ( *aTable* ) : Real
+**Table fragmentation** ( *aTable* : Table ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ This maintenance method lets you request the compacting of the data file in the
| | |
| --- | --- |
| Command number | 1127 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/table-name.md b/docs/commands-legacy/table-name.md
index 68392e52966804..b751bd0649a51f 100644
--- a/docs/commands-legacy/table-name.md
+++ b/docs/commands-legacy/table-name.md
@@ -5,7 +5,7 @@ slug: /commands/table-name
displayed_sidebar: docs
---
-**Table name** ( *tableNum* ) : Text
**Table name** ( *tablePtr* ) : Text
+**Table name** ( *tableNum* : Integer, Pointer ) : Text
**Table name** ( *tablePtr* : Integer, Pointer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The following is an example of a generic method that displays the records of a t
| | |
| --- | --- |
| Command number | 256 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/table.md b/docs/commands-legacy/table.md
index 95fa01b389074c..e648956abe346f 100644
--- a/docs/commands-legacy/table.md
+++ b/docs/commands-legacy/table.md
@@ -5,24 +5,24 @@ slug: /commands/table
displayed_sidebar: docs
---
-**Table** ( *tableNum* ) : Pointer
**Table** ( *tablePtr* ) : Integer
**Table** ( *fieldPtr* ) : Integer
+**Table** ( *tableNum* : Integer ) : Pointer
**Table** ( *tablePtr* : Pointer ) : Integer
**Table** ( *fieldPtr* : Pointer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| tableNum | Integer | → | Table number |
| tablePtr | Pointer | → | Table pointer |
| fieldPtr | Pointer | → | Field pointer |
-| Function result | any | ← | Table pointer, if a Table number is passed
Table number if a Table pointer or a Field pointer is passed |
+| Function result | Pointer, Integer | ← | Table pointer, if a Table number is passed
Table number if a Table pointer or a Field pointer is passed|
## Description
-The Table command has three forms:
+The `Table` command has three forms:
-* If you pass a table number in *tableNum*, Table returns a pointer to the table.
-* If you pass a table pointer in *aPtr*, Table returns the table number of the table.
-* If you pass a field pointer in *aPtr*, Table returns the table number of the field.
+* If you pass a table number in *tableNum*, Table returns a pointer to the table.
+* If you pass a table pointer in *tablePtr*, Table returns the table number of the table.
+* If you pass a field pointer in *fieldPtr*, Table returns the table number of the field.
## Example 1
@@ -67,6 +67,6 @@ This example sets the *tableNum* variable to the table number of the table to wh
| | |
| --- | --- |
| Command number | 252 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/tan.md b/docs/commands-legacy/tan.md
index 93103ae50212c3..80e12e7aed72c7 100644
--- a/docs/commands-legacy/tan.md
+++ b/docs/commands-legacy/tan.md
@@ -5,7 +5,7 @@ slug: /commands/tan
displayed_sidebar: docs
---
-**Tan** ( *number* ) : Real
+**Tan** ( *number* : Real ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 19 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/temporary-folder.md b/docs/commands-legacy/temporary-folder.md
index 8c1fb15c4dfa2c..351404b9000f40 100644
--- a/docs/commands-legacy/temporary-folder.md
+++ b/docs/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co
| | |
| --- | --- |
| Command number | 486 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/test-path-name.md b/docs/commands-legacy/test-path-name.md
index 9c62ef9ed07375..71188a0b8e9414 100644
--- a/docs/commands-legacy/test-path-name.md
+++ b/docs/commands-legacy/test-path-name.md
@@ -5,7 +5,7 @@ slug: /commands/test-path-name
displayed_sidebar: docs
---
-**Test path name** ( *pathname* ) : Integer
+**Test path name** ( *pathname* : Text ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ The following tests if the document “Journal” is present in the folder of th
| | |
| --- | --- |
| Command number | 476 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/test-semaphore.md b/docs/commands-legacy/test-semaphore.md
index f1ce0682ec06d3..56555cea897894 100644
--- a/docs/commands-legacy/test-semaphore.md
+++ b/docs/commands-legacy/test-semaphore.md
@@ -5,7 +5,7 @@ slug: /commands/test-semaphore
displayed_sidebar: docs
---
-**Test semaphore** ( *semaphore* ) : Boolean
+**Test semaphore** ( *semaphore* : Text ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following example allows you to know the state of a process (in our case, wh
| | |
| --- | --- |
| Command number | 652 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/text-to-array.md b/docs/commands-legacy/text-to-array.md
index f8376d8def821a..5b796420068049 100644
--- a/docs/commands-legacy/text-to-array.md
+++ b/docs/commands-legacy/text-to-array.md
@@ -5,7 +5,7 @@ slug: /commands/text-to-array
displayed_sidebar: docs
---
-**TEXT TO ARRAY** ( *varText* ; *arrText* ; *width* ; *fontName* ; *fontSize* {; *fontStyle* {; *}} )
+**TEXT TO ARRAY** ( *varText* : Text ; *arrText* : Text array ; *width* : Integer ; *fontName* : Text ; *fontSize* : Integer {; *fontStyle* : Integer {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -113,6 +113,6 @@ You need to print in a 400-pixel wide area, a text with a maximum of 80 lines an
| | |
| --- | --- |
| Command number | 1149 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/text-to-blob.md b/docs/commands-legacy/text-to-blob.md
index 27d89210ce9862..28e9d520f7a48a 100644
--- a/docs/commands-legacy/text-to-blob.md
+++ b/docs/commands-legacy/text-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/text-to-blob
displayed_sidebar: docs
---
-**TEXT TO BLOB** ( *text* ; *blob* {; *textFormat* {; offset}} )
**TEXT TO BLOB** ( *text* ; *blob* {; *textFormat* {; *}} )
+**TEXT TO BLOB** ( *text* : Text ; *blob* : Blob {; *textFormat* : Integer {; offset}} )
**TEXT TO BLOB** ( *text* : Text ; *blob* : Blob {; *textFormat* : Integer {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| text | Text | → | Text to write into the BLOB |
-| blob | Blob | → | BLOB to receive the text |
+| Blob | Blob | → | BLOB to receive the text |
| textFormat | Integer | → | Format and character set of text |
| offset | * | Variable, Operator |↔ | Offset within the BLOB (expressed in bytes) or * to append the value |
| ||| New offset after writing if not * |
@@ -111,6 +111,6 @@ After executing this code:
| | |
| --- | --- |
| Command number | 554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/text-to-document.md b/docs/commands-legacy/text-to-document.md
index 26fcc09fe03a47..532c07bcbaaee8 100644
--- a/docs/commands-legacy/text-to-document.md
+++ b/docs/commands-legacy/text-to-document.md
@@ -5,7 +5,7 @@ slug: /commands/text-to-document
displayed_sidebar: docs
---
-**TEXT TO DOCUMENT** ( *fileName* ; *text* {; *charSet* {; *breakMode*}} )
+**TEXT TO DOCUMENT** ( *fileName* : Text ; *text* : Text {; *charSet* : Text, Integer {; *breakMode* : Integer}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -88,6 +88,6 @@ Example allowing the user to indicate the location of the file to create:
| | |
| --- | --- |
| Command number | 1237 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/throw.md b/docs/commands-legacy/throw.md
index 23f32dec7f84a5..17b1121e72b396 100644
--- a/docs/commands-legacy/throw.md
+++ b/docs/commands-legacy/throw.md
@@ -5,15 +5,12 @@ slug: /commands/throw
displayed_sidebar: docs
---
-**throw** ( *errorCode* {; *description*} )
-*throw* {( *errorObj* )}
+**throw** ( *errorCode* : Integer {; *description* : Text} )
**throw** ( *errorObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| errorCode | Integer | → | A long integer representing the error code. |
| description | Text | → | A text providing a description of the error. |
-| throw {( errorObj )} |
-| Parameter | Type | Description |
| errorObj | Object | → | An object containing properties to build the error |
@@ -109,6 +106,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Command number | 1805 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/tickcount.md b/docs/commands-legacy/tickcount.md
index da8c5fe7304729..1a892e5a6e183a 100644
--- a/docs/commands-legacy/tickcount.md
+++ b/docs/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ See example for the command [Milliseconds](milliseconds.md).
| | |
| --- | --- |
| Command number | 458 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/time-string.md b/docs/commands-legacy/time-string.md
index 3cecd03db5fa31..83331d278ec1f5 100644
--- a/docs/commands-legacy/time-string.md
+++ b/docs/commands-legacy/time-string.md
@@ -5,7 +5,7 @@ slug: /commands/time-string
displayed_sidebar: docs
---
-**Time string** ( *seconds* ) : Text
+**Time string** ( *seconds* : Integer, Time ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -42,6 +42,6 @@ The following example displays an alert box with the message, “46800 seconds i
| | |
| --- | --- |
| Command number | 180 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/time.md b/docs/commands-legacy/time.md
index f23d1f8ecc5f50..e7e16ce4d23eeb 100644
--- a/docs/commands-legacy/time.md
+++ b/docs/commands-legacy/time.md
@@ -5,7 +5,7 @@ slug: /commands/time
displayed_sidebar: docs
---
-**Time** ( *timeValue* ) : Time
+**Time** ( *timeValue* : Text, Integer ) : Time
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ You can express any numerical value as a time:
| | |
| --- | --- |
| Command number | 179 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/timestamp.md b/docs/commands-legacy/timestamp.md
index 26562912e7e2a5..f6ab24d1d4c0ba 100644
--- a/docs/commands-legacy/timestamp.md
+++ b/docs/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Result:
| | |
| --- | --- |
| Command number | 1445 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/tool-bar-height.md b/docs/commands-legacy/tool-bar-height.md
index 0835d2f313e69d..f15c1dfc17d2dd 100644
--- a/docs/commands-legacy/tool-bar-height.md
+++ b/docs/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ If no tool bar is displayed, the command returns 0.
| | |
| --- | --- |
| Command number | 1016 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/trace.md b/docs/commands-legacy/trace.md
index 02055cdc201e9e..3b58245f86c8a3 100644
--- a/docs/commands-legacy/trace.md
+++ b/docs/commands-legacy/trace.md
@@ -66,6 +66,6 @@ The DEBUG project method is listed here:
| | |
| --- | --- |
| Command number | 157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/transaction-level.md b/docs/commands-legacy/transaction-level.md
index 50c7e0d36cf35f..af0cf4e924c5f9 100644
--- a/docs/commands-legacy/transaction-level.md
+++ b/docs/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 961 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/transform-picture.md b/docs/commands-legacy/transform-picture.md
index d69eeb22018c83..cc4e6979e44510 100644
--- a/docs/commands-legacy/transform-picture.md
+++ b/docs/commands-legacy/transform-picture.md
@@ -5,12 +5,11 @@ slug: /commands/transform-picture
displayed_sidebar: docs
---
-**TRANSFORM PICTURE** ( *picture* ; *operator* {; *param1* {; *param2* {; *param3* {; *param4*}}}} )
+**TRANSFORM PICTURE** ( *picture* : Picture ; *operator* : Integer {; *param1* : Real {; *param2* : Real {; *param3* : Real {; *param4* : Real}}}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| picture | Picture | → | Source picture to be transformed |
-| ← | Resulting picture after transformation |
+| picture | Picture | ↔ | *in:* Source picture to be transformed
*out:* Resulting picture after transformation|
| operator | Integer | → | Type of transformation to be done |
| param1 | Real | → | Transformation parameter |
| param2 | Real | → | Transformation parameter |
@@ -77,6 +76,6 @@ Here is an example of cropping a picture (the picture is displayed in the form w
| | |
| --- | --- |
| Command number | 988 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/trigger-event.md b/docs/commands-legacy/trigger-event.md
index 6ea9a3d386ce3e..3cc90fd3b9763d 100644
--- a/docs/commands-legacy/trigger-event.md
+++ b/docs/commands-legacy/trigger-event.md
@@ -59,6 +59,6 @@ You use the **Trigger event** command to structure your triggers as follows:
| | |
| --- | --- |
| Command number | 369 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/trigger-level.md b/docs/commands-legacy/trigger-level.md
index 841ce347ce93e2..1b4f5d04265103 100644
--- a/docs/commands-legacy/trigger-level.md
+++ b/docs/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ For more information on execution levels, see the topic *Cascading Triggers*.
| | |
| --- | --- |
| Command number | 398 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/trigger-properties.md b/docs/commands-legacy/trigger-properties.md
index 9d9cd336fe6ddb..9f8ea185637e4e 100644
--- a/docs/commands-legacy/trigger-properties.md
+++ b/docs/commands-legacy/trigger-properties.md
@@ -5,7 +5,7 @@ slug: /commands/trigger-properties
displayed_sidebar: docs
---
-**TRIGGER PROPERTIES** ( *triggerLevel* ; *dbEvent* ; *tableNum* ; *recordNum* )
+**TRIGGER PROPERTIES** ( *triggerLevel* : Integer ; *dbEvent* : Integer ; *tableNum* : Integer ; *recordNum* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The table number and record number for the record involved by the database event
| | |
| --- | --- |
| Command number | 399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/true.md b/docs/commands-legacy/true.md
index e1fee538d724dc..03045a03f2b3d0 100644
--- a/docs/commands-legacy/true.md
+++ b/docs/commands-legacy/true.md
@@ -35,6 +35,6 @@ The following example sets the variable *vbOptions* to True:
| | |
| --- | --- |
| Command number | 214 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/trunc.md b/docs/commands-legacy/trunc.md
index 18702447cf1bd0..6b9bc6fb46d8dc 100644
--- a/docs/commands-legacy/trunc.md
+++ b/docs/commands-legacy/trunc.md
@@ -5,7 +5,7 @@ slug: /commands/trunc
displayed_sidebar: docs
---
-**Trunc** ( *number* ; *places* ) : Real
+**Trunc** ( *number* : Real ; *places* : Integer ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The following example illustrates how Trunc works with different arguments. Each
| | |
| --- | --- |
| Command number | 95 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/truncate-table.md b/docs/commands-legacy/truncate-table.md
index 351fb9ea87cce3..eb5090c1026efe 100644
--- a/docs/commands-legacy/truncate-table.md
+++ b/docs/commands-legacy/truncate-table.md
@@ -5,7 +5,7 @@ slug: /commands/truncate-table
displayed_sidebar: docs
---
-**TRUNCATE TABLE** {( *aTable* )}
+**TRUNCATE TABLE** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,7 +44,7 @@ If the command has been executed correctly, the OK system variable is set to 1\.
| | |
| --- | --- |
| Command number | 1051 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/type.md b/docs/commands-legacy/type.md
index 7cfc60e2ede7c4..940e928b1c2e22 100644
--- a/docs/commands-legacy/type.md
+++ b/docs/commands-legacy/type.md
@@ -5,7 +5,7 @@ slug: /commands/type
displayed_sidebar: docs
---
-**Type** ( *fieldVar* ) : Integer
+**Type** ( *fieldVar* : Field, Variable ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -152,6 +152,6 @@ See example for the [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md) co
| | |
| --- | --- |
| Command number | 295 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/undefined.md b/docs/commands-legacy/undefined.md
index 10c8edeba71a4c..d17b5a74923a30 100644
--- a/docs/commands-legacy/undefined.md
+++ b/docs/commands-legacy/undefined.md
@@ -5,7 +5,7 @@ slug: /commands/undefined
displayed_sidebar: docs
---
-**Undefined** ( *expression* ) : Boolean
+**Undefined** ( *expression* : Expression ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ Here are the different results of the [Undefined](undefined.md) command as well
| | |
| --- | --- |
| Command number | 82 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/union.md b/docs/commands-legacy/union.md
index 78033ef372cc67..91a4b02e0598be 100644
--- a/docs/commands-legacy/union.md
+++ b/docs/commands-legacy/union.md
@@ -5,7 +5,7 @@ slug: /commands/union
displayed_sidebar: docs
---
-**UNION** ( *set1* ; *set2* ; *resultSet* )
+**UNION** ( *set1* : Text ; *set2* : Text ; *resultSet* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ This example adds records to a set of best customers. The records are displayed
| | |
| --- | --- |
| Command number | 120 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/unload-record.md b/docs/commands-legacy/unload-record.md
index 23927a3dd40c9f..40e7b027e6deed 100644
--- a/docs/commands-legacy/unload-record.md
+++ b/docs/commands-legacy/unload-record.md
@@ -5,7 +5,7 @@ slug: /commands/unload-record
displayed_sidebar: docs
---
-**UNLOAD RECORD** {( *aTable* )}
+**UNLOAD RECORD** ({ *aTable* : Table })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ If a record has a large amount of data, picture fields, or external documents (s
| | |
| --- | --- |
| Command number | 212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/unregister-client.md b/docs/commands-legacy/unregister-client.md
index 554cab9586b765..4b04761f497487 100644
--- a/docs/commands-legacy/unregister-client.md
+++ b/docs/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ If the client is correctly unregistered, the OK system variable is set to 1\. If
| | |
| --- | --- |
| Command number | 649 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/uppercase.md b/docs/commands-legacy/uppercase.md
index 5f346f4a7f3d8d..8135b4632774f9 100644
--- a/docs/commands-legacy/uppercase.md
+++ b/docs/commands-legacy/uppercase.md
@@ -5,11 +5,11 @@ slug: /commands/uppercase
displayed_sidebar: docs
---
-**Uppercase** ( *aString* {; *} ) : Text
+**Uppercase** ( *aString* : Text {; *} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| aText | Text | → | String to convert to uppercase |
+| aString | Text | → | String to convert to uppercase |
| * | Operator | → | If passed: keep accents |
| Function result | Text | ← | String in uppercase |
@@ -43,6 +43,6 @@ See the example for [Lowercase](lowercase.md).
| | |
| --- | --- |
| Command number | 13 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/use-character-set.md b/docs/commands-legacy/use-character-set.md
index 54aae81ceebc8b..ca71d8a34d55a8 100644
--- a/docs/commands-legacy/use-character-set.md
+++ b/docs/commands-legacy/use-character-set.md
@@ -5,11 +5,11 @@ slug: /commands/use-character-set
displayed_sidebar: docs
---
-**USE CHARACTER SET** ( *map* {; *mapInOut*} )
+**USE CHARACTER SET** ( *map* : Text, Operator {; *mapInOut* : Integer} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| map | Text, * | → | Name of character set to use, or * to reset to default character set |
+| map | Text, Operator | → | Name of character set to use, or * to reset to default character set |
| mapInOut | Integer | → | 0 = Output map 1 = Input map, If omitted, output map |
@@ -56,7 +56,7 @@ The OK system variable is set to 1 if the map is loaded correctly. Otherwise, it
| | |
| --- | --- |
| Command number | 205 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/use-named-selection.md b/docs/commands-legacy/use-named-selection.md
index 372d02816550d4..79aba5b4f9e160 100644
--- a/docs/commands-legacy/use-named-selection.md
+++ b/docs/commands-legacy/use-named-selection.md
@@ -5,7 +5,7 @@ slug: /commands/use-named-selection
displayed_sidebar: docs
---
-**USE NAMED SELECTION** ( *name* )
+**USE NAMED SELECTION** ( *name* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,7 +35,7 @@ Remember that a named selection is a representation of a selection of records at
| | |
| --- | --- |
| Command number | 332 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/use-set.md b/docs/commands-legacy/use-set.md
index caf12ca5c498c6..561f5107239552 100644
--- a/docs/commands-legacy/use-set.md
+++ b/docs/commands-legacy/use-set.md
@@ -5,7 +5,7 @@ slug: /commands/use-set
displayed_sidebar: docs
---
-**USE SET** ( *set* )
+**USE SET** ( *set* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ The following example uses [LOAD SET](load-set.md) to load a set of the Acme loc
| | |
| --- | --- |
| Command number | 118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands-legacy/user-in-group.md b/docs/commands-legacy/user-in-group.md
index d9d7de5e19ba9b..b69b33f1724268 100644
--- a/docs/commands-legacy/user-in-group.md
+++ b/docs/commands-legacy/user-in-group.md
@@ -5,7 +5,7 @@ slug: /commands/user-in-group
displayed_sidebar: docs
---
-**User in group** ( *user* ; *group* ) : Boolean
+**User in group** ( *user* : Text ; *group* : Text ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ The following example searches for specific invoices. If the current user is in
| | |
| --- | --- |
| Command number | 338 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/users-to-blob.md b/docs/commands-legacy/users-to-blob.md
index cc53aaa359753c..f98ee2d518aa89 100644
--- a/docs/commands-legacy/users-to-blob.md
+++ b/docs/commands-legacy/users-to-blob.md
@@ -5,20 +5,19 @@ slug: /commands/users-to-blob
displayed_sidebar: docs
---
-**USERS TO BLOB** ( *users* )
+**USERS TO BLOB** ( *users* : Blob )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| users | Blob | → | BLOB that must contain users |
-| ← | User accounts (encrypted) |
+| users | Blob | ↔ | *in:* BLOB that must contain users
*out:* User accounts (encrypted) |
## Description
-**Compatibility Note:* This command only works in binary databases. It always returns an empty BLOB in projects.*
+**Compatibility Note:** This command only works in binary databases. It always returns an empty BLOB in projects.
-The **USERS TO BLOB** command stores in the BLOB *users* the list of all user accounts and database groups created by the Administrator.
+The **USERS TO BLOB** command stores in the BLOB *users* the list of all user accounts and database groups created by the Administrator.
Only the database Administrator or the Designer can execute this command. If another user tries to execute it, the command does nothing and a privilege error (-9949) is generated.
@@ -37,7 +36,7 @@ This lets you keep a backup of users in the database data and, as such, implemen
| | |
| --- | --- |
| Command number | 849 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/validate-password.md b/docs/commands-legacy/validate-password.md
index 591cc292375325..770274b0742c05 100644
--- a/docs/commands-legacy/validate-password.md
+++ b/docs/commands-legacy/validate-password.md
@@ -5,7 +5,7 @@ slug: /commands/validate-password
displayed_sidebar: docs
---
-**Validate password** ( *userID* ; *password* {; *digest*} ) : Boolean
+**Validate password** ( *userID* : Integer, Text ; *password* : Text {; *digest* : Boolean} ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ In the [On REST Authentication database method](on-rest-authentication-database-
| | |
| --- | --- |
| Command number | 638 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/validate-transaction.md b/docs/commands-legacy/validate-transaction.md
index 6e220b994f2541..045474bc789923 100644
--- a/docs/commands-legacy/validate-transaction.md
+++ b/docs/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Note that when OK is set to 0, the transaction is automatically cancelled intern
| | |
| --- | --- |
| Command number | 240 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/value-type.md b/docs/commands-legacy/value-type.md
index 3fdd90420a4b6c..97250a60a2bb00 100644
--- a/docs/commands-legacy/value-type.md
+++ b/docs/commands-legacy/value-type.md
@@ -5,7 +5,7 @@ slug: /commands/value-type
displayed_sidebar: docs
---
-**Value type** ( *expression* ) : Integer
+**Value type** ( *expression* : Expression ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -118,6 +118,6 @@ You want to sum up all numeric values in a collection:
| | |
| --- | --- |
| Command number | 1509 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/variable-to-blob.md b/docs/commands-legacy/variable-to-blob.md
index 16eec1f1886a8d..4f02a0e8724117 100644
--- a/docs/commands-legacy/variable-to-blob.md
+++ b/docs/commands-legacy/variable-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/variable-to-blob
displayed_sidebar: docs
---
-**VARIABLE TO BLOB** ( *variable* ; *blob* {; offset } )
**VARIABLE TO BLOB** ( *variable* ; *blob* {; *} )
+**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; offset } )
**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| variable | Variable | → | Variable to store in the BLOB |
-| blob | Blob | → | BLOB to receive the variable |
+| Blob | Blob | → | BLOB to receive the variable |
| offset | * | Variable, Operator | ↔ | Offset within the BLOB (expressed in bytes) or * to append the value |
| ||| New offset after writing if not * |
@@ -136,7 +136,7 @@ After these methods have been added to your application, you can write:
| | |
| --- | --- |
| Command number | 532 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/variable-to-variable.md b/docs/commands-legacy/variable-to-variable.md
index eec1b22ab7a7f4..cd83299943f451 100644
--- a/docs/commands-legacy/variable-to-variable.md
+++ b/docs/commands-legacy/variable-to-variable.md
@@ -5,7 +5,7 @@ slug: /commands/variable-to-variable
displayed_sidebar: docs
---
-**VARIABLE TO VARIABLE** ( *process* ; *dstVar* ; *srcVar* {; *dstVar2* ; *srcVar2* ; ... ; *dstVarN* ; *srcVarN*} )
+**VARIABLE TO VARIABLE** ( *process* : Integer ; *dstVar* : Variable ; *srcVar* : Variable {; ...(*dstVar* : Variable, *srcVar* : Variable)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ The following example reads a process array from the process indicated by *$vlPr
| | |
| --- | --- |
| Command number | 635 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/variance.md b/docs/commands-legacy/variance.md
index 19948a55e36398..cfe2aadc8bf003 100644
--- a/docs/commands-legacy/variance.md
+++ b/docs/commands-legacy/variance.md
@@ -5,7 +5,7 @@ slug: /commands/variance
displayed_sidebar: docs
---
-**Variance** ( *series* ) : Real
+**Variance** ( *series* : Field, Array ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -72,6 +72,6 @@ This example gets the variance of the values placed in an array:
| | |
| --- | --- |
| Command number | 27 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/verify-current-data-file.md b/docs/commands-legacy/verify-current-data-file.md
index 2b911a12fee4fc..56cf1294354f29 100644
--- a/docs/commands-legacy/verify-current-data-file.md
+++ b/docs/commands-legacy/verify-current-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/verify-current-data-file
displayed_sidebar: docs
---
-**VERIFY CURRENT DATA FILE** {( *objects* ; *options* ; *method* {; *tablesArray* {; *fieldsArray*}} )}
+**VERIFY CURRENT DATA FILE** ({ *objects* : Integer ; *options* : Integer ; *method* : Text {; *tablesArray* : Integer array {; *fieldsArray* : Integer array}} })
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| objects | Integer | → | Objects to check |
| options | Integer | → | Checking options |
| method | Text | → | Name of 4D callback method |
-| tablesArray | Array integer | → | Numbers of tables to be checked |
-| fieldsArray | 2D Integer array, 2D Integer array, 2D Real array | → | Numbers of indexes to be checked |
+| tablesArray | Integer array | → | Numbers of tables to be checked |
+| fieldsArray | Integer array | → | 2D array, numbers of indexes to be checked |
@@ -49,7 +49,7 @@ If the callback method does not exist, the verification is not carried out, an e
| | |
| --- | --- |
| Command number | 1008 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/verify-data-file.md b/docs/commands-legacy/verify-data-file.md
index 6427fc149b971f..ed243449c37202 100644
--- a/docs/commands-legacy/verify-data-file.md
+++ b/docs/commands-legacy/verify-data-file.md
@@ -5,7 +5,7 @@ slug: /commands/verify-data-file
displayed_sidebar: docs
---
-**VERIFY DATA FILE** ( *structurePath* ; *dataPath* ; *objects* ; *options* ; *method* {; *tablesArray* {; *fieldsArray*}} )
+**VERIFY DATA FILE** ( *structurePath* : Text ; *dataPath* : Text ; *objects* : Integer ; *options* : Integer ; *method* : Text {; *tablesArray* : Integer array {; *fieldsArray* : Integer array}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -14,8 +14,8 @@ displayed_sidebar: docs
| objects | Integer | → | Objects to be checked |
| options | Integer | → | Checking options |
| method | Text | → | Name of 4D callback method |
-| tablesArray | Array integer | → | Numbers of tables to be checked |
-| fieldsArray | 2D Integer array, 2D Integer array, 2D Real array | → | Numbers of indexes to be checked |
+| tablesArray | Integer array | → | Numbers of tables to be checked |
+| fieldsArray | Integer array | → | Numbers of indexes to be checked |
@@ -44,7 +44,7 @@ The *options* parameter is used to set verification options. The following optio
| Constant | Type | Value | Comment |
| ----------------------- | ------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| Do not create log file | Integer | 16384 | Generally, this command creates a log file in XML format (refer to the end of the command description). With this option, no log file will be created. |
+| Do not create log file | Integer | 16384 | Generally, this command creates a log file in XML format (refer to the end of the command description). With this option, no log file will be created. |
| Timestamp log file name | Integer | 262144 | When this option is passed, the name of the log file generated will contain the date and time of its creation; as a result, it will not replace any log file already generated previously. By default, if this option is not passed, log file names are not timestamped and each new file generated replaces the previous one. |
@@ -52,8 +52,7 @@ Generally, the VERIFY DATA FILE command creates a log file in XML format (please
The *method* parameter is used to set a callback method that will be called regularly during the verification. If you pass an empty string or an invalid method name, this parameter is ignored (no method is called). When called, the method receives up to 5 parameters depending on the objects being verified and on the event type originating the call (see calls table). It is imperative to declare these parameters in the method:
-
-| Parameter | Type | Description |
+| \- $1 | Integer | Message type (see table) |
| ----- | ------- | ------------------------ |
| $messageType | Integer | Message type (see table) |
| $objectType | Integer | Object type |
@@ -80,16 +79,15 @@ The following table describes the contents of the parameters depending on the ev
* 8 = index
* 16 = structure object (preliminary check of data file).
-*Special case*: When $table = 0 for $messageType=2, 3 or 5, the message does not concern a table or an index but rather the data file as a whole.
-
-The callback method must also return a *$result* integer value, which is used to check the execution of the operation:
+*Special case*: When $4 = 0 for $1=2, 3 or 5, the message does not concern a table or an index but rather the data file as a whole.
-* If $result = 0, the operation continues normally
-* If $result = -128, the operation is stopped without any error generated
-* If $result = another value, the operation is stopped and the value passed in $result is returned as the error number. This error can be intercepted by an error-handling method.
+The callback method must also return a value in $0 (Longint), which is used to check the execution of the operation:
-**Note:** You cannot interrupt execution via $result after the *End of execution* event ($1=4) has been generated.
+* If $0 = 0, the operation continues normally
+* If $0 = -128, the operation is stopped without any error generated
+* If $0 = another value, the operation is stopped and the value passed in $0 is returned as the error number. This error can be intercepted by an error-handling method.
+**Note:** You cannot interrupt execution via $0 after the *End of execution* event ($4=1) has been generated.
Two optional arrays can also be used by this command:
@@ -175,7 +173,7 @@ If the callback method does not exist, the verification is not carried out, an e
| | |
| --- | --- |
| Command number | 939 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document, error |
diff --git a/docs/commands-legacy/verify-password-hash.md b/docs/commands-legacy/verify-password-hash.md
index 9dde6aaa9b2cc2..cf9408aec78b88 100644
--- a/docs/commands-legacy/verify-password-hash.md
+++ b/docs/commands-legacy/verify-password-hash.md
@@ -5,7 +5,7 @@ slug: /commands/verify-password-hash
displayed_sidebar: docs
---
-**Verify password hash** ( *password* ; *hash* ) : Boolean
+**Verify password hash** ( *password* : Text ; *hash* : Text ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ This example verifies a password hash previously created by [Generate password h
| | |
| --- | --- |
| Command number | 1534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/version-type.md b/docs/commands-legacy/version-type.md
index 8237422cd4d274..1d7cb1f10d2a56 100644
--- a/docs/commands-legacy/version-type.md
+++ b/docs/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ This test lets you run different code depending on whether the version is a merg
| | |
| --- | --- |
| Command number | 495 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/volume-attributes.md b/docs/commands-legacy/volume-attributes.md
index 22a7818e202e00..8f943acde31718 100644
--- a/docs/commands-legacy/volume-attributes.md
+++ b/docs/commands-legacy/volume-attributes.md
@@ -5,7 +5,7 @@ slug: /commands/volume-attributes
displayed_sidebar: docs
---
-**VOLUME ATTRIBUTES** ( *volume* ; *size* ; *used* ; *free* )
+**VOLUME ATTRIBUTES** ( *volume* : Text ; *size* : Real ; *used* : Real ; *free* : Real )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -101,7 +101,7 @@ Once this project method is added to your application, you can for instance writ
| | |
| --- | --- |
| Command number | 472 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, error |
diff --git a/docs/commands-legacy/volume-list.md b/docs/commands-legacy/volume-list.md
index 15216843baeb94..f9d46136647a9c 100644
--- a/docs/commands-legacy/volume-list.md
+++ b/docs/commands-legacy/volume-list.md
@@ -5,7 +5,7 @@ slug: /commands/volume-list
displayed_sidebar: docs
---
-**VOLUME LIST** ( *volumes* )
+**VOLUME LIST** ( *volumes* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ Using a scrollable area named *atVolumes* you want to display the list of the vo
| | |
| --- | --- |
| Command number | 471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/wa-back-url-available.md b/docs/commands-legacy/wa-back-url-available.md
index d566b17e60f8b6..1c753149bc78ec 100644
--- a/docs/commands-legacy/wa-back-url-available.md
+++ b/docs/commands-legacy/wa-back-url-available.md
@@ -5,7 +5,7 @@ slug: /commands/wa-back-url-available
displayed_sidebar: docs
---
-**WA Back URL available** ( {* ;} *object* ) : Boolean
+**WA Back URL available** ( * ; *object* : Text ) : Boolean
**WA Back URL available** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ The command returns **True** if a URL exists and **False** otherwise. More parti
| | |
| --- | --- |
| Command number | 1026 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-create-url-history-menu.md b/docs/commands-legacy/wa-create-url-history-menu.md
index 6dbda76d29fad0..53238c50f8b286 100644
--- a/docs/commands-legacy/wa-create-url-history-menu.md
+++ b/docs/commands-legacy/wa-create-url-history-menu.md
@@ -5,7 +5,7 @@ slug: /commands/wa-create-url-history-menu
displayed_sidebar: docs
---
-**WA Create URL history menu** ( {* ;} *object* {; *direction*} ) : Text
+**WA Create URL history menu** ( * ; *object* : Text {; *direction* : Integer} ) : Text
**WA Create URL history menu** ( *object* : Field, Variable {; *direction* : Integer} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -73,6 +73,6 @@ The following code can be associated with a 3D button having a pop-up menu entit
| | |
| --- | --- |
| Command number | 1049 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-evaluate-javascript.md b/docs/commands-legacy/wa-evaluate-javascript.md
index d8a8b9156dbb57..abc8bf6f28cbae 100644
--- a/docs/commands-legacy/wa-evaluate-javascript.md
+++ b/docs/commands-legacy/wa-evaluate-javascript.md
@@ -5,7 +5,7 @@ slug: /commands/wa-evaluate-javascript
displayed_sidebar: docs
---
-**WA Evaluate JavaScript** ( {* ;} *object* ; *jsCode* {; *type*} ) : any
+**WA Evaluate JavaScript** ( * ; *object* : Text ; *jsCode* : Text {; *type* : Integer} ) : any
**WA Evaluate JavaScript** ( *object* : Field, Variable ; *jsCode* : Text {; *type* : Integer} ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -107,6 +107,6 @@ You can then evaluate the JavaScript code from 4D:
| | |
| --- | --- |
| Command number | 1029 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-execute-javascript-function.md b/docs/commands-legacy/wa-execute-javascript-function.md
index 5b398b2b5164ff..faca7ea5aa766c 100644
--- a/docs/commands-legacy/wa-execute-javascript-function.md
+++ b/docs/commands-legacy/wa-execute-javascript-function.md
@@ -5,16 +5,16 @@ slug: /commands/wa-execute-javascript-function
displayed_sidebar: docs
---
-**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *object* ; *jsFunction* ; *result* {; *param*}{; *param2* ; ... ; *paramN*} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *object* ; *jsFunction* ; * {; *param*}{; *param2* ; ... ; *paramN*} )
+**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *object* : Text ; *jsFunction* : Text ; *result* : Variable {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *object* : Field, Variable ; *jsFunction* : Text ; *result* : Variable {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *object* : Text ; *jsFunction* : Text ; * {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *object* : Field, Variable ; *jsFunction* : Text ; * {; *...param* : any} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| * | Operator | → | If specified, object is an object name (string) If omitted, object is a variable |
| object | any | → | Object name (if * is specified) or Variable (if * is omitted) |
| jsFunction | Text | → | Name of JavaScript function to execute |
-| result|* | Variable | → | * for a function with no result or |
-| ← | Function result (if expected) |
-| param | Text, Number, Date, Object, Collection | → | Parameter(s) to pass to function |
+| result | Variable | ← | Function result (if expected) |
+| * | Operator | → | Function with no result |
+| param | any | → | Parameter(s) to pass to function |
@@ -63,6 +63,6 @@ The "getCustomerInfo" JavaScript function receive a number ID as parameter and r
| | |
| --- | --- |
| Command number | 1043 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-forward-url-available.md b/docs/commands-legacy/wa-forward-url-available.md
index 1666a626c753ac..f5890638b61967 100644
--- a/docs/commands-legacy/wa-forward-url-available.md
+++ b/docs/commands-legacy/wa-forward-url-available.md
@@ -5,7 +5,7 @@ slug: /commands/wa-forward-url-available
displayed_sidebar: docs
---
-**WA Forward URL available** ( {* ;} *object* ) : Boolean
+**WA Forward URL available** ( * ; *object* : Text ) : Boolean
**WA Forward URL available** ( *object* : Field, Variable ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ The command returns **True** if a URL exists and **False** otherwise. More parti
| | |
| --- | --- |
| Command number | 1027 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-current-url.md b/docs/commands-legacy/wa-get-current-url.md
index 80c53e79fc0d66..df161e52182aa8 100644
--- a/docs/commands-legacy/wa-get-current-url.md
+++ b/docs/commands-legacy/wa-get-current-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-current-url
displayed_sidebar: docs
---
-**WA Get current URL** ( {* ;} *object* ) : Text
+**WA Get current URL** ( * ; *object* : Text ) : Text
**WA Get current URL** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ The page displayed is the URL "www.apple.com" and the "www.4d.com" page is in th
| | |
| --- | --- |
| Command number | 1025 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-external-links-filters.md b/docs/commands-legacy/wa-get-external-links-filters.md
index 8bfd7842b53df5..a7361dcf7162c7 100644
--- a/docs/commands-legacy/wa-get-external-links-filters.md
+++ b/docs/commands-legacy/wa-get-external-links-filters.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-external-links-filters
displayed_sidebar: docs
---
-**WA GET EXTERNAL LINKS FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA GET EXTERNAL LINKS FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA GET EXTERNAL LINKS FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ The filters are installed by the [WA SET EXTERNAL LINKS FILTERS](wa-set-external
| | |
| --- | --- |
| Command number | 1033 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-last-filtered-url.md b/docs/commands-legacy/wa-get-last-filtered-url.md
index 58575c72ad82b6..b60bc667e88fa6 100644
--- a/docs/commands-legacy/wa-get-last-filtered-url.md
+++ b/docs/commands-legacy/wa-get-last-filtered-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-last-filtered-url
displayed_sidebar: docs
---
-**WA Get last filtered URL** ( {* ;} *object* ) : Text
+**WA Get last filtered URL** ( * ; *object* : Text ) : Text
**WA Get last filtered URL** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ It is advisable to call this command in the context of the On URL Filtering, On
| | |
| --- | --- |
| Command number | 1035 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-last-url-error.md b/docs/commands-legacy/wa-get-last-url-error.md
index 2d7534e9805d69..24a0e9060f4ce6 100644
--- a/docs/commands-legacy/wa-get-last-url-error.md
+++ b/docs/commands-legacy/wa-get-last-url-error.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-last-url-error
displayed_sidebar: docs
---
-**WA GET LAST URL ERROR** ( {* ;} *object* ; *url* ; *description* ; *errorCode* )
+**WA GET LAST URL ERROR** ( * ; *object* : Text ; *url* : Text ; *description* : Text ; *errorCode* : Integer )
**WA GET LAST URL ERROR** ( *object* : Field, Variable ; *url* : Text ; *description* : Text ; *errorCode* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ It is recommended to call this command within the framework of the On URL Loadin
| | |
| --- | --- |
| Command number | 1034 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-page-content.md b/docs/commands-legacy/wa-get-page-content.md
index 6df9ec2bcc3559..77918998513554 100644
--- a/docs/commands-legacy/wa-get-page-content.md
+++ b/docs/commands-legacy/wa-get-page-content.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-page-content
displayed_sidebar: docs
---
-**WA Get page content** ( {* ;} *object* ) : Text
+**WA Get page content** ( * ; *object* : Text ) : Text
**WA Get page content** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ This command returns an empty string if the contents of the current page is not
| | |
| --- | --- |
| Command number | 1038 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-page-title.md b/docs/commands-legacy/wa-get-page-title.md
index 9b5d5e1fee15e1..fc03b691823fac 100644
--- a/docs/commands-legacy/wa-get-page-title.md
+++ b/docs/commands-legacy/wa-get-page-title.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-page-title
displayed_sidebar: docs
---
-**WA Get page title** ( {* ;} *object* ) : Text
+**WA Get page title** ( * ; *object* : Text ) : Text
**WA Get page title** ( *object* : Field, Variable ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ This command returns an empty string if there is no title available for the curr
| | |
| --- | --- |
| Command number | 1036 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-preference.md b/docs/commands-legacy/wa-get-preference.md
index 31bd3f557752d6..99272f299b0dd9 100644
--- a/docs/commands-legacy/wa-get-preference.md
+++ b/docs/commands-legacy/wa-get-preference.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-preference
displayed_sidebar: docs
---
-**WA GET PREFERENCE** ( {* ;} *object* ; *selector* ; *value* )
+**WA GET PREFERENCE** ( * ; *object* : Text ; *selector* : Integer ; *value* : Variable )
**WA GET PREFERENCE** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ In the *value* parameter, pass a variable that will receive the current value of
| | |
| --- | --- |
| Command number | 1042 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-url-filters.md b/docs/commands-legacy/wa-get-url-filters.md
index 8e53f807729dcc..f772c9c7e6ea94 100644
--- a/docs/commands-legacy/wa-get-url-filters.md
+++ b/docs/commands-legacy/wa-get-url-filters.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-url-filters
displayed_sidebar: docs
---
-**WA GET URL FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA GET URL FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA GET URL FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ The filters are installed by the [WA SET URL FILTERS](wa-set-url-filters.md) com
| | |
| --- | --- |
| Command number | 1031 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-get-url-history.md b/docs/commands-legacy/wa-get-url-history.md
index 7ebbd69dab80af..4fbc805e8c9705 100644
--- a/docs/commands-legacy/wa-get-url-history.md
+++ b/docs/commands-legacy/wa-get-url-history.md
@@ -5,7 +5,7 @@ slug: /commands/wa-get-url-history
displayed_sidebar: docs
---
-**WA GET URL HISTORY** ( {* ;} *object* ; *urlsArr* {; *direction* {; *titlesArr*}} )
+**WA GET URL HISTORY** ( * ; *object* : Text ; *urlsArr* : Text array {; *direction* : Integer {; *titlesArr* : Text array}} )
**WA GET URL HISTORY** ( *object* : Field, Variable ; *urlsArr* : Text array {; *direction* : Integer {; *titlesArr* : Text array}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ If it is passed, the *titlesArr* parameter contains the list of window names ass
| | |
| --- | --- |
| Command number | 1048 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-open-back-url.md b/docs/commands-legacy/wa-open-back-url.md
index 660b166ebe0395..05d3107e1f052c 100644
--- a/docs/commands-legacy/wa-open-back-url.md
+++ b/docs/commands-legacy/wa-open-back-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-open-back-url
displayed_sidebar: docs
---
-**WA OPEN BACK URL** ( {* ;} *object* )
+**WA OPEN BACK URL** ( * ; *object* : Text )
**WA OPEN BACK URL** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If there is no previous URL, the command does nothing. You can test whether a pr
| | |
| --- | --- |
| Command number | 1021 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-open-forward-url.md b/docs/commands-legacy/wa-open-forward-url.md
index 9b7d5b7692ef31..9d40c8c6114b66 100644
--- a/docs/commands-legacy/wa-open-forward-url.md
+++ b/docs/commands-legacy/wa-open-forward-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-open-forward-url
displayed_sidebar: docs
---
-**WA OPEN FORWARD URL** ( {* ;} *object* )
+**WA OPEN FORWARD URL** ( * ; *object* : Text )
**WA OPEN FORWARD URL** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -30,6 +30,6 @@ If there is no next URL (in other words, if the user has never returned to a pre
| | |
| --- | --- |
| Command number | 1022 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-open-url.md b/docs/commands-legacy/wa-open-url.md
index a8438a86fb9a98..9be5b0f7a4f5ca 100644
--- a/docs/commands-legacy/wa-open-url.md
+++ b/docs/commands-legacy/wa-open-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-open-url
displayed_sidebar: docs
---
-**WA OPEN URL** ( {* ;} *object* ; *url* )
+**WA OPEN URL** ( * ; *object* : Text ; *url* : Text )
**WA OPEN URL** ( *object* : Field, Variable ; *url* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ is the same as:
| | |
| --- | --- |
| Command number | 1020 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-open-web-inspector.md b/docs/commands-legacy/wa-open-web-inspector.md
index c362c9b0c30ef1..f76b6c518b2838 100644
--- a/docs/commands-legacy/wa-open-web-inspector.md
+++ b/docs/commands-legacy/wa-open-web-inspector.md
@@ -5,7 +5,7 @@ slug: /commands/wa-open-web-inspector
displayed_sidebar: docs
---
-**WA OPEN WEB INSPECTOR** ( {* ;} *object* )
+**WA OPEN WEB INSPECTOR** ( * ; *object* : Text )
**WA OPEN WEB INSPECTOR** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1736 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-refresh-current-url.md b/docs/commands-legacy/wa-refresh-current-url.md
index 48d537a377a38c..852a7b4e785b01 100644
--- a/docs/commands-legacy/wa-refresh-current-url.md
+++ b/docs/commands-legacy/wa-refresh-current-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-refresh-current-url
displayed_sidebar: docs
---
-**WA REFRESH CURRENT URL** ( {* ;} *object* )
+**WA REFRESH CURRENT URL** ( * ; *object* : Text )
**WA REFRESH CURRENT URL** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1023 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-run-offscreen-area.md b/docs/commands-legacy/wa-run-offscreen-area.md
index 8b9a6c05c1beb8..49d233418ed73f 100644
--- a/docs/commands-legacy/wa-run-offscreen-area.md
+++ b/docs/commands-legacy/wa-run-offscreen-area.md
@@ -5,7 +5,7 @@ slug: /commands/wa-run-offscreen-area
displayed_sidebar: docs
---
-**WA Run offscreen area** ( *parameters* ) : any
+**WA Run offscreen area** ( *parameters* : Object ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -102,7 +102,7 @@ The OK system variable is set to 0 if the timeout has been reached or the [CANCE
| | |
| --- | --- |
| Command number | 1727 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/wa-set-external-links-filters.md b/docs/commands-legacy/wa-set-external-links-filters.md
index d83f73f88cd813..7bea97514d7dc4 100644
--- a/docs/commands-legacy/wa-set-external-links-filters.md
+++ b/docs/commands-legacy/wa-set-external-links-filters.md
@@ -5,7 +5,7 @@ slug: /commands/wa-set-external-links-filters
displayed_sidebar: docs
---
-**WA SET EXTERNAL LINKS FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA SET EXTERNAL LINKS FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA SET EXTERNAL LINKS FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -80,6 +80,6 @@ This example combines the filtering of both sites and external links:
| | |
| --- | --- |
| Command number | 1032 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-set-page-content.md b/docs/commands-legacy/wa-set-page-content.md
index 7d6a9c5bbe91d0..4e95d0c1f734bf 100644
--- a/docs/commands-legacy/wa-set-page-content.md
+++ b/docs/commands-legacy/wa-set-page-content.md
@@ -5,7 +5,7 @@ slug: /commands/wa-set-page-content
displayed_sidebar: docs
---
-**WA SET PAGE CONTENT** ( {* ;} *object* ; *content* ; *baseURL* )
+**WA SET PAGE CONTENT** ( * ; *object* : Text ; *content* : Text ; *baseURL* : Text )
**WA SET PAGE CONTENT** ( *object* : Field, Variable ; *content* : Text ; *baseURL* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ WA SET PAGE CONTENT(MyWArea;"Hello World!
";"f
| | |
| --- | --- |
| Command number | 1037 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-set-preference.md b/docs/commands-legacy/wa-set-preference.md
index 1457281e23c670..87110657ba2ded 100644
--- a/docs/commands-legacy/wa-set-preference.md
+++ b/docs/commands-legacy/wa-set-preference.md
@@ -5,7 +5,7 @@ slug: /commands/wa-set-preference
displayed_sidebar: docs
---
-**WA SET PREFERENCE** ( {* ;} *object* ; *selector* ; *value* )
+**WA SET PREFERENCE** ( * ; *object* : Text ; *selector* : Integer ; *value* : Boolean )
**WA SET PREFERENCE** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Boolean )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ To enable URL drops in the 'myarea' Web area:
| | |
| --- | --- |
| Command number | 1041 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-set-url-filters.md b/docs/commands-legacy/wa-set-url-filters.md
index bfc3e5eb783367..07508442940344 100644
--- a/docs/commands-legacy/wa-set-url-filters.md
+++ b/docs/commands-legacy/wa-set-url-filters.md
@@ -5,7 +5,7 @@ slug: /commands/wa-set-url-filters
displayed_sidebar: docs
---
-**WA SET URL FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA SET URL FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA SET URL FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -143,6 +143,6 @@ You want to deny access to specific IP addresses:
| | |
| --- | --- |
| Command number | 1030 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-stop-loading-url.md b/docs/commands-legacy/wa-stop-loading-url.md
index 21f8a4589fe82f..44571a6df99cc0 100644
--- a/docs/commands-legacy/wa-stop-loading-url.md
+++ b/docs/commands-legacy/wa-stop-loading-url.md
@@ -5,7 +5,7 @@ slug: /commands/wa-stop-loading-url
displayed_sidebar: docs
---
-**WA STOP LOADING URL** ( {* ;} *object* )
+**WA STOP LOADING URL** ( * ; *object* : Text )
**WA STOP LOADING URL** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Command number | 1024 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-zoom-in.md b/docs/commands-legacy/wa-zoom-in.md
index bc6235b266bd65..3d729a2c6b6936 100644
--- a/docs/commands-legacy/wa-zoom-in.md
+++ b/docs/commands-legacy/wa-zoom-in.md
@@ -5,7 +5,7 @@ slug: /commands/wa-zoom-in
displayed_sidebar: docs
---
-**WA ZOOM IN** ( {* ;} *object* )
+**WA ZOOM IN** ( * ; *object* : Text )
**WA ZOOM IN** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ Under Windows, the scope of this command is global: the configuration is retaine
| | |
| --- | --- |
| Command number | 1039 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/wa-zoom-out.md b/docs/commands-legacy/wa-zoom-out.md
index 467595e6cabe93..f9dfd38d6b75c1 100644
--- a/docs/commands-legacy/wa-zoom-out.md
+++ b/docs/commands-legacy/wa-zoom-out.md
@@ -5,7 +5,7 @@ slug: /commands/wa-zoom-out
displayed_sidebar: docs
---
-**WA ZOOM OUT** ( {* ;} *object* )
+**WA ZOOM OUT** ( * ; *object* : Text )
**WA ZOOM OUT** ( *object* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ Under Windows, the scope of this command is global: the configuration is retaine
| | |
| --- | --- |
| Command number | 1040 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/web-get-body-part-count.md b/docs/commands-legacy/web-get-body-part-count.md
index 3ec063e0ea46dd..6038cbf1a85968 100644
--- a/docs/commands-legacy/web-get-body-part-count.md
+++ b/docs/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Refer to the example for the [WEB GET BODY PART](web-get-body-part.md) command.
| | |
| --- | --- |
| Command number | 1211 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-body-part.md b/docs/commands-legacy/web-get-body-part.md
index 3c921a70a591b2..f00609b5bbee18 100644
--- a/docs/commands-legacy/web-get-body-part.md
+++ b/docs/commands-legacy/web-get-body-part.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-body-part
displayed_sidebar: docs
---
-**WEB GET BODY PART** ( *part* ; *contents* ; *name* ; *mimeType* ; *fileName* )
+**WEB GET BODY PART** ( *part* : Integer ; *contents* : Blob, Text ; *name* : Text ; *mimeType* : Text ; *fileName* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ Here is the code for GetFile:
| | |
| --- | --- |
| Command number | 1212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-current-session-id.md b/docs/commands-legacy/web-get-current-session-id.md
index ea61b773adfb90..77e422345d737b 100644
--- a/docs/commands-legacy/web-get-current-session-id.md
+++ b/docs/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ If this command is called outside of the context of a Web session, it returns an
| | |
| --- | --- |
| Command number | 1162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-http-body.md b/docs/commands-legacy/web-get-http-body.md
index 78177e4a3a4ff8..e54976fe253ed7 100644
--- a/docs/commands-legacy/web-get-http-body.md
+++ b/docs/commands-legacy/web-get-http-body.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-body
displayed_sidebar: docs
---
-**WEB GET HTTP BODY** ( *body* )
+**WEB GET HTTP BODY** ( *body* : Blob, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ When the form is submitted to the Web server, the $requestText variable receives
| | |
| --- | --- |
| Command number | 814 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-http-header.md b/docs/commands-legacy/web-get-http-header.md
index 144555eedec4cf..7b2eb2cf9f6a18 100644
--- a/docs/commands-legacy/web-get-http-header.md
+++ b/docs/commands-legacy/web-get-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-header
displayed_sidebar: docs
---
-**WEB GET HTTP HEADER** ( *header* )
**WEB GET HTTP HEADER** ( *fieldArray* ; *valueArray* )
+**WEB GET HTTP HEADER** ( *header* : Text, Text array )
**WEB GET HTTP HEADER** ( *fieldArray* : Text, Text array ; *valueArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -123,6 +123,6 @@ The following method allows getting any HTTP request header field content:
| | |
| --- | --- |
| Command number | 697 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-option.md b/docs/commands-legacy/web-get-option.md
index f6ad169e8ade30..3c70f7caca234c 100644
--- a/docs/commands-legacy/web-get-option.md
+++ b/docs/commands-legacy/web-get-option.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-option
displayed_sidebar: docs
---
-**WEB GET OPTION** ( *selector* ; *value* )
+**WEB GET OPTION** ( *selector* : Integer ; *value* : Integer, Text, Collection )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ When you use the Web debug log *selector*, you can receive one of the following
| | |
| --- | --- |
| Command number | 1209 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-server-info.md b/docs/commands-legacy/web-get-server-info.md
index 9c0877ddaffbae..b3f87ed0f17bbb 100644
--- a/docs/commands-legacy/web-get-server-info.md
+++ b/docs/commands-legacy/web-get-server-info.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-server-info
displayed_sidebar: docs
---
-**WEB Get server info** {( *withCache* )} : Object
+**WEB Get server info** ( *withCache* : Boolean ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -136,6 +136,6 @@ After you execute the following code:
| | |
| --- | --- |
| Command number | 1531 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-statistics.md b/docs/commands-legacy/web-get-statistics.md
index b16e04b575083b..ea16a5ae938081 100644
--- a/docs/commands-legacy/web-get-statistics.md
+++ b/docs/commands-legacy/web-get-statistics.md
@@ -5,12 +5,12 @@ slug: /commands/web-get-statistics
displayed_sidebar: docs
---
-**WEB GET STATISTICS** ( *pages* ; *hits* ; *usage* )
+**WEB GET STATISTICS** ( *pages* : Text array ; *hits* : Integer array ; *usage* : Integer )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
| pages | Text array | ← | Names of the most consulted pages |
-| hits | Array integer | ← | Number of hits for each page |
+| hits | Integer array | ← | Number of hits for each page |
| usage | Integer | ← | Percentage of the cache used |
@@ -66,6 +66,6 @@ You can send the "stats.shtm" page using a URL link or using the [WEB SEND FILE]
| | |
| --- | --- |
| Command number | 658 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-get-variables.md b/docs/commands-legacy/web-get-variables.md
index db602d05a046cf..8bce63ba5544c1 100644
--- a/docs/commands-legacy/web-get-variables.md
+++ b/docs/commands-legacy/web-get-variables.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-variables
displayed_sidebar: docs
---
-**WEB GET VARIABLES** ( *nameArray* ; *valueArray* )
+**WEB GET VARIABLES** ( *nameArray* : Text array ; *valueArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ The vNAME variable contains ROBERT and the vCITY variable contains DALLAS.
| | |
| --- | --- |
| Command number | 683 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-is-secured-connection.md b/docs/commands-legacy/web-is-secured-connection.md
index a39bb1f9ff5ad6..2bbcac605bb0d7 100644
--- a/docs/commands-legacy/web-is-secured-connection.md
+++ b/docs/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ This command allows, for example, denying connections made in a non-secured mode
| | |
| --- | --- |
| Command number | 698 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-is-server-running.md b/docs/commands-legacy/web-is-server-running.md
index 51ef9626403522..c5526cc7cb082f 100644
--- a/docs/commands-legacy/web-is-server-running.md
+++ b/docs/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ You want to check that the Web server is running:
| | |
| --- | --- |
| Command number | 1313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-legacy-close-session.md b/docs/commands-legacy/web-legacy-close-session.md
index 3df0de01eb67ff..fe8a2939014829 100644
--- a/docs/commands-legacy/web-legacy-close-session.md
+++ b/docs/commands-legacy/web-legacy-close-session.md
@@ -5,7 +5,7 @@ slug: /commands/web-legacy-close-session
displayed_sidebar: docs
---
-**WEB LEGACY CLOSE SESSION** ( *sessionID* )
+**WEB LEGACY CLOSE SESSION** ( *sessionID* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ After this command is executed, if a Web client sends a request using an invalid
| | |
| --- | --- |
| Command number | 1208 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-legacy-get-session-expiration.md b/docs/commands-legacy/web-legacy-get-session-expiration.md
index 21e34da792ce24..674e93c27b19a5 100644
--- a/docs/commands-legacy/web-legacy-get-session-expiration.md
+++ b/docs/commands-legacy/web-legacy-get-session-expiration.md
@@ -5,7 +5,7 @@ slug: /commands/web-legacy-get-session-expiration
displayed_sidebar: docs
---
-**WEB LEGACY GET SESSION EXPIRATION** ( *sessionID* ; *expDate* ; *expTime* )
+**WEB LEGACY GET SESSION EXPIRATION** ( *sessionID* : Text ; *expDate* : Date ; *expTime* : Time )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ The *expDate* parameter receives the expiration date and the *expTime* parameter
| | |
| --- | --- |
| Command number | 1207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-send-blob.md b/docs/commands-legacy/web-send-blob.md
index b71564c548ccfb..199fa04571ca19 100644
--- a/docs/commands-legacy/web-send-blob.md
+++ b/docs/commands-legacy/web-send-blob.md
@@ -5,11 +5,11 @@ slug: /commands/web-send-blob
displayed_sidebar: docs
---
-**WEB SEND BLOB** ( *blob* ; *type* )
+**WEB SEND BLOB** ( *blob* : Blob ; *type* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB to send to the browser |
+| Blob | Blob | → | BLOB to send to the browser |
| type | Text | → | Data type of the BLOB |
@@ -43,6 +43,6 @@ Refer to the example of the [PICTURE TO BLOB](picture-to-blob.md) routine.
| | |
| --- | --- |
| Command number | 654 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-send-file.md b/docs/commands-legacy/web-send-file.md
index 967e18c2ebb13a..f6535f69ea0d7f 100644
--- a/docs/commands-legacy/web-send-file.md
+++ b/docs/commands-legacy/web-send-file.md
@@ -5,7 +5,7 @@ slug: /commands/web-send-file
displayed_sidebar: docs
---
-**WEB SEND FILE** ( *htmlFile* )
+**WEB SEND FILE** ( *htmlFile* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,7 +55,7 @@ If the file to be sent exists and if the timeout has not run out, OK is set to 1
| | |
| --- | --- |
| Command number | 619 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/web-send-http-redirect.md b/docs/commands-legacy/web-send-http-redirect.md
index af82fad96b1c8e..cab869f56e1ce3 100644
--- a/docs/commands-legacy/web-send-http-redirect.md
+++ b/docs/commands-legacy/web-send-http-redirect.md
@@ -5,7 +5,7 @@ slug: /commands/web-send-http-redirect
displayed_sidebar: docs
---
-**WEB SEND HTTP REDIRECT** ( *url* {; *} )
+**WEB SEND HTTP REDIRECT** ( *url* : Text {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -46,6 +46,6 @@ WEB SEND HTTP REDIRECT($targetURL)
| | |
| --- | --- |
| Command number | 659 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-send-raw-data.md b/docs/commands-legacy/web-send-raw-data.md
index c6eba0afe312ef..3233e72c3307a6 100644
--- a/docs/commands-legacy/web-send-raw-data.md
+++ b/docs/commands-legacy/web-send-raw-data.md
@@ -5,7 +5,7 @@ slug: /commands/web-send-raw-data
displayed_sidebar: docs
---
-**WEB SEND RAW DATA** ( *data* {; *} )
+**WEB SEND RAW DATA** ( *data* : Blob {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -89,6 +89,6 @@ This example illustrates the use of the chunked option with the **WEB SEND RAW D
| | |
| --- | --- |
| Command number | 815 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-send-text.md b/docs/commands-legacy/web-send-text.md
index 7aa3da89a787ba..c9501003ede9d9 100644
--- a/docs/commands-legacy/web-send-text.md
+++ b/docs/commands-legacy/web-send-text.md
@@ -5,7 +5,7 @@ slug: /commands/web-send-text
displayed_sidebar: docs
---
-**WEB SEND TEXT** ( *htmlText* {; *type*} )
+**WEB SEND TEXT** ( *htmlText* : Text {; *type* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ The following method:
| | |
| --- | --- |
| Command number | 677 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-service-authenticate.md b/docs/commands-legacy/web-service-authenticate.md
index ee8ac2d3a80723..daf609f10e017f 100644
--- a/docs/commands-legacy/web-service-authenticate.md
+++ b/docs/commands-legacy/web-service-authenticate.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-authenticate
displayed_sidebar: docs
---
-**WEB SERVICE AUTHENTICATE** ( *name* ; *password* {; *authMethod*} {; *} )
+**WEB SERVICE AUTHENTICATE** ( *name* : Text ; *password* : Text {; *authMethod* : Integer} {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ Authentication with a Web Service located behind a proxy:
| | |
| --- | --- |
| Command number | 786 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-service-call.md b/docs/commands-legacy/web-service-call.md
index 5070de15012f6e..5c5626cec116e2 100644
--- a/docs/commands-legacy/web-service-call.md
+++ b/docs/commands-legacy/web-service-call.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-call
displayed_sidebar: docs
---
-**WEB SERVICE CALL** ( *accessURL* ; *soapAction* ; *methodName* ; *nameSpace* {; *complexType* {; *}} )
+**WEB SERVICE CALL** ( *accessURL* : Text ; *soapAction* : Text ; *methodName* : Text ; *nameSpace* : Text {; *complexType* : Integer {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -163,7 +163,7 @@ If the request has been correctly routed and the Web Service has accepted it, th
| | |
| --- | --- |
| Command number | 778 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/web-service-get-info.md b/docs/commands-legacy/web-service-get-info.md
index 9818ad8fa586ef..ba7bd51f97b5b4 100644
--- a/docs/commands-legacy/web-service-get-info.md
+++ b/docs/commands-legacy/web-service-get-info.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-get-info
displayed_sidebar: docs
---
-**WEB SERVICE Get info** ( *infoType* ) : Text
+**WEB SERVICE Get info** ( *infoType* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ An empty string is returned when no information is available, more particularly
| | |
| --- | --- |
| Command number | 780 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-service-get-result.md b/docs/commands-legacy/web-service-get-result.md
index 0e3a89adeb6cd1..24bb3772dc2f3b 100644
--- a/docs/commands-legacy/web-service-get-result.md
+++ b/docs/commands-legacy/web-service-get-result.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-get-result
displayed_sidebar: docs
---
-**WEB SERVICE GET RESULT** ( *returnValue* {; *returnName* {; *}} )
+**WEB SERVICE GET RESULT** ( *returnValue* : Variable {; *returnName* : Text {; *}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Imagine that a Web Service returns the current time in any city in the world. Th
| | |
| --- | --- |
| Command number | 779 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-service-set-option.md b/docs/commands-legacy/web-service-set-option.md
index 66bc571e58957d..decfff3fb1e44a 100644
--- a/docs/commands-legacy/web-service-set-option.md
+++ b/docs/commands-legacy/web-service-set-option.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-set-option
displayed_sidebar: docs
---
-**WEB SERVICE SET OPTION** ( *option* ; *value* )
+**WEB SERVICE SET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -67,6 +67,6 @@ Using version 1.2 of the SOAP protocol:
| | |
| --- | --- |
| Command number | 901 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-service-set-parameter.md b/docs/commands-legacy/web-service-set-parameter.md
index 905ae670ba3e5f..1edd503449e960 100644
--- a/docs/commands-legacy/web-service-set-parameter.md
+++ b/docs/commands-legacy/web-service-set-parameter.md
@@ -5,7 +5,7 @@ slug: /commands/web-service-set-parameter
displayed_sidebar: docs
---
-**WEB SERVICE SET PARAMETER** ( *name* ; *value* {; *soapType*} )
+**WEB SERVICE SET PARAMETER** ( *name* : Text ; *value* : Variable {; *soapType* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,6 +78,6 @@ This example defines two parameters:
| | |
| --- | --- |
| Command number | 777 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-set-home-page.md b/docs/commands-legacy/web-set-home-page.md
index da834e75d25cec..b05e158708344b 100644
--- a/docs/commands-legacy/web-set-home-page.md
+++ b/docs/commands-legacy/web-set-home-page.md
@@ -5,7 +5,7 @@ slug: /commands/web-set-home-page
displayed_sidebar: docs
---
-**WEB SET HOME PAGE** ( *homePage* )
+**WEB SET HOME PAGE** ( *homePage* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -33,6 +33,6 @@ To stop sending *homePage* as home page for the current Web process, execute **W
| | |
| --- | --- |
| Command number | 639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-set-http-header.md b/docs/commands-legacy/web-set-http-header.md
index a6b7f79428044b..0213193e716ae9 100644
--- a/docs/commands-legacy/web-set-http-header.md
+++ b/docs/commands-legacy/web-set-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-set-http-header
displayed_sidebar: docs
---
-**WEB SET HTTP HEADER** ( *header* )
**WEB SET HTTP HEADER** ( *fieldArray* ; *valueArray* )
+**WEB SET HTTP HEADER** ( *header* : Text, Text array )
**WEB SET HTTP HEADER** ( *fieldArray* : Text, Text array ; *valueArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ If you do not specify a state, it will automatically be HTTP/1.0 200 OK. By defa
| | |
| --- | --- |
| Command number | 660 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-set-option.md b/docs/commands-legacy/web-set-option.md
index f8e93581a479f0..abf4c4730c0e44 100644
--- a/docs/commands-legacy/web-set-option.md
+++ b/docs/commands-legacy/web-set-option.md
@@ -5,7 +5,7 @@ slug: /commands/web-set-option
displayed_sidebar: docs
---
-**WEB SET OPTION** ( *selector* ; *value* )
+**WEB SET OPTION** ( *selector* : Integer ; *value* : Integer, Text, Collection )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -86,6 +86,6 @@ A log entry looks like this:
| | |
| --- | --- |
| Command number | 5 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-set-root-folder.md b/docs/commands-legacy/web-set-root-folder.md
index 7dcb1667b52475..73d965f90d8b71 100644
--- a/docs/commands-legacy/web-set-root-folder.md
+++ b/docs/commands-legacy/web-set-root-folder.md
@@ -5,7 +5,7 @@ slug: /commands/web-set-root-folder
displayed_sidebar: docs
---
-**WEB SET ROOT FOLDER** ( *rootFolder* )
+**WEB SET ROOT FOLDER** ( *rootFolder* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,7 +43,7 @@ If you specify an invalid pathname, an OS File manager error is generated. You c
| | |
| --- | --- |
| Command number | 634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands-legacy/web-start-server.md b/docs/commands-legacy/web-start-server.md
index 4676a307ac2757..aa62815ab66e0e 100644
--- a/docs/commands-legacy/web-start-server.md
+++ b/docs/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ If the Web Server is successfully started, **OK** is set to 1; otherwise **OK**
| | |
| --- | --- |
| Command number | 617 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/web-stop-server.md b/docs/commands-legacy/web-stop-server.md
index 3d49ba25e4644b..6172a40d7863a5 100644
--- a/docs/commands-legacy/web-stop-server.md
+++ b/docs/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ If the Web server has not been started, the command does nothing.
| | |
| --- | --- |
| Command number | 618 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/web-validate-digest.md b/docs/commands-legacy/web-validate-digest.md
index 22316cf4aa6b07..194568c0b2005a 100644
--- a/docs/commands-legacy/web-validate-digest.md
+++ b/docs/commands-legacy/web-validate-digest.md
@@ -5,7 +5,7 @@ slug: /commands/web-validate-digest
displayed_sidebar: docs
---
-**WEB Validate digest** ( *userName* ; *password* ) : Boolean
+**WEB Validate digest** ( *userName* : Text ; *password* : Text ) : Boolean
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ Example using *On Web Authentication Database Method* in Digest mode:
| | |
| --- | --- |
| Command number | 946 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/window-kind.md b/docs/commands-legacy/window-kind.md
index 2eff40a6b8f582..ca27ab5bd5ca88 100644
--- a/docs/commands-legacy/window-kind.md
+++ b/docs/commands-legacy/window-kind.md
@@ -5,7 +5,7 @@ slug: /commands/window-kind
displayed_sidebar: docs
---
-**Window kind** {( *window* )} : Integer
+**Window kind** ( *window* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ See example for the [WINDOW LIST](window-list.md) command.
| | |
| --- | --- |
| Command number | 445 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/window-list.md b/docs/commands-legacy/window-list.md
index 7cd32fd6e7e835..d52411c83540d5 100644
--- a/docs/commands-legacy/window-list.md
+++ b/docs/commands-legacy/window-list.md
@@ -5,7 +5,7 @@ slug: /commands/window-list
displayed_sidebar: docs
---
-**WINDOW LIST** ( *windows* {; *} )
+**WINDOW LIST** ( *windows* : Array {; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -56,6 +56,6 @@ The following project method tiles all the current open window, except floating
| | |
| --- | --- |
| Command number | 442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/window-process.md b/docs/commands-legacy/window-process.md
index 07076f285e12cb..4c1f7c420f2dfb 100644
--- a/docs/commands-legacy/window-process.md
+++ b/docs/commands-legacy/window-process.md
@@ -5,7 +5,7 @@ slug: /commands/window-process
displayed_sidebar: docs
---
-**Window process** {( *window* )} : Integer
+**Window process** ( *window* : Integer ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -29,6 +29,6 @@ If you omit the *window* parameter, Window process returns the process of the cu
| | |
| --- | --- |
| Command number | 446 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands-legacy/windows-alt-down.md b/docs/commands-legacy/windows-alt-down.md
index 020d86a15d2765..3321c42b5ca858 100644
--- a/docs/commands-legacy/windows-alt-down.md
+++ b/docs/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/windows-ctrl-down.md b/docs/commands-legacy/windows-ctrl-down.md
index 3e1fef9a5c20a4..fec89c07f0a230 100644
--- a/docs/commands-legacy/windows-ctrl-down.md
+++ b/docs/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ See example for the [Shift down](shift-down.md) command.
| | |
| --- | --- |
| Command number | 562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/write-picture-file.md b/docs/commands-legacy/write-picture-file.md
index 9344e408da7db6..3244f539558195 100644
--- a/docs/commands-legacy/write-picture-file.md
+++ b/docs/commands-legacy/write-picture-file.md
@@ -5,7 +5,7 @@ slug: /commands/write-picture-file
displayed_sidebar: docs
---
-**WRITE PICTURE FILE** ( *fileName* ; *picture* {; *codec*} )
+**WRITE PICTURE FILE** ( *fileName* : Text ; *picture* : Picture {; *codec* : Text} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -53,7 +53,7 @@ If the command is executed successfully, the system variable Document contains t
| | |
| --- | --- |
| Command number | 680 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK, Document |
diff --git a/docs/commands-legacy/xml-decode.md b/docs/commands-legacy/xml-decode.md
index e4ea41fc516cab..a8ab0508ec3920 100644
--- a/docs/commands-legacy/xml-decode.md
+++ b/docs/commands-legacy/xml-decode.md
@@ -5,7 +5,7 @@ slug: /commands/xml-decode
displayed_sidebar: docs
---
-**XML DECODE** ( *xmlValue* ; *4Dvar* )
+**XML DECODE** ( *xmlValue* : Text ; *4Dvar* : Field, Variable )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -78,6 +78,6 @@ Example of XML document:
| | |
| --- | --- |
| Command number | 1091 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/xml-get-error.md b/docs/commands-legacy/xml-get-error.md
index fa1e3ab837aa2a..9cadc0d9de83f8 100644
--- a/docs/commands-legacy/xml-get-error.md
+++ b/docs/commands-legacy/xml-get-error.md
@@ -5,7 +5,7 @@ slug: /commands/xml-get-error
displayed_sidebar: docs
---
-**XML GET ERROR** ( *elementRef* ; *errorText* {; *row* {; *column*}} )
+**XML GET ERROR** ( *elementRef* : Text ; *errorText* : Variable {; *row* : Variable {; *column* : Variable}} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -35,7 +35,7 @@ If the command has been correctly executed, the system variable OK is set to 1\.
| | |
| --- | --- |
| Command number | 732 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands-legacy/xml-get-options.md b/docs/commands-legacy/xml-get-options.md
index d267d6e682ba76..66a71ca0193417 100644
--- a/docs/commands-legacy/xml-get-options.md
+++ b/docs/commands-legacy/xml-get-options.md
@@ -5,7 +5,7 @@ slug: /commands/xml-get-options
displayed_sidebar: docs
---
-**XML GET OPTIONS** ( *elementRef* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
**XML GET OPTIONS** ( *document* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
+**XML GET OPTIONS** ( *elementRef* : Text ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
**XML GET OPTIONS** ( *document* : Text ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ In selector, pass a constant of the "*XML*" theme indicating the option to get.
| | |
| --- | --- |
| Command number | 1096 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/xml-set-options.md b/docs/commands-legacy/xml-set-options.md
index cf9dac6d6574c0..8abb5184ef1c40 100644
--- a/docs/commands-legacy/xml-set-options.md
+++ b/docs/commands-legacy/xml-set-options.md
@@ -5,7 +5,7 @@ slug: /commands/xml-set-options
displayed_sidebar: docs
---
-**XML SET OPTIONS** ( *elementRef* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
**XML SET OPTIONS** ( *document* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
+**XML SET OPTIONS** ( *elementRef* : Text ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
**XML SET OPTIONS** ( *document* : Text ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -71,6 +71,6 @@ Insertion of an SVG picture:
| | |
| --- | --- |
| Command number | 1090 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands-legacy/year-of.md b/docs/commands-legacy/year-of.md
index 6b000c5648d3cc..65bc0a7ca38094 100644
--- a/docs/commands-legacy/year-of.md
+++ b/docs/commands-legacy/year-of.md
@@ -5,7 +5,7 @@ slug: /commands/year-of
displayed_sidebar: docs
---
-**Year of** ( *date* ) : Integer
+**Year of** ( *date* : Date ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ See example for the command [Current date](current-date.md).
| | |
| --- | --- |
| Command number | 25 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/4d.md b/docs/commands/4d.md
index 4e1da7378ec8c2..a70fc2e3b89b8b 100644
--- a/docs/commands/4d.md
+++ b/docs/commands/4d.md
@@ -18,6 +18,6 @@ The **4D** keyword is described in the [**Concept page for Classes**](../Concept
| | |
| --- | --- |
| Command number | 1709 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/call-chain.md b/docs/commands/call-chain.md
index 1db9a7354b0918..efda71b6b819da 100644
--- a/docs/commands/call-chain.md
+++ b/docs/commands/call-chain.md
@@ -95,6 +95,6 @@ If a form object method is executed, the call chain could contain (for example):
| | |
| --- | --- |
| Command number | 1662 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/command-name.md b/docs/commands/command-name.md
index f1ca8837057721..0a447d38831b22 100644
--- a/docs/commands/command-name.md
+++ b/docs/commands/command-name.md
@@ -5,7 +5,7 @@ slug: /commands/command-name
displayed_sidebar: docs
---
-**Command name** ( *command* {; *info* {; *theme*}} ) : Text
+**Command name** ( *command* : Integer {; *info* : Integer {; *theme* : Text}} ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -138,7 +138,7 @@ Until(OK=0) //end of existing commands
| | |
| --- | --- |
| Command number | 538 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | OK |
diff --git a/docs/commands/compile-project.md b/docs/commands/compile-project.md
index 64302fb363a28d..c34ca61c3d1ecf 100644
--- a/docs/commands/compile-project.md
+++ b/docs/commands/compile-project.md
@@ -5,7 +5,7 @@ slug: /commands/compile-project
displayed_sidebar: docs
---
-**Compile project** {( {*projectFile*}{;}{*options*} )} : Object
+**Compile project** ( {*options* : Object} ) : Object
**Compile project** ( *projectFile* : 4D.File } {; *options* : Object} ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -196,6 +196,6 @@ var $result:=Compile project($options)
| | |
| --- | --- |
| Command number | 1760 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/create-deployment-license.md b/docs/commands/create-deployment-license.md
index 0084093004f50c..6ab71e52555d4a 100644
--- a/docs/commands/create-deployment-license.md
+++ b/docs/commands/create-deployment-license.md
@@ -14,7 +14,7 @@ displayed_sidebar: docs
-**Create deployment license** ( *mergedApp* ; *autoLicenseTarget* ) : Object
**Create deployment license** ( *mergedApp* ; *buildLicense* {; *oemLicense*} ) : Object
+**Create deployment license** ( *mergedApp* : 4D.Folder ; *autoLicenseTarget* : Integer ) : Object
**Create deployment license** ( *mergedApp* : 4D.Folder ; *buildLicense* : 4D.File {; *oemLicense* : 4D.File} ) : Object
| Parameter | Type | | Description |
@@ -121,6 +121,6 @@ Designate a license to use:
| | |
| --- | --- |
| Command number | 1811 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/create-entity-selection.md b/docs/commands/create-entity-selection.md
index 593c2ca6300337..f62189161ab315 100644
--- a/docs/commands/create-entity-selection.md
+++ b/docs/commands/create-entity-selection.md
@@ -49,4 +49,4 @@ $employees:=Create entity selection([Employee])
| | |
| --- | --- |
| Command number | 1512 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/cs.md b/docs/commands/cs.md
index 1b287d6d271319..2447357f717529 100644
--- a/docs/commands/cs.md
+++ b/docs/commands/cs.md
@@ -17,6 +17,6 @@ The **cs** keyword is described in the [**Concept page for Classes**](../Concept
| | |
| --- | --- |
| Command number | 1710 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/dialog.md b/docs/commands/dialog.md
index 71b81163aa02a7..16b64bc6cd1889 100644
--- a/docs/commands/dialog.md
+++ b/docs/commands/dialog.md
@@ -4,7 +4,7 @@ title: DIALOG
displayed_sidebar: docs
---
-**DIALOG** ( {*aTable* ;} *form* {; *formData*}{; *} )
+**DIALOG** ( {*aTable* : Table ;} *form* : Text, Object {; *formData* : Object}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -175,6 +175,6 @@ After a call to **DIALOG**, if the dialog is accepted, OK is set to 1; if it is
| | |
| --- | --- |
| Command number | 40 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands/ds.md b/docs/commands/ds.md
index 81ef8b0e5de427..f66ed934f633ff 100644
--- a/docs/commands/ds.md
+++ b/docs/commands/ds.md
@@ -74,6 +74,6 @@ $result:=ds.Employee.query("firstName = :1";"S@")
| | |
| --- | --- |
| Command number | 1482 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/file.md b/docs/commands/file.md
index 045d715d32a4cd..6b95c214a68318 100644
--- a/docs/commands/file.md
+++ b/docs/commands/file.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**File** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.File
**File** ( *fileConstant* : Integer { ; \* } ) : 4D.File
+**File** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.File
**File** ( *fileConstant* : Integer { ; * } ) : 4D.File
@@ -22,7 +22,7 @@ displayed_sidebar: docs
|path|Text|→ |File path|
|fileConstant|Integer|→|4D file constant|
|pathType|Integer|→ |`fk posix path` (default) or `fk platform path`|
-|*|operator|→ |* to return file of host database|
+|*|Operator|→ |* to return file of host database|
|Result|[4D.File](../API/FileClass.md)|←|New file object|
@@ -92,6 +92,6 @@ If the command is called from a component, pass the optional `*` parameter to ge
| | |
| --- | --- |
| Command number | 1566 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/folder.md b/docs/commands/folder.md
index 7017f6fe4ec692..6510f619919829 100644
--- a/docs/commands/folder.md
+++ b/docs/commands/folder.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; \* } ) : 4D.Folder
+**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; * } ) : 4D.Folder
@@ -22,7 +22,7 @@ displayed_sidebar: docs
|path|Text|→ |Folder path|
|folderConstant|Integer|→ |4D folder constant|
|pathType|Integer|→ |`fk posix path` (default) or `fk platform path`|
-|*|operator|→ |* to return folder of host database|
+|*|Operator|→ |* to return folder of host database|
|Result|[4D.Folder](../API/FolderClass.md)|←|New folder object|
@@ -30,7 +30,7 @@ displayed_sidebar: docs
The `Folder` command creates and returns a new object of the [`4D.Folder`](../API/FolderClass.md) type. The command accepts two syntaxes:
-**Folder ( path { ; pathType } { ; \* } )**
+**Folder ( path { ; pathType } { ; * } )**
In the *path* parameter, pass a folder path string. You can use a custom string or a [filesystem](../Concepts/paths.md#filesystem-pathnames) (e.g., "/DATA").
@@ -43,7 +43,7 @@ By default, 4D expects a path expressed with the POSIX syntax. If you work with
|fk platform path|1|Path expressed with a platform-specific syntax (mandatory in case of platform pathname)|
|fk posix path|0|Path expressed with POSIX syntax (default)
-**Folder ( folderConstant { ; \* } )**
+**Folder ( folderConstant { ; * } )**
In the *folderConstant* parameter, pass a 4D built-in or system folder, using one of the following constants:
@@ -82,6 +82,6 @@ If the command is called from a component, pass the optional `*` parameter to ge
| | |
| --- | --- |
| Command number | 1567 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/form-edit.md b/docs/commands/form-edit.md
index 97f535f8875bb3..a2574dec7688f8 100644
--- a/docs/commands/form-edit.md
+++ b/docs/commands/form-edit.md
@@ -4,7 +4,7 @@ title: FORM EDIT
displayed_sidebar: docs
---
-**FORM EDIT** ( {*aTable* ;} *form* )
**FORM EDIT** ( {*aTable* ;} *form* ; *object* )
+**FORM EDIT** ( {*aTable* : Table ;} *form* : Text )
**FORM EDIT** ( {*aTable* : Table ;} *form* : Text ; *object* : Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ To open the *ContactPage* project form with "name-input" object selected:
| | |
| --- | --- |
| Command number | 1749 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/form-event-code.md b/docs/commands/form-event-code.md
index a5f1db51e97113..f4a83c261c97bb 100644
--- a/docs/commands/form-event-code.md
+++ b/docs/commands/form-event-code.md
@@ -355,6 +355,6 @@ As a result, the red rectangle follows the scrolling of the list box:
| | |
| --- | --- |
| Command number | 388 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/form-event.md b/docs/commands/form-event.md
index a5e0b858f26e31..e7cbbeced1af3e 100644
--- a/docs/commands/form-event.md
+++ b/docs/commands/form-event.md
@@ -104,6 +104,6 @@ The resulting list box when rows are selected:
| | |
| --- | --- |
| Command number | 1606 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/form-load.md b/docs/commands/form-load.md
index 095b08edf177b5..ac7d4d681376e6 100644
--- a/docs/commands/form-load.md
+++ b/docs/commands/form-load.md
@@ -4,7 +4,7 @@ title: FORM LOAD
displayed_sidebar: docs
---
-**FORM LOAD** ( {*aTable* ;} *form* {; *formData*}{; *} )
+**FORM LOAD** ( {*aTable* : Table ;} *form* : Text, Object {; *formData* : Object}{; *} )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -165,6 +165,6 @@ You want to print a form containing a list box. During the *on load* event, you
| | |
| --- | --- |
| Command number | 1103 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/form.md b/docs/commands/form.md
index ee6f41345c822f..841436a256920b 100644
--- a/docs/commands/form.md
+++ b/docs/commands/form.md
@@ -112,6 +112,6 @@ If values are edited and the OK button is clicked, the field is updated (the par
| | |
| --- | --- |
| Command number | 1466 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/formula-from-string.md b/docs/commands/formula-from-string.md
index d7941ffcbf5fc8..cb1e68334e0c18 100644
--- a/docs/commands/formula-from-string.md
+++ b/docs/commands/formula-from-string.md
@@ -80,6 +80,6 @@ The following code will create a dialog accepting a formula in text format:
| | |
| --- | --- |
| Command number | 1601 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/formula.md b/docs/commands/formula.md
index 4369a9da1d579d..89d3da781a6d5d 100644
--- a/docs/commands/formula.md
+++ b/docs/commands/formula.md
@@ -152,6 +152,6 @@ Calling a formula using object notation:
| | |
| --- | --- |
| Command number | 1597 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/generate-uuid.md b/docs/commands/generate-uuid.md
index b9ab342ff15186..5eee56069306b1 100644
--- a/docs/commands/generate-uuid.md
+++ b/docs/commands/generate-uuid.md
@@ -5,7 +5,7 @@ slug: /commands/generate-uuid
displayed_sidebar: docs
---
-**Generate UUID** : Text
**Generate UUID**( *version* ) : Text
+**Generate UUID** : Text
**Generate UUID**( *version* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ Generation of a UUID in a variable:
| | |
| --- | --- |
| Command number | 1066 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/http-parse-message.md b/docs/commands/http-parse-message.md
index 30dcad88b07ca6..5df7d28cb9a80c 100644
--- a/docs/commands/http-parse-message.md
+++ b/docs/commands/http-parse-message.md
@@ -86,4 +86,4 @@ var $parsedMessage : Object:=HTTP Parse message($message)
| | |
| --- | --- |
| Command number | 1824 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/imap-new-transporter.md b/docs/commands/imap-new-transporter.md
index d0c7ad3e2e6a89..7fed953eb2761b 100644
--- a/docs/commands/imap-new-transporter.md
+++ b/docs/commands/imap-new-transporter.md
@@ -76,6 +76,6 @@ End if
| | |
| --- | --- |
| Command number | 1723 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/last-errors.md b/docs/commands/last-errors.md
index b8c7f1775da1ea..ef0842c7c58f3d 100644
--- a/docs/commands/last-errors.md
+++ b/docs/commands/last-errors.md
@@ -90,6 +90,6 @@ Each error object contains the following properties:
| | |
| --- | --- |
| Command number | 1799 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/license-info.md b/docs/commands/license-info.md
index 3d4f419a901afe..db4f7bf7286ed9 100644
--- a/docs/commands/license-info.md
+++ b/docs/commands/license-info.md
@@ -8,7 +8,7 @@ displayed_sidebar: docs
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| Function result | Object | ← | Information about the active licence |
+| Function result | Object | ← | Information about the active license |
@@ -146,6 +146,6 @@ You want to get information on your current 4D Server license:
| | |
| --- | --- |
| Command number | 1489 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/listbox-get-property.md b/docs/commands/listbox-get-property.md
index fc06e7387e233c..9bb64fd380dd92 100644
--- a/docs/commands/listbox-get-property.md
+++ b/docs/commands/listbox-get-property.md
@@ -4,7 +4,7 @@ title: LISTBOX Get property
displayed_sidebar: docs
---
-**LISTBOX Get property** ( {* ;} *object* ; *property* ) : any
+**LISTBOX Get property** ( * ; *object* : Text ; *property* : Integer ) : any
**LISTBOX Get property** ( *object* : Field, Variable ; *property* : Integer ) : any
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -106,6 +106,6 @@ Given a list box "MyListbox", if you execute the following statement:
| | |
| --- | --- |
| Command number | 917 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/listbox-set-property.md b/docs/commands/listbox-set-property.md
index 159b042c9c3171..c75d15c59a4a7f 100644
--- a/docs/commands/listbox-set-property.md
+++ b/docs/commands/listbox-set-property.md
@@ -4,7 +4,7 @@ title: LISTBOX SET PROPERTY
displayed_sidebar: docs
---
-**LISTBOX SET PROPERTY** ( {* ;} *object* ; *property* ; *value* )
+**LISTBOX SET PROPERTY** ( * ; *object* : Text ; *property* : Integer ; *value* : Integer, Text )
**LISTBOX SET PROPERTY** ( *object* : Field, Variable ; *property* : Integer ; *value* : Integer, Text )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -90,6 +90,6 @@ You want to set a maximum width for the column whose name is "ProductNumber":
| | |
| --- | --- |
| Command number | 1440 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/mail-convert-from-mime.md b/docs/commands/mail-convert-from-mime.md
index f55b4a8c908f28..7ca582d3a3a424 100644
--- a/docs/commands/mail-convert-from-mime.md
+++ b/docs/commands/mail-convert-from-mime.md
@@ -93,6 +93,6 @@ $status:=$transporter.send($email)
| | |
| --- | --- |
| Command number | 1681 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/mail-convert-to-mime.md b/docs/commands/mail-convert-to-mime.md
index ff4a3d2b69d747..188a0e151774b6 100644
--- a/docs/commands/mail-convert-to-mime.md
+++ b/docs/commands/mail-convert-to-mime.md
@@ -91,6 +91,6 @@ $mime:=MAIL Convert to MIME($mail)
| | |
| --- | --- |
| Command number | 1604 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/mail-new-attachment.md b/docs/commands/mail-new-attachment.md
index 478d0f0707bb6f..ef0936d817fc54 100644
--- a/docs/commands/mail-new-attachment.md
+++ b/docs/commands/mail-new-attachment.md
@@ -19,7 +19,7 @@ displayed_sidebar: docs
| --- | --- | --- | --- |
|file|4D.File|→ |Attachment file|
|zipFile|4D.ZipFile|→ |Attachment Zipfile|
-|blob|4D.Blob|→ |BLOB containing the attachment|
+|blob|4D.Blob|→ |Blob containing the attachment|
|path|Text|→ |Path of the attachment file|
|name|Text|→ |Name + extension used by the mail client to designate the attachment|
|cid|Text|→ |ID of attachment (HTML messages only), or " " if no cid is required|
@@ -152,6 +152,6 @@ $transporter.send($email)
| | |
| --- | --- |
| Command number | 1644 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/new-collection.md b/docs/commands/new-collection.md
index 8ba14c8e142a4c..a7935060a57024 100644
--- a/docs/commands/new-collection.md
+++ b/docs/commands/new-collection.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| value | Number, Text, Date, Time, Boolean, Object, Collection, Picture, Pointer | → | Collection's value(s) |
+| value | any | → | Collection's value(s) |
| Function result | Collection | ← | New collection |
@@ -87,6 +87,6 @@ You create a new collection and then add a new element:
| | |
| --- | --- |
| Command number | 1472 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/new-shared-collection.md b/docs/commands/new-shared-collection.md
index 954eeeffad1575..2416c3348bef7a 100644
--- a/docs/commands/new-shared-collection.md
+++ b/docs/commands/new-shared-collection.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parameter | Type | | Description |
| --- | --- | --- | --- |
-| value |Number, Text, Date, Time, Boolean, Object, Collection| → | Shared collection's value(s) |
+| value |any| → | Shared collection's value(s) |
| Function result | Collection | ← | New shared collection |
@@ -76,6 +76,6 @@ Unlike standard (not shared) collections, shared collections do not support pict
| | |
| --- | --- |
| Command number | 1527 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/new-signal.md b/docs/commands/new-signal.md
index 1632a780351a23..f54002a640fb7e 100644
--- a/docs/commands/new-signal.md
+++ b/docs/commands/new-signal.md
@@ -79,6 +79,6 @@ The ***doSomething*** method could be like:
| | |
| --- | --- |
| Command number | 1641 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/num.md b/docs/commands/num.md
index b889e62c6d2296..dc28828d9a9ad2 100644
--- a/docs/commands/num.md
+++ b/docs/commands/num.md
@@ -5,7 +5,7 @@ slug: /commands/num
displayed_sidebar: docs
---
-**Num** ( *expression* {; *separator*} ) : Real
**Num** ( *expression* ; *base* ) : Real
+**Num** ( *expression* : Text, Boolean, Integer {; *separator* : Text} ) : Real
**Num** ( *expression* : Text, Boolean, Integer ; *base* : Integer ) : Real
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -159,6 +159,6 @@ $result:=Num("123.20"; 10) // 123 (explicitly specify base 10)
| | |
| --- | --- |
| Command number | 11 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/object-get-data-source-formula.md b/docs/commands/object-get-data-source-formula.md
index aaab2ad8db3db6..a7acdbb3a5b802 100644
--- a/docs/commands/object-get-data-source-formula.md
+++ b/docs/commands/object-get-data-source-formula.md
@@ -4,7 +4,7 @@ title: OBJECT Get data source formula
displayed_sidebar: docs
---
-**OBJECT Get data source formula** ( {* ;} *object* ) : 4D.Formula
+**OBJECT Get data source formula** ( * ; *object* : Text ) : 4D.Formula
**OBJECT Get data source formula** ( *object* : Field, Variable ) : 4D.Formula
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ $formula:=OBJECT Get data source formula(*; "myInput")
| | |
| --- | --- |
| Command number | 1852 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/object-set-data-source-formula.md b/docs/commands/object-set-data-source-formula.md
index 3ae6d7d701fd1d..1223c2cb3959bc 100644
--- a/docs/commands/object-set-data-source-formula.md
+++ b/docs/commands/object-set-data-source-formula.md
@@ -4,7 +4,7 @@ title: OBJECT SET DATA SOURCE FORMULA
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE FORMULA** ( {* ;} *object* ; *formula* )
+**OBJECT SET DATA SOURCE FORMULA** ( * ; *object* : Text ; *formula* : 4D.Formula )
**OBJECT SET DATA SOURCE FORMULA** ( *object* : Field, Variable ; *formula* : 4D.Formula )
@@ -63,6 +63,6 @@ OBJECT SET DATA SOURCE FORMULA(*;"DiscountedPriceInput"; $discountedFormula)
| | |
| --- | --- |
| Command number | 1851 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/open-datastore.md b/docs/commands/open-datastore.md
index f26d204cc3be93..f450ce828bfc9e 100644
--- a/docs/commands/open-datastore.md
+++ b/docs/commands/open-datastore.md
@@ -134,7 +134,7 @@ In case of error, the command returns **Null**. If the remote datastore cannot b
| | |
| --- | --- |
| Command number | 1452 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifies variables | error |
diff --git a/docs/commands/pop3-new-transporter.md b/docs/commands/pop3-new-transporter.md
index c5eaa5441318e9..cd7daeef9a2702 100644
--- a/docs/commands/pop3-new-transporter.md
+++ b/docs/commands/pop3-new-transporter.md
@@ -72,6 +72,6 @@ The function returns a [**POP3 transporter object**](../API/POP3TransporterClass
| | |
| --- | --- |
| Command number | 1697 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/print-form.md b/docs/commands/print-form.md
index 53f37c6f1b41e4..385692e63a53c8 100644
--- a/docs/commands/print-form.md
+++ b/docs/commands/print-form.md
@@ -4,7 +4,7 @@ title: Print form
displayed_sidebar: docs
---
-**Print form** ( {*aTable* ;} *form* {; *formData*} {; *areaStart*{; *areaEnd*}} ) : Integer
+**Print form** ( {*aTable* : Table ;} *form* : Text, Object {; *formData* : Object} {; *areaStart* : Integer{; *areaEnd* : Integer}} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -187,6 +187,6 @@ The code that calls the dialog then prints its body:
| | |
| --- | --- |
| Command number | 5 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/process-activity.md b/docs/commands/process-activity.md
index b18ba3fef7e996..74716fc359efbd 100644
--- a/docs/commands/process-activity.md
+++ b/docs/commands/process-activity.md
@@ -4,7 +4,7 @@ title: Process activity
displayed_sidebar: docs
---
-**Process activity** () : Object
**Process activity** ( *options* ) : Object
**Process activity** ( *sessionID* ) : Object
**Process activity** ( *sessionID* ; *options* ) : Object
+**Process activity** () : Object
**Process activity** ( *options* : Integer ) : Object
**Process activity** ( *sessionID* : Text ) : Object
**Process activity** ( *sessionID* : Text ; *options* : Integer ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
diff --git a/docs/commands/process-number.md b/docs/commands/process-number.md
index 2ba12522cbf5a6..81713d5b12f8cd 100644
--- a/docs/commands/process-number.md
+++ b/docs/commands/process-number.md
@@ -5,7 +5,7 @@ slug: /commands/process-number
displayed_sidebar: docs
---
-**Process number** ( *name* {; *} ) : Integer
**Process number** ( *id* {; *} ) : Integer
+**Process number** ( *name* : Text {; *} ) : Integer
**Process number** ( *id* : Text {; *} ) : Integer
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ If the command is executed with the \* parameter from a process on the server ma
| | |
| --- | --- |
| Command number | 372 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/select-log-file.md b/docs/commands/select-log-file.md
index ab18a6b4583d4e..3c33a540bb2d11 100644
--- a/docs/commands/select-log-file.md
+++ b/docs/commands/select-log-file.md
@@ -4,7 +4,7 @@ title: SELECT LOG FILE
displayed_sidebar: docs
---
-**SELECT LOG FILE** ( *logFile* )
**SELECT LOG FILE** ( * )
+**SELECT LOG FILE** ( *logFile* : Text )
**SELECT LOG FILE** ( * )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ OK is set to 1 if the log file is correctly created, or closed.
| | |
| --- | --- |
| Command number | 345 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifies variables | OK, error |
diff --git a/docs/commands/session-info.md b/docs/commands/session-info.md
index 66483a8e0c8d5e..9ba104d53284b5 100644
--- a/docs/commands/session-info.md
+++ b/docs/commands/session-info.md
@@ -92,4 +92,4 @@ Here is an example of output object:
| | |
| --- | --- |
| Command number | 1844|
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/session-storage.md b/docs/commands/session-storage.md
index c52bdc93194be6..0d19022fa40960 100644
--- a/docs/commands/session-storage.md
+++ b/docs/commands/session-storage.md
@@ -5,7 +5,7 @@ displayed_sidebar: docs
---
-**Session storage** ( *id* ) : Object
+**Session storage** ( *id* : Text ) : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ This method modifies the value of a "settings" property stored in the storage ob
| | |
| --- | --- |
| Command number | 1839 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/session.md b/docs/commands/session.md
index 26c0b687d009c0..71af5b273d757a 100644
--- a/docs/commands/session.md
+++ b/docs/commands/session.md
@@ -24,20 +24,24 @@ displayed_sidebar: docs
## Description
-The `Session` command returns the `Session` object corresponding to the current user session.
+The `Session` command returns the `Session` object corresponding to the current session.
-Depending on the process from which the command is called, the current user session can be:
+Depending on the process from which the command is called, the current session can be:
- a web session (when [scalable sessions are enabled](WebServer/sessions.md#enabling-web-sessions)),
-- a remote client session,
-- the stored procedures session,
-- the *designer* session in a standalone application.
+- a remote client session (on the server),
+- a stored procedures session,
+- a standalone session.
For more information, see the [Session types](../API/SessionClass.md#session-types) paragraph.
-If the command is called from a non supported context (e.g. scalable sessions disabled), it returns *Null*.
+The command returns *Null* if:
-## Web sessions
+- it is called in a web process and scalable sessions are disabled on the web server,
+- it is called on a remote 4D.
+
+
+### Web sessions
The `Session` object of web sessions is available from any web process:
@@ -49,7 +53,7 @@ The `Session` object of web sessions is available from any web process:
For more information on web user sessions, please refer to the [Web Server Sessions](../WebServer/sessions.md) section.
-## Remote client sessions
+### Remote client sessions
The `Session` object of remote client sessions is available from:
@@ -58,22 +62,53 @@ The `Session` object of remote client sessions is available from:
- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword,
- `On Server Open Connection` and `On Server Shutdown Connection` database methods.
-For more information on remote user sessions, please refer to the [**Remote client user sessions**](../Desktop/clientServer.md#remote-user-sessions) paragraph.
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## Stored procedures session
+### Stored procedures session
All stored procedure processes share the same virtual user session. The `Session` object of stored procedures is available from:
- methods called with the [`Execute on server`](../commands-legacy/execute-on-server.md) command,
- `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, and `On System event` database methods
-For information on stored procedures virtual user session, please refer to the [4D Server and the 4D Language](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html) page.
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
+
+
-## Standalone session
+### Standalone session
The `Session` object is available from any process in standalone (single-user) applications so that you can write and test your client/server code using the `Session` object in your 4D development environment.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+
+
+### `Session` and components
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Example
@@ -87,10 +122,10 @@ IP:port/4DACTION/action_Session
//action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //calling the hasPrivilege function
- WEB SEND TEXT("4DACTION --> Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
WEB SEND TEXT("4DACTION --> Session is null")
@@ -100,7 +135,8 @@ IP:port/4DACTION/action_Session
## See also
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
@@ -111,6 +147,6 @@ IP:port/4DACTION/action_Session
| | |
| --- | --- |
| Command number | 1714 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/set-allowed-methods.md b/docs/commands/set-allowed-methods.md
index 727f9824355212..67657ae1f38a2d 100644
--- a/docs/commands/set-allowed-methods.md
+++ b/docs/commands/set-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/set-allowed-methods
displayed_sidebar: docs
---
-**SET ALLOWED METHODS** ( *methodsArray* )
+**SET ALLOWED METHODS** ( *methodsArray* : Text array )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -61,6 +61,6 @@ This example authorizes all methods starting with “formula” and the “Total
| | |
| --- | --- |
| Command number | 805 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/set-window-document-icon.md b/docs/commands/set-window-document-icon.md
index 0fc90ed26c5867..1ac30aaf536497 100644
--- a/docs/commands/set-window-document-icon.md
+++ b/docs/commands/set-window-document-icon.md
@@ -4,7 +4,7 @@ title: SET WINDOW DOCUMENT ICON
displayed_sidebar: docs
---
-**SET WINDOW DOCUMENT ICON** ( *winRef* )
**SET WINDOW DOCUMENT ICON** ( *winRef* ; *image* )
**SET WINDOW DOCUMENT ICON** ( *winRef* ; *file* )
**SET WINDOW DOCUMENT ICON** ( *winRef* ; *image* ; *file* )
+**SET WINDOW DOCUMENT ICON** ( *winRef* : Integer )
**SET WINDOW DOCUMENT ICON** ( *winRef* : Integer ; *image* : Picture )
**SET WINDOW DOCUMENT ICON** ( *winRef* : Integer ; *file* : 4D.File, 4D.Folder )
**SET WINDOW DOCUMENT ICON** ( *winRef* : Integer ; *image* : Picture ; *file* : 4D.File, 4D.Folder )
| Parameter | Type | | Description |
diff --git a/docs/commands/smtp-new-transporter.md b/docs/commands/smtp-new-transporter.md
index 0960d862bd09e5..2803758519c1b6 100644
--- a/docs/commands/smtp-new-transporter.md
+++ b/docs/commands/smtp-new-transporter.md
@@ -91,6 +91,6 @@ The function returns a [**SMTP transporter object**](../API/SMTPTransporterClass
| | |
| --- | --- |
| Command number | 1608 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/string.md b/docs/commands/string.md
index b8afcaa54c3b78..00e2821906ae93 100644
--- a/docs/commands/string.md
+++ b/docs/commands/string.md
@@ -5,7 +5,7 @@ slug: /commands/string
displayed_sidebar: docs
---
-**String** ( *expression* {; *format* {; *addTime*}} ) : Text
**String** ( *expression* ; *base* ) : Text
+**String** ( *expression* : Expression {; *format* : Integer, Text {; *addTime* : Time}} ) : Text
**String** ( *expression* : Expression ; *base* : Integer ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -266,6 +266,6 @@ If *expression* is evaluated to Null, the command returns the "null" string. Thi
| | |
| --- | --- |
| Command number | 10 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/super.md b/docs/commands/super.md
index 13b3c06ab008d5..a67bea70ed0e39 100644
--- a/docs/commands/super.md
+++ b/docs/commands/super.md
@@ -117,6 +117,6 @@ $message:=$square.description() //I have 4 sides which are all equal
| | |
| --- | --- |
| Command number | 1706 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/this.md b/docs/commands/this.md
index 6c20f906a6093a..b64a932c9cc1f4 100644
--- a/docs/commands/this.md
+++ b/docs/commands/this.md
@@ -189,6 +189,6 @@ Once the form is executed, the list box is automatically filled with the entity
| | |
| --- | --- |
| Command number | 1470 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/trim-end.md b/docs/commands/trim-end.md
index b3519458f10f74..df68a8d3f8dfa9 100644
--- a/docs/commands/trim-end.md
+++ b/docs/commands/trim-end.md
@@ -4,7 +4,7 @@ title: Trim end
displayed_sidebar: docs
---
-**Trim end** ( *aString* ) : Text
+**Trim end** ( *aString* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ $output:=Trim end($input) //" Hello World!"
| | |
| --- | --- |
| Command number | 1855 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/trim-start.md b/docs/commands/trim-start.md
index bb7432d3ee75c0..9d8f6bcedfad5c 100644
--- a/docs/commands/trim-start.md
+++ b/docs/commands/trim-start.md
@@ -4,7 +4,7 @@ title: Trim start
displayed_sidebar: docs
---
-**Trim start** ( *aString* ) : Text
+**Trim start** ( *aString* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ $output:=Trim start($input) //"Hello World! "
| | |
| --- | --- |
| Command number | 1854 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/trim.md b/docs/commands/trim.md
index f5d7fd08db6c38..a83a2344dd7bad 100644
--- a/docs/commands/trim.md
+++ b/docs/commands/trim.md
@@ -4,7 +4,7 @@ title: Trim
displayed_sidebar: docs
---
-**Trim** ( *aString* ) : Text
+**Trim** ( *aString* : Text ) : Text
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ $output:=Trim($input) //"Hello World!"
| | |
| --- | --- |
| Command number | 1853 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/use-entity-selection.md b/docs/commands/use-entity-selection.md
index b5dd9c615ebf30..e43c384d33c367 100644
--- a/docs/commands/use-entity-selection.md
+++ b/docs/commands/use-entity-selection.md
@@ -52,7 +52,7 @@ USE ENTITY SELECTION($entitySel) //The current selection of the Employee table i
| | |
| --- | --- |
| Command number | 1513 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Changes current record ||
| Changes current selection ||
diff --git a/docs/commands/wa-get-context.md b/docs/commands/wa-get-context.md
index 1998b8acedbf08..76fcf30c017294 100644
--- a/docs/commands/wa-get-context.md
+++ b/docs/commands/wa-get-context.md
@@ -4,7 +4,7 @@ title: WA Get context
displayed_sidebar: docs
---
-**WA Get context** ( {* ;} *object* ) -> *contextObj*
+**WA Get context** ( * ; *object* : Text ) -> *contextObj* : Object
**WA Get context** ( *object* : Field, Variable ) -> *contextObj* : Object
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -47,4 +47,4 @@ Checking if a context exists:
| | |
| --- | --- |
| Command number | 1849 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/wa-set-context.md b/docs/commands/wa-set-context.md
index 66698e7943a227..a2871838278641 100644
--- a/docs/commands/wa-set-context.md
+++ b/docs/commands/wa-set-context.md
@@ -5,7 +5,7 @@ displayed_sidebar: docs
---
-**WA SET CONTEXT** ( {* ;} *object* ; *contextObj* )
+**WA SET CONTEXT** ( * ; *object* : Text ; *contextObj* : Object )
**WA SET CONTEXT** ( *object* : Field, Variable ; *contextObj* : Object )
| Parameter | Type | | Description |
| --- | --- | --- | --- |
@@ -74,4 +74,4 @@ $4d._myPrivateFunction(); // Will do nothing because function is private
| | |
| --- | --- |
| Command number | 1848 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/web-event.md b/docs/commands/web-event.md
index a2811194ad76a1..44fa61def658be 100644
--- a/docs/commands/web-event.md
+++ b/docs/commands/web-event.md
@@ -92,5 +92,5 @@ exposed function hideOnLoad()
| | |
| --- | --- |
| Command number | 1734 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/web-form.md b/docs/commands/web-form.md
index 1ee0923f99a51a..5176975ed7cf05 100644
--- a/docs/commands/web-form.md
+++ b/docs/commands/web-form.md
@@ -39,7 +39,7 @@ The command returns `null` if it is called in a request that does not originate
| | |
| --- | --- |
| Command number | 1735 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/web-server-list.md b/docs/commands/web-server-list.md
index 92bb1e37735bfd..559c5591c6ffa8 100644
--- a/docs/commands/web-server-list.md
+++ b/docs/commands/web-server-list.md
@@ -58,6 +58,6 @@ We want to know how many running web servers are available:
| | |
| --- | --- |
| Command number | 1716 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/web-server.md b/docs/commands/web-server.md
index 0b0033ae697f2d..3ac15d0ed2a2a5 100644
--- a/docs/commands/web-server.md
+++ b/docs/commands/web-server.md
@@ -32,7 +32,7 @@ By default, if the *option* parameter is omitted, the command returns a referenc
|Constant|Value|Comment|
|---|---|---|
-|`Web server database`|1|Current database Web server (default if omitted)|
+|`Web server database`|1|Web server of the project from which the command is called (default if omitted)|
|`Web server host database`|2|Web server of the host database of a component|
|`Web server receiving request`|3|Web server that received the request (target Web server)|
@@ -62,6 +62,6 @@ From your component, you want to know if the Web server of the host database is
| | |
| --- | --- |
| Command number | 1674 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/docs/commands/zip-create-archive.md b/docs/commands/zip-create-archive.md
index 35da8a0a0c9699..d7aa104ef3e2f5 100644
--- a/docs/commands/zip-create-archive.md
+++ b/docs/commands/zip-create-archive.md
@@ -171,6 +171,6 @@ $err:=ZIP Create archive($zip; $destination)
| | |
| --- | --- |
| Command number | 1640 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/docs/commands/zip-read-archive.md b/docs/commands/zip-read-archive.md
index e118166b5254a9..d0fe709a88d921 100644
--- a/docs/commands/zip-read-archive.md
+++ b/docs/commands/zip-read-archive.md
@@ -88,6 +88,6 @@ To extract from the root folder:
| | |
| --- | --- |
| Command number | 1637 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current.json b/i18n/es/docusaurus-plugin-content-docs/current.json
index e3c34962a3e34d..b829d6cac64ef3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current.json
+++ b/i18n/es/docusaurus-plugin-content-docs/current.json
@@ -536,7 +536,7 @@
"description": "The label for category Cache Management in sidebar docs"
},
"sidebar.docs.category.Collections": {
- "message": "Collections",
+ "message": "Colecciones",
"description": "The label for category Collections in sidebar docs"
},
"sidebar.docs.category.Communications": {
@@ -840,7 +840,7 @@
"description": "The generated-index page title for category Cache Management in sidebar docs"
},
"sidebar.docs.category.Collections.link.generated-index.title": {
- "message": "Collections",
+ "message": "Colecciones",
"description": "The generated-index page title for category Collections in sidebar docs"
},
"sidebar.docs.category.Communications.link.generated-index.title": {
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/BlobClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/BlobClass.md
index f8826f781fafc7..1a052e72002b8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/BlobClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/BlobClass.md
@@ -27,10 +27,11 @@ La clase Blob permite crear y manipular [objetos blob](../Concepts/dt_blob.md#bl
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------------------------------ | :-------------------------: | ----------------------------- |
-| blob | Blob o 4D.Blob | -> | Blob a copiar |
-| Resultado | 4D.Blob | <- | Nuevo 4D.Blob |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ----------------------- | :-------------------------: | ----------------------------- |
+| blobScal | Blob | -> | Blob a copiar |
+| blobObj | 4D.Blob | -> | Blob a copiar |
+| Resultado | 4D.Blob | <- | Nuevo 4D.Blob |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md
index 804f8eff06d2f6..8e82dcd9a523c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/CollectionClass.md
@@ -472,11 +472,11 @@ Si la colección contiene objetos, puede pasar el parámetro *propertyPath*. En
-| Parámetros | Tipo | | Descripción |
-| ------------ | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------- |
-| value | Text, Number, Boolean, Date, Object, Collection | -> | Valor a contar |
-| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para el cálculo |
-| Resultado | Real | <- | Valor a contar |
+| Parámetros | Tipo | | Descripción |
+| ------------ | ---- | :-------------------------: | ---------------------------------------------------------------- |
+| value | any | -> | Valor a contar |
+| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para el cálculo |
+| Resultado | Real | <- | Valor a contar |
@@ -838,12 +838,12 @@ $c2:=$c.extract("name";"City";"zc";"Zip") //$c2=[{Zip:35060},{City:null,Zip:3504
-| Parámetros | Tipo | | Descripción |
-| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------- |
-| value | number, Text, Collection, Object, Date, Boolean | -> | Valor a asignar |
-| startFrom | Integer | -> | Índice de inicio (incluido) |
-| end | Integer | -> | Índice final (no incluido) |
-| Resultado | collection | <- | Colección original con valores rellenados |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | :-------------------------: | ---------------------------------------------- |
+| value | any | -> | Valor a asignar |
+| startFrom | Integer | -> | Índice de inicio (incluido) |
+| end | Integer | -> | Índice final (no incluido) |
+| Resultado | Collection | <- | Colección original con valores rellenados |
@@ -1333,11 +1333,11 @@ $c2:=$c.flatMap($f; $c.sum())
-| Parámetros | Tipo | | Descripción |
-| ---------- | --------- | :-------------------------: | ----------------------------------------------- |
-| toSearch | expresión | -> | Expresión a buscar en la colección |
-| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
-| Resultado | Boolean | <- | True si *toSearch* se encuentra en la colección |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | :-------------------------: | ----------------------------------------------- |
+| toSearch | Expression | -> | Expresión a buscar en la colección |
+| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
+| Resultado | Boolean | <- | True si *toSearch* se encuentra en la colección |
@@ -1395,11 +1395,11 @@ Diferente de Si *startFrom* < 0, se considera el desplazamiento desde el final d
-| Parámetros | Tipo | | Descripción |
-| ---------- | --------- | :-------------------------: | ---------------------------------- |
-| toSearch | expresión | -> | Expresión a buscar en la colección |
-| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
-| Resultado | Integer | <- | Descripción |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | :-------------------------: | ---------------------------------- |
+| toSearch | Expression | -> | Expresión a buscar en la colección |
+| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
+| Resultado | Integer | <- | Descripción |
@@ -1643,11 +1643,11 @@ Propiedad
-| Parámetros | Tipo | | Descripción |
-| ---------- | --------- | :-------------------------: | --------------------------------------------------------------------------------- |
-| toSearch | expresión | -> | El elemento que se va a buscar dentro de la colección |
-| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
-| Resultado | Integer | <- | Índice de la última ocurrencia de toSearch en la colección, -1 si no se encuentra |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | :-------------------------: | --------------------------------------------------------------------------------- |
+| toSearch | Expression | -> | El elemento que se va a buscar dentro de la colección |
+| startFrom | Integer | -> | Índice para iniciar la búsqueda en |
+| Resultado | Integer | <- | Índice de la última ocurrencia de toSearch en la colección, -1 si no se encuentra |
@@ -1792,10 +1792,10 @@ $c2:=$c.map(Formula(Round(($1.value/$2)*100; 2)); $c.sum())
-| Parámetros | Tipo | | Descripción |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------------------------------------------------------- |
-| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para la evaluación |
-| Resultado | Boolean, Text, Number, Collection, Object, Date | <- | Valor máximo en la colección |
+| Parámetros | Tipo | | Descripción |
+| ------------ | ---- | :-------------------------: | ------------------------------------------------------------------- |
+| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para la evaluación |
+| Resultado | any | <- | Valor máximo en la colección |
@@ -1842,10 +1842,10 @@ Si la colección está vacía, `.max()` devuelve *Undefined*.
-| Parámetros | Tipo | | Descripción |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------------------------------------------------------- |
-| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para la evaluación |
-| Resultado | Boolean, Text, Number, Collection, Object, Date | <- | Valor mínimo en la colección |
+| Parámetros | Tipo | | Descripción |
+| ------------ | ---- | :-------------------------: | ------------------------------------------------------------------- |
+| propertyPath | Text | -> | Ruta de la propiedad del objeto que se utilizará para la evaluación |
+| Resultado | any | <- | Valor mínimo en la colección |
@@ -2665,13 +2665,13 @@ Descripción Descripción Sin embargo, ten en cuenta que las fórmulas no están
-| Parámetros | Tipo | | Descripción |
-| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------- |
-| formula | 4D.Function | -> | Objeto fórmula |
-| methodName | Text | -> | Nombre de un método |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Colección que contiene los elementos añadidos |
-| param | expresión | -> | Parámetro(s) a pasar |
-| Resultado | Text, Number, Object, Collection, Date, Boolean | <- | donde: |
+| Parámetros | Tipo | | Descripción |
+| ---------- | --------------------------- | :-------------------------: | --------------------------------------------- |
+| formula | 4D.Function | -> | Objeto fórmula |
+| methodName | Text | -> | Nombre de un método |
+| initValue | any | -> | Colección que contiene los elementos añadidos |
+| param | Expression | -> | Parámetro(s) a pasar |
+| Resultado | any | <- | donde: |
@@ -2750,13 +2750,13 @@ Con el siguiente método ***Flatten***:
-| Parámetros | Tipo | | Descripción |
-| ---------- | ----------------------------------------------- | :-------------------------: | --------------------------------------------- |
-| formula | 4D.Function | -> | Objeto fórmula |
-| methodName | Text | -> | Nombre de un método |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Colección que contiene los elementos añadidos |
-| param | expresión | -> | Parámetro(s) a pasar |
-| Resultado | Text, Number, Object, Collection, Date, Boolean | <- | donde: |
+| Parámetros | Tipo | | Descripción |
+| ---------- | --------------------------- | :-------------------------: | --------------------------------------------- |
+| formula | 4D.Function | -> | Objeto fórmula |
+| methodName | Text | -> | Nombre de un método |
+| initValue | any | -> | Colección que contiene los elementos añadidos |
+| param | Expression | -> | Parámetro(s) a pasar |
+| Resultado | any | <- | donde: |
@@ -2885,11 +2885,11 @@ Si se intenta eliminar un elemento de una colección vacía, el método no hace
-| Parámetros | Tipo | | Descripción |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------------------------------------------------------------------------------- |
-| size | Integer | -> | Nuevo tamaño de la colección |
-| defaultValue | Number, Text, Object, Collection, Date, Boolean | -> | Valor por defecto para llenar nuevos elementos |
-| Resultado | Collection | <- | o *methodName*, el nombre de un método proyecto (texto). |
+| Parámetros | Tipo | | Descripción |
+| ------------ | ---------- | :-------------------------: | ------------------------------------------------------------------------------------------- |
+| size | Integer | -> | Nuevo tamaño de la colección |
+| defaultValue | any | -> | Valor por defecto para llenar nuevos elementos |
+| Resultado | Collection | <- | o *methodName*, el nombre de un método proyecto (texto). |
@@ -3305,11 +3305,11 @@ Si la colección contiene objetos, pasa el parámetro *propertyPath* para indica
-| Parámetros | Tipo | | Descripción |
-| ---------- | -------------------------------------- | :-------------------------: | -------------------------------------------------------------------- |
-| value | Text, Number, Object, Collection, Date | -> | Valor(es) a insertar al principio de la colección |
-| Resultado | Collection | <- | Colección que contiene los elementos añadidos |
-| | | | |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | :-------------------------: | -------------------------------------------------------------------- |
+| value | any | -> | Valor(es) a insertar al principio de la colección |
+| Resultado | Collection | <- | Colección que contiene los elementos añadidos |
+| | | | |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
index e77b3e64c5a4c4..5e5e8cf979c223 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
@@ -50,7 +50,7 @@ Para obtener una visión general de esta clase, consulte la entrada del blog [**
-La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition.
+La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. Permite generar una nueva llave RSA o ECDSA, o cargar un par de llaves existente desde una definición PEM.
#### *settings*
@@ -332,11 +332,11 @@ El valor devuelto es la llave pública.
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------------ | --------------------------- | --------------------------------------------------------------------- |
-| message | Texto O Blob | -> | Mensaje a firmar |
-| options | Object | -> | Opciones de firma |
-| Resultado | Text | <- | Firma en representación Base64 o Base64URL, según la opción "encoding |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | --------------------------- | --------------------------------------------------------------------- |
+| message | Text, Blob | -> | Mensaje a firmar |
+| options | Object | -> | Opciones de firma |
+| Resultado | Text | <- | Firma en representación Base64 o Base64URL, según la opción "encoding |
@@ -416,12 +416,12 @@ Contiene el nombre del tipo de llave - "RSA"
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------------ | --------------------------- | --------------------------------------------------------------------------------------------- |
-| message | Texto O Blob | -> | Mensaje utilizado para producir la firma |
-| signature | Text | -> | Firma a verificar, en representación Base64 o Base64URL, según el valor de `options.encoding` |
-| options | Object | -> | Opciones de firma |
-| Resultado | Object | <- | Estado de la verificación |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | --------------------------- | --------------------------------------------------------------------------------------------- |
+| message | Text, Blob | -> | Mensaje utilizado para producir la firma |
+| signature | Text | -> | Firma a verificar, en representación Base64 o Base64URL, según el valor de `options.encoding` |
+| options | Object | -> | Opciones de firma |
+| Resultado | Object | <- | Estado de la verificación |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md
index 86842c59631455..39ef2ce595cea5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/DataClassClass.md
@@ -444,7 +444,7 @@ En este ejemplo, la primera entidad se creará y guardará pero la segunda falla
| Parámetros | Tipo | | Descripción |
| ---------- | ------------------------- | :-------------------------: | ---------------------------------------------------- |
-| primaryKey | Integer OR Text | -> | Valor de la llave primaria de la entidad a recuperar |
+| primaryKey | Integer, Text | -> | Valor de la llave primaria de la entidad a recuperar |
| settings | Object | -> | Opciones de construcción: context |
| Resultado | 4D.Entity | <- | Entidad que coincide con la llave primaria designada |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/FileClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/FileClass.md
index 164dfffa0e1dc4..21fde8f4256faf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/FileClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/FileClass.md
@@ -713,7 +713,7 @@ $app.setAppInfo($info)
| Parámetros | Tipo | | Descripción |
| ---------- | ---- | -- | ----------------------------- |
-| content | BLOB | -> | Nuevos contenidos del archivo |
+| content | Blob | -> | Nuevos contenidos del archivo |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
index 4aebe4c28a0ab6..1df4a5c8360677 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
@@ -1081,7 +1081,7 @@ Quiere recuperar los 20 correos electrónicos más recientes sin cambiar el esta
| msgNumber | Integer | -> | Número de secuencia del mensaje |
| msgID | Text | -> | ID único del mensaje |
| updateSeen | Boolean | -> | Si True, el mensaje se marca como "visto" en el buzón. Si False, el mensaje se deja igual. |
-| Resultado | BLOB | <- | Blob de la cadena MIME devuelta por el servidor de correo |
+| Resultado | Blob | <- | Blob de la cadena MIME devuelta por el servidor de correo |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
index 0307a784f31dba..f925b7c3cdc408 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
@@ -38,7 +38,7 @@ Los objetos Attachment ofrecen las siguientes propiedades y funciones de sólo l
| ----------- | --------------------------------- | :-------------------------: | -------------------------------------------------------------------------------------------------- |
| file | 4D.File | -> | Archivo adjunto |
| zIPFile | 4D.ZipFile | -> | Archivo zip adjunto |
-| blob | 4D.Blob | -> | BLOB que contiene el adjunto |
+| blob | 4D.Blob | -> | Blob containing the attachment |
| path | Text | -> | Ruta del archivo adjunto |
| name | Text | -> | Nombre + extensión utilizados por el cliente de correo para designar el archivo adjunto |
| cid | Text | -> | ID del archivo adjunto (sólo en mensajes HTML), o " " si no se requiere cid |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/SessionClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/SessionClass.md
index 62d92bb7204c90..89c842077fc7a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/SessionClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/SessionClass.md
@@ -17,14 +17,15 @@ Los objetos de sesión son devueltos por el comando [`Session`](../commands/sess
Los siguientes tipos de sesiones están soportados por esta clase:
-- [**Sesiones usuario web**](WebServer/sessions.md): las sesiones usuario web están disponibles cuando [las sesiones escalables están activas en su proyecto](WebServer/sessions.md#enabling-web-sessions). Se utilizan para conexiones Web y REST, y se les pueden asignar privilegios.
-- [Sesiones usuario cliente remoto\*\*](../Desktop/clientServer.md#remote-user-sessions): en las aplicaciones cliente/servidor, los usuarios remotos tienen sus propias sesiones gestionadas en el servidor.
-- [**Sesión de procedimientos almacenados**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): todos los procedimientos almacenados ejecutados en el servidor comparten la misma sesión usuario virtual.
-- [**Sesión independiente**](../Project/overview.md#development): objeto de sesión local devuelto en una aplicación de un solo usuario (útil en las fases de desarrollo y prueba de aplicaciones cliente/servidor).
+- [**Sesiones usuario web**](WebServer/sessions.md): las sesiones usuario web están disponibles cuando [las sesiones escalables están activas en su proyecto](WebServer/sessions.md#enabling-web-sessions). They are used for Web connections (including and REST access), and are controlled by assigned [privileges](../ORDA/privileges.md).
+- [**Sesiones de escritorio**](../Desktop/sessions.md), que incluyen:
+ - [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions): In client/server applications, remote users have their own sessions managed on the server.
+ - [**Stored procedures sessions**](../Desktop/sessions.md#stored-procedure-sessions): Virtual user session for all stored procedures executed on the server.
+ - [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions): Local session object returned in single-user application (useful in development and test phases of client/server applications).
-:::note
+:::warning Acerca de los privilegios de sesión
-La disponibilidad de las propiedades y funciones del objeto `Session` depende del tipo de sesión.
+All session types can handle privileges, but only the code executed in a **web context** is actually controlled by session's privileges.
:::
@@ -54,10 +55,10 @@ La disponibilidad de las propiedades y funciones del objeto `Session` depende de
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | --------------------------- |
-| 21 | Soporte de sesiones remotas |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 18 R6 | Añadidos |
@@ -73,33 +74,26 @@ La disponibilidad de las propiedades y funciones del objeto `Session` depende de
#### Descripción
-:::note
-
-Esta función no hace nada y siempre devuelve **True** con sesiones de procedimientos almacenadas y sesiones independientes.
-
-:::
-
La función `.clearPrivileges()` elimina todos los privilegios asociados a la sesión (excluyendo privilegios promocionados)y devuelve **True** si la ejecución se ha realizado correctamente.
-A menos que esté en modo ["forceLogin"](../REST/authUsers.md#force-login-mode), la sesión se convierte automáticamente en una sesión de Invitado. En modo "forceLogin", `.clearPrivileges()` no transforma la sesión a una sesión de invitado, sólo elimina los privilegios de la sesión.
-
:::note
Esta función no elimina los **privilegios promovidos** del proceso web, tanto si se han añadido a través del archivo [roles.json](../ORDA/privileges.md#rolesjson-file) como de la función [`promote()`](#promote).
:::
-En cuanto a las sesiones cliente remoto, la función sólo se refiere al código ejecutado en el contexto de una [solicitud web enviada a través de un área Web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Ejemplo
```4d
-//Invalidar una sesión usuario web
-var $isGuest : Boolean
+//Invalidate a web user session
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest es True
```
@@ -110,10 +104,10 @@ $isGuest:=Session.isGuest() //$isGuest es True
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | --------------------------- |
-| 21 | Soporte de sesiones remotas |
-| 20 R9 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R9 | Añadidos |
@@ -121,33 +115,28 @@ $isGuest:=Session.isGuest() //$isGuest es True
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------- | :-------------------------: | --------------------------------------------------- |
-| lifespan | Integer | -> | Duración de la vida del token de sesión en segundos |
-| Resultado | Text | <- | UUID del token |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------- | :-------------------------: | ------------------------------------------------------------------------ |
+| lifespan | Integer | -> | Session token lifespan in seconds (web sessions only) |
+| Resultado | Text | <- | UUID del token |
#### Descripción
-:::note
-
-Esta función está disponible con sesiones usuario web y sesiones remotas. Devuelve una cadena vacía en procedimientos almacenados y sesiones independientes.
-
-:::
-
La función `.createOTP()` crea un nuevo OTP (One Time Passcode) para la sesión y devuelve su token UUID. Este token es único en la sesión en la que fue generado.
Para más información sobre los tokens OTP, por favor consulte [esta sección](../WebServer/sessions.md#session-token-otp).
-Puede definir un tiempo de espera personalizado pasando un valor en segundos en *lifespan*. Si se utiliza un token caducado para restaurar la sesión, se ignora. Por defecto, si el parámetro *lifespan* se omite:
+Si se utiliza un token caducado para restaurar la sesión, se ignora.
+
+For web sessions, you can set a custom timeout by passing a value in seconds in *lifespan*. Por defecto, si se omite el parámetro *lifespan*, el token se crea con el mismo tiempo de vida que el [`.idleTimeOut`](#idletimeout) de la sesión.
-- con sesiones de usuario web, el token se crea con el mismo espacio de vida que el [`.idleTimeOut`](#idletimeout) de la sesión.
-- con sesiones remotas, el token se crea con una duración de 10 segundos.
+For desktop sessions, the token is created with a 10 seconds lifespan.
-Para las **sesiones usuario web**, el token devuelto puede ser utilizado en intercambios con las aplicaciones de terceros o sitios web para identificar la sesión de forma segura. Por ejemplo, el token OTP de sesión se puede utilizar con una aplicación de pago.
+The returned token can be used in exchanges with third-party applications or websites to securely identify the session. Por ejemplo, el token OTP de sesión se puede utilizar con una aplicación de pago.
-Para las **sesiones remotas**, el token devuelto puede ser utilizado en 4D Server para identificar las solicitudes provenientes de un [4D remoto ejecutando formularios Qodly en un área Web](../Desktop/clientServer.md#remote-user-sessions).
+The returned token can be used by 4D Server or 4D single-user application to identify requests coming from the web that [share the session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Ejemplo
@@ -182,12 +171,6 @@ $token := Session.createOTP( 60 ) //el token es válido durante 1 mn
#### Descripción
-:::note
-
-Esta función no hace nada en las sesiones cliente remoto, procedimientos almacenados y autónomos.
-
-:::
-
La función `.demote()` elimina del proceso web el privilegio promocionado cuyo id pasó en *promoteId*, si fue añadido previamente por la función [`.promote()`](#promote).
Si ningún privilegio con *promoteId* fue promovido usando [`.promote()`](#promote) en el proceso web, la función no hace nada.
@@ -262,10 +245,10 @@ $expiration:=Session.expirationDate //eg "2021-11-05T17:10:42Z"
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ----------------------------------- |
-| 21 | Soporte de sesiones cliente remotas |
-| 20 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R6 | Añadidos |
@@ -289,9 +272,10 @@ Esta función devuelve los privilegios asignados a una Sesión utilizando única
:::
-Con las sesiones de clientes remotos, los privilegios sólo se refieren al código ejecutado en el contexto de una [solicitud web enviada a través de un área Web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Con las sesiones de procedimiento almacenadas y sesiones independientes, esta función devuelve una colección que sólo contiene "WebAdmin".
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Ejemplo
@@ -360,10 +344,10 @@ $privileges := Session.getPrivileges()
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------------------------- |
-| 21 | Devuelve True para privilegios promocionados, Soporte de sesiones de clientes remotas |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ------------------------------------------------------------------------------- |
+| 21 | Returns True for promoted privileges, Support of remote and standalone sessions |
+| 18 R6 | Añadidos |
@@ -388,26 +372,27 @@ Esta función devuelve True para el *privilegio* si se llama desde una función
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Con las sesiones de procedimiento almacenadas y las sesiones independientes, esta función siempre devuelve True, sea cual sea el *privilegio*.
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Ejemplo
-Quiere comprobar si el privilegio "WebAdmin" está asociado a la sesión usuario web:
+Desea verificar si el privilegio "CreateInvoices" está asociado a la sesión del usuario web:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Acceso concedido, no hacer nada
+If (Session.hasPrivilege("CreateInvoices"))
+ //Access to Invoice creation features
Else
- //Mostrar una página de autenticación
+ //No access to Invoice creation features
End if
```
#### Ver también
-[*Publicaciones de blog sobre esta funcionalidad*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog post)](https://blog.4d.com/?s=hasPrivilege)
@@ -500,26 +485,16 @@ End if
#### Descripción
-:::note
-
-Esta propiedad solo está disponible con clientes remotos, procedimientos almacenados y sesiones independientes.
+The `.info` property describes the desktop or web session.
-:::
-
-La propiedad `.info` describe la sesión del cliente remoto o del procedimiento almacenado en el servidor, o la sesión autónoma.
-
-:::note
-
-- El objeto `.info` es el mismo objeto que el devuelto en la propiedad "session" por el comando [`Process activity`](../commands/process-activity.md) para sesiones de cliente remoto y procedimientos almacenados.
-- El objeto `.info` es el mismo que devuelve el comando [`Session info`](../commands/session-info.md) para una sesión autónoma.
-
-:::
+- **Remote sessions** and **Stored procedure sessions**: The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command.
+- **Standalone sessions**: The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command.
El objeto `.info` contiene las siguientes propiedades:
| Propiedad | Tipo | Descripción |
| ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | Tipo de sesión: "remote", "storedProcedure", "standalone" |
+| type | Text | Session type: "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nombre de usuario 4D (mismo valor que [`.userName`](#username)) |
| machineName | Text | Sesiones remotas: nombre de la máquina remota. Sesión de procedimientos almacenados: nombre del equipo servidor. Sesión autónoma: nombre de la máquina |
| systemUserName | Text | Sesiones remotas: nombre de la sesión del sistema abierta en la máquina remota. |
@@ -554,9 +529,9 @@ Dado que `.info` es una propiedad calculada, se recomienda llamarla una vez y lu
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------- | :-------------------------: | -------------------------------------------------------------- |
-| Resultado | Boolean | <- | True si la sesión es una sesión Guest, False en caso contrario |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------- | :-------------------------: | -------------------------------------------------------------------------------------- |
+| Resultado | Boolean | <- | True if session is a Guest one, False otherwise (web sessions only) |
@@ -564,11 +539,17 @@ Dado que `.info` es una propiedad calculada, se recomienda llamarla una vez y lu
:::note
-Esta función siempre devuelve **False** con clientes remotos, procedimientos almacenados y sesiones independientes.
+Esta función siempre devuelve **False** con sesiones de escritorio.
:::
-La función `.isGuest()` devuelve True si la sesión es una sesión Guest (es decir, no tiene privilegios).
+The `.isGuest()` function returns True as long as `setPrivileges()` is not called in the session or after a [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) has been executed in the session.
+
+:::note Compatibilidad
+
+With legacy sessions, `.isGuest()` returns True if the session has no privileges.
+
+:::
#### Ejemplo
@@ -607,12 +588,6 @@ End if
#### Descripción
-:::note
-
-Esta función no hace nada en las sesiones cliente remoto, procedimientos almacenados y autónomos.
-
-:::
-
La función `.promote()` añade el privilegio definido en el parámetro *privilege* al proceso actual durante la ejecución de la función de llamada y devuelve el id del privilegio promovido.
La adición dinámica de privilegios es útil cuando los derechos de acceso dependen del contexto de ejecución, que no puede definirse completamente en el archivo "roles.json". Esto es especialmente relevante cuando la misma función puede ser ejecutada por usuarios con diferentes niveles de acceso. El uso de `.promote()` asegura que sólo el proceso actual reciba los privilegios necesarios, sin afectar a otros.
@@ -628,6 +603,11 @@ El id devuelto se incrementa cada vez que un privilegio se añade dinámicamente
Para eliminar un privilegio dinámicamente, llame a la función `demote()` con el id apropiado.
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
+
#### Ejemplo
Varios usuarios se conectan a un único punto final que sirve a distintas aplicaciones. Un usuario de la aplicación #1 no necesita el privilegio "super_admin" porque no crea "VerySensitiveInfo". Un usuario de la aplicación #2 necesita privilegios "super_admin".
@@ -686,12 +666,6 @@ End if
#### Descripción
-:::note
-
-Esta función solo está disponible con sesiones usuario web. Devuelve False en otros contextos.
-
-:::
-
La función `.restore()` sustituye la sesión actual del usuario web por su sesión original correspondiente al *token* UUID. El almacenamiento y los privilegios de la sesión son restaurados.
Si la sesión original del usuario ha sido correctamente restaurada, la función devuelve `true`.
@@ -730,7 +704,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Lanzamiento | Modificaciones |
| ----------- | --------------------------------------------------- |
-| 21 | Soporte de sesiones cliente remotas |
+| 21 | Support of remote and standalone sessions |
| 19 R8 | Compatibilidad con la propiedad "roles" en Settings |
| 18 R6 | Añadidos |
@@ -751,12 +725,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Descripción
-:::note
-
-Esta función no hace nada y siempre devuelve **False** con sesiones de procedimientos almacenadas y las sesiones independientes.
-
-:::
-
La función `.setPrivileges()` asocia a la sesión los privilegios y/o roles definidos en el parámetro y devuelve **True** si la ejecución se ha realizado correctamente.
- En el parámetro *privilege*, pase una cadena que contenga un nombre de privilegio (o varios nombres de privilegio separados por comas).
@@ -781,7 +749,10 @@ Por defecto, cuando no hay ningún privilegio o rol asociado a la sesión, la se
La propiedad [`userName`](#username) está disponible a nivel de objeto de sesión (sólo lectura).
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Ejemplo
@@ -813,10 +784,10 @@ End if
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------ |
-| 20 R5 | Soporte de cliente remoto y sesiones de procedimientos almacenados |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------- |
+| 20 R5 | Soporte de sesiones de escritorio |
+| 18 R6 | Añadidos |
@@ -838,6 +809,8 @@ Puede obtener la propiedad `.storage` de una sesión utilizando el comando [`Ses
:::
+When a desktop session and a web session are [shared using an OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), they also share the same `.storage` object.
+
#### Ejemplo de sesión web
Desea almacenar la IP del cliente en la propiedad `.storage`. Puede escribir en el método base `On Web Authentication`:
@@ -868,10 +841,10 @@ End use
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------ |
-| 20 R5 | Soporte de cliente remoto y sesiones de procedimientos almacenados |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------- |
+| 20 R5 | Soporte de sesiones de escritorio |
+| 18 R6 | Añadidos |
@@ -881,10 +854,10 @@ End use
La propiedad `.userName` contiene el nombre de usuario asociado a la sesión. Puede utilizarlo para identificar al usuario dentro de su código.
-- Con las sesiones web, esta propiedad es una cadena vacía por defecto. Puede definirse mediante la propiedad `privileges` de la función [`setPrivileges()`](#setprivileges).
-- Con sesiones remotas y de procedimientos almacenados, esta propiedad devuelve el mismo nombre de usuario que el comando [`Current user`](../commands-legacy/current-user.md).
-- Con sesiones independientes, esta propiedad contiene "diseñador" o el nombre definido con el comando [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Sesiones web**: esta propiedad es una cadena vacía por defecto. Puede definirse mediante la propiedad `privileges` de la función [`setPrivileges()`](#setprivileges).
+- **Remote/Stored procedure sessions**: This property returns the same user name as the [`Current user`](../commands-legacy/current-user.md) command.
+- **Standalone sessions**: This property contains "designer" or the name set with the [`SET USER ALIAS`](../commands-legacy/set-user-alias.md) command.
-Esta propiedad es **solo lectura**.
+Esta propiedad es **sólo de lectura** para las sesiones de escritorio.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
index de764904264fcb..a06fd3d7c90280 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
@@ -101,11 +101,11 @@ En el parámetro *options*, pase un objeto que puede contener las siguientes pro
Todas las funciones de retrollamada reciben dos parámetros objeto. Su contenido depende de la retrollamada:
-| Parámetros | Tipo | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
-| ---------------------------- | ----------- | ------------ | --------------- | -------------- | ------------ | ------------- |
-| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
-| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
-| $param2.data | Text o Blob | | datos recibidos | datos de error | | |
+| Parámetros | Tipo | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
+| ---------------------------- | ---------- | ------------ | --------------- | -------------- | ------------ | ------------- |
+| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
+| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
+| $param2.data | Text, Blob | | datos recibidos | datos de error | | |
Esta es la secuencia de llamadas de retorno:
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
index c6c2a2c27dd23e..75138168d15806 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
@@ -73,7 +73,7 @@ Los objetos TCPListener ofrecen las siguientes propiedades y funciones:
| Parámetros | Tipo | | Descripción |
| ---------- | ------------------------------ | --------------------------- | ---------------------------------------------------------------- |
-| port | Number | -> | Puerto TCP de escucha |
+| port | Real | -> | Puerto TCP de escucha |
| options | Object | -> | Configuración de [opciones](#options-parameter) para el listener |
| Resultado | 4D.TCPListener | <- | Nuevo objeto TCPListener |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
index 4431e2440854ce..956993fd712ad2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
@@ -45,11 +45,11 @@ Los objetos UDPSocket ofrecen las siguientes propiedades y funciones:
-| Parámetros | Tipo | | Descripción |
-| ---------- | --------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
-| port | Integer | -> | Puerto local utilizado para el socket UDP (0 u omitido = buscar cualquier puerto no utilizado para utilizar) |
-| options | Object | -> | Configuración [opciones](#options-parameter) para el socket |
-| Resultado | UDPSocket | <- | Nuevo objeto UDPSocket |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------------------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------------------- |
+| port | Integer | -> | Puerto local utilizado para el socket UDP (0 u omitido = buscar cualquier puerto no utilizado para utilizar) |
+| options | Object | -> | Configuración [opciones](#options-parameter) para el socket |
+| Resultado | 4D.UDPSocket | <- | Nuevo objeto UDPSocket |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/VectorClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/VectorClass.md
index 9ec0540feb02f6..0e5d306e3c94d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/VectorClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/VectorClass.md
@@ -47,7 +47,7 @@ Los objetos vectoriales son compartidos, inmutables y transmisibles.
| Parámetros | Tipo | | Descripción |
| ---------- | ------------------------- | --------------------------- | ----------------------------------------------------- |
-| parámetros | Colección de reales | -> | Colección de números reales que representan un vector |
+| parámetros | Collection | -> | Colección de números reales que representan un vector |
| Resultado | 4D.Vector | <- | Nuevo objeto vector |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormClass.md
index 7ae2fbca64e6cf..63d6300fbea34a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormClass.md
@@ -3,7 +3,7 @@ id: WebFormClass
title: WebForm
---
-The `WebForm` class contains functions and properties allowing to handle your Qodly web page components. Los objetos `4D.WebForm` se instancian con el comando [`webForm`](../commands/web-form.md).
+La clase `WebForm` contiene funciones y propiedades que permiten manejar sus componentes de páginas Qodly. Los objetos `4D.WebForm` se instancian con el comando [`webForm`](../commands/web-form.md).
Historia
@@ -60,9 +60,9 @@ While `myForm` may not display typical object properties when examined in the de
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ----------------------------------------------- |
-| state | string | -> | Nombre del estado a desactivar de la página web |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | --------------------------------------------------- |
+| state | Text | -> | Nombre del estado a desactivar en el formulario web |
@@ -85,9 +85,9 @@ For more information on web pages states, please refer to the [States section in
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ---------------------------------------- |
-| state | string | -> | Name of state to enable on the web pages |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | ------------------------------------------------ |
+| state | Text | -> | Nombre del estado a activar en el formulario web |
@@ -121,9 +121,9 @@ Function authenticationError()
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ---------------------------------------- |
-| msg | string | -> | Error message to display in the web page |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | ----------------------------------------------- |
+| msg | Text | -> | Mensaje de error a mostrar en el formulario web |
@@ -156,9 +156,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ------------------------------------------------- |
-| msg | string | -> | Mensaje de información a mostrar en la página web |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | ----------------------------------------------------- |
+| msg | Text | -> | Mensaje de información a mostrar en el formulario web |
@@ -191,9 +191,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ---------------------------------------------------- |
-| msg | string | -> | Mensaje de advertencia para mostrar en la página web |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | -------------------------------------------------------- |
+| msg | Text | -> | Mensaje de advertencia para mostrar en el formulario web |
@@ -224,4 +224,4 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
[Web Form](../commands/web-form.md)
[Web Event](../commands/web-event.md)
-[WebFormItem class](../API/WebFormItemClass.md)
\ No newline at end of file
+[WebFormItem class](../API/WebFormItemClass.md)
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
index c0ebfd153ea5a1..ddaf18793f590f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
@@ -9,7 +9,7 @@ Los objetos `4D.WebFormItem` son propiedades del objeto [`4D.WebForm`](WebFormCl
When you call the [`Web Form`](../commands/web-form.md) command, the returned `4D.WebForm` proxy object holds as many `4D.WebFormItems` as there are components with [**server-side references**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview#server-side) in your webform.
-For example, `WebFormObject.myImage` refers to the image component with `myImage` as server reference.
+Por ejemplo, `WebFormObject.myImage` hace referencia al componente de imagen con `myImage` como referencia del servidor.
Historia
@@ -34,9 +34,9 @@ For example, `WebFormObject.myImage` refers to the image component with `myImage
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | --------------------------------------------- |
-| className | string | -> | Nombre de la clase CSS a añadir al componente |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | --------------------------------------------- |
+| className | Text | -> | Nombre de la clase CSS a añadir al componente |
@@ -77,7 +77,7 @@ exposed Function isHidden()
```
2. In Qodly Studio: Select the image component on the canvas, and enter a server-side reference in the Properties Panel > Server Side, for example "myImage".
-3. Select the Button component and add an `onclick` event to it.
+3. Seleccione el componente Button y añádale un evento `onclick`.
4. Adjunta la función `isHidden` al evento.
### .removeCSSClass()
@@ -86,9 +86,9 @@ exposed Function isHidden()
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ------------------------------------------------ |
-| className | string | -> | Nombre de la clase CSS a eliminar del componente |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---- | :-: | ------------------------------------------------ |
+| className | Text | -> | Nombre de la clase CSS a eliminar del componente |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
index 3e22b26ebb592f..e72e50a864ddbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
@@ -68,9 +68,9 @@ Esta propiedad es de sólo lectura.
-| Parámetros | Tipo | | Descripción |
-| ---------- | -------------------- | :-: | ------------------- |
-| message | Text / Blob / Object | -> | El mensaje a enviar |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------------------ | :-: | ------------------- |
+| message | Text, Blob, Object | -> | El mensaje a enviar |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md b/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
index dd24f32e2a209e..ac09cd20259804 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
@@ -232,7 +232,7 @@ Como resultado de la retrollamada `WSHandler.onConnection`, pasa un objeto `conn
| ws | | [`4D.WebSocketConnection`](WebSocketConnectionClass.md) | <- | Objeto de conexión WebSocket actual |
| evento | | Object | <- | Parámetros |
| | type | Text | | "message" |
-| | data | Text / Blob / Object | | datos enviados por el cliente |
+| | data | Text, Blob, Object | | datos enviados por el cliente |
Esta retrollamada para datos WebSocket. Llamada cada vez que el WebSocket recibe datos.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Admin/cli.md b/i18n/es/docusaurus-plugin-content-docs/current/Admin/cli.md
index ae639e17578b53..11876fb11e0779 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Admin/cli.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Admin/cli.md
@@ -64,7 +64,7 @@ Sintaxis:
| `--skip-onstartup` | | Lanza el proyecto sin ejecutar ningún método "automático", incluyendo los métodos base `On Startup` y `On Exit` |
| `--startup-method` | Nombre del método proyecto (cadena) | Método de proyecto a ejecutar inmediatamente después del método base `On Startup` (si no se omite con `--skip-onstartup`). |
-(\*) Algunos diálogos se muestran antes de abrir la base de datos, por lo que es imposible escribir en el [archivo de registro de diagnóstico](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerta de licencia, diálogo de conversión, selección de bases de datos, selección de archivos de datos). En este caso, se
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). En este caso, se
lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema,
y luego la aplicación se cierra.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Admin/licenses.md b/i18n/es/docusaurus-plugin-content-docs/current/Admin/licenses.md
index 3f0cb32f0e1398..ade2fd94054bcf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Admin/licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Admin/licenses.md
@@ -32,7 +32,7 @@ Las licencias de despliegue pueden ser anidadas en el paso de creación por el d
Algunas licencias 4D tienen una fecha de caducidad, después de la cual deben ser renovadas. Cuando la suscripción a la licencia se renueva en 4D Store, sus licencias se actualizan automáticamente en sus aplicaciones 4D al iniciar el proceso [cuando se conecta](GettingStarted/Installation.md) en el Asistente de bienvenida.
-En algunos casos, la actualización de la licencia puede necesitar que haga clic en el botón [**Actualizar**](#refresh) de la caja de diálogo del Gestor de licencias.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Activación de licencias
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Admin/webAdmin.md b/i18n/es/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
index 3d98894fd86ba5..45a69e2f96f144 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
@@ -1,22 +1,27 @@
---
id: webAdmin
-title: WebAdmin
+title: Servidor de administración web
---
-Un componente de servidor web integrado, llamado `WebAdmin`, es utilizado por 4D y 4D Server para dar un acceso web seguro a funciones de gestión específicas como el [Explorador de datos](dataExplorer.md). Puede conectarse local o remotamente a este servidor web desde un navegador o cualquier aplicación web y acceder a la aplicación 4D asociada.
+An embedded web server component, named `WebAdmin`, is used by 4D and 4D Server to provide a secured web access to specific features:
-El WebAdmin se encarga de la autenticación de los usuarios con privilegios "WebAdmin", para que puedan abrir sesiones de administración y acceder a las interfaces dedicadas.
+- Accesos REST al proyecto
+- el [Explorador de datos](dataExplorer.md)
+- the [Qodly Studio preview rendering](https://developer.4d.com/qodly/4DQodlyPro/rendering#preview-in-qodly-studio)
+
+Puede conectarse local o remotamente a este servidor web desde un navegador o cualquier aplicación web y acceder a la aplicación 4D asociada.
+
+The Web Administration Server handles the authentication of users with `WebAdmin` privileges, so that they can open administration sessions and access dedicated interfaces.
Esta funcionalidad se puede utilizar en aplicaciones 4D que se ejecutan con o sin interfaces.
-## Iniciar el servidor web WebAdmin
+## Iniciando el servidor de administración web
-Por defecto, el
-servidor web `WebAdmin` no se lanza. Es necesario configurar el lanzamiento al inicio, o (en las versiones con interfaz) lanzarlo manualmente mediante una opción de menú.
+By default, the Web Administration Server web server is not launched. Es necesario configurar el lanzamiento al inicio, o (en las versiones con interfaz) lanzarlo manualmente mediante una opción de menú.
### Lanzamiento al inicio
-Puede configurar el servidor web `WebAdmin` para que se lance al inicio de la aplicación 4D o 4D Server (antes de que se cargue cualquier proyecto).
+You can configure the Web Administration Server to be launched at 4D or 4D Server application startup (before any project is loaded).
- Si utiliza una aplicación 4D con interfaz, seleccione la opción de menú **Archivo > Administración web > Parámetros....**.
@@ -32,23 +37,23 @@ Seleccione la opción **Iniciar servidor WebAdmin al inicio** en la caja de diá
open ~/Desktop/4D.app --webadmin-auto-start true
```
-> Si el puerto TCP utilizado por el servidor web `WebAdmin` ([HTTPS](#https-port) o [HTTP](#http-port), según la configuración) no está disponible al inicio, 4D intentará sucesivamente los 20 puertos siguientes, y utilizará el primero que esté disponible. Si no hay ningún puerto disponible, el servidor web no se lanza y se muestra un error o para las aplicaciones sin interfaz, aparece en la consola.
+> If the TCP port used by the Web Administration Server ([HTTPS](#https-port) or [HTTP](#http-port), depending on the settings) is not free at startup, 4D will try successively the 20 following ports, and use the first one that is available. Si no hay ningún puerto disponible, el servidor web no se lanza y se muestra un error o para las aplicaciones sin interfaz, aparece en la consola.
### Iniciar y detener
-Si utiliza una aplicación 4D con interfaz, puede iniciar o detener el servidor web `WebAdmin` de su proyecto en cualquier momento:
+If you use a 4D application with interface, you can start or stop the Web Administration Server for your project at any moment:
Seleccione la opción de menú **Archivo > Administración web > Iniciar el servidor**.

-El elemento de menú se convierte en **Detener el servidor** cuando se lanza el servidor; seleccione **Detener el servidor** para detener el servidor web `WebAdmin`.
+The menu item becomes **Stop Server** when the server is launched; select **Stop Server** to stop the Web Administration Server.
-## Propiedades WebAdmin
+## Settings {#settings}
-La configuración del componente `WebAdmin` es obligatoria, en particular para definir la [**llave de acceso**](#access-key). Por defecto, cuando la clave de acceso no está configurada, no se permite el acceso a través de una URL.
+Configuring the Web Administration Server is mandatory in particular to define the [**access key**](#access-key). Por defecto, cuando la clave de acceso no está configurada, no se permite el acceso a través de una URL.
-Puede configurar el componente `WebAdmin` utilizando la [caja de diálogo Parámetros de la administración web](#settings-dialog-box) (ver abajo).
+You can configure the Web Administration Server using the [Web Administration settings dialog box](#settings-dialog-box) (see below).
> Si utiliza una aplicación 4D sin interfaz, puede utilizar los [argumentos de la *Interfaz de Línea de Comandos*](#webadmin-headless-configuration) para definir la configuración básica. Tendrá que personalizar el archivo de configuración para definir los parámetros avanzados.
@@ -64,28 +69,30 @@ Se muestra la siguiente caja de diálogo:
#### Iniciar el servidor WebAdmin al inicio
-Marque esta opción si desea que el servidor web `WebAdmin` se lance automáticamente cuando la aplicación 4D o 4D Server se inicie ([ver arriba](#launch-at-startup)). Por defecto, esta opción no está seleccionada.
+Check this option if you want the Web Administration Server to be automatically launched when the 4D or 4D Server application starts ([see above](#launch-at-startup)). Por defecto, esta opción no está seleccionada.
#### Conexiones HTTP en localhost aceptadas
-Cuando esta opción está seleccionada, podrá conectarse al servidor web `WebAdmin` a través de HTTP en la misma máquina que la aplicación 4D. Por defecto, esta opción está seleccionada.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTP on the same machine as the 4D application. Por defecto, esta opción está seleccionada.
-**Notas:**
+:::note Notas
- Nunca se aceptan conexiones con HTTP que no sean localhost.
- Incluso si esta opción está activada, cuando [HTTPS aceptada](#accept-https) está activada y la configuración TLS es válida, las conexiones localhost utilizan HTTPS.
+:::
+
#### Puerto HTTP
-Número de puerto a utilizar para las conexiones al servidor web `WebAdmin` a través de HTTP cuando la opción **Conexiones HTTP en localhost aceptadas** está marcada. El valor por defecto es 7080.
+Port number to use for connections through HTTP to the Web Administration Server when the **Accept HTTP connections on localhost** option is checked. El valor por defecto es 7080.
#### Aceptar HTTPS
-Cuando esta opción está seleccionada, podrá conectarse al servidor web `WebAdmin` a través de HTTPS. Por defecto, esta opción está seleccionada.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTPS. Por defecto, esta opción está seleccionada.
#### Puerto HTTPS
-Número de puerto a utilizar para las conexiones al servidor web `WebAdmin` a través de HTTPS cuando la opción **HTTPS aceptada** está marcada. El valor por defecto es 7443.
+Port number to use for connections through HTTPS to the Web Administration Server when the **Accept HTTPS** option is checked. El valor por defecto es 7443.
#### Ruta de la carpeta de certificados
@@ -103,7 +110,7 @@ Estado o formato del archivo de registro de peticiones HTTP (HTTPDebugLog_*nn*.t
#### Llave de acceso
-La configuración de una llave de acceso es obligatoria para desbloquear el acceso al servidor web `WebAdmin` a través de una URL (el acceso a través de un comando del menú 4D no requiere una llave de acceso). Cuando no se define ninguna llave de acceso, no se permite que ningún cliente web se conecte a través de una URL a una interfaz de administración web como la [página Explorador de datos](dataExplorer.md). Se devuelve una página de error en caso de solicitud de conexión:
+Defining an access key is mandatory to unlock access to the Web Administration Server through a URL (access via a 4D menu command does not require an access key). Cuando no se define ninguna llave de acceso, no se permite que ningún cliente web se conecte a través de una URL a una interfaz de administración web como la [página Explorador de datos](dataExplorer.md). Se devuelve una página de error en caso de solicitud de conexión:

@@ -124,9 +131,15 @@ Esta opción sólo aparece si la licencia de Qodly Studio está activa.
Esta opción permite al usuario acceder a [Qodly Studio](../WebServer/qodly-studio.md) a nivel de la aplicación 4D. Tenga en cuenta que también necesita [habilitar el acceso en cada nivel de proyecto](../settings/web.md#enable-access-to-qodly-studio).
-## Configuración de WebAdmin sin interfaz
+:::note
+
+This option is automatically checked if you used the [One-click configuration dialog box](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration).
+
+:::
+
+## Headless Configuration
-Todos los [parámetros WebAdmin](#webadmin-settings) se almacenan en el archivo `WebAdmin.4DSettings`. Hay un archivo `WebAdmin.4DSettings` por defecto por cada aplicación 4D y 4D Server, por lo que es posible desplegar varias aplicaciones en la misma máquina local.
+All [Web Administration Server settings](#settings) are stored in the `WebAdmin.4DSettings` file. Hay un archivo `WebAdmin.4DSettings` por defecto por cada aplicación 4D y 4D Server, por lo que es posible desplegar varias aplicaciones en la misma máquina local.
Cuando se ejecuta una aplicación 4D o 4D Server sin interfaz, se puede configurar y utilizar el archivo `WebAdmin.4DSettings` por defecto, o designar un archivo `.4DSettings` personalizado.
@@ -146,12 +159,19 @@ Ejemplo:
```
-## Autenticación y sesión
+## Autenticación
-- Cuando se accede a una página de gestión web introduciendo una URL y sin identificación previa, se requiere una autenticación. El usuario debe introducir la [llave-de-acceso](#access-key) en una ventana de autenticación. Si la llave de acceso no fue definida en la configuración de `WebAdmin`, no es posible el acceso vía URL.
+When a web page controlled by the Web Administration Server is accessed by entering a URL and without prior identification, an authentication is required. El usuario debe introducir la [llave-de-acceso](#access-key) en una ventana de autenticación:
-- Cuando se accede a una página de gestión web directamente desde un elemento de menú de 4D o 4D Server (como **Registros > Explorador de datos** o **Ventana > Explorador de datos** (4D Server)), el acceso se concede sin autenticación, el usuario se autentifica automáticamente.
+
-Una vez concedido el acceso, se crea una [sesión web](WebServer/sessions.md) con el privilegio "WebAdmin" en la aplicación 4D. Mientras la sesión actual tenga el privilegio "WebAdmin", el componente `WebAdmin` entrega las páginas solicitadas.
+If the access key was not defined in the Web Administration Server settings, no access via URL is possible (a specific message is displayed).
+When a web page controlled by the Web Administration Server page is accessed directly from a 4D or 4D Server menu item (such as **Records > Data Explorer** or **Window > Data Explorer** (4D Server)), access is granted without authentication, the user is automatically authenticated.
+
+:::note
+
+Once the access is granted, a [web session](WebServer/sessions.md) with a specific "WebAdmin" privilege is created by the Web Administration Server. This privilege provides an open access to all data through web processes, as soon as no [specific permissions are applied to resources](../ORDA/privileges.md).
+
+:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Concepts/dt_number.md b/i18n/es/docusaurus-plugin-content-docs/current/Concepts/dt_number.md
index 90ab1aa1163c11..d9033d9d79f430 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Concepts/dt_number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Concepts/dt_number.md
@@ -81,7 +81,7 @@ El operador modulo % devuelve valores significativos con números que están en
### División entera
-The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. This operator returns significant values with integer numbers only.
+The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. Este operador devuelve valores significativos sólo con números enteros.
### Comparación real
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md b/i18n/es/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
index 96b7c9e88d6eea..408f1a621e76c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
@@ -427,5 +427,6 @@ En el siguiente ejemplo, el caracter **Retorno de carro** (secuencia de escape `
Las siguientes convenciones se utilizan en la documentación del lenguaje 4D:
- los caracteres{ }`(llaves) indican parámetros opcionales. Por ejemplo,`.delete( { option : Integer } )\` significa que el parámetro *option* puede omitirse al llamar a la función.
-- la notación `{ ; ...param }` indica un número ilimitado de parámetros. Por ejemplo, `.concat( value : any { ;...valueN } ) : Collection` significa que se puede pasar a la función un número ilimitado de valores de cualquier tipo.
+- the `{; ...*param* : Type}` notation indicates an unlimited number of parameters of the same type. For example, `.concat( value : any { ;...valueN : Text } ) : Collection` means that an unlimited number of values of any type can be passed to the function.
+- the `{; ...(*param* : Type ; *param2* : Type) }` notation indicates an unlimited number of groups of parameters. For example, `COLLECTION TO ARRAY ( collection : Collection ; array : Array {; propertyName : Text}{; ...(array : Array ; propertyName : Text) } )` means that an unlimited number of couple values or type array/text can be passed to the command.
- la palabra clave `any` se utiliza para parámetros que pueden ser de cualquier tipo (número, texto, booleano, fecha, hora, objeto, colección...).
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md
index e684cd82a4f2a2..9096f3b1d00154 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Debugging/debugger.md
@@ -42,7 +42,7 @@ La ventana del depurador suele aparecer en la máquina donde se ejecuta el códi
:::note Notas
- Si el servidor se ejecuta en modo sin interfaz, no se puede mostrar ninguna ventana de depuración en el servidor, es necesario utilizar el depurador remoto. Ver [Depuración desde máquinas remotas](./debugging-remote.md).
-- También puede [adjuntar el depurador de Qodly Studio a una aplicación 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) si necesita depurar páginas Qodly en un entorno desplegado.
+- También puede [adjuntar el depurador de Qodly Studio a una aplicación 4D Server](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) si necesita depurar páginas Qodly en un entorno desplegado.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Desktop/building.md b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/building.md
index a4fcb9aef8f1f5..cafed46b3b55c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Desktop/building.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/building.md
@@ -407,8 +407,8 @@ Los elementos deben ser instalados:
Para activar esta funcionalidad, añada las llaves `DatabaseToEmbedInClientWinFolder` y/o `DatabaseToEmbedInClientMacFolder` en el archivo de configuración *buildApp*. Cuando una de estas llaves está presente, el proceso de generación de la aplicación cliente genera una aplicación monopuesto: la estructura compilada, en lugar del archivo *EnginedServer.4Dlink*, se coloca en la carpeta "Database".
-- Si existe una carpeta de datos por defecto en la aplicación monopuesto, se integra una licencia.
-- Si no existe una carpeta de datos por defecto en la aplicación monopuesto, ésta se ejecutará sin archivo de datos y sin licencia.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
El escenario básico es:
@@ -497,10 +497,11 @@ Los siguientes módulos opcionales pueden ser deseleccionados:
- **SpellChecker**: se utiliza para las funciones integradas de [corrección ortográfica](../FormObjects/properties_Entry.md#auto-spellcheck) y los comandos disponibles para las áreas de entrada y las áreas 4D Write Pro.
- **4D Updater**: controla la [actualización automática](#what-is-a-clientserver-application) de las partes del cliente y es utilizado por el comando `SET UPDATE FOLDER` para [actualizaciones automáticas del servidor](#automatic-updating-of-server-or-single-user-applications).
+- **4D Qodly Pro and Data Explorer**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/) as well as the [Data Explorer](../Admin/dataExplorer.md).
## Página licencias y certificados
-La página de Licencias y certificados puede utilizarse para:
+The Licenses & Certificate page can be used to:
- configure las [licencias de despliegue](../Admin/licenses.md#deployment-licenses) que quiere integrar en su aplicación [monopuesto](#application-page) o [cliente-servidor](#clientserver-page),
- firmar la aplicación mediante un certificado en macOS.
@@ -535,7 +536,7 @@ Se requiere una conexión a Internet en la máquina del usuario en el primer lan
- El comando [`License info`](../commands/license-info.md) permite conocer el tipo de licencia de la aplicación (colección *.attributes*) y su fecha de caducidad (objeto *.expirationDate*).
- La llave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite gestionar las versiones de evaluación.
-- El comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) no hace nada cuando se llama desde una versión de evaluación.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Desktop/clientServer.md b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
index 689333389298b9..053f041374d1d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
@@ -85,93 +85,3 @@ Sin embargo, debe prestar atención a las siguientes diferencias de comportamien
> No se recomienda instalar plug-ins o componentes a nivel de la aplicación 4D o 4D Server.
-## Sesiones de usuarios remotos
-
-En el servidor, el comando [`Session`](../commands/session.md) devuelve un objeto `session` que describe la sesión de usuario actual. Este objeto se maneja a través de las funciones y propiedades de la [clase `Session`](../API/SessionClass.md).
-
-:::tip Entradas de blog relacionadas
-
-[Objeto sesión remota 4D con conexión cliente/servidor y procedimiento almacenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
-
-:::
-
-### Utilización
-
-El objeto `session` permite manejar la información y los privilegios de la sesión del usuario remoto.
-
-Puede compartir datos entre todos los procesos de la sesión del usuario utilizando el objeto compartido [`session.storage`](../API/SessionClass.md#storage). Por ejemplo, puede iniciar un procedimiento de autenticación y verificación de usuario cuando un cliente se conecta al servidor, que involucra ingresar un código enviado por correo electrónico o SMS en la aplicación. A continuación, añada la información de usuario al almacenamiento de sesión, permitiendo al servidor identificar al usuario. De este modo, el servidor 4D puede acceder a la información del usuario para todos los procesos del cliente, lo que permite escribir código personalizado según el rol del usuario.
-
-You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
-
-### Disponibilidad
-
-El objeto `session` del usuario remoto está disponible en:
-
-- Métodos proyecto que tienen el atributo [Ejecutar en el Servidor](../Project/code-overview.md#execute-on-server) (se ejecutan en el proceso "twinned" del proceso cliente),
-- Triggers,
-- ORDA [funciones del modelo de datos](../ORDA/ordaClasses.md) (excepto las declaradas con la palabra clave [`local`](../ORDA/ordaClasses.md#local-functions),
-- Los métodos base `On Server Open Connection` y `On Server Shutdown Connection` de la base de datos.
-
-:::info
-
-Todos los procedimientos almacenados en el servidor comparten la misma sesión de usuario virtual. Para más información, consulte [esta página en doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Compartiendo la sesión con páginas Qodly en áreas web
-
-Remote client sessions can be used to handle Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. En tales aplicaciones, las páginas Qodly se ejecutan dentro de las [áreas Web](../FormObjects/webArea_overview.md) 4D estándar.
-
-Para gestionar esta configuración, necesita utilizar sesiones cliente remotas. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Las sesiones compartidas se gestionan a través de [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip Entrada de blog relacionada
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Ejemplo
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-Función *resetPrivileges()* en la clase Datastore:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-Función *getOTP()* en la clase Datastore:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Desktop/sessions.md b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/sessions.md
new file mode 100644
index 00000000000000..4ca8cecfd7fb0c
--- /dev/null
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Tipos de sesiones
+
+Las sesiones de escritorio incluyen:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sesiones de usuarios remotos
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Este objeto se maneja a través de las funciones y propiedades de la [clase `Session`](../API/SessionClass.md).
+
+:::note
+
+En un 4D remoto, el objeto `session` siempre devuelve null.
+
+:::
+
+:::tip Entradas de blog relacionadas
+
+[Objeto sesión remota 4D con conexión cliente/servidor y procedimiento almacenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
+
+:::
+
+### Utilización
+
+El objeto `session` permite manejar la información y los privilegios de la sesión del usuario remoto.
+
+Puede compartir datos entre todos los procesos de la sesión del usuario utilizando el objeto compartido [`session.storage`](../API/SessionClass.md#storage). Por ejemplo, puede iniciar un procedimiento de autenticación y verificación de usuario cuando un cliente se conecta al servidor, que involucra ingresar un código enviado por correo electrónico o SMS en la aplicación. A continuación, añada la información de usuario al almacenamiento de sesión, permitiendo al servidor identificar al usuario. De este modo, el servidor 4D puede acceder a la información del usuario para todos los procesos del cliente, lo que permite escribir código personalizado según el rol del usuario.
+
+You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
+
+### Disponibilidad
+
+El objeto `session` del usuario remoto está disponible en:
+
+- Métodos proyecto que tienen el atributo [Ejecutar en el Servidor](../Project/code-overview.md#execute-on-server) (se ejecutan en el proceso "twinned" del proceso cliente),
+- Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Sesiones de procedimientos almacenados
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilización
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilidad
+
+El objeto `session` de los procedimientos almacenados está disponible desde:
+
+- Métodos proyecto que son llamados por el comando [`Execute on Server`](../commands-legacy/execute-on-server.md),
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+Una sesión independiente es la sesión de un solo usuario que se ejecuta cuando trabaja localmente con 4D.
+
+### Utilización
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilidad
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. En tales aplicaciones, las páginas Qodly se ejecutan dentro de las [áreas Web](../FormObjects/webArea_overview.md) 4D estándar.
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Las sesiones compartidas se gestionan a través de [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Entrada de blog relacionada
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Ejemplo
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Extensions/develop-components.md b/i18n/es/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
index aabaac50eda227..dd180eabe1d02f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
@@ -448,6 +448,30 @@ La ejecución del código de inicialización o cierre se realiza mediante el mé
> Por razones de seguridad, debe autorizar explícitamente la ejecución del método base `On Host Database Event` en la base local para poder llamarlo. Para ello, debe marcar la opción [**Ejecutar el método "On Host Database Event" de los componentes**](../settings/security.md#options) en la página Seguridad de la Configuración.
+## Ícono personalizado
+
+You can use a **custom icon** for your dependency, so that it can be visually distinguished from other components in the [Project Dependencies panel](../Project/components.md#monitoring-project-dependencies).
+
+When no custom icon is defined, components use a **default icon**:
+
+
+
+To declare a custom icon for your component:
+
+1. Create a picture file for the icon and name it `logo.svg` or `logo.png`. Note that the picture will be displayed with a square shape (and automatically resized if necessary). The **svg** format is recommended.
+
+2. Copy the icon file in the [**Resources folder**](../Project/architecture.md#resources) of the component.
+
+The logo file will be used in the Project Dependency window for the component, whether it is interpreted or [built](../Desktop/building.md#build-component).
+
+
+
+:::note
+
+If both a `logo.svg` and `logo.png` files are found, the `logo.svg` takes priority.
+
+:::
+
## Info.plist
Los componentes pueden tener un archivo `Info.plist` en su [carpeta raíz](../Project/architecture.md) para ofrecer información extra legible por el sistema (sólo macOS) y el [Gestor de dependencias](../Project/components.md#loading-components).
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
index c06a9428ab317f..f5d037149e1a50 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ La comunicación entre el formulario padre y las instancias del subformulario pu
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. El evento se recibe en el método del objeto contenedor. Puede estar en el origen de todo evento detectado por el subformulario (clic, arrastrar y soltar, etc.).
El código del evento no tiene restricciones (por ejemplo, 20000 o -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. En el primer caso, sólo puede utilizar los eventos que haya marcado en la lista de propiedades para los contenedores de subformulario. En el segundo caso, el código no debe corresponder a ningún evento de formulario existente. Se recomienda utilizar un valor negativo para asegurarse de que este código no será utilizado por 4D en futuras versiones.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md
index ee0b5d7a0faa89..dffc22876e2f01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/FormObjects/webArea_overview.md
@@ -123,7 +123,7 @@ $4d.today(function(result)
En lugar de utilizar un método independiente, también podemos utilizar una función de clase para realizar el cálculo.
-Define a "SumCalculator" 4D user class with a `calcSum` function which receives parameters and returns their sum:
+Define una clase usuario 4D "SumCalculator" con una función `calcSum` que recibe parámetros y devuelve su suma:
```4d
// SumCalculator user class
@@ -340,7 +340,7 @@ El archivo 4DCEFParameters.json por defecto contiene los siguientes cambios:
:::info Entrada de blog relacionada
-[Custom Parameters for Initializing Embedded Web Area](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
+[Parámetros personalizados para inicializar el área web integrada](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md
index 02b64a0172df22..628f7c8f19c8e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Notes/updates.md
@@ -12,6 +12,7 @@ Lea [**Novedades en 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2/),
- [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) has been enhanced to provide greater precision in error detection (see [this blog post](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) for more information).
- [4D Write Pro standard actions](../WritePro/user-legacy/standard-actions.md) that apply [lists](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) now automatically adjust paragraph margins to keep markers positioned inside it.
- Built-in support of `order by` in query strings for AI vector searches using [`query()`](../API/DataClassClass.md#query-by-vector-similarity) functions and the [REST API](../REST/$orderby.md).
+- You can [customize the icons of your components](../Extensions/develop-components.md#custom-icon).
- 4D AIKit component: new [File API](../aikit/Classes/OpenAIFilesAPI.md) class to implement **file upload** features.
- [**Find in Design**](../Project/search-replace.md#search-in-components) and [**Replace in contents**](../Project/search-replace.md#replace-in-contents) features can now support editable components.
- [**Lista de bugs corregidos**](https://bugs.4d.fr/fixedbugslist?version=21_R2): lista de todos los bugs que se han corregido en 4D 21 R2.
@@ -22,7 +23,7 @@ Lea [**Novedades en 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2/),
| Librería | Versión actual | Actualizado en 4D | Comentario |
| --------- | -------------------------------------- | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| BoringSSL | 9b86817 | **21 R2** | Utilizado para QUIC |
+| BoringSSL | 9b86817 | **21** | Utilizado para QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | Utilizado para la corrección ortográfica en formularios 4D y 4D Write Pro |
| ICU | 77.1 | **21** | Esta actualización fuerza una reconstrucción automática de los índices alfanuméricos, textos y objetos. |
@@ -32,10 +33,10 @@ Lea [**Novedades en 4D 21 R2**](https://blog.4d.com/en-whats-new-in-4d-21-r2/),
| Libuv | 1.51.0 | **21** | Utilizado para QUIC |
| libZip | 1.11.4 | **21** | Utilizado por los componentes zip class, 4D Write Pro, svg y serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.18.0 | **21 R2** | Utilizado para QUIC |
+| ngtcp2 | 1.18.0 | **21** | Utilizado para QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Utilizado para [`WP Export document`](../WritePro/commands/wp-export-document.md) y [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
-| SpreadJS | 17.1.0 | 20 R7 | Consulte [esta entrada de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) para obtener una visión general de las nuevas funciones |
+| SpreadJS | 18.2.0 | 21 R2 | Consulte [esta entrada de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-21-r2/) para obtener una visión general de las nuevas funciones |
| webKit | WKWebView | 19 | |
| Xerces | 3.3.0 | **21** | Utilizado para comandos XML |
| Zlib | 1.3.1 | **21** | |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/orda-events.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
index 38125cee06eca6..e2032a8f71c497 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
@@ -599,7 +599,7 @@ Function event afterDrop($event : Object)
Este evento se activa justo después de que una entidad es soltada.
-This event is useful after dropping data to propagate the drop action outside the application or to execute administration tasks. Por ejemplo, se puede utilizar para enviar un correo electrónico de cancelación después de soltar los datos. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
+Este evento es útil después de soltar datos para propagar la acción de soltar fuera de la aplicación o para ejecutar tareas de administración. Por ejemplo, se puede utilizar para enviar un correo electrónico de cancelación después de soltar los datos. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
La función recibe un [objeto *event*](#event-parameter) como parámetro.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md
index 96207ad628a079..1c5d8b9374e9ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/ordaClasses.md
@@ -939,7 +939,7 @@ Las peticiones remotas son:
Una función que no está expuesta no está disponible en aplicaciones remotas y no se puede llamar a ninguna instancia de objeto desde una petición REST. Si una aplicación remota intenta acceder a una función no expuesta, se devuelve el error "-10729 - Método miembro desconocido".
-To allow a function or an attribute to be called by a remote request, you must explicitly declare it using the `exposed` keyword. La sintaxis formal es:
+Para permitir que una función o un atributo sea llamado por una petición remota, debe declararlo explícitamente utilizando la palabra clave `exposed`. La sintaxis formal es:
```4d
// declarar una función expuesta
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md
index 1981b5f2286c8d..ab2b9c89de43e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/ORDA/privileges.md
@@ -248,7 +248,7 @@ In Qodly Studio for 4D, the login mode can be set using the [**Force login** opt
The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
-- **Unrestricted mode** (`restrictedByDefault`: **false**): Resources without defined permissions are accessible to all requests. Este modo es adecuado para entornos de desarrollo donde el acceso se puede restringir gradualmente.
+- **Modo sin restricciones** (`restrictedByDefault`: **false**): los recursos sin permisos definidos son accesibles a todas las peticiones. Este modo es adecuado para entornos de desarrollo donde el acceso se puede restringir gradualmente.
- **Restricted mode** (`restrictedByDefault`: **true**): Resources without defined permissions are blocked by default. Este modo se recomienda para entornos de producción donde el acceso debe ser otorgado explícitamente.
:::note Compatibilidad
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/Project/search-replace.md b/i18n/es/docusaurus-plugin-content-docs/current/Project/search-replace.md
index 15c556e8afa004..6008f5792cd6f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/Project/search-replace.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/Project/search-replace.md
@@ -5,10 +5,10 @@ title: Buscar y reemplazar
4D provides several search and replace functions for elements in all of the Design environment.
-- You can search for a string or a type of object (variable, comment, expression, etc.) in part of or in the entire project on the basis of custom criteria ("starts with", "contains", etc.). You can, for example, search for all the variables containing the string "MyVar", only in methods whose name begins with "HR_".
-- The results are displayed in a results window, where it is possible to perform replacements in the contents. You can also export these results in a text file that can be imported into a spreadsheet.
-- You can detect variables and methods that are not used in your code and then remove them to free up memory.
-- You can rename a project method or a variable throughout the Design environment in a single operation.
+- You can search for a string or a type of object (variable, comment, expression, etc.) en parte o en todo el proyecto en función de criterios personalizados ("empieza por", "contiene", etc.). Por ejemplo, puede buscar todas las variables que contengan la cadena "MiVar", solo en los métodos cuyo nombre empiece por "HR_".
+- Los resultados se muestran en una ventana de resultados, donde es posible realizar sustituciones en los contenidos. También puede exportar estos resultados en un archivo de texto que puede importarse a una hoja de cálculo.
+- Puede detectar variables y métodos que no se utilicen en su código y eliminarlos para liberar memoria.
+- Puede renombrar un método proyecto o una variable en todo el entorno de diseño en una sola operación.
:::note
@@ -18,29 +18,29 @@ There are also functions for searching among the methods of your project in the
## Buscar ubicación
-When you search the Design environment, the following elements are searched:
+Cuando se busca en el entorno Diseño, se buscan los siguientes elementos:
- Names of project methods and classes
- Contenido de todos los métodos y clases
-- Names of tables, fields and forms
+- Nombres de tablas, campos y formularios
- Contenido de los formularios:
- object names and titles
- names of help tips, pictures, variables, style sheets,
- formatting strings
- expresiones
-- Menus (names and items) and commands associated with menu items
-- Choice lists (names and items)
-- Help tips (names and content)
-- Formats / filters (names and content)
-- Comments in the Explorer and in the code
+- Menús (nombres y elementos) y comandos asociados a los elementos de menú
+- Listas de selección (nombres y elementos)
+- Consejos de ayuda (nombres y contenido)
+- Formatos / filtros (nombres y contenido)
+- Comentarios en el Explorador y en el código
## Buscar en Diseño
### Iniciar una búsqueda
-Specify your search criteria in the "Find in design" window:
+Especifique sus criterios de búsqueda en la ventana "Buscar en el diseño":
-1. Click on the Search button () in the 4D toolbar.
+1. Haga clic en el botón Buscar () de la barra de herramientas 4D.
OR
Select the **Find in Design...** command from the **Edit** menu.
@@ -48,16 +48,16 @@ The "Find in design" window appears:

-The areas of the "Find in design" vary dynamically depending on the selections made in the menus. You can expand this window so that all options are visible:
+The areas of the "Find in design" vary dynamically depending on the selections made in the menus. Puedes expandir esta ventana para que todas las opciones sean visibles:

-2. Build your search using the different menus and entry areas of the dialog box and if necessary enter the character string to be searched for. These items are described in the following sections.
+2. Build your search using the different menus and entry areas of the dialog box and if necessary enter the character string to be searched for. Estos elementos se describen en las secciones siguientes.
-3. Set the [search options](#search-options) (if necessary).
+3. Define las [opciones de búsqueda](#search-options) (si es necesario).
-4. Click **OK** or press the **Enter** key.
- When the search is finished, the [Results window](#results-window) appears, listing the elements found.
+4. Haga clic en **OK** o presione la tecla **Entrada**.
+ Cuando la búsqueda ha terminado, aparece la [ventana de resultados](#results-window) indicando los elementos encontrados.
:::note
@@ -65,54 +65,54 @@ You can cancel an extensive search that is underway using the **x** button; this
:::
-Once you have executed a search, the value entered in the search area is saved in memory. This value, as well as all the other values entered during the same session, can be selected from the combo box.
+Una vez ejecutada una búsqueda, el valor introducido en el área de búsqueda se guarda en la memoria. Este valor, así como todos los demás valores introducidos durante la misma sesión, pueden seleccionarse en el combo box.
### Buscar
-You specify the type of element to look for using the **Find** menu. The following choices are available:
+You specify the type of element to look for using the **Find** menu. Las siguientes opciones están disponibles:
-- **Text**: In this case, 4D looks for a character string throughout the Design environment. The search is done in plain text mode, without taking the context into account. For example, you can look for the text "ALERT("Error number:"+" or "button27". In this mode, you cannot use the wildcard character because "@" is considered to be a standard character.
+- **Text**: In this case, 4D looks for a character string throughout the Design environment. The search is done in plain text mode, without taking the context into account. For example, you can look for the text "ALERT("Error number:"+" or "button27". En este modo, no puede utilizar el caracter comodín porque "@" se considera un caracter estándar.
- **Comment**: This search is basically the same as the previous one, but it is restricted to the contents of comments (lines beginning with //) in the code and in the Explorer window. For example, you can search for any comments containing the string "To be verified".
:::note
-The end result of both types of searches depends on the [search mode](#search-mode) selected.
+El resultado final de ambos tipos de búsqueda depende del [modo de búsqueda](#search-mode) seleccionado.
:::
-- **Language expression**: Used to search for any valid 4D expression; the search is performed in the "contains" search mode. Validity is important because 4D must be able to evaluate an expression to be able to search for it. For example, a search for "[clients" (invalid expression) will not return any result whereas "[clients]" is correct. This option is particularly suitable for searches for value assignments and comparisons. Por ejemplo:
- - Search for "myvar:=" (assignment)
- - Search for "myvar=" (comparison)
-- **Language element**: Used to search for a specific language element by its name. 4D can distinguish between the following elements:
- - **Any language element**: Any element from the list below.
- - **Project method or Class**: Name of a project method or class, for example "M_Add" or "EmployeeEntity".
- - **Form:** Form name, for example "Input". The command searches among project forms and table forms.
+- **Language expression**: Used to search for any valid 4D expression; the search is performed in the "contains" search mode. La validez es importante porque 4D debe ser capaz de evaluar una expresión para poder buscarla. For example, a search for "[clients" (invalid expression) will not return any result whereas "[clients]" is correct. Esta opción es especialmente adecuada para la búsqueda de asignaciones de valor y comparaciones. Por ejemplo:
+ - Buscar "myvar:=" (asignación)
+ - Buscar "myvar=" (comparación)
+- **Language element**: Used to search for a specific language element by its name. 4D puede distinguir entre los siguientes elementos:
+ - **Cualquier elemento del lenguaje**: todo elemento de la lista de abajo.
+ - **Método proyecto o clase**: nombre de un método proyecto o clase, por ejemplo "M_Add" o "EmployeeEntity".
+ - **Form:** Form name, for example "Input". El comando busca entre formularios proyecto y formularios tabla.
- **Field or Table**: Name of a table or field, for example "Customers".
- - **Variable**: Any variable name, such as "$myvar".
+ - **Variable**: todo nombre de variable, como "$myvar".
**4D constant**: Any constant, such as "Is Picture".
**String in quotes**: Literal text constant; i.e. any value within quotes in the code editor or inserted into text areas of the Form editor (static text or group boxes). For example, a search for "Martin" will return results if your code contains the line: `ds.Customer.query("name = :1"; "Martin")`
- **4D command**: Any 4D command, for example "Alert".
- **Plug-in command**: Plug-in command installed in the application.
- **Properties**: An object property name (includes ORDA attribute names). For example "lastname" will find "$o.lastname" and "ds.Employee.lastname".
-- **Any object**: This option searches among all the elements in the Design environment. Only the modification date filter is available. Use this option, for example, to search for "anything modified today".
+- **Cualquier objeto**: esta opción busca entre todos los elementos del entorno Diseño. Sólo está disponible el filtro de fecha de modificación. Use this option, for example, to search for "anything modified today".
### Modo de búsqueda
The search mode menu (i.e. "which", "that is" or "whose name") specifies how to search for the value that is entered. The contents of this menu vary according to the type of element to search for as selected in the **Find** dropdown list.
-- Search options for Text or Comment:
+- Opciones de búsqueda de Texto o Comentario:
- **contains**: Searches all text in the Design environment for the specified string. Search results for "var" can include "myvar", "variable1" or "aVariable".
- - **contains whole word**: Searches all text of the Design environment for the string as a whole word. Search results for "var" only include exact occurrences. They will not include "myvar" but will include, for example, "var:=10" or "ID+var" because the symbols : or + are word separators.
- - **begins with / ends with**: Searches for the string at the beginning or end of the word (text search) or at the beginning or end of the comment line (comment search). In "Text ends with" mode, searching for "var" will find "myvar".
+ - **contiene la palabra completa**: busca en todo el texto del entorno Diseño la cadena como palabra entera. Los resultados de la búsqueda de "var" sólo incluyen apariciones exactas. They will not include "myvar" but will include, for example, "var:=10" or "ID+var" because the symbols : or + are word separators.
+ - **begins with / ends with**: Searches for the string at the beginning or end of the word (text search) or at the beginning or end of the comment line (comment search). En modo "El texto termina en", si busca "var" encontrará "myvar".
- Search options for Language element: The menu offers standard options (matches, contains, begins with, ends with). Note that you can use the search wildcard (@) with the matches option (returns all objects of the type specified).
### Search in components
-When your current project references [editable components](../Extensions/develop-components.md#editing-components), you can designate one or all your components as a target for the search. By default, a search is executed in the host only. To modify the target for a search, deploy the **in the project** menu:
+When your current project references [editable components](../Extensions/develop-components.md#editing-components), you can designate one or all your components as a target for the search. Por defecto, una búsqueda se ejecuta sólo en el host. To modify the target for a search, deploy the **in the project** menu:

-You can select as target:
+Puede seleccionar como objetivo:
- the **host project** (default option, top of the list): the search will only be executed within the host project code and forms, excluding components.
- the **host project and all its components**: the search will be executed in the host project and in all its loaded components.
@@ -120,7 +120,7 @@ You can select as target:
:::note
-When no searchable component is found, no menu is available.
+Si no se encuentra ningún componente de búsqueda, no hay menú disponible.
:::
@@ -136,7 +136,7 @@ Folders are defined on the Home Page of the Explorer.
:::
-### Modification date of the parent
+### Fecha de modificación del padre
This menu restricts the search with respect to the creation/modification date of its parent (for example, the method containing the string being searched for). In addition to standard date criteria (is, is before, is after, is not), this menu also contains several options to let you quickly specify a standard search period:
@@ -147,15 +147,15 @@ This menu restricts the search with respect to the creation/modification date of
### Opciones de búsqueda
-You can select options that can help speed up your searches:
+Puede seleccionar opciones que le ayuden a agilizar sus búsquedas:
-- **Search in forms**: When this option is deselected, the search is done throughout the project, except in forms.
+- **Búsqueda en formularios**: cuando se deselecciona esta opción, la búsqueda se realiza en todo el proyecto, excepto en formularios.
- **Search in methods**: When this option is deselected, the search is done throughout the project, except in methods.
- **Case Sensitive**: When this option is selected, the search uses the case of the characters as they have been entered in the Find area.
-## Results window
+## Ventana Resultados
-The Results window lists all elements found that match the search criteria set using different types of searches:
+La ventana Resultados lista todos los elementos encontrados que coinciden con los criterios de búsqueda establecidos mediante distintos tipos de búsqueda:
- [búsqueda estándar](#starting-a-search)
- [search for unused elements](#find-unused-methods-and-global-variables)
@@ -167,7 +167,7 @@ It shows the results as a hierarchical list organized by type of elements found.

-You can double-click on a line in this window to view the element in its editor, such as the [code editor](../code-editor/write-class-method.md). If you do several searches, each search opens its own result window, leaving previous result windows open.
+You can double-click on a line in this window to view the element in its editor, such as the [code editor](../code-editor/write-class-method.md). Si realiza varias búsquedas, cada búsqueda abre su propia ventana de resultados, dejando abiertas las ventanas de resultados anteriores.
When more than one occurrence has been found, the list indicates their **count** next to the element name.
@@ -179,24 +179,24 @@ When an element found belongs to a component, the **component name** is displaye
Once a search is completed, you can use the  button to perform the search again with the same criteria and options.
-### Options menu
+### Menú Opciones
-You can perform various actions using the options menu:
+Puede realizar varias acciones utilizando el menú opciones:

- **Remove from list**: removes selected item(s) from the results window. More specifically, this lets you keep only items targeted by a replacement operation in the contents or used for drag and drop between applications.
- **Remove all items from list except selection**: clears everything from the results window except for the selected item(s).
-- [**Replace in content**](#replace-in-contents): replaces a character string within the selected item(s).
+- [**Reemplazar en contenido**](#replace-in-contents): reemplaza una cadena de caracteres dentro del elemento o elementos seleccionados.
- **Select >**: selects one type of item (project methods, object names, and so on) from among all the items found in the Results window. The hierarchical sub-menu also provides commands to select (All) or deselect (None) all the items at once.
-- **Collapse all/Expand all**: expands or collapses all the hierarchical items in the list of results.
-- **Export Results**: exports information about the search criteria and elements listed in the Results window. This text file can then be imported into a spreadsheet such as Excel, for example. For each item, the following information is exported as tab-separated values in a text file:
- - Host project or component name
+- **Contraer todo/Expandir todo**: expande o contrae todos los elementos jerárquicos de la lista de resultados.
+- **Exportar resultados**: exporta información sobre los criterios de búsqueda y los elementos que aparecen en la ventana Resultados. Este archivo de texto puede importarse a una hoja de cálculo como Excel, por ejemplo. For each item, the following information is exported as tab-separated values in a text file:
+ - Proyecto anfitrión o nombre del componente
- Type (method, Class, formObject, trigger...)
- Path
- - Property (if accurate): provides the property of the object that matches the criteria. For example, a string could be found in a variable name (variable property) and an object name (name property) within in the same form. This field is empty when the matching element is the object itself.
+ - Propiedad (si es preciso): ofrece la propiedad del objeto que coincide con los criterios. For example, a string could be found in a variable name (variable property) and an object name (name property) within in the same form. This field is empty when the matching element is the object itself.
- Contents (if accurate): provides the contents that actually matches the criteria; for example, the code line that contains the requested string.
- - Line number (for code) or page number (for form objects)
+ - Número de línea (para código) o número de página (para objetos de formulario)
## Replace in content
@@ -204,7 +204,7 @@ The Replace in content function allows you to replace one character string with
:::note
-The **Replace in content** menu item is disabled if you work in a read-only database (e.g. in a .4dz file).
+La opción de menú **Reemplazar en contenido** está desactivada si trabaja en una base de datos de sólo lectura (por ejemplo, en un archivo .4dz).
:::
@@ -215,15 +215,15 @@ When you select this command, a dialog box appears where you enter the character
Las operaciones de sustitución funcionan del siguiente modo:
- Replacing is always carried out among all items found in the list and not just for a selection. However, it is possible to narrow the replacing operation by first reducing the contents of the list using the **Remove from list** or **Remove all items from list except selection** commands in the [options menu](#options-menu) or the contextual menu.
-- If the Results window includes elements from components, the replacing will be done in the component(s) also.
+- Si la ventana Resultados incluye elementos de componentes, la sustitución se realizará también en el componente o componentes.
- Only the occurrences shown in the list will be replaced and only after checking the initial search criteria for cases where objects were modified between the initial search and the replacing operation.
- Replacing is done in the code, properties of form objects, contents of help messages, entry filters, menu items (item text and method calls), choice lists, comments.
-- For each object modified, 4D checks whether it is already loaded by another machine or in another window. In the case of conflict, a standard dialog box appears indicating that the object is locked. You can close the object and then try again or cancel its replacement. The replacing operation will then continue with the other objects in the list.
+- Para cada objeto modificado, 4D comprueba si ya está cargado por otra máquina o en otra ventana. In the case of conflict, a standard dialog box appears indicating that the object is locked. You can close the object and then try again or cancel its replacement. The replacing operation will then continue with the other objects in the list.
- If a method or form concerned by a "replace in content" operation is currently being edited by the same 4D application, it will be modified directly in the open editor (no warning appears). Forms and methods modified in this way are not saved automatically: you will need to use the **Save** or **Save All** command explicitly to validate the changes.
- After a replacement is made in a list item, it will appear in italics. A count of replacements made in real time appears at the bottom of the window.
-- Elements are never renamed themselves by the **Replace in content** feature, except for form objects. Hence it is possible that certain items in the list may not be affected by the replacing operation. This can occur when only the item name corresponds to the initial search criteria. In this case, the list items do not necessarily all appear in italics and the final replacement count may be less than the number of occurrences found by the initial search.
+- Los elementos nunca son renombrados por la función **Reemplazar en contenido**, excepto los objetos formulario. Por lo tanto, es posible que ciertos elementos de la lista no se vean afectados por la operación de reemplazo. Esto puede ocurrir cuando sólo el nombre del artículo corresponde a los criterios de búsqueda iniciales. In this case, the list items do not necessarily all appear in italics and the final replacement count may be less than the number of occurrences found by the initial search.
-## Renaming project methods and variables
+## Renombrar métodos y variables del proyecto
4D provides a dedicated renaming function with distribution throughout the entire project for project methods and variables.
@@ -239,23 +239,23 @@ The new name must comply with [naming rules](../Concepts/identifiers.md); otherw
Depending on the type of object you are renaming (project method or variable), the renaming dialog box may also contain a distribution option:
-- Project method: The **Update callers in whole database** option renames the method in all the project code that references it. You can also uncheck this option in order, for example, to rename the method only in the Explorer itself.
+- Project method: The **Update callers in whole database** option renames the method in all the project code that references it. También puede desmarcar esta opción para, por ejemplo, renombrar el método solo en el propio Explorador.
- Process variable: The **Rename variable in whole database** option renames the variable in all the project code that references it. If you uncheck this option, the variable is only renamed in the current method.
- Local variable: No distribution option for this object; the variable is only renamed in the current method or class.
-## Searching for unused elements
+## Búsqueda de elementos no utilizados
Two specific search commands allow you to detect variables and methods that are not used in the code of your host project. You can then remove them to free up memory. These commands are found in the **Edit** menu of the Design environment.
-### Find Unused Methods and Global Variables
+### Encontrar métodos y variables globales no utilizados
-This command looks for project methods as well as "global" variables (process and interprocess variables) that are declared but not used. The search results appear in a standard [Results window](#results-window).
+This command looks for project methods as well as "global" variables (process and interprocess variables) that are declared but not used. Los resultados de la búsqueda aparecen en una [ventana de resultados](#results-window).
-A project method is considered to be unused when:
+Se considera que un método proyecto no se utiliza cuando:
-- it is not in the Trash,
+- no está en la Papelera,
- it is not called anywhere in the 4D code,
-- it is not called by a menu command,
+- no es llamado por un comando de menú,
- it is not called as a string constant in the 4D code (4D detects a method name in a string even when it is followed by parameters in parentheses).
A process or interprocess variable is considered to be unused when:
@@ -264,20 +264,20 @@ A process or interprocess variable is considered to be unused when:
- it is not used anywhere else in the 4D code,
- no se utiliza en ningún objeto de formulario.
-Note that certain uses cannot be detected by the function - i.e. an element considered unused may in fact be used. This is the case in the following code:
+Note that certain uses cannot be detected by the function - i.e. an element considered unused may in fact be used. Este es el caso del siguiente código:
```4d
var v : Text :="method"
EXECUTE FORMULA("my"+v+String(42))
```
-This code builds a method name. The *mymethod42* project method is considered unused when in fact it is called. Therefore, it is advisable to check that the elements declared as unused are in fact unnecessary before you remove them.
+Este código construye un nombre de método. The *mymethod42* project method is considered unused when in fact it is called. Therefore, it is advisable to check that the elements declared as unused are in fact unnecessary before you remove them.
-### Find Unused Local Variables
+### Buscar variables locales no utilizadas
-This command looks for local variables that are declared but not used. The search results appear in a standard [Results window](#results-window).
+This command looks for local variables that are declared but not used. Los resultados de la búsqueda aparecen en una [ventana de resultados](#results-window).
-A local variable is considered to be unused when:
+Se considera que una variable local no se utiliza cuando:
- it is [declared](../Concepts/variables.md#declaring-variables) in the 4D code,
- it is not used anywhere else within the same method.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/REST/$filter.md b/i18n/es/docusaurus-plugin-content-docs/current/REST/$filter.md
index f4393d524a2b1a..4f13bee0ec03ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/REST/$filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/REST/$filter.md
@@ -3,7 +3,7 @@ id: filter
title: $filter
---
-Allows to query the data in a dataclass or method (*e.g.*, `$filter="firstName!='' AND salary>30000"`)
+Permite consultar los datos de una clase de datos o de un método (*por ejemplo*, `$filter="firstName!='' AND salary>30000"`)
## Descripción
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/REST/authUsers.md b/i18n/es/docusaurus-plugin-content-docs/current/REST/authUsers.md
index 5b3bb64349e309..82ba2f1eeff2ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/REST/authUsers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/REST/authUsers.md
@@ -31,7 +31,7 @@ La secuencia de inicio de sesión del usuario es la siguiente:
2. Usted llama a su [función `authentify()`](#function-authentify) (creada previamente), en la que revisa las credenciales de usuario y llama a [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) con los privilegios apropiados. `authentify()` debe ser una [función datastore class](../ORDA/ordaClasses.md#datastore-class).
-3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. Este paso sólo requiere un formulario de inicio de sesión básico que no tenga acceso a datos; puede ser una [página Qodly](. /WebServer/qodly-studio.md) (llamada a través de la solicitud `/rest/$getWebForm`).
+3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](https://developer.4d.com/qodly/) (called via the `/rest/$getWebForm` request).
4. Si el usuario se autentica correctamente, se consume una licencia 4D en el servidor y se aceptan todas las peticiones REST.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md b/i18n/es/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
index c77c466346d0fd..e68c0ec7189fc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ El área "Visión general" ofrece diferente información sobre el sistema, la ap

-Generalmente, tendrá que verificar el [**Administrador de licencias**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalles
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/http-rules.md b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
index 212afdc4624c71..69b9783601fce1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
@@ -66,7 +66,7 @@ Se soportan las siguientes palabras clave de acción:
Algunos encabezados no pudieron ser añadidos, modificados o eliminados:
-| Encabezado | Acción de añadir | Set | Remove |
+| Encabezado | Acción de añadir | Modificación | Remove |
| ---------------- | ---------------- | ------------- | ------ |
| Fecha | No | No | No |
| Content-Length | No | No | No |
@@ -153,7 +153,7 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
```
-### Using a *settings* parameter
+### Utilizar un parámetro *settings*
```4d
var $rule:={}
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
index 0e7af110758c9b..75960de9b424e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
@@ -29,7 +29,7 @@ La siguiente tabla indica si el modo apropiativo se utiliza o está disponible,
- ***web setting*** means that the preemptive mode depends on the [**scalable sessions**](sessions.md#enabling-web-sessions) status:
- si las sesiones escalables están activadas, el modo apropiativo se utiliza automáticamente para los procesos web y servicios web.
- si las sesiones escalables no están activadas:
- - for web processes, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account.
+ - para los procesos web, se tiene en cuenta la opción [**Usar procesos apropiativos**](webServerConfig.md#use-preemptive-processes).
- para los procesos de servicios web (servidor o cliente), el modo preventivo está soportado a nivel de método.
## Escribir código servidor web hilo seguro
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/sessions.md b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/sessions.md
index 00048040081872..77e5c97c5bc420 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WebServer/sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WebServer/sessions.md
@@ -10,7 +10,7 @@ Las sesiones web permiten:
- manejar múltiples peticiones simultáneamente desde el mismo cliente web a través de un número ilimitado de procesos apropiativos (las sesiones web son **escalables**),
- gestionar la sesión a través de un objeto `Session` y la [Session API](API/SessionClass.md),
- almacenar y compartir datos entre procesos de un cliente web utilizando el [.storage](../API/SessionClass.md#storage) de la sesión,
-- asociar privilegios al usuario que ejecuta la sesión.
+- associate [privileges](../ORDA/privileges.md) to the user running the session.
:::tip Entrada de blog relacionada
@@ -18,12 +18,18 @@ Las sesiones web permiten:
:::
+:::note
+
+Destkop applications (client/server and single-user) also provide 4D developers with [specific sessions](../Desktop/sessions.md).
+
+:::
+
## Usos
Las sesiones web se utilizan para:
- [Aplicaciones web](gettingStarted.md) enviando peticiones http (incluyendo peticiones [SOAP Web services](../commands/theme/Web_Services_Server.md) y [/4DACTION](../WebServer/httpRequests.md#4daction)),
-- llamadas a la [REST API](../REST/authUsers.md), que utilizan [datastores remotos](../ORDA/remoteDatastores.md) y [formularios Qodly](qodly-studio.md).
+- llamadas a la [REST API](../REST/authUsers.md), que utilizan [datastores remotos](../ORDA/remoteDatastores.md) y [formularios Qodly](https://developer.4d.com/qodly/).
## Activando sesiones web {#enabling-web-sessions}
@@ -63,7 +69,7 @@ El nombre de la cookie se puede obtener utilizando la propiedad [`.sessionCookie
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +77,6 @@ Se puede acceder al objeto `Session` de la sesión actual a través del comando

-:::info
-
-Los procesos web no suelen terminar, sino que se reciclan en un fondo común para ser más eficientes. Cuando un proceso termina de ejecutar una petición, se devuelve al pool y queda disponible para la siguiente petición. Dado que un proceso web puede ser reutilizado por cualquier sesión, las [variables proceso](Concepts/variables.md#process-variables) deben ser borradas por su código al final de su ejecución (utilizando [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) por ejemplo). Esta limpieza es necesaria para cualquier información relacionada con el proceso, como una referencia a un archivo abierto. Esta es la razón por la que **se recomienda** utilizar el objeto [Sesión](API/SessionClass.md) cuando se quiera guardar información relacionada con la sesión.
-
-:::
-
## Almacenar y compartir información de sesión
Cada objeto `Session` proporciona una propiedad [`.storage`](API/SessionClass.md#storage) que es un [objeto compartido](Concepts/shared.md). Esta propiedad permite compartir información entre todos los procesos manejados por la sesión.
@@ -100,7 +100,7 @@ Cuando se cierra una sesión web, si después se llama al comando [`Session`](co
:::info
-Puede cerrar una sesión desde un formulario Qodly utilizando la función [**logout**](qodly-studio.md#logout).
+Puede cerrar una sesión desde un formulario Qodly utilizando la función [**logout**](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout).
:::
@@ -219,6 +219,12 @@ In 4D, OTP session tokens are useful when calling external URLs and being called
:::
+:::note
+
+Session tokens can be shared with [desktop sessions](../Desktop/sessions.md) to implement applications using hybrid sessions.
+
+:::
+
### Generalidades
La secuencia básica de uso de un testigo de sesión OTP en una aplicación web 4D es la siguiente:
@@ -475,7 +481,7 @@ Se crea un nuevo usuario y se almacena cierta información en la sesión, especi
- Se admiten esquemas HTTP y HTTPS.
- Sólo [sesiones escalables](#enabling-web-sessions) pueden ser reutilizados con tokens.
- Sólo se pueden reutilizar las sesiones de la base de datos local (las sesiones creadas en servidores web de componentes no se pueden restaurar).
-- Los tokens no son compatibles con las sesiones cliente/servidor ni con las sesiones monousuario.
+- Tokens can be **shared** with [desktop sessions](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses) for hybrid accesses (desktop and web).
### Vida útil
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
index 651dae17e52b08..24e4e027a61ec5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-bookmark-range
displayed_sidebar: docs
---
-**WP Bookmark range** ( *docWP* ; *nombk* ) -> Resultado
+**WP Bookmark range** ( *docWP* : Object ; *nombk* : Text ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
index d3b9a22e3ad7fd..dee07b8318a568 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-compute-formulas
displayed_sidebar: docs
---
-**WP COMPUTE FORMULAS** ( *objTarget* )
+**WP COMPUTE FORMULAS** ( *objTarget* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
index 0b112e4b15d3ea..2bbcf79827dfa4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-bookmark
displayed_sidebar: docs
---
-**WP DELETE BOOKMARK** ( *docWP* ; *nombk* )
+**WP DELETE BOOKMARK** ( *docWP* : Object ; *nombk* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
index 6c29fc5f78fc51..c5303238d65477 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-footer
displayed_sidebar: docs
---
-**WP DELETE FOOTER** ( *wpSection* )
+**WP DELETE FOOTER** ( *wpSection* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
index d0f700002cc39f..d4fe0e653964bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-header
displayed_sidebar: docs
---
-**WP DELETE HEADER** ( *wpSection* )
+**WP DELETE HEADER** ( *wpSection* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
index e5c5aaaf2fa68b..0b27edf599570a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-picture
displayed_sidebar: docs
---
-**WP DELETE PICTURE** ( *objImagen* )
+**WP DELETE PICTURE** ( *objImagen* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
index 6db6344e02a6f9..9cf73ae8a9738a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-style-sheet
displayed_sidebar: docs
---
-**WP DELETE STYLE SHEET** ( *objetoHojaEstilo* ) | (*wpDoc* ; *nombreHojaEstilo* )
+**WP DELETE STYLE SHEET** ( *objetoHojaEstilo* : Object ) | (*wpDoc* : Object ; *nombreHojaEstilo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
index b2a1d1b25d72bc..cbf69c502defd8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-text-box
displayed_sidebar: docs
---
-**WP DELETE TEXT BOX** ( *textBox* )
+**WP DELETE TEXT BOX** ( *textBox* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
index 58bc212ae1a3c1..2cd4995106373e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-all
displayed_sidebar: docs
---
-**WP Find all** ( *objTarget* ; *buscarValor* ; *condicionBusq* {; *valorReempl*} ) -> Resultado
+**WP Find all** ( *objTarget* : Object ; *buscarValor* : Text ; *condicionBusq* : Integer {; *valorReempl* : Text} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
index d1ea5d6de9269c..e1f8bf14e91aba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-next
displayed_sidebar: docs
---
-**WP Find next** ( *objTarget* ; *buscarDespues* ; *buscarValor* ; *condicionBusq* {; *valorReempl*} ) -> Resultado
+**WP Find next** ( *objTarget* : Object ; *buscarDespues* : Object ; *buscarValor* : Text ; *condicionBusq* : Integer {; *valorReempl* : Text} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
index a0027424ea8ef8..fce6eef1e222fa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-previous
displayed_sidebar: docs
---
-**WP Find previous** ( *objTarget* ; *buscarAntes* ; *buscarValor* ; *buscarCondicion* {; *remplazarValor*} ) -> Resultado
+**WP Find previous** ( *objTarget* : Object ; *buscarAntes* : Object ; *buscarValor* : Text ; *buscarCondicion* : Integer {; *remplazarValor* : Text} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
index 363230cc189beb..7573d883973126 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-freeze-formulas
displayed_sidebar: docs
---
-**WP FREEZE FORMULAS** ( *objTarget* {; *recalcular*} )
+**WP FREEZE FORMULAS** ( *objTarget* : Object {; *recalcular* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
index d8fc9b524fa95f..abcbdee9081210 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-body
displayed_sidebar: docs
---
-**WP Get body** ( *wpDoc* ) -> Resultado
+**WP Get body** ( *wpDoc* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
index 538c940f777a70..45a7416d6b6684 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-bookmarks
displayed_sidebar: docs
---
-**WP GET BOOKMARKS** ( *docWP* ; *arrayNomMarcadores* )
+**WP GET BOOKMARKS** ( *docWP* : Object ; *arrayNomMarcadores* : Array texto )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
index 3b690791934e12..94475d11d472b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-breaks
displayed_sidebar: docs
---
-**WP Get breaks** ( *objRango* {; *tipoRuptura*} ) -> Resultado
+**WP Get breaks** ( *objRango* : Object {; *tipoRuptura* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
index 375f47cbe27c0f..2ed1d996b33dd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-data-context
displayed_sidebar: docs
---
-**WP Get data context** ( *wpDoc* ) -> Resultado
+**WP Get data context** ( *wpDoc* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
index 509d782739055a..d85a9fa62d4aa7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-element-by-id
displayed_sidebar: docs
---
-**WP Get element by ID** ( *docWP* ; *ID* ) -> Resultado
+**WP Get element by ID** ( *docWP* : Object ; *ID* : Text ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
index d68a96e399e99c..a1e13e25459f56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-elements
displayed_sidebar: docs
---
-**WP Get elements** ( *objRango* {; *tipoElemento*} ) -> Resultado
+**WP Get elements** ( *objRango* : Object {; *tipoElemento* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
index 90134226aaa13b..7b7c3df7570aef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-footer
displayed_sidebar: docs
---
-**WP Get footer** ( *objRango* ) | (*wpDoc* ; *indiceSeccion* {; *tipoSubSeccion*} ) -> Resultado
+**WP Get footer** ( *objRango* : Object ) | (*wpDoc* : Object ; *indiceSeccion* : Integer {; *tipoSubSeccion* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
index aa256885369d47..d074ad19be2936 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-formulas
displayed_sidebar: docs
---
-**WP Get formulas** ( *objTarget* ) -> Resultado
+**WP Get formulas** ( *objTarget* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
index 01cfde9fcaa8d8..188bd2338bc599 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-frame
displayed_sidebar: docs
---
-**WP Get frame** ( {* ;} *wpArea* {; *textBoxID*} ) -> Resultado
+**WP Get frame** ( {* ;} *wpArea* : Text {; *textBoxID* : Cadena} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
index eb3232a26bd4ff..dc315559baad95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-header
displayed_sidebar: docs
---
-**WP Get header** ( *objRango* ) | (*wpDoc* ; *indiceSeccion* {; *tipoSubSeccion*} ) -> Resultado
+**WP Get header** ( *objRango* : Object ) | (*wpDoc* : Object ; *indiceSeccion* : Integer {; *tipoSubSeccion* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
index 9e2a9ccd0093da..2ffb03e99eb19e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-links
displayed_sidebar: docs
---
-**WP Get links** ( *objRango* ) -> Resultado
+**WP Get links** ( *objRango* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
index 20a86901c1438d..d0bd8add7c398a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-page-count
displayed_sidebar: docs
---
-**WP Get page count** ( *targetObj* ) -> Resultado
+**WP Get page count** ( *targetObj* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
index cc4460a135675a..1bbe8ff8baf811 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-position
displayed_sidebar: docs
---
-**WP Get position** ( *objRango* {; *layout*} ) -> Resultado
+**WP Get position** ( *objRango* : Object {; *layout* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
index 5e694f019b2733..19a7187859cc16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-section
displayed_sidebar: docs
---
-**WP Get section** ( *targetObj* ) | (*wpDoc* ; *indiceSeccion* ) -> Resultado
+**WP Get section** ( *targetObj* : Object ) | (*wpDoc* : Object ; *indiceSeccion* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
index ee8c396b6f88d5..6d4d03fb892ce5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-sections
displayed_sidebar: docs
---
-**WP Get sections** ( *targetObj* ) -> Resultado
+**WP Get sections** ( *targetObj* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
index 43060f7c38c1cf..c3c1a6647fafd1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheet
displayed_sidebar: docs
---
-**WP Get style sheet** ( *wpDoc* ; *nomHojaEstilo* ) -> Resultado
+**WP Get style sheet** ( *wpDoc* : Object ; *nomHojaEstilo* : Text ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
index 4c15f4fa4aa02d..82851302842804 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheets
displayed_sidebar: docs
---
-**WP Get style sheets** ( *wpDoc* ; *tipo* ) -> Resultado
+**WP Get style sheets** ( *wpDoc* : Object ; *tipo* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
index 2abe8e4a810bb3..687793550f712c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-subsection
displayed_sidebar: docs
---
-**WP Get subsection** ( *objRango* ) | (*wpSection* ; *subSectionType* ) -> Resultado
+**WP Get subsection** ( *objRango* : Object ) | (*wpSection* : Object ; *subSectionType* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
index 5b2b4728e758c1..a02237287f6a74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-text
displayed_sidebar: docs
---
-**WP Get text** ( *objRango* {; *expresiones*} ) -> Resultado
+**WP Get text** ( *objRango* : Object {; *expresiones* : Number} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
index 0345a9e127029d..bf0373aa986209 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-view-properties
displayed_sidebar: docs
---
-**WP Get view properties** ( * ; *wpArea* ) -> Resultado
+**WP Get view properties** ( * ; *wpArea* : Text, Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
index 454eb54944dfbf..c8cf4af345b8c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-import-style-sheets
displayed_sidebar: docs
---
-**WP IMPORT STYLE SHEETS** ( *docTarget* ; *docSource* )
+**WP IMPORT STYLE SHEETS** ( *docTarget* : Object ; *docSource* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
index 8a6c3bea9f1b8a..6931385bdd416e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-insert-table
displayed_sidebar: docs
---
-**WP Insert table** ( *objRango* ; *modo* {; *actRango* {; *numCol* {; *numFilas*}}} ) -> Resultado
+**WP Insert table** ( *objRango* : Object ; *modo* : Integer {; *actRango* : Integer {; *numCol* : Integer {; *numFilas* : Integer}}} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
index 9d13c34166c9c5..bb5acdd13f5979 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-is-font-style-supported
displayed_sidebar: docs
---
-**WP Is font style supported** ( *rangoObj* ; *estiloFuenteWP* ) -> Resultado
+**WP Is font style supported** ( *rangoObj* : Object ; *estiloFuenteWP* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
index f3c43af05e062b..c5415a7d364223 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-bookmark
displayed_sidebar: docs
---
-**WP NEW BOOKMARK** ( *objRango* ; *nombk* )
+**WP NEW BOOKMARK** ( *objRango* : Object ; *nombk* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
index ada5f9f036085c..9733b575182e5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-footer
displayed_sidebar: docs
---
-**WP New footer** ( *wpSection* ) -> Resultado
+**WP New footer** ( *wpSection* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
index cdfd2f0d811cb1..a3e46b2cddd169 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-header
displayed_sidebar: docs
---
-**WP New header** ( *wpSection* ) -> Resultado
+**WP New header** ( *wpSection* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
index 785aa5971039dd..e7f54323d83b99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-style-sheet
displayed_sidebar: docs
---
-**WP New style sheet** ( *wpDoc* ; *tipoHojaEstilo* ; *nomHojaEstilo* ) -> Resultado
+**WP New style sheet** ( *wpDoc* : Object ; *tipoHojaEstilo* : Integer ; *nomHojaEstilo* : Text ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
index 5f367745d87a5b..b7a7ff4886f110 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-subsection
displayed_sidebar: docs
---
-**WP New subsection** ( *wpSection* ; *subSectionType* ) -> Resultado
+**WP New subsection** ( *wpSection* : Object ; *subSectionType* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
index c8f24bf52f5b2f..5883c013753307 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-text-box
displayed_sidebar: docs
---
-**WP New text box** ( *wpDoc* ; *numPag* ) -> Resultado
+**WP New text box** ( *wpDoc* : Object ; *numPag* : Number ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
index c4ad21e9a2250f..53573998191bdb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new
displayed_sidebar: docs
---
-**WP New** {( *fuente* {; *opcion*} )} -> Resultado
+**WP New** ( *fuente* : Text, Blob, Object {; *opcion* : Integer} )} -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
index 204c96ad73dc7c..8c1116b2f77dc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-paragraph-range
displayed_sidebar: docs
---
-**WP Paragraph range** ( *rangoObj* ) -> Resultado
+**WP Paragraph range** ( *rangoObj* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
index 8c2fe1753666c0..88a4f02e55006e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-picture-range
displayed_sidebar: docs
---
-**WP Picture range** ( *rangoObj* ) -> Resultado
+**WP Picture range** ( *rangoObj* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
index 81ea31d8a13b9e..4174a8a350aceb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-print
displayed_sidebar: docs
---
-**WP PRINT** ( *wpDoc* {; *opcImpr*} )
+**WP PRINT** ( *wpDoc* : Object {; *opcImpr* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
index 1c346fd257a2dd..f5f419f10f14ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-select
displayed_sidebar: docs
---
-**WP SELECT** ( {{* ;} *areaWP*;} {*targetObj*} {; *rangoInicio* ; *rangoFinal*} )
+**WP SELECT** ( {{* ;} *areaWP* : Text, Object;} {*targetObj* : Object} {; *rangoInicio* : Integer ; *rangoFinal* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
index 75195db11c1c4a..ee189eef0e2ccc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-selection-range
displayed_sidebar: docs
---
-**WP Selection range** ( {* ;} *wpArea* ) -> Resultado
+**WP Selection range** ( {* ;} *wpArea* : Text ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
index 0d6b3b0170d2d5..470757d43fef4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-data-context
displayed_sidebar: docs
---
-**WP SET DATA CONTEXT** ( *wpDoc* ; *datosContext* )
+**WP SET DATA CONTEXT** ( *wpDoc* : Object ; *datosContext* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
index cbef182d36af5d..0bd3b6d291067b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-frame
displayed_sidebar: docs
---
-**WP SET FRAME** ( {* ;} *areaWP* ; *selectorMarco* {; *textBoxID*} )
+**WP SET FRAME** ( {* ;} *areaWP* : Text ; *selectorMarco* : Integer {; *textBoxID* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
index 5e1ec26d7484dc..4e3117804429fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-link
displayed_sidebar: docs
---
-**WP SET LINK** ( *objRango* ; *objEnlace* )
+**WP SET LINK** ( *objRango* : Object ; *objEnlace* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
index ba4eb005497622..b9d1e9c043f4d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-text
displayed_sidebar: docs
---
-**WP SET TEXT** ( *objRango* ; *nuevoTexto* ; *posicionTexto* {; *alcanceRango*} )
+**WP SET TEXT** ( *objRango* : Object ; *nuevoTexto* ; *posicionTexto* : Number {; *alcanceRango* : Number} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
index b485cf05b2d775..08be3298cf8ad9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-view-properties
displayed_sidebar: docs
---
-**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* ; *wpViewProps* )
+**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* : Text, Object ; *wpViewProps* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
index fb25ced5c439a1..9b52c72dc353af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-columns
displayed_sidebar: docs
---
-**WP TABLE DELETE COLUMNS** ( *objTarget* ) | ( *refTabla* ; *numCol* {; *numColumns*} )
+**WP TABLE DELETE COLUMNS** ( *objTarget* : Object ) | ( *refTabla* : Object ; *numCol* : Integer {; *numColumns* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
index 15c6a3c2b24948..573b47c68eea6c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-rows
displayed_sidebar: docs
---
-**WP TABLE DELETE ROWS** ( *objTarget* ) | ( *refTabla* ; *numLinea* {; *nbLineas*} )
+**WP TABLE DELETE ROWS** ( *objTarget* : Object ) | ( *refTabla* : Object ; *numLinea* : Integer {; *nbLineas* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
index 978e8d6f906a36..40679700cb4673 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-cells
displayed_sidebar: docs
---
-**WP Table get cells** ( *objTarget* ) | ( *refTabla* ; *colIni* ; *filaIni* {; *NumCol*{; *numFilas*}} ) -> Resultado
+**WP Table get cells** ( *objTarget* : Object ) | ( *refTabla* : Object ; *colIni* : Integer ; *filaIni* : Integer {; *NumCol* : Integer{; *numFilas* : Integer}} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
index fc967312f49b70..ff950b375b7551 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-columns
displayed_sidebar: docs
---
-**WP Table get columns** ( *objTarget* ) | ( *refTabla* ; *colIni* {; *numCol*} ) -> Resultado
+**WP Table get columns** ( *objTarget* : Object ) | ( *refTabla* : Object ; *colIni* : Integer {; *numCol* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
index b3c013e6a6a7bf..4c6aa1f97ee212 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-rows
displayed_sidebar: docs
---
-**WP Table get rows** ( *objTarget* ) | ( *refTabla* ; *lineaIni* {; *numLíneas*} ) -> Resultado
+**WP Table get rows** ( *objTarget* : Object ) | ( *refTabla* : Object ; *lineaIni* : Integer, Text {; *numLíneas* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
index 662d3c10a1c6a8..b0ab46946ed759 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-columns
displayed_sidebar: docs
---
-**WP Table insert columns** ( objRango | {*refTabla* ; *numCol*} {; *numColumns*} ) -> Resultado
+**WP Table insert columns** ( objRango | {*refTabla* : Object ; *numCol* : Integer} {; *numColumns* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
index 7189d27966235d..856bb737eed1dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-rows
displayed_sidebar: docs
---
-**WP Table insert rows** ( objTarget | {*refTabla* ; *numLinea*} {; *numLineas*} ) -> Resultado
+**WP Table insert rows** ( objTarget | {*refTabla* : Object ; *numLinea* : Integer} {; *numLineas* : Integer} ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
index afb6d7771b34ab..c665eac270d077 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-merge-cells
displayed_sidebar: docs
---
-**WP TABLE MERGE CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE MERGE CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
index 357286e8563ba9..0c8b656358973b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-range
displayed_sidebar: docs
---
-**WP Table range** ( *objRango* ) -> Resultado
+**WP Table range** ( *objRango* : Object ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
index fbb0961f7c1219..8034cf7bf07859 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-split-cells
displayed_sidebar: docs
---
-**WP TABLE SPLIT CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE SPLIT CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
index 2f99c0e6e73adf..e8ef60047c33cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-text-range
displayed_sidebar: docs
---
-**WP Text range** ( *objRango* ; *rangoInicio* ; *rangoFin* ) -> Resultado
+**WP Text range** ( *objRango* : Object ; *rangoInicio* : Integer ; *rangoFin* : Integer ) -> Resultado
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
index 5e3473ffe0a4d9..3a643b6ba8e52c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-use-page-setup
displayed_sidebar: docs
---
-**WP USE PAGE SETUP** ( *docWP* )
+**WP USE PAGE SETUP** ( *docWP* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
index f1ad01dccdf436..74efa83e775caf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
@@ -4,7 +4,7 @@ title: WP Add picture
displayed_sidebar: docs
---
-**WP Add picture** ( *wpDoc* {; *picture*} ) : Object
**WP Add picture** ( *wpDoc* {; *picturePath*} ) : Object
**WP Add picture** ( *wpDoc* {; *pictureFileObj*} ) : Object
+**WP Add picture** ( *wpDoc* : Object {; *picture* : Picture} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *picturePath* : Text} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *pictureFileObj* : 4D.File} ) : Object
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
index 376732bb1f5ae8..68a26e92bfc2c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-section
displayed_sidebar: docs
---
-**WP DELETE SECTION** ( *section* )
**WP DELETE SECTION** ( *wpDoc* ; *indexNumber* {; *count*} )
+**WP DELETE SECTION** ( *section* : Object )
**WP DELETE SECTION** ( *wpDoc* : Object ; *indexNumber* : Integer {; *count* : Integer} )
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
index 9264bbe9b092bd..a17b9c18962f25 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-subsection
displayed_sidebar: docs
---
-**WP DELETE SUBSECTION** ( *wpSection* ; *subSectionType* )
**WP DELETE SUBSECTION** ( *subSection* )
+**WP DELETE SUBSECTION** ( *wpSection* : Object ; *subSectionType* : Integer )
**WP DELETE SUBSECTION** ( *subSection* : Object )
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
index 3c6997512facff..8c26ebc63ecb53 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
@@ -4,7 +4,7 @@ title: WP EXPORT DOCUMENT
displayed_sidebar: docs
---
-**WP EXPORT DOCUMENT** ( *wpDoc* ; *filePath* {; *format* {; *option*}} )
**WP EXPORT DOCUMENT** ( *wpDoc* ; *fileObj* {; *format* {; *option*}} )
+**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *filePath* : Text {; *format* : Integer {; *option* : Object, Integer}} )
**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *fileObj* : 4D.File {; *format* : Integer {; *option* : Object, Integer}} )
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
index 22cf5a3c10a7c8..9dc3e2df44397e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-export-variable
displayed_sidebar: docs
---
-**WP EXPORT VARIABLE** ( *wpDoc* ; *destination* ; *format* {; *option*} )
+**WP EXPORT VARIABLE** ( *wpDoc* : Object ; *destination* : Text, Blob ; *format* : Integer {; *option* : Object, Integer} )
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
index 7daedb273fe4d2..6d4b1c1e8c8b7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
@@ -4,17 +4,17 @@ title: WP Get attributes
displayed_sidebar: docs
---
-**WP Get attributes** ( *targetObj* ; *...attribName* ; *...attribValue* ) : Object
**WP Get attributes** ( *targetObj* ; *attribColl* ) : Object
+**WP Get attributes** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any ) : Object
**WP Get attributes** ( *targetObj* : Object ; *attribColl* : Collection ) : Object
-| Parámetros | Tipo | | Descripción |
-| ----------- | ---------------------------------------------- | --------------------------- | ------------------------------------------- |
-| targetObj | Object | → | Rango o elemento o documento 4D Write Pro |
-| attribName | Text | → | Nombre del atributo a obtener |
-| attribValue | Text, Number, Array, Collection, Picture, Date | ← | Valor actual del atributo para el objetivo |
-| attribColl | Collection | → | Colección de nombres de atributos a obtener |
-| Resultado | Object | ← | Nombres y valores de los atributos |
+| Parámetros | Tipo | | Descripción |
+| ----------- | ---------- | --------------------------- | ------------------------------------------- |
+| targetObj | Object | → | Rango o elemento o documento 4D Write Pro |
+| attribName | Text | → | Nombre del atributo a obtener |
+| attribValue | any | ← | Valor actual del atributo para el objetivo |
+| attribColl | Collection | → | Colección de nombres de atributos a obtener |
+| Resultado | Object | ← | Nombres y valores de los atributos |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
index 592a131b1b226d..45f839dfad9e15 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
@@ -4,7 +4,7 @@ title: WP Import document
displayed_sidebar: docs
---
-**WP Import document** ( *filePath* {; *option*} ) : Object
**WP Import document** ( *fileObj* {; *option*} ) : Object
+**WP Import document** ( *filePath* : Text {; *option* : Integer, Object} ) : Object
**WP Import document** ( *fileObj* : 4D.File {; *option* : Integer, Object} ) : Object
@@ -51,20 +51,20 @@ Por defecto, las expresiones HTML insertadas en documentos heredados de 4D Write
Puede pasar un objeto para definir cómo se gestionan los siguientes atributos durante la operación de importación:
-| **Atributo** | **Tipo** | **Description** |
-| ----------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
-| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
-| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
-| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Note**: If a .docx field corresponds to a 4D Write Pro variable, the field is imported as a formula and this option is ignored. |
-| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
-| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
-| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
-| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (default) - 4W7 image display mode is converted to the *imageDisplayMode* attribute if different than scaled to fit. |
+| **Atributo** | **Tipo** | **Description** |
+| ----------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
+| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
+| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
+| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Nota**: si un campo .docx corresponde a una variable de 4D Write Pro, el campo se importa como una fórmula y esta opción se ignora. |
+| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
+| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
+| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
+| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (por defecto) - El modo de visualización de la imagen 4W7 se convierte al atributo *imageDisplayMode* si es diferente a escalado para ajustarse. |
**Notas de compatibilidad**
-- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. To get the best result for imported text, style sheet attributes are converted to "hard coded" style attributes. Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
+- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. Para obtener el mejor resultado para el texto importado, los atributos de la hoja de estilo se convierten en atributos de estilo "codificados". Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
- *El soporte para la importación en formato .docx solo está certificado para Microsoft Word 2010 y más recientes. Versiones antiguas, especialmente Microsoft Word 2007, pueden no importar correctamente.*
## Ejemplo 1
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
index d24b56d6743060..d8bae7d7d2d969 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
@@ -4,7 +4,7 @@ title: WP Insert break
displayed_sidebar: docs
---
-**WP Insert break** ( *targetObj* ; *breakType* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert break** ( *targetObj* : Object ; *breakType* : Integer ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
index 4aefc2608bc0b1..ec80c88f431031 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
@@ -4,7 +4,7 @@ title: WP Insert document body
displayed_sidebar: docs
---
-**WP Insert document body** ( *targetObj* ; *wpDoc* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert document body** ( *targetObj* : Object ; *wpDoc* : Object ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
index 9d10fa7eb81856..24e9afec010dd2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
@@ -4,7 +4,7 @@ title: WP Insert formula
displayed_sidebar: docs
---
-**WP Insert formula** ( *targetObj* ; *formula* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert formula** ( *targetObj* : Object ; *formula* : Object ; *mode* : Real {; *rangeUpdate* : Real} ) : Object
@@ -12,8 +12,8 @@ displayed_sidebar: docs
| ----------- | ------ | --------------------------- | ------------------------------------------------------------------ |
| targetObj | Object | → | Rango o elemento o documento 4D Write Pro |
| formula | Object | → | Objeto de fórmula U Objeto con propiedades de fórmula y de nombre |
-| mode | Number | → | Modo de inserción |
-| rangeUpdate | Number | → | Incluye o excluye el contenido insertado dentro del intervalo |
+| mode | Real | → | Modo de inserción |
+| rangeUpdate | Real | → | Incluye o excluye el contenido insertado dentro del intervalo |
| Resultado | Object | ← | Objeto de rango de texto que representa el resultado de la fórmula |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
index 908d1e33f549f6..ba0c68bc140557 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
@@ -4,7 +4,7 @@ title: WP Insert picture
displayed_sidebar: docs
---
-**WP Insert picture** ( *targetObj* ; *picture* ; *mode* {; *rangeUpdate*} ): Object
**WP Insert picture** ( *targetObj* ; *pictureFileObj*; *mode* {; *rangeUpdate*}): Object
+**WP Insert picture** ( *targetObj* : Object ; *picture* : Picture ; *mode* : Integer {; *rangeUpdate* : Integer} ): Object
**WP Insert picture** ( *targetObj* : Object ; *pictureFileObj* : 4D.File; *mode* : Integer {; *rangeUpdate* : Integer}): Object
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
index 065ee94c6e6f5f..4ae6b06a05c87f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
@@ -4,7 +4,7 @@ title: WP RESET ATTRIBUTES
displayed_sidebar: docs
---
-**WP RESET ATTRIBUTES** ( *targetObj* ; *...attribName* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *...attribName* })
**WP RESET ATTRIBUTES** ( *targetObj* ; *attribColl* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *attribColl*})
+**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *...attribName* : Text })
**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *attribColl* : Collection )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *attribColl* : Collection})
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
index 0d6687e596cd93..28820e4e424a39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
@@ -4,16 +4,16 @@ title: WP SET ATTRIBUTES
displayed_sidebar: docs
---
-**WP SET ATTRIBUTES** ( *targetObj* ; *...attribName* ; *...attribValue* )
**WP SET ATTRIBUTES** ( *targetObj* ; *attribObj* )
+**WP SET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any )
**WP SET ATTRIBUTES** ( *targetObj* : Object ; *attribObj* : Object )
-| Parámetros | Tipo | | Descripción |
-| ----------- | ----------------------------------------------- | --------------------------- | ----------------------------------------------------------------------------------------- |
-| targetObj | Object | → | Rango o elemento o documento 4D Write Pro |
-| attribName | Text | → | Nombre del atributo a definir |
-| attribValue | Text, Number, Object, Collection, Picture, Date | → | Nuevo valor de atributo |
-| attribObj | Object | → | Objeto que contiene los nombres de los atributos y sus correspondientes valores a definir |
+| Parámetros | Tipo | | Descripción |
+| ----------- | ------ | --------------------------- | ----------------------------------------------------------------------------------------- |
+| targetObj | Object | → | Rango o elemento o documento 4D Write Pro |
+| attribName | Text | → | Nombre del atributo a definir |
+| attribValue | any | → | Nuevo valor de atributo |
+| attribObj | Object | → | Objeto que contiene los nombres de los atributos y sus correspondientes valores a definir |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
index 0cd496e8860f4d..349b840c2a36dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
@@ -4,16 +4,16 @@ title: WP Table append row
displayed_sidebar: docs
---
-**WP Table append row** ( *tableRef* ; *...value* ) : Object
**WP Table append row** ( *tableRef* ; *valueColl* ) : Object
+**WP Table append row** ( *tableRef* : Object ; *...value* : any ) : Object
**WP Table append row** ( *tableRef* : Object ; *valueColl* : Collection ) : Object
-| Parámetros | Tipo | | Descripción |
-| ---------- | ----------------------------------------- | --------------------------- | -------------------------------------------------- |
-| tableRef | Object | → | Referencia de tabla |
-| value | Text, Number, Time, Date, Picture, Object | → | Valor(es) a definir en la línea |
-| valueColl | Collection | → | Colección de valores a definir en la línea |
-| Resultado | Object | ← | Objeto rango de línea |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ---------- | --------------------------- | -------------------------------------------------- |
+| tableRef | Object | → | Referencia de tabla |
+| value | any | → | Valor(es) a definir en la línea |
+| valueColl | Collection | → | Colección de valores a definir en la línea |
+| Resultado | Object | ← | Objeto rango de línea |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/user/user-new.md b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/user/user-new.md
index c245ecd7cfd7a3..4209cda8bb11bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/WritePro/user/user-new.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/WritePro/user/user-new.md
@@ -9,14 +9,14 @@ para importar
## Listas
-4D Write Pro supports two main types of lists:
+4D Write Pro soporta dos tipos principales de listas:
-- unordered lists: where list items are marked with bullets, custom bullets, or images used as markers.
+- listas desordenadas: donde los elementos de la lista se marcan con viñetas, viñetas personalizadas o imágenes utilizadas como marcadores.
- ordered lists: where list items are marked with numbers or letters
-They can be created using:
+Pueden crearse utilizando:
-- the toolbar or sidebar of the [4D Write Pro interface](https://doc.4d.com/4Dv20/4D/20.2/Entry-areas.300-6750367.en.html#5865253)
+- la barra de herramientas o la barra lateral de la [interfaz de 4D Write Pro](https://doc.4d.com/4Dv20/4D/20.2/Entry-areas.300-6750367.en.html#5865253)
- the `listStyleType` or `listStyleImage` [standard actions](./standard-actions.md) ,
- or [programmatically](../commands-legacy/4d-write-pro-attributes.md#lists) using [WP SET ATTRIBUTE](../commands/wp-set-attributes.md).
@@ -24,11 +24,11 @@ When a list is created using a standard action (`listStyleType` or `listStyleIma

-When the list is created using [the WP SET ATTRIBUTE command](../commands-legacy/4d-write-pro-attributes.md#lists), no specific margin is managed, by default the marker is added at the left boundary of the paragraph. The developer can add a custom margin if necessary.
+When the list is created using [the WP SET ATTRIBUTE command](../commands-legacy/4d-write-pro-attributes.md#lists), no specific margin is managed, by default the marker is added at the left boundary of the paragraph. El desarrollador puede añadir un margen personalizado si es necesario.
:::info Entrada de blog relacionada
-4D Write Pro – Adding a margin automatically when bullets are set using standard actions
+4D Write Pro - Añadir un margen automáticamente cuando se establecen viñetas utilizando acciones estándar
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFile.md b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFile.md
index 179d008cdc931a..6bbe27aa5c0c08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFile.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFile.md
@@ -5,21 +5,21 @@ title: OpenAIFile
# OpenAIFile
-La clase `OpenAIFile` representa un objeto archivo en la API OpenAI. Files can be uploaded and used across various endpoints including Assistants, Fine-tuning, Batch, and Vision APIs.
+La clase `OpenAIFile` representa un objeto archivo en la API OpenAI. Los archivos pueden cargarse y utilizarse a través de varios puntos finales, incluidas las APIs Assistants, Fine-tuning, Batch y Vision.
## Propiedades
-| Nombre de la propiedad | Tipo | Descripción |
-| ---------------------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `id` | Text | El identificador del archivo, al que se puede hacer referencia en los puntos de terminación de la API. |
-| `bytes` | Integer | El tamaño del archivo, en bytes. |
-| `created_at` | Integer | La marca de tiempo Unix (en segundos) de cuando se creó el archivo. |
-| `expires_at` | Integer | La marca de tiempo Unix (en segundos) para cuando el archivo expirará. |
-| `filename` | Text | El nombre del archivo. |
-| `object` | Text | El tipo de objeto, que siempre es "file". |
-| `purpose` | Text | El propósito previsto del archivo. Supported values: `assistants`, `assistants_output`, `batch`, `batch_output`, `fine-tune`, `fine-tune-results`, `vision`, and `user_data`. |
-| `status` | Text | **Obsoleto.** el estado actual del archivo, que puede ser `uploaded`, `processed`, o `error`. |
-| `status_details` | Text | **Deprecated.** For details on why a fine-tuning training file failed validation, see the error field on `fine_tuning.job`. |
+| Nombre de la propiedad | Tipo | Descripción |
+| ---------------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `id` | Text | El identificador del archivo, al que se puede hacer referencia en los puntos de terminación de la API. |
+| `bytes` | Integer | El tamaño del archivo, en bytes. |
+| `created_at` | Integer | La marca de tiempo Unix (en segundos) de cuando se creó el archivo. |
+| `expires_at` | Integer | La marca de tiempo Unix (en segundos) para cuando el archivo expirará. |
+| `filename` | Text | El nombre del archivo. |
+| `object` | Text | El tipo de objeto, que siempre es "file". |
+| `purpose` | Text | El propósito previsto del archivo. Valores soportados: `assistants`, `assistants_output`, `batch`, `batch_output`, `fine-tune`, `fine-tune-results`, `vision` y `user_data`. |
+| `status` | Text | **Obsoleto.** el estado actual del archivo, que puede ser `uploaded`, `processed`, o `error`. |
+| `status_details` | Text | **Obsoleto** Para más detalles sobre por qué un archivo de entrenamiento fine-tuning falló la validación, vea el campo de error en `fine_tuning.job`. |
## Ver también
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeletedResult.md b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeletedResult.md
index eccc0617e86ff1..4eb54c37a5b652 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeletedResult.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeletedResult.md
@@ -13,9 +13,9 @@ La clase `OpenAIFileDeletedResult` contiene el resultado de una operación de bo
## Propiedades calculadas
-| Propiedad | Tipo | Descripción |
-| --------- | ----------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `deleted` | [OpenAIFileDeleted](OpenAIFileDeleted.md) | Returns the file deletion result from the API response. Devuelve `Null` si la respuesta no contiene un resultado válido. |
+| Propiedad | Tipo | Descripción |
+| --------- | ----------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `deleted` | [OpenAIFileDeleted](OpenAIFileDeleted.md) | Devuelve el resultado de la eliminación del archivo a partir de la respuesta de la API. Devuelve `Null` si la respuesta no contiene un resultado válido. |
## Ejemplo de Uso
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileListResult.md b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileListResult.md
index 2d6687bc7a690b..26f899a0018b20 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileListResult.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileListResult.md
@@ -13,12 +13,12 @@ La clase `OpenAIFileListResult` contiene el resultado de la lista de los archivo
## Propiedades calculadas
-| Propiedad | Tipo | Descripción |
-| ---------- | ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `files` | Collection | Returns a collection of [OpenAIFile](OpenAIFile.md) objects from the API response, or an empty collection if no files are found. |
-| `first_id` | Text | Devuelve el ID del primer archivo de la lista, o una cadena vacía si no está disponible. |
-| `last_id` | Text | Devuelve el ID del último archivo de la lista, o una cadena vacía si no está disponible. |
-| `has_more` | Boolean | Indica si hay más archivos más allá de esta página. `True` si hay más archivos que recuperar, `False` en caso contrario. |
+| Propiedad | Tipo | Descripción |
+| ---------- | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `files` | Collection | Devuelve una colección de objetos [OpenAIFile](OpenAIFile.md) de la respuesta de la API, o una colección vacía si no se encuentra ningún archivo. |
+| `first_id` | Text | Devuelve el ID del primer archivo de la lista, o una cadena vacía si no está disponible. |
+| `last_id` | Text | Devuelve el ID del último archivo de la lista, o una cadena vacía si no está disponible. |
+| `has_more` | Boolean | Indica si hay más archivos más allá de esta página. `True` si hay más archivos que recuperar, `False` en caso contrario. |
## Ejemplo de Uso
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFilesAPI.md b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFilesAPI.md
index 7de1aec60a2520..718d05091a1e51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFilesAPI.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFilesAPI.md
@@ -5,16 +5,16 @@ title: OpenAIFilesAPI
# OpenAIFilesAPI
-The `OpenAIFilesAPI` class provides functionalities to manage files using OpenAI's API. Files can be uploaded and used across various endpoints including [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning), [Batch](https://platform.openai.com/docs/api-reference/batch) processing, and Vision.
+La clase `OpenAIFilesAPI` ofrece funcionalidades para gestionar archivos utilizando la API de OpenAI. Los archivos pueden cargarse y utilizarse en varios puntos finales, como el procesamiento [Fine-tuning](https://platform.openai.com/docs/api-reference/fine-tuning), [Batch](https://platform.openai.com/docs/api-reference/batch) y Vision.
-> **Nota:** esta API sólo es compatible con OpenAI. Other providers listed in the [compatible providers](../compatible-openai.md) documentation do not support file management operations.
+> **Nota:** esta API sólo es compatible con OpenAI. Otros proveedores listados en la documentación de [proveedores compatibles](../compatible-openai.md) no soportan operaciones de gestión de archivos.
Referencia API:
## Límites de tamaño de los archivos
- **Archivos individuales:** hasta 512 MB por archivo
-- **Organization total:** up to 1 TB (cumulative size of all files uploaded by your [organization](https://platform.openai.com/docs/guides/production-best-practices/setting-up-your-organization))
+- **Total de la organización:** hasta 1 TB (tamaño acumulado de todos los archivos cargados por su [organización](https://platform.openai.com/docs/guides/production-best-practices/setting-up-your-organization))
## Funciones
@@ -22,32 +22,32 @@ Referencia API:
**create**(*file* : 4D.File | 4D.Blob; *purpose* : Text; *parameters* : cs.OpenAIFileParameters) : cs.OpenAIFileResult
-Upload a file that can be used across various endpoints.
+Cargar un archivo que pueda utilizarse en varios puntos de terminación.
**Endpoint:** `POST https://api.openai.com/v1/files`
-| Parámetros | Tipo | Descripción |
-| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------ |
-| `file` | [4D.File](https://developer.4d.com/docs/API/FileClass) or [4D.Blob](https://developer.4d.com/docs/API/BlobClass) | The File or Blob object (not file name) to be uploaded. |
-| `purpose` | Text | **Requerido.** el propósito previsto del archivo subido. |
-| `parámetros` | [OpenAIFileParameters](OpenAIFileParameters.md) | Parámetros opcionales, incluida la política de expiración. |
-| Resultado | [OpenAIFileResult](OpenAIFileResult.md) | El resultado del archivo |
+| Parámetros | Tipo | Descripción |
+| ------------ | ----------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------- |
+| `file` | [4D.File](https://developer.4d.com/docs/API/FileClass) o [4D.Blob](https://developer.4d.com/docs/API/BlobClass) | El objeto Archivo o Blob (no el nombre del archivo) que se va a cargar. |
+| `purpose` | Text | **Requerido.** el propósito previsto del archivo subido. |
+| `parámetros` | [OpenAIFileParameters](OpenAIFileParameters.md) | Parámetros opcionales, incluida la política de expiración. |
+| Resultado | [OpenAIFileResult](OpenAIFileResult.md) | El resultado del archivo |
-**Throws:** An error if `file` is not a 4D.File or 4D.Blob, or if `purpose` is empty.
+**Arroja:** un error si `file` no es un 4D.File o 4D.Blob, o si `purpose` está vacío.
#### Propósitos soportados
-- `assistants`: Used in the Assistants API (⚠️ [deprecated by OpenAI](https://platform.openai.com/docs/assistants/whats-new))
-- `batch`: Used in the [Batch API](https://platform.openai.com/docs/api-reference/batch) (expires after 30 days by default)
+- `assistants`: utilizado en la API Assistants (⚠️ [obsoleto por OpenAI](https://platform.openai.com/docs/assistants/whats-new))
+- `batch`: utilizado en la [API Batch](https://platform.openai.com/docs/api-reference/batch) (caduca a los 30 días por defecto)
- `fine-tune`: utilizado para [ajuste fino](https://platform.openai.com/docs/api-reference/fine-tuning)
- `vision`: imágenes utilizadas para afinar la visión
- `user_data`: tipo de archivo flexible para cualquier propósito
- `evals`: se utiliza para evaluar conjuntos de datos
-#### File Format Requirements
+#### Formatos de archivos requeridos
-- **Fine-tuning API:** Only supports `.jsonl` files with specific required formats
-- **Batch API:** Only supports `.jsonl` files up to 200 MB with specific required format
+- **API Fine-tuning:** solo admite archivos `.jsonl` con formatos específicos requeridos
+- **API Batch:** solo soporta archivos `.jsonl` de hasta 200 MB con formato específico requerido
- **API de Asistentes:** soporta tipos de archivo específicos (ver Guía de herramientas de asistentes)
- **API de finalización de chat:** sólo se admiten archivos PDF
@@ -73,7 +73,7 @@ End if
#### Ejemplo asincrónico
-Since file uploads can be long operations (especially for large files up to 512 MB), it's recommended to use asynchronous calls to avoid blocking your application. Ver [llamada asincrónica](../asynchronous-call.md) para más detalles.
+Dado que las subidas de archivos pueden ser operaciones largas (especialmente para archivos grandes de hasta 512 MB), se recomienda utilizar llamadas asíncronas para evitar el bloqueo de la aplicación. Ver [llamada asincrónica](../asynchronous-call.md) para más detalles.
```4d
var $file:=File("/RESOURCES/large-training-data.jsonl")
@@ -81,11 +81,11 @@ var $file:=File("/RESOURCES/large-training-data.jsonl")
var $params:=cs.AIKit.OpenAIFileParameters.new()
$params.onTerminate:=Formula(MyFileUploadCallback($1))
-// This call returns immediately without blocking
-$client.files.create($file; "fine-tune"; $params)
+// Esta llamada devuelve inmediatamente sin bloquear
+$client.files.create($file; "ajuste fino"; $params)
```
-The callback function receives an [OpenAIFileResult](OpenAIFileResult.md):
+La función de retrollamada recibe un [OpenAIFileResult](OpenAIFileResult.md):
```4d
// MyFileUploadCallback
@@ -94,8 +94,8 @@ The callback function receives an [OpenAIFileResult](OpenAIFileResult.md):
If ($result.success)
var $uploadedFile:=$result.file
- ALERT("File uploaded successfully: "+$uploadedFile.filename)
- // Store the file ID for later use
+ ALERT("Archivo cargado correctamente: "+$uploadedFile.filename)
+ // Almacena el ID del archivo para su uso posterior
Form.uploadedFileId:=$uploadedFile.id
Else
ALERT("Upload failed: "+Formula(JSON Stringify($result.errors)))
@@ -116,7 +116,7 @@ Devuelve información sobre un archivo específico.
| `parámetros` | [OpenAIParameters](OpenAIParameters.md) | Parámetros opcionales para la solicitud. |
| Resultado | [OpenAIFileResult](OpenAIFileResult.md) | El resultado del archivo |
-**Throws:** An error if `fileId` is empty.
+**Arroja:** un error si `fileId` está vacío.
#### Ejemplo
@@ -176,9 +176,9 @@ Eliminar un archivo.
| ------------ | ----------------------------------------------------- | -------------------------------------------------------------------------- |
| `fileId` | Text | **Requerido.** el ID del archivo a borrar. |
| `parámetros` | [OpenAIParameters](OpenAIParameters.md) | Parámetros opcionales para la solicitud. |
-| Resultado | [OpenAIFileDeletedResult](OpenAIFileDeletedResult.md) | The file deletion result |
+| Resultado | [OpenAIFileDeletedResult](OpenAIFileDeletedResult.md) | El resultado de la eliminación del archivo |
-**Throws:** An error if `fileId` is empty.
+**Arroja:** un error si `fileId` está vacío.
#### Ejemplo
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIMessage.md b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIMessage.md
index bddedd731b20d8..aa5a7de939c128 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIMessage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIMessage.md
@@ -51,7 +51,7 @@ Añade una referencia de archivo al contenido del mensaje. Si el contenido es ac
### Mensaje de texto básico
```4d
-// Create an instance of OpenAIMessage
+// Crear una instancia de OpenAIMessage
var $message:=cs.AIKit.OpenAIMessage.new({role: "user"; content: "Hello!"})
```
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png
index 293036a14b5daa..50f2d9e129f93a 100644
Binary files a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png
new file mode 100644
index 00000000000000..4c0128bc351b26
Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png
new file mode 100644
index 00000000000000..dc2f7389acf6eb
Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png
new file mode 100644
index 00000000000000..a0b979c2a19216
Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
index 083f285583c404..f7da4ce005c449 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
@@ -5,11 +5,11 @@ slug: /commands/abort-process-by-id
displayed_sidebar: docs
---
-**ABORT PROCESS BY ID** ( *IDunico* )
+**ABORT PROCESS BY ID** ( *IDunico* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| IDunico | Integer | → | ID de proceso único |
+| IDunico | Integer | → | ID de proceso único |
@@ -48,6 +48,6 @@ Desea detener el proceso seleccionado de la colección de procesos que se muestr
| | |
| --- | --- |
| Número de comando | 1634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
index 32446ac6b87fe4..701d41b1b72b10 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Aunque el comando ABORT está destinado a ser utilizado sólo desde un método d
| | |
| --- | --- |
| Número de comando | 156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
index a23d4d3905b254..4b4288046dc4b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
@@ -5,11 +5,11 @@ slug: /commands/abs
displayed_sidebar: docs
---
-**Abs** ( *Numero* ) : Real
+**Abs** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número del cual quiere obtener el valor absoluto |
+| Numero | Real | → | Número del cual quiere obtener el valor absoluto |
| Resultado | Real | ← | Valor absoluto de número |
@@ -32,6 +32,6 @@ El siguiente ejemplo devuelve el valor absoluto de –10.3, que es 10.3:
| | |
| --- | --- |
| Número de comando | 99 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
index 5178f513d15ee1..000985c7d142c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
@@ -41,7 +41,7 @@ El comando **ACCEPT** se permite en modo sin interfaz, en el contexto de las ár
| | |
| --- | --- |
| Número de comando | 269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
index f1b6627d3fe17d..d5c90e9e42fbd8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
@@ -5,11 +5,11 @@ slug: /commands/accumulate
displayed_sidebar: docs
---
-**ACCUMULATE** ( *objeto* {; *objeto2* ; ... ; *objetoN*} )
+**ACCUMULATE** ( *objeto* : Field, Variable {; *...objeto* : Field, Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Field, Variable | → | Campo o variable de tipo numérico a acumular |
+| objeto | Field, Variable | → | Campo o variable de tipo numérico a acumular |
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [BREAK LEVEL](break-level.md "BREAK LEVEL").
| | |
| --- | --- |
| Número de comando | 303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
index 2dd137a7ee7eb8..0e5d9780e06e3d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
@@ -5,12 +5,12 @@ slug: /commands/action-info
displayed_sidebar: docs
---
-**Action info** ( *action* {; *objetivo*} ) : Object
+**Action info** ( *action* : Text {; *objetivo* : Integer} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| action | Text | → | Nombre o patrón de acción estándar incluyendo el parámetro si es necesario |
-| objetivo | Integer | → | Define el objetivo de la acción para obtener información: forma principal o forma actual |
+| action | Text | → | Nombre o patrón de acción estándar incluyendo el parámetro si es necesario |
+| objetivo | Integer | → | Define el objetivo de la acción para obtener información: forma principal o forma actual |
| Resultado | Object | ← | Objeto que contiene el estado de la acción como propiedades booleanas: isEnabled, isVisible, isChecked, isMixed, isUnknownState |
@@ -71,6 +71,6 @@ Desea saber si la acción copiar está disponible (es decir, si se han seleccion
| | |
| --- | --- |
| Número de comando | 1442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
index 2c22f7a84fb979..fd58954a57c380 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 346 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
index 043d3c34977860..f5b6eeeae5b4a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Usted quiere conocer el estado de la transacción actual:
| | |
| --- | --- |
| Número de comando | 1387 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
index 25e0d85be37b35..9c41fcf6dce5e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
@@ -5,7 +5,7 @@ slug: /commands/activity-snapshot
displayed_sidebar: docs
---
-**ACTIVITY SNAPSHOT** ( arrActividades | arrUUID ; *arrInicio* ; *arrDuracion* ; *arrInfo* {; *arrDetails*}{; *} )
+**ACTIVITY SNAPSHOT** ( arrActividades | arrUUID ; *arrInicio* : Text array ; *arrDuracion* : Integer array ; *arrInfo* : Text array {; *arrDetails* : Object array}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| arrDuracion | Integer array | ← | Duración de las operaciones en milisegundos |
| arrInfo | Text array | ← | Descripción |
| arrDetails | Object array | ← | Detalles del contexto y sub operaciones (si las hay) |
-| * | Operador | → | Si se pasa = Traer actividad del servidor |
+| * | Operador | → | Si se pasa = Traer actividad del servidor |
@@ -111,6 +111,6 @@ Obtiene arrays del tipo:
| | |
| --- | --- |
| Número de comando | 1277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
index ca645f771f905f..569dabb5a25b3d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
@@ -5,12 +5,12 @@ slug: /commands/add-record
displayed_sidebar: docs
---
-**ADD RECORD** ( {*tabla*}{;}{*} )
+**ADD RECORD** ( {*tabla* : Table}{;}{*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a utilizar para entrada de datos o Tabla por defecto, si se omite |
-| * | Operator | → | Ocultar barras de desplazamiento |
+| tabla | Table | → | Tabla a utilizar para entrada de datos o Tabla por defecto, si se omite |
+| * | Operator | → | Ocultar barras de desplazamiento |
@@ -95,7 +95,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 56 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
index 06fd9f8eeb9fb3..67c09e794819ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
@@ -5,14 +5,14 @@ slug: /commands/add-to-date
displayed_sidebar: docs
---
-**Add to date** ( *fecha* ; *años* ; *meses* ; *días* ) : Date
+**Add to date** ( *fecha* : Date ; *años* : Integer ; *meses* : Integer ; *días* : Integer ) : Date
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fecha | Date | → | Fecha a la cual añadir días, meses y años |
-| años | Integer | → | Número de años a añadir a la fecha |
-| meses | Integer | → | Número de meses a añadir a la fecha |
-| días | Integer | → | Número de días a añadir a la fecha |
+| fecha | Date | → | Fecha a la cual añadir días, meses y años |
+| años | Integer | → | Número de años a añadir a la fecha |
+| meses | Integer | → | Número de meses a añadir a la fecha |
+| días | Integer | → | Número de días a añadir a la fecha |
| Resultado | Date | ← | Fecha resultante |
@@ -42,6 +42,6 @@ Aunque usted puede utilizar los *Operadores de fechas* para añadir días a una
| | |
| --- | --- |
| Número de comando | 393 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
index f72eb1c6f6251b..317a11ec63ccd9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
@@ -5,12 +5,12 @@ slug: /commands/add-to-set
displayed_sidebar: docs
---
-**ADD TO SET** ( {*tabla* ;} *conjunto* )
+**ADD TO SET** ( {*tabla* : Table ;} *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro actual o Tabla por defecto si se omite |
-| conjunto | Text | → | Nombre del conjunto al cual añadir el registro actual |
+| tabla | Table | → | Tabla del registro actual o Tabla por defecto si se omite |
+| conjunto | Text | → | Nombre del conjunto al cual añadir el registro actual |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 119 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
index 313e8a913dc1d3..5ff670ec281ade 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-blobs-cache-priority
displayed_sidebar: docs
---
-**ADJUST BLOBS CACHE PRIORITY** ( *tabla* ; *prioridad* )
+**ADJUST BLOBS CACHE PRIORITY** ( *tabla* : Table ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla cuyo valor de prioridad de datos "blobs" tiene que ser ajustado |
-| prioridad | Integer | → | Valor de prioridad de la caché para los BLOBs en la tabla |
+| tabla | Table | → | Tabla cuyo valor de prioridad de datos "blobs" tiene que ser ajustado |
+| prioridad | Integer | → | Valor de prioridad de la caché para los BLOBs en la tabla |
@@ -59,6 +59,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos de tex
| | |
| --- | --- |
| Número de comando | 1431 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
index 008eebe78fee8a..b95f292da441f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-index-cache-priority
displayed_sidebar: docs
---
-**ADJUST INDEX CACHE PRIORITY** ( *campo* ; *prioridad* )
+**ADJUST INDEX CACHE PRIORITY** ( *campo* : Field ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo cuyo valor de prioridad de índice(s) debe ajustarse |
-| prioridad | Integer | → | Valor de prioridad de la caché para los índices de campo |
+| campo | Field | → | Campo cuyo valor de prioridad de índice(s) debe ajustarse |
+| prioridad | Integer | → | Valor de prioridad de la caché para los índices de campo |
@@ -58,6 +58,6 @@ Usted desea cambiar temporalmente la prioridad de la caché para el índice de c
| | |
| --- | --- |
| Número de comando | 1430 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
index 1f3c021a123044..ccf784b3fd36b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-table-cache-priority
displayed_sidebar: docs
---
-**ADJUST TABLE CACHE PRIORITY** ( *tabla* ; *prioridad* )
+**ADJUST TABLE CACHE PRIORITY** ( *tabla* : Table ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla cuyo valor de prioridad de datos escalar tiene que ser ajustado |
-| prioridad | Integer | → | Valor de prioridad de la caché para la tabla |
+| tabla | Table | → | Tabla cuyo valor de prioridad de datos escalar tiene que ser ajustado |
+| prioridad | Integer | → | Valor de prioridad de la caché para la tabla |
@@ -57,6 +57,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos escala
| | |
| --- | --- |
| Número de comando | 1429 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md
index f30a6db793f5a8..83c2307e9d565b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **After** se genere, asegúrese de que la propie
| | |
| --- | --- |
| Número de comando | 31 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
index 1a9f9d9f9885b5..c502a803e5122c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
@@ -5,12 +5,12 @@ slug: /commands/alert
displayed_sidebar: docs
---
-**ALERT** ( *mensaje* {; *titulobotonOK*} )
+**ALERT** ( *mensaje* : Text {; *titulobotonOK* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo de alerta |
-| titulobotonOK | Text | → | Título del botón OK |
+| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo de alerta |
+| titulobotonOK | Text | → | Título del botón OK |
@@ -73,6 +73,6 @@ Muestra la siguiente caja de diálogo de alerta (en Windows):
| | |
| --- | --- |
| Número de comando | 41 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
index 77f9e2555b5f00..0d6aa5d74ed3ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
@@ -5,11 +5,11 @@ slug: /commands/all-records
displayed_sidebar: docs
---
-**ALL RECORDS** {( *tabla* )}
+**ALL RECORDS** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual seleccionar todos los registros o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual seleccionar todos los registros o Tabla por defecto, si se omite |
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra todos los registros de la tabla \[Personas\]:
| | |
| --- | --- |
| Número de comando | 47 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
index b922fcba3f7df8..b8e715e09abe13 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/append-data-to-pasteboard
displayed_sidebar: docs
---
-**APPEND DATA TO PASTEBOARD** ( *tipoDatos* ; *datos* )
+**APPEND DATA TO PASTEBOARD** ( *tipoDatos* : Text ; *datos* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoDatos | Text | → | Tipo de datos (4 caracteres) |
-| datos | Blob | → | Datos a añadir al portapapeles |
+| tipoDatos | Text | → | Tipo de datos (4 caracteres) |
+| datos | Blob | → | Datos a añadir al portapapeles |
@@ -221,7 +221,7 @@ Si los datos en el BLOB se añaden correctamente al portapapeles, la variable si
| | |
| --- | --- |
| Número de comando | 403 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
index d4623bc251810d..7887fad059187f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
@@ -5,12 +5,12 @@ slug: /commands/append-document
displayed_sidebar: docs
---
-**Append document** ( *doc* {; *tipo*} ) : Time
+**Append document** ( *doc* : Text {; *tipo* : Text} ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento o Cadena vacía para mostrar la caja de diálogo estándar de apertura de archivos |
-| tipo | Text | → | Lista de tipos de documentos a filtrar o "*" para no filtrar los documentos |
+| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento o Cadena vacía para mostrar la caja de diálogo estándar de apertura de archivos |
+| tipo | Text | → | Lista de tipos de documentos a filtrar o "*" para no filtrar los documentos |
| Resultado | Time | ← | Número de referencia del documento |
@@ -44,7 +44,7 @@ El siguiente ejemplo abre un documento existente llamado Nota, añade la cadena
| | |
| --- | --- |
| Número de comando | 265 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
index a6fd90d2a3e35d..510c116e740fb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/append-menu-item
displayed_sidebar: docs
---
-**APPEND MENU ITEM** ( *menu* ; *itemText* {; *subMenu* {; *proceso* {; *}}} )
+**APPEND MENU ITEM** ( *menu* : Integer ; *itemText* : Text {; *subMenu* : Text {; *proceso* : Integer {; *}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer | → | Número de menú o referencia de menú |
-| itemText | Text | → | Texto para los nuevos elementos de menú |
-| subMenu | Text | → | Referencia del submenú asociado al elemento |
-| proceso | Integer | → | Número de referencia del proceso |
-| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
+| menu | Integer | → | Número de menú o referencia de menú |
+| itemText | Text | → | Texto para los nuevos elementos de menú |
+| subMenu | Text | → | Referencia del submenú asociado al elemento |
+| proceso | Integer | → | Número de referencia del proceso |
+| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
@@ -86,7 +86,7 @@ Entonces, en todo método de formulario o de proyecto, puede escribir:
| | |
| --- | --- |
| Número de comando | 411 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
index 11a510b0c75fb7..f528786dab6471 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
@@ -5,12 +5,12 @@ slug: /commands/append-to-array
displayed_sidebar: docs
---
-**APPEND TO ARRAY** ( *array* ; *valor* )
+**APPEND TO ARRAY** ( *array* : Array ; *valor* : Expression )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array al cual añadir un elemento |
-| valor | Expression | → | Valor a añadir |
+| array | Array | → | Array al cual añadir un elemento |
+| valor | Expression | → | Valor a añadir |
@@ -49,6 +49,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 911 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
index 8ecd84d7408873..a1b57a21d5f4b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
@@ -5,15 +5,15 @@ slug: /commands/append-to-list
displayed_sidebar: docs
---
-**APPEND TO LIST** ( *lista* ; *textoElem* ; *refElem* {; *sublista* ; *desplegada*} )
+**APPEND TO LIST** ( *lista* : Integer ; *textoElem* : Text ; *refElem* : Integer {; *sublista* : Integer ; *desplegada* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de lista |
-| textoElem | Text | → | Texto del nuevo elemento de lista (max. 255 caracteres) |
-| refElem | Integer | → | Número de referencia único del nuevo elemento |
-| sublista | Integer | → | Sublista opcional para añadir al nuevo elemento |
-| desplegada | Boolean | → | Indica si las sublistas opcionales serán desplegadas o contraídas |
+| lista | Integer | → | Número de referencia de lista |
+| textoElem | Text | → | Texto del nuevo elemento de lista (max. 255 caracteres) |
+| refElem | Integer | → | Número de referencia único del nuevo elemento |
+| sublista | Integer | → | Sublista opcional para añadir al nuevo elemento |
+| desplegada | Boolean | → | Indica si las sublistas opcionales serán desplegadas o contraídas |
@@ -159,6 +159,6 @@ Cuando el formulario se ejecuta, la lista se verá de esta forma:
| | |
| --- | --- |
| Número de comando | 376 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
index 108ea98d534949..1930ef48eeb043 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Al iniciar su base de datos en Windows, necesita verificar si una librería DLL
| | |
| --- | --- |
| Número de comando | 491 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
index 097346d79b9acc..c0a6616db0de4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si el código se ejecuta en 4D Server, el objeto contiene (por ejemplo):
| | |
| --- | --- |
| Número de comando | 1599 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
index 615a39003f0278..d8740f0efe0d71 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ En alguna parte de su código, diferente del *Método base On Server Startup*, d
| | |
| --- | --- |
| Número de comando | 494 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
index e92a08015c303b..ad9b832096fc56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
@@ -5,12 +5,12 @@ slug: /commands/application-version
displayed_sidebar: docs
---
-**Application version** {( *buildNum* {; *} )} : Text
+**Application version** ( *buildNum* : Integer {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| buildNum | Integer | ← | Número de build |
-| * | Operador | → | Si pasa número de versión largo, de lo contrario número de versión corto |
+| * | Operador | → | Si pasa número de versión largo, de lo contrario número de versión corto |
| Resultado | Text | ← | Número de versión en una cadena codificada |
@@ -126,6 +126,6 @@ Usted desea utilizar el valor de la versión corta de la aplicación devuelto po
| | |
| --- | --- |
| Número de comando | 493 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
index fa7871afeadeba..4fb8d0ecb4e18f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/apply-to-selection
displayed_sidebar: docs
---
-**APPLY TO SELECTION** ( *tabla* ; *sentencia* )
+**APPLY TO SELECTION** ( *tabla* : Table ; *sentencia* : Expression )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual aplicar la fórmula o Tabla por defecto, si se omite |
-| sentencia | Expression | → | Línea de código o método |
+| tabla | Table | → | Tabla en la cual aplicar la fórmula o Tabla por defecto, si se omite |
+| sentencia | Expression | → | Línea de código o método |
@@ -68,7 +68,7 @@ Si el usuario hace clic en el botón Detener en el termómetro de progresión, l
| | |
| --- | --- |
| Número de comando | 70 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
index 5de0eebdf35d02..de2a37bb79d9d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
@@ -5,11 +5,11 @@ slug: /commands/arctan
displayed_sidebar: docs
---
-**Arctan** ( *Numero* ) : Real
+**Arctan** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Tangente para la cual calcular el ángulo |
+| Numero | Real | → | Tangente para la cual calcular el ángulo |
| Resultado | Real | ← | Ángulo en radianes |
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra el valor de Pi:
| | |
| --- | --- |
| Número de comando | 20 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
index cfb78c24cb3dc0..1167addcbeb709 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
@@ -5,13 +5,13 @@ slug: /commands/array-blob
displayed_sidebar: docs
---
-**ARRAY BLOB** ( *nomArray* ; *tam* {; *tam2*} )
+**ARRAY BLOB** ( *nomArray* : Array ; *tam* : Integer {; *tam2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nombre del array |
-| tam | Integer | → | Número de elementos del array o número de arrays si se especifica tam2 |
-| tam2 | Integer | → | Número de los elementos de los array 2D |
+| nomArray | Array | → | Nombre del array |
+| tam | Integer | → | Número de elementos del array o número de arrays si se especifica tam2 |
+| tam2 | Integer | → | Número de los elementos de los array 2D |
@@ -66,6 +66,6 @@ Este ejemplo crea un array local de 100 filas, conteniendo cada una 50 elementos
| | |
| --- | --- |
| Número de comando | 1222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
index c2bdf647763abb..fec7c1c44b56f0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
@@ -5,13 +5,13 @@ slug: /commands/array-boolean
displayed_sidebar: docs
---
-**ARRAY BOOLEAN** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY BOOLEAN** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
@@ -66,6 +66,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo [Booleano](# "Ca
| | |
| --- | --- |
| Número de comando | 223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
index 63a9b4bebfe9a9..9b313ba1a74d3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
@@ -5,13 +5,13 @@ slug: /commands/array-date
displayed_sidebar: docs
---
-**ARRAY DATE** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY DATE** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
@@ -59,6 +59,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Fecha y asigna a
| | |
| --- | --- |
| Número de comando | 224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
index c0cedcf4ae2054..78084cd6bda351 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
@@ -5,13 +5,13 @@ slug: /commands/array-integer
displayed_sidebar: docs
---
-**ARRAY INTEGER** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY INTEGER** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Nombre de los elementos en el array o Número de filas si se especifica el tamaño 2 |
-| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Nombre de los elementos en el array o Número de filas si se especifica el tamaño 2 |
+| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 2 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
index b3073493473c67..f1eab2bce48145 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
@@ -5,13 +5,13 @@ slug: /commands/array-longint
displayed_sidebar: docs
---
-**ARRAY LONGINT** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY LONGINT** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 4 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
index ef7c0499ee5a12..d64b1ee8e1ccc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
@@ -5,13 +5,13 @@ slug: /commands/array-object
displayed_sidebar: docs
---
-**ARRAY OBJECT** ( *nomArray* ; *tam* {; *tam2*} )
+**ARRAY OBJECT** ( *nomArray* : Array ; *tam* : Integer {; *tam2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nombre del array |
-| tam | Integer | → | Número de elementos del array o número de arrays si se especifica tam2 |
-| tam2 | Integer | → | Número de elementos del array 2D |
+| nomArray | Array | → | Nombre del array |
+| tam | Integer | → | Número de elementos del array o número de arrays si se especifica tam2 |
+| tam2 | Integer | → | Número de elementos del array 2D |
@@ -75,6 +75,6 @@ Creación y llenado de un array local de objetos:
| | |
| --- | --- |
| Número de comando | 1221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
index eefbc04bdac863..8eb2fcf9e7bd4d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
@@ -5,13 +5,13 @@ slug: /commands/array-picture
displayed_sidebar: docs
---
-**ARRAY PICTURE** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY PICTURE** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
@@ -66,6 +66,6 @@ Este ejemplo crea un array interpcoceso de elementos de tipo [Imagen](# "Can be
| | |
| --- | --- |
| Número de comando | 279 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
index 37e56d9ab515b3..03a643b01b9de1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/array-pointer
displayed_sidebar: docs
---
-**ARRAY POINTER** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY POINTER** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
@@ -61,6 +61,6 @@ Este ejemplo crea un array interproceso de elementos de tipo [Puntero](# "A refe
| | |
| --- | --- |
| Número de comando | 280 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
index 6223715560a47a..505b8dcbe52ba5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
@@ -5,13 +5,13 @@ slug: /commands/array-real
displayed_sidebar: docs
---
-**ARRAY REAL** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY REAL** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array de dos dimensiones |
@@ -65,6 +65,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Real y asigna a
| | |
| --- | --- |
| Número de comando | 219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
index 4e401069f38ba3..cf8b8698ac5fd6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
@@ -5,13 +5,13 @@ slug: /commands/array-text
displayed_sidebar: docs
---
-**ARRAY TEXT** ( *nombreArray* ; *tamaño* {; *tamaño2*} )
+**ARRAY TEXT** ( *nombreArray* : Array ; *tamaño* : Integer {; *tamaño2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreArray | Array | → | Nombre del array |
-| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
+| nombreArray | Array | → | Nombre del array |
+| tamaño | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tamaño2 | Integer | → | Número de columnas en un array bidimensional |
@@ -60,6 +60,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo texto y asigna a
| | |
| --- | --- |
| Número de comando | 222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
index 04b8d0368e2b89..fc610f1046c939 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
@@ -5,13 +5,13 @@ slug: /commands/array-time
displayed_sidebar: docs
---
-**ARRAY TIME** ( *nomArray* ; *tam* {; *tam2*} )
+**ARRAY TIME** ( *nomArray* : Array ; *tam* : Integer {; *tam2* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nombre de array |
-| tam | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
-| tam2 | Integer | → | Número de columnas en un array de dos dimensiones |
+| nomArray | Array | → | Nombre de array |
+| tam | Integer | → | Número de elementos en el array o Número de filas si se especifica tamaño2 |
+| tam2 | Integer | → | Número de columnas en un array de dos dimensiones |
@@ -69,6 +69,6 @@ Como los arrays de horas aceptan valores numéricos, el siguiente código es vá
| | |
| --- | --- |
| Número de comando | 1223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
index 19ae495f8756bb..456b6d4f725520 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-collection
displayed_sidebar: docs
---
-**ARRAY TO COLLECTION** ( *coleccion* ; *array* {; *nombreProp*}{; *array2* ; *nombreProp2* ; ... ; *arrayN* ; *nombrePropN*} )
+**ARRAY TO COLLECTION** ( *coleccion* : Collection ; *array* : Array {; *nombreProp* : Text}{; *array2* ; *nombreProp2* ; ... ; *arrayN* ; *nombrePropN*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| coleccion | Collection | ← | Colección a recibir los datos del array |
-| array | Array | → | Array a copiar a la colección; si se pasó nombreProp, array a copiar a los valores de nombreProp en la colección. |
-| nombreProp | Text | → | Nombre de la propiedad del objeto cuyo valor llenar con elementos del array |
+| array | Array | → | Array a copiar a la colección; si se pasó nombreProp, array a copiar a los valores de nombreProp en la colección. |
+| nombreProp | Text | → | Nombre de la propiedad del objeto cuyo valor llenar con elementos del array |
@@ -88,6 +88,6 @@ Desea copiar una array texto en una colección compartida:
| | |
| --- | --- |
| Número de comando | 1563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
index aa3803662dd126..e24eb42db4fa2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-list
displayed_sidebar: docs
---
-**ARRAY TO LIST** ( *array* ; *lista* {; *refElementos*} )
+**ARRAY TO LIST** ( *array* : Array ; *lista* : Text, Integer {; *refElementos* : Array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array del cual copiar los elementos del array |
-| lista | Text, Integer | → | Lista en la cual copiar los elementos del array |
-| refElementos | Array | → | Array numérico de números de referencia de los elementos |
+| array | Array | → | Array del cual copiar los elementos del array |
+| lista | Text, Integer | → | Lista en la cual copiar los elementos del array |
+| refElementos | Array | → | Array numérico de números de referencia de los elementos |
@@ -66,7 +66,7 @@ El comando ARRAY TO LIST genera el error *\-9957* cuando se aplica a una lista q
| | |
| --- | --- |
| Número de comando | 287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
index 26af482b82f022..1069782bec7ae5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-selection
displayed_sidebar: docs
---
-**ARRAY TO SELECTION** {( *array* ; *campo* {; *array2* ; *campo2* ; ... ; *arrayN* ; *campoN*}{; *} )}
+**ARRAY TO SELECTION** ({ *array* : Array ; *campo* : Field {; ...(*array* : Array, *campo* : Field)}{; *} })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array a copiar en la selección |
+| array | Array | → | Array a copiar en la selección |
| campo | Field | ← | Campo a recibir los valores del array |
-| * | Operador | → | Esperar ejecución |
+| * | Operador | → | Esperar ejecución |
@@ -86,7 +86,7 @@ Usted desea copiar una selección de registros a una tabla archivo seleccionando
| | |
| --- | --- |
| Número de comando | 261 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
index 28360ee8227017..9ebecfa0b400e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
@@ -5,12 +5,12 @@ slug: /commands/assert
displayed_sidebar: docs
---
-**ASSERT** ( *expresionBool* {; *textoMensaje*} )
+**ASSERT** ( *expresionBool* : Boolean {; *textoMensaje* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresionBool | Boolean | → | Expresión booleana |
-| textoMensaje | Text | → | Texto del mensaje de error |
+| expresionBool | Boolean | → | Expresión booleana |
+| textoMensaje | Text | → | Texto del mensaje de error |
@@ -63,7 +63,7 @@ Una aserción permite probar los parámetros pasados a un método de proyecto pa
| | |
| --- | --- |
| Número de comando | 1129 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
index 5d9036366bd4c4..530526d9d10f75 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
@@ -5,12 +5,12 @@ slug: /commands/asserted
displayed_sidebar: docs
---
-**Asserted** ( *expresionBool* {; *textoMensaje*} ) : Boolean
+**Asserted** ( *expresionBool* : Boolean {; *textoMensaje* : Text} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresionBool | Boolean | → | Expresión booleana |
-| textoMensaje | Text | → | Texto del mensaje de error |
+| expresionBool | Boolean | → | Expresión booleana |
+| textoMensaje | Text | → | Texto del mensaje de error |
| Resultado | Boolean | ← | Resultado de la evaluación de expresionBool |
@@ -47,7 +47,7 @@ Inserción de una aserción en la evaluación de una expresión:
| | |
| --- | --- |
| Número de comando | 1132 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md
index 781e22682ad63a..e25917eeffcbe0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/average.md
@@ -5,12 +5,12 @@ slug: /commands/average
displayed_sidebar: docs
---
-**Average** ( *series* {; *rutaAtributo*} ) : Real
+**Average** ( *series* : Field, Array {; *rutaAtributo* : Text} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve el promedio |
-| rutaAtributo | Text | → | Ruta del atributo del cual calcular el promedio |
+| series | Field, Array | → | Datos para los cuales se devuelve el promedio |
+| rutaAtributo | Text | → | Ruta del atributo del cual calcular el promedio |
| Resultado | Real | ← | Media aritmética (promedio) de series |
@@ -95,7 +95,7 @@ Puede hacer los siguientes cálculos:
| | |
| --- | --- |
| Número de comando | 2 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
index 7bd5a7f8c0f5ed..f6a046b59a8262 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
@@ -5,11 +5,11 @@ slug: /commands/backup-info
displayed_sidebar: docs
---
-**BACKUP INFO** ( *selector* ; *info1* ; *info2* )
+**BACKUP INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Time, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Tipo de información a obtener |
+| selector | Integer | → | Tipo de información a obtener |
| info1 | Integer, Date | ← | Valor 1 del selector |
| info2 | Time, Text | ← | Valor 2 del selector |
@@ -37,6 +37,6 @@ Pase el tipo de información a obtener en *selector*. El tipo y el contenido de
| | |
| --- | --- |
| Número de comando | 888 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
index 519f0cef07f742..a9e1b9ef1be180 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En caso de que se presenten incidentes durante el backup, la información relati
| | |
| --- | --- |
| Número de comando | 887 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
index 10626c3002dfd5..6a282f17256b9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-decode
displayed_sidebar: docs
---
-**BASE64 DECODE** ( *aDecodificar* {; *decodificado*}{; *} )
+**BASE64 DECODE** ( *aDecodificar* : Text, Blob {; *decodificado* : Text, Blob}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aDecodificar | Text, Blob | → | Valor codificado a decodificar |
-| ← | Valor descodificado (si se omite el parámetro descodificado) |
+| aDecodificar | Text, Blob | ↔ | *in:* Encoded value to decode
*out:* Decoded value (if decoded parameter omitted) |
| decodificado | Text, Blob | ← | Valor decodificado |
-| * | Operador | → | Decodificar en formato Base64URL |
+| * | Operador | → | Decodificar en formato Base64URL |
@@ -61,6 +60,6 @@ Este ejemplo le permite transferir una imagen vía un BLOB:
| | |
| --- | --- |
| Número de comando | 896 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
index 50e4d20d9619c4..f0d76ef13f7aa1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-encode
displayed_sidebar: docs
---
-**BASE64 ENCODE** ( *aCodificar* {; *codificado*}{; *} )
+**BASE64 ENCODE** ( *aCodificar* : Blob, Text {; *codificado* : Blob, Text}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aCodificar | Blob, Text | → | Valor a codificar |
-| ← | Valor codificado (si el parámetro codificado se omite) |
+| aCodificar | Blob, Text | ↔ | *in:* Value to encode
*out:* Encoded value (if encoded parameter omitted) |
| codificado | Blob, Text | ← | Varlor codificado |
-| * | Operador | → | Codificado en formato Base64URL |
+| * | Operador | → | Codificado en formato Base64URL |
@@ -44,6 +43,6 @@ Por defecto, si se omite el parámetro *\**, el comando utiliza una codificació
| | |
| --- | --- |
| Número de comando | 895 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
index 5818d9c29b5f34..b80da20d3c9ca7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
@@ -39,6 +39,6 @@ En el siguiente ejemplo, si una búsqueda no encuentra ningún registro, se emit
| | |
| --- | --- |
| Número de comando | 151 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
index ce54385f76defb..5aac9a69b678fa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
@@ -5,11 +5,11 @@ slug: /commands/before-selection
displayed_sidebar: docs
---
-**Before selection** {( *tabla* )} : Boolean
+**Before selection** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual probar si el puntero se encuentra antes del primer registro seleccionado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla para la cual probar si el puntero se encuentra antes del primer registro seleccionado o Tabla por defecto, si se omite |
| Resultado | Boolean | ← | Sí (TRUE) o No (FALSE) |
@@ -68,6 +68,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Defin
| | |
| --- | --- |
| Número de comando | 198 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md
index 85145b461477e4..7fc32c84f4554d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **Before** se genere, asegúrese de que la propi
| | |
| --- | --- |
| Número de comando | 29 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
index eb711a06df3a11..45983a8c9534fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que el *Depurador* 4D evaluará el código SQL línea por línea. En alguno
| | |
| --- | --- |
| Número de comando | 948 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
index bd5576c6c8d3b8..e4d792b4c993eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
@@ -5,11 +5,11 @@ slug: /commands/blob-properties
displayed_sidebar: docs
---
-**BLOB PROPERTIES** ( *BLOB* ; *comprimido* {; *descompTam* {; *tamañoActual*}} )
+**BLOB PROPERTIES** ( *BLOB* : Blob ; *comprimido* : Integer {; *descompTam* : Integer {; *tamañoActual* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual obtener información |
+| Blob | Blob | → | BLOB del cual obtener información |
| comprimido | Integer | ← | 0 = BLOB no está comprimido 1 = BLOB comprimido modo compacto 2 = BLOB comprimido modo rápido |
| descompTam | Integer | ← | Tamaño del BLOB (en bytes) cuando no está comprimido |
| tamañoActual | Integer | ← | Tamaño actual del BLOB (en bytes) |
@@ -83,6 +83,6 @@ Después de añadir este método a su aplicación, lo puede utilizar de esta man
| | |
| --- | --- |
| Número de comando | 536 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
index ed30045f49ac51..ae990710d97398 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/blob-size
displayed_sidebar: docs
---
-**BLOB size** ( *BLOB* ) : Integer
+**BLOB size** ( *BLOB* : Blob ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | Campo o variable de tipo BLOB |
+| Blob | Blob | → | Campo o variable de tipo BLOB |
| Resultado | Integer | ← | Tamaño en bytes del BLOB |
@@ -35,6 +35,6 @@ La línea de código añade 100 bytes al BLOB *miBlob*:
| | |
| --- | --- |
| Número de comando | 605 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
index 595c8cdd587d75..078e576ba97ca0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-document
displayed_sidebar: docs
---
-**BLOB TO DOCUMENT** ( *documento* ; *BLOB* )
+**BLOB TO DOCUMENT** ( *documento* : Text ; *BLOB* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Text | → | Nombre del documento |
-| Blob | Blob | → | Nuevo contenido del documento |
+| documento | Text | → | Nombre del documento |
+| Blob | Blob | → | Nuevo contenido del documento |
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
index 004d1aaa7c72fb..5ac8bd47e4b140 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-integer
displayed_sidebar: docs
---
-**BLOB to integer** ( *BLOB* ; *byteOrden* {; *offset*} ) : Integer
+**BLOB to integer** ( *BLOB* : Blob ; *byteOrden* : Integer {; *offset* : Variable} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual obtener el valor entero |
-| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
-| offset | Variable | ↔ | Offset en el BLOB (expresado en bytes) |
-| || | Nuevo offset después de la lectura |
+| Blob | Blob | → | BLOB del cual obtener el valor entero |
+| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
+| offset | Variable | ↔ | Offset en el BLOB (expresado en bytes) |
+| | | | Nuevo offset después de la lectura |
| Resultado | Integer | ← | Valor entero (2 bytes) |
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores enteros de un BLOB, a partir del offset 0x20
| | |
| --- | --- |
| Número de comando | 549 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
index 439c54cfb120f8..d7aa53f015b909 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-list
displayed_sidebar: docs
---
-**BLOB to list** ( *BLOB* {; *offset*} ) : Integer
+**BLOB to list** ( *BLOB* : Blob {; *offset* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB que contiene una lista jerárquica |
-| offset | Integer | ↔ | Offset en el BLOB (expresado en bytes) |
-||| | Nuevo offset después de la lectura |
+| Blob | Blob | → | BLOB que contiene una lista jerárquica |
+| offset | Integer | ↔ | Offset en el BLOB (expresado en bytes) |
+| | | | Nuevo offset después de la lectura |
| Resultado | Integer | ← | Referencia de la lista creada recientemente |
@@ -65,7 +65,7 @@ La variable OK toma el valor 1 si la lista se crea correctamente, de lo contrari
| | |
| --- | --- |
| Número de comando | 557 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
index 98b6deb07c5efa..f5ddb92abbe6b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-longint
displayed_sidebar: docs
---
-**BLOB to longint** ( *BLOB* ; *byteOrden* {; *offset*} ) : Integer
+**BLOB to longint** ( *BLOB* : Blob ; *byteOrden* : Integer {; *offset* : Variable} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual obtener el valor entero largo |
-| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
+| Blob | Blob | → | BLOB del cual obtener el valor entero largo |
+| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
| offset | Variable | ↔ | Offset en el BLOB (expresado en bytes) |
-||| | Nuevo offset después de la lectura |
+| | | | Nuevo offset después de la lectura |
| Resultado | Integer | ← | Valor entero largo (4 bytes) |
@@ -64,6 +64,6 @@ El siguiente ejemplo lee 20 valores de tipo entero largo de un BLOB, a partir de
| | |
| --- | --- |
| Número de comando | 551 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
index 2fa328c959a266..cbf15fde62448e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-picture
displayed_sidebar: docs
---
-**BLOB TO PICTURE** ( *blobImag* ; *imagen* {; *codec*} )
+**BLOB TO PICTURE** ( *blobImag* : Blob ; *imagen* : Picture {; *codec* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| blobImag | Blob | → | BLOB contiene una imagen |
+| blobImag | Blob | → | BLOB contiene una imagen |
| imagen | Picture | ← | Campo o variable imagen 4D |
-| codec | Text | → | Identificador de codec de imagen |
+| codec | Text | → | Identificador de codec de imagen |
@@ -57,7 +57,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 682 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
index cce5b132486dd4..da917d736302e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-print-settings
displayed_sidebar: docs
---
-**BLOB to print settings** ( *confImpr* {; *params*} ) : Integer
+**BLOB to print settings** ( *confImpr* : Blob {; *params* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| confImpr | Blob | → | BLOB que contiene la configuración de impresión |
-| params | Integer | → | 0=Restaura valores guardados para el número de copias y rango de páginas, 1=Restablece los valores predeterminados |
+| confImpr | Blob | → | BLOB que contiene la configuración de impresión |
+| params | Integer | → | 0=Restaura valores guardados para el número de copias y rango de páginas, 1=Restablece los valores predeterminados |
| Resultado | Integer | ← | Código de estado: 1=operación exitosa, 0=no hay impresora actual, -1=parámetros incorrectos, 2=impresora modificada |
@@ -75,4 +75,4 @@ Usted desea aplicar la configuración de impresión guardada en el disco para el
| | |
| --- | --- |
| Número de comando | 1434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
index 140ec85e575fcf..ceee73f6f20c2c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-real
displayed_sidebar: docs
---
-**BLOB to real** ( *BLOB* ; *formatoReal* {; *offset*} ) : Real
+**BLOB to real** ( *BLOB* : Blob ; *formatoReal* : Integer {; *offset* : Variable} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual obtener el valor de tipo Real |
-| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real doble Macintosh 3 Formato real doble Windows |
+| Blob | Blob | → | BLOB del cual obtener el valor de tipo Real |
+| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real doble Macintosh 3 Formato real doble Windows |
| offset | Variable | ↔ | Offset en el BLOB (expresado en bytes) |
-|||| Nuevo offset después de la lectura |
+| | | | Nuevo offset después de la lectura |
| Resultado | Real | ← | Valor real |
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores reales de un BLOB, a partir del offset 0x200
| | |
| --- | --- |
| Número de comando | 553 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
index 23531095d11c87..67ef5b0f8a5a78 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
@@ -5,15 +5,15 @@ slug: /commands/blob-to-text
displayed_sidebar: docs
---
-**BLOB to text** ( *BLOB* ; *formatoTexto* {; *offset* {; *longitudTexto*}} ) : Text
+**BLOB to text** ( *BLOB* : Blob ; *formatoTexto* : Integer {; *offset* : Variable {; *longitudTexto* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual obtener el texto |
-| formatoTexto | Integer | → | Formato y conjunto de caracteres de texto |
-| offset | Variable |↔ | Offset en el BLOB (expresado en bytes) |
-| || | Nuevo offset después de la lectura |
-| longitudTexto | Integer | → | Número de caracteres a leer |
+| Blob | Blob | → | BLOB del cual obtener el texto |
+| formatoTexto | Integer | → | Formato y conjunto de caracteres de texto |
+| offset | Variable | ↔ | Offset en el BLOB (expresado en bytes) |
+| | | | Nuevo offset después de la lectura |
+| longitudTexto | Integer | → | Número de caracteres a leer |
| Resultado | Text | ← | Valor del texto |
@@ -66,6 +66,6 @@ Después de la ejecución del comando, la variable se incrementa en el número d
| | |
| --- | --- |
| Número de comando | 555 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
index 1921932655a356..8d2b2b4280ccc9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-users
displayed_sidebar: docs
---
-**BLOB TO USERS** ( *usuarios* )
+**BLOB TO USERS** ( *usuarios* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| usuarios | Blob | → | BLOB (encriptado) contiene las cuentas de usuarios creadas y guardadas por el Administrador |
+| usuarios | Blob | → | BLOB (encriptado) contiene las cuentas de usuarios creadas y guardadas por el Administrador |
@@ -53,7 +53,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 850 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
index 1a031115f36a14..4f3761231ff63f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-variable
displayed_sidebar: docs
---
-**BLOB TO VARIABLE** ( *BLOB* ; *variable* {; *offset*} )
+**BLOB TO VARIABLE** ( *BLOB* : Blob ; *variable* : Variable {; *offset* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB que contiene variables 4D |
+| Blob | Blob | → | BLOB que contiene variables 4D |
| variable | Variable | ← | Variable a escribir con el contenido del BLOB |
| offset | Integer | ↔ | Posición de la variable en el BLOB |
-| || | Posición de la variable siguiente en el BLOB |
+| | | | Posición de la variable siguiente en el BLOB |
@@ -47,7 +47,7 @@ La variable OK toma el valor 1 si la variable ha sido reescrita correctamente, d
| | |
| --- | --- |
| Número de comando | 533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
index 4839abc34bbea4..8739fccaacb3ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
@@ -5,11 +5,11 @@ slug: /commands/bool
displayed_sidebar: docs
---
-**Bool** ( *expresion* ) : Boolean
+**Bool** ( *expresion* : Expression ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresion | Expression | → | Expresión para la cual devolver la forma booleana |
+| expresion | Expression | → | Expresión para la cual devolver la forma booleana |
| Resultado | Boolean | ← | Forma booleana de la expresión |
@@ -53,6 +53,6 @@ Selecciona un valor dependiendo del contenido de un atributo de campo de objeto,
| | |
| --- | --- |
| Número de comando | 1537 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
index 130399c9d93c9b..58f9f4951c63d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/boolean-array-from-set
displayed_sidebar: docs
---
-**BOOLEAN ARRAY FROM SET** ( *arrBool* {; *conjunto*} )
+**BOOLEAN ARRAY FROM SET** ( *arrBool* : Boolean array {; *conjunto* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| arrBool | Boolean array | ← | Array para indicar si un registro está en un conjunto o no |
-| conjunto | Text | → | Nombre del conjunto o UserSet si se omite este parámetro |
+| conjunto | Text | → | Nombre del conjunto o UserSet si se omite este parámetro |
@@ -38,6 +38,6 @@ Si no pasa el parámetro *conjunto*, el comando utilizará UserSet en el proceso
| | |
| --- | --- |
| Número de comando | 646 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
index 7bc9f75cdeedaa..85f7743092f04e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
@@ -5,12 +5,12 @@ slug: /commands/break-level
displayed_sidebar: docs
---
-**BREAK LEVEL** ( *nivel* {; *saltoPag*} )
+**BREAK LEVEL** ( *nivel* : Integer {; *saltoPag* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nivel | Integer | → | Número de niveles de ruptura |
-| saltoPag | Integer | → | Nivel del salto de página |
+| nivel | Integer | → | Número de niveles de ruptura |
+| saltoPag | Integer | → | Nivel del salto de página |
@@ -50,6 +50,6 @@ El siguiente ejemplo imprime un informe con dos niveles de ruptura. La selecció
| | |
| --- | --- |
| Número de comando | 302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
index 367a03b6ad3ad7..8846be1436811c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
@@ -5,11 +5,11 @@ slug: /commands/bring-to-front
displayed_sidebar: docs
---
-**BRING TO FRONT** ( *proceso* )
+**BRING TO FRONT** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número del proceso a pasar al primer plano |
+| proceso | Integer | → | Número del proceso a pasar al primer plano |
@@ -42,6 +42,6 @@ El siguiente ejemplo es un método que puede ser ejecutado desde un menú. Él v
| | |
| --- | --- |
| Número de comando | 326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
index 96eae7ad3ab6db..2487c3dea0e277 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
@@ -5,11 +5,11 @@ slug: /commands/build-application
displayed_sidebar: docs
---
-**BUILD APPLICATION** {( *confCreacionApp* )}
+**BUILD APPLICATION** ({ *confCreacionApp* : Text })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| confCreacionApp | Text | → | Ruta de acceso completa del proyecto a utilizar |
+| confCreacionApp | Text | → | Ruta de acceso completa del proyecto a utilizar |
@@ -57,7 +57,7 @@ Si el comando falla, se genera un error que puede interceptar con la ayuda del c
| | |
| --- | --- |
| Número de comando | 871 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
index 909a62e277da26..b0134b8072dbfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
@@ -5,11 +5,11 @@ slug: /commands/cache-info
displayed_sidebar: docs
---
-**Cache info** {( *dbFilter* )} : Object
+**Cache info** ( *dbFilter* : Object ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| dbFilter | Object | → | Define la lista de atributos a devolver (filtrada por DB) |
+| dbFilter | Object | → | Define la lista de atributos a devolver (filtrada por DB) |
| Resultado | Object | ← | Información sobre la caché |
@@ -59,6 +59,6 @@ Usted quiere obtener información de la caché de la base de datos y todos los c
| | |
| --- | --- |
| Número de comando | 1402 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
index f44b8623f5ae03..ade6c2adfb10b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
@@ -5,13 +5,13 @@ slug: /commands/call-form
displayed_sidebar: docs
---
-**CALL FORM** ( *ventana* ; *metodo* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL FORM** ( *ventana* : Integer ; *metodo* : Object, Text {; *...param* : Expression} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
-| metodo | Object, Text | → | Nombre del método proyecto a llamar |
-| param | Expression | → | Parámetros pasados al método |
+| ventana | Integer | → | Número de referencia de la ventana |
+| metodo | Object, Text | → | Nombre del método proyecto a llamar |
+| param | Expression | → | Parámetros pasados al método |
@@ -107,6 +107,6 @@ Luego puede añadir otros mensajes ejecutando el comando **CALL FORM** nuevament
| | |
| --- | --- |
| Número de comando | 1391 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
index e30cd744f98fd7..045bf6423b72f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
@@ -5,11 +5,11 @@ slug: /commands/call-subform-container
displayed_sidebar: docs
---
-**CALL SUBFORM CONTAINER** ( *evento* )
+**CALL SUBFORM CONTAINER** ( *evento* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| evento | Integer | → | Evento a enviar |
+| evento | Integer | → | Evento a enviar |
@@ -35,6 +35,6 @@ En *evento*, puede pasar todo evento de formulario predefinido de 4D (puede util
| | |
| --- | --- |
| Número de comando | 1086 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
index c77c7b12e605da..ee7a61f9f1e6a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
@@ -5,13 +5,13 @@ slug: /commands/call-worker
displayed_sidebar: docs
---
-**CALL WORKER** ( *proceso* ; *metodo* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL WORKER** ( *proceso* : Text, Integer ; *metodo* : Object, Text {; *...param* : Expression} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Text, Integer | → | Nombre o número del proceso worker |
-| metodo | Object, Text | → | Nombre del método proyecto a llamar |
-| param | Expression | → | Parámetros pasados al método |
+| proceso | Text, Integer | → | Nombre o número del proceso worker |
+| metodo | Object, Text | → | Nombre del método proyecto a llamar |
+| param | Expression | → | Parámetros pasados al método |
@@ -83,6 +83,6 @@ El código de *workerMethod* es:
| | |
| --- | --- |
| Número de comando | 1389 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
index d1cbc82a938a5d..6c75b91efd19c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 241 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
index 37fa778d1ceb50..49848762f46597 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Cuando el comando CANCEL se ejecuta (anulación de formulario o de impresión),
| | |
| --- | --- |
| Número de comando | 270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
index 46f1d5c0263d1a..8111e5646c3fd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
index 4d525beb107706..145cc4b6e3f1c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
@@ -5,12 +5,12 @@ slug: /commands/change-current-user
displayed_sidebar: docs
---
-**CHANGE CURRENT USER** {( *usuario* ; *contraseña* )}
+**CHANGE CURRENT USER** ({ *usuario* : Text, Integer ; *contraseña* : Text })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| usuario | Text, Integer | → | Nombre o número de referencia único |
-| contraseña | Text | → | Contraseña (no encriptada) |
+| usuario | Text, Integer | → | Nombre o número de referencia único |
+| contraseña | Text | → | Contraseña (no encriptada) |
@@ -77,6 +77,6 @@ El siguiente ejemplo muestra la caja de diálogo de conexión:
| | |
| --- | --- |
| Número de comando | 289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
index 173c5382e939cf..a59b375c4949c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ De esta forma un usuario puede activar licencias sin tener que modificar la base
| | |
| --- | --- |
| Número de comando | 637 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
index d5237c86c44489..e7a6b1e4eb7dec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
@@ -5,11 +5,11 @@ slug: /commands/change-password
displayed_sidebar: docs
---
-**CHANGE PASSWORD** ( *contraseña* )
+**CHANGE PASSWORD** ( *contraseña* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| contraseña | Text | → | Nueva contraseña |
+| contraseña | Text | → | Nueva contraseña |
@@ -48,6 +48,6 @@ El siguiente ejemplo permite al usuario cambiar su contraseña.
| | |
| --- | --- |
| Número de comando | 186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
index 54a4668fcb961e..ebbe59b55190ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
@@ -5,13 +5,13 @@ slug: /commands/change-string
displayed_sidebar: docs
---
-**Change string** ( *fuente* ; *nuevo* ; *posicion* ) : Text
+**Change string** ( *fuente* : Text ; *nuevo* : Text ; *posicion* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Text | → | Cadena original |
-| nuevo | Text | → | Nuevos caracteres |
-| posicion | Integer | → | Posición donde comenzar los cambios |
+| fuente | Text | → | Cadena original |
+| nuevo | Text | → | Nuevos caracteres |
+| posicion | Integer | → | Posición donde comenzar los cambios |
| Resultado | Text | ← | Cadena resultante |
@@ -44,6 +44,6 @@ El siguiente ejemplo ilustra el uso de Change string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md
index 54ddf3d469b867..d128603aacf92b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/char.md
@@ -5,11 +5,11 @@ slug: /commands/char
displayed_sidebar: docs
---
-**Char** ( *codigoCaracter* ) : Text
+**Char** ( *codigoCaracter* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| codigoCaracter | Integer | → | Código del caracter |
+| codigoCaracter | Integer | → | Código del caracter |
| Resultado | Text | ← | Caracter representado por codigoCaracter |
@@ -41,6 +41,6 @@ El siguiente ejemplo utiliza Char para insertar un retorno de carro en el texto
| | |
| --- | --- |
| Número de comando | 90 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
index 09ae8c107ad7a9..9fdb0130ad338d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
@@ -5,11 +5,11 @@ slug: /commands/character-code
displayed_sidebar: docs
---
-**Character code** ( *unCaracter* ) : Integer
+**Character code** ( *unCaracter* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unCaracter | Text | → | Caracter para el cual obtener el código |
+| unCaracter | Text | → | Caracter para el cual obtener el código |
| Resultado | Integer | ← | Código del caracter |
@@ -87,6 +87,6 @@ El segundo código se ejecuta más rápido por dos razones: sólo referencia un
| | |
| --- | --- |
| Número de comando | 91 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
index 0ace8440791ec9..6f65b75205672a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Puede interceptar estos errores utilizando un método de manejo de errores insta
| | |
| --- | --- |
| Número de comando | 799 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
index 7c03f9548cb1f7..52228221fe0330 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
@@ -5,12 +5,12 @@ slug: /commands/choose
displayed_sidebar: docs
---
-**Choose** ( *criterio* ; *valor* {; *valor2* ; ... ; *valorN*} ) : any
+**Choose** ( *criterio* : Boolean, Integer ; *valor* : Expression {; *...valor* : Expression} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| criterio | Boolean, Integer | → | Valor a probar |
-| valor | Expression | → | Valores posibles |
+| criterio | Boolean, Integer | → | Valor a probar |
+| valor | Expression | → | Valores posibles |
| Resultado | any | ← | Valor de criterio |
@@ -85,6 +85,6 @@ Este código es estrictamente equivalente a:
| | |
| --- | --- |
| Número de comando | 955 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
index daa464de64a5d4..8c17240929f393 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
@@ -5,12 +5,12 @@ slug: /commands/clear-list
displayed_sidebar: docs
---
-**CLEAR LIST** ( *lista* {; *} )
+**CLEAR LIST** ( *lista* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de la lista |
-| * | Operator | → | Si se especifica, si hay sublistas las borra de la memoria, Si se omite, las sublistas no son borradas |
+| lista | Integer | → | Número de referencia de la lista |
+| * | Operator | → | Si se especifica, si hay sublistas las borra de la memoria, Si se omite, las sublistas no son borradas |
@@ -59,6 +59,6 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 377 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
index 833bb7d8621b0d..9fac534776050b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/clear-named-selection
displayed_sidebar: docs
---
-**CLEAR NAMED SELECTION** ( *nombre* )
+**CLEAR NAMED SELECTION** ( *nombre* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombre | Text | → | Nombre de la selección temporal a borrar |
+| nombre | Text | → | Nombre de la selección temporal a borrar |
@@ -30,6 +30,6 @@ Si *temp* fue creado por el comando [CUT NAMED SELECTION](cut-named-selection.md
| | |
| --- | --- |
| Número de comando | 333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
index 60831609750ec5..dd067329568c24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 402 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
index 7eae4829aa6629..22033da41dd39f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/clear-semaphore
displayed_sidebar: docs
---
-**CLEAR SEMAPHORE** ( *semaforo* )
+**CLEAR SEMAPHORE** ( *semaforo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| semaforo | Text | → | Semáforo a borrar |
+| semaforo | Text | → | Semáforo a borrar |
@@ -34,6 +34,6 @@ Ver el ejemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número de comando | 144 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
index 2746c118433ad8..0c834e50434ee5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
@@ -5,11 +5,11 @@ slug: /commands/clear-set
displayed_sidebar: docs
---
-**CLEAR SET** ( *conjunto* )
+**CLEAR SET** ( *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nombre del conjunto a borrar de la memoria |
+| conjunto | Text | → | Nombre del conjunto a borrar de la memoria |
@@ -32,6 +32,6 @@ Ver el ejemplo del comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número de comando | 117 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
index a138bc30b75b56..f9c56e880cb47e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
@@ -5,11 +5,11 @@ slug: /commands/clear-variable
displayed_sidebar: docs
---
-**CLEAR VARIABLE** ( *variable* )
+**CLEAR VARIABLE** ( *variable* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable a borrar |
+| variable | Variable | → | Variable a borrar |
@@ -50,6 +50,6 @@ En un formulario, utilice una lista desplegable llamada *asMiListaDesplegable* c
| | |
| --- | --- |
| Número de comando | 89 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
index d1e077e78f948e..3a372552bf716d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Las etiquetas no son editables pero lo son después de un triple-clic. Si desea
| | |
| --- | --- |
| Número de comando | 1332 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
index b2ce697a206236..25aee79e5ef57f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
@@ -5,11 +5,11 @@ slug: /commands/close-document
displayed_sidebar: docs
---
-**CLOSE DOCUMENT** ( *docRef* )
+**CLOSE DOCUMENT** ( *docRef* : Time )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento |
+| docRef | Time | → | Número de referencia del documento |
@@ -43,6 +43,6 @@ El siguiente ejemplo permite al usuario crear un nuevo documento, escribe la cad
| | |
| --- | --- |
| Número de comando | 267 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
index bf7ea1f2b5eb4d..8e8aad73dad89e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 996 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
index 611e77c86be2a5..f11cc3def55a6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
@@ -5,11 +5,11 @@ slug: /commands/close-resource-file
displayed_sidebar: docs
---
-**CLOSE RESOURCE FILE** ( *resArchivo* )
+**CLOSE RESOURCE FILE** ( *resArchivo* : Time )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resArchivo | Time | → | Número de referencia del archivo de recursos |
+| resArchivo | Time | → | Número de referencia del archivo de recursos |
@@ -34,6 +34,6 @@ Recuerde llamar finalmente **CLOSE RESOURCE FILE** para un archivo de recursos q
| | |
| --- | --- |
| Número de comando | 498 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
index 01e847ea6ddf11..40116b0b77b3f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
@@ -5,11 +5,11 @@ slug: /commands/close-window
displayed_sidebar: docs
---
-**CLOSE WINDOW** {( *ventana* )}
+**CLOSE WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia, o Ventana del primer plano del proceso, si este parámetro se omite |
+| ventana | Integer | → | Número de referencia, o Ventana del primer plano del proceso, si este parámetro se omite |
@@ -42,6 +42,6 @@ El siguiente ejemplo abre una ventana formulario y crea nuevos registros con el
| | |
| --- | --- |
| Número de comando | 154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
index 2ad107419956c2..9b3e5c0f1f9e6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/collection-to-array
displayed_sidebar: docs
---
-**COLLECTION TO ARRAY** ( *coleccion* ; *array* {; *nombreProp*}{; *array2* ; *nombreProp2* ; ... ; *arrayN* ; *nombrePropN*} )
+**COLLECTION TO ARRAY** ( *coleccion* : Collection ; *array* : Array {; *nombreProp* : Text}{; ...(*array* : Array ; *nombreProp* : Text) } )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| coleccion | Collection | → | Colección a copiar en array(s) |
+| coleccion | Collection | → | Colección a copiar en array(s) |
| array | Array | ← | Array para recibir los elementos de la colección; si se pasó nombreProp, array para recibir los valores de nombreProp en la colección |
-| nombreProp | Text | → | Nombre de la propiedad del objeto cuyos valores copiar en array ("" para todos los elementos) |
+| nombreProp | Text | → | Nombre de la propiedad del objeto cuyos valores copiar en array ("" para todos los elementos) |
@@ -71,6 +71,6 @@ Desea copiar diferentes valores de propiedad de una colección de objetos en dif
| | |
| --- | --- |
| Número de comando | 1562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
index f2b564e0ef64e2..354ba0cea1dfeb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
@@ -5,16 +5,16 @@ slug: /commands/combine-pictures
displayed_sidebar: docs
---
-**COMBINE PICTURES** ( *imagenResult* ; *imag1* ; *operador* ; *imag2* {; *despHor* ; *despVert*} )
+**COMBINE PICTURES** ( *imagenResult* : Picture ; *imag1* : Picture ; *operador* : Integer ; *imag2* : Picture {; *despHor* : Integer ; *despVert* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| imagenResult | Picture | ← | Imagen resultante de la combinación |
-| imag1 | Picture | → | Primera imagen a combinar |
-| operador | Integer | → | Tipo de combinación a realizar |
-| imag2 | Picture | → | Segunda imagen a combinar |
-| despHor | Integer | → | Desplazamiento horizontal para la superposición |
-| despVert | Integer | → | Desplazamiento vertical para la superposición |
+| imag1 | Picture | → | Primera imagen a combinar |
+| operador | Integer | → | Tipo de combinación a realizar |
+| imag2 | Picture | → | Segunda imagen a combinar |
+| despHor | Integer | → | Desplazamiento horizontal para la superposición |
+| despVert | Integer | → | Desplazamiento vertical para la superposición |
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 987 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
index 45fb35f7de5bff..5c96588881bcce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/compact-data-file
displayed_sidebar: docs
---
-**Compact data file** ( *rutaEstructura* ; *rutaDatos* {; *carpetaArchivo* {; *opcion* {; *metodo*}}} ) : Text
+**Compact data file** ( *rutaEstructura* : Text ; *rutaDatos* : Text {; *carpetaArchivo* : Text {; *opcion* : Integer {; *metodo* : Text}}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaEstructura | Text | → | Ruta de acceso al archivo de estructura |
-| rutaDatos | Text | → | Ruta de acceso al archivo de datos |
-| carpetaArchivo | Text | → | Ruta de acceso a la carpeta donde se colocará el archivo de datos original |
-| opcion | Integer | → | Opciones de compactación |
-| metodo | Text | → | Nombre del método 4D de retrollamada |
+| rutaEstructura | Text | → | Ruta de acceso al archivo de estructura |
+| rutaDatos | Text | → | Ruta de acceso al archivo de datos |
+| carpetaArchivo | Text | → | Ruta de acceso a la carpeta donde se colocará el archivo de datos original |
+| opcion | Integer | → | Opciones de compactación |
+| metodo | Text | → | Nombre del método 4D de retrollamada |
| Resultado | Text | ← | Ruta de acceso completa de la carpeta que contiene el archivo de datos original |
@@ -76,7 +76,7 @@ Si la operación de compactación se lleva a cabo correctamente, la variable sis
| | |
| --- | --- |
| Número de comando | 937 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
index e6bb6813b83382..7ff8e07b921bd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
@@ -5,13 +5,13 @@ slug: /commands/compare-strings
displayed_sidebar: docs
---
-**Compare strings** ( *cadenaA* ; *cadenaB* {; *opciones*} ) : Integer
+**Compare strings** ( *cadenaA* : Text ; *cadenaB* : Text {; *opciones* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cadenaA | Text | → | Cadena a comparar |
-| cadenaB | Text | → | Cadena a comparar |
-| opciones | Integer | → | Regla(s) de comparación |
+| cadenaA | Text | → | Cadena a comparar |
+| cadenaB | Text | → | Cadena a comparar |
+| opciones | Integer | → | Regla(s) de comparación |
| Resultado | Integer | ← | Resultado de la comparación de las cadenas |
@@ -112,6 +112,6 @@ Los siguientes ejemplos ilustran el impacto específico de las opciones en el **
| | |
| --- | --- |
| Número de comando | 1756 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
index 7386bd13a219ed..54e76b904da66c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
@@ -5,7 +5,7 @@ slug: /commands/component-list
displayed_sidebar: docs
---
-**COMPONENT LIST** ( *arrayComponentes* )
+**COMPONENT LIST** ( *arrayComponentes* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Para mayor información sobre componentes 4D, por favor consulte el *Manual de D
| | |
| --- | --- |
| Número de comando | 1001 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
index 5be2500ed3f130..ede70efbba90df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
@@ -5,12 +5,12 @@ slug: /commands/compress-blob
displayed_sidebar: docs
---
-**COMPRESS BLOB** ( *BLOB* {; *compresion*} )
+**COMPRESS BLOB** ( *BLOB* : Blob {; *compresion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB a comprimir |
-| compresion | Integer | → | Si no se omite: 1, compresión máxima posible 2, velocidad de compresión máxima |
+| Blob | Blob | → | BLOB a comprimir |
+| compresion | Integer | → | Si no se omite: 1, compresión máxima posible 2, velocidad de compresión máxima |
@@ -96,7 +96,7 @@ La variable OK toma el valor 1 si el BLOB se comprime correctamente; de lo contr
| | |
| --- | --- |
| Número de comando | 534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
index 4a02eb065fa519..7e0622f5e9ddbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
@@ -5,13 +5,13 @@ slug: /commands/confirm
displayed_sidebar: docs
---
-**CONFIRM** ( *mensaje* {; *titulobotonOK* {; *titulobotoncancel*}} )
+**CONFIRM** ( *mensaje* : Text {; *titulobotonOK* : Text {; *titulobotoncancel* : Text}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo de confirmación |
-| titulobotonOK | Text | → | Título del botón Aceptar |
-| titulobotoncancel | Text | → | Título del botón Cancelar |
+| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo de confirmación |
+| titulobotonOK | Text | → | Título del botón Aceptar |
+| titulobotoncancel | Text | → | Título del botón Cancelar |
@@ -98,7 +98,7 @@ Mostrará la siguiente caja de diálogo de confirmación (en Windows):
| | |
| --- | --- |
| Número de comando | 162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
index 62b444139c43b9..babc98647d3113 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado con un área desplegable, le permite cambiar el valor de
| | |
| --- | --- |
| Número de comando | 713 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
index d71cea1d532a9c..081a775ccca2d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
@@ -5,16 +5,14 @@ slug: /commands/convert-coordinates
displayed_sidebar: docs
---
-**CONVERT COORDINATES** ( *coordX* ; *coordY* ; *de* ; *a* )
+**CONVERT COORDINATES** ( *coordX* : Integer ; *coordY* : Integer ; *de* : Integer ; *a* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| coordX | Integer | → | Coordenada horizontal de un punto (inicial) |
-| ← | Coordenada horizontal de un punto (convertido) |
-| coordY | Integer | → | Coordenada vertical de un punto(inicial) |
-| ← | Coordenada vertical de un punto (convertido) |
-| de | Integer | → | Sistema de coordenadas de origen |
-| a | Integer | → | Sistema de coordenadas a convertir el punto |
+| coordX | Integer | ↔ | *in:* Horizontal coordinate of a point (initial)
*out:* Horizontal coordinate of a point (converted) |
+| coordY | Integer | ↔ | *in:* Vertical coordinate of a point (initial)
*out:* Vertical coordinate of a point (converted) |
+| de | Integer | → | Sistema de coordenadas de origen |
+| a | Integer | → | Sistema de coordenadas a convertir el punto |
@@ -90,6 +88,6 @@ Usted quiere abrir una ventana emergente en la posición del cursor del ratón.
| | |
| --- | --- |
| Número de comando | 1365 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
index c86a910c489235..a0d05f8cc6f449 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-from-text
displayed_sidebar: docs
---
-**CONVERT FROM TEXT** ( *texto4D* ; *juegoCaracteres* ; *blobConvertido* )
+**CONVERT FROM TEXT** ( *texto4D* : Text ; *juegoCaracteres* : Text, Integer ; *blobConvertido* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| texto4D | Text | → | Texto expresado en el juego de caracteres actual de 4D |
-| juegoCaracteres | Text, Integer | → | Nombre o número del juego de caracteres |
+| texto4D | Text | → | Texto expresado en el juego de caracteres actual de 4D |
+| juegoCaracteres | Text, Integer | → | Nombre o número del juego de caracteres |
| blobConvertido | Blob | ← | BLOB que contiene el texto convertido |
@@ -195,7 +195,7 @@ Si el comando ha sido ejecutado correctamente, la variable OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 1011 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
index 2530657efda9e0..b973095a030d1d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-posix-to-system
displayed_sidebar: docs
---
-**Convert path POSIX to system** ( *rutaPosix* {; *} ) : Text
+**Convert path POSIX to system** ( *rutaPosix* : Text {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaPosix | Text | → | Ruta de acceso POSIX |
-| * | Operador | → | Opción de codificación |
+| rutaPosix | Text | → | Ruta de acceso POSIX |
+| * | Operador | → | Opción de codificación |
| Resultado | Text | ← | Ruta de acceso expresada en sintaxis sistema |
@@ -60,6 +60,6 @@ Ejemplos bajo Windows:
| | |
| --- | --- |
| Número de comando | 1107 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
index efa408ba56db93..044d03fc9029cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-system-to-posix
displayed_sidebar: docs
---
-**Convert path system to POSIX** ( *rutaSistema* {; *} ) : Text
+**Convert path system to POSIX** ( *rutaSistema* : Text {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaSistema | Text | → | Ruta de acceso relativa o absoluta expresada en sintaxis sistema |
-| * | Operador | → | Opción de codificación |
+| rutaSistema | Text | → | Ruta de acceso relativa o absoluta expresada en sintaxis sistema |
+| * | Operador | → | Opción de codificación |
| Resultado | Text | ← | Absolute pathname expressed in POSIX syntax |
@@ -67,6 +67,6 @@ Ejemplo bajo Windows
| | |
| --- | --- |
| Número de comando | 1106 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
index 4136adf1ab742e..af9a8062f96877 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
@@ -5,14 +5,13 @@ slug: /commands/convert-picture
displayed_sidebar: docs
---
-**CONVERT PICTURE** ( *imagen* ; *codec* {; *compresion*} )
+**CONVERT PICTURE** ( *imagen* : Picture ; *codec* : Text {; *compresion* : Real} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen a convertir |
-| ← | Imagen convertida |
-| codec | Text | → | Identificador de codec de imagen |
-| compresion | Real | → | Calidad de compresión |
+| imagen | Picture | ↔ | *in:* Picture to be converted
*out:* Converted picture |
+| codec | Text | → | Identificador de codec de imagen |
+| compresion | Real | → | Calidad de compresión |
@@ -57,6 +56,6 @@ Conversión de una imagen con calidad del 60%:
| | |
| --- | --- |
| Número de comando | 1002 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
index 5b166327b0c5f2..1e45c21a2c4557 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-to-text
displayed_sidebar: docs
---
-**Convert to text** ( *BLOB* ; *juegoCaracteres* ) : Text
+**Convert to text** ( *BLOB* : Blob ; *juegoCaracteres* : Text, Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB que contiene un texto expresado en un juego de caracteres específico |
-| juegoCaracteres | Text, Integer | → | Nombre o número de juego de caracteres de blob |
+| Blob | Blob | → | BLOB que contiene un texto expresado en un juego de caracteres específico |
+| juegoCaracteres | Text, Integer | → | Nombre o número de juego de caracteres de blob |
| Resultado | Text | ← | Contenido del BLOB expresado en el juego de caracteres 4D |
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. De lo c
| | |
| --- | --- |
| Número de comando | 1012 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
index 9bac13b233760f..6428bf741b0297 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
@@ -5,11 +5,11 @@ slug: /commands/copy-array
displayed_sidebar: docs
---
-**COPY ARRAY** ( *fuente* ; *destino* )
+**COPY ARRAY** ( *fuente* : Array ; *destino* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Array | → | Array a copiar |
+| fuente | Array | → | Array a copiar |
| destino | Array | ← | Array de destino |
@@ -41,6 +41,6 @@ El siguiente ejemplo llena el array C. Luego crea un nuevo array, llamado D, del
| | |
| --- | --- |
| Número de comando | 226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
index ea479a9603c0f1..a1e27fef88ea39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
@@ -5,15 +5,15 @@ slug: /commands/copy-blob
displayed_sidebar: docs
---
-**COPY BLOB** ( *srcBLOB* ; *dstBLOB* ; *srcOffset* ; *dstOffset* ; *numero* )
+**COPY BLOB** ( *srcBLOB* : Blob ; *dstBLOB* : Blob ; *srcOffset* : Integer ; *dstOffset* : Integer ; *numero* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| srcBlob | Blob | → | BLOB fuente |
-| dstBlob | Blob | → | BLOB de destino |
-| srcOffset | Integer | → | Posición de la fuente para la copia |
-| dstOffset | Integer | → | Posición de destino para la copia |
-| numero | Integer | → | Número de bytes a copiar |
+| srcBlob | Blob | → | BLOB fuente |
+| dstBlob | Blob | → | BLOB de destino |
+| srcOffset | Integer | → | Posición de la fuente para la copia |
+| dstOffset | Integer | → | Posición de destino para la copia |
+| numero | Integer | → | Número de bytes a copiar |
@@ -35,6 +35,6 @@ La copia comienza en la posición (expresada con relación al comienzo del BLOB
| | |
| --- | --- |
| Número de comando | 558 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
index df8cd8fc1944d9..ce7e38fcd50a99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
@@ -5,14 +5,14 @@ slug: /commands/copy-document
displayed_sidebar: docs
---
-**COPY DOCUMENT** ( *nomFuente* ; *nomDest* {; *nuevNombre*} {; *} )
+**COPY DOCUMENT** ( *nomFuente* : Text ; *nomDest* : Text {; *nuevNombre* : Text} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomFuente | Text | → | Nombre del documento a copiar |
-| nomDest | Text | → | Nombre del documento copiado |
-| nuevNombre | Text | → | Nuevo nombre del archivo o carpeta copiado |
-| * | Operador | → | Reemplazar documento existente si lo hay |
+| nomFuente | Text | → | Nombre del documento a copiar |
+| nomDest | Text | → | Nombre del documento copiado |
+| nuevNombre | Text | → | Nuevo nombre del archivo o carpeta copiado |
+| * | Operador | → | Reemplazar documento existente si lo hay |
@@ -123,7 +123,7 @@ Los siguientes ejemplos crean diferentes archivos y carpetas en la carpeta de la
| | |
| --- | --- |
| Número de comando | 541 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
index 2961318691ca41..3ccdfcd7dd24cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
@@ -5,11 +5,11 @@ slug: /commands/copy-list
displayed_sidebar: docs
---
-**Copy list** ( *lista* ) : Integer
+**Copy list** ( *lista* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de la lista a copiar |
+| lista | Integer | → | Número de referencia de la lista a copiar |
| Resultado | Integer | ← | Número de referencia de la nueva lista |
@@ -31,6 +31,6 @@ Una vez hay terminado de utilizar la nueva lista, llame a [CLEAR LIST](clear-lis
| | |
| --- | --- |
| Número de comando | 626 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
index 2ba49e8525faf7..e70b7d2c64e5ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/copy-named-selection
displayed_sidebar: docs
---
-**COPY NAMED SELECTION** ( {*tabla* ;} *nombre* )
+**COPY NAMED SELECTION** ( {*tabla* : Table ;} *nombre* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual copiar selección, o Tabla por defecto, si se omite |
-| nombre | Text | → | Nombre de la selección temporal a crear |
+| tabla | Table | → | Tabla de la cual copiar selección, o Tabla por defecto, si se omite |
+| nombre | Text | → | Nombre de la selección temporal a crear |
@@ -56,6 +56,6 @@ El siguiente ejemplo permite verificar si hay otras facturas vencidas en la tabl
| | |
| --- | --- |
| Número de comando | 331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
index d76f0e84dcb218..ed5242da66d89e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
@@ -5,11 +5,11 @@ slug: /commands/copy-parameters
displayed_sidebar: docs
---
-**Copy parameters** {( *inicioDesde* )} : Collection
+**Copy parameters** ( *inicioDesde* : Integer ) : Collection
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| inicioDesde | Integer | → | Índice de inicio(incluido) |
+| inicioDesde | Integer | → | Índice de inicio(incluido) |
| Resultado | Collection | ← | Nueva colección que contiene los parámetros pasados realmente |
@@ -86,6 +86,6 @@ Como el comando devuelve una colección, se puede utilizar con **.join()** para
| | |
| --- | --- |
| Número de comando | 1790 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
index a00c0b60722746..3cb27ccb4dfa9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
@@ -5,12 +5,12 @@ slug: /commands/copy-set
displayed_sidebar: docs
---
-**COPY SET** ( *srcCon* ; *dstCon* )
+**COPY SET** ( *srcCon* : Text ; *dstCon* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| srcCon | Text | → | Nombre del conjunto fuente |
-| dstCon | Text | → | Nombre del conjunto de destino |
+| srcCon | Text | → | Nombre del conjunto fuente |
+| dstCon | Text | → | Nombre del conjunto de destino |
@@ -45,6 +45,6 @@ El siguiente ejemplo en Cliente/Servidor, copia el conjunto proceso "ConjuntoA",
| | |
| --- | --- |
| Número de comando | 600 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
index ffb2b1ebf99882..99005de0df9efd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
@@ -5,11 +5,11 @@ slug: /commands/cos
displayed_sidebar: docs
---
-**Cos** ( *Numero* ) : Real
+**Cos** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número, en radianes, cuyo coseno se devuelve |
+| Numero | Real | → | Número, en radianes, cuyo coseno se devuelve |
| Resultado | Real | ← | Coseno del número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 18 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
index 9f91b2125df7c5..124ea6d7b6c489 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
@@ -5,12 +5,12 @@ slug: /commands/count-in-array
displayed_sidebar: docs
---
-**Count in array** ( *array* ; *valor* ) : Integer
+**Count in array** ( *array* : Array ; *valor* : Expression ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array donde efectuar el conteo |
-| valor | Expression | → | Valor a contar |
+| array | Array | → | Array donde efectuar el conteo |
+| valor | Expression | → | Valor a contar |
| Resultado | Integer | ← | Número de ocurrencias encontradas |
@@ -63,6 +63,6 @@ Desea contar las referencias a objetos en un array objeto:
| | |
| --- | --- |
| Número de comando | 907 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
index 5660a095ce683d..f3a7612f6e7b8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
@@ -5,13 +5,13 @@ slug: /commands/count-list-items
displayed_sidebar: docs
---
-**Count list items** ( {* ;} *lista* {; *} ) : Integer
+**Count list items** ( {* ;} *lista* : Integer, Text {; *} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| * | Operador | → | Si se omite (por defecto): Devuelve los elementos visibles (desplegados) de la lista Si se especifica: Devuelve todos los elementos de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| * | Operador | → | Si se omite (por defecto): Devuelve los elementos visibles (desplegados) de la lista Si se especifica: Devuelve todos los elementos de la lista |
| Resultado | Integer | ← | Número de elementos visibles de la lista (desplegados) (si se omite el segundo *) o número total de elementos de la lista (si se presenta el segundo *) |
@@ -66,6 +66,6 @@ Acá tenemos una lista llamada *hList* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 380 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
index 567e73212ac25b..672e23317f34cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
@@ -5,12 +5,12 @@ slug: /commands/count-menu-items
displayed_sidebar: docs
---
-**Count menu items** ( *menu* {; *proceso*} ) : Integer
+**Count menu items** ( *menu* : Integer, Text {; *proceso* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Número de menú |
+| proceso | Integer | → | Número de referencia del proceso |
| Resultado | Integer | ← | Número de líneas de menú en el menú |
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Count menu items se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 405 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
index 6b10c46d042d3f..210e370fec52e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
@@ -5,11 +5,11 @@ slug: /commands/count-menus
displayed_sidebar: docs
---
-**Count menus** {( *proceso* )} : Integer
+**Count menus** ( *proceso* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de referencia de proceso |
+| proceso | Integer | → | Número de referencia de proceso |
| Resultado | Integer | ← | Número de menús de la barra de menús actual |
@@ -29,7 +29,7 @@ Si omite el parámetro *proceso*, Count menus se aplica a la barra de menús del
| | |
| --- | --- |
| Número de comando | 404 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
index 20e3ff485e06fe..d09a90bde0a728 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ o:
| | |
| --- | --- |
| Número de comando | 259 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
index 530f8f55c36402..9d8f9d4da63c7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 437 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
index 23829a8f3a522e..fc14c9f916ffef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver el ejemplo para [Process state](process-state.md "Process state") y [On Exit
| | |
| --- | --- |
| Número de comando | 335 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
index 7eeb49d4530a37..9bf34d5577affb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 343 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
index c2127b764d0249..4aaed29592c596 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Cuando se ejecuta en una aplicación 4D monousuario, **Count users** devuelve 1.
| | |
| --- | --- |
| Número de comando | 342 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
index dccf00bd43e899..d77e232a41f588 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
@@ -5,12 +5,12 @@ slug: /commands/create-alias
displayed_sidebar: docs
---
-**CREATE ALIAS** ( *rutaObjetivo* ; *rutaAlias* )
+**CREATE ALIAS** ( *rutaObjetivo* : Text ; *rutaAlias* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaObjetivo | Text | → | Nombre o ruta de acceso al objetivo del alias/atajo |
-| rutaAlias | Text | → | Nombre o ruta de acceso completa del alias/del atajo a crear |
+| rutaObjetivo | Text | → | Nombre o ruta de acceso al objetivo del alias/atajo |
+| rutaAlias | Text | → | Nombre o ruta de acceso completa del alias/del atajo a crear |
@@ -73,7 +73,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, s
| | |
| --- | --- |
| Número de comando | 694 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
index be0289a8df7b59..c82091f659f366 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/create-data-file
displayed_sidebar: docs
---
-**CREATE DATA FILE** ( *rutaAcceso* )
+**CREATE DATA FILE** ( *rutaAcceso* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaAcceso | Text | → | Nombre o ruta de acceso completa del archivo de datos a abrir |
+| rutaAcceso | Text | → | Nombre o ruta de acceso completa del archivo de datos a abrir |
@@ -32,6 +32,6 @@ Antes de lanzar la operación, el comando verifica que la ruta de acceso no corr
| | |
| --- | --- |
| Número de comando | 313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
index 48602e7687cfa8..faade3b0ae9275 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
@@ -5,12 +5,12 @@ slug: /commands/create-document
displayed_sidebar: docs
---
-**Create document** ( *doc* {; *tipo*} ) : Time
+**Create document** ( *doc* : Text {; *tipo* : Text} ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento o Ruta de acceso completa del documento o Cadena vacía para mostrar caja de diálogo estándar de guardar archivos |
-| tipo | Text | → | Lista de los tipos de documentos a filtrar o "*" para no filtrar los documentos |
+| doc | Text | → | Nombre del documento o Ruta de acceso completa del documento o Cadena vacía para mostrar caja de diálogo estándar de guardar archivos |
+| tipo | Text | → | Lista de los tipos de documentos a filtrar o "*" para no filtrar los documentos |
| Resultado | Time | ← | Número de referencia del documento |
@@ -78,7 +78,7 @@ Si el documento se crea correctamente, la variable sistema OK toma el valor 1 y
| | |
| --- | --- |
| Número de comando | 266 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
index 77b65a02142f92..60ca7a5e9b8895 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-empty-set
displayed_sidebar: docs
---
-**CREATE EMPTY SET** ( {*tabla* ;} *conjunto* )
+**CREATE EMPTY SET** ( {*tabla* : Table ;} *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual crear un conjunto vacío o Tabla por defecto si se omite |
-| conjunto | Text | → | Nombre del nuevo conjunto vacío |
+| tabla | Table | → | Tabla para la cual crear un conjunto vacío o Tabla por defecto si se omite |
+| conjunto | Text | → | Nombre del nuevo conjunto vacío |
@@ -34,6 +34,6 @@ Consulte el ejemplo de la sección *Conjuntos*.
| | |
| --- | --- |
| Número de comando | 140 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
index 5adf465123b816..b110fd961c92ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
@@ -5,12 +5,12 @@ slug: /commands/create-folder
displayed_sidebar: docs
---
-**CREATE FOLDER** ( *rutaCarpeta* {; *Operador*} )
+**CREATE FOLDER** ( *rutaCarpeta* : Text {; *Operador*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaCarpeta | Text | → | Ruta de acceso a la nueva carpeta a crear |
-| * | * | → | Crear carpeta jerárquica |
+| rutaCarpeta | Text | → | Ruta de acceso a la nueva carpeta a crear |
+| * | * | → | Crear carpeta jerárquica |
@@ -77,7 +77,7 @@ Creación de la subcarpeta "\\Febrero\\" en la carpeta existente "C:\\Archives\\
| | |
| --- | --- |
| Número de comando | 475 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
index b7bf33c4ef2fc4..bca029c15099b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
@@ -5,15 +5,15 @@ slug: /commands/create-index
displayed_sidebar: docs
---
-**CREATE INDEX** ( *tabla* ; *arrayCampos* ; *tipoIndice* ; *nombreIndice* {; *} )
+**CREATE INDEX** ( *tabla* : Table ; *arrayCampos* : Pointer array ; *tipoIndice* : Integer ; *nombreIndice* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual crear un índice |
-| arrayCampos | Pointer array | → | Puntero(s) a el/los campo(s) a indexar |
-| tipoIndice | Integer | → | Tipo de índice a crear: -1 = Palabras claves, 0 = por defecto, 1 = B-Tree estándar, 3 = B-Tree cluster |
-| nombreIndice | Text | → | Nombre del índice a crear |
-| * | Operador | → | Si pasa = indexación asincrónica |
+| tabla | Table | → | Tabla para la cual crear un índice |
+| arrayCampos | Pointer array | → | Puntero(s) a el/los campo(s) a indexar |
+| tipoIndice | Integer | → | Tipo de índice a crear: -1 = Palabras claves, 0 = por defecto, 1 = B-Tree estándar, 3 = B-Tree cluster |
+| nombreIndice | Text | → | Nombre del índice a crear |
+| * | Operador | → | Si pasa = indexación asincrónica |
@@ -93,6 +93,6 @@ Creación de un índice compuesto en los campos “Ciudad” y “CodigoPostal
| | |
| --- | --- |
| Número de comando | 966 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
index 914063e30b6598..14f4c265bd6d40 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
@@ -5,11 +5,11 @@ slug: /commands/create-menu
displayed_sidebar: docs
---
-**Create menu** {( *menu* )} : Text
+**Create menu** ( *menu* : Text, Integer, Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Text, Integer, Text | → | Referencia del menú o Número o nombre de barra de menús |
+| menu | Text, Integer, Text | → | Referencia del menú o Número o nombre de barra de menús |
| Resultado | Text | ← | Referencia del menú |
@@ -46,6 +46,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
index 9277786ee6ebe6..9baa6f0bedc36d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
@@ -5,11 +5,11 @@ slug: /commands/create-record
displayed_sidebar: docs
---
-**CREATE RECORD** {( *tabla* )}
+**CREATE RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual crear un nuevo registro, o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla para la cual crear un nuevo registro, o Tabla por defecto, si se omite |
@@ -52,7 +52,7 @@ El siguiente ejemplo archiva los registros que tienen más de 30 días. Esta ope
| | |
| --- | --- |
| Número de comando | 68 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
index d03f37621102d3..a219680f235340 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/create-related-one
displayed_sidebar: docs
---
-**CREATE RELATED ONE** ( *campo* )
+**CREATE RELATED ONE** ( *campo* : Field )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo Muchos |
+| campo | Field | → | Campo Muchos |
@@ -30,6 +30,6 @@ Si ya existe un registro relacionado, CREATE RELATED ONE actúa como [RELATE ONE
| | |
| --- | --- |
| Número de comando | 65 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
index f67427a197a904..c689236051d999 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-selection-from-array
displayed_sidebar: docs
---
-**CREATE SELECTION FROM ARRAY** ( *tabla* ; *regArray* {; *temp*} )
+**CREATE SELECTION FROM ARRAY** ( *tabla* : Table ; *regArray* : Integer, Boolean array {; *temp* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual crear la selección |
-| regArray | Integer, Boolean array | → | Array de números de registros, o Array de booleanos (True = el registro está en la selección, False = el registro no está en la selección) |
-| temp | Text | → | Nombre de la selección temporal a crear, o Aplicar el comando a la selección actual si el parámetro se omite |
+| tabla | Table | → | Tabla de la cual crear la selección |
+| regArray | Integer, Boolean array | → | Array de números de registros, o Array de booleanos (True = el registro está en la selección, False = el registro no está en la selección) |
+| temp | Text | → | Nombre de la selección temporal a crear, o Aplicar el comando a la selección actual si el parámetro se omite |
@@ -54,7 +54,7 @@ Si un número de registro no es válido (registro no creado), se genera el error
| | |
| --- | --- |
| Número de comando | 640 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
index 163ea797f27b8a..f84369e80c7105 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-set-from-array
displayed_sidebar: docs
---
-**CREATE SET FROM ARRAY** ( *tabla* ; *arrayReg* {; *nomConjunto*} )
+**CREATE SET FROM ARRAY** ( *tabla* : Table ; *arrayReg* : Integer, Boolean array {; *nomConjunto* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del conjunto |
-| arrayReg | Integer, Boolean array | → | Array de número de registros o Array de booleanos (True = el registro está en el conjunto, False = el registro no está en el conjunto) |
-| nomConjunto | Text | → | Nombre del conjunto a crear o Aplicar el comando a Userset si se omite |
+| tabla | Table | → | Tabla del conjunto |
+| arrayReg | Integer, Boolean array | → | Array de número de registros o Array de booleanos (True = el registro está en el conjunto, False = el registro no está en el conjunto) |
+| nomConjunto | Text | → | Nombre del conjunto a crear o Aplicar el comando a Userset si se omite |
@@ -44,7 +44,7 @@ En un array de enteros largos, si un número de registro no es válido (registro
| | |
| --- | --- |
| Número de comando | 641 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
index b4729b89a87b0c..04734dfd1be316 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-set
displayed_sidebar: docs
---
-**CREATE SET** ( {*tabla* ;} *conjunto* )
+**CREATE SET** ( {*tabla* : Table ;} *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual crear un conjunto a partir de la selección actual o Tabla por defecto si se omite |
-| conjunto | Text | → | Nombre del nuevo conjunto |
+| tabla | Table | → | Tabla para la cual crear un conjunto a partir de la selección actual o Tabla por defecto si se omite |
+| conjunto | Text | → | Nombre del nuevo conjunto |
@@ -38,6 +38,6 @@ El siguiente ejemplo crea un conjunto después de efectuar una búsqueda, de man
| | |
| --- | --- |
| Número de comando | 116 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
index 7c47d1879e0a3e..7115ace4a73586 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
@@ -5,16 +5,16 @@ slug: /commands/create-thumbnail
displayed_sidebar: docs
---
-**CREATE THUMBNAIL** ( *fuente* ; *dest* {; *ancho* {; *altura* {; *modo* {; *profundidad*}}}} )
+**CREATE THUMBNAIL** ( *fuente* : Picture ; *dest* : Picture {; *ancho* : Integer {; *altura* : Integer {; *modo* : Integer {; *profundidad* : Integer}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Picture | → | Campo o variable imagen 4D a convertir en miniatura |
+| fuente | Picture | → | Campo o variable imagen 4D a convertir en miniatura |
| dest | Picture | ← | Miniatura resultante |
-| ancho | Integer | → | Largo de la miniatura en píxeles, Valor por defecto = 48 |
-| altura | Integer | → | Alto de la miniatura en píxeles, Valor por defecto = 48 |
-| modo | Integer | → | Modo de creación de la miniatura Valor por defecto = Proporcional centrado (6) |
-| profundidad | Integer | → | Colores de la miniatura en bits/píxeles Valor por defecto = Profundidad de pantalla actual (0) |
+| ancho | Integer | → | Largo de la miniatura en píxeles, Valor por defecto = 48 |
+| altura | Integer | → | Alto de la miniatura en píxeles, Valor por defecto = 48 |
+| modo | Integer | → | Modo de creación de la miniatura Valor por defecto = Proporcional centrado (6) |
+| profundidad | Integer | → | Colores de la miniatura en bits/píxeles Valor por defecto = Profundidad de pantalla actual (0) |
@@ -64,6 +64,6 @@ El parámetro opcional *profundidad* define el número de colores bajo Mac OS (e
| | |
| --- | --- |
| Número de comando | 679 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
index ae43fb9b08248f..a2fe71547c8541 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
@@ -5,7 +5,7 @@ slug: /commands/current-client-authentication
displayed_sidebar: docs
---
-**Current client authentication** {( *dominio* ; *protocolo* )} : Text
+**Current client authentication** ( *dominio* : Text ; *protocolo* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -75,6 +75,6 @@ Con esta configuración, no se muestra un diálogo de contraseña para un 4D rem
| | |
| --- | --- |
| Número de comando | 1355 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
index d660abff0b4637..cf236990bfbce0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
@@ -5,11 +5,11 @@ slug: /commands/current-date
displayed_sidebar: docs
---
-**Current date** {( * )} : Date
+**Current date** ( * ) : Date
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve la fecha actual del servidor |
+| * | Operador | → | Devuelve la fecha actual del servidor |
| Resultado | Date | ← | Fecha actual |
@@ -103,6 +103,6 @@ El siguiente método de proyecto permite hacerlo:
| | |
| --- | --- |
| Número de comando | 33 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
index a0d3b008abfbe0..08bef9601e0390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Siempre y cuando se haya definido una tabla por defecto, la siguiente línea de
| | |
| --- | --- |
| Número de comando | 363 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
index 98c3eec980bd4f..843878234a9d0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Usted quiere obtener el formulario actual si éste es un formulario proyecto:
| | |
| --- | --- |
| Número de comando | 1298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
index f4ee0246fe08e7..956fd93951912b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
@@ -69,6 +69,6 @@ Para esto, utilice el método de objeto para crear la variable *vsCurrentRecord*
| | |
| --- | --- |
| Número de comando | 627 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
index d21998b4c000c5..3bb794336f5270 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La ventana del formulario actual puede ser generada automáticamente por un coma
| | |
| --- | --- |
| Número de comando | 827 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
index 2c06f3477c72e9..432c618ccb31e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Incluso si no está corriendo la versión cliente/servidor de 4D, su aplicación
| | |
| --- | --- |
| Número de comando | 483 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
index 21f9b568243ef1..1717c8eb9df455 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Este comando no puede llamarse desde una fórmula 4D.
| | |
| --- | --- |
| Número de comando | 684 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
index 580f7954000da8..5f13043b421c12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1201 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
index 8f2216cd2ec602..b0e2e50f6f45e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Quiere llamar a un proceso worker y pasar el nombre del proceso de llamada como
| | |
| --- | --- |
| Número de comando | 1392 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
index f4186e02e094ef..a5756542bec159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver los ejemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") y [PROCESS
| | |
| --- | --- |
| Número de comando | 322 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
index a33a0654cbb402..72adbd9d118ebf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [Current machine](current-machine.md "Current machine
| | |
| --- | --- |
| Número de comando | 484 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
index adee6ab35e9183..2f47d0344015dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
@@ -5,11 +5,11 @@ slug: /commands/current-time
displayed_sidebar: docs
---
-**Current time** {( * )} : Time
+**Current time** ( * ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve la hora actual del servidor |
+| * | Operador | → | Devuelve la hora actual del servidor |
| Resultado | Time | ← | Hora actual |
@@ -55,6 +55,6 @@ El siguiente ejemplo extrae las horas, minutos y segundos de la hora actual:
| | |
| --- | --- |
| Número de comando | 178 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
index 3fdc4e55c0300d..c0ebde9a3b3d22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
@@ -5,11 +5,11 @@ slug: /commands/current-user
displayed_sidebar: docs
---
-**Current user** {( *usuario* )} : Text
+**Current user** ( *usuario* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| usuario | Integer | → | Alias de usuario o cuenta de usuario 4D |
+| usuario | Integer | → | Alias de usuario o cuenta de usuario 4D |
| Resultado | Text | ← | Nombre del usuario actual |
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [User in group](user-in-group.md "User in group").
| | |
| --- | --- |
| Número de comando | 182 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
index 64fcd0ac9d726a..12301a67860953 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/cut-named-selection
displayed_sidebar: docs
---
-**CUT NAMED SELECTION** ( {*tabla* ;} *nombre* )
+**CUT NAMED SELECTION** ( {*tabla* : Table ;} *nombre* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual cortar selección, o Tabla por defecto, si se omite |
-| nombre | Text | → | Nombre de la selección temporal a crear |
+| tabla | Table | → | Tabla de la cual cortar selección, o Tabla por defecto, si se omite |
+| nombre | Text | → | Nombre de la selección temporal a crear |
@@ -42,7 +42,7 @@ El método siguiente vacía la selección actual de una tabla *\[Clientes\]*:
| | |
| --- | --- |
| Número de comando | 334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
index a9976e75e3968b..c7a2aa70674704 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaEstruct | Text | → | Nombre de ruta del archivo de estructura 4D a verificar |
-| rutaDatos | Text | → | Nombre de ruta del archivo de datos 4D a verificar |
+| rutaEstruct | Text | → | Nombre de ruta del archivo de estructura 4D a verificar |
+| rutaDatos | Text | → | Nombre de ruta del archivo de datos 4D a verificar |
| Resultado | Object | ← | Información sobre el cifrado del archivo de datos y de cada tabla |
@@ -74,6 +74,6 @@ Desea conocer el estado de cifrado de un archivo de datos que corresponde al arc
| | |
| --- | --- |
| Número de comando | 1609 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
index afd6f6e5b42b0c..6d68c3e970cf85 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
@@ -5,11 +5,11 @@ slug: /commands/data-file
displayed_sidebar: docs
---
-**Data file** {( *segmento* )} : Text
+**Data file** ( *segmento* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| segmento | Integer | → | Obsoleto, no utilizar |
+| segmento | Integer | → | Obsoleto, no utilizar |
| Resultado | Text | ← | Nombre largo del archivo de datos de la base |
@@ -38,6 +38,6 @@ Si está trabajando por ejemplo con la base en la carpeta Documentos:MisCDsƒ: e
| | |
| --- | --- |
| Número de comando | 490 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
index 251d12c4cf879b..6e716161e01bb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
@@ -5,11 +5,11 @@ slug: /commands/database-measures
displayed_sidebar: docs
---
-**Database measures** {( *opciones* )} : Object
+**Database measures** ( *opciones* : Object ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opciones | Object | → | Opciones de retorno |
+| opciones | Object | → | Opciones de retorno |
| Resultado | Object | ← | Objeto que contiene las medidas de la base |
@@ -337,6 +337,6 @@ Queremos obtener las medidas de bytes de caché en los últimos dos minutos:
| | |
| --- | --- |
| Número de comando | 1314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md
index 8868c915b2ef0e..2085195b3edaab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/date.md
@@ -5,11 +5,11 @@ slug: /commands/date
displayed_sidebar: docs
---
-**Date** ( *expresion* ) : Date
+**Date** ( *expresion* : Text, Date ) : Date
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresion | Text, Date | → | Cadena que contiene la fecha a devolver |
+| expresion | Text, Date | → | Cadena que contiene la fecha a devolver |
| Resultado | Date | ← | Fecha |
@@ -100,6 +100,6 @@ Usted desea obtener una fecha de un atributo objeto, sea cual sea la opción de
| | |
| --- | --- |
| Número de comando | 102 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
index be7c37e454c480..283b97ad53dd1d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
@@ -5,11 +5,11 @@ slug: /commands/day-number
displayed_sidebar: docs
---
-**Day number** ( *fecha* ) : Integer
+**Day number** ( *fecha* : Date ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fecha | Date | → | Fecha para la cual devolver el número del día |
+| fecha | Date | → | Fecha para la cual devolver el número del día |
| Resultado | Integer | ← | Número que representa el día de la semana que corresponde a la fecha |
@@ -65,6 +65,6 @@ El siguiente ejemplo es una función que devuelve el día actual como una cadena
| | |
| --- | --- |
| Número de comando | 114 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
index 89876a0d2412e9..463998aebd7320 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
@@ -5,11 +5,11 @@ slug: /commands/day-of
displayed_sidebar: docs
---
-**Day of** ( *fecha* ) : Integer
+**Day of** ( *fecha* : Date ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fecha | Date | → | Fecha para la cual devolver el día |
+| fecha | Date | → | Fecha para la cual devolver el día |
| Resultado | Integer | ← | Día del mes de la fecha |
@@ -42,6 +42,6 @@ Ver el ejemplo para el comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 23 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
index 0392ae896d7ecc..1c567ab9614a61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Deactivated**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 347 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
index 63872453cc4e31..62c99e598d264c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
@@ -5,11 +5,11 @@ slug: /commands/dec
displayed_sidebar: docs
---
-**Dec** ( *Numero* ) : Real
+**Dec** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número cuya parte decimal se devuelve |
+| Numero | Real | → | Número cuya parte decimal se devuelve |
| Resultado | Real | ← | Parte decimal de número |
@@ -36,6 +36,6 @@ El siguiente ejemplo utiliza un valor monetario expresado como un número real,
| | |
| --- | --- |
| Número de comando | 9 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
index 967aaba15a72f8..6fd233c7aef6e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/decrypt-blob
displayed_sidebar: docs
---
-**DECRYPT BLOB** ( *aDescifrar* ; *enviarLlavePub* {; *recepLlavePriv*} )
+**DECRYPT BLOB** ( *aDescifrar* : Blob ; *enviarLlavePub* : Blob {; *recepLlavePriv* : Blob} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aDescifrar | Blob | ↔ | Datos a descifrar |
-| || | Datos descifrados |
-| enviarLlavePub | Blob | → | Llave pública del emisor |
-| recepLlavePriv | Blob | → | Llave privada del receptor |
+| aDescifrar | Blob | ↔ | Datos a descifrar |
+| | | | Datos descifrados |
+| enviarLlavePub | Blob | → | Llave pública del emisor |
+| recepLlavePriv | Blob | → | Llave privada del receptor |
@@ -40,6 +40,6 @@ Consulte los ejemplos dados por el comando [ENCRYPT BLOB](encrypt-blob.md "ENCRY
| | |
| --- | --- |
| Número de comando | 690 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
index d2192d257a7340..ade88aab023f18 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/decrypt-data-blob
displayed_sidebar: docs
---
-**Decrypt data BLOB** ( *blobADescifrar* ; objetoLlave | frasePasar ; *sal* ; *blobDescifrado* ) : Boolean
+**Decrypt data BLOB** ( *blobADescifrar* : Blob ; objetoLlave | frasePasar ; *sal* : Integer ; *blobDescifrado* : Blob ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| blobADescifrar | Blob | → | BLOB a descifrar |
-| objetoLlave | frasePasar | Objeto, Texto | → | Objeto JSON que contiene la llave de cifrado o la frase de paso para la generación directa de la llave de cifrado (texto) |
-| sal | Integer | → | Sal adicional para el algoritmo |
+| blobADescifrar | Blob | → | BLOB a descifrar |
+| objetoLlave | frasePasar | Objeto, Texto | → | Objeto JSON que contiene la llave de cifrado o la frase de paso para la generación directa de la llave de cifrado (texto) |
+| sal | Integer | → | Sal adicional para el algoritmo |
| blobDescifrado | Blob | ← | BLOB descifrado |
| Resultado | Boolean | ← | True si la desencriptación se ha realizado correctamente, False en caso contrario |
@@ -64,6 +64,6 @@ La *frasePasar* y la *sal* utilizadas para el descifrado son idénticas a la *fr
| | |
| --- | --- |
| Número de comando | 1774 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
index edd5c9f36e2624..38ce1fe7ce4ae9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
@@ -5,11 +5,11 @@ slug: /commands/default-table
displayed_sidebar: docs
---
-**DEFAULT TABLE** ( *tabla* )
+**DEFAULT TABLE** ( *tabla* : Table )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a definir como tabla por defecto |
+| tabla | Table | → | Tabla a definir como tabla por defecto |
@@ -82,6 +82,6 @@ En este código se especifica el resultado de la tabla por defecto:
| | |
| --- | --- |
| Número de comando | 46 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
index 9ed72c2d3d968a..087b58cefcc1e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
@@ -5,12 +5,12 @@ slug: /commands/delay-process
displayed_sidebar: docs
---
-**DELAY PROCESS** ( *proceso* ; *duracion* )
+**DELAY PROCESS** ( *proceso* : Integer ; *duracion* : Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso |
-| duracion | Real | → | Duración expresada en tics |
+| proceso | Integer | → | Número de proceso |
+| duracion | Real | → | Duración expresada en tics |
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Process Number](process-number.md "Process Number").
| | |
| --- | --- |
| Número de comando | 323 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
index 4ace745f75d86c..7b5b940d7a93b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
@@ -5,11 +5,11 @@ slug: /commands/delete-document
displayed_sidebar: docs
---
-**DELETE DOCUMENT** ( *doc* )
+**DELETE DOCUMENT** ( *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento |
+| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento |
@@ -53,7 +53,7 @@ La eliminación de un documento hace que la variable sistema tome el valor 1\. S
| | |
| --- | --- |
| Número de comando | 159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
index 3288b0b1fd6f93..ce4622432546ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
@@ -5,12 +5,12 @@ slug: /commands/delete-folder
displayed_sidebar: docs
---
-**DELETE FOLDER** ( *carpeta* {; *opcionEliminacion*} )
+**DELETE FOLDER** ( *carpeta* : Text {; *opcionEliminacion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| carpeta | Text | → | Nombre o ruta de acceso completa de la carpeta a borrar |
-| opcionEliminacion | Integer | → | Opción de eliminación de la carpeta |
+| carpeta | Text | → | Nombre o ruta de acceso completa de la carpeta a borrar |
+| opcionEliminacion | Integer | → | Opción de eliminación de la carpeta |
@@ -48,7 +48,7 @@ Puede interceptar estos errores utilizando un método instalado por el comando [
| | |
| --- | --- |
| Número de comando | 693 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
index 8cf6610949c949..f6d1054dee8f51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-array
displayed_sidebar: docs
---
-**DELETE FROM ARRAY** ( *array* ; *posicion* {; *reemplazos*} )
+**DELETE FROM ARRAY** ( *array* : Array ; *posicion* : Integer {; *reemplazos* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array del cual borrar elementos |
-| posicion | Integer | → | Elemento donde comienza la supresión |
-| reemplazos | Integer | → | Número de elementos a borrar, o 1 elemento si se omite |
+| array | Array | → | Array del cual borrar elementos |
+| posicion | Integer | → | Elemento donde comienza la supresión |
+| reemplazos | Integer | → | Número de elementos a borrar, o 1 elemento si se omite |
@@ -50,6 +50,6 @@ El siguiente ejemplo borra el último elemento de un array, si existe:
| | |
| --- | --- |
| Número de comando | 228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
index 90ebfb9a136363..389dc03032b970 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-blob
displayed_sidebar: docs
---
-**DELETE FROM BLOB** ( *BLOB* ; *offset* ; *numero* )
+**DELETE FROM BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *numero* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB del cual borrar los bytes |
-| offset | Integer | → | Offset a partir del cual borrar los bytes |
-| numero | Integer | → | Número de bytes a borrar |
+| Blob | Blob | → | BLOB del cual borrar los bytes |
+| offset | Integer | → | Offset a partir del cual borrar los bytes |
+| numero | Integer | → | Número de bytes a borrar |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 560 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
index 61856026b429ef..0ca5e5ff189eae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
@@ -5,14 +5,14 @@ slug: /commands/delete-from-list
displayed_sidebar: docs
---
-**DELETE FROM LIST** ( {* ;} *lista* ; refElem | * {; *} )
+**DELETE FROM LIST** ( * ; *list* : Text ; *itemRef* : Integer, Operator {; *} )
**DELETE FROM LIST** ( *list* : Integer ; *itemRef* : Integer, Operator {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Entero largo, Operador | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista o * para el elemento de la lista actualmente seleccionada |
-| * | Operator | → | Si se especifica, borra las sublistas (si la hay) de la memoria Si se omite, las sublistas (si las hay) no son borradas |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Entero largo, Operador | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista o * para el elemento de la lista actualmente seleccionada |
+| * | Operator | → | Si se especifica, borra las sublistas (si la hay) de la memoria Si se omite, las sublistas (si las hay) no son borradas |
@@ -48,6 +48,6 @@ El siguiente código borra el elemento seleccionado de la lista *hList*. Si el e
| | |
| --- | --- |
| Número de comando | 624 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
index 5ec0d368e4e6ca..d73e65f1741f01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
@@ -5,12 +5,12 @@ slug: /commands/delete-index
displayed_sidebar: docs
---
-**DELETE INDEX** ( *Ptrcamp* {; *} )
**DELETE INDEX** ( *nomIndex* {; *} )
+**DELETE INDEX** ( *Ptrcamp* : Puntero, Cadena {; *} )
**DELETE INDEX** ( *nomIndex* : Puntero, Cadena {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Ptrcamp | nomIndex | Puntero, Cadena | → | Puntero al campo del cual borrar los índices o Nombre del índice a borrar |
-| * | Operador | → | Si se pasa = operación asincrónica |
+| Ptrcamp | nomIndex | Puntero, Cadena | → | Puntero al campo del cual borrar los índices o Nombre del índice a borrar |
+| * | Operador | → | Si se pasa = operación asincrónica |
@@ -52,6 +52,6 @@ Este ejemplo ilustra las dos sintaxis del comando:
| | |
| --- | --- |
| Número de comando | 967 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
index 05eb14dfb5eac2..d4a33fe1968b3d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/delete-menu-item
displayed_sidebar: docs
---
-**DELETE MENU ITEM** ( *menu* ; *lineamenu* {; *proceso*} )
+**DELETE MENU ITEM** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia de proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia de proceso |
@@ -39,7 +39,7 @@ Si omite el parámetro *proceso*, DELETE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 413 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
index b551f0432c216b..551134c4131ccd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
@@ -5,11 +5,11 @@ slug: /commands/delete-record
displayed_sidebar: docs
---
-**DELETE RECORD** {( *tabla* )}
+**DELETE RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual borrar el registro actual, o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual borrar el registro actual, o Tabla por defecto, si se omite |
@@ -48,7 +48,7 @@ El siguiente ejemplo borra un registro de un empleado. El código pregunta al us
| | |
| --- | --- |
| Número de comando | 58 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
index 1d5854543f6577..e0afb6a7868cc1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
@@ -5,11 +5,11 @@ slug: /commands/delete-selection
displayed_sidebar: docs
---
-**DELETE SELECTION** {( *tabla* )}
+**DELETE SELECTION** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual borrar la selección actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual borrar la selección actual o Tabla por defecto, si se omite |
@@ -70,7 +70,7 @@ Si se encuentra un registro bloqueado durante la ejecución de DELETE SELECTION,
| | |
| --- | --- |
| Número de comando | 66 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
index 2ab5bae0deb9cc..ec1457e91fb6b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
@@ -5,13 +5,13 @@ slug: /commands/delete-string
displayed_sidebar: docs
---
-**Delete string** ( *fuente* ; *posicion* ; *numCaracteres* ) : Text
+**Delete string** ( *fuente* : Text ; *posicion* : Integer ; *numCaracteres* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Text | → | Cadena de la cual borrar caracteres |
-| posicion | Integer | → | Primer caracter a borrar |
-| numCaracteres | Integer | → | Número de caracteres a borrar |
+| fuente | Text | → | Cadena de la cual borrar caracteres |
+| posicion | Integer | → | Primer caracter a borrar |
+| numCaracteres | Integer | → | Número de caracteres a borrar |
| Resultado | Text | ← | Cadena resultante |
@@ -51,6 +51,6 @@ El siguiente ejemplo ilustra el uso de Delete string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
index f92281488acf5a..b88d4489faa20f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
@@ -5,11 +5,11 @@ slug: /commands/delete-user
displayed_sidebar: docs
---
-**DELETE USER** ( *refUsuario* )
+**DELETE USER** ( *refUsuario* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de identificación del usuario a borrar |
+| refUsuario | Integer | → | Número de identificación del usuario a borrar |
@@ -39,7 +39,7 @@ Si no tiene los privilegios de acceso para llamar DELETE USER o si otro proceso
| | |
| --- | --- |
| Número de comando | 615 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
index fa891e104a0560..e2902c666f8429 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
@@ -5,11 +5,11 @@ slug: /commands/describe-query-execution
displayed_sidebar: docs
---
-**DESCRIBE QUERY EXECUTION** ( *estado* )
+**DESCRIBE QUERY EXECUTION** ( *estado* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| estado | Boolean | → | True=Activar análisis de búsquedas internas, False=Desactivar el análisis de búsquedas internas |
+| estado | Boolean | → | True=Activar análisis de búsquedas internas, False=Desactivar el análisis de búsquedas internas |
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Número de comando | 1044 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
index ea641dcc8d892d..fa4b7d8debd7a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
@@ -5,13 +5,13 @@ slug: /commands/difference
displayed_sidebar: docs
---
-**DIFFERENCE** ( *conjunto1* ; *conjunto2* ; *resultado* )
+**DIFFERENCE** ( *conjunto1* : Text ; *conjunto2* : Text ; *resultado* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Conjunto inicial |
-| conjunto2 | Text | → | Conjunto a restar |
-| resultado | Text | → | Conjunto resultante |
+| conjunto1 | Text | → | Conjunto inicial |
+| conjunto2 | Text | → | Conjunto a restar |
+| resultado | Text | → | Conjunto resultante |
@@ -60,6 +60,6 @@ Al final de la lista de registros hay un botón con un método de objeto. El mé
| | |
| --- | --- |
| Número de comando | 122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
index 9c872f1111c9ba..ae79f54c472903 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/disable-menu-item
displayed_sidebar: docs
---
-**DISABLE MENU ITEM** ( *menu* ; *lineamenu* {; *proceso*} )
+**DISABLE MENU ITEM** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia del menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Número de menú o Referencia del menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia del proceso |
@@ -36,7 +36,7 @@ Si el parámetro *menuItem* designa un submenú jerárquico, todos los elementos
| | |
| --- | --- |
| Número de comando | 150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
index fbcb4285279863..2c0ee28e880390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Los archivos llave (archivos de extensión ".4DKeyChain") deben almacenarse en e
| | |
| --- | --- |
| Número de comando | 1639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
index 8e5802219dc098..a07f48b7e6c7bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
@@ -5,13 +5,13 @@ slug: /commands/display-notification
displayed_sidebar: docs
---
-**DISPLAY NOTIFICATION** ( *titulo* ; *texto* {; *duracion*} )
+**DISPLAY NOTIFICATION** ( *titulo* : Text ; *texto* : Text {; *duracion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| titulo | Text | → | Título de la notificación |
-| texto | Text | → | Texto de la notificación |
-| duracion | Integer | → | Duración de la visualización en segundos |
+| titulo | Text | → | Título de la notificación |
+| texto | Text | → | Texto de la notificación |
+| duracion | Integer | → | Duración de la visualización en segundos |
@@ -46,6 +46,6 @@ Bajo Windows, se muestra la ventana del mensaje si no se detecta actividad en la
| | |
| --- | --- |
| Número de comando | 910 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
index a3d579dc173b80..dc19226920ed20 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
@@ -5,11 +5,11 @@ slug: /commands/display-record
displayed_sidebar: docs
---
-**DISPLAY RECORD** {( *tabla* )}
+**DISPLAY RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual mostrar el registro actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual mostrar el registro actual o Tabla por defecto, si se omite |
@@ -46,6 +46,6 @@ El siguiente ejemplo muestra una serie de registros como una presentación de di
| | |
| --- | --- |
| Número de comando | 105 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
index 97a8e09df01bab..d0e26c5ad4e043 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
@@ -5,15 +5,16 @@ slug: /commands/display-selection
displayed_sidebar: docs
---
-**DISPLAY SELECTION** ( {*tabla*}{; *modoSelección*}{; *entradaList*}{; *}{; *} )
+**DISPLAY SELECTION** **DISPLAY SELECTION** ( {*tabla* : Table}{; *modoSelección* : Integer}{; *entradaList* : Boolean}{; *})
**DISPLAY SELECTION** ( {*tabla* : Table}{; *modoSelección* : Integer}{; *entradaList* : Boolean} ; * {; *} )
+
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a mostrar, o Tabla por defecto, si se omite |
-| modoSelección | Integer | → | Modo de selección |
-| entradaList | Boolean | → | Autorizar entrada en lista |
-| * | Operator | → | Utilizar el formulario de salida en caso de selección de un solo registro y ocultar las barras de desplazamiento en el formulario de entrada |
-| * | Operator | → | Mostrar las barras de desplazamiento en el formulario de entrada (anular el segundo efecto del primer parámetro *) |
+| tabla | Table | → | Tabla a mostrar, o Tabla por defecto, si se omite |
+| modoSelección | Integer | → | Modo de selección |
+| entradaList | Boolean | → | Autorizar entrada en lista |
+| * | Operator | → | Utilizar el formulario de salida en caso de selección de un solo registro y ocultar las barras de desplazamiento en el formulario de entrada |
+| * | Operator | → | Mostrar las barras de desplazamiento en el formulario de entrada (anular el segundo efecto del primer parámetro *) |
@@ -108,7 +109,7 @@ También puede utilizar otros comandos, tales como [PRINT SELECTION](print-selec
| | |
| --- | --- |
| Número de comando | 59 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
index c75a540f34e772..8e922d9cb31fa9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este ejemplo le permite aplicar un color alterno en un formulario listado mostra
| | |
| --- | --- |
| Número de comando | 897 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
index 81e1bbbf0fc2a1..a2c2e01189c67e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
@@ -5,11 +5,11 @@ slug: /commands/distinct-attribute-paths
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE PATHS** ( *campoObjeto* ; *arrayRuta* )
+**DISTINCT ATTRIBUTE PATHS** ( *campoObjeto* : Field ; *arrayRuta* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoObjeto | Field | → | Campo objeto indexado |
+| campoObjeto | Field | → | Campo objeto indexado |
| arrayRuta | Text array | ← | Array para recibir la lista de rutas diferentes |
@@ -73,6 +73,6 @@ El array *aTPaths* obtiene los siguientes elementos:
| | |
| --- | --- |
| Número de comando | 1395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
index 4ee209e12d7ffd..e5feacedd66df0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-attribute-values
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE VALUES** ( *campoObjeto* ; *ruta* ; *arrayValores* )
+**DISTINCT ATTRIBUTE VALUES** ( *campoObjeto* : Field ; *ruta* : Text ; *arrayValores* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoObjeto | Field | → | Campo de objeto del que desea obtener la lista de valores de atributos distintos |
-| ruta | Text | → | Ruta de acceso del atributo cuyos valores distintos desea obtener |
-| arrayValores | Text array, Integer array, Boolean array, Date array, Time array | ← | Valores distintos en la ruta de atributos |
+| campoObjeto | Field | → | Campo de objeto del que desea obtener la lista de valores de atributos distintos |
+| ruta | Text | → | Ruta de acceso del atributo cuyos valores distintos desea obtener |
+| arrayValores | Array | ← | Valores distintos en la ruta de atributos |
@@ -70,6 +70,6 @@ El array *aLAges* obtiene los siguientes 9 elementos:
| | |
| --- | --- |
| Número de comando | 1397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
index 3aed9649394b1c..eb061697071afd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-values
displayed_sidebar: docs
---
-**DISTINCT VALUES** ( *unCampo* ; *array* {; *contArray*} )
+**DISTINCT VALUES** ( *unCampo* ; *array* : Array {; *contArray* : Integer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo o subcampo indexable a utilizar para datos |
+| unField | Field | → | Campo o subcampo indexable a utilizar para datos |
| array | Array | ← | Array a recibir los datos del campo |
-| contArray | Integer array, Real array | ← | Array a recibir el número de ocurrencias de cada valor |
+| contArray | Integer array | ← | Array a recibir el número de ocurrencias de cada valor |
@@ -88,6 +88,6 @@ Para calcular las estadísticas, usted desea ordenar el número de valores disti
| | |
| --- | --- |
| Número de comando | 339 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
index 5c024612f211f4..44a765b97342e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
@@ -5,13 +5,13 @@ slug: /commands/document-list
displayed_sidebar: docs
---
-**DOCUMENT LIST** ( *nombreRuta* ; *documentos* {; *opciones*} )
+**DOCUMENT LIST** ( *nombreRuta* : Text ; *documentos* : Text array {; *opciones* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreRuta | Text | → | Ruta de acceso al volumen o a la carpeta |
+| nombreRuta | Text | → | Ruta de acceso al volumen o a la carpeta |
| documentos | Text array | ← | Nombres de los documentos presentes en esta ubicación |
-| opciones | Integer | → | Opciones para crear la lista |
+| opciones | Integer | → | Opciones para crear la lista |
@@ -117,7 +117,7 @@ Lista de todos los documentos en modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número de comando | 474 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
index da8d57b754c745..8df771edee9c73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-blob
displayed_sidebar: docs
---
-**DOCUMENT TO BLOB** ( *documento* ; *BLOB* )
+**DOCUMENT TO BLOB** ( *documento* : Text ; *BLOB* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Text | → | Nombre del documento |
-| Blob | Blob | ↔ | Campo o variable de tipo BLOB a recibir el documento |
-| || | Contenido del documento |
+| documento | Text | → | Nombre del documento |
+| Blob | Blob | ↔ | Campo o variable de tipo BLOB a recibir el documento |
+| | | | Contenido del documento |
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
index ac519e6af1b47a..fd36200af0d587 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-text
displayed_sidebar: docs
---
-**Document to text** ( *nomArchivo* {; *conjCaracteres* {; *modoRetorno*}} ) : Text
+**Document to text** ( *nomArchivo* : Text {; *conjCaracteres* : Text, Integer {; *modoRetorno* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Nombre del documento o ruta al documento |
-| conjCaracteres | Text, Integer | → | Nombre o número del conjunto de caracteres |
-| modoRetorno | Integer | → | Modo de procesamiento para las líneas de ruptura |
+| nomArchivo | Text | → | Nombre del documento o ruta al documento |
+| conjCaracteres | Text, Integer | → | Nombre o número del conjunto de caracteres |
+| modoRetorno | Integer | → | Modo de procesamiento para las líneas de ruptura |
| Resultado | Text | ← | Texto del documento |
@@ -83,6 +83,6 @@ Cuando ejecuta este código:
| | |
| --- | --- |
| Número de comando | 1236 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
index 30c2d03f8b132f..59b52f215d9d1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
@@ -5,13 +5,13 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---
-**DOM Append XML child node** ( *refElement* ; *tipoHijo* ; *valorHijo* ) : Text
+**DOM Append XML child node** ( *refElement* : Text ; *tipoHijo* : Integer ; *valorHijo* : Text, Blob ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | Text | → | Referencia del elemento XML |
-| tipoHijo | Integer | → | Tipo de hijo a añadir |
-| valorHijo | Text, Blob | → | Texto o variable (Texto o BLOB)cuyo valor debe insertarse como nodo hijo |
+| refElement | Text | → | Referencia del elemento XML |
+| tipoHijo | Integer | → | Tipo de hijo a añadir |
+| valorHijo | Text, Blob | → | Texto o variable (Texto o BLOB)cuyo valor debe insertarse como nodo hijo |
| Resultado | Text | ← | Referencia del elemento XML hijo |
@@ -152,6 +152,6 @@ Si el contenido de *valorHijo* no es valido, se devuelve un error.
| | |
| --- | --- |
| Número de comando | 1080 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
index b518b106e406fb..a73b79436623d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-append-xml-element
displayed_sidebar: docs
---
-**DOM Append XML element** ( *refElementTarget* ; *refElementFuente* ) : Text
+**DOM Append XML element** ( *refElementTarget* : Text ; *refElementFuente* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElementTarget | Text | → | Referencia del elemento XML padre |
-| refElementFuente | Text | → | Referencia del elemento XML a añadir |
+| refElementTarget | Text | → | Referencia del elemento XML padre |
+| refElementFuente | Text | → | Referencia del elemento XML a añadir |
| Resultado | Text | ← | Referencia del nuevo elemento XML |
@@ -34,6 +34,6 @@ Ver el ejemplo del comando [DOM Insert XML element](dom-insert-xml-element.md "D
| | |
| --- | --- |
| Número de comando | 1082 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
index 643d6d5a117e05..11046f6a2c2d4a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
@@ -5,11 +5,11 @@ slug: /commands/dom-close-xml
displayed_sidebar: docs
---
-**DOM CLOSE XML** ( *elementRef* )
+**DOM CLOSE XML** ( *elementRef* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
+| elementRef | Text | → | Referencia del elemento XML raíz |
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 722 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
index 5dfc853567c287..6bfb87864279df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-count-xml-attributes
displayed_sidebar: docs
---
-**DOM Count XML attributes** ( *elementRef* ) : Integer
+**DOM Count XML attributes** ( *elementRef* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| Resultado | Integer | ← | Número de atributos |
@@ -58,7 +58,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 727 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
index 93347a1116139a..c1ba9b2658703c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
@@ -5,12 +5,12 @@ slug: /commands/dom-count-xml-elements
displayed_sidebar: docs
---
-**DOM Count XML elements** ( *elementRef* ; *nomElement* ) : Integer
+**DOM Count XML elements** ( *elementRef* : Text ; *nomElement* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| nomElement | Text | → | Nombre de los elementos XML a contar |
+| elementRef | Text | → | Referencia del elemento XML |
+| nomElement | Text | → | Nombre de los elementos XML a contar |
| Resultado | Integer | ← | Número de elementos |
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 726 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
index a9e0149e74428d..4ec31ace8db34a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element-arrays
displayed_sidebar: docs
---
-**DOM Create XML element arrays** ( *refElement* ; *xRuta* {; *arrayNomsAtrib* ; *arrayValoresAtrib*} {; *arrayNomsAtrib2* ; *arrayValoresAtrib2* ; ... ; *arrayNomsAtribN* ; *arrayValoresAtribN*} ) : Text
+**DOM Create XML element arrays** ( *refElement* : Text ; *xRuta* : Text {; *arrayNomsAtrib* : Text array ; *arrayValoresAtrib* : Text array} {; ...(*arrayNomsAtrib* : Text array, *arrayValoresAtrib* : Text array)} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | Text | → | Referencia del elemento XML raíz |
-| xRuta | Text | → | Ruta XRuta del elemento XML a crear |
-| arrayNomsAtrib | Text array | → | Array de nombres de atributos |
-| arrayValoresAtrib | Text array | → | Array de valores de atributos |
+| refElement | Text | → | Referencia del elemento XML raíz |
+| xRuta | Text | → | Ruta XRuta del elemento XML a crear |
+| arrayNomsAtrib | Text array | → | Array de nombres de atributos |
+| arrayValoresAtrib | Text array | → | Array de valores de atributos |
| Resultado | Text | ← | Referencia del elemento XML creado |
@@ -67,6 +67,6 @@ Para esto, es suficiente escribir:
| | |
| --- | --- |
| Número de comando | 1097 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
index e701b76b98c615..6283c524e8eb96 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element
displayed_sidebar: docs
---
-**DOM Create XML element** ( *elementRef* ; *xRuta* {; *nomAtrib* ; *valorAtrib*} {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} ) : Text
+**DOM Create XML element** ( *elementRef* : Text ; *xRuta* : Text {; *nomAtrib* : Text ; *valorAtrib* : Text, Boolean, Integer, Real, Time, Date} {; ...(*nomAtrib* : Text, *valorAtrib* : Text, Boolean, Integer, Real, Time, Date)} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
-| xRuta | Text | → | Ruta XPath del elemento XML a crear |
-| nomAtrib | Text | → | Atributo a definir |
-| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Nuevo valor del atributo |
+| elementRef | Text | → | Referencia del elemento XML raíz |
+| xRuta | Text | → | Ruta XPath del elemento XML a crear |
+| nomAtrib | Text | → | Atributo a definir |
+| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Nuevo valor del atributo |
| Resultado | Text | ← | Referencia del elemento XML creado |
@@ -161,7 +161,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 865 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
index 47b8ae1e8027b7..31568bb4f56a76 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-ref
displayed_sidebar: docs
---
-**DOM Create XML Ref** ( *raiz* {; *nomEspacio*} {; *nSNom* ; *nSValor*} {; *nSNom2* ; *nSValor2* ; ... ; *nSNomN* ; *nSValorN*} ) : Text
+**DOM Create XML Ref** ( *raiz* : Text {; *nomEspacio* : Text} {; *nSNom* : Text ; *nSValor* : Text} {; ...(*nSNom* : Text, *nSValor* : Text)} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| raiz | Text | → | Nombre del elemento raíz |
-| nomEspacio | Text | → | Valor del espacio de nombre (namespace) |
-| nSNom | Text | → | Nombre del espacio de nombre |
-| nSValor | Text | → | Valor de espacio de nombre |
+| raiz | Text | → | Nombre del elemento raíz |
+| nomEspacio | Text | → | Valor del espacio de nombre (namespace) |
+| nSNom | Text | → | Nombre del espacio de nombre |
+| nSValor | Text | → | Valor de espacio de nombre |
| Resultado | Text | ← | Referencia del elemento XML raíz |
@@ -104,7 +104,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 861 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
index bccb89de9124b5..99848db16c26c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
@@ -5,12 +5,12 @@ slug: /commands/dom-export-to-file
displayed_sidebar: docs
---
-**DOM EXPORT TO FILE** ( *elementRef* ; *rutaArchivo* )
+**DOM EXPORT TO FILE** ( *elementRef* : Text ; *rutaArchivo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
-| rutaArchivo | Text | → | Ruta de acceso completa del archivo |
+| elementRef | Text | → | Referencia del elemento XML raíz |
+| rutaArchivo | Text | → | Ruta de acceso completa del archivo |
@@ -68,7 +68,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 862 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
index 5ebf10f9fbb649..bae1608a3a8920 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
@@ -5,11 +5,11 @@ slug: /commands/dom-export-to-var
displayed_sidebar: docs
---
-**DOM EXPORT TO VAR** ( *elementRef* ; *vXmlVar* )
+**DOM EXPORT TO VAR** ( *elementRef* : Text ; *vXmlVar* : Text, Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
+| elementRef | Text | → | Referencia del elemento XML raíz |
| vXmlVar | Text, Blob | ← | Variable a recibir el árbol XML |
@@ -61,7 +61,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 863 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
index f97bf1adf4412f..ca8cea2d0330dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element-by-id
displayed_sidebar: docs
---
-**DOM Find XML element by ID** ( *elementRef* ; *id* ) : Text
+**DOM Find XML element by ID** ( *elementRef* : Text ; *id* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| id | Text | → | Valor del atributo ID del elemento a buscar |
+| elementRef | Text | → | Referencia del elemento XML |
+| id | Text | → | Valor del atributo ID del elemento a buscar |
| Resultado | Text | ← | Referencia del elemento encontrado (si aplica) |
@@ -34,7 +34,7 @@ El comando devuelve en resultado la referencia XML del elemento encontrado.
| | |
| --- | --- |
| Número de comando | 1010 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
index 31f77b1132b510..5c48ab3b295e51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element
displayed_sidebar: docs
---
-**DOM Find XML element** ( *elementRef* ; *xRuta* {; *arrRefElement*} ) : Text
+**DOM Find XML element** ( *elementRef* : Text ; *xRuta* : Text {; *arrRefElement* : Text array} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| xRuta | Text | → | Ruta XPath del elemento a buscar |
+| elementRef | Text | → | Referencia del elemento XML |
+| xRuta | Text | → | Ruta XPath del elemento a buscar |
| arrRefElement | Text array | ← | Lista de referencias de los elementos encontrados (si aplica) |
| Resultado | Text | ← | Referencia del elemento encontrado (si aplica) |
@@ -123,7 +123,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 864 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
index 40421f72d9e076..654df72130432b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-first-child-xml-element
displayed_sidebar: docs
---
-**DOM Get first child XML element** ( *elementRef* {; *nomElementHijo* {; *valorElementHijo*}} ) : Text
+**DOM Get first child XML element** ( *elementRef* : Text {; *nomElementHijo* : Text {; *valorElementHijo* : Text}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElementHijo | Text | ← | Nombre del elemento XML hijo |
| valorElementHijo | Text | ← | Valor del elemento XML hijo |
| Resultado | Text | ← | Referencia del elemento XML hijo |
@@ -64,7 +64,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 723 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
index 3e68a68e025438..f8df959385f165 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-last-child-xml-element
displayed_sidebar: docs
---
-**DOM Get last child XML element** ( *elementRef* {; *nomElementHijo* {; *valorElementHijo*}} ) : Text
+**DOM Get last child XML element** ( *elementRef* : Text {; *nomElementHijo* : Text {; *valorElementHijo* : Text}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElementHijo | Text | ← | Nombre del elemento hijo |
| valorElementHijo | Text | ← | Valor del elemento hijo |
| Resultado | Text | ← | Referencia del elemento XML |
@@ -49,7 +49,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 925 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
index 37eb8e2d51affb..ebde0f97b0e076 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-next-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get next sibling XML element** ( *elementRef* {; *nomElemHermano* {; *valorElemHermano*}} ) : Text
+**DOM Get next sibling XML element** ( *elementRef* : Text {; *nomElemHermano* : Text {; *valorElemHermano* : Text}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElemHermano | Text | ← | Nombre del elemento XML hermano |
| valorElemHermano | Text | ← | Valor del elemento XML hermano |
| Resultado | Text | ← | Referencia del elemento XML hermano |
@@ -67,7 +67,7 @@ Si el comando se ha ejecutado correctamente y si el elemento analizado no es el
| | |
| --- | --- |
| Número de comando | 724 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
index 31cbb266c77afa..0fea56392acd74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-parent-xml-element
displayed_sidebar: docs
---
-**DOM Get parent XML element** ( *elementRef* {; *nomElemPadre* {; *valorElemPadre*}} ) : Text
+**DOM Get parent XML element** ( *elementRef* : Text {; *nomElemPadre* : Text {; *valorElemPadre* : Text}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElemPadre | Text | ← | Nombre del elemento XML padre |
| valorElemPadre | Text | ← | Valor del elemento XML padre |
| Resultado | Text | ← | Referencia del elemento XML padre |
@@ -42,7 +42,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 923 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
index 5f29cdf89274ae..d53581213926ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-previous-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get previous sibling XML element** ( *elementRef* {; *nomElemHermano* {; *valorElemHermano*}} ) : Text
+**DOM Get previous sibling XML element** ( *elementRef* : Text {; *nomElemHermano* : Text {; *valorElemHermano* : Text}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElemHermano | Text | ← | Nombre del elemento XML hermano |
| valorElemHermano | Text | ← | Valor del elemento XML hermano |
| Resultado | Text | ← | Referencia del elemento XML hermano |
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente y si el elemento referenciado no es
| | |
| --- | --- |
| Número de comando | 924 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
index 37a013bf9d7a18..b3f5f355df378d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-root-xml-element
displayed_sidebar: docs
---
-**DOM Get root XML element** ( *elementRef* ) : Text
+**DOM Get root XML element** ( *elementRef* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| Resultado | Text | ← | Referencia del elemento raíz o "" en caso de error |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1053 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
index d0e15060504d2b..eed126b5454842 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-index
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* ; *indexAtrib* ; *nomAtrib* ; *valorAtrib* )
+**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* : Text ; *indexAtrib* : Integer ; *nomAtrib* : Variable ; *valorAtrib* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| indexAtrib | Integer | → | Número de índice del atributo |
+| elementRef | Text | → | Referencia del elemento XML |
+| indexAtrib | Integer | → | Número de índice del atributo |
| nomAtrib | Variable | ← | Nombre del atributo |
| valorAtrib | Variable | ← | Valor del atributo |
@@ -44,7 +44,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 729 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
index b0b4112a373fb4..d051ed4a71d469 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-name
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* ; *nomAtrib* ; *valorAtrib* )
+**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* : Text ; *nomAtrib* : Text ; *valorAtrib* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| nomAtrib | Text | → | Nombre del atributo |
+| elementRef | Text | → | Referencia del elemento XML |
+| nomAtrib | Text | → | Nombre del atributo |
| valorAtrib | Variable | ← | Valor del atributo |
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 728 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
index 54d0fe9e1c1153..e6bd547811aec3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-child-nodes
displayed_sidebar: docs
---
-**DOM GET XML CHILD NODES** ( *refElement* ; *ArrTiposHijos* ; *arrRefsNodos* )
+**DOM GET XML CHILD NODES** ( *refElement* : Text ; *ArrTiposHijos* : Integer array ; *arrRefsNodos* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | Text | → | Referencia del elemento XML |
+| refElement | Text | → | Referencia del elemento XML |
| ArrTiposHijos | Integer array | ← | Tipos de nodos hijos |
| arrRefsNodos | Text array | ← | Referencias o Valores de los nodos hijos |
@@ -68,6 +68,6 @@ Después de la ejecución de estas instrucciones:
| | |
| --- | --- |
| Número de comando | 1081 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
index 879e43cb3bdfe0..abe562323672d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-document-ref
displayed_sidebar: docs
---
-**DOM Get XML document ref** ( *refElement* ) : Text
+**DOM Get XML document ref** ( *refElement* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | Text | → | Referencia de un elemento existente en un árbol DOM |
+| refElement | Text | → | Referencia de un elemento existente en un árbol DOM |
| Resultado | Text | ← | Referencia del primer elemento del árbol DOM (nodo document) |
@@ -59,6 +59,6 @@ En este ejemplo, queremos encontrar la declaración DTD del documento XML:
| | |
| --- | --- |
| Número de comando | 1088 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
index 5787680e625373..60b33dfe9fc9c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-name
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT NAME** ( *elementRef* ; *nomElement* )
+**DOM GET XML ELEMENT NAME** ( *elementRef* : Text ; *nomElement* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| nomElement | Variable | ← | Nombre del elemento |
@@ -46,7 +46,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
index 010479e519ab8f..e4cba427152c01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-value
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT VALUE** ( *elementRef* ; *valorElement* {; *cDATA*} )
+**DOM GET XML ELEMENT VALUE** ( *elementRef* : Text ; *valorElement* : Variable {; *cDATA* : Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| valorElement | Variable | ← | Valor del elemento |
| cDATA | Variable | ← | Contenido de la sección CDATA |
@@ -49,7 +49,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
index 96f17a85759992..a51a82163b2873 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-get-xml-element
displayed_sidebar: docs
---
-**DOM Get XML element** ( *elementRef* ; *nomElement* ; *indice* ; *valorElement* ) : Text
+**DOM Get XML element** ( *elementRef* : Text ; *nomElement* : Text ; *indice* : Integer ; *valorElement* : Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| nomElement | Text | → | Nombre del elemento a leer |
-| indice | Integer | → | Número de índice del elemento a leer |
+| elementRef | Text | → | Referencia del elemento XML |
+| nomElement | Text | → | Nombre del elemento a leer |
+| indice | Integer | → | Número de índice del elemento a leer |
| valorElement | Variable | ← | Valor del elemento |
| Resultado | Text | ← | Referencia del elemento XML (16 caracteres) |
@@ -39,7 +39,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 725 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
index 4531483ba50b4a..9546efde0e10c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-information
displayed_sidebar: docs
---
-**DOM Get XML information** ( *elementRef* ; *infoXML* ) : Text
+**DOM Get XML information** ( *elementRef* : Text ; *infoXML* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
-| infoXML | Integer | → | Tipo de información a obtener |
+| elementRef | Text | → | Referencia del elemento XML raíz |
+| infoXML | Integer | → | Tipo de información a obtener |
| Resultado | Text | ← | Valor de la información XML |
@@ -48,6 +48,6 @@ Estas constantes indican la siguiente información:
| | |
| --- | --- |
| Número de comando | 721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
index 1bdc96675400c6..277545dfe77963 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-insert-xml-element
displayed_sidebar: docs
---
-**DOM Insert XML element** ( *refElementTarget* ; *refElementFuente* ; *indiceHijo* ) : Text
+**DOM Insert XML element** ( *refElementTarget* : Text ; *refElementFuente* : Text ; *indiceHijo* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElementTarget | Text | → | Referencia del elemento XML padre |
-| refElementFuente | Text | → | Referencia del elemento XML a insertar |
-| indiceHijo | Integer | → | Índice del hijo del elemento objetivo antes del cual se debe insertar el nuevo elemento |
+| refElementTarget | Text | → | Referencia del elemento XML padre |
+| refElementFuente | Text | → | Referencia del elemento XML a insertar |
+| indiceHijo | Integer | → | Índice del hijo del elemento objetivo antes del cual se debe insertar el nuevo elemento |
| Resultado | Text | ← | Referencia del nuevo elemento XML |
@@ -86,6 +86,6 @@ $rootRef:=DOM Parse XML source("") //selección de documento XML
| | |
| --- | --- |
| Número de comando | 1083 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
index 7df2884e616a7b..e5e1069fb3af60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-source
displayed_sidebar: docs
---
-**DOM Parse XML source** ( *doc* {; *validacion* {; dtd | esquema}} ) : Text
+**DOM Parse XML source** ( *doc* : Text {; *validacion* : Boolean {; dtd | esquema}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Ruta de acceso del documento |
-| validacion | Boolean | → | True = Validación False = No validación |
-| dtd | esquema | Cadena | → | Ubicación de la DTD o del esquema XML |
+| doc | Text | → | Ruta de acceso del documento |
+| validacion | Boolean | → | True = Validación False = No validación |
+| dtd | esquema | Cadena | → | Ubicación de la DTD o del esquema XML |
| Resultado | Text | ← | Referencia del elemento XML |
@@ -100,7 +100,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 719 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
index aa51e25a052b22..381ec808ee19d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-variable
displayed_sidebar: docs
---
-**DOM Parse XML variable** ( *variable* {; *validacion* {; dtd | esquema}} ) : Text
+**DOM Parse XML variable** ( *variable* : Blob, Text {; *validacion* : Boolean {; dtd | esquema}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| variable | Blob, Text | → | Nombre de la variable |
-| validacion | Boolean | → | True = Validación por la DTD, False = No validacion |
-| dtd | esquema | Cadena | → | Ubicación de la DTD o del esquema XML |
+| variable | Blob, Text | → | Nombre de la variable |
+| validacion | Boolean | → | True = Validación por la DTD, False = No validacion |
+| dtd | esquema | Cadena | → | Ubicación de la DTD o del esquema XML |
| Resultado | Text | ← | Referencia del elemento XML |
@@ -88,7 +88,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 720 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
index ad01e2d824a27b..7234967c4fcca3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
@@ -5,12 +5,12 @@ slug: /commands/dom-remove-xml-attribute
displayed_sidebar: docs
---
-**DOM REMOVE XML ATTRIBUTE** ( *refElement* ; *nomAtrib* )
+**DOM REMOVE XML ATTRIBUTE** ( *refElement* : Text ; *nomAtrib* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | Text | → | Referencia del elemento XML |
-| nomAtrib | Text | → | Atributo a borrar |
+| refElement | Text | → | Referencia del elemento XML |
+| nomAtrib | Text | → | Atributo a borrar |
@@ -50,7 +50,7 @@ El siguiente código permite remover el primer atributo "N=1":
| | |
| --- | --- |
| Número de comando | 1084 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
index f6f96340db6732..40cc59ad0e7e6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-remove-xml-element
displayed_sidebar: docs
---
-**DOM REMOVE XML ELEMENT** ( *elementRef* )
+**DOM REMOVE XML ELEMENT** ( *elementRef* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
@@ -33,7 +33,7 @@ Un error se genera cuando la referencia del elemento no es válida.
| | |
| --- | --- |
| Número de comando | 869 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
index 73ed67ad780cf0..549a0e4a0edb5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/dom-set-xml-attribute
displayed_sidebar: docs
---
-**DOM SET XML ATTRIBUTE** ( *elementRef* ; *nomAtrib* ; *valorAtrib* {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} )
+**DOM SET XML ATTRIBUTE** ( *elementRef* : Text ; *nomAtrib* : Text ; *valorAtrib* : Text, Boolean, Integer, Real, Time, Date {; ...(*nomAtrib* : Text, *valorAtrib* : Text, Boolean, Integer, Real, Time, Date)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| nomAtrib | Text | → | Atributo a definir |
-| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Nuevo valor del atributo |
+| elementRef | Text | → | Referencia del elemento XML |
+| nomAtrib | Text | → | Atributo a definir |
+| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Nuevo valor del atributo |
@@ -73,7 +73,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 866 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
index f2886bb0bbaab1..5dbd41289f0bb2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-declaration
displayed_sidebar: docs
---
-**DOM SET XML DECLARATION** ( *elementRef* ; *codificacion* {; *autonomo* {; *indentacion*}} )
+**DOM SET XML DECLARATION** ( *elementRef* : Text ; *codificacion* : Text {; *autonomo* : Boolean {; *indentacion* : Boolean}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| codificacion | Text | → | Conjunto de caracteres del documento XML |
-| autonomo | Boolean | → | True = el documento es autónomo False (por defecto) = el documento no es autónomo |
-| indentacion | Boolean | → | ** Obsoleto no utilizar ** |
+| elementRef | Text | → | Referencia del elemento XML |
+| codificacion | Text | → | Conjunto de caracteres del documento XML |
+| autonomo | Boolean | → | True = el documento es autónomo False (por defecto) = el documento no es autónomo |
+| indentacion | Boolean | → | ** Obsoleto no utilizar ** |
@@ -43,6 +43,6 @@ El siguiente ejemplo define la codificación a utilizar y la opción autónomo d
| | |
| --- | --- |
| Número de comando | 859 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
index 77f6230ca32a17..6091556d4c4c67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-set-xml-element-name
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT NAME** ( *elementRef* ; *nomElement* )
+**DOM SET XML ELEMENT NAME** ( *elementRef* : Text ; *nomElement* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| nomElement | Text | → | Nuevo nombre del elemento |
+| elementRef | Text | → | Referencia del elemento XML |
+| nomElement | Text | → | Nuevo nombre del elemento |
@@ -64,7 +64,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 867 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
index 8c080ee6f0d34b..081bf77ea7237b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-element-value
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT VALUE** ( *elementRef* {; *xRuta*}; *valorElement* {; *} )
+**DOM SET XML ELEMENT VALUE** ( *elementRef* : Text {; *xRuta* : Text}; *valorElement* : Text, Variable {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
-| xRuta | Text | → | Ruta XPath del elemento XML |
-| valorElement | Text, Variable | → | Nuevo valor del elemento |
-| * | Operador | → | Si se pasa: definir el valor en CDATA |
+| elementRef | Text | → | Referencia del elemento XML |
+| xRuta | Text | → | Ruta XPath del elemento XML |
+| valorElement | Text, Variable | → | Nuevo valor del elemento |
+| * | Operador | → | Si se pasa: definir el valor en CDATA |
@@ -122,7 +122,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 868 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
index 0486a4ceda2fbe..d5bdf050693158 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Luego puede arrastrar la ventana haciendo clic en cualquiera de los bordes.
| | |
| --- | --- |
| Número de comando | 452 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
index f92dce18090943..208bc97722ef1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
@@ -5,7 +5,7 @@ slug: /commands/drop-position
displayed_sidebar: docs
---
-**Drop position** {( colNum | posXImagen )} : Integer
+**Drop position** ( colNum | posXImagen ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -99,6 +99,6 @@ El método de objeto list box de la izquierda (destino) contiene el siguiente c
| | |
| --- | --- |
| Número de comando | 608 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
index 4a46c321c35eef..fa97f544107208 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
@@ -5,11 +5,11 @@ slug: /commands/drop-remote-user
displayed_sidebar: docs
---
-**DROP REMOTE USER** ( *sesionUsuario* )
+**DROP REMOTE USER** ( *sesionUsuario* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| sesionUsuario | Text | → | ID de sesión del usuario |
+| sesionUsuario | Text | → | ID de sesión del usuario |
@@ -49,6 +49,6 @@ Desea eliminar un usuario remoto específico:
| | |
| --- | --- |
| Número de comando | 1633 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
index 9341d5a91ba973..2619a8dea7a92a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
@@ -5,11 +5,11 @@ slug: /commands/duplicate-record
displayed_sidebar: docs
---
-**DUPLICATE RECORD** {( *tabla* )}
+**DUPLICATE RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro actual a duplicar o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla del registro actual a duplicar o Tabla por defecto, si se omite |
@@ -30,7 +30,7 @@ DUPLICATE RECORD puede ejecutarse durante la entrada de datos. Esto permite dupl
| | |
| --- | --- |
| Número de comando | 225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
index 9e32bccb9a090d..052330ebb2d28a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/dynamic-pop-up-menu
displayed_sidebar: docs
---
-**Dynamic pop up menu** ( *menu* {; *pordefecto* {; *CoordX* ; *CoordY*}} ) : Text
+**Dynamic pop up menu** ( *menu* : Text {; *pordefecto* : Text {; *CoordX* : Integer ; *CoordY* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Text | → | Referencia de menú |
-| pordefecto | Text | → | Parámetro del elemento seleccionado por defecto |
-| CoordX | Integer | → | Coordenada X de la esquina superior izquierda |
-| CoordY | Integer | → | Coordenada Y de la esquina superior izquierda |
+| menu | Text | → | Referencia de menú |
+| pordefecto | Text | → | Parámetro del elemento seleccionado por defecto |
+| CoordX | Integer | → | Coordenada X de la esquina superior izquierda |
+| CoordY | Integer | → | Coordenada Y de la esquina superior izquierda |
| Resultado | Text | ← | Parámetro del elemento de menú seleccionado |
@@ -97,6 +97,6 @@ Este código permite crear un menú emergente dinámico jerárquico basado en ac
| | |
| --- | --- |
| Número de comando | 1006 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
index 27074ae4e59309..192141c6baf1c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra al usuario la ventana de gestión de usuarios y gru
| | |
| --- | --- |
| Número de comando | 281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
index 7309aabade0272..8b8a4df12519ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
@@ -5,13 +5,12 @@ slug: /commands/edit-formula
displayed_sidebar: docs
---
-**EDIT FORMULA** ( *tabla* ; *formula* )
+**EDIT FORMULA** ( *tabla* : Table ; *formula* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a mostrar por defecto en el editor de fórmulas |
-| formula | Text | → | Variable que contiene la fórmula a mostrar en el editor de fórmulas o "" para mostrar sólo el editor |
-| ← | Fórmula validada por el usuario |
+| tabla | Table | → | Tabla a mostrar por defecto en el editor de fórmulas |
+| formula | Text | ↔ | *in:* Variable containing the formula to display in the Formula editor or "" to display editor only
*out:* Formula validated by the user |
@@ -59,7 +58,7 @@ Si el usuario valida la caja de diálogo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 806 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
index 0a8a1425ff61a7..d280fe460e7642 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
@@ -5,13 +5,13 @@ slug: /commands/edit-item
displayed_sidebar: docs
---
-**EDIT ITEM** ( {* ;} *objeto* {; *elemento*} )
+**EDIT ITEM** ( * ; *objeto* : Text {; *elemento* : Integer} )
**EDIT ITEM** ( *objeto* : Field, Variable {; *elemento* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una tabla o variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Tabla o variable (si se omite *) |
-| elemento | Integer | → | Número de elemento |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una tabla o variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Tabla o variable (si se omite *) |
+| elemento | Integer | → | Número de elemento |
@@ -77,6 +77,6 @@ Dadas dos columnas de un list box donde los nombres de las variables asociadas s
| | |
| --- | --- |
| Número de comando | 870 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
index 60756e7672fb8c..09751bb01bbd0d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/enable-menu-item
displayed_sidebar: docs
---
-**ENABLE MENU ITEM** ( *menu* ; *lineamenu* {; *proceso*} )
+**ENABLE MENU ITEM** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia del menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Número de menú o Referencia del menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia del proceso |
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, ENABLE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
index c3e1dcd51f367d..3c5e9da4e7130c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/encrypt-blob
displayed_sidebar: docs
---
-**ENCRYPT BLOB** ( *aCifrar* ; *enviarLlavePriv* {; *recepLlavePub*} )
+**ENCRYPT BLOB** ( *aCifrar* : Blob ; *enviarLlavePriv* : Blob {; *recepLlavePub* : Blob} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aCifrar | Blob | ↔ | Datos a cifrar |
-| ||| Datos cifrados |
-| enviarLlavePriv | Blob | → | Llave privada del emisor |
-| recepLlavePub | Blob | → | Llave pública del receptor |
+| aCifrar | Blob | ↔ | Datos a cifrar |
+| | | | Datos cifrados |
+| enviarLlavePriv | Blob | → | Llave privada del emisor |
+| recepLlavePub | Blob | → | Llave pública del receptor |
@@ -191,6 +191,6 @@ Una empresa quiere utilizar el Internet para intercambiar información. Cada fil
| | |
| --- | --- |
| Número de comando | 689 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
index 5571638dc7f9b0..d479c90f43b5ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/encrypt-data-blob
displayed_sidebar: docs
---
-**Encrypt data BLOB** ( *blobAEncriptar* ; objetoLlave | frasePasar ; *sal* ; *blobEncriptado* ) : Boolean
+**Encrypt data BLOB** ( *blobAEncriptar* : Blob ; objetoLlave | frasePasar ; *sal* : Integer ; *blobEncriptado* : Blob ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| blobAEncriptar | Blob | → | BLOB a encriptar |
-| objetoLlave | frasePasar | Objeto, Texto | → | Objeto JSON que contiene la llave de cifrado o la frase de paso para la generación directa de la llave de cifrado (texto) |
-| sal | Integer | → | Sal adicional para el algoritmo |
+| blobAEncriptar | Blob | → | BLOB a encriptar |
+| objetoLlave | frasePasar | Objeto, Texto | → | Objeto JSON que contiene la llave de cifrado o la frase de paso para la generación directa de la llave de cifrado (texto) |
+| sal | Integer | → | Sal adicional para el algoritmo |
| blobEncriptado | Blob | ← | BLOB Encriptado |
| Resultado | Boolean | ← | True si la encriptación se ha realizado correctamente, False en caso contrario |
@@ -66,6 +66,6 @@ Encriptar un archivo de texto ubicado en la carpeta RESOURCES de la base de dato
| | |
| --- | --- |
| Número de comando | 1773 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
index 3c373732d89f95..60df063f353872 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
@@ -5,16 +5,16 @@ slug: /commands/encrypt-data-file
displayed_sidebar: docs
---
-**Encrypt data file** ( *rutaEstruct* ; *rutaDatos* {; newPassPhrase | newDataKey {; *carpetaArchivo* {; curPassPhrase | curDataKey {; *nomMetod*}}}} ) : Text
+**Encrypt data file** ( *rutaEstruct* : Text ; *rutaDatos* : Text {; newPassPhrase | newDataKey {; *carpetaArchivo* : Text {; curPassPhrase | curDataKey {; *nomMetod* : Text}}}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaEstruct | Text | → | Nombre de ruta del archivo de estructura |
-| rutaDatos | Text | → | Nombre de ruta del archivo de datos a cifrar |
-| newPassPhrase | newDataKey | Texto, Objeto | → | En caso de reemplazo: nueva passPhrase (texto) o nueva llave de cifrado (objeto) |
-| carpetaArchivo | Text | → | Nombre de ruta de la carpeta donde se guardarán los archivos originales |
-| curPassPhrase | curDataKey | Texto, Objeto | → | passPhrase actual (texto) o llave de encripción actual(objeto) |
-| nomMetod | Text | → | Nombre del método de retrollamada 4D |
+| rutaEstruct | Text | → | Nombre de ruta del archivo de estructura |
+| rutaDatos | Text | → | Nombre de ruta del archivo de datos a cifrar |
+| newPassPhrase | newDataKey | Texto, Objeto | → | En caso de reemplazo: nueva passPhrase (texto) o nueva llave de cifrado (objeto) |
+| carpetaArchivo | Text | → | Nombre de ruta de la carpeta donde se guardarán los archivos originales |
+| curPassPhrase | curDataKey | Texto, Objeto | → | passPhrase actual (texto) o llave de encripción actual(objeto) |
+| nomMetod | Text | → | Nombre del método de retrollamada 4D |
| Resultado | Text | ← | Nombre completo de la carpeta donde se guardaron los archivos originales |
@@ -137,6 +137,6 @@ Vuelva a cifrar un archivo de datos encriptados con la llave actual (por ejemplo
| | |
| --- | --- |
| Número de comando | 1610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
index 9f5068dc0172a4..f3c90e7891ea04 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
@@ -5,11 +5,11 @@ slug: /commands/end-selection
displayed_sidebar: docs
---
-**End selection** {( *tabla* )} : Boolean
+**End selection** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual probar si el puntero del registro está más allá del último registro seleccionado, o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla en la cual probar si el puntero del registro está más allá del último registro seleccionado, o Tabla por defecto, si se omite |
| Resultado | Boolean | ← | Si (TRUE) o No (FALSE) |
@@ -67,6 +67,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Se de
| | |
| --- | --- |
| Número de comando | 36 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
index 9300f88296e50a..0e4a553d43fab7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Una secuencia de instrucciones SQL debe estar rodeada por las palabras claves [B
| | |
| --- | --- |
| Número de comando | 949 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
index 858734ed060cdc..5ae89dd1768e38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
@@ -5,12 +5,12 @@ slug: /commands/equal-pictures
displayed_sidebar: docs
---
-**Equal pictures** ( *imagen1* ; *imagen2* ; *mascara* ) : Boolean
+**Equal pictures** ( *imagen1* : Picture, Picture ; *imagen2* : Picture, Picture ; *mascara* : Picture, Picture ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen1 | Picture, Picture | → | Imagen fuente original |
-| imagen2 | Picture, Picture | → | Imagen a comparar |
+| imagen1 | Picture, Picture | → | Imagen fuente original |
+| imagen2 | Picture, Picture | → | Imagen a comparar |
| mascara | Picture, Picture | ← | Máscara resultante |
| resultado | Boolean | ← | True si ambas imágenes son idénticas; de lo contrario, False |
@@ -48,7 +48,7 @@ Este es el código del botón **Compare**:
| | |
| --- | --- |
| Número de comando | 1196 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
index 84e5b30a5bc493..6e4c7208ff774c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
@@ -5,11 +5,11 @@ slug: /commands/erase-window
displayed_sidebar: docs
---
-**ERASE WINDOW** {( *ventana* )}
+**ERASE WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de ventana o Ventana del primer plano del proceso actual, si se omite |
+| ventana | Integer | → | Número de referencia de ventana o Ventana del primer plano del proceso actual, si se omite |
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW, que borra el contenido de una ventana, con [CLOSE WIND
| | |
| --- | --- |
| Número de comando | 160 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
index ec9f0e481818c3..65d751a541eab1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
@@ -5,13 +5,13 @@ slug: /commands/euro-converter
displayed_sidebar: docs
---
-**Euro converter** ( *valor* ; *deMoneda* ; *aMoneda* ) : Real
+**Euro converter** ( *valor* : Real ; *deMoneda* : Text ; *aMoneda* : Text ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| valor | Real | → | Valor a convertir |
-| deMoneda | Text | → | Código de la moneda en que está expresado el valor |
-| aMoneda | Text | → | Código de la moneda a la que debe convertirse el valor |
+| valor | Real | → | Valor a convertir |
+| deMoneda | Text | → | Código de la moneda en que está expresado el valor |
+| aMoneda | Text | → | Código de la moneda a la que debe convertirse el valor |
| Resultado | Real | ← | Valor convertido |
@@ -85,6 +85,6 @@ Estos son algunos ejemplos de conversiones que pueden realizarse con este comand
| | |
| --- | --- |
| Número de comando | 676 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
index 9c9b13f82ead66..a0489fa755837b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
@@ -5,11 +5,11 @@ slug: /commands/execute-formula
displayed_sidebar: docs
---
-**EXECUTE FORMULA** ( *instruccion* )
+**EXECUTE FORMULA** ( *instruccion* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| instruccion | Text | → | Código a ejecutar |
+| instruccion | Text | → | Código a ejecutar |
@@ -72,6 +72,6 @@ Usted desea ejecutar una fórmula incluida las llamadas a los comandos y tablas
| | |
| --- | --- |
| Número de comando | 63 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
index 6a35abe960e582..89f25947dbfa4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
@@ -5,15 +5,16 @@ slug: /commands/execute-method-in-subform
displayed_sidebar: docs
---
-**EXECUTE METHOD IN SUBFORM** ( *objetoSubForm* ; *nomMetodo* {; *retorno* {; *param*} {; *param2* ; ... ; *paramN*}} )
+**EXECUTE METHOD IN SUBFORM** ( *objetoSubForm* : Text ; *nomMetodo* : Object, Text ; *retorno* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD IN SUBFORM** ( *objetoSubForm* : Text ; *nomMetodo* : Object, Text ; * {; ...*param* : Expression} )
+
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objetoSubForm | Text | → | Nombre del objeto subformulario |
-| nomMetodo | Object, Text | → | Nombre del método proyecto a ejecutar |
-| retorno | *, Variable | → | * si el método no devuelve un valor |
-| ← | Valor devuelto por el método |
-| param | Expression | → | Parámetro(s)a pasar al método |
+| objetoSubForm | Text | → | Nombre del objeto subformulario |
+| nomMetodo | Object, Text | → | Nombre del método proyecto a ejecutar |
+| retorno | Variable | ← | Value returned by formula (if any) |
+| \* | Operator | → | Formula does not return a value |
+| param | Expression | → | Parámetro(s)a pasar al método |
@@ -79,7 +80,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1085 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
index 106be8af82ee37..cd2fa65f492503 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
@@ -5,13 +5,13 @@ slug: /commands/execute-method
displayed_sidebar: docs
---
-**EXECUTE METHOD** ( *nomMetodo* {; *result* {; *param*}}{; *param2* ; ... ; *paramN*} )
+**EXECUTE METHOD** ( *nomMetodo* : Text ; *result* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD** ( *nomMetodo* : Text ; * {; ...*param* : Expression} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomMetodo | Text | → | Nombre del método de proyecto a ejecutar |
-| result | Variable, * | ← | Variable que recibe el resultado del método * para un método que no devuelve un resultado |
-| param | Expression | → | Parámetro(s) del método |
+| nomMetodo | Text | → | Nombre del método de proyecto a ejecutar |
+| result | Variable, Operator | ← | Variable que recibe el resultado del método * para un método que no devuelve un resultado |
+| param | Expression | → | Parámetro(s) del método |
@@ -38,7 +38,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1007 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
index d84e57f912a39a..fbb889fa6826c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
@@ -5,13 +5,13 @@ slug: /commands/execute-on-client
displayed_sidebar: docs
---
-**EXECUTE ON CLIENT** ( *nomCliente* ; *nomMetodo* {; *param*}{; *param2* ; ... ; *paramN*} )
+**EXECUTE ON CLIENT** ( *nomCliente* : Text ; *nomMetodo* : Text {; *...param* : any} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomCliente | Text | → | Nombre registrado de 4D Client |
-| nomMetodo | Text | → | Nombre del método a ejecutar |
-| param | → | Parámetro(s) del método |
+| nomCliente | Text | → | Nombre registrado de 4D Client |
+| nomMetodo | Text | → | Nombre del método a ejecutar |
+| param | any | → | Method’s parameter(s) |
@@ -65,7 +65,7 @@ Consulte el ejemplo del comando [REGISTER CLIENT](register-client.md "REGISTER C
| | |
| --- | --- |
| Número de comando | 651 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
index 4e1a991b15ec96..169d2f37edf372 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
@@ -5,15 +5,15 @@ slug: /commands/execute-on-server
displayed_sidebar: docs
---
-**Execute on server** ( *proced* ; *pila* {; *nombre* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**Execute on server** ( *proced* : Text ; *pila* : Integer {; *nombre* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proced | Text | → | Procedimiento a ejecutar en el proceso |
-| pila | Integer | → | Tamaño de la pila en bytes |
-| nombre | Text | → | Nombre del proceso creado |
-| param | Expression | → | Paramétro(s) del procedimiento |
-| * | Operador | → | Proceso único |
+| proced | Text | → | Procedimiento a ejecutar en el proceso |
+| pila | Integer | → | Tamaño de la pila en bytes |
+| nombre | Text | → | Nombre del proceso creado |
+| param | Expression | → | Paramétro(s) del procedimiento |
+| * | Operador | → | Proceso único |
| Resultado | Integer | ← | Número de proceso para el proceso creado recientemente o de un proceso que está siendo ejecutado |
@@ -192,6 +192,6 @@ Consulte la sección *Servicios basados en los procedimientos almacenados (ejemp
| | |
| --- | --- |
| Número de comando | 373 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
index a857475d2dd4eb..2f56b88cb52f70 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
@@ -5,11 +5,11 @@ slug: /commands/exp
displayed_sidebar: docs
---
-**Exp** ( *Numero* ) : Real
+**Exp** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número a evaluar |
+| Numero | Real | → | Número a evaluar |
| Resultado | Real | ← | Exponencial del número |
@@ -37,6 +37,6 @@ El siguiente ejemplo asigna el exponencial de 1 a *vrE* (el log de *vrE* es 1):
| | |
| --- | --- |
| Número de comando | 21 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
index 2a778f4925a3c8..e695aa5da21e19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
@@ -5,11 +5,11 @@ slug: /commands/expand-blob
displayed_sidebar: docs
---
-**EXPAND BLOB** ( *BLOB* )
+**EXPAND BLOB** ( *BLOB* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB a descomprimir |
+| Blob | Blob | → | BLOB a descomprimir |
@@ -70,7 +70,7 @@ La variable OK toma el valor 1 si el BLOB ha sido descomprimido con éxito, de l
| | |
| --- | --- |
| Número de comando | 535 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
index c5a0cc61fb45b7..3c5fe80eefb726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
@@ -5,14 +5,13 @@ slug: /commands/export-data
displayed_sidebar: docs
---
-**EXPORT DATA** ( *nomArchivo* {; *proyecto* {; *}} )
+**EXPORT DATA** ( *nomArchivo* : Text {; *proyecto* : Text, Blob {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Ruta de acceso y nombre del archivo a exportar |
-| proyecto | Text, Blob | → | Contenido del proyecto de exportación |
-| ← | Nuevo contenido del proyecto de exportación (si se pasa el parámetro *) |
-| * | Operador | → | Visualización de la caja de diálogo de exportación y actualización del proyecto |
+| nomArchivo | Text | → | Ruta de acceso y nombre del archivo a exportar |
+| proyecto | Text, Blob | ↔ | *in:* Contents of the export project
*out:* New contents of the export project (if the * parameter has been passed) |
+| * | Operador | → | Visualización de la caja de diálogo de exportación y actualización del proyecto |
@@ -103,7 +102,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de abri
| | |
| --- | --- |
| Número de comando | 666 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
index 83e26d9a533337..725cfdda829e20 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
@@ -5,12 +5,12 @@ slug: /commands/export-dif
displayed_sidebar: docs
---
-**EXPORT DIF** ( {*tabla* ;} *doc* )
+**EXPORT DIF** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual exportar datos, o Tabla por defecto, si se omite |
-| doc | Text | → | Documento DIF para recibir los datos |
+| tabla | Table | → | Tabla de la cual exportar datos, o Tabla por defecto, si se omite |
+| doc | Text | → | Documento DIF para recibir los datos |
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 84 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
index 0681a7588af658..c895325187be7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure-file
displayed_sidebar: docs
---
-**Export structure file** ( *rutaCarpeta* {; *opciones*} ) : Object
+**Export structure file** ( *rutaCarpeta* : Text {; *opciones* : Object} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaCarpeta | Text | → | Ruta de la carpeta de destino para archivos de proyecto |
-| opciones | Object | → | Opciones de exportar |
+| rutaCarpeta | Text | → | Ruta de la carpeta de destino para archivos de proyecto |
+| opciones | Object | → | Opciones de exportar |
| Resultado | Object | ← | Estado de validación y mensajes (si los hay) |
@@ -119,6 +119,6 @@ Desea exportar solo los métodos proyecto y base, y un archivo de registro:
| | |
| --- | --- |
| Número de comando | 1565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
index a9a8fdadf71b19..0610003a1949dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure
displayed_sidebar: docs
---
-**EXPORT STRUCTURE** ( *estructuraXML* {; *format*} )
+**EXPORT STRUCTURE** ( *estructuraXML* : Text {; *format* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| estructuraXML | Text | ← | Exportación de la definición XML de la estructura de la base 4D |
-| format | Text | → | Export format: xml format (default) or html format |
+| format | Text | → | Export format: xml format (default) or html format |
@@ -61,6 +61,6 @@ Desea exportar la estructura actual de la base de datos en formato html:
| | |
| --- | --- |
| Número de comando | 1311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
index cf968d56ea9fd8..818c5d54e1d64b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/export-sylk
displayed_sidebar: docs
---
-**EXPORT SYLK** ( {*tabla* ;} *doc* )
+**EXPORT SYLK** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual exportar datos, o Tabla por defecto, si se omite |
-| doc | Text | → | Documento SYLK para recibir los datos |
+| tabla | Table | → | Tabla de la cual exportar datos, o Tabla por defecto, si se omite |
+| doc | Text | → | Documento SYLK para recibir los datos |
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 85 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
index 06624640332f4d..1cedd7dd740567 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
@@ -5,12 +5,12 @@ slug: /commands/export-text
displayed_sidebar: docs
---
-**EXPORT TEXT** ( {*tabla* ;} *doc* )
+**EXPORT TEXT** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla desde la cual exportar datos o Tabla por defecto, si se omite |
-| doc | Text | → | Documento texto para recibir los datos |
+| tabla | Table | → | Tabla desde la cual exportar datos o Tabla por defecto, si se omite |
+| doc | Text | → | Documento texto para recibir los datos |
@@ -57,7 +57,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md
index 5024cdd47e65e5..549772227d8a8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/false.md
@@ -35,6 +35,6 @@ El siguiente ejemplo asigna la variable *vbOpciones* a Falso:
| | |
| --- | --- |
| Número de comando | 215 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
index 1ca6a5075f7e1f..9b52829a6058e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
@@ -5,12 +5,12 @@ slug: /commands/field-name
displayed_sidebar: docs
---
-**Field name** ( *campPtr* ) : Text
**Field name** ( *numTabla* ; *numCamp* ) : Text
+**Field name** ( *campPtr* : Puntero, Entero largo ) : Text
**Field name** ( *numTabla* ; *numCamp* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campPtr | tablaNum | Puntero, Entero largo | → | Puntero a un campo o número de tabla |
-| numCamp | Integer | → | Número de campo si se pasa un número de tabla como primer parámetro |
+| campPtr | tablaNum | Puntero, Entero largo | → | Puntero a un campo o número de tabla |
+| numCamp | Integer | → | Número de campo si se pasa un número de tabla como primer parámetro |
| Resultado | Text | ← | Nombre del campo |
@@ -55,6 +55,6 @@ Este ejemplo muestra una alerta. Este método pasa un puntero a un campo:
| | |
| --- | --- |
| Número de comando | 257 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md
index 63f04f9ceb2d0b..cd049ed29eb6e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/field.md
@@ -5,27 +5,23 @@ slug: /commands/field
displayed_sidebar: docs
---
-**Field** ( *numTabla* ; *numCamp* ) -> Resultado
-**Field** ( *ptrCamp* ) -> numCampo
+**Field** ( *numTabla* : Integer ; *numCamp* : Integer ) -> Resultado
**Field** ( *ptrCamp* : Pointer ) -> numCampo
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | Integer | → | Número de tabla |
-| numCamp | Integer | → | Número de campo |
-| Resultado | Pointer | ← | Puntero de campo |
-| Field ( ptrCamp ) -> numCampo |
-| Parámetro | Tipo | Descripción |
-| ptrCamp | Pointer | → | Puntero del campo |
-| numCampo | Integer | ← | Número de campo |
+| numTabla | Integer | → | Número de tabla |
+| numCamp | Integer | → | Número de campo |
+| ptrCamp | Pointer | → | Puntero del campo |
+| Resultado | Pointer, Integer | ← | Puntero de campo o Número de campo|
## Descripción
-El comando Field tiene dos sintaxis:
+El comando **Field** tiene dos sintaxis:
-* Si pasa un número de tabla en *numTabla* y un número de campo en *numCampo*, Field devuelve un puntero al campo.
-* Si pasa un puntero a un campo en *ptrCamp*, Field devuelve el número del campo.
+* Si pasa un número de tabla en *numTabla* y un número de campo en *numCampo*, Field devuelve un puntero al campo.
+* Si pasa un puntero a un campo en *ptrCamp*, Field devuelve el número del campo.
## Ejemplo 1
@@ -63,6 +59,6 @@ En el siguiente ejemplo, la variable *campNum* es igual al número del campo de
| | |
| --- | --- |
| Número de comando | 253 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
index 9793abacd97224..3e3b9dd3feb861 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
@@ -46,7 +46,7 @@ Ver el ejemplo del comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número de comando | 321 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
index f9b652c985639d..db0e4499ee200c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
@@ -5,11 +5,11 @@ slug: /commands/filter-keystroke
displayed_sidebar: docs
---
-**FILTER KEYSTROKE** ( *carFiltro* )
+**FILTER KEYSTROKE** ( *carFiltro* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| carFiltro | Text | → | Carácter de filtrado de tecleo o Cadena vacía para cancelar el filtrado |
+| carFiltro | Text | → | Carácter de filtrado de tecleo o Cadena vacía para cancelar el filtrado |
@@ -247,6 +247,6 @@ El método ObtenerTextoSeleccionado es el siguiente:
| | |
| --- | --- |
| Número de comando | 389 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
index cef68f65eda6c0..b4a716bd5363bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-array
displayed_sidebar: docs
---
-**Find in array** ( *array* ; *valor* {; *inicio*} ) : Integer
+**Find in array** ( *array* : Array ; *valor* : Expression {; *inicio* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array a buscar |
-| valor | Expression | → | Valor del mismo tipo a buscar en el array |
-| inicio | Integer | → | Elemento a partir del cual comenzar la búsqueda |
+| array | Array | → | Array a buscar |
+| valor | Expression | → | Valor del mismo tipo a buscar en el array |
+| inicio | Integer | → | Elemento a partir del cual comenzar la búsqueda |
| Resultado | Integer | ← | Número del primer elemento en el array que corresponde al valor |
@@ -116,6 +116,6 @@ Desea encontrar una referencia a un objeto:
| | |
| --- | --- |
| Número de comando | 230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
index 419fc7a9cb8cca..8386a9c0008fa8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
@@ -5,13 +5,12 @@ slug: /commands/find-in-field
displayed_sidebar: docs
---
-**Find in field** ( *campoObjetivo* ; *valor* ) : Integer
+**Find in field** ( *campoObjetivo* : Field ; *valor* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoObjetivo | Field | → | Campo objetivo en el cual ejecutar la búsqueda. |
-| valor | Field, Variable | → | Valor a buscar |
-| ← | Valor encontrado |
+| campoObjetivo | Field | → | Campo objetivo en el cual ejecutar la búsqueda. |
+| valor | Field, Variable | ↔ | *in:* Value to search
*out:* Value found |
| Resultado | Integer | ← | Número del registro encontrado o -1 si no se encontró ningún registro |
@@ -69,6 +68,6 @@ Tenga en cuenta >= permite cubrir todos los casos. De hecho, la función devuelv
| | |
| --- | --- |
| Número de comando | 653 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
index 763cd8ddd53d8d..2c67b5f76b4b4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
@@ -5,16 +5,16 @@ slug: /commands/find-in-list
displayed_sidebar: docs
---
-**Find in list** ( {* ;} *lista* ; *valor* ; *alcance* {; *arrayElem* {; *}} ) : Integer
+**Find in list** ( {* ;} *lista* : Integer, Text ; *valor* : Text ; *alcance* : Integer {; *arrayElem* : Integer array {; *}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de la lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| valor | Text | → | Valor a buscar |
-| alcance | Integer | → | 0=Lista principal, 1=Sublista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de la lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| valor | Text | → | Valor a buscar |
+| alcance | Integer | → | 0=Lista principal, 1=Sublista |
| arrayElem | Integer array | ← | - Si se omite el 2do *: array de posiciones de los elementos encontrados - Si se pasa el segundo *: array de números de referencia de los elementos encontrados |
-| * | Operador | → | - Si se omite: utiliza la posición de los elementos - Si se pasa: utiliza el número de referencia de los elementos |
+| * | Operador | → | - Si se omite: utiliza la posición de los elementos - Si se pasa: utiliza el número de referencia de los elementos |
| Resultado | Integer | ← | - Si se omite el 2do *: posición del elemento encontrado - Si se pasa 2do *: número de referencia del elemento encontrado |
@@ -68,6 +68,6 @@ Dada la siguiente lista jerárquica:
| | |
| --- | --- |
| Número de comando | 952 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
index 383d063c6fd577..a9e0a4fd97b9e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-sorted-array
displayed_sidebar: docs
---
-**Find in sorted array** ( *array* ; *valor* ; > or < {; *posPrim* {; *posUlt*}} ) : Boolean
+**Find in sorted array** ( *array* : Array ; *valor* : Expression ; > or < {; *posPrim* : Integer {; *posUlt* : Integer}} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array a buscar |
-| valor | Expression | → | Valor del mismo tipo a buscar en el array |
-| > or < | Operador | → | > si el array está en orden ascendente, < si el está en orden descendente |
+| array | Array | → | Array a buscar |
+| valor | Expression | → | Valor del mismo tipo a buscar en el array |
+| > or < | Operador | → | > si el array está en orden ascendente, < si el está en orden descendente |
| posPrim | Integer | ← | Posición de su primera aparición si se encuentra el valor; de lo contrario la posición donde debe insertarse el valor |
| posUlt | Integer | ← | Posición de su última ocurrencia si se encuentra el valor; de lo contrario lo mismo que posPrim |
| Resultado | Boolean | ← | True si al menos un elemento en el array corresponde al valor, de lo contrario False |
@@ -80,6 +80,6 @@ Usted quiere encontrar el número de ocurrencias de las cadenas que comienzan po
| | |
| --- | --- |
| Número de comando | 1333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
index 7cccb0aa40625d..80745fb43cb39b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
@@ -5,12 +5,12 @@ slug: /commands/find-window
displayed_sidebar: docs
---
-**Find window** ( *izquierda* ; *superior* {; *parteVentana*} ) : Integer
+**Find window** ( *izquierda* : Integer ; *superior* : Integer {; *parteVentana* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| izquierda | Integer | → | Coordenada global izquierda |
-| superior | Integer | → | Coordenada global superior |
+| izquierda | Integer | → | Coordenada global izquierda |
+| superior | Integer | → | Coordenada global superior |
| parteVentana | Integer | ← | Número de parte de ventana |
| Resultado | Integer | ← | Número de referencia de la ventana |
@@ -34,6 +34,6 @@ El parámetro *parteVentana* devuelve 3 si se toca la ventana, de lo contrario 0
| | |
| --- | --- |
| Número de comando | 449 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
index d3bd23517fd532..b0088d8f33fa12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
@@ -5,11 +5,11 @@ slug: /commands/first-record
displayed_sidebar: docs
---
-**FIRST RECORD** {( *tabla* )}
+**FIRST RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual cargar el primer registro de la selección actual o Tabla por defecto si se omite |
+| tabla | Table | → | Tabla de la cual cargar el primer registro de la selección actual o Tabla por defecto si se omite |
@@ -40,7 +40,7 @@ El siguiente ejemplo carga el primer registro de la tabla \[Clientes\]:
| | |
| --- | --- |
| Número de comando | 50 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
index 5fed536ffc9045..6e2a18004e0ab4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
@@ -5,11 +5,11 @@ slug: /commands/flush-cache
displayed_sidebar: docs
---
-**FLUSH CACHE** {( tam | * )}
+**FLUSH CACHE** ({ tam | * })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tam | * | Real, Operador | → | * para liberar la memoria caché completamente, o número de bytes a liberar en la caché |
+| tam | * | Real, Operador | → | * para liberar la memoria caché completamente, o número de bytes a liberar en la caché |
@@ -36,6 +36,6 @@ Normalmente, no es necesario llamar a este comando, ya que 4D guarda las modific
| | |
| --- | --- |
| Número de comando | 297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
index ea9c959ecc25ae..66ab90ee545967 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón. El método de objet
| | |
| --- | --- |
| Número de comando | 278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
index fcc13edc043056..bd4bacbed1a8fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
@@ -5,11 +5,11 @@ slug: /commands/folder-list
displayed_sidebar: docs
---
-**FOLDER LIST** ( *nombreRuta* ; *directorios* )
+**FOLDER LIST** ( *nombreRuta* : Text ; *directorios* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreRuta | Text | → | Ruta de acceso del volumen, directorio o carpeta |
+| nombreRuta | Text | → | Ruta de acceso del volumen, directorio o carpeta |
| directorios | Text array | ← | Nombres de los directorios presentes en esta ubicación |
@@ -30,7 +30,7 @@ Si no hay carpetas en la ubicación especificada, el comando devuelve un array v
| | |
| --- | --- |
| Número de comando | 473 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
index 2c7d03fc1e3fc2..75c0f44406a299 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
@@ -5,12 +5,12 @@ slug: /commands/font-file
displayed_sidebar: docs
---
-**Font file** ( *familiaFuente* {; *estiloFuente*} ) : any
+**Font file** ( *familiaFuente* : Text {; *estiloFuente* : Integer} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| familiaFuente | Text | → | Nombre de la familia de fuente |
-| estiloFuente | Integer | → | Estilo de fuente: 0=normal (por defecto), 1=negrita, 2=itálica |
+| familiaFuente | Text | → | Nombre de la familia de fuente |
+| estiloFuente | Integer | → | Estilo de fuente: 0=normal (por defecto), 1=negrita, 2=itálica |
| Resultado | Null, Object | ← | Objeto archivo fuente |
@@ -54,6 +54,6 @@ Desea asegurarse de que la fuente utilizada en un área de texto esté disponibl
| | |
| --- | --- |
| Número de comando | 1700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
index 167d2cd154d51d..4c53b9834e3d31 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
@@ -5,12 +5,12 @@ slug: /commands/font-list
displayed_sidebar: docs
---
-**FONT LIST** ( *fuentes* {; *tipoLista*} )
+**FONT LIST** ( *fuentes* : Text array {; *tipoLista* : Integer, *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| fuentes | Text array | ← | Array de nombres de fuentes disponibles |
-| tipoLista | Integer, * | → | Tipo de lista de fuente a devolver o * para devolver los nombres de fuente en macOS |
+| tipoLista | Integer, * | → | Tipo de lista de fuente a devolver o * para devolver los nombres de fuente en macOS |
@@ -81,6 +81,6 @@ Usted quiere obtener una lista de fuentes recientes:
| | |
| --- | --- |
| Número de comando | 460 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
index e31ab15affe95b..10b1b3712bb8db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
@@ -5,11 +5,11 @@ slug: /commands/font-style-list
displayed_sidebar: docs
---
-**FONT STYLE LIST** ( *familiaFuiente* ; *listaEstilosFuente* ; *listaNomsFuente* )
+**FONT STYLE LIST** ( *familiaFuiente* : Text ; *listaEstilosFuente* : Text array ; *listaNomsFuente* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| familiaFuiente | Text | → | Nombre de la familia de fuente |
+| familiaFuiente | Text | → | Nombre de la familia de fuente |
| listaEstilosFuente | Text array | ← | Lista de estilos fuente soportados por la familia de fuente |
| listaNomsFuente | Text array | ← | Lista de nombres completos soportados por la familia de fuente |
@@ -64,6 +64,6 @@ Usted desea seleccionar estilos de la familia de fuentes "Verdana" (si está dis
| | |
| --- | --- |
| Número de comando | 1362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
index 8be3644a61664d..3c385e9817b377 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
@@ -5,12 +5,12 @@ slug: /commands/form-convert-to-dynamic
displayed_sidebar: docs
---
-**FORM Convert to dynamic** ( {*tabla* ;} *nomFormulario* ) : Object
+**FORM Convert to dynamic** ( {*tabla* : Table ;} *nomFormulario* : Text ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de formulario |
-| nomFormulario | Text | → | Nombre de un proyecto "clásico" o formulario tabla |
+| tabla | Table | → | Tabla de formulario |
+| nomFormulario | Text | → | Nombre de un proyecto "clásico" o formulario tabla |
| Resultado | Object | ← | nomFormulario convertido a formulario dinámico |
@@ -63,6 +63,6 @@ Si ejecuta el código:
| | |
| --- | --- |
| Número de comando | 1570 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
index 9ca7971f01e32e..8478c136ea2f16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
index 7535b0729099a9..6d1206aa4ad766 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Desea cargar una imagen según el esquema actual del formulario:
| | |
| --- | --- |
| Número de comando | 1761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
index 49ea856724f8ed..48711a7a67586d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
@@ -5,11 +5,11 @@ slug: /commands/form-get-current-page
displayed_sidebar: docs
---
-**FORM Get current page** {( * )} : Integer
+**FORM Get current page** ( * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve el número de página de subformulario actual |
+| * | Operador | → | Devuelve el número de página de subformulario actual |
| Resultado | Integer | ← | Número de la página del formulario mostrada actualmente |
@@ -75,6 +75,6 @@ En un formulario, si selecciona un elemento de menú de la barra de menús o si
| | |
| --- | --- |
| Número de comando | 276 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
index da03e08281f5fb..44e16c14215b0c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-entry-order
displayed_sidebar: docs
---
-**FORM GET ENTRY ORDER** ( *nomObjetos* {; numPag | * } )
+**FORM GET ENTRY ORDER** ( *nomObjetos* : Text array {; numPag | * } )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| nomObjetos | Text array | ← | Nombres de objetos ordenados por orden de entrada |
-| numPag | * | Entero largo, Operador | → | Número de la página para la que se obtiene el orden de entrada definido (página actual si se omite), o * para obtener el orden de entrada real de la página actual |
+| numPag | * | Entero largo, Operador | → | Número de la página para la que se obtiene el orden de entrada definido (página actual si se omite), o * para obtener el orden de entrada real de la página actual |
@@ -57,6 +57,6 @@ Puede excluir ciertos objetos del orden de entrada:
| | |
| --- | --- |
| Número de comando | 1469 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
index c0164803b70b51..34d412e624b5e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-horizontal-resizing
displayed_sidebar: docs
---
-**FORM GET HORIZONTAL RESIZING** ( *redimension* {; *anchoMin* {; *anchoMax*}} )
+**FORM GET HORIZONTAL RESIZING** ( *redimension* : Boolean {; *anchoMin* : Integer {; *anchoMax* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1077 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
index bc6a29b0d1cf21..c0b9f91a328c4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
@@ -5,16 +5,15 @@ slug: /commands/form-get-names
displayed_sidebar: docs
---
-**FORM GET NAMES** ( {*tabla* ;} *arrayNoms* {; *filtro* {; *marcador*}}{; *} )
+**FORM GET NAMES** ( {*tabla* : Table ;} *arrayNoms* : Text array {; *filtro* : Text {; *marcador* : Real}}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Referencia de tabla |
+| tabla | Table | → | Referencia de tabla |
| arrayNoms | Text array | ← | Array de nombres de formulario |
-| filtro | Text | → | Filtro de nombres |
-| marcador | Real | → | Marcador para versión mínima a devolver |
-| ← | Nuevo valor |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| filtro | Text | → | Filtro de nombres |
+| marcador | Real | ↔ | *in:* Marker for minimum version to return
*out:* New value |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -73,6 +72,6 @@ Ejemplos de uso típicos:
| | |
| --- | --- |
| Número de comando | 1167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
index 055e58a73b46f6..721ba2867da343 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
@@ -5,14 +5,14 @@ slug: /commands/form-get-objects
displayed_sidebar: docs
---
-**FORM GET OBJECTS** ( *arrObjetos* {; *arrVariables* {; *arrPags*}} {; *opcionPag*} )
+**FORM GET OBJECTS** ( *arrObjetos* : Text array {; *arrVariables* : Pointer array {; *arrPags* : Integer array}} {; *opcionPag* : Integer, *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| arrObjetos | Text array | ← | Nombre de los objetos del formulario |
| arrVariables | Pointer array | ← | Punteros a variables o campos asociados a los objetos |
-| arrPags | Array integer | ← | Número de página de cada objeto |
-| opcionPag | Integer, * | → | 1=Página actual del formulario, 2=Todas las páginas, 4=Páginas heredadas
Si se pasa * (obsoleto) = página actual con objetos heredados |
+| arrPags | Integer array | ← | Número de página de cada objeto |
+| opcionPag | Integer, * | → | 1=Página actual del formulario, 2=Todas las páginas, 4=Páginas heredadas
Si se pasa * (obsoleto) = página actual con objetos heredados |
@@ -130,6 +130,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 898 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
index 54bc8fb1fb6d4c..17f926654f0fc3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-properties
displayed_sidebar: docs
---
-**FORM GET PROPERTIES** ( {*tabla* ;} *nomForm* ; *ancho* ; *alto* {; *numPags* {; *largoFijo* {; *altFijo* {; *titulo*}}}} )
+**FORM GET PROPERTIES** ( {*tabla* : Table ;} *nomForm* : Text ; *ancho* : Integer ; *alto* : Integer {; *numPags* : Integer {; *largoFijo* : Boolean {; *altFijo* : Boolean {; *titulo* : Text}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del formulario o tabla por defecto, si se omite |
-| nomForm | Text | → | Nombre del formulario |
+| tabla | Table | → | Tabla del formulario o tabla por defecto, si se omite |
+| nomForm | Text | → | Nombre del formulario |
| ancho | Integer | ← | Ancho del formulario (en píxeles) |
| alto | Integer | ← | Altura del formulario (en píxeles) |
| numPags | Integer | ← | Número de páginas en el formulario |
@@ -47,6 +47,6 @@ El parámetro *título* devuelve el título de la ventana del formulario, tal co
| | |
| --- | --- |
| Número de comando | 674 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
index 95e6b158ce147a..83c2f710852bc5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-vertical-resizing
displayed_sidebar: docs
---
-**FORM GET VERTICAL RESIZING** ( *redimension* {; *alturaMin* {; *alturaMax*}} )
+**FORM GET VERTICAL RESIZING** ( *redimension* : Boolean {; *alturaMin* : Integer {; *alturaMax* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1078 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
index 89e030c17d907c..7cef6a12619400 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
@@ -5,12 +5,12 @@ slug: /commands/form-goto-page
displayed_sidebar: docs
---
-**FORM GOTO PAGE** ( *numPag* {; *} )
+**FORM GOTO PAGE** ( *numPag* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numPag | Integer | → | Número de la página a mostrar |
-| * | Operador | → | Cambia la página del subformulario actual |
+| numPag | Integer | → | Número de la página a mostrar |
+| * | Operador | → | Cambia la página del subformulario actual |
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón que muestra una pág
| | |
| --- | --- |
| Número de comando | 247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
index b17d552956b1b2..300688beefeb5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
index dd08ba8589ed6e..d90149f85baf5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
index 949c1511033d33..8702fa4e5d8112 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea llamado por un comando de menú
| | |
| --- | --- |
| Número de comando | 249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
index 6a10e509867bca..35da5c024b05a5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
@@ -5,14 +5,14 @@ slug: /commands/form-screenshot
displayed_sidebar: docs
---
-**FORM SCREENSHOT** ( {{*tabla* ;} *nomForm* ;} *imagForm* {; *pagNum*} )
+**FORM SCREENSHOT** ( {{*tabla* : Table ;} *nomForm* : Text ;} *imagForm* : Picture {; *pagNum* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del formulario |
-| nomForm | Text | → | Nombre del formulario |
+| tabla | Table | → | Tabla del formulario |
+| nomForm | Text | → | Nombre del formulario |
| imagForm | Picture | ← | Imagen del formulario en ejecución si el primer parámetro se omite, o
Imagen del formulario en el editor de formularios si se pasa un nombre de formulario |
-| pagNum | Integer | → | Número de página del formulario |
+| pagNum | Integer | → | Número de página del formulario |
@@ -42,6 +42,6 @@ Por defecto, el comando devuelve una captura de pantalla de la página 1 del for
| | |
| --- | --- |
| Número de comando | 940 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
index 3ed40b05b5fe05..dde1438cfa5903 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-set-entry-order
displayed_sidebar: docs
---
-**FORM SET ENTRY ORDER** ( *nomObjetos* {; *numPag*} )
+**FORM SET ENTRY ORDER** ( *nomObjetos* : Text array {; *numPag* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomObjetos | Text array | → | Array de nombres de objetos en su orden de entrada esperado |
-| numPag | Integer | → | Número de la página para definir el orden de entrada (página actual si se omite) |
+| nomObjetos | Text array | → | Array de nombres de objetos en su orden de entrada esperado |
+| numPag | Integer | → | Número de la página para definir el orden de entrada (página actual si se omite) |
@@ -59,6 +59,6 @@ Usted desea definir el orden de entrada de los objetos en el formulario basado e
| | |
| --- | --- |
| Número de comando | 1468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
index ae751cd8c099ba..68c375c093d5e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-horizontal-resizing
displayed_sidebar: docs
---
-**FORM SET HORIZONTAL RESIZING** ( *redimension* {; *anchoMin* {; *anchoMax*}} )
+**FORM SET HORIZONTAL RESIZING** ( *redimension* : Boolean {; *anchoMin* : Integer {; *anchoMax* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| redimension | Boolean | → | True: el formulario es redimensionable horizontalmente False: El formulario no puede redimensionarse horizontalmente |
-| anchoMin | Integer | → | ancho mínimo del formulario (píxeles) |
-| anchoMax | Integer | → | ancho máximo del formulario (píxeles) |
+| redimension | Boolean | → | True: el formulario es redimensionable horizontalmente False: El formulario no puede redimensionarse horizontalmente |
+| anchoMin | Integer | → | ancho mínimo del formulario (píxeles) |
+| anchoMax | Integer | → | ancho máximo del formulario (píxeles) |
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 892 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
index 1a981aaff11c75..cebba2168b9274 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-input
displayed_sidebar: docs
---
-**FORM SET INPUT** ( {*tabla* ;} *form* {; *formUsuario* {; *}} )
+**FORM SET INPUT** ( {*tabla* : Table ;} *form* : Text, Object {; *formUsuario* : Text {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual definir el formulario de entrada o Tabla por defecto, si se omite |
-| form | Text, Object | → | Nombre del formulario a definir como formulario de entrada |
-| formUsuario | Text | → | Nombre del formulario usuario a utilizar |
-| * | Operator | → | Tamaño de ventana automático |
+| tabla | Table | → | Tabla para la cual definir el formulario de entrada o Tabla por defecto, si se omite |
+| form | Text, Object | → | Nombre del formulario a definir como formulario de entrada |
+| formUsuario | Text | → | Nombre del formulario usuario a utilizar |
+| * | Operator | → | Tamaño de ventana automático |
@@ -112,6 +112,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 55 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
index 4c0f72510cfa6a..54bc6ba71a5fad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-output
displayed_sidebar: docs
---
-**FORM SET OUTPUT** ( {*tabla* ;} *form* {; *formUsuario*} )
+**FORM SET OUTPUT** ( {*tabla* : Table ;} *form* : Text, Object {; *formUsuario* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual definir el formulario de salida, o Tabla por defecto, si se omite |
-| form | Text, Object | → | Nombre del formulario |
-| formUsuario | Text | → | Nombre del formulario usuario a utilizar |
+| tabla | Table | → | Tabla para la cual definir el formulario de salida, o Tabla por defecto, si se omite |
+| form | Text, Object | → | Nombre del formulario |
+| formUsuario | Text | → | Nombre del formulario usuario a utilizar |
@@ -75,6 +75,6 @@ Los siguientes ejemplos usan la ruta a un formulario .json para imprimir los reg
| | |
| --- | --- |
| Número de comando | 54 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
index 23230a5dfeed9e..6294542d5c1b07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-size
displayed_sidebar: docs
---
-**FORM SET SIZE** ( {*objeto* ;} *horizontal* ; *vertical* {; *} )
+**FORM SET SIZE** ( {*objeto* : Text ;} *horizontal* : Integer ; *vertical* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Text | → | Nombre del objeto que indica los límites del formulario |
-| horizontal | Integer | → | Si se pasa *: margen horizontal (píxeles) Si se omite *: ancho (píxeles) |
-| vertical | Integer | → | Si se pasa *: margen vertical (píxeles) Si se omite *: altura (píxeles) |
-| * | Operador | → | • Si se pasa: añadir las márgenes definidas por los parámetros horizontal y vertical (tamaño automático o basado en un objeto, si se pasa un objeto) • Si se omite: utilizar horizontal y vertical como ancho y altura del formulario |
+| objeto | Text | → | Nombre del objeto que indica los límites del formulario |
+| horizontal | Integer | → | Si se pasa *: margen horizontal (píxeles) Si se omite *: ancho (píxeles) |
+| vertical | Integer | → | Si se pasa *: margen vertical (píxeles) Si se omite *: altura (píxeles) |
+| * | Operador | → | • Si se pasa: añadir las márgenes definidas por los parámetros horizontal y vertical (tamaño automático o basado en un objeto, si se pasa un objeto) • Si se omite: utilizar horizontal y vertical como ancho y altura del formulario |
@@ -127,6 +127,6 @@ El método de objeto asociado con este botón es el siguiente:
| | |
| --- | --- |
| Número de comando | 891 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
index 15afc7138a831d..17dd453e655d8e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-vertical-resizing
displayed_sidebar: docs
---
-**FORM SET VERTICAL RESIZING** ( *redimension* {; *alturaMin* {; *alturaMax*}} )
+**FORM SET VERTICAL RESIZING** ( *redimension* : Boolean {; *alturaMin* : Integer {; *alturaMax* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| redimension | Boolean | → | True: el formulario es redimensionable verticalmente False: el formulario no puede ser redimensionado verticalmente |
-| alturaMin | Integer | → | Altura mínima del formulario (píxeles) |
-| alturaMax | Integer | → | Altura máxima del formulario (píxeles) |
+| redimension | Boolean | → | True: el formulario es redimensionable verticalmente False: el formulario no puede ser redimensionado verticalmente |
+| alturaMin | Integer | → | Altura mínima del formulario (píxeles) |
+| alturaMax | Integer | → | Altura máxima del formulario (píxeles) |
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 893 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
index 782b698a6036ac..b1bdc8fbda2a72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Llamar este comando es necesario cuando se utiliza el comando [FORM LOAD](../com
| | |
| --- | --- |
| Número de comando | 1299 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
index 1590c5d645c10d..e459362c8c9e3e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-process
displayed_sidebar: docs
---
-**Frontmost process** {( * )} : Integer
+**Frontmost process** ( * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Número del proceso de la primera ventana no flotante |
+| * | Operador | → | Número del proceso de la primera ventana no flotante |
| resultado | Integer | ← | Número del proceso cuyas ventanas están en el primer plano |
@@ -39,6 +39,6 @@ Ver el ejemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número de comando | 327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
index 08b8acd5b8ac46..7979aa580cb34d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-window
displayed_sidebar: docs
---
-**Frontmost window** {( * )} : Integer
+**Frontmost window** ( * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, tiene en cuenta las ventanas flotantes Si se omite, ignora las ventanas flotantes |
+| * | Operador | → | Si se especifica, tiene en cuenta las ventanas flotantes Si se omite, ignora las ventanas flotantes |
| Resultado | Integer | ← | Número de referencia de ventana |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 447 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
index 2849bdbc2ed7b7..300f51a79ec2c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
@@ -5,14 +5,14 @@ slug: /commands/generate-certificate-request
displayed_sidebar: docs
---
-**GENERATE CERTIFICATE REQUEST** ( *llavePriv* ; *peticionCertif* ; *arrayCod* ; *arrNombres* )
+**GENERATE CERTIFICATE REQUEST** ( *llavePriv* : Blob ; *peticionCertif* : Blob ; *arrayCod* : Integer array ; *arrNombres* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| llavePriv | Blob | → | BLOB que contiene la llave privada |
+| llavePriv | Blob | → | BLOB que contiene la llave privada |
| peticionCertif | Blob | ← | BLOB que recibe la solicitud del certificado |
-| arrayCod | Integer array | → | La lista de códigos de información |
-| arrNombres | Text array | → | Lista de nombres |
+| arrayCod | Integer array | → | La lista de códigos de información |
+| arrNombres | Text array | → | Lista de nombres |
@@ -93,6 +93,6 @@ Este es el método del botón **Generar**
| | |
| --- | --- |
| Número de comando | 691 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
index 8c31345e7ee6fb..0341c4c35232ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
@@ -5,13 +5,13 @@ slug: /commands/generate-digest
displayed_sidebar: docs
---
-**Generate digest** ( *param* ; *algoritmo* {; *} ) : Text
+**Generate digest** ( *param* : Blob, Text ; *algoritmo* : Integer {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| param | Blob, Text | → | Blob o texto para el cual obtener un extracto |
-| algoritmo | Integer | → | Algoritmo utilizado para devolver la llave: 0 = Digest MD5, 1 = Digest SHA1 |
-| * | Operador | → | Codificar digest en Base64URL |
+| param | Blob, Text | → | Blob o texto para el cual obtener un extracto |
+| algoritmo | Integer | → | Algoritmo utilizado para devolver la llave: 0 = Digest MD5, 1 = Digest SHA1 |
+| * | Operador | → | Codificar digest en Base64URL |
| Resultado | Text | ← | Valor de la llave digest |
@@ -90,6 +90,6 @@ Estos ejemplos ilustran cómo recuperar el extracto de un texto:
| | |
| --- | --- |
| Número de comando | 1147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
index d78d0e1625263d..5083c96a14d906 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
@@ -5,13 +5,13 @@ slug: /commands/generate-encryption-keypair
displayed_sidebar: docs
---
-**GENERATE ENCRYPTION KEYPAIR** ( *llavePriv* ; *llavepublica* {; *longitud*} )
+**GENERATE ENCRYPTION KEYPAIR** ( *llavePriv* : Blob ; *llavepublica* : Blob {; *longitud* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| llavePriv | Blob | ← | BLOB que contiene la llave privada |
| llavepublica | Blob | ← | BLOB que contiene la llave pública |
-| longitud | Integer | → | Longitud de la llave (bits) [512...2048] Valor por defecto = 512 |
+| longitud | Integer | → | Longitud de la llave (bits) [512...2048] Valor por defecto = 512 |
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [ENCRYPT BLOB](encrypt-blob.md "ENCRYPT BLOB").
| | |
| --- | --- |
| Número de comando | 688 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
index 4420f1c263f3f7..5536e3998fcff4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/generate-password-hash
displayed_sidebar: docs
---
-**Generate password hash** ( *contrasena* {; *opciones*} ) : Text
+**Generate password hash** ( *contrasena* : Text {; *opciones* : Object} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| contrasena | Text | → | La contraseña del usuario. Sólo se utilizan los primeros 72 caracteres. |
-| opciones | Object | → | Un objeto que contiene opciones. |
+| contrasena | Text | → | La contraseña del usuario. Sólo se utilizan los primeros 72 caracteres. |
+| opciones | Object | → | Un objeto que contiene opciones. |
| Resultado | Text | ← | Devuelve la contraseña hash. |
@@ -73,6 +73,6 @@ Este ejemplo genera un hash de contraseña utilizando bcrypt con un factor de co
| | |
| --- | --- |
| Número de comando | 1533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
index 1cd8689c10e798..02abf7dadbb165 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
@@ -5,12 +5,12 @@ slug: /commands/get-4d-file
displayed_sidebar: docs
---
-**Get 4D file** ( *archivo* {; *} ) : Text
+**Get 4D file** ( *archivo* : Integer {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| archivo | Integer | → | Tipo de archivo |
-| * | Operador | → | Archivo devuelto de la base local |
+| archivo | Integer | → | Tipo de archivo |
+| * | Operador | → | Archivo devuelto de la base local |
| Resultado | Text | ← | Ruta al archivo 4D |
@@ -75,6 +75,6 @@ Usted quiere obtener la ruta del último archivo de backup:
| | |
| --- | --- |
| Número de comando | 1418 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
index 20a24aab8bc964..0e63841ad40fb9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
@@ -5,13 +5,13 @@ slug: /commands/get-4d-folder
displayed_sidebar: docs
---
-**Get 4D folder** {( *carpeta* {; *opciones*} {; *})} : Text
+**Get 4D folder** ( *carpeta* : Integer {; *opciones* : Object} {; *}) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| carpeta | Integer | → | Tipo de carpeta (si se omite = carpeta activa 4D) |
-| opciones | Object | → | Configuración de la ruta de la carpeta de la base 4D Client |
-| * | Operador | → | Devuelve la carpeta de la base local |
+| carpeta | Integer | → | Tipo de carpeta (si se omite = carpeta activa 4D) |
+| opciones | Object | → | Configuración de la ruta de la carpeta de la base 4D Client |
+| * | Operador | → | Devuelve la carpeta de la base local |
| Resultado | Text | ← | Ruta de acceso a la carpeta designada |
@@ -214,7 +214,7 @@ Si el parámetro *carpeta* no es válido o si la ruta de acceso devuelta está v
| | |
| --- | --- |
| Número de comando | 485 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
index d3405f85a59ee9..7b15c1319e72cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-blobs-cache-priority
displayed_sidebar: docs
---
-**Get adjusted blobs cache priority** ( *tabla* ) : Integer
+**Get adjusted blobs cache priority** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual el valor de prioridad de los "blobs" tiene que ser recuperado |
+| tabla | Table | → | Tabla para la cual el valor de prioridad de los "blobs" tiene que ser recuperado |
| Resultado | Integer | ← | Valor de prioridad actual para los campos "blobs" |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1428 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
index bff993d348a0c3..a4f5f23d6c8261 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-index-cache-priority
displayed_sidebar: docs
---
-**Get adjusted index cache priority** ( *campo* ) : Integer
+**Get adjusted index cache priority** ( *campo* : Field ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo para el cual se debe recuperar la prioridad del índice |
+| campo | Field | → | Campo para el cual se debe recuperar la prioridad del índice |
| Resultado | Integer | ← | Valor de la prioridad actual para los índices |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1427 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
index 7045e2c54361e4..141818a228c6e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-table-cache-priority
displayed_sidebar: docs
---
-**Get adjusted table cache priority** ( *tabla* ) : Integer
+**Get adjusted table cache priority** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual se debe recuperar el valor de prioridad escalar |
+| tabla | Table | → | Tabla para la cual se debe recuperar el valor de prioridad escalar |
| Resultado | Integer | ← | Valor de prioridad actual para campos escalares |
@@ -33,6 +33,6 @@ Los tipos de campos de datos escalares incluyen campos de tipo fecha/hora, numé
| | |
| --- | --- |
| Número de comando | 1426 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
index 1a3adc14f7c827..c77c44ccb9db08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/get-allowed-methods
displayed_sidebar: docs
---
-**GET ALLOWED METHODS** ( *arrMetodos* )
+**GET ALLOWED METHODS** ( *arrMetodos* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Este ejemplo autoriza un conjunto de métodos específicos para crear un informe
| | |
| --- | --- |
| Número de comando | 908 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
index dc1bb2046a2696..8cc5d611def706 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/get-application-color-scheme
displayed_sidebar: docs
---
-**Get Application color scheme** {( * )} : Text
+**Get Application color scheme** ( * ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve el esquema de color de la base local |
+| * | Operador | → | Devuelve el esquema de color de la base local |
| Resultado | Text | ← | Esquema de color de la aplicación actual |
@@ -49,6 +49,6 @@ Consulte la descripción del comando [SET APPLICATION COLOR SCHEME](set-applicat
| | |
| --- | --- |
| Número de comando | 1763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
index e988e73d97fca1..51d2b1b4a45a42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Por defecto, las aserciones están activas pero pueden haber sido desactivadas u
| | |
| --- | --- |
| Número de comando | 1130 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
index 30d474a3e685a8..c42ae37556a673 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/get-automatic-relations
displayed_sidebar: docs
---
-**GET AUTOMATIC RELATIONS** ( *uno* ; *muchos* )
+**GET AUTOMATIC RELATIONS** ( *uno* : Boolean ; *muchos* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [GET FIELD RELATION](get-field-relation.md "GET
| | |
| --- | --- |
| Número de comando | 899 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
index 4dd9ddc8f7240d..758887c21a3d19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número de comando | 1432 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
index 9564ffa771afb5..fccc276882bfba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si no hay ninguna impresora instalada, se genera un error.
| | |
| --- | --- |
| Número de comando | 788 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
index f4aad65d31e72b..080a804997a2aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-localization
displayed_sidebar: docs
---
-**Get database localization** {( {*tipoLeng*}{;}{*} )} : Text
+**Get database localization** ( {*tipoLeng* : Integer}{;}{*} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoLeng | Integer | → | Tipo de lenguaje |
-| * | Operador | → | Devuelve información sobre la base local |
+| tipoLeng | Integer | → | Tipo de lenguaje |
+| * | Operador | → | Devuelve información sobre la base local |
| Resultado | Text | ← | Lenguaje actual de la base |
@@ -57,6 +57,6 @@ El lenguaje actual de la base permite definir la carpeta .lproj en la que el pro
| | |
| --- | --- |
| Número de comando | 1009 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
index 5e662c934b418b..dd31309d3a92d6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-parameter
displayed_sidebar: docs
---
-**Get database parameter** ( {*tabla* ;} *selector* {; *valor*} ) : Real
+**Get database parameter** ( {*tabla* : Table ;} *selector* : Integer {; *valor* : Text} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del parámetro o Tabla por defecto si se omite este parámetro |
-| selector | Integer | → | Código del parámetro de la base |
+| tabla | Table | → | Tabla del parámetro o Tabla por defecto si se omite este parámetro |
+| selector | Integer | → | Código del parámetro de la base |
| valor | Text | ← | Valor alfa del parámetro |
| Resultado | Real | ← | Valor actual del parámetro |
@@ -1098,4 +1098,4 @@ En el [Método base On Startup](metodo-base-on-startup.md), usted escribe:
| | |
| --- | --- |
| Número de comando | 643 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
index 704874db7845de..537a7c4f02ac07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si ningún usuario por defecto está definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 826 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
index 7a610d1610aba2..00245f35c1e18e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-document-icon
displayed_sidebar: docs
---
-**GET DOCUMENT ICON** ( *rutaDoc* ; *icono* {; *tamaño*} )
+**GET DOCUMENT ICON** ( *rutaDoc* : Text ; *icono* : Picture, Picture {; *tamaño* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaDoc | Text | → | Nombre o ruta de acceso del archivo del cual obtener el icono o cadena vacía para mostrar la caja de diálogo de apertura de archivos |
+| rutaDoc | Text | → | Nombre o ruta de acceso del archivo del cual obtener el icono o cadena vacía para mostrar la caja de diálogo de apertura de archivos |
| icono | Picture, Picture | ← | Icono de documentación |
-| tamaño | Integer | → | Tamaño del icono (en píxeles) |
+| tamaño | Integer | → | Tamaño del icono (en píxeles) |
@@ -33,7 +33,7 @@ El parámetro opcional *tamaño* permite indicar las dimensiones en píxeles del
| | |
| --- | --- |
| Número de comando | 700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
index 22725f63ecf88c..22e3b7dd512613 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-position
displayed_sidebar: docs
---
-**Get document position** ( *docRef* ) : Real
+**Get document position** ( *docRef* : Time ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento |
+| docRef | Time | → | Número de referencia del documento |
| Resultado | Real | ← | Posición en el archivo (expresada en bytes) a partir del inicio del archivo |
@@ -31,6 +31,6 @@ Get document position devuelve la posición, a partir del inicio del documento,
| | |
| --- | --- |
| Número de comando | 481 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
index 9c7deec5649764..a921bc8b9ea902 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-properties
displayed_sidebar: docs
---
-**GET DOCUMENT PROPERTIES** ( *doc* ; *bloqueado* ; *invisible* ; creado el ; creado a las ; modificado el ; modificado a las )
+**GET DOCUMENT PROPERTIES** ( *doc* : Text ; *bloqueado* : Boolean ; *invisible* : Boolean ; creado el ; creado a las ; modificado el ; modificado a las )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento |
+| doc | Text | → | Nombre del documento |
| bloqueado | Boolean | ← | Bloqueado (True) o no bloqueado (False) |
| invisible | Boolean | ← | Invisible (True) o visible (False) |
| creado el | Fecha | ← | Fecha de creación |
@@ -208,7 +208,7 @@ Una vez implementado en la base, tenemos todo lo que necesitamos para escribir e
| | |
| --- | --- |
| Número de comando | 477 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
index 487ec7a1eb9c42..c13003e58dd277 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/get-document-size
displayed_sidebar: docs
---
-**Get document size** ( *document* {; *} ) : Real
+**Get document size** ( *document* : Text, Time {; *} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| document | Text, Time | → | Número de referencia del documento o Nombre del documento |
-| * | Operador | → | En Mac OS únicamente: -si se omite, tamaño del data fork - si se especifica, tamaño del resource fork |
+| document | Text, Time | → | Número de referencia del documento o Nombre del documento |
+| * | Operador | → | En Mac OS únicamente: -si se omite, tamaño del data fork - si se especifica, tamaño del resource fork |
| Resultado | Real | ← | Tamaño (expresado en bytes) del documento |
@@ -35,7 +35,7 @@ En Macintosh, si no pasa el parámetro opcional *\**, se devuelve el tamaño del
| | |
| --- | --- |
| Número de comando | 479 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
index 9e8ce3b04a106e..45e59a9e221450 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ Este es un ejemplo de cómo procesar inmediatamente los caracteres introducidos
| | |
| --- | --- |
| Número de comando | 655 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
index f1c7c31f42099e..a84f7cab5d4ba9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
@@ -5,11 +5,11 @@ slug: /commands/get-external-data-path
displayed_sidebar: docs
---
-**Get external data path** ( *elCampo* ) : Text
+**Get external data path** ( *elCampo* : Text, Blob, Picture ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elCampo | Text, Blob, Picture | → | Campo del cual obtener el lugar de almacenamiento |
+| elCampo | Text, Blob, Picture | → | Campo del cual obtener el lugar de almacenamiento |
| resultado | Text | ← | Ruta de acceso completa del archivo de almacenamiento externo |
@@ -37,6 +37,6 @@ Este comando devuelve una cadena vacía en los siguiente casos:
| | |
| --- | --- |
| Número de comando | 1133 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
index 8fcd596bac1965..05a8a5a610f8d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-entry-properties
displayed_sidebar: docs
---
-**GET FIELD ENTRY PROPERTIES** ( *ptrCamp* ; *lista* ; *obligatorio* ; *noEditable* ; *noModificable* )
**GET FIELD ENTRY PROPERTIES** ( *numTabla* ; *numCamp* ; *lista* ; *obligatorio* ; *noEditable* ; *noModificable* )
+**GET FIELD ENTRY PROPERTIES** ( *ptrCamp* : Puntero, Entero largo ; *lista* : Text ; *obligatorio* : Boolean ; *noEditable* : Boolean ; *noModificable* : Boolean )
**GET FIELD ENTRY PROPERTIES** ( *numTabla* : Puntero, Entero largo ; *numCamp* : Integer ; *lista* : Text ; *obligatorio* : Boolean ; *noEditable* : Boolean ; *noModificable* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ptrCamp|numTabla | Puntero, Entero largo | → | Puntero del campo o número de tabla |
-| numCamp | Integer | → | Número de campo si el número de tabla se pasa como primer parámetro |
+| ptrCamp|numTabla | Puntero, Entero largo | → | Puntero del campo o número de tabla |
+| numCamp | Integer | → | Número de campo si el número de tabla se pasa como primer parámetro |
| lista | Text | ← | Nombre de la lista asociada o cadena vacía |
| obligatorio | Boolean | ← | True = Obligatorio, False = Opcional |
| noEditable | Boolean | ← | True = No editable, False = Editable |
@@ -50,6 +50,6 @@ Si ninguna lista está asociada al campo o si el tipo del campo no permite la as
| | |
| --- | --- |
| Número de comando | 685 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
index c0673aa60a0bd7..bdefa1c73a2c33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-field-properties
displayed_sidebar: docs
---
-**GET FIELD PROPERTIES** ( *campPtr* ; *campTipo* {; *campLong* {; *indexado* {; *unico* {; *invisible*}}}} )
**GET FIELD PROPERTIES** ( *tablaNum* ; *numCamp* ; *campTipo* {; *campLong* {; *indexado* {; *unico* {; *invisible*}}}} )
+**GET FIELD PROPERTIES** ( *campPtr* : Puntero, Entero largo ; *campTipo* : Integer {; *campLong* : Integer {; *indexado* : Boolean {; *unico* : Boolean {; *invisible* : Boolean}}}} )
**GET FIELD PROPERTIES** ( *tablaNum* : Puntero, Entero largo ; *numCamp* : Integer ; *campTipo* : Integer {; *campLong* : Integer {; *indexado* : Boolean {; *unico* : Boolean {; *invisible* : Boolean}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campPtr | tablaNum | Puntero, Entero largo | → | Puntero de campo o Número de tabla |
-| numCamp | Integer | → | Número de campo si se pasa un número de tabla |
+| campPtr | tablaNum | Puntero, Entero largo | → | Puntero de campo o Número de tabla |
+| numCamp | Integer | → | Número de campo si se pasa un número de tabla |
| campTipo | Integer | ← | Tipo de campo |
| campLong | Integer | ← | Longitud del campo, si es alfanumérico |
| indexado | Boolean | ← | True = Indexado, False = No indexado |
@@ -81,6 +81,6 @@ Este ejemplo recupera en las variables *vTipo*, *vLong*, *vIndex*, *vUnico* y *v
| | |
| --- | --- |
| Número de comando | 258 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
index 9ad4f1398ab77a..949cde30f70f3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
@@ -5,14 +5,14 @@ slug: /commands/get-field-relation
displayed_sidebar: docs
---
-**GET FIELD RELATION** ( *campoN* ; *uno* ; *muchos* {; *} )
+**GET FIELD RELATION** ( *campoN* : Field ; *uno* : Integer ; *muchos* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoN | Field | → | Campo de inicio de una relación |
+| campoN | Field | → | Campo de inicio de una relación |
| uno | Integer | ← | Estado de la relación Muchos a Uno |
| muchos | Integer | ← | Estado de la relación Uno a Muchos |
-| * | Operador | → | • Si se pasa: uno y muchos devuelven el estado actual de la relación (valores 2 o 3 únicamente) • Si se omite (por defecto): uno y muchos puede devolver el valor 1 si la relación no ha sido modificada por programación |
+| * | Operador | → | • Si se pasa: uno y muchos devuelven el estado actual de la relación (valores 2 o 3 únicamente) • Si se omite (por defecto): uno y muchos puede devolver el valor 1 si la relación no ha sido modificada por programación |
@@ -89,6 +89,6 @@ El siguiente código ilustra las diferentes posibilidades ofrecidas por los coma
| | |
| --- | --- |
| Número de comando | 920 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
index bdfd3b5ba7b4d3..d033fd85614eb5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
@@ -5,11 +5,11 @@ slug: /commands/get-field-titles
displayed_sidebar: docs
---
-**GET FIELD TITLES** ( *tabla* ; *titulosCampos* ; *numCampos* )
+**GET FIELD TITLES** ( *tabla* : Table ; *titulosCampos* : Text array ; *numCampos* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual quiere conocer los nombres de los campos |
+| tabla | Table | → | Tabla de la cual quiere conocer los nombres de los campos |
| titulosCampos | Text array | ← | Nombres actuales de los campos |
| numCampos | Integer array | ← | Números de los campos |
@@ -35,6 +35,6 @@ En ambos casos, el comando no devuelve campos invisibles.
| | |
| --- | --- |
| Número de comando | 804 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
index 55b18c2aeacef3..3fd426600125d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/get-file-from-pasteboard
displayed_sidebar: docs
---
-**Get file from pasteboard** ( *indiceN* ) : Text
+**Get file from pasteboard** ( *indiceN* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| indiceN | Integer | → | N archivo incluido en la acción arrastrar |
+| indiceN | Integer | → | N archivo incluido en la acción arrastrar |
| Resultado | Text | ← | Ruta de acceso al archivo extraído del portapapeles |
@@ -47,6 +47,6 @@ El siguiente ejemplo puede utilizarse para recuperar en un array todas las rutas
| | |
| --- | --- |
| Número de comando | 976 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
index 6753f9b2a883cc..a84ec5b7365b68 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Desea verificar si el usuario actual pertenece al grupo "plugins":
| | |
| --- | --- |
| Número de comando | 1738 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
index 49173acfbf3592..287a45620d62b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-group-list
displayed_sidebar: docs
---
-**GET GROUP LIST** ( *nomGrupos* ; *numGrupos* )
+**GET GROUP LIST** ( *nomGrupos* : Text array ; *numGrupos* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP LIST o si otr
| | |
| --- | --- |
| Número de comando | 610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
index cfa4dd0d41026a..6ab02255b2aa46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-group-properties
displayed_sidebar: docs
---
-**GET GROUP PROPERTIES** ( *refGrupo* ; *nombre* ; *propietario* {; *miembros*} )
+**GET GROUP PROPERTIES** ( *refGrupo* : Integer ; *nombre* : Text ; *propietario* : Integer {; *miembros* : Integer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refGrupo | Integer | → | Número de referencia del grupo |
+| refGrupo | Integer | → | Número de referencia del grupo |
| nombre | Text | ← | Nombre del grupo |
| propietario | Integer | ← | Número de referencia del propietario del grupo |
| miembros | Integer array | ← | Miembros del grupo |
@@ -45,7 +45,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP PROPERTIES o
| | |
| --- | --- |
| Número de comando | 613 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
index 1eea1d0ee8641a..8324d285d02d0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlight
displayed_sidebar: docs
---
-**GET HIGHLIGHT** ( {* ;} *objeto* ; *inicioSel* ; *finSel* )
+**GET HIGHLIGHT** ( {* ;} *objeto* : Field, Variable, any ; *inicioSel* : Integer ; *finSel* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | Field, Variable, any | → | Nombre del objeto (si se especifica *) o campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | Field, Variable, any | → | Nombre del objeto (si se especifica *) o campo o variable (si se omite *) |
| inicioSel | Integer | ← | Posición del inicio de la selección de texto |
| finSel | Integer | ← | Posición del fin de la selección de texto |
@@ -69,6 +69,6 @@ Modificación del estilo del texto resaltado:
| | |
| --- | --- |
| Número de comando | 209 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
index 3ac6274c9cea50..27453f74634be4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlighted-records
displayed_sidebar: docs
---
-**GET HIGHLIGHTED RECORDS** ( {*tabla* ;} *nomConjunto* )
+**GET HIGHLIGHTED RECORDS** ( {*tabla* : Table ;} *nomConjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual leer los registros seleccionados Si se omite, tabla del formulario actual |
-| nomConjunto | Text | → | Conjunto en el cual guardar los registros seleccionados |
+| tabla | Table | → | Tabla de la cual leer los registros seleccionados Si se omite, tabla del formulario actual |
+| nomConjunto | Text | → | Conjunto en el cual guardar los registros seleccionados |
@@ -49,7 +49,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 902 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
index debd9bdd67f8dc..91aeaf51c5e7a5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
@@ -5,13 +5,13 @@ slug: /commands/get-indexed-string
displayed_sidebar: docs
---
-**Get indexed string** ( *resNum* ; *strNum* {; *resArchivo*} ) : Text
+**Get indexed string** ( *resNum* : Integer ; *strNum* : Integer {; *resArchivo* : Time} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de recurso o Atributo "id" del elemento "grupo" (XLIFF) |
-| strNum | Integer | → | Número de cadena o Atributo "id" del elemento "trans-unit" (XLIFF) |
-| resArchivo | Time | → | Número de referencia del archivo de recursos Si se omite: todos los archivos XLIFF o los archivos de recursos abiertos |
+| resNum | Integer | → | Número de recurso o Atributo "id" del elemento "grupo" (XLIFF) |
+| strNum | Integer | → | Número de cadena o Atributo "id" del elemento "trans-unit" (XLIFF) |
+| resArchivo | Time | → | Número de referencia del archivo de recursos Si se omite: todos los archivos XLIFF o los archivos de recursos abiertos |
| Resultado | Text | ← | Valor de la cadena indexada |
@@ -44,7 +44,7 @@ Si el recurso se encuentra, OK toma el valor 1, de lo contrario toma el valor 0
| | |
| --- | --- |
| Número de comando | 510 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
index 8d9774acc6e210..2b0960035a2441 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-font
displayed_sidebar: docs
---
-**Get list item font** ( {* ;} *lista* ; refElem | * ) : Text
+**Get list item font** ( {* ;} *lista* : Integer, Text ; refElem | * ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo lista (si se pasa *) |
-| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo lista (si se pasa *) |
+| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
| Resultado | Text | ← | Nombre de fuente |
@@ -37,6 +37,6 @@ Finalmente, puede pasar \* en *refElem*: en este caso, el comando se aplicará a
| | |
| --- | --- |
| Número de comando | 954 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
index 7757ab479dd070..b23fe5f2da6f98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-icon
displayed_sidebar: docs
---
-**GET LIST ITEM ICON** ( {* ;} *lista* ; refElem | * ; *icono* )
+**GET LIST ITEM ICON** ( {* ;} *lista* : Integer, Text ; refElem | * ; *icono* : Picture )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo de lista (si pasa *) |
-| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo de lista (si pasa *) |
+| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
| icono | Picture | ← | Icono asociado al elemento |
@@ -44,6 +44,6 @@ Si ningún icono está asociado al elemento, la variable icono se devuelve vací
| | |
| --- | --- |
| Número de comando | 951 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
index 9002dc26f7ea20..59d4c146fe6db7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-parameter-arrays
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *lista* ; *refElemento* ; *arrSelectores* {; *arrValores*} )
+**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *lista* : Integer, Text ; *refElemento* : Integer, * ; *arrSelectores* : Text array {; *arrValores* : Text array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena)Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista oNombre de objeto de tipo lista (si se pasa *) |
-| refElemento | Integer, * | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena)Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista oNombre de objeto de tipo lista (si se pasa *) |
+| refElemento | Integer, * | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
| arrSelectores | Text array | ← | Array de los nombres de parámetros |
| arrValores | Text array | ← | Array de los valores de los parámetros |
@@ -81,6 +81,6 @@ Si también quiere obtener los valores de los parámetros, escriba:
| | |
| --- | --- |
| Número de comando | 1195 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
index 59f54367a6b581..2f8e8508b992a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
@@ -5,14 +5,14 @@ slug: /commands/get-list-item-parameter
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER** ( {* ;} *lista* ; refElem | * ; *selector* ; *valor* )
+**GET LIST ITEM PARAMETER** ( {* ;} *lista* : Integer, Text ; refElem | * ; *selector* : Text ; *valor* : Text, Boolean, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de la lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
-| selector | Text | → | Constante del parámetro |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de la lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| selector | Text | → | Constante del parámetro |
| valor | Text, Boolean, Real | ← | Valor actual del parámetro |
@@ -41,6 +41,6 @@ En *selector*, puede pasar la constante Additional text o Standard action (en el
| | |
| --- | --- |
| Número de comando | 985 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
index d4ed4738478707..499a2438615339 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-properties
displayed_sidebar: docs
---
-**GET LIST ITEM PROPERTIES** ( {* ;} *lista* ; refElem | * ; *editable* {; *estilos* {; *icono* {; *color*}}} )
+**GET LIST ITEM PROPERTIES** ( {* ;} *lista* : Integer, Text ; refElem | * ; *editable* : Boolean {; *estilos* : Integer {; *icono* : Text, Integer {; *color* : Integer}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Operador, Entero largo | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Operador, Entero largo | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
| editable | Boolean | ← | TRUE = Editable, FALSE = No editable |
| estilos | Integer | ← | Estilo de fuente del elemento |
| icono | Text, Integer | ← | Número de recurso Mac OS ‘cicn’, o 65536 + número de recurso Mac OS ‘PICT’, o 131072 + número de referencia de imagen |
@@ -58,6 +58,6 @@ Para mayor información sobre estas propiedades, consulte la descripción del co
| | |
| --- | --- |
| Número de comando | 631 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
index 02a021cc4d2d10..ab6b7b348de082 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item
displayed_sidebar: docs
---
-**GET LIST ITEM** ( {* ;} *lista* ; posicionElem | * ; *refElem* ; *textoElem* {; *sublista* ; *desplegada*} )
+**GET LIST ITEM** ( {* ;} *lista* : Integer, Text ; posicionElem | * ; *refElem* : Integer ; *textoElem* : Text {; *sublista* : Integer ; *desplegada* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| posicionElem | * | Operador, Entero largo | → | Posición del elemento en lista(s) desplegada(s) o contraída(s) * para el elemento actual de la lista. |
+| * | Operador | → | Si se especifica lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| posicionElem | * | Operador, Entero largo | → | Posición del elemento en lista(s) desplegada(s) o contraída(s) * para el elemento actual de la lista. |
| refElem | Integer | ← | Número de referencia del elemento |
| textoElem | Text | ← | Texto del elemento de la lista |
| sublista | Integer | ← | Número de referencia de la sublista (si la hay) |
@@ -71,6 +71,6 @@ Consulte el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LI
| | |
| --- | --- |
| Número de comando | 378 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
index 8b2052540ef06f..49eee06f15fbb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-list-properties
displayed_sidebar: docs
---
-**GET LIST PROPERTIES** ( *lista* ; *apariencia* {; *icono* {; *altoLinea* {; *dobleClic* {; *multiSeleccion* {; *editable*}}}}} )
+**GET LIST PROPERTIES** ( *lista* : Integer ; *apariencia* : Integer {; *icono* : Integer {; *altoLinea* : Integer {; *dobleClic* : Integer {; *multiSeleccion* : Integer {; *editable* : Integer}}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de la lista |
+| lista | Integer | → | Número de referencia de la lista |
| apariencia | Integer | ← | Estilo gráfico de la lista 1 = Lista jerárquica a la Macintosh 2 = Lista jerárquica a la Windows |
| icono | Integer | ← | Referencia de recurso Mac OS ‘cicn’ |
| altoLinea | Integer | ← | Altura mínima de la línea expresada en píxeles |
@@ -43,6 +43,6 @@ Para una completa descripción de la apariencia, iconos de nodos, altura de lín
| | |
| --- | --- |
| Número de comando | 632 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
index 677b3aaafbac35..5dc56f96f2248c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
@@ -5,11 +5,11 @@ slug: /commands/get-macro-parameter
displayed_sidebar: docs
---
-**GET MACRO PARAMETER** ( *selector* ; *paramText* )
+**GET MACRO PARAMETER** ( *selector* : Integer ; *paramText* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Selección a utilizar |
+| selector | Integer | → | Selección a utilizar |
| paramText | Text | ← | Texto devuelto |
@@ -40,6 +40,6 @@ Consulte el ejemplo del comando [SET MACRO PARAMETER](set-macro-parameter.md "SE
| | |
| --- | --- |
| Número de comando | 997 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
index de83fcdc16782d..8ec12b99997868 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-bar-reference
displayed_sidebar: docs
---
-**Get menu bar reference** {( *proceso* )} : Text
+**Get menu bar reference** ( *proceso* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de referencia del proceso |
+| proceso | Integer | → | Número de referencia del proceso |
| Resultado | Text | ← | Identificador de la barra de menús |
@@ -45,6 +45,6 @@ Consulte el ejemplo del comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITE
| | |
| --- | --- |
| Número de comando | 979 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
index 3ec5932573ce40..c4922c58e4a92b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/get-menu-item-icon
displayed_sidebar: docs
---
-**GET MENU ITEM ICON** ( *menu* ; *lineamenu* ; *refIcono* {; *proceso*} )
+**GET MENU ITEM ICON** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *refIcono* : Text, Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
| refIcono | Text, Integer | ← | Nombre o número de imagen asociado con la línea de menú |
-| proceso | Integer | → | Número de proceso |
+| proceso | Integer | → | Número de proceso |
@@ -39,6 +39,6 @@ Si ningún icono está asociado a la línea de menú, el comando devuelve un val
| | |
| --- | --- |
| Número de comando | 983 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
index 5a98d01edc1b70..f25099b03d2d3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-key
displayed_sidebar: docs
---
-**Get menu item key** ( *menu* ; *lineamenu* {; *proceso*} ) : Integer
+**Get menu item key** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia de proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia de proceso |
| Resultado | Integer | ← | Código de caracter de la tecla de atajo estándar asociada a la línea de menú |
@@ -54,7 +54,7 @@ Para obtener un atajo asociado con un comando de menú, es útil implementar una
| | |
| --- | --- |
| Número de comando | 424 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
index 2767e4994cba4b..b9cc552bff207e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-mark
displayed_sidebar: docs
---
-**Get menu item mark** ( *menu* ; *lineamenu* {; *proceso*} ) : Text
+**Get menu item mark** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia de proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia de proceso |
| Resultado | Text | ← | Marca de línea del menú actual |
@@ -45,7 +45,7 @@ El siguiente ejemplo invierte la marca de una línea de menú:
| | |
| --- | --- |
| Número de comando | 428 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
index 93daa3f9c4e819..46865419446e1d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-method
displayed_sidebar: docs
---
-**Get menu item method** ( *menu* ; *lineaMenu* {; *proceso*} ) : Text
+**Get menu item method** ( *menu* : Integer, Text ; *lineaMenu* : Integer {; *proceso* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o Número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
-| proceso | Integer | → | Número de proceso |
+| menu | Integer, Text | → | Referencia de menú o Número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
+| proceso | Integer | → | Número de proceso |
| Resultado | Text | ← | Nombre del método |
@@ -35,6 +35,6 @@ El comando devuelve el nombre del método 4D como una cadena de caracteres (expr
| | |
| --- | --- |
| Número de comando | 981 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
index ae24d13cdabf62..65d8cc9c82dee7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-modifiers
displayed_sidebar: docs
---
-**Get menu item modifiers** ( *menu* ; *lineaMenu* {; *proceso*} ) : Integer
+**Get menu item modifiers** ( *menu* : Integer, Text ; *lineaMenu* : Integer {; *proceso* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
-| proceso | Integer | → | Número de proceso |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
+| proceso | Integer | → | Número de proceso |
| Resultado | Integer | ← | Tecla(s) de modificación asociada(s) a la línea de menú |
@@ -57,6 +57,6 @@ Consulte el ejemplo del comando [Get menu item key](get-menu-item-key.md "Get me
| | |
| --- | --- |
| Número de comando | 980 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
index 01780b3f0d07a5..54e5007bb96d18 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-item-parameter
displayed_sidebar: docs
---
-**Get menu item parameter** ( *menu* ; *lineaMenu* ) : Text
+**Get menu item parameter** ( *menu* : Integer, Text ; *lineaMenu* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
| Resultado | Text | ← | Parámetro personalizado de la línea de menú |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1003 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
index 71091ab8d090fe..0f974a4ebb704c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/get-menu-item-property
displayed_sidebar: docs
---
-**GET MENU ITEM PROPERTY** ( *menu* ; *lineaMenu* ; *propiedad* ; *valor* {; *proceso*} )
+**GET MENU ITEM PROPERTY** ( *menu* : Integer ; *lineaMenu* : Integer ; *propiedad* : Text ; *valor* : any {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer | → | Referencia de menú o número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
-| propiedad | Text | → | Tipo de propiedad |
+| menu | Integer | → | Referencia de menú o número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
+| propiedad | Text | → | Tipo de propiedad |
| valor | any | ← | Valor de la propiedad |
-| proceso | Integer | → | Número del proceso |
+| proceso | Integer | → | Número del proceso |
@@ -38,6 +38,6 @@ En el parámetro *propiedad*, pase la propiedad para la cual quiere obtener el v
| | |
| --- | --- |
| Número de comando | 972 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
index ed0026ce39069a..acf946e7577889 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-style
displayed_sidebar: docs
---
-**Get menu item style** ( *menu* ; *lineamenu* {; *proceso*} ) : Integer
+**Get menu item style** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
-| proceso | Integer | → | Process reference number |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
+| proceso | Integer | → | Process reference number |
| Resultado | Integer | ← | Estilo del comando de menú |
@@ -52,7 +52,7 @@ Para probar si un elemento de menú se muestra en negrita, escribe:
| | |
| --- | --- |
| Número de comando | 426 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
index 36ddba63423e2f..b2d81f1a89e8c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item
displayed_sidebar: docs
---
-**Get menu item** ( *menu* ; *lineamenu* {; *proceso*} ) : Text
+**Get menu item** ( *menu* : Integer, Text ; *lineamenu* : Integer {; *proceso* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| proceso | Integer | → | Número de referencia del proceso |
| Resultado | Text | ← | Texto del elemento de menú |
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, Get menu item se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
index aa1c2ac26c0f92..c301957078fb81 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-items
displayed_sidebar: docs
---
-**GET MENU ITEMS** ( *menu* ; *arrayTitMenus* ; *arraysRefMenus* )
+**GET MENU ITEMS** ( *menu* : Integer, Text ; *arrayTitMenus* : Text array ; *arraysRefMenus* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
| arrayTitMenus | Text array | ← | Array de títulos de menú |
| arraysRefMenus | Text array | ← | Array de referencias de menú |
@@ -40,6 +40,6 @@ Usted quiere conocer el contenido de la barra de menú del proceso actual:
| | |
| --- | --- |
| Número de comando | 977 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
index bd6722f0d95a67..bcbf20f7abdc16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-title
displayed_sidebar: docs
---
-**Get menu title** ( *menu* {; *proceso*} ) : Text
+**Get menu title** ( *menu* : Integer, Text {; *proceso* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| proceso | Integer | → | Número de referencia del proceso |
| Resultado | Text | ← | Título del menú |
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Get menu title se aplica a la barra de menús
| | |
| --- | --- |
| Número de comando | 430 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
index 2edfe7a64f60ac..3e9bca2f234829 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
@@ -5,7 +5,7 @@ slug: /commands/get-missing-table-names
displayed_sidebar: docs
---
-**GET MISSING TABLE NAMES** ( *tabfalt* )
+**GET MISSING TABLE NAMES** ( *tabfalt* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Una vez haya identificado las tablas faltantes de la base, puede reactivarlas v
| | |
| --- | --- |
| Número de comando | 1125 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
index ea6c0c26213540..de30d9fa3be035 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
@@ -5,7 +5,7 @@ slug: /commands/get-pasteboard-data-type
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA TYPE** ( *firmas4D* ; *tiposNativos* {; *nombresFormatos*} )
+**GET PASTEBOARD DATA TYPE** ( *firmas4D* : Text array ; *tiposNativos* : Text array {; *nombresFormatos* : Text array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -43,6 +43,6 @@ Para mayor información sobre los tipos de datos soportados, consulte la secció
| | |
| --- | --- |
| Número de comando | 958 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
index c9c3737b446e97..3d572cff69052c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
@@ -5,11 +5,11 @@ slug: /commands/get-pasteboard-data
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA** ( *tipoDatos* ; *datos* )
+**GET PASTEBOARD DATA** ( *tipoDatos* : Text ; *datos* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoDatos | Text | → | Tipo de datos a extraer del contenedor |
+| tipoDatos | Text | → | Tipo de datos a extraer del contenedor |
| datos | Blob | ← | Datos extraídos del portapapeles |
@@ -59,7 +59,7 @@ Si los datos se extraen correctamente, la variable OK toma el valor 1; de lo con
| | |
| --- | --- |
| Número de comando | 401 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
index 46cf5ecf53f915..a5f975cae94de3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-file-name
displayed_sidebar: docs
---
-**Get picture file name** ( *imagen* ) : Text
+**Get picture file name** ( *imagen* : Picture, Picture ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture, Picture | → | Imagen para la cual obtener el nombre por defecto |
+| imagen | Picture, Picture | → | Imagen para la cual obtener el nombre por defecto |
| Resultado | Text | ← | Nombre por defecto del archivo imagen |
@@ -31,6 +31,6 @@ Si la imagen no tienen un nombre por defecto, el comando devuelve una cadena vac
| | |
| --- | --- |
| Número de comando | 1171 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
index 365640e86bdf39..297119dca7ca61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-formats
displayed_sidebar: docs
---
-**GET PICTURE FORMATS** ( *imagen* ; *codecIDs* )
+**GET PICTURE FORMATS** ( *imagen* : Picture ; *codecIDs* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Campo o variable imagen a analizar |
+| imagen | Picture | → | Campo o variable imagen a analizar |
| codecIDs | Text array | ← | IDs de codec Imagen |
@@ -54,6 +54,6 @@ Usted quiere saber los formatos de imagen almacenados en un campo para el regist
| | |
| --- | --- |
| Número de comando | 1406 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
index 01b5454a60ddcf..a77387bb5f15bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-from-library
displayed_sidebar: docs
---
-**GET PICTURE FROM LIBRARY** ( refImag | nomImag ; *imagen* )
+**GET PICTURE FROM LIBRARY** ( refImag | nomImag ; *imagen* : Picture )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refImag | nomImag | Entero largo, Cadena | → | Número de referencia o nombre de una imagen de la librería de imágenes |
+| refImag | nomImag | Entero largo, Cadena | → | Número de referencia o nombre de una imagen de la librería de imágenes |
| imagen | Picture | ← | Imagen de la librería de imágenes |
@@ -65,7 +65,7 @@ Si no hay suficiente memoria para devolver la imagen, se genera el error -108\.
| | |
| --- | --- |
| Número de comando | 565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
index 6865a8a05ecb70..566c589a9e80f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-pasteboard
displayed_sidebar: docs
---
-**GET PICTURE FROM PASTEBOARD** ( *imagen* )
+**GET PICTURE FROM PASTEBOARD** ( *imagen* : Picture )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ Si la imagen se extrae correctamente, OK toma el valor 1; de lo contrario OK tom
| | |
| --- | --- |
| Número de comando | 522 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
index fff175850de422..98ac280e909b3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-picture-keywords
displayed_sidebar: docs
---
-**GET PICTURE KEYWORDS** ( *imagen* ; *arrayPalabrasClaves* {; *} )
+**GET PICTURE KEYWORDS** ( *imagen* : Picture, Picture ; *arrayPalabrasClaves* : Text array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture, Picture | → | Imagen para la cual obtener las palabras claves asociadas |
+| imagen | Picture, Picture | → | Imagen para la cual obtener las palabras claves asociadas |
| arrayPalabrasClaves | Text array | ← | Array con las palabras claves extraídas |
-| * | Operador | → | Si se pasa = usar valores distintos |
+| * | Operador | → | Si se pasa = usar valores distintos |
@@ -39,6 +39,6 @@ Si la imagen no contiene palabras claves o metadatos IPTC/Keywords, el comando d
| | |
| --- | --- |
| Número de comando | 1142 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
index d85b5545dc4934..4caf1078bd184a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
@@ -5,12 +5,12 @@ slug: /commands/get-picture-metadata
displayed_sidebar: docs
---
-**GET PICTURE METADATA** ( *imagen* ; *nomMeta* ; *ContenidoMeta* {; *nomMeta2* ; *ContenidoMeta2* ; ... ; *nomMetaN* ; *ContenidoMetaN*} )
+**GET PICTURE METADATA** ( *imagen* : Picture ; *nomMeta* : Text ; *ContenidoMeta* : Variable {; ...(*nomMeta* : Text, *ContenidoMeta* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen de la cual obtener los metadatos |
-| nomMeta | Text | → | Nombre o ruta de acceso del bloque a leer |
+| imagen | Picture | → | Imagen de la cual obtener los metadatos |
+| nomMeta | Text | → | Nombre o ruta de acceso del bloque a leer |
| ContenidoMeta | Variable | ← | Contenido del metadato |
@@ -106,7 +106,7 @@ La variable sistema *OK* devuelve 1 si la recuperación de los metadatos es corr
| | |
| --- | --- |
| Número de comando | 1122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
index 4fd1782d9c97f8..3f8ff3b10de952 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
@@ -5,14 +5,13 @@ slug: /commands/get-picture-resource
displayed_sidebar: docs
---
-**GET PICTURE RESOURCE** ( *resNum* ; *resDatos* {; *resArchivo*} )
+**GET PICTURE RESOURCE** ( *resNum* : Integer ; *resDatos* : Field, Variable {; *resArchivo* : Time} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de recurso |
-| resDatos | Field, Variable | → | Campo o variable imagen a recibir la imagen |
-| ← | Contenido del recurso PICT |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
+| resNum | Integer | → | Número de recurso |
+| resDatos | Field, Variable | ↔ | *in:* Picture field or variable to receive the picture
*out:* Contents of the PICT resource |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
@@ -47,7 +46,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
index 4510d669e9b83d..915a652ba2c453 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
@@ -5,11 +5,11 @@ slug: /commands/get-plugin-access
displayed_sidebar: docs
---
-**Get plugin access** ( *plugIn* ) : Text
+**Get plugin access** ( *plugIn* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Número del plug-in |
+| plugIn | Integer | → | Número del plug-in |
| Resultado | Text | ← | Nombre del grupo asociado con el plug-in |
@@ -39,6 +39,6 @@ Pase en el parámetro *plugIn* el número del plug-in del que quiere conocer el
| | |
| --- | --- |
| Número de comando | 846 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
index 7ec4c2356c213d..b95813be24567b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/get-pointer
displayed_sidebar: docs
---
-**Get pointer** ( *nomVar* ) : Pointer
+**Get pointer** ( *nomVar* : Text ) : Pointer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomVar | Text | → | Nombre de una variable proceso o interproceso |
+| nomVar | Text | → | Nombre de una variable proceso o interproceso |
| Resultado | Pointer | ← | Puntero hacia una variable proceso o interproceso |
@@ -56,6 +56,6 @@ Utilizar punteros a elementos de arrays de dos dimensiones:
| | |
| --- | --- |
| Número de comando | 304 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
index ebeda0baa41565..3cebc017f61faa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-marker
displayed_sidebar: docs
---
-**Get print marker** ( *markNum* ) : Integer
+**Get print marker** ( *markNum* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| markNum | Integer | → | Número de marcador |
+| markNum | Integer | → | Número de marcador |
| Resultado | Integer | ← | Posición del marcador |
@@ -67,6 +67,6 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 708 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
index 298aa0ea6927da..e345fcb9b7860e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-option
displayed_sidebar: docs
---
-**GET PRINT OPTION** ( *opcion* ; *valor1* {; *valor2*} )
+**GET PRINT OPTION** ( *opcion* : Integer ; *valor1* : Integer, Text {; *valor2* : Integer, Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opcion | Integer | → | Número de opción |
+| opcion | Integer | → | Número de opción |
| valor1 | Integer, Text | ← | Valor 1 de la opción |
| valor2 | Integer, Text | ← | Valor 2 de la opción |
@@ -55,7 +55,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 734 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
index 0be6511d5a3d0f..d7b8a1fa650463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que el usuario puede modificar esta opción antes de validar la caja de di
| | |
| --- | --- |
| Número de comando | 1197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
index b4bd6caeee8623..5066005b18b590 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-area
displayed_sidebar: docs
---
-**GET PRINTABLE AREA** ( *altura* {; *largo*} )
+**GET PRINTABLE AREA** ( *altura* : Integer {; *largo* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ Para saber el tamaño total de la página, puede:
| | |
| --- | --- |
| Número de comando | 703 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
index 254f103b0c87ee..4260d7bfa5b487 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-margin
displayed_sidebar: docs
---
-**GET PRINTABLE MARGIN** ( *izquierda* ; *superior* ; *derecha* ; *inferior* )
+**GET PRINTABLE MARGIN** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Es posible basar la impresión de los formularios efectuados utilizando los coma
| | |
| --- | --- |
| Número de comando | 711 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
index 2b079e570bcfd4..65bfa4c43f0224 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ Los márgenes de impresión derecha e izquierda no influyen en el valor devuelto
| | |
| --- | --- |
| Número de comando | 702 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
index ad7e76415a2768..aa4b49ef46c8e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
@@ -5,12 +5,12 @@ slug: /commands/get-process-variable
displayed_sidebar: docs
---
-**GET PROCESS VARIABLE** ( *proceso* ; *srcVar* ; *dstVar* {; *srcVar2* ; *dstVar2* ; ... ; *srcVarN* ; *dstVarN*} )
+**GET PROCESS VARIABLE** ( *proceso* : Integer ; *srcVar* : Variable ; *dstVar* : Variable {; ...(*srcVar* : Variable, *dstVar* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso fuente |
-| srcVar | Variable | → | Variable fuente |
+| proceso | Integer | → | Número de proceso fuente |
+| srcVar | Variable | → | Variable fuente |
| dstVar | Variable | ← | Variable de destino |
@@ -123,6 +123,6 @@ Ver el ejemplo del comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número de comando | 371 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
index e00e5a238a457a..ef4263f3381a88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/get-query-destination
displayed_sidebar: docs
---
-**GET QUERY DESTINATION** ( *destinoTipo* ; *destinoObjeto* ; *destinoPunt* )
+**GET QUERY DESTINATION** ( *destinoTipo* : Integer ; *destinoObjeto* : Text ; *destinoPunt* : Pointer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ Queremos modificar temporalmente el destino de búsqueda y restablecer los pará
| | |
| --- | --- |
| Número de comando | 1155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
index 1dd9a73cf9baf9..fb97ae0919f77b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defecto, si ningún límite se ha definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
index d0cf35638e0473..2e90b749715f02 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
@@ -5,7 +5,7 @@ slug: /commands/get-registered-clients
displayed_sidebar: docs
---
-**GET REGISTERED CLIENTS** ( *listaClientes* ; *metodos* )
+**GET REGISTERED CLIENTS** ( *listaClientes* : Text array ; *metodos* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ Si la operación se realiza correctemente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 650 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
index de1cfdaf49e024..8e98bf89d6780e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-relation-properties
displayed_sidebar: docs
---
-**GET RELATION PROPERTIES** ( *ptrCamp* ; *tablaUno* ; *campUno* {; *discriminante* {; *autoUno* {; *autoMuchos*}}} )
**GET RELATION PROPERTIES** ( *numTabla* ; *numCamp* ; *tablaUno* ; *campUno* {; *discriminante* {; *autoUno* {; *autoMuchos*}}} )
+**GET RELATION PROPERTIES** ( *ptrCamp* : Puntero, Entero largo ; *tablaUno* : Integer ; *campUno* : Integer {; *discriminante* : Integer {; *autoUno* : Boolean {; *autoMuchos* : Boolean}}} )
**GET RELATION PROPERTIES** ( *numTabla* : Puntero, Entero largo ; *numCamp* : Integer ; *tablaUno* : Integer ; *campUno* : Integer {; *discriminante* : Integer {; *autoUno* : Boolean {; *autoMuchos* : Boolean}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ptrCamp|numTabla | Puntero, Entero largo | → | Puntero de campo o número de tabla |
-| numCamp | Integer | → | Número de campo si se pasa un número de tabla como primer parámetro |
+| ptrCamp|numTabla | Puntero, Entero largo | → | Puntero de campo o número de tabla |
+| numCamp | Integer | → | Número de campo si se pasa un número de tabla como primer parámetro |
| tablaUno | Integer | ← | Número de la tabla Uno ó 0 si no se define ninguna relación desde el campo |
| campUno | Integer | ← | Número de campo Uno ó 0 si no se define ninguna relación desde el campo |
| discriminante | Integer | ← | Número de campo discriminante o 0 si ningún campo discriminante |
@@ -49,6 +49,6 @@ Una se haya ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 686 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
index 60ce924ad18f56..189b021234e63d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-name
displayed_sidebar: docs
---
-**Get resource name** ( *resTipo* ; *resNum* {; *resArchivo*} ) : Text
+**Get resource name** ( *resTipo* : Text ; *resNum* : Integer {; *resArchivo* : Time} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resTipo | Text | → | Tipo de recurso (4 caracteres) |
-| resNum | Integer | → | Número de referencia del recurso |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
+| resTipo | Text | → | Tipo de recurso (4 caracteres) |
+| resNum | Integer | → | Número de referencia del recurso |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
| Resultado | Text | ← | Nombre del recurso |
@@ -30,6 +30,6 @@ Si el recurso no existe, Get resource name devuelve una cadena vacía.
| | |
| --- | --- |
| Número de comando | 513 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
index 0213194202ca03..aedc3c4f33d259 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-properties
displayed_sidebar: docs
---
-**Get resource properties** ( *resTipo* ; *resNum* {; *resArchivo*} ) : Integer
+**Get resource properties** ( *resTipo* : Text ; *resNum* : Integer {; *resArchivo* : Time} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resTipo | Text | → | Tipo de recurso (4 caracteres) |
-| resNum | Integer | → | Número de referencia del recurso (ID) |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
+| resTipo | Text | → | Tipo de recurso (4 caracteres) |
+| resNum | Integer | → | Número de referencia del recurso (ID) |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
| Resultado | Integer | ← | Atributos del recurso |
@@ -40,7 +40,7 @@ La variable sistema OK toma el valor 0 si el recurso no existe, de lo contrario
| | |
| --- | --- |
| Número de comando | 515 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
index 2c0fd1ff334666..c051edd0b0a190 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
@@ -5,15 +5,14 @@ slug: /commands/get-resource
displayed_sidebar: docs
---
-**GET RESOURCE** ( *resTipo* ; *resNum* ; *resDatos* {; *resArchivo*} )
+**GET RESOURCE** ( *resTipo* : Text ; *resNum* : Integer ; *resDatos* : Blob {; *resArchivo* : Time} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resTipo | Text | → | Tipo de recurso (4 caracteres) |
-| resNum | Integer | → | Número de recurso |
-| resDatos | Blob | → | Campo o variable BLOB a recibir los datos |
-| ← | Contenido del recurso |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
+| resTipo | Text | → | Tipo de recurso (4 caracteres) |
+| resNum | Integer | → | Número de recurso |
+| resDatos | Blob | ↔ | *in:* BLOB field or variable to receive the data
*out:* Contents of the resource |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
@@ -54,7 +53,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 508 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
index c9d1835fd1fa3a..d4cfd9c5af5b4e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si ninguna línea de menú ha sido seleccionada, el comando devuelve una cadena
| | |
| --- | --- |
| Número de comando | 1005 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
index be6f8a487067e2..74b61ea5797070 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
@@ -5,7 +5,7 @@ slug: /commands/get-serial-port-mapping
displayed_sidebar: docs
---
-**GET SERIAL PORT MAPPING** ( *arrNumeros* ; *arrNombres* )
+**GET SERIAL PORT MAPPING** ( *arrNumeros* : Integer array ; *arrNombres* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Este método de proyecto puede utilizarse para direccionar el mismo puerto seria
| | |
| --- | --- |
| Número de comando | 909 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
index d2303e386aa1d3..b278e15f933fdb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-string-resource
displayed_sidebar: docs
---
-**Get string resource** ( *resNum* {; *resArchivo*} ) : Text
+**Get string resource** ( *resNum* : Integer {; *resArchivo* : Time} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número del recurso |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
+| resNum | Integer | → | Número del recurso |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
| Resultado | Text | ← | Contenido del recurso STR |
@@ -48,7 +48,7 @@ La variable sistema OK toma el valor 1 si se encuentra el recurso, de lo contrar
| | |
| --- | --- |
| Número de comando | 506 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
index c423053a769d1b..b2e9c95ef7e567 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
@@ -5,11 +5,11 @@ slug: /commands/get-style-sheet-info
displayed_sidebar: docs
---
-**GET STYLE SHEET INFO** ( *nomHojaEstilo* ; *fuente* ; *tam* ; *estilos* )
+**GET STYLE SHEET INFO** ( *nomHojaEstilo* : Text ; *fuente* : Text ; *tam* : Integer ; *estilos* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomHojaEstilo | Text | → | Nombre de la hoja de estilo |
+| nomHojaEstilo | Text | → | Nombre de la hoja de estilo |
| fuente | Text | ← | Tipo de fuente |
| tam | Integer | ← | Tamaño de fuente |
| estilos | Integer | ← | Valor del estilo |
@@ -70,7 +70,7 @@ Si quiere conocer la configuración actual de la hoja de estilo "Automatic"
| | |
| --- | --- |
| Número de comando | 1256 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
index 9935beba17af16..509db619b63f2c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
@@ -5,11 +5,11 @@ slug: /commands/get-subrecord-key
displayed_sidebar: docs
---
-**Get subrecord key** ( *campoID* ) : Integer
+**Get subrecord key** ( *campoID* : Field ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoID | Field | → | Campo de tipo "Relación subtabla" o "Entero largo" de una relación subtabla anterior |
+| campoID | Field | → | Campo de tipo "Relación subtabla" o "Entero largo" de una relación subtabla anterior |
| Resultado | Integer | ← | Llave interna de la relación |
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número de comando | 1137 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
index 1d96ff5b6cd069..d1dc53272b3063 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
@@ -5,11 +5,11 @@ slug: /commands/get-system-format
displayed_sidebar: docs
---
-**GET SYSTEM FORMAT** ( *formato* ; *valor* )
+**GET SYSTEM FORMAT** ( *formato* : Integer ; *valor* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| formato | Integer | → | Formato de sistema a recuperar |
+| formato | Integer | → | Formato de sistema a recuperar |
| valor | Text | ← | Formato de sistema a recuperar |
@@ -48,6 +48,6 @@ En el parámetro *formato*, pase el tipo del parámetro del que quiere conocer e
| | |
| --- | --- |
| Número de comando | 994 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
index 0e5737c4c416b6..c40e0addc2a4f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-table-properties
displayed_sidebar: docs
---
-**GET TABLE PROPERTIES** ( *PtrTabla* ; *invisible* {; *trigGuardarNuevo* {; *trigGuardaReg* {; *trigBorrarReg* {; *trigCargReg*}}}} )
**GET TABLE PROPERTIES** ( *numTabla* ; *invisible* {; *trigGuardarNuevo* {; *trigGuardaReg* {; *trigBorrarReg* {; *trigCargReg*}}}} )
+**GET TABLE PROPERTIES** ( *PtrTabla* : Puntero, Entero largo ; *invisible* : Boolean {; *trigGuardarNuevo* : Boolean {; *trigGuardaReg* : Boolean {; *trigBorrarReg* : Boolean {; *trigCargReg* : Boolean}}}} )
**GET TABLE PROPERTIES** ( *numTabla* : Puntero, Entero largo ; *invisible* : Boolean {; *trigGuardarNuevo* : Boolean {; *trigGuardaReg* : Boolean {; *trigBorrarReg* : Boolean {; *trigCargReg* : Boolean}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| PtrTabla|numTabla | Puntero, Entero largo | → | Puntero de tabla o número de tabla |
+| PtrTabla|numTabla | Puntero, Entero largo | → | Puntero de tabla o número de tabla |
| invisible | Boolean | ← | True = Invisible, False = Visible |
| trigGuardarNuevo | Boolean | ← | True = Trigger “On saving new record” activado; de lo contrario, False |
| trigGuardaReg | Boolean | ← | True = Trigger “On saving an existing record” activado; de lo contrario, False |
@@ -40,6 +40,6 @@ Una vez ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 687 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
index 95efd40da8b558..2c038d50d502ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
@@ -5,7 +5,7 @@ slug: /commands/get-table-titles
displayed_sidebar: docs
---
-**GET TABLE TITLES** ( *titTablas* ; *numTablas* )
+**GET TABLE TITLES** ( *titTablas* : Text array ; *numTablas* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ En ambos casos, el comando no devuelve las tablas invisibles.
| | |
| --- | --- |
| Número de comando | 803 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
index 739bab1e27f435..4033dc6af85ae8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si el texto se extrae correctamente, OK toma el valor 1; de lo contrario OK toma
| | |
| --- | --- |
| Número de comando | 524 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
index 9bd8c5011d5526..4634241f93e35d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-text-keywords
displayed_sidebar: docs
---
-**GET TEXT KEYWORDS** ( *texto* ; *arrPalabrasClaves* {; *} )
+**GET TEXT KEYWORDS** ( *texto* : Text ; *arrPalabrasClaves* : Text array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| texto | Text | → | Texto original |
+| texto | Text | → | Texto original |
| arrPalabrasClaves | Text array | ← | Array que contiene las palabras claves |
-| * | Operador | → | Si se pasa = palabras únicas |
+| * | Operador | → | Si se pasa = palabras únicas |
@@ -89,6 +89,6 @@ Para contar las palabras de un texto:
| | |
| --- | --- |
| Número de comando | 1141 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
index 048d9464481484..baef414896fc6c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-text-resource
displayed_sidebar: docs
---
-**Get text resource** ( *resNum* {; *resArchivo*} ) : Text
+**Get text resource** ( *resNum* : Integer {; *resArchivo* : Time} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de recurso |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
+| resNum | Integer | → | Número de recurso |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o todos los archivos de recursos abiertos, si se omite |
| Resultado | Text | ← | Contenido del recurso TEXT |
@@ -47,7 +47,7 @@ Si se encuentra el recurso, OK toma el valor 1\. De lo contrario, toma el valor
| | |
| --- | --- |
| Número de comando | 504 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
index 3eb6a157dfdb72..dd056fc9cabe19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-user-list
displayed_sidebar: docs
---
-**GET USER LIST** ( *nomsUsuario* ; *refUsuario* )
+**GET USER LIST** ( *nomsUsuario* : Text array ; *refUsuario* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER LIST o si otro
| | |
| --- | --- |
| Número de comando | 609 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
index c3da97fcd934d7..7be72532e7c57e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-user-properties
displayed_sidebar: docs
---
-**GET USER PROPERTIES** ( *refUsuario* ; *nombre* ; *inicio* ; *contraseña* ; *nbLogin* ; *ultimoLogin* {; *membrecias* {; *grupoPropietario*}} )
+**GET USER PROPERTIES** ( *refUsuario* : Integer ; *nombre* : Text ; *inicio* : Text ; *contraseña* : Text ; *nbLogin* : Integer ; *ultimoLogin* : Date {; *membrecias* : Integer array {; *grupoPropietario* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de referencia único de usuario |
+| refUsuario | Integer | → | Número de referencia único de usuario |
| nombre | Text | ← | Nombre del usuario |
| inicio | Text | ← | Nombre del método de inicio |
| contraseña | Text | ← | Cadena vacía |
@@ -58,7 +58,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER PROPERTIES o s
| | |
| --- | --- |
| Número de comando | 611 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
index 18e1021888b183..4bad38472652b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-rect
displayed_sidebar: docs
---
-**GET WINDOW RECT** ( *izquierda* ; *superior* ; *derecha* ; *inferior* {; *ventana*} )
+**GET WINDOW RECT** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer {; *ventana* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| superior | Integer | ← | Coordenada superior del interior de la ventana |
| derecha | Integer | ← | Coordenada derecha del interior de la ventana |
| inferior | Integer | ← | Coordenada inferior del interior de la ventana |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso si se omite o Ventana MDI si -1 (Windows) |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso si se omite o Ventana MDI si -1 (Windows) |
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 443 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
index 1de30927bb500b..c4399c02e9eb91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
@@ -5,11 +5,11 @@ slug: /commands/get-window-title
displayed_sidebar: docs
---
-**Get window title** {( *ventana* )} : Text
+**Get window title** ( *ventana* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual si se omite |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual si se omite |
| Resultado | Text | ← | Título de la ventana |
@@ -33,6 +33,6 @@ Ver ejemplo del comando [SET WINDOW TITLE](set-window-title.md "SET WINDOW TITLE
| | |
| --- | --- |
| Número de comando | 450 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
index cddcc37d269d00..880d66ca8a8572 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
@@ -5,12 +5,12 @@ slug: /commands/goto-object
displayed_sidebar: docs
---
-**GOTO OBJECT** ( {* ;} *objeto* )
+**GOTO OBJECT** ( {* ;} *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica = objeto es un nombre de objeto (cadena) Si se omite = objeto es un campo o una variable |
-| objeto | Field, Variable | → | Nombre del objeto (si se especifica *) o Campo o Variable (si se omite *) a donde ir |
+| * | Operador | → | Si se especifica = objeto es un nombre de objeto (cadena) Si se omite = objeto es un campo o una variable |
+| objeto | Field, Variable | → | Nombre del objeto (si se especifica *) o Campo o Variable (si se omite *) a donde ir |
@@ -55,6 +55,6 @@ Ver el ejemplo del comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número de comando | 206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
index 41596500e11c2f..4bfd44f794c56e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-record
displayed_sidebar: docs
---
-**GOTO RECORD** ( {*tabla* ;} *posicion* )
+**GOTO RECORD** ( {*tabla* : Table ;} *posicion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro de destino o Tabla por defecto, si se omite |
-| posicion | Integer | → | Número devuelto por número registro |
+| tabla | Table | → | Tabla del registro de destino o Tabla por defecto, si se omite |
+| posicion | Integer | → | Número devuelto por número registro |
@@ -34,7 +34,7 @@ Ver el ejemplo para Record Number.
| | |
| --- | --- |
| Número de comando | 242 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
index 18c9f276485af9..4bcf1969528472 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-selected-record
displayed_sidebar: docs
---
-**GOTO SELECTED RECORD** ( {*tabla* ;} *registro* )
+**GOTO SELECTED RECORD** ( {*tabla* : Table ;} *registro* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual ir al registro seleccionado o Tabla por defecto, si se omite |
-| registro | Integer | → | Posición del registro en la selección |
+| tabla | Table | → | Tabla en la cual ir al registro seleccionado o Tabla por defecto, si se omite |
+| registro | Integer | → | Posición del registro en la selección |
@@ -67,7 +67,7 @@ El siguiente método de objeto del área desplegable *atNames* selecciona el reg
| | |
| --- | --- |
| Número de comando | 245 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
index 41fc35326e54e2..a1236d2c4e17b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
@@ -5,12 +5,12 @@ slug: /commands/goto-xy
displayed_sidebar: docs
---
-**GOTO XY** ( *x* ; *y* )
+**GOTO XY** ( *x* : Integer ; *y* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| x | Integer | → | Posición x (horizontal) del cursor |
-| y | Integer | → | Posición y (vertical) del cursor |
+| x | Integer | → | Posición x (horizontal) del cursor |
+| y | Integer | → | Posición y (vertical) del cursor |
@@ -64,6 +64,6 @@ Muestra la siguiente ventana (en Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número de comando | 161 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
index e63bebae5aa7c8..2d1a5fc7fd64bc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
@@ -5,19 +5,19 @@ slug: /commands/graph-settings
displayed_sidebar: docs
---
-**GRAPH SETTINGS** ( *graf* ; *xmin* ; *xmax* ; *ymin* ; *ymax* ; *xprop* ; *xgrid* ; *ygrid* ; *titulo* {; *titulo2* ; ... ; *tituloN*} )
+**GRAPH SETTINGS** ( *graf* : Picture ; *xmin* : Integer, Date, Time ; *xmax* : Integer, Date, Time ; *ymin* : Integer ; *ymax* : Integer ; *xprop* : Boolean ; *xgrid* : Boolean ; *ygrid* : Boolean ; *titulo* : Text {; *...titulo* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| graf | Picture | → | Área del gráfico o variable imagen |
-| xmin | Integer, Date, Time | → | Valor mínimo del eje de las x para gráfico proporcional (líneas o puntos solamente) |
-| xmax | Integer, Date, Time | → | Valor máximo del eje de las x para gráfico proporcional (líneas o puntos solamente) |
-| ymin | Integer | → | Valor mínimo del eje y |
-| ymax | Integer | → | Valor máximo del eje y |
-| xprop | Boolean | → | TRUE para eje x proporcional; FALSE para eje x normal (líneas o puntos solamente) |
-| xgrid | Boolean | → | TRUE para rejilla del eje x; FALSE para no rejilla en el eje x (sólo si xprop es TRUE) |
-| ygrid | Boolean | → | TRUE para rejilla del eje y; FALSE para no rejilla el eje y |
-| titulo | Text | → | Título(s) para las leyenda(s) del gráfico |
+| graf | Picture | → | Área del gráfico o variable imagen |
+| xmin | Integer, Date, Time | → | Valor mínimo del eje de las x para gráfico proporcional (líneas o puntos solamente) |
+| xmax | Integer, Date, Time | → | Valor máximo del eje de las x para gráfico proporcional (líneas o puntos solamente) |
+| ymin | Integer | → | Valor mínimo del eje y |
+| ymax | Integer | → | Valor máximo del eje y |
+| xprop | Boolean | → | TRUE para eje x proporcional; FALSE para eje x normal (líneas o puntos solamente) |
+| xgrid | Boolean | → | TRUE para rejilla del eje x; FALSE para no rejilla en el eje x (sólo si xprop es TRUE) |
+| ygrid | Boolean | → | TRUE para rejilla del eje y; FALSE para no rejilla el eje y |
+| titulo | Text | → | Título(s) para las leyenda(s) del gráfico |
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número de comando | 298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
index 6c1bbc35daf6c4..f9cdcd1dc353be 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
@@ -5,14 +5,14 @@ slug: /commands/graph
displayed_sidebar: docs
---
-**GRAPH** ( *grafImagen* ; *grafNum* ; *xCategorias* {; *yValores*} {; *yValores2* ; ... ; *yValoresN*} )
+**GRAPH** ( *grafImagen* : Picture ; *grafNum* : Integer, Object ; *xCategorias* : Array {; *...yValores* : Array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| grafImagen | Picture | → | Variable imagen |
-| grafNum | Integer, Object | → | Número de tipo de gráfico |
-| xCategorias | Array | → | Categorías para el eje x |
-| yValores | Array | → | Valores a representar gráficamente (hasta 8) |
+| grafImagen | Picture | → | Variable imagen |
+| grafNum | Integer, Object | → | Número de tipo de gráfico |
+| xCategorias | Array | → | Categorías para el eje x |
+| yValores | Array | → | Valores a representar gráficamente (hasta 8) |
@@ -289,6 +289,6 @@ En este ejemplo, personalizamos algunos parámetros:
| | |
| --- | --- |
| Número de comando | 169 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
index 86f35706b7c44d..391f7dcdbca1f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ El siguiente método muestra un registro en toda la pantalla (Macintosh) hasta q
| | |
| --- | --- |
| Número de comando | 432 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
index ab22cd4f1bd100..a5e7daa34513f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
@@ -5,11 +5,11 @@ slug: /commands/hide-process
displayed_sidebar: docs
---
-**HIDE PROCESS** ( *proceso* )
+**HIDE PROCESS** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso a ocultar |
+| proceso | Integer | → | Número de proceso a ocultar |
@@ -41,6 +41,6 @@ El siguiente ejemplo oculta todas las ventanas que pertenecen al proceso actual:
| | |
| --- | --- |
| Número de comando | 324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
index fa0b3518c30c60..ffb46047b219e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar esto, en el evento formulario On Resize de la ventana estándar, es
| | |
| --- | --- |
| Número de comando | 434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
index 71a66386e8dc81..945c9e4b155673 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
@@ -5,11 +5,11 @@ slug: /commands/hide-window
displayed_sidebar: docs
---
-**HIDE WINDOW** {( *ventana* )}
+**HIDE WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
@@ -51,6 +51,6 @@ Este ejemplo corresponde a un método de un botón ubicado en un formulario de e
| | |
| --- | --- |
| Número de comando | 436 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
index 3a0705f53fc144..eeebf5c1f5dc57 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
@@ -5,13 +5,13 @@ slug: /commands/highlight-records
displayed_sidebar: docs
---
-**HIGHLIGHT RECORDS** ( {*tabla* }{;}{ *nomConjunto* {; *}} )
+**HIGHLIGHT RECORDS** ( {*tabla* : Table }{;}{ *nomConjunto* : Text {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual seleccionar los registros Si se omite, tabla del formulario actual |
-| nomConjunto | Text | → | Conjunto de registros a seleccionar o Userset si se omite |
-| * | Operador | → | Desactivar el desplazamiento automático de la lista |
+| tabla | Table | → | Tabla de la cual seleccionar los registros Si se omite, tabla del formulario actual |
+| nomConjunto | Text | → | Conjunto de registros a seleccionar o Userset si se omite |
+| * | Operador | → | Desactivar el desplazamiento automático de la lista |
@@ -53,6 +53,6 @@ Cuando el usuario hace clic en el botón, aparece la caja de diálogo estándar
| | |
| --- | --- |
| Número de comando | 656 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
index b1c881efecbea5..a6bdb6c149217d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
@@ -5,14 +5,14 @@ slug: /commands/highlight-text
displayed_sidebar: docs
---
-**HIGHLIGHT TEXT** ( {* ;} *objeto* ; *inicioSel* ; *finSel* )
+**HIGHLIGHT TEXT** ( {* ;} *objeto* : Field, Variable, any ; *inicioSel* : Integer ; *finSel* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es un campo o una variable |
-| objeto | Field, Variable, any | → | Nombre del objeto (si se especifica *) o Campo o variable (si se omite *) |
-| inicioSel | Integer | → | Nueva posición de inicio de selección de texto |
-| finSel | Integer | → | Nueva posición de fin de selección de texto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es un campo o una variable |
+| objeto | Field, Variable, any | → | Nombre del objeto (si se especifica *) o Campo o variable (si se omite *) |
+| inicioSel | Integer | → | Nueva posición de inicio de selección de texto |
+| finSel | Integer | → | Nueva posición de fin de selección de texto |
@@ -67,6 +67,6 @@ Ver el ejemplo del comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTR
| | |
| --- | --- |
| Número de comando | 210 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
index 18431c67fd8839..2a6665c2b5fa03 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/http-authenticate
displayed_sidebar: docs
---
-**HTTP AUTHENTICATE** ( *nombre* ; *clave* {; *metodoAut*} {; *} )
+**HTTP AUTHENTICATE** ( *nombre* : Text ; *clave* : Text {; *metodoAut* : Integer} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombre | Text | → | Nombre de usuario |
-| clave | Text | → | Clave de usuario |
-| metodoAut | Integer | → | Método de autenticación: 0 o se omite = no definido, 1 = BASIC, 2 = DIGEST |
-| * | Operador | → | Si se pasa: autenticación por proxy |
+| nombre | Text | → | Nombre de usuario |
+| clave | Text | → | Clave de usuario |
+| metodoAut | Integer | → | Método de autenticación: 0 o se omite = no definido, 1 = BASIC, 2 = DIGEST |
+| * | Operador | → | Si se pasa: autenticación por proxy |
@@ -63,6 +63,6 @@ Ejemplos de peticiones con autenticación:
| | |
| --- | --- |
| Número de comando | 1161 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
index 90007c185caa08..b2c157fe042b72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1307 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
index 855c4bd2f44b4e..1dde96fe6c1293 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/http-get-option
displayed_sidebar: docs
---
-**HTTP GET OPTION** ( *opción* ; *valor* )
+**HTTP GET OPTION** ( *opción* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opción | Integer | → | Código de la opción a leer |
+| opción | Integer | → | Código de la opción a leer |
| valor | Integer | ← | Valor actual de la opción |
@@ -49,6 +49,6 @@ En el parámetro *valor*, pase una variable para recibir el valor actual de la *
| | |
| --- | --- |
| Número de comando | 1159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
index 4bf44d430f2926..73606a023f97d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
@@ -5,17 +5,15 @@ slug: /commands/http-get
displayed_sidebar: docs
---
-**HTTP Get** ( *url* ; *respuesta* {; *nomEncab* ; *valoresEncab*}{; *} ) : Integer
+**HTTP Get** ( *url* : Text ; *respuesta* : Text, Blob, Picture, Object {; *nomEncab* : Text array ; *valoresEncab* : Text array}{; *} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| url | Text | → | URL al cual enviar la petición |
+| url | Text | → | URL al cual enviar la petición |
| respuesta | Text, Blob, Picture, Object | ← | Resultado de la petición |
-| nomEncab | Text array | → | Nombres de los encabezados de la petición |
-| ← | Nombres de encabezados devueltos |
-| valoresEncab | Text array | → | Valores de los encabezados de la petición |
-| ← | Valores de los encabezados devueltos |
-| * | Operador | → | Si se pasa, la conexión se mantiene(keep-alive)Si se omite, la conexión se cierra automáticamente |
+| nomEncab | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valoresEncab | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Operador | → | Si se pasa, la conexión se mantiene(keep-alive)Si se omite, la conexión se cierra automáticamente |
| Resultado | Integer | ← | Código de estado HTTP |
@@ -111,7 +109,7 @@ Recuperación de un vídeo:
| | |
| --- | --- |
| Número de comando | 1157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
index b67764145c5974..d20a17291e7961 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
@@ -5,19 +5,17 @@ slug: /commands/http-request
displayed_sidebar: docs
---
-**HTTP Request** ( *metodoHTTP* ; *url* ; *contenido* ; *respuesta* {; *nomEncab* ; *valoresEncab*}{; *} ) : Integer
+**HTTP Request** ( *metodoHTTP* : Text ; *url* : Text ; *contenido* : Text, Blob, Picture, Object ; *respuesta* : Text, Blob, Picture, Object {; *nomEncab* : Text array ; *valoresEncab* : Text array}{; *} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| metodoHTTP | Text | → | Método HTTP para la petición |
-| url | Text | → | URL a la cual enviar la petición |
-| contenido | Text, Blob, Picture, Object | → | Contenido del cuerpo(body)de la petición |
+| metodoHTTP | Text | → | Método HTTP para la petición |
+| url | Text | → | URL a la cual enviar la petición |
+| contenido | Text, Blob, Picture, Object | → | Contenido del cuerpo(body)de la petición |
| respuesta | Text, Blob, Picture, Object | ← | Resultado de la petición |
-| nomEncab | Text array | → | Nombres de los encabezados de la petición |
-| ← | Nombres de los encabezados devueltos |
-| valoresEncab | Text array | → | Valores de los encabezados de la petición |
-| ← | Valores de los encabezados devueltos |
-| * | Operador | → | Si se pasa, la conexión se mantiene (keep-alive)Si se omite, la conexión se cierra automáticamente |
+| nomEncab | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valoresEncab | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Operador | → | Si se pasa, la conexión se mantiene (keep-alive)Si se omite, la conexión se cierra automáticamente |
| Resultado | Integer | ← | Código de estado HTTP |
@@ -131,6 +129,6 @@ Petición para añadir un registro en JSON a una base remota:
| | |
| --- | --- |
| Número de comando | 1158 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
index 1c167ae9a687eb..a29e01b05d13e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
@@ -5,11 +5,11 @@ slug: /commands/http-set-certificates-folder
displayed_sidebar: docs
---
-**HTTP SET CERTIFICATES FOLDER** ( *carpetaCertificados* )
+**HTTP SET CERTIFICATES FOLDER** ( *carpetaCertificados* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| carpetaCertificados | Text | → | Ruta y nombre de la carpeta de certificados del cliente |
+| carpetaCertificados | Text | → | Ruta y nombre de la carpeta de certificados del cliente |
@@ -62,6 +62,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1306 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
index 7ffcc7f3cf35fb..bcd64dfe1ac461 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/http-set-option
displayed_sidebar: docs
---
-**HTTP SET OPTION** ( *opcion* ; *valor* )
+**HTTP SET OPTION** ( *opcion* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opcion | Integer | → | Código de la opción a definir |
-| valor | Integer | → | Valor de la opción |
+| opcion | Integer | → | Código de la opción a definir |
+| valor | Integer | → | Valor de la opción |
@@ -51,6 +51,6 @@ El orden de llamada de las opciones no tiene importancia. Si la misma opción se
| | |
| --- | --- |
| Número de comando | 1160 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
index 2e99b408d79c0f..c2645fc9f95c0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
@@ -57,6 +57,6 @@ con:
| | |
| --- | --- |
| Número de comando | 311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
index 06585f09eb0d3e..08b0592c4a1d88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
@@ -5,14 +5,13 @@ slug: /commands/import-data
displayed_sidebar: docs
---
-**IMPORT DATA** ( *nomArchivo* {; *proyecto* {; *}} )
+**IMPORT DATA** ( *nomArchivo* : Text {; *proyecto* : Text, Blob {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Ruta de acceso y nombre del archivo a importar |
-| proyecto | Text, Blob | → | Contenido del proyecto de importación |
-| ← | Nuevo contenido del proyecto de importación (si se pasa el parámetro *) |
-| * | Operador | → | Visualización de la caja de diálogo de importación y actualización del proyecto |
+| nomArchivo | Text | → | Ruta de acceso y nombre del archivo a importar |
+| proyecto | Text, Blob | ↔ | *in:* Contents of the import project
*out:* New contents of the import project (if the * parameter has been passed) |
+| * | Operador | → | Visualización de la caja de diálogo de importación y actualización del proyecto |
@@ -52,7 +51,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de guar
| | |
| --- | --- |
| Número de comando | 665 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
index 05a9e0ff0d96c2..bd016abf8dc316 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
@@ -5,12 +5,12 @@ slug: /commands/import-dif
displayed_sidebar: docs
---
-**IMPORT DIF** ( {*tabla* ;} *doc* )
+**IMPORT DIF** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual importar datos, o Tabla por defecto, si se omite |
-| doc | Text | → | Documento DIF a importar |
+| tabla | Table | → | Tabla en la cual importar datos, o Tabla por defecto, si se omite |
+| doc | Text | → | Documento DIF a importar |
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 86 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
index 69743c67296abe..118f1ba06dfbd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
@@ -5,11 +5,11 @@ slug: /commands/import-structure
displayed_sidebar: docs
---
-**IMPORT STRUCTURE** ( *estructuraXML* )
+**IMPORT STRUCTURE** ( *estructuraXML* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| estructuraXML | Text | → | Definición XML de la estructura de la base 4D |
+| estructuraXML | Text | → | Definición XML de la estructura de la base 4D |
@@ -53,6 +53,6 @@ Usted desea importar una definición de estructura guardada en la base actual:
| | |
| --- | --- |
| Número de comando | 1310 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
index 6f4dc9b514f40f..acc0f6e9b1d7dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/import-sylk
displayed_sidebar: docs
---
-**IMPORT SYLK** ( {*tabla* ;} *doc* )
+**IMPORT SYLK** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual importar los datos, o Tabla por defecto, si se omite |
-| doc | Text | → | Documento SYLK a importar |
+| tabla | Table | → | Tabla en la cual importar los datos, o Tabla por defecto, si se omite |
+| doc | Text | → | Documento SYLK a importar |
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 87 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
index d3868d6221c55f..d7b952a9f4d51e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
@@ -5,12 +5,12 @@ slug: /commands/import-text
displayed_sidebar: docs
---
-**IMPORT TEXT** ( {*tabla* ;} *doc* )
+**IMPORT TEXT** ( {*tabla* : Table ;} *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual importar datos, o Tabla por defecto, si se omite |
-| doc | Text | → | Documento texto a importar datos |
+| tabla | Table | → | Tabla en la cual importar datos, o Tabla por defecto, si se omite |
+| doc | Text | → | Documento texto a importar datos |
@@ -59,7 +59,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
index 6bf89eedb62ae5..d3949b8acccc5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In break** asegúrese de que la prop
| | |
| --- | --- |
| Número de comando | 113 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
index 89e74e06b83b32..2b54285dbef221 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In footer** asegúrese de que la pro
| | |
| --- | --- |
| Número de comando | 191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
index 155531d80ea3d3..15c295e8f094af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In header**, asegúrese de que la pr
| | |
| --- | --- |
| Número de comando | 112 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
index ce34dac04d8d0c..7cc2c57aeae7ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si efectúa la operación desde un trigger o una subrutina que puede ser llamado
| | |
| --- | --- |
| Número de comando | 397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
index d27f3162a05220..dc442bfa1d22f0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/insert-in-array
displayed_sidebar: docs
---
-**INSERT IN ARRAY** ( *array* ; *posicion* {; *reemplazos*} )
+**INSERT IN ARRAY** ( *array* : Array ; *posicion* : Integer {; *reemplazos* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Nombre del array |
-| posicion | Integer | → | Donde insertar los elementos |
-| reemplazos | Integer | → | Número de elementos a insertar, o 1 elemento si se omite |
+| array | Array | → | Nombre del array |
+| posicion | Integer | → | Donde insertar los elementos |
+| reemplazos | Integer | → | Número de elementos a insertar, o 1 elemento si se omite |
@@ -51,6 +51,6 @@ El siguiente ejemplo añade un elemento a un array:
| | |
| --- | --- |
| Número de comando | 227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
index 8be2d7b4c7dfe4..5cd9933ee3b6da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
@@ -5,14 +5,14 @@ slug: /commands/insert-in-blob
displayed_sidebar: docs
---
-**INSERT IN BLOB** ( *BLOB* ; *offset* ; *numero* {; *relleno*} )
+**INSERT IN BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *numero* : Integer {; *relleno* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB en el cual insertar los bytes |
-| offset | Integer | → | Posición de inicio de inserción de los bytes |
-| numero | Integer | → | Número de bytes a insertar |
-| relleno | Integer | → | Valor de byte por defecto (0x00..0xFF) 0x00 si se omite |
+| Blob | Blob | → | BLOB en el cual insertar los bytes |
+| offset | Integer | → | Posición de inicio de inserción de los bytes |
+| numero | Integer | → | Número de bytes a insertar |
+| relleno | Integer | → | Valor de byte por defecto (0x00..0xFF) 0x00 si se omite |
@@ -37,6 +37,6 @@ Antes de llamar el comando, pase en la variable del parámetro *offset* la posic
| | |
| --- | --- |
| Número de comando | 559 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
index 34fcc800e33a21..d60bd821abc4f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
@@ -5,17 +5,17 @@ slug: /commands/insert-in-list
displayed_sidebar: docs
---
-**INSERT IN LIST** ( {* ;} *lista* ; antesElem | * ; *textoElem* ; *refElem* {; *sublista* ; *desplegada*} )
+**INSERT IN LIST** ( {* ;} *lista* : Integer, Text ; antesElem | * ; *textoElem* : Text ; *refElem* : Integer {; *sublista* : Integer ; *desplegada* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| antesElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento de la lista actualmente seleccionado |
-| textoElem | Text | → | Texto para el nuevo elemento (max. 255 caracteres) |
-| refElem | Integer | → | Número de referencia único del nuevo elemento |
-| sublista | Integer | → | Sublista opcional para asociar al nuevo elemento |
-| desplegada | Boolean | → | Indica si la sublista será desplegada o contraída |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| antesElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento de la lista actualmente seleccionado |
+| textoElem | Text | → | Texto para el nuevo elemento (max. 255 caracteres) |
+| refElem | Integer | → | Número de referencia único del nuevo elemento |
+| sublista | Integer | → | Sublista opcional para asociar al nuevo elemento |
+| desplegada | Boolean | → | Indica si la sublista será desplegada o contraída |
@@ -54,6 +54,6 @@ El siguiente código inserta un elemento (sin sublista asociada) justo antes del
| | |
| --- | --- |
| Número de comando | 625 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
index 2a8520991e628b..6dcc16c5876960 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
@@ -5,16 +5,16 @@ slug: /commands/insert-menu-item
displayed_sidebar: docs
---
-**INSERT MENU ITEM** ( *menu* ; *depuesDe* ; *textoElem* {; *subMenu* {; *proceso*}}{; *} )
+**INSERT MENU ITEM** ( *menu* : Integer ; *depuesDe* : Integer ; *textoElem* : Text {; *subMenu* : Text {; *proceso* : Integer}}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer | → | Número de menú o referencia de menú |
-| depuesDe | Integer | → | Número de la línea de menú |
-| textoElem | Text | → | Texto para la línea de menú a insertar |
-| subMenu | Text | → | Referencia del submenú asociado con la línea |
-| proceso | Integer | → | Número de referencia del proceso |
-| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
+| menu | Integer | → | Número de menú o referencia de menú |
+| depuesDe | Integer | → | Número de la línea de menú |
+| textoElem | Text | → | Texto para la línea de menú a insertar |
+| subMenu | Text | → | Referencia del submenú asociado con la línea |
+| proceso | Integer | → | Número de referencia del proceso |
+| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
@@ -60,7 +60,7 @@ El siguiente ejemplo crea un menú que consiste en dos comandos los cuales asign
| | |
| --- | --- |
| Número de comando | 412 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
index bde93f8c3fbe9e..7b82171e6f58df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
@@ -5,13 +5,13 @@ slug: /commands/insert-string
displayed_sidebar: docs
---
-**Insert string** ( *fuente* ; *ainsertar* ; *posicion* ) : Text
+**Insert string** ( *fuente* : Text ; *ainsertar* : Text ; *posicion* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Text | → | Cadena en la cual insertar otra cadena |
-| ainsertar | Text | → | Cadena a insertar |
-| posicion | Integer | → | Posición de la inserción |
+| fuente | Text | → | Cadena en la cual insertar otra cadena |
+| ainsertar | Text | → | Cadena a insertar |
+| posicion | Integer | → | Posición de la inserción |
| Resultado | Text | ← | Cadena resultante |
@@ -47,6 +47,6 @@ El siguiente ejemplo ilustra el uso de Insert string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md
index 75cc372784af60..e9ba5d962323fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/int.md
@@ -5,11 +5,11 @@ slug: /commands/int
displayed_sidebar: docs
---
-**Int** ( *Numero* ) : Real
+**Int** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número cuya parte entera se devuelve |
+| Numero | Real | → | Número cuya parte entera se devuelve |
| Resultado | Real | ← | Parte entera de número |
@@ -36,6 +36,6 @@ El siguiente ejemplo ilustra el funcionamiento de Int para números positivos y
| | |
| --- | --- |
| Número de comando | 8 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
index 805a001feed005..2607666608aa6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/integer-to-blob
displayed_sidebar: docs
---
-**INTEGER TO BLOB** ( *entero* ; *BLOB* ; *byteOrden* {; offset | *} )
+**INTEGER TO BLOB** ( *entero* : Integer ; *BLOB* : Blob ; *byteOrden* : Integer {; offset | *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| entero | Integer | → | Valor entero a escribir en el BLOB |
-| Blob | Blob | → | BLOB a recibir el valor entero |
-| byteOrden | Integer | → | 0 Orden de bytes en modo nativo 1 Orden de los bytes Macintosh 2 Orden de los bytes PC |
-| offset | * | Variable, Operador |↔ | Offset expresado en bytes en el BLOB o * para añadir el valor |
-| ||| Nuevo offset después de la escritura si se omite * |
+| entero | Integer | → | Valor entero a escribir en el BLOB |
+| Blob | Blob | → | BLOB a recibir el valor entero |
+| byteOrden | Integer | → | 0 Orden de bytes en modo nativo 1 Orden de los bytes Macintosh 2 Orden de los bytes PC |
+| offset | * | Variable, Operador | ↔ | Offset expresado en bytes en el BLOB o * para añadir el valor |
+| | | | Nuevo offset después de la escritura si se omite * |
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
index 929d503e1bcf9b..dedf797e6157ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
@@ -5,14 +5,13 @@ slug: /commands/integrate-mirror-log-file
displayed_sidebar: docs
---
-**INTEGRATE MIRROR LOG FILE** ( *rutaAcceso* ; *numOperacion* {; *modo* {; *objError*}} )
+**INTEGRATE MIRROR LOG FILE** ( *rutaAcceso* : Text ; *numOperacion* : Real {; *modo* : Integer {; *objError* : Object}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaAcceso | Text | → | Nombre o ruta de acceso del archivo de historial a integrar |
-| numOperacion | Real | → | Número de la última operación integrada |
-| ← | Nuevo número de la última operación integrada o -2 para integrar todo el archivo |
-| modo | Integer | → | 0=modo estricto (modo por defecto), 1=modo auto reparar |
+| rutaAcceso | Text | → | Nombre o ruta de acceso del archivo de historial a integrar |
+| numOperacion | Real | ↔ | *in:* Number of last operation integrated or -2 to integrate the whole file
*out:* New number of last operation integrated |
+| modo | Integer | → | 0=modo estricto (modo por defecto), 1=modo auto reparar |
| objError | Object | ← | Operaciones faltantes |
@@ -109,7 +108,7 @@ Si la integración se efectúa correctamente, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 1312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
index 9f6785ff77f24f..35106c824187dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
@@ -5,13 +5,13 @@ slug: /commands/intersection
displayed_sidebar: docs
---
-**INTERSECTION** ( *conjunto1* ; *conjunto2* ; *resultado* )
+**INTERSECTION** ( *conjunto1* : Text ; *conjunto2* : Text ; *resultado* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Primer conjunto |
-| conjunto2 | Text | → | Segundo conjunto |
-| resultado | Text | → | Conjunto resultante |
+| conjunto1 | Text | → | Primer conjunto |
+| conjunto2 | Text | → | Segundo conjunto |
+| resultado | Text | → | Conjunto resultante |
@@ -55,6 +55,6 @@ El siguiente ejemplo busca los clientes que son atendidos por dos representantes
| | |
| --- | --- |
| Número de comando | 121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
index 154ccc839bdc1f..d654fbfd08f77a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
@@ -5,12 +5,12 @@ slug: /commands/invoke-action
displayed_sidebar: docs
---
-**INVOKE ACTION** ( *accion* {; *objetivo*} )
+**INVOKE ACTION** ( *accion* : Text {; *objetivo* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| accion | Text | → | Nombre o patrón de acción estándar incluyendo parámetro si es necesario |
-| objetivo | Integer | → | Define donde ejecutar la acción: formulario actual (por defecto) o formulario principal |
+| accion | Text | → | Nombre o patrón de acción estándar incluyendo parámetro si es necesario |
+| objetivo | Integer | → | Define donde ejecutar la acción: formulario actual (por defecto) o formulario principal |
@@ -69,6 +69,6 @@ Usted desea ejecutar una acción estándar **Goto page** (página 3) en el formu
| | |
| --- | --- |
| Número de comando | 1439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
index 6a90bf704da614..d1b48b0afd93d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-list
displayed_sidebar: docs
---
-**Is a list** ( *lista* ) : Boolean
+**Is a list** ( *lista* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Referencia de la lista a probar |
+| lista | Integer | → | Referencia de la lista a probar |
| Resultado | Boolean | ← | TRUE si la lista es una lista jerárquica FALSE si la lista no es una lista jerárquica |
@@ -29,6 +29,6 @@ Ver el ejemplo del comando [CLEAR LIST](clear-list.md "CLEAR LIST").
| | |
| --- | --- |
| Número de comando | 621 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
index d1d98a3a09ce73..a38b872820260c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-variable
displayed_sidebar: docs
---
-**Is a variable** ( *puntero* ) : Boolean
+**Is a variable** ( *puntero* : Pointer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| puntero | Pointer | → | Puntero a probar |
+| puntero | Pointer | → | Puntero a probar |
| Resultado | Boolean | ← | TRUE = Puntero apunta a una variable FALSE = Puntero no apunta a una variable |
@@ -30,6 +30,6 @@ Si quiere conocer el nombre de la variable que está siendo apuntada o el númer
| | |
| --- | --- |
| Número de comando | 294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
index 51a8933f9f3b95..325be7561ccde3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
@@ -5,11 +5,11 @@ slug: /commands/is-compiled-mode
displayed_sidebar: docs
---
-**Is compiled mode** {( * )} : Boolean
+**Is compiled mode** ( * ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve la información de la base local |
+| * | Operador | → | Devuelve la información de la base local |
| Resultado | Boolean | ← | Compilado (True), Interpretado (False) |
@@ -50,6 +50,6 @@ En una de sus rutinas, usted incluyó el código de depuración de la base, úti
| | |
| --- | --- |
| Número de comando | 492 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
index 33efe6db48d895..f5421a1473e76e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método evitará la apertura de la base si el archivo de datos está bloque
| | |
| --- | --- |
| Número de comando | 716 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
index cf6d74e3187443..35f9838a3bcf8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Desea permitir que el usuario seleccione una línea que comience con la letra o
| | |
| --- | --- |
| Número de comando | 1744 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
index aae737881fa012..ec4b2da8e85a9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
@@ -5,12 +5,12 @@ slug: /commands/is-field-number-valid
displayed_sidebar: docs
---
-**Is field number valid** ( *ptrTabla* ; *numCamp* ) : Boolean
**Is field number valid** ( *numTabla* ; *numCamp* ) : Boolean
+**Is field number valid** ( *ptrTabla* : Entero largo, Puntero ; *numCamp* : Integer ) : Boolean
**Is field number valid** ( *numTabla* : Entero largo, Puntero ; *numCamp* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o Puntero a una tabla |
-| numCamp | Integer | → | Número de campo |
+| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o Puntero a una tabla |
+| numCamp | Integer | → | Número de campo |
| Resultado | Boolean | ← | True = el campo existe en la tabla False = el campo no existe en la tabla |
@@ -31,6 +31,6 @@ Este comando permite detectar las eventuales eliminaciones de campos, que crean
| | |
| --- | --- |
| Número de comando | 1000 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
index 4e07892f5544d2..3ede648459b3f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo a evaluar |
+| unField | Field | → | Campo a evaluar |
| Resultado | Boolean | ← | True = campo es NULL, False = campo no es NULL |
@@ -34,6 +34,6 @@ El valor devuelto por este comando sólo tiene sentido si la opción "*Mapear va
| | |
| --- | --- |
| Número de comando | 964 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
index 6ccc9b3cf499a4..26f603ea42fa24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este ejemplo permite tener en cuenta todos los tipos de impresiones:
| | |
| --- | --- |
| Número de comando | 1198 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
index c287dbc5f0d82e..58707cc8306c1d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/is-in-set
displayed_sidebar: docs
---
-**Is in set** ( *conjunto* ) : Boolean
+**Is in set** ( *conjunto* : Text ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nombre del conjunto a borrar |
+| conjunto | Text | → | Nombre del conjunto a borrar |
| Resultado | Boolean | ← | El registro actual está en el conjunto (True) o El registro actual no está en el conjunto (False) |
@@ -40,6 +40,6 @@ El siguiente ejemplo es un método de objeto de un botón que prueba si el regis
| | |
| --- | --- |
| Número de comando | 273 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
index 2426656e3d1036..386597e81a8129 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
@@ -5,11 +5,11 @@ slug: /commands/is-license-available
displayed_sidebar: docs
---
-**Is license available** {( *licencia* )} : Boolean
+**Is license available** ( *licencia* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| licencia | Integer | → | Plug-in al cual realizar una prueba de validez de la licencia |
+| licencia | Integer | → | Plug-in al cual realizar una prueba de validez de la licencia |
| Resultado | Boolean | ← | True si el plug-in está disponible, sino False |
@@ -52,6 +52,6 @@ Is license available devuelve [False](false.md "False") si el plug-in está func
| | |
| --- | --- |
| Número de comando | 714 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
index e3d551a37ee65c..c96e349fe17dd7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Usted desea determinar si el sistema operativo actual es macOS:
| | |
| --- | --- |
| Número de comando | 1572 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
index f4378fbbec9fcc..49bcfcc22b3e52 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
@@ -5,11 +5,11 @@ slug: /commands/is-new-record
displayed_sidebar: docs
---
-**Is new record** {( *tabla* )} : Boolean
+**Is new record** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro a examinar o Tabla por defecto si se omite este parámetro |
+| tabla | Table | → | Tabla del registro a examinar o Tabla por defecto si se omite este parámetro |
| Resultado | Boolean | ← | True si el registro está siendo creado, False si no |
@@ -44,6 +44,6 @@ Las dos siguientes instrucciones siguientes son idénticas. La segunda se recomi
| | |
| --- | --- |
| Número de comando | 668 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
index a5122dd8ce3b4c..b7fed564f68553 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/is-nil-pointer
displayed_sidebar: docs
---
-**Is nil pointer** ( *puntero* ) : Boolean
+**Is nil pointer** ( *puntero* : Pointer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| puntero | Pointer | → | Puntero a probar |
+| puntero | Pointer | → | Puntero a probar |
| Resultado | Boolean | ← | TRUE = Puntero Nil (->[]) FALSE = Puntero válido hacia un objeto existente |
@@ -42,6 +42,6 @@ Si quiere conocer el nombre de la variable apuntada o el número del campo, pued
| | |
| --- | --- |
| Número de comando | 315 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
index 037dcafa117af9..23548c5e14f102 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
@@ -5,12 +5,12 @@ slug: /commands/is-picture-file
displayed_sidebar: docs
---
-**Is picture file** ( *rutaArchivo* {; *} ) : Boolean
+**Is picture file** ( *rutaArchivo* : Text {; *} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaArchivo | Text | → | Ruta de acceso del archivo |
-| * | Operador | → | Validar los datos |
+| rutaArchivo | Text | → | Ruta de acceso del archivo |
+| * | Operador | → | Validar los datos |
| Resultado | Boolean | ← | True = rutaArchivo designa un archivo imagen, de lo contrario False |
@@ -34,6 +34,6 @@ Si no pasa el parámetro *\**, el comando prueba el archivo buscando su extensi
| | |
| --- | --- |
| Número de comando | 1113 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
index f68fe62c018eda..86ebe78aebf229 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
@@ -5,11 +5,11 @@ slug: /commands/is-record-loaded
displayed_sidebar: docs
---
-**Is record loaded** {( *tabla* )} : Boolean
+**Is record loaded** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro a examinar o Tabla por defecto si se omite este parámetro |
+| tabla | Table | → | Tabla del registro a examinar o Tabla por defecto si se omite este parámetro |
| Resultado | Boolean | ← | True si se carga el registro Si no False |
@@ -48,6 +48,6 @@ En lugar de utilizar las acciones automáticas “Siguiente registro” o “Reg
| | |
| --- | --- |
| Número de comando | 669 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
index 9d60fb5c158472..ba65e26ae80d1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
@@ -5,11 +5,11 @@ slug: /commands/is-table-number-valid
displayed_sidebar: docs
---
-**Is table number valid** ( *numTabla* ) : Boolean
+**Is table number valid** ( *numTabla* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | Integer | → | Número de tabla |
+| numTabla | Integer | → | Número de tabla |
| Resultado | Boolean | ← | True = la tabla existe en la base, False = la tabla no existe en la base |
@@ -30,6 +30,6 @@ Este comando permite detectar las eventuales eliminaciones de tablas, que crean
| | |
| --- | --- |
| Número de comando | 999 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
index 427dd33d5b6572..4f8da11f85b3f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
@@ -5,11 +5,11 @@ slug: /commands/is-user-deleted
displayed_sidebar: docs
---
-**Is user deleted** ( *refUsuario* ) : Boolean
+**Is user deleted** ( *refUsuario* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de identificación del usuario |
+| refUsuario | Integer | → | Número de identificación del usuario |
| Resultado | Boolean | ← | TRUE = La cuenta del usuario ha sido borrada o no existe FALSE = La cuenta del usuario está activa |
@@ -35,7 +35,7 @@ Si no tiene privilegios de acceso para llamar al comando Is user deleted o si ot
| | |
| --- | --- |
| Número de comando | 616 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
index dc9e58777ecafe..e3b5a189a7ac7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
@@ -67,6 +67,6 @@ End case
| | |
| --- | --- |
| Número de comando | 1422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
index ec05d73bcfed13..bcab03e1616c91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-maximized
displayed_sidebar: docs
---
-**Is window maximized** ( *ventana* ) : Boolean
+**Is window maximized** ( *ventana* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana |
| Resultado | Boolean | ← | True si la ventana está maximizada, False en caso contrario |
@@ -40,6 +40,6 @@ Quiere cambiar entre el estado maximizado y el anterior:
| | |
| --- | --- |
| Número de comando | 1830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
index 5ec84b7b0d6e6e..d87ccb1fa0d197 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-reduced
displayed_sidebar: docs
---
-**Is window reduced** ( *ventana* ) : Boolean
+**Is window reduced** ( *ventana* : Integer ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana |
| Resultado | Boolean | ← | True si la ventana se reduce en la barra de tareas o en el dock, False en caso contrario |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
index e363653060051f..8afdc8a69a90f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Desea determinar si el sistema operativo actual es Windows:
| | |
| --- | --- |
| Número de comando | 1573 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
index 65d61d3469047a..caca14cc99481c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse-array
displayed_sidebar: docs
---
-**JSON PARSE ARRAY** ( *cadenaJSON* ; *array* )
+**JSON PARSE ARRAY** ( *cadenaJSON* : Text ; *array* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cadenaJSON | Text | → | Cadena JSON a analizar |
+| cadenaJSON | Text | → | Cadena JSON a analizar |
| array | Array | ← | Array que contiene el resultado del análisis de la cadena JSON |
@@ -64,6 +64,6 @@ En este ejemplo, los datos de los campos de los registros de una tabla se extrae
| | |
| --- | --- |
| Número de comando | 1219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
index 30ceb5d5a8d389..9ccb054304bbaf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
@@ -5,13 +5,13 @@ slug: /commands/json-parse
displayed_sidebar: docs
---
-**JSON Parse** ( *cadenaJSON* {; *tipo*}{; *} ) : any
+**JSON Parse** ( *cadenaJSON* : Text {; *tipo* : Integer}{; *} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cadenaJSON | Text | → | Cadena en JSON a analizar |
-| tipo | Integer | → | Tipo en el cual convertir los valores |
-| * | Operador | → | Agrega la posición de la línea y el desplazamiento de cada propiedad si el valor devuelto es un objeto |
+| cadenaJSON | Text | → | Cadena en JSON a analizar |
+| tipo | Integer | → | Tipo en el cual convertir los valores |
+| * | Operador | → | Agrega la posición de la línea y el desplazamiento de cada propiedad si el valor devuelto es un objeto |
| Resultado | any, Object | ← | Valores extraídos de la cadena JSON |
@@ -196,6 +196,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número de comando | 1218 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
index 628a55cb311180..934b554e4b4248 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
@@ -5,13 +5,12 @@ slug: /commands/json-resolve-pointers
displayed_sidebar: docs
---
-**JSON Resolve pointers** ( *objeto* {; *opciones*} ) : Object
+**JSON Resolve pointers** ( *objeto* : Object {; *opciones* : Object} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto que contiene punteros JSON para resolver |
-| ← | Objeto con punteros JSON resueltos (sólo si resultado es un objeto) |
-| opciones | Object | → | Opciones para la resolución de punteros |
+| objeto | Object | ↔ | *in:* Object containing JSON pointers to resolve
*out:* Object with JSON pointers resolved (only if result is an object) |
+| opciones | Object | → | Opciones para la resolución de punteros |
| Resultado | Object | ← | Objeto que contiene el resultado del proceso |
@@ -236,6 +235,6 @@ Si ejecuta:
| | |
| --- | --- |
| Número de comando | 1478 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
index e297f8838d1777..f645b6d7b0e79d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify-array
displayed_sidebar: docs
---
-**JSON Stringify array** ( *array* {; *} ) : Text
+**JSON Stringify array** ( *array* : Text array, Real array, Boolean array, Pointer array, Object array {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Text array, Real array, Boolean array, Pointer array, Object array | → | Array cuyo contenido debe ser serializado |
-| * | Operador | → | Mejorar el formato |
+| array | Text array, Real array, Boolean array, Pointer array, Object array | → | Array cuyo contenido debe ser serializado |
+| * | Operador | → | Mejorar el formato |
| Resultado | Text | ← | Cadena que contiene el array JSON serializado |
@@ -114,6 +114,6 @@ Conversión de una selección 4D en un array objeto:
| | |
| --- | --- |
| Número de comando | 1228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
index e6343ff8d820b4..60aa6bc6111613 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify
displayed_sidebar: docs
---
-**JSON Stringify** ( *valor* {; *} ) : Text
+**JSON Stringify** ( *valor* : Object, any {; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| valor | Object, any | → | Datos a convertir en cadena JSON |
-| * | Operador | → | Mejorar el formato |
+| valor | Object, any | → | Datos a convertir en cadena JSON |
+| * | Operador | → | Mejorar el formato |
| Resultado | Text | ← | Cadena que contiene el texto JSON serializado |
@@ -175,6 +175,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número de comando | 1217 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
index 5b4209b9da78b9..02aa79aa69da1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/json-to-selection
displayed_sidebar: docs
---
-**JSON TO SELECTION** ( *laTabla* ; *objetoJson* )
+**JSON TO SELECTION** ( *laTabla* ; *objetoJson* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Puntero a la tabla 4D |
-| objetoJson | Text | → | Cadena en JSON |
+| laTable | Table | → | Puntero a la tabla 4D |
+| objetoJson | Text | → | Cadena en JSON |
@@ -74,6 +74,6 @@ Uso del comando **JSON TO SELECTION** para añadir los registros a la tabla \[Co
| | |
| --- | --- |
| Número de comando | 1235 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
index f33b802f8385f4..d491c1ea71a192 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
@@ -5,12 +5,12 @@ slug: /commands/json-validate
displayed_sidebar: docs
---
-**JSON Validate** ( *vJson* ; *vSchema* ) : Object
+**JSON Validate** ( *vJson* : Object ; *vSchema* : Object ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| vJson | Object | → | Objeto JSON a validar |
-| vSchema | Object | → | Esquema JSON utilizado para validar objetos JSON |
+| vJson | Object | → | Objeto JSON a validar |
+| vSchema | Object | → | Esquema JSON utilizado para validar objetos JSON |
| Resultado | Object | ← | Estado de validación y errores (si los hay) |
@@ -110,6 +110,6 @@ Usted desea validar un objeto JSON con un esquema y obtener la lista de errores
| | |
| --- | --- |
| Número de comando | 1456 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
index 74cff74074e34b..1a339b2209100e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ Utilizando las habilidades de la comunicación interproceso de 4D, puede constru
| | |
| --- | --- |
| Número de comando | 390 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
index 4dd4b513362e9c..7d2219cfd753fa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
@@ -5,11 +5,11 @@ slug: /commands/kill-worker
displayed_sidebar: docs
---
-**KILL WORKER** {( *proceso* )}
+**KILL WORKER** ({ *proceso* : Text, Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Text, Integer | → | Número o nombre del proceso a matar (proceso actual si se omite) |
+| proceso | Text, Integer | → | Número o nombre del proceso a matar (proceso actual si se omite) |
@@ -59,6 +59,6 @@ En el método (*theWorker*), se añade código para manejar esta situación:
| | |
| --- | --- |
| Número de comando | 1390 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
index 0c75a1b112b9ab..aadd23076d4069 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
@@ -5,11 +5,11 @@ slug: /commands/last-field-number
displayed_sidebar: docs
---
-**Last field number** ( *numTabla* ) : Integer
**Last field number** ( *ptrTabla* ) : Integer
+**Last field number** ( *numTabla* : Entero largo, Puntero ) : Integer
**Last field number** ( *ptrTabla* : Entero largo, Puntero ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o puntero a una tabla |
+| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o puntero a una tabla |
| Resultado | Integer | ← | Número de campo más alto en la tabla |
@@ -48,6 +48,6 @@ El siguiente método de proyecto crea el array *asCampos*, con los nombres de lo
| | |
| --- | --- |
| Número de comando | 255 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
index e038f158edb251..b696aa4ae53c57 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-path
displayed_sidebar: docs
---
-**Last query path** ( *formatDesc* ) : Text
+**Last query path** ( *formatDesc* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| formatDesc | Integer | → | Formato de descripción (Texto o XML) |
+| formatDesc | Integer | → | Formato de descripción (Texto o XML) |
| Resultado | Text | ← | Descripción de la ruta de la última búsqueda ejecutada |
@@ -39,6 +39,6 @@ La descripción de la ruta de la última búsqueda puede compararse con la descr
| | |
| --- | --- |
| Número de comando | 1045 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
index f63434929c086b..f2a1b7e1bb8eaa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-plan
displayed_sidebar: docs
---
-**Last query plan** ( *formatDesc* ) : Text
+**Last query plan** ( *formatDesc* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| formatDesc | Integer | → | Formato de descripción (Texto o XML) |
+| formatDesc | Integer | → | Formato de descripción (Texto o XML) |
| Resultado | Text | ← | Descripción del plan de la última búsqueda ejecutada |
@@ -40,6 +40,6 @@ La descripción del plan de la última búsqueda puede compararse con la descrip
| | |
| --- | --- |
| Número de comando | 1046 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
index f916e5a2fde4b3..a4481f022249cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
@@ -5,11 +5,11 @@ slug: /commands/last-record
displayed_sidebar: docs
---
-**LAST RECORD** {( *tabla* )}
+**LAST RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual mover el último registro seleccionado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual mover el último registro seleccionado o Tabla por defecto, si se omite |
@@ -38,7 +38,7 @@ El siguiente ejemplo designa el último registro de la tabla \[Personas\] como r
| | |
| --- | --- |
| Número de comando | 200 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
index 6fb739a1cc731f..3dfdb8cbbecaf6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ El siguiente ejemplo inicializa los elementos del array *asTablas,* con los nomb
| | |
| --- | --- |
| Número de comando | 254 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
index 3e7e20c6c9ba18..ce51741694b92a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado en un proceso de actualización aut
| | |
| --- | --- |
| Número de comando | 1301 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
index 52ab1a4217b673..0671585752fffd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
@@ -5,12 +5,12 @@ slug: /commands/launch-external-process
displayed_sidebar: docs
---
-**LAUNCH EXTERNAL PROCESS** ( *nomArchivo* {; *flujoEntrada* {; *flujoSalida* {; *flujoError*}}}{; *pid*} )
+**LAUNCH EXTERNAL PROCESS** ( *nomArchivo* : Text {; *flujoEntrada* : Text, Blob {; *flujoSalida* : Text, Blob {; *flujoError* : Text, Blob}}}{; *pid* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Ruta de acceso y argumentos del archivo a abrir |
-| flujoEntrada | Text, Blob | → | Flujo de entrada(stdin) |
+| nomArchivo | Text | → | Ruta de acceso y argumentos del archivo a abrir |
+| flujoEntrada | Text, Blob | → | Flujo de entrada(stdin) |
| flujoSalida | Text, Blob | ← | Flujo de salida (stdout) |
| flujoError | Text, Blob | ← | Flujo de error(stderr) |
| pid | Integer | ← | Identificador único del proceso externo |
@@ -151,7 +151,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 811 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
index 1e25146ef453fc..5a8bf3cba315d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
@@ -5,14 +5,14 @@ slug: /commands/ldap-login
displayed_sidebar: docs
---
-**LDAP LOGIN** ( *url* ; *login* ; *password* {; *digest*} )
+**LDAP LOGIN** ( *url* : Text ; *login* : Text ; *password* : Text {; *digest* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| url | Text | → | URL del servidor LDAP al cual conectarse |
-| login | Text | → | Cuenta del usuario |
-| password | Text | → | Contraseña del usuario |
-| digest | Integer | → | 0 = enviar contraseña en digest MD5 (por defecto), 1 = enviar contraseña sin encripción |
+| url | Text | → | URL del servidor LDAP al cual conectarse |
+| login | Text | → | Cuenta del usuario |
+| password | Text | → | Contraseña del usuario |
+| digest | Integer | → | 0 = enviar contraseña en digest MD5 (por defecto), 1 = enviar contraseña sin encripción |
@@ -102,6 +102,6 @@ Este ejemplo intenta conectarse a una aplicación:
| | |
| --- | --- |
| Número de comando | 1326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
index d5b8b891db58bf..18566e4e290c90 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
index a075666476b1a0..d336acbe2db376 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
@@ -5,16 +5,16 @@ slug: /commands/ldap-search-all
displayed_sidebar: docs
---
-**LDAP SEARCH ALL** ( *dnRootEntry* ; *arrResult* ; *filtro* {; *alcance* {; *atributos* {; *atributosenArray*}}} )
+**LDAP SEARCH ALL** ( *dnRootEntry* : Text ; *arrResult* : Object array ; *filtro* : Text {; *alcance* : Text {; *atributos* : Text array {; *atributosenArray* : Boolean array}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | Distinguished Name del elemento raíz donde iniciar la búsqueda |
+| dnRootEntry | Text | → | Distinguished Name del elemento raíz donde iniciar la búsqueda |
| arrResult | Object array | ← | Resultado de la búsqueda |
-| filtro | Text | → | Filtro de búsqueda LDAP |
-| alcance | Text | → | Alcance de la búsqueda: "base" (por defecto), "one", o "sub" |
-| atributos | Text array | → | Atributos a recuperar |
-| atributosenArray | Boolean array | → | True = forzar el retorno de los atributos como array; false = forzar el retorno de los atributos como variables simples |
+| filtro | Text | → | Filtro de búsqueda LDAP |
+| alcance | Text | → | Alcance de la búsqueda: "base" (por defecto), "one", o "sub" |
+| atributos | Text array | → | Atributos a recuperar |
+| atributosenArray | Boolean array | → | True = forzar el retorno de los atributos como array; false = forzar el retorno de los atributos como variables simples |
@@ -121,6 +121,6 @@ Estos ejemplos ilustran el uso del parámetro *atributosEnArray*:
| | |
| --- | --- |
| Número de comando | 1329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
index 6a687668d7ebcd..64b09614fc23b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
@@ -5,15 +5,15 @@ slug: /commands/ldap-search
displayed_sidebar: docs
---
-**LDAP Search** ( *dnRootEntry* ; *filtro* {; *alcance* {; *atributos* {; *atributosEnArray*}}} ) : Object
+**LDAP Search** ( *dnRootEntry* : Text ; *filtro* : Text {; *alcance* : Text {; *atributos* : Text array {; *atributosEnArray* : Boolean array}}} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | Distinguished Name del elemento raíz donde la búsqueda se inicia |
-| filtro | Text | → | Filtro de búsqueda LDAP |
-| alcance | Text | → | Campo de acción de la búsqueda: "base" (por defecto), "one", o "sub" |
-| atributos | Text array | → | Atributo(s) a recuperar |
-| atributosEnArray | Boolean array | → | True = forzar el retorno de los atributos como array; False = forzar el retorno de los atributos como una variable simple |
+| dnRootEntry | Text | → | Distinguished Name del elemento raíz donde la búsqueda se inicia |
+| filtro | Text | → | Filtro de búsqueda LDAP |
+| alcance | Text | → | Campo de acción de la búsqueda: "base" (por defecto), "one", o "sub" |
+| atributos | Text array | → | Atributo(s) a recuperar |
+| atributosEnArray | Boolean array | → | True = forzar el retorno de los atributos como array; False = forzar el retorno de los atributos como una variable simple |
| Resultado | Object | ← | Atributos llave/valor |
@@ -89,6 +89,6 @@ Queremos obtener una array de todas las entradas que se encuentran en el atribut
| | |
| --- | --- |
| Número de comando | 1328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md
index a43d1e2dd52e6d..84445f529cb530 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/length.md
@@ -5,11 +5,11 @@ slug: /commands/length
displayed_sidebar: docs
---
-**Length** ( *cadena* ) : Integer
+**Length** ( *cadena* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cadena | Text | → | Cadena de la cual devolver la longitud |
+| cadena | Text | → | Cadena de la cual devolver la longitud |
| Resultado | Integer | ← | Longitud de la cadena |
@@ -35,6 +35,6 @@ Este ejemplo ilustra el uso de Length. Los resultados, descritos en los comentar
| | |
| --- | --- |
| Número de comando | 16 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md
index a0cffdd12ba99d..4dcd7f6c431239 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este ejemplo es una plantilla para un método de formulario. Muestra cada evento
| | |
| --- | --- |
| Número de comando | 101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
index 167f02e795b993..1b0eeb3276d886 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Esta tabla detalla el contenido del objeto de sesión para las sesiones REST:
| | |
| --- | --- |
| Número de comando | 1782 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
index 58b0f80e111359..f64a13453213ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-parent
displayed_sidebar: docs
---
-**List item parent** ( {* ;} *lista* ; refElem | * ) : Integer
+**List item parent** ( {* ;} *lista* : Integer, Text ; refElem | * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de la lista (si se omite *), o Nombre de objeto de tipo lista (si se pasa*) |
-| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de la lista (si se omite *), o Nombre de objeto de tipo lista (si se pasa*) |
+| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
| Resultado | Integer | ← | Número de referencia del elemento padre o 0 si no hay |
@@ -77,6 +77,6 @@ Los números de referencia de los elementos son los siguientes:
| | |
| --- | --- |
| Número de comando | 633 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
index c7d02dfbac0f0c..6320d8b1cecc65 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-position
displayed_sidebar: docs
---
-**List item position** ( {* ;} *lista* ; *refElem* ) : Integer
+**List item position** ( {* ;} *lista* : Integer, Text ; *refElem* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) Nombre de objeto de tipo lista (si se pasa *) |
-| refElem | Integer | → | Número de referencia del elemento |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) Nombre de objeto de tipo lista (si se pasa *) |
+| refElem | Integer | → | Número de referencia del elemento |
| Resultado | Integer | ← | Posición del elemento en listas desplegadas/contraídas |
@@ -44,6 +44,6 @@ Si el elemento no existe, List item position devuelve 0.
| | |
| --- | --- |
| Número de comando | 629 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
index ced18bfe57a558..deea183ea06d77 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-choice-lists
displayed_sidebar: docs
---
-**LIST OF CHOICE LISTS** ( *arrayNums* ; *arrayNoms* )
+**LIST OF CHOICE LISTS** ( *arrayNums* : Integer array ; *arrayNoms* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ Los números de las listas corresponden a su orden de creación. En el editor de
| | |
| --- | --- |
| Número de comando | 957 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
index f2837b6a8e19f4..030fe72084d647 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-style-sheets
displayed_sidebar: docs
---
-**LIST OF STYLE SHEETS** ( *arrHojasEstilo* )
+**LIST OF STYLE SHEETS** ( *arrHojasEstilo* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Si ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1255 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
index 97234b2e35f795..7bcb73babc1fb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
@@ -5,11 +5,11 @@ slug: /commands/list-to-array
displayed_sidebar: docs
---
-**LIST TO ARRAY** ( *lista* ; *array* {; *refElementos*} )
+**LIST TO ARRAY** ( *lista* : Text, Integer ; *array* : Array {; *refElementos* : Array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Text, Integer | → | Lista de la cual copiar los elementos de primer nivel |
+| lista | Text, Integer | → | Lista de la cual copiar los elementos de primer nivel |
| array | Array | ← | Array al cual copiar los elementos de la lista |
| refElementos | Array | ← | Números de referencia de los elementos de la lista |
@@ -90,6 +90,6 @@ Si ejecuta la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
index 4041047fa24971..e2344af50bfd8e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/list-to-blob
displayed_sidebar: docs
---
-**LIST TO BLOB** ( *lista* ; *BLOB* {; *} )
+**LIST TO BLOB** ( *lista* : Integer ; *BLOB* : Blob {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Lista jerárquica a almacenar en el BLOB |
-| Blob | Blob | → | BLOB a recibir la lista jerárquica |
-| * | Operador | → | * añadir el valor |
+| lista | Integer | → | Lista jerárquica a almacenar en el BLOB |
+| Blob | Blob | → | BLOB a recibir la lista jerárquica |
+| * | Operador | → | * añadir el valor |
@@ -51,7 +51,7 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 556 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
index 3d058de0dcbae8..dbfdf7a1a643ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-collapse
displayed_sidebar: docs
---
-**LISTBOX COLLAPSE** ( {* ;} *objeto* {; *recursivo* {; *selector* {; *grueso* {; *columna*}}}} )
+**LISTBOX COLLAPSE** ( * ; *objeto* : Text {; *recursivo* : Boolean {; *selector* : Integer {; *grueso* : Integer {; *columna* : Integer}}}} )
**LISTBOX COLLAPSE** ( *objeto* : Field, Variable {; *recursivo* : Boolean {; *selector* : Integer {; *grueso* : Integer {; *columna* : Integer}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena), Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variables (si se omite *) |
-| recursivo | Boolean | → | True = contraer los subniveles
False = no contraer los subniveles |
-| selector | Integer | → | Parte del list box a contraer |
-| grueso | Integer | → | Número de línea de la ruptura a contraer o
Número de nivel del listbox a contraer |
-| columna | Integer | → | Número de columna de la ruptura a contraer |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena), Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variables (si se omite *) |
+| recursivo | Boolean | → | True = contraer los subniveles
False = no contraer los subniveles |
+| selector | Integer | → | Parte del list box a contraer |
+| grueso | Integer | → | Número de línea de la ruptura a contraer o
Número de nivel del listbox a contraer |
+| columna | Integer | → | Número de columna de la ruptura a contraer |
@@ -56,6 +56,6 @@ Este ejemplo colapsa el primer nivel de líneas de ruptura de la selección en e
| | |
| --- | --- |
| Número de comando | 1101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
index e855efb2c1ccf2..24b77be7dea610 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-column
displayed_sidebar: docs
---
-**LISTBOX DELETE COLUMN** ( {* ;} *objeto* ; *posicionCol* {; *numero*} )
+**LISTBOX DELETE COLUMN** ( * ; *objeto* : Text ; *posicionCol* : Integer {; *numero* : Integer} )
**LISTBOX DELETE COLUMN** ( *objeto* : Field, Variable ; *posicionCol* : Integer {; *numero* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| posicionCol | Integer | → | Número de la columna a eliminar |
-| numero | Integer | → | Número de columnas a eliminar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| posicionCol | Integer | → | Número de la columna a eliminar |
+| numero | Integer | → | Número de columnas a eliminar |
@@ -39,6 +39,6 @@ Si el parámetro *posicionCol* es mayor al número de columnas en el list box, e
| | |
| --- | --- |
| Número de comando | 830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
index 4b8d7b28cf06a8..3aab2a3aae87b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-rows
displayed_sidebar: docs
---
-**LISTBOX DELETE ROWS** ( {* ;} *objeto* ; *posicionL* {; *numLineas*} )
+**LISTBOX DELETE ROWS** ( * ; *objeto* : Text ; *posicionL* : Integer {; *numLineas* : Integer} )
**LISTBOX DELETE ROWS** ( *objeto* : Field, Variable ; *posicionL* : Integer {; *numLineas* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| posicionL | Integer | → | Posición de la fila a eliminar |
-| numLineas | Integer | → | Número de líneas a borrar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| posicionL | Integer | → | Posición de la fila a eliminar |
+| numLineas | Integer | → | Número de líneas a borrar |
@@ -41,7 +41,7 @@ Si el parámetro *posicion* es superior al número de líneas del array del list
| | |
| --- | --- |
| Número de comando | 914 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
index 10b42f36766000..e164cdb73dc059 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-duplicate-column
displayed_sidebar: docs
---
-**LISTBOX DUPLICATE COLUMN** ( {* ;} *objeto* ; *posCol* ; *nomCol* ; *varCol* ; *nomEncab* ; *varEncab* {; *nomPie* ; *varPie*} )
+**LISTBOX DUPLICATE COLUMN** ( * ; *objeto* : Text ; *posCol* : Integer ; *nomCol* : Text ; *varCol* : Array, Field, Variable, Pointer ; *nomEncab* : Text ; *varEncab* : Integer, Pointer {; *nomPie* : Text ; *varPie* : Variable, Pointer} )
**LISTBOX DUPLICATE COLUMN** ( *objeto* : Field, Variable ; *posCol* : Integer ; *nomCol* : Text ; *varCol* : Array, Field, Variable, Pointer ; *nomEncab* : Text ; *varEncab* : Integer, Pointer {; *nomPie* : Text ; *varPie* : Variable, Pointer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| posCol | Integer | → | Ubicación de la nueva columna duplicada |
-| nomCol | Text | → | Nombre de la nueva columna |
-| varCol | Array, Field, Variable, Pointer | → | Nombre de la variable array de la columna o campo o variable |
-| nomEncab | Text | → | Nombre del objeto del encabezado de la columna |
-| varEncab | Integer, Pointer | → | Variable del encabezado de la columna |
-| nomPie | Text | → | Nombre del objeto del pie de la columna |
-| varPie | Variable, Pointer | → | Variable del pie de la columna |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| posCol | Integer | → | Ubicación de la nueva columna duplicada |
+| nomCol | Text | → | Nombre de la nueva columna |
+| varCol | Array, Field, Variable, Pointer | → | Nombre de la variable array de la columna o campo o variable |
+| nomEncab | Text | → | Nombre del objeto del encabezado de la columna |
+| varEncab | Integer, Pointer | → | Variable del encabezado de la columna |
+| nomPie | Text | → | Nombre del objeto del pie de la columna |
+| varPie | Variable, Pointer | → | Variable del pie de la columna |
@@ -91,6 +91,6 @@ Note que las variables de encabezado y de pie de página siempre se crean con un
| | |
| --- | --- |
| Número de comando | 1273 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
index ea2dc5ba619ecc..6bab7a6e3c73e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-expand
displayed_sidebar: docs
---
-**LISTBOX EXPAND** ( {* ;} *objeto* {; *recursivo* {; *selector* {; *grueso* {; *columna*}}}} )
+**LISTBOX EXPAND** ( * ; *objeto* : Text {; *recursivo* : Boolean {; *selector* : Integer {; *grueso* : Integer {; *columna* : Integer}}}} )
**LISTBOX EXPAND** ( *objeto* : Field, Variable {; *recursivo* : Boolean {; *selector* : Integer {; *grueso* : Integer {; *columna* : Integer}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objetos es un nombre de objeto (cadena). Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
-| recursivo | Boolean | → | Verdadero = desplegar los subniveles, Falso = no desplegar los subniveles |
-| selector | Integer | → | Parte del list box a desplegar |
-| grueso | Integer | → | Número de línea de la ruptura a desplegar o Número de nivel del listbox a desplegar |
-| columna | Integer | → | Número de columna de la ruptura a desplegar |
+| * | Operador | → | Si se especifica, objetos es un nombre de objeto (cadena). Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| recursivo | Boolean | → | Verdadero = desplegar los subniveles, Falso = no desplegar los subniveles |
+| selector | Integer | → | Parte del list box a desplegar |
+| grueso | Integer | → | Número de línea de la ruptura a desplegar o Número de nivel del listbox a desplegar |
+| columna | Integer | → | Número de columna de la ruptura a desplegar |
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número de comando | 1100 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
index ad59d909743dd3..9477c625b30acb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-array
displayed_sidebar: docs
---
-**LISTBOX Get array** ( {* ;} *objeto* ; *tipoArray* ) : Pointer
+**LISTBOX Get array** ( * ; *objeto* : Text ; *tipoArray* : Integer ) : Pointer
**LISTBOX Get array** ( *objeto* : Field, Variable ; *tipoArray* : Integer ) : Pointer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
-| tipoArray | Integer | → | Tipo de array |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
+| tipoArray | Integer | → | Tipo de array |
| Resultado | Pointer | ← | Puntero al array asociado a la propiedad |
@@ -66,6 +66,6 @@ Ejemplos típicos de uso:
| | |
| --- | --- |
| Número de comando | 1278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
index 1e48cc452649a2..e4628be92d0c6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-arrays
displayed_sidebar: docs
---
-**LISTBOX GET ARRAYS** ( {* ;} *objeto* ; *arrNomsCols* ; *arrNomsEncabezados* ; *arrVarCols* ; *arrVarEncabezados* ; *arrColsVisibles* ; *arrEstilos* {; *arrNomsPies* ; *arrVarsPies*} )
+**LISTBOX GET ARRAYS** ( * ; *objeto* : Text ; *arrNomsCols* : Text array ; *arrNomsEncabezados* : Text array ; *arrVarCols* : Pointer array ; *arrVarEncabezados* : Pointer array ; *arrColsVisibles* : Boolean array ; *arrEstilos* : Pointer array {; *arrNomsPies* : Text array ; *arrVarsPies* : Pointer array} )
**LISTBOX GET ARRAYS** ( *objeto* : Field, Variable ; *arrNomsCols* : Text array ; *arrNomsEncabezados* : Text array ; *arrVarCols* : Pointer array ; *arrVarEncabezados* : Pointer array ; *arrColsVisibles* : Boolean array ; *arrEstilos* : Pointer array {; *arrNomsPies* : Text array ; *arrVarsPies* : Pointer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| arrNomsCols | Text array | ← | Nombres de objeto de las columnas |
| arrNomsEncabezados | Text array | ← | Nombres de objeto de los títulos |
| arrVarCols | Pointer array | ← | Punteros hacia las variables de las columnas |
@@ -55,6 +55,6 @@ Para un list box de tipo selección, colección o selección de entidades, *arrE
| | |
| --- | --- |
| Número de comando | 832 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
index 2a7b8294f87022..07e8e53a54e79e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX Get auto row height** ( {* ;} *objeto* ; *selector* {; *unidad*} ) : Integer
+**LISTBOX Get auto row height** ( * ; *objeto* : Text ; *selector* : Integer {; *unidad* : Integer} ) : Integer
**LISTBOX Get auto row height** ( *objeto* : Field, Variable ; *selector* : Integer {; *unidad* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable. |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
-| selector | Integer | → | Valor altura a obtener: lk row min height o lk row max height |
-| unidad | Integer | → | Unidad de valor de altura: 0 = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable. |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| selector | Integer | → | Valor altura a obtener: lk row min height o lk row max height |
+| unidad | Integer | → | Unidad de valor de altura: 0 = píxeles, 1 = líneas |
| Resultado | Integer | ← | Valor de altura de línea seleccionado |
@@ -61,6 +61,6 @@ Usted desea obtener el número máximo de líneas para una línea de list box:
| | |
| --- | --- |
| Número de comando | 1502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
index 9415747ae4694d..3a5027cbe5cfbc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-coordinates
displayed_sidebar: docs
---
-**LISTBOX GET CELL COORDINATES** ( {* ;} *object* ; *column* ; *linea* ; *izquierda* ; *arriba* ; *der* ; *abajo* )
+**LISTBOX GET CELL COORDINATES** ( * ; *object* : Text ; *column* : Integer ; *linea* : Integer ; *izquierda* : Integer ; *arriba* : Integer ; *der* : Integer ; *abajo* : Integer )
**LISTBOX GET CELL COORDINATES** ( *object* : Field, Variable ; *column* : Integer ; *linea* : Integer ; *izquierda* : Integer ; *arriba* : Integer ; *der* : Integer ; *abajo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica = objeto es un nombre de objeto (cadena) Si se omite = objeto es una variable |
-| object | any | → | Nombre de objeto (si * se especifica) o variable (si * se omite) |
-| column | Integer | → | Número de columna |
-| linea | Integer | → | Número de línea |
+| * | Operador | → | Si se especifica = objeto es un nombre de objeto (cadena) Si se omite = objeto es una variable |
+| object | any | → | Nombre de objeto (si * se especifica) o variable (si * se omite) |
+| column | Integer | → | Número de columna |
+| linea | Integer | → | Número de línea |
| izquierda | Integer | ← | Coordenada izquierda del objeto |
| arriba | Integer | ← | Coordenada superior del objeto |
| der | Integer | ← | Coordenada derecha del objeto |
@@ -58,6 +58,6 @@ Usted quiere dibujar un rectángulo rojo alrededor de la celda seleccionada de u
| | |
| --- | --- |
| Número de comando | 1330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
index 19d8d2a3b6c5b8..100d563d3be6c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-position
displayed_sidebar: docs
---
-**LISTBOX GET CELL POSITION** ( {* ;} *objeto* {; *X* ; *Y* }; *columna* ; *linea* {; *varCol*} )
+**LISTBOX GET CELL POSITION** ( * ; *objeto* : Text {; *X* : Real ; *Y* : Real }; *columna* : Integer ; *linea* : Integer {; *varCol* : Pointer} )
**LISTBOX GET CELL POSITION** ( *objeto* : Field, Variable {; *X* : Real ; *Y* : Real }; *columna* : Integer ; *linea* : Integer {; *varCol* : Pointer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| X | Real | → | Coordenada horizontal del ratón |
-| Y | Real | → | Coordenada vertical del ratón |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| X | Real | → | Coordenada horizontal del ratón |
+| Y | Real | → | Coordenada vertical del ratón |
| columna | Integer | ← | Número de columna |
| linea | Integer | ← | Número de fila |
| varCol | Pointer | ← | Puntero a la variable de la columna |
@@ -59,6 +59,6 @@ Este comando tiene en cuenta las acciones de selección o deselección efectuada
| | |
| --- | --- |
| Número de comando | 971 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
index 0a0f993f0d5ca8..15e61454a148ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-formula
displayed_sidebar: docs
---
-**LISTBOX Get column formula** ( {* ;} *objeto* ) : Text
+**LISTBOX Get column formula** ( * ; *objeto* : Text ) : Text
**LISTBOX Get column formula** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | Fórmula asociada a la columna |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1202 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
index 44f19f76ad3bc9..1d874752b985e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-width
displayed_sidebar: docs
---
-**LISTBOX Get column width** ( {* ;} *objeto* {; *anchoMin* {; *anchoMax*}} ) : Integer
+**LISTBOX Get column width** ( * ; *objeto* : Text {; *anchoMin* : Integer {; *anchoMax* : Integer}} ) : Integer
**LISTBOX Get column width** ( *objeto* : Field, Variable {; *anchoMin* : Integer {; *anchoMax* : Integer}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| anchoMin | Integer | ← | Ancho mínimo de la columna (en píxeles) |
| anchoMax | Integer | ← | Ancho máximo de la columna (en píxeles) |
| Resultado | Integer | ← | Ancho de la columna (en píxeles) |
@@ -35,6 +35,6 @@ Si no se ha definido ningún valor de ancho mínimo y/o máximo para la columna,
| | |
| --- | --- |
| Número de comando | 834 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
index 2a33e87322ef22..2c53de4513b86c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX Get footer calculation** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get footer calculation** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get footer calculation** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| resultado | Integer | ← | Tipo de cálculo |
@@ -36,6 +36,6 @@ Puede comparar el valor devuelto con las constantes del tema *List box cálculo
| | |
| --- | --- |
| Número de comando | 1150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
index 4b804387ca7605..658e0d47d828f7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-footers-height
displayed_sidebar: docs
---
-**LISTBOX Get footers height** ( {* ;} *objeto* {; *unidad*} ) : Integer
+**LISTBOX Get footers height** ( * ; *objeto* : Text {; *unidad* : Integer} ) : Integer
**LISTBOX Get footers height** ( *objeto* : Field, Variable {; *unidad* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
| resultado | Integer | ← | Alto de la línea |
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1146 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
index 31cb9757b8792c..a74d442ce91b2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid-colors
displayed_sidebar: docs
---
-**LISTBOX GET GRID COLORS** ( {* ;} *objeto* ; *colorH* ; *colorV* )
+**LISTBOX GET GRID COLORS** ( * ; *objeto* : Text ; *colorH* : Text, Integer ; *colorV* : Text, Integer )
**LISTBOX GET GRID COLORS** ( *objeto* : Field, Variable ; *colorH* : Text, Integer ; *colorV* : Text, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| colorH | Text, Integer | ← | Valor de color RGB para las líneas horizontales |
| colorV | Text, Integer | ← | Valor de color RGB para las líneas verticales |
@@ -36,6 +36,6 @@ En *colorH* y *colorV*, el comando devuelve los valores de los colores RGB. El f
| | |
| --- | --- |
| Número de comando | 1200 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
index 4e82a6f473a352..53757b8f622b2c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid
displayed_sidebar: docs
---
-**LISTBOX GET GRID** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**LISTBOX GET GRID** ( * ; *objeto* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX GET GRID** ( *objeto* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| horizontal | Boolean | ← | True = visible, False = oculto |
| vertical | Boolean | ← | True = visible, False = oculto |
@@ -33,6 +33,6 @@ El comando devuelve en los parámetros *horizontal* y *vertical*, el valor **Tru
| | |
| --- | --- |
| Número de comando | 1199 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
index 132303c5ef7bae..c4d75d1ec4bfcc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-headers-height
displayed_sidebar: docs
---
-**LISTBOX Get headers height** ( {* ;} *objeto* {; *unidad*} ) : Integer
+**LISTBOX Get headers height** ( * ; *objeto* : Text {; *unidad* : Integer} ) : Integer
**LISTBOX Get headers height** ( *objeto* : Field, Variable {; *unidad* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
| resultado | Integer | ← | Alto de la línea |
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1144 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
index b124697b2e7759..1d771ecc7356ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-hierarchy
displayed_sidebar: docs
---
-**LISTBOX GET HIERARCHY** ( {* ;} *objeto* ; *jerarquico* {; *jerarquia*} )
+**LISTBOX GET HIERARCHY** ( * ; *objeto* : Text ; *jerarquico* : Boolean {; *jerarquia* : Pointer array} )
**LISTBOX GET HIERARCHY** ( *objeto* : Field, Variable ; *jerarquico* : Boolean {; *jerarquia* : Pointer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variables (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variables (si * se omite) |
| jerarquico | Boolean | ← | True = list box jerárquico, False = list box no jerárquico |
| jerarquia | Pointer array | ← | Array de punteros |
@@ -40,6 +40,6 @@ Si el list box está en modo jerárquico, el comando llena el array *jerarquia*
| | |
| --- | --- |
| Número de comando | 1099 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
index c454f6b48dc7ae..29902d3b163c60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-locked-columns
displayed_sidebar: docs
---
-**LISTBOX Get locked columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get locked columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get locked columns** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| resultado | Integer | ← | Número de columnas bloqueadas |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
index 7018f2aa3ab121..bf316955abd84d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-columns
displayed_sidebar: docs
---
-**LISTBOX Get number of columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get number of columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get number of columns** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Integer | ← | Número de columnas |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
index e9cedcb7e24620..16abe47073b055 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-rows
displayed_sidebar: docs
---
-**LISTBOX Get number of rows** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get number of rows** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get number of rows** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Integer | ← | Número de filas |
@@ -35,6 +35,6 @@ Si pasa el parámetro opcional \*, indica que el parámetro *objeto* es un nombr
| | |
| --- | --- |
| Número de comando | 915 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
index 8c40fcc439296e..2e3c7c8eb546d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-objects
displayed_sidebar: docs
---
-**LISTBOX GET OBJECTS** ( {* ;} *objeto* ; *arrayNomObjeto* )
+**LISTBOX GET OBJECTS** ( * ; *objeto* : Text ; *arrayNomObjeto* : Text array )
**LISTBOX GET OBJECTS** ( *objeto* : Field, Variable ; *arrayNomObjeto* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si * se especifica) o Variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si * se especifica) o Variable (si * se omite) |
| arrayNomObjeto | Text array | ← | Nombres de los sub objetos del list box (encabezados, columnas, pies) |
@@ -65,6 +65,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
index 2df241da6b77fb..06bdf349e65752 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-print-information
displayed_sidebar: docs
---
-**LISTBOX GET PRINT INFORMATION** ( {* ;} *objeto* ; *selector* ; *info* )
+**LISTBOX GET PRINT INFORMATION** ( * ; *objeto* : Text ; *selector* : Integer ; *info* : Integer )
**LISTBOX GET PRINT INFORMATION** ( *objeto* : Field, Variable ; *selector* : Integer ; *info* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| selector | Integer | → | Información a obtener |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| selector | Integer | → | Información a obtener |
| info | Integer | ← | Valor actual |
@@ -73,6 +73,6 @@ Impresión de al menos 500 líneas del list box, conociendo que algunas líneas
| | |
| --- | --- |
| Número de comando | 1110 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
index fe4d3977dee943..c4e716c7b22c9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color-as-number
displayed_sidebar: docs
---
-**LISTBOX Get row color as number** ( {* ;} *objeto* ; *fila* {; *tipoColor*} ) : Integer
+**LISTBOX Get row color as number** ( * ; *objeto* : Text ; *fila* : Integer {; *tipoColor* : Integer} ) : Integer
**LISTBOX Get row color as number** ( *objeto* : Field, Variable ; *fila* : Integer {; *tipoColor* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
-| fila | Integer | → | Número de fila |
-| tipoColor | Integer | → | Listbox color de fuente (por defecto) o Listbox color de fondo |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
+| fila | Integer | → | Número de fila |
+| tipoColor | Integer | → | Listbox color de fuente (por defecto) o Listbox color de fondo |
| Resultado | Integer | ← | Valor de color |
@@ -64,6 +64,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1271 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
index 9e084f7f39886e..885d7937edca80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color
displayed_sidebar: docs
---
-**LISTBOX Get row color** ( {* ;} *objeto* ; *fila* {; *tipoColor*} ) : Text
+**LISTBOX Get row color** ( * ; *objeto* : Text ; *fila* : Integer {; *tipoColor* : Integer} ) : Text
**LISTBOX Get row color** ( *objeto* : Field, Variable ; *fila* : Integer {; *tipoColor* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, el objeto es un nombre de objeto (cadena) Si se omite, el objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) |
-| fila | Integer | → | Numero de fila |
-| tipoColor | Integer | → | Color de fuente del list box (predeterminado) o color de fondo del list box |
+| * | Operador | → | Si se especifica, el objeto es un nombre de objeto (cadena) Si se omite, el objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) |
+| fila | Integer | → | Numero de fila |
+| tipoColor | Integer | → | Color de fuente del list box (predeterminado) o color de fondo del list box |
| Resultado | Text | ← | Valor del color |
@@ -63,6 +63,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1658 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
index 41decbc0cd9674..97aee5a4fb2a9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-font-style
displayed_sidebar: docs
---
-**LISTBOX Get row font style** ( {* ;} *objeto* ; *linea* ) : Integer
+**LISTBOX Get row font style** ( * ; *objeto* : Text ; *linea* : Integer ) : Integer
**LISTBOX Get row font style** ( *objeto* : Field, Variable ; *linea* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto(si se especifica *) o
Variable (si se omite *) |
-| linea | Integer | → | Número de línea |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto(si se especifica *) o
Variable (si se omite *) |
+| linea | Integer | → | Número de línea |
| Resultado | Integer | ← | Valor de estilo |
@@ -55,6 +55,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
index 044be8645f215c..531eba6d2947e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-height
displayed_sidebar: docs
---
-**LISTBOX Get row height** ( {* ;} *objeto* ; *linea* ) : Integer
+**LISTBOX Get row height** ( * ; *objeto* : Text ; *linea* : Integer ) : Integer
**LISTBOX Get row height** ( *objeto* : Field, Variable ; *linea* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
-| linea | Integer | → | Línea de list box, cuya altura desea obtener |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| linea | Integer | → | Línea de list box, cuya altura desea obtener |
| Resultado | Integer | ← | Altura de la fila |
@@ -40,6 +40,6 @@ El valor de la altura de la línea se expresa:
| | |
| --- | --- |
| Número de comando | 1408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
index 7c755031dadd18..3e29bffa15812c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-rows-height
displayed_sidebar: docs
---
-**LISTBOX Get rows height** ( {* ;} *objeto* {; *unidad*} ) : Integer
+**LISTBOX Get rows height** ( * ; *objeto* : Text {; *unidad* : Integer} ) : Integer
**LISTBOX Get rows height** ( *objeto* : Field, Variable {; *unidad* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| unidad | Integer | → | Unida del valor de altura: 0 o si se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| unidad | Integer | → | Unida del valor de altura: 0 o si se omite = píxeles, 1 = líneas |
| resultado | Integer | ← | Altura de la línea |
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 836 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
index 5e3f3502b36ac2..bc113cd33540c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-static-columns
displayed_sidebar: docs
---
-**LISTBOX Get static columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get static columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get static columns** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| resultado | Integer | ← | Número de columnas estáticas |
@@ -37,6 +37,6 @@ Sin embargo, el comando no tiene en cuenta el estado visible/invisible de las co
| | |
| --- | --- |
| Número de comando | 1154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
index fbc5b90c06b28a..ebecc17beeef1c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-table-source
displayed_sidebar: docs
---
-**LISTBOX GET TABLE SOURCE** ( {* ;} *objeto* ; *numTabla* {; *nombre* {; *nomSel*}} )
+**LISTBOX GET TABLE SOURCE** ( * ; *objeto* : Text ; *numTabla* : Integer {; *nombre* : Text {; *nomSel* : Text}} )
**LISTBOX GET TABLE SOURCE** ( *objeto* : Field, Variable ; *numTabla* : Integer {; *nombre* : Text {; *nomSel* : Text}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
| numTabla | Integer | ← | Número de la tabla de la selección |
| nombre | Text | ← | Nombre de la selección temporal o "" para la selección actual |
| nomSel | Text | ← | Nombre del conjunto seleccionado |
@@ -38,6 +38,6 @@ Si el list box está asociado con arrays, *numTabla* devuelve -1 y *tempo*, si s
| | |
| --- | --- |
| Número de comando | 1014 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
index 1e355e35acef2d..7e25d62c8334f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
@@ -5,20 +5,20 @@ slug: /commands/listbox-insert-column-formula
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN FORMULA** ( {* ;} *objeto* ; *posicionCol* ; *nomCol* ; *formula* ; *tipoDatos* ; *nomEncabezado* ; *varEncabezado* {; *nomPie* ; *variablePie*} )
+**LISTBOX INSERT COLUMN FORMULA** ( * ; *objeto* : Text ; *posicionCol* : Integer ; *nomCol* : Text ; *formula* : Text ; *tipoDatos* : Integer ; *nomEncabezado* : Text ; *varEncabezado* : Integer, Pointer {; *nomPie* : Text ; *variablePie* : Variable, Pointer} )
**LISTBOX INSERT COLUMN FORMULA** ( *objeto* : Field, Variable ; *posicionCol* : Integer ; *nomCol* : Text ; *formula* : Text ; *tipoDatos* : Integer ; *nomEncabezado* : Text ; *varEncabezado* : Integer, Pointer {; *nomPie* : Text ; *variablePie* : Variable, Pointer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si * se omite) |
-| posicionCol | Integer | → | Ubicación de la columna a insertar |
-| nomCol | Text | → | Nombre del objeto de la columna |
-| formula | Text | → | Fórmula 4D asociada a la columna |
-| tipoDatos | Integer | → | Tipo de resultado de la fórmula |
-| nomEncabezado | Text | → | Nombre del objeto del encabezado de la columna |
-| varEncabezado | Integer, Pointer | → | Variable del encabezado de la columna |
-| nomPie | Text | → | Nombre del objeto de pie de la columna |
-| variablePie | Variable, Pointer | → | Variable de pie de columna |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si * se omite) |
+| posicionCol | Integer | → | Ubicación de la columna a insertar |
+| nomCol | Text | → | Nombre del objeto de la columna |
+| formula | Text | → | Fórmula 4D asociada a la columna |
+| tipoDatos | Integer | → | Tipo de resultado de la fórmula |
+| nomEncabezado | Text | → | Nombre del objeto del encabezado de la columna |
+| varEncabezado | Integer, Pointer | → | Variable del encabezado de la columna |
+| nomPie | Text | → | Nombre del objeto de pie de la columna |
+| variablePie | Variable, Pointer | → | Variable de pie de columna |
@@ -123,6 +123,6 @@ La columna se añade al list box:
| | |
| --- | --- |
| Número de comando | 970 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
index 23fd5904543e60..bf3cfe0b959d9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-insert-column
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN** ( {* ;} *objeto* ; *posicionCol* ; *nomCol* ; *variableCol* ; *nomEncabezado* ; *varTitulo* {; *nomPie* ; *nomVar*} )
+**LISTBOX INSERT COLUMN** ( * ; *objeto* : Text ; *posicionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEncabezado* : Text ; *varTitulo* : Integer, Pointer {; *nomPie* : Text ; *nomVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN** ( *objeto* : Field, Variable ; *posicionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEncabezado* : Text ; *varTitulo* : Integer, Pointer {; *nomPie* : Text ; *nomVar* : Variable, Pointer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| posicionCol | Integer | → | Ubicación de la columna a insertar |
-| nomCol | Text | → | Nombre del objeto de la columna |
-| variableCol | Array, Field, Variable, Pointer | → | Nombre de la variable de la columna |
-| nomEncabezado | Text | → | Nombre del objeto del título de la columna |
-| varTitulo | Integer, Pointer | → | Variable de título de la columna |
-| nomPie | Text | → | Nombre del objeto de pie de la columna |
-| nomVar | Variable, Pointer | → | Variable de pie de la columna |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| posicionCol | Integer | → | Ubicación de la columna a insertar |
+| nomCol | Text | → | Nombre del objeto de la columna |
+| variableCol | Array, Field, Variable, Pointer | → | Nombre de la variable de la columna |
+| nomEncabezado | Text | → | Nombre del objeto del título de la columna |
+| varTitulo | Integer, Pointer | → | Variable de título de la columna |
+| nomPie | Text | → | Nombre del objeto de pie de la columna |
+| nomVar | Variable, Pointer | → | Variable de pie de la columna |
@@ -104,6 +104,6 @@ Usted desea insertar una columna de forma dinámica en un array de tipo list box
| | |
| --- | --- |
| Número de comando | 829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
index 0bbc0290f14af1..855935a9ff048f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-insert-rows
displayed_sidebar: docs
---
-**LISTBOX INSERT ROWS** ( {* ;} *objeto* ; *posicionL* {; *numLineas*} )
+**LISTBOX INSERT ROWS** ( * ; *objeto* : Text ; *posicionL* : Integer {; *numLineas* : Integer} )
**LISTBOX INSERT ROWS** ( *objeto* : Field, Variable ; *posicionL* : Integer {; *numLineas* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| posicionL | Integer | → | Posición de la fila a insertar |
-| numLineas | Integer | → | Número de líneas a insertar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| posicionL | Integer | → | Posición de la fila a insertar |
+| numLineas | Integer | → | Número de líneas a insertar |
@@ -39,7 +39,7 @@ Si el valor de *posicionL* es mayor que el número total de filas en el list box
| | |
| --- | --- |
| Número de comando | 913 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
index 66ebca7f706471..b0877a8b6d7369 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-move-column
displayed_sidebar: docs
---
-**LISTBOX MOVE COLUMN** ( {* ;} *objeto* ; *posicionCol* )
+**LISTBOX MOVE COLUMN** ( * ; *objeto* : Text ; *posicionCol* : Integer )
**LISTBOX MOVE COLUMN** ( *objeto* : Field, Variable ; *posicionCol* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) de la columna a mover |
-| posicionCol | Integer | → | Nueva ubicación de la columna |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) de la columna a mover |
+| posicionCol | Integer | → | Nueva ubicación de la columna |
@@ -46,6 +46,6 @@ Usted quiere invertir la segunda y tercera columna del list box:
| | |
| --- | --- |
| Número de comando | 1274 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
index 9dd2391a473aff..e4d3e0319d6aaa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-column-number
displayed_sidebar: docs
---
-**LISTBOX MOVED COLUMN NUMBER** ( {* ;} *objeto* ; *antPosicion* ; *nuevPosicion* )
+**LISTBOX MOVED COLUMN NUMBER** ( * ; *objeto* : Text ; *antPosicion* : Integer ; *nuevPosicion* : Integer )
**LISTBOX MOVED COLUMN NUMBER** ( *objeto* : Field, Variable ; *antPosicion* : Integer ; *nuevPosicion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| antPosicion | Integer | ← | Posición anterior de la columna movida |
| nuevPosicion | Integer | ← | Nueva posición de la columna movida |
@@ -36,6 +36,6 @@ Este comando debe utilizarse con el evento de formulario On column moved (ver el
| | |
| --- | --- |
| Número de comando | 844 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
index 8bba122e9b9974..dc2dcc1511b40c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-row-number
displayed_sidebar: docs
---
-**LISTBOX MOVED ROW NUMBER** ( {* ;} *objeto* ; *antPosicion* ; *nuevPosicion* )
+**LISTBOX MOVED ROW NUMBER** ( * ; *objeto* : Text ; *antPosicion* : Integer ; *nuevPosicion* : Integer )
**LISTBOX MOVED ROW NUMBER** ( *objeto* : Field, Variable ; *antPosicion* : Integer ; *nuevPosicion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| antPosicion | Integer | ← | Posición anterior de la fila movida |
| nuevPosicion | Integer | ← | Nueva posición de la fila movida |
@@ -38,6 +38,6 @@ Este comando debe utilizarse con el evento de formulario On row moved (ver el co
| | |
| --- | --- |
| Número de comando | 837 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
index 828696c1aa92a1..c839ac44cfcbca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-select-break
displayed_sidebar: docs
---
-**LISTBOX SELECT BREAK** ( {* ;} *objeto* ; *linea* ; *columna* {; *accion*} )
+**LISTBOX SELECT BREAK** ( * ; *objeto* : Text ; *linea* : Integer ; *columna* : Integer {; *accion* : Integer} )
**LISTBOX SELECT BREAK** ( *objeto* : Field, Variable ; *linea* : Integer ; *columna* : Integer {; *accion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable (si se omite *) |
-| linea | Integer | → | Número de línea de la ruptura |
-| columna | Integer | → | Número de columna de la ruptura |
-| accion | Integer | → | Acción de selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable (si se omite *) |
+| linea | Integer | → | Número de línea de la ruptura |
+| columna | Integer | → | Número de columna de la ruptura |
+| accion | Integer | → | Acción de selección |
@@ -67,6 +67,6 @@ Este es el resultado:
| | |
| --- | --- |
| Número de comando | 1117 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
index c4ed2fa1e35fb4..de0c51ee08b8fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-row
displayed_sidebar: docs
---
-**LISTBOX SELECT ROW** ( {* ;} *objeto* ; *posicionL* {; *accion*} )
+**LISTBOX SELECT ROW** ( * ; *objeto* : Text ; *posicionL* : Integer {; *accion* : Integer} )
**LISTBOX SELECT ROW** ( *objeto* : Field, Variable ; *posicionL* : Integer {; *accion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| posicionL | Integer | → | Número de la fila a seleccionar |
-| accion | Integer | → | Acción de selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| posicionL | Integer | → | Número de la fila a seleccionar |
+| accion | Integer | → | Acción de selección |
@@ -59,6 +59,6 @@ Después de la ejecución del método, los arrays son sincronizados: si el array
| | |
| --- | --- |
| Número de comando | 912 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
index 1106809779c181..be8b2ececba12f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-rows
displayed_sidebar: docs
---
-**LISTBOX SELECT ROWS** ( {* ;} *objeto* ; *seleccion* {; *accion*} )
+**LISTBOX SELECT ROWS** ( * ; *objeto* : Text ; *seleccion* : Object, Collection {; *accion* : Integer} )
**LISTBOX SELECT ROWS** ( *objeto* : Field, Variable ; *seleccion* : Object, Collection {; *accion* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, el objeto es un nombre de objeto (cadena) Si se omite, el objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
-| seleccion | Object, Collection | → | Objeto o colección que describe las líneas a seleccionar |
-| accion | Integer | → | lk replace selection (por defecto si se omite), lk add to selection, lk remove from selection |
+| * | Operador | → | Si se especifica, el objeto es un nombre de objeto (cadena) Si se omite, el objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| seleccion | Object, Collection | → | Objeto o colección que describe las líneas a seleccionar |
+| accion | Integer | → | lk replace selection (por defecto si se omite), lk add to selection, lk remove from selection |
@@ -90,6 +90,6 @@ Ejemplo con una colección de objetos:
| | |
| --- | --- |
| Número de comando | 1715 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
index 32ce0fc3084902..62b8f265f666ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-array
displayed_sidebar: docs
---
-**LISTBOX SET ARRAY** ( {* ;} *objeto* ; *tipoArray* ; *ptrArray* )
+**LISTBOX SET ARRAY** ( * ; *objeto* : Text ; *tipoArray* : Integer ; *ptrArray* : Pointer )
**LISTBOX SET ARRAY** ( *objeto* : Field, Variable ; *tipoArray* : Integer ; *ptrArray* : Pointer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) |
-| tipoArray | Integer | → | Tipo de array |
-| ptrArray | Pointer | → | Array a asociar a la propiedad |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Variable (si se omite *) |
+| tipoArray | Integer | → | Tipo de array |
+| ptrArray | Pointer | → | Array a asociar a la propiedad |
@@ -71,6 +71,6 @@ Usted desea definir un array de altura de línea para un list box:
| | |
| --- | --- |
| Número de comando | 1279 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
index 12d6b9de5168d5..51098053c27a21 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX SET AUTO ROW HEIGHT** ( {* ;} *objeto* ; *selector* ; *valor* ; *unidad* )
+**LISTBOX SET AUTO ROW HEIGHT** ( * ; *objeto* : Text ; *selector* : Integer ; *valor* : Integer ; *unidad* : Integer )
**LISTBOX SET AUTO ROW HEIGHT** ( *objeto* : Field, Variable ; *selector* : Integer ; *valor* : Integer ; *unidad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable. |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite) |
-| selector | Integer | → | Valor de la altura a definir: lk row min height o lk row max height |
-| valor | Integer | → | Valor mínimo o máximo de la altura de la fila |
-| unidad | Integer | → | Unidad de valor de altura: 0 = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable. |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite) |
+| selector | Integer | → | Valor de la altura a definir: lk row min height o lk row max height |
+| valor | Integer | → | Valor mínimo o máximo de la altura de la fila |
+| unidad | Integer | → | Unidad de valor de altura: 0 = píxeles, 1 = líneas |
@@ -63,6 +63,6 @@ Usted desea definir las alturas mínimas y máximas para un list box con una alt
| | |
| --- | --- |
| Número de comando | 1501 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
index c3f9de859ca7f2..2ec354d445fec9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-column-formula
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN FORMULA** ( {* ;} *objeto* ; *formula* ; *tipoDato* )
+**LISTBOX SET COLUMN FORMULA** ( * ; *objeto* : Text ; *formula* : Text ; *tipoDato* : Integer )
**LISTBOX SET COLUMN FORMULA** ( *objeto* : Field, Variable ; *formula* : Text ; *tipoDato* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| formula | Text | → | Fórmula 4D asociada a la columna |
-| tipoDato | Integer | → | Tipo de resultado de la fórmula |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| formula | Text | → | Fórmula 4D asociada a la columna |
+| tipoDato | Integer | → | Tipo de resultado de la fórmula |
@@ -47,6 +47,6 @@ El parámetro *tipoDatos* designa el tipo de datos resultantes de la ejecución
| | |
| --- | --- |
| Número de comando | 1203 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
index 0db02fb18a673c..8ef3a4b5348c70 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-column-width
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN WIDTH** ( {* ;} *objeto* ; *ancho* {; *anchoMin* {; *anchoMax*}} )
+**LISTBOX SET COLUMN WIDTH** ( * ; *objeto* : Text ; *ancho* : Integer {; *anchoMin* : Integer {; *anchoMax* : Integer}} )
**LISTBOX SET COLUMN WIDTH** ( *objeto* : Field, Variable ; *ancho* : Integer {; *anchoMin* : Integer {; *anchoMax* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| ancho | Integer | → | Ancho de la columna (en píxeles) |
-| anchoMin | Integer | → | Ancho mínimo de columna (en píxeles) |
-| anchoMax | Integer | → | Ancho máximo de columna (en píxeles) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| ancho | Integer | → | Ancho de la columna (en píxeles) |
+| anchoMin | Integer | → | Ancho mínimo de columna (en píxeles) |
+| anchoMax | Integer | → | Ancho máximo de columna (en píxeles) |
@@ -38,6 +38,6 @@ Los parámetros opcionales *anchoMin* y *anchoMax* permiten definir los límites
| | |
| --- | --- |
| Número de comando | 833 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
index cea66239478022..5710769013192b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX SET FOOTER CALCULATION** ( {* ;} *objeto* ; *calculo* )
+**LISTBOX SET FOOTER CALCULATION** ( * ; *objeto* : Text ; *calculo* : Integer )
**LISTBOX SET FOOTER CALCULATION** ( *objeto* : Field, Variable ; *calculo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| calculo | Integer | → | Cálculo para el área de pie |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| calculo | Integer | → | Cálculo para el área de pie |
@@ -56,6 +56,6 @@ Si el tipo de datos de la columna o de al menos una columna del list box (si obj
| | |
| --- | --- |
| Número de comando | 1140 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
index 689014e45f1d35..ba2109cae3511e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-footers-height
displayed_sidebar: docs
---
-**LISTBOX SET FOOTERS HEIGHT** ( {* ;} *objeto* ; *altura* {; *unidad*} )
+**LISTBOX SET FOOTERS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; *unidad* : Integer} )
**LISTBOX SET FOOTERS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; *unidad* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| altura | Integer | → | Alto de la línea |
-| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| altura | Integer | → | Alto de la línea |
+| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
@@ -41,6 +41,6 @@ Pase en el parámetro *altura* la altura a definir. Por defecto, si omite el par
| | |
| --- | --- |
| Número de comando | 1145 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
index 6f70602cb24a72..cc5cc026b8e2de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-grid-color
displayed_sidebar: docs
---
-**LISTBOX SET GRID COLOR** ( {* ;} *objeto* ; *color* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID COLOR** ( * ; *objeto* : Text ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID COLOR** ( *objeto* : Field, Variable ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| color | Text, Integer | → | Valor de color RGB |
-| horizontal | Boolean | → | Utilice el color para las líneas horizontales |
-| vertical | Boolean | → | Utilice el color para las líneas verticales |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| color | Text, Integer | → | Valor de color RGB |
+| horizontal | Boolean | → | Utilice el color para las líneas horizontales |
+| vertical | Boolean | → | Utilice el color para las líneas verticales |
@@ -41,6 +41,6 @@ Los parámetros *horizontal* y *vertical* le permiten especificar las líneas a
| | |
| --- | --- |
| Número de comando | 842 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
index 5822d947fb27a3..f7ae062e4bc838 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-grid
displayed_sidebar: docs
---
-**LISTBOX SET GRID** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID** ( * ; *objeto* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID** ( *objeto* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| horizontal | Boolean | → | True = mostrar, False = ocultar |
-| vertical | Boolean | → | True = mostrar, False = ocultar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| horizontal | Boolean | → | True = mostrar, False = ocultar |
+| vertical | Boolean | → | True = mostrar, False = ocultar |
@@ -35,6 +35,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores booleanos que indi
| | |
| --- | --- |
| Número de comando | 841 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
index a54c12c0feeec3..eb5d6810512a8e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-headers-height
displayed_sidebar: docs
---
-**LISTBOX SET HEADERS HEIGHT** ( {* ;} *objeto* ; *altura* {; *unidad*} )
+**LISTBOX SET HEADERS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; *unidad* : Integer} )
**LISTBOX SET HEADERS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; *unidad* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| altura | Integer | → | Alto de la línea |
-| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| altura | Integer | → | Alto de la línea |
+| unidad | Integer | → | Unidad de valor de altura: 0 o si se omite = píxeles, 1 = líneas |
@@ -45,6 +45,6 @@ Los encabezados deben respetar la altura mínima establecida por el sistema. Est
| | |
| --- | --- |
| Número de comando | 1143 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
index a89b35eb7c91d1..5478748c173c81 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-hierarchy
displayed_sidebar: docs
---
-**LISTBOX SET HIERARCHY** ( {* ;} *objeto* ; *jerarquico* {; *jerarquia*} )
+**LISTBOX SET HIERARCHY** ( * ; *objeto* : Text ; *jerarquico* : Boolean {; *jerarquia* : Pointer array} )
**LISTBOX SET HIERARCHY** ( *objeto* : Field, Variable ; *jerarquico* : Boolean {; *jerarquia* : Pointer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| jerarquico | Boolean | → | True = list box jerárquico False = list box no jerárquico |
-| jerarquia | Pointer array | → | Array de punteros |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| jerarquico | Boolean | → | True = list box jerárquico False = list box no jerárquico |
+| jerarquia | Pointer array | → | Array de punteros |
@@ -59,6 +59,6 @@ Definición de los arrays aPais, aRegion y aCiudad como jerarquía de un list bo
| | |
| --- | --- |
| Número de comando | 1098 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
index fc65ccddd1bc52..661f9ee3398f2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-locked-columns
displayed_sidebar: docs
---
-**LISTBOX SET LOCKED COLUMNS** ( {* ;} *objeto* ; *numColumnas* )
+**LISTBOX SET LOCKED COLUMNS** ( * ; *objeto* : Text ; *numColumnas* : Integer )
**LISTBOX SET LOCKED COLUMNS** ( *objeto* : Field, Variable ; *numColumnas* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| numColumnas | Integer | → | Número de columnas a bloquear |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| numColumnas | Integer | → | Número de columnas a bloquear |
@@ -37,6 +37,6 @@ Para eliminar el bloqueo de columnas, pase 0 o un valor negativo en *numColumnas
| | |
| --- | --- |
| Número de comando | 1151 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
index 80274f758de49b..397c0c264aa83d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-row-color
displayed_sidebar: docs
---
-**LISTBOX SET ROW COLOR** ( {* ;} *objeto* ; *fila* ; *color* {; *tipoColor*} )
+**LISTBOX SET ROW COLOR** ( * ; *objeto* : Text ; *fila* : Integer ; *color* : Text, Integer {; *tipoColor* : Integer} )
**LISTBOX SET ROW COLOR** ( *objeto* : Field, Variable ; *fila* : Integer ; *color* : Text, Integer {; *tipoColor* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| fila | Integer | → | Numero de fila |
-| color | Text, Integer | → | Valor de color RGB |
-| tipoColor | Integer | → | color de fuente del Listbox (por defecto) o color de fondo del Listbox |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| fila | Integer | → | Numero de fila |
+| color | Text, Integer | → | Valor de color RGB |
+| tipoColor | Integer | → | color de fuente del Listbox (por defecto) o color de fondo del Listbox |
@@ -69,6 +69,6 @@ En un array de tipo list box, queremos establecer los colores de una fila y para
| | |
| --- | --- |
| Número de comando | 1270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
index 26e7bd4b6cc832..8b459e4d89670b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-font-style
displayed_sidebar: docs
---
-**LISTBOX SET ROW FONT STYLE** ( {* ;} *objeto* ; *fila* ; *estilo* )
+**LISTBOX SET ROW FONT STYLE** ( * ; *objeto* : Text ; *fila* : Integer ; *estilo* : Integer )
**LISTBOX SET ROW FONT STYLE** ( *objeto* : Field, Variable ; *fila* : Integer ; *estilo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
-| fila | Integer | → | Número de fila |
-| estilo | Integer | → | Estilo de fuente |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Variable (si * se omite) |
+| fila | Integer | → | Número de fila |
+| estilo | Integer | → | Estilo de fuente |
@@ -84,6 +84,6 @@ Después de la segunda declaración, todas las celdas de la tercera fila cambian
| | |
| --- | --- |
| Número de comando | 1268 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
index 2fac6b71698803..bbf02b6fbf1b28 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-height
displayed_sidebar: docs
---
-**LISTBOX SET ROW HEIGHT** ( {* ;} *objeto* ; *linea* ; *altura* )
+**LISTBOX SET ROW HEIGHT** ( * ; *objeto* : Text ; *linea* : Integer ; *altura* : Integer )
**LISTBOX SET ROW HEIGHT** ( *objeto* : Field, Variable ; *linea* : Integer ; *altura* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre objeto (si * se especifica) o Variable (si * se omite) |
-| linea | Integer | → | Línea de list box cuya altura desea definir |
-| altura | Integer | → | Altura de línea de list box |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre objeto (si * se especifica) o Variable (si * se omite) |
+| linea | Integer | → | Línea de list box cuya altura desea definir |
+| altura | Integer | → | Altura de línea de list box |
@@ -89,6 +89,6 @@ Por otro lado, si el código siguiente se ejecuta posteriormente...
| | |
| --- | --- |
| Número de comando | 1409 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
index 8d31f5ddbc9527..82314ad8f37690 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-rows-height
displayed_sidebar: docs
---
-**LISTBOX SET ROWS HEIGHT** ( {* ;} *objeto* ; *altura* {; *unidad*} )
+**LISTBOX SET ROWS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; *unidad* : Integer} )
**LISTBOX SET ROWS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; *unidad* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| altura | Integer | → | Altura de la fila (en píxeles) |
-| unidad | Integer | → | Unidad de valor de altura:0 o se omite = píxeles, 1 = líneas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| altura | Integer | → | Altura de la fila (en píxeles) |
+| unidad | Integer | → | Unidad de valor de altura:0 o se omite = píxeles, 1 = líneas |
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura se expresa en píxeles.
| | |
| --- | --- |
| Número de comando | 835 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
index 1d56ccb8c13a94..1c3966e75a6d09 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-static-columns
displayed_sidebar: docs
---
-**LISTBOX SET STATIC COLUMNS** ( {* ;} *objeto* ; *numColumnas* )
+**LISTBOX SET STATIC COLUMNS** ( * ; *objeto* : Text ; *numColumnas* : Integer )
**LISTBOX SET STATIC COLUMNS** ( *objeto* : Field, Variable ; *numColumnas* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| numColumnas | Integer | → | Número de columnas a convertir estáticas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| numColumnas | Integer | → | Número de columnas a convertir estáticas |
@@ -33,6 +33,6 @@ Las columnas estáticas no pueden moverse en el list box.
| | |
| --- | --- |
| Número de comando | 1153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
index 6fe0f215d366c9..ce488637fc476a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-table-source
displayed_sidebar: docs
---
-**LISTBOX SET TABLE SOURCE** ( {* ;} *objeto* ; numTabla | tempo {; *nomSel*} )
+**LISTBOX SET TABLE SOURCE** ( * ; *objeto* : Text ; numTabla | tempo {; *nomSel* : Text} )
**LISTBOX SET TABLE SOURCE** ( *objeto* : Field, Variable ; numTabla | tempo {; *nomSel* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite*) |
-| numTabla | tempo | Entero largo, Cadena | → | Número de la tabla de la cual utilizarla selección actual o nombre de la selección temporal a utilizar |
-| nomSel | Text | → | Nombre del conjunto seleccionado |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite*) |
+| numTabla | tempo | Entero largo, Cadena | → | Número de la tabla de la cual utilizarla selección actual o nombre de la selección temporal a utilizar |
+| nomSel | Text | → | Nombre del conjunto seleccionado |
@@ -43,6 +43,6 @@ Si el list box ya contiene las columnas, sus contenidos se actualizarán despué
| | |
| --- | --- |
| Número de comando | 1013 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
index 01eb556798bdf9..d09d9b82b476e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-sort-columns
displayed_sidebar: docs
---
-**LISTBOX SORT COLUMNS** ( {* ;} *objeto* ; *numColumna* ; *orden* {; *numColumna2* ; *orden2* ; ... ; *numColumnaN* ; *ordenN*} )
+**LISTBOX SORT COLUMNS** ( * ; *objeto* : Text ; *numColumna* : Integer ; *orden* : Operator {; ...(*numColumna* : Integer, *orden* : Operator)} )
**LISTBOX SORT COLUMNS** ( *objeto* : Field, Variable ; *numColumna* : Integer ; *orden* : Operator {; ...(*numColumna* : Integer, *orden* : Operator)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| numColumna | Integer | → | Número(s) de columna(s) a ordenar |
-| orden | * | → | ">" para una ordenación ascendente o "<" para una ordenación descendente |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| numColumna | Integer | → | Número(s) de columna(s) a ordenar |
+| orden | Operator | → | `>` to sort in ascending order or `<` to sort in descending order |
@@ -40,6 +40,6 @@ Conforme con el principio de funcionamiento del list box, las columnas están si
| | |
| --- | --- |
| Número de comando | 916 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
index f5ba0cfa7f02c6..ffa9ad2374056a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
@@ -5,11 +5,11 @@ slug: /commands/load-4d-view-document
displayed_sidebar: docs
---
-**Load 4D View document** ( *4DViewDocument* ) : Object
+**Load 4D View document** ( *4DViewDocument* : Blob ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| 4DViewDocument | Blob | → | Documento 4D View |
+| 4DViewDocument | Blob | → | Documento 4D View |
| Resultado | Object | ← | Representación del objeto del documento 4D View |
@@ -201,6 +201,6 @@ Obtendrá el siguiente resultado (objeto stringified):
| | |
| --- | --- |
| Número de comando | 1528 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
index dccd7280f05205..849eb2dcfb8c03 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
@@ -5,11 +5,11 @@ slug: /commands/load-list
displayed_sidebar: docs
---
-**Load list** ( *nomLista* ) : Integer
+**Load list** ( *nomLista* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomLista | Text | → | Nombre de una lista creada en el Editor de listas del entorno Diseño |
+| nomLista | Text | → | Nombre de una lista creada en el Editor de listas del entorno Diseño |
| Resultado | Integer | ← | Número de referencia de la lista creada recientemente |
@@ -54,6 +54,6 @@ Usted crea una base para el mercado internacional y necesita cambiar a los difer
| | |
| --- | --- |
| Número de comando | 383 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
index dbd6583afb0da0..49418f13698978 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
@@ -5,11 +5,11 @@ slug: /commands/load-record
displayed_sidebar: docs
---
-**LOAD RECORD** {( *tabla* )}
+**LOAD RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual cargar el registro actual o Tabla por defecto si se omite |
+| tabla | Table | → | Tabla de la cual cargar el registro actual o Tabla por defecto si se omite |
@@ -42,6 +42,6 @@ En entornos multiusuario y multiprocesos, cuando necesite modificar un registro
| | |
| --- | --- |
| Número de comando | 52 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
index cc474be9bd6c0a..8d0cf15de238b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
@@ -5,13 +5,13 @@ slug: /commands/load-set
displayed_sidebar: docs
---
-**LOAD SET** ( {*tabla* ;} *conjunto* ; *doc* )
+**LOAD SET** ( {*tabla* : Table ;} *conjunto* : Text ; *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a la cual pertenece el conjunto o Tabla por defecto si se omite |
-| conjunto | Text | → | Nombre del conjunto a crear en memoria |
-| doc | Text | → | Documento que contiene el conjunto |
+| tabla | Table | → | Tabla a la cual pertenece el conjunto o Tabla por defecto si se omite |
+| conjunto | Text | → | Nombre del conjunto a crear en memoria |
+| doc | Text | → | Documento que contiene el conjunto |
@@ -48,7 +48,7 @@ Si el usuario hace clic en Cancelar en la caja de diálogo de abrir archivos, o
| | |
| --- | --- |
| Número de comando | 185 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
index 5894fa98847e63..00867365b6c3ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
@@ -5,11 +5,11 @@ slug: /commands/load-variables
displayed_sidebar: docs
---
-**LOAD VARIABLES** ( *doc* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**LOAD VARIABLES** ( *doc* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Documento que contiene el o las variables 4D |
+| doc | Text | → | Documento que contiene el o las variables 4D |
| variable | Variable | ← | Variables a recibir los valores |
@@ -51,7 +51,7 @@ Si las variables se cargan correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 74 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
index b0820e418afd1e..b89cec0fd898e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
@@ -5,11 +5,11 @@ slug: /commands/localized-document-path
displayed_sidebar: docs
---
-**Localized document path** ( *rutaRelativa* ) : Text
+**Localized document path** ( *rutaRelativa* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaRelativa | Text | → | Ruta de acceso relativa del documento del cual obtener la versión localizada |
+| rutaRelativa | Text | → | Ruta de acceso relativa del documento del cual obtener la versión localizada |
| Resultado | Text | ← | Ruta de acceso absoluta del documento localizado |
@@ -71,6 +71,6 @@ Si el lenguaje actual es, por ejemplo, francés canadiense (fr-ca), el comando d
| | |
| --- | --- |
| Número de comando | 1105 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
index 2b18692dfa8bf2..35d00efc2aa3fd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
@@ -5,11 +5,11 @@ slug: /commands/localized-string
displayed_sidebar: docs
---
-**Localized string** ( *resNombre* ) : Text
+**Localized string** ( *resNombre* : Text ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNombre | Text | → | Nombre del atributo resNombre |
+| resNombre | Text | → | Nombre del atributo resNombre |
| Resultado | Text | ← | Valor de la cadena designada por resNombre en el lenguaje actual |
@@ -60,7 +60,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. Si *res
| | |
| --- | --- |
| Número de comando | 991 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
index 24155b5659184b..a91e405511c589 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
@@ -5,11 +5,11 @@ slug: /commands/locked-by
displayed_sidebar: docs
---
-**LOCKED BY** ( {*tabla* ;} *proceso* ; *usuario4D* ; *sesionUsuario* ; *nombreProceso* )
+**LOCKED BY** ( {*tabla* : Table ;} *proceso* : Integer ; *usuario4D* : Text ; *sesionUsuario* : Text ; *nombreProceso* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a verificar si el registro está bloqueado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla a verificar si el registro está bloqueado o Tabla por defecto, si se omite |
| proceso | Integer | ← | Número de referencia del proceso |
| usuario4D | Text | ← | Nombre del usuario 4D |
| sesionUsuario | Text | ← | Nombre del usuario que inició la sesion de trabajo |
@@ -46,6 +46,6 @@ Si el registro ha sido bloqueado por una *petición $lock REST*:
| | |
| --- | --- |
| Número de comando | 353 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
index 4e5249d5e93a58..fc67dae5c31520 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Tabla de la cual obtener los registros bloqueados |
+| laTable | Table | → | Tabla de la cual obtener los registros bloqueados |
| Resultado | Object | ← | Descripción de los registros bloqueados (si los hay) |
@@ -96,6 +96,6 @@ Si el código se ejecuta en un 4D Server y el bloqueo es causado por una máquin
| | |
| --- | --- |
| Número de comando | 1316 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
index d9c15785dc8dc2..ea60ba287b02d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
@@ -5,11 +5,11 @@ slug: /commands/locked
displayed_sidebar: docs
---
-**Locked** {( *tabla* )} : Boolean
+**Locked** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual verificar si el registro actual está bloqueado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla en la cual verificar si el registro actual está bloqueado o Tabla por defecto, si se omite |
| Resultado | Boolean | ← | El registro está bloqueado (TRUE), o El registro no está bloqueado (FALSE) |
@@ -40,6 +40,6 @@ Durante una transacción, [LOAD RECORD](load-record.md) y Locked se utilizan con
| | |
| --- | --- |
| Número de comando | 147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
index 88068cb2596585..5ef4675a169776 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
@@ -5,13 +5,13 @@ slug: /commands/log-event
displayed_sidebar: docs
---
-**LOG EVENT** ( {*tipoSalida* ;} *mensaje* {; *importancia*} )
+**LOG EVENT** ( {*tipoSalida* : Integer ;} *mensaje* : Text {; *importancia* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoSalida | Integer | → | Tipo de salida del mensaje |
-| mensaje | Text | → | Contenido del mensaje |
-| importancia | Integer | → | Nivel de importancia del mensaje (sólo para Windows) |
+| tipoSalida | Integer | → | Tipo de salida del mensaje |
+| mensaje | Text | → | Contenido del mensaje |
+| importancia | Integer | → | Nivel de importancia del mensaje (sólo para Windows) |
@@ -70,6 +70,6 @@ Cada vez que se abre la base, esta información se escribirá en el visor de eve
| | |
| --- | --- |
| Número de comando | 667 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
index 3407561c4a25d2..da85c2c0caa2a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
@@ -5,14 +5,14 @@ slug: /commands/log-file-to-json
displayed_sidebar: docs
---
-**LOG FILE TO JSON** ( *rutaCarpetaDest* {; *tamMax* {; *rutaHist* {; *atribCampo*}}} )
+**LOG FILE TO JSON** ( *rutaCarpetaDest* : Text {; *tamMax* : Integer {; *rutaHist* : Text {; *atribCampo* : Integer}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaCarpetaDest | Text | → | Ruta de acceso de la carpeta de destino del archivo guardado |
-| tamMax | Integer | → | Tamaño máximo del archivo JSON a crear (bytes) |
-| rutaHist | Text | → | Ruta de acceso del archivo de historial a exportar; utilizar el historial actual si se omite |
-| atribCampo | Integer | → | Atributo de descripción del campo: 1 = utilizar número(por defecto), 2 = utilizar nombre |
+| rutaCarpetaDest | Text | → | Ruta de acceso de la carpeta de destino del archivo guardado |
+| tamMax | Integer | → | Tamaño máximo del archivo JSON a crear (bytes) |
+| rutaHist | Text | → | Ruta de acceso del archivo de historial a exportar; utilizar el historial actual si se omite |
+| atribCampo | Integer | → | Atributo de descripción del campo: 1 = utilizar número(por defecto), 2 = utilizar nombre |
@@ -102,7 +102,7 @@ El comando **LOG FILE TO JSON** modifica el valor de las variables sistema OK y
| | |
| --- | --- |
| Número de comando | 1352 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
index 69fb9b810dbf14..bd6c5911c54cdb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
@@ -38,5 +38,5 @@ Si la base funciona con un archivo historial, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 928 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md
index b10d5f21823fb5..b683a3d03fc3f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/log.md
@@ -5,11 +5,11 @@ slug: /commands/log
displayed_sidebar: docs
---
-**Log** ( *Numero* ) : Real
+**Log** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número para el cual devolver el logaritmo |
+| Numero | Real | → | Número para el cual devolver el logaritmo |
| Resultado | Real | ← | Logaritmo del número |
@@ -37,6 +37,6 @@ La siguiente línea muestra 1:
| | |
| --- | --- |
| Número de comando | 22 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
index da44333afcb99e..15336c5695ef9f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
@@ -5,13 +5,13 @@ slug: /commands/longint-array-from-selection
displayed_sidebar: docs
---
-**LONGINT ARRAY FROM SELECTION** ( *tabla* ; *arrReg* {; *seleccion*} )
+**LONGINT ARRAY FROM SELECTION** ( *tabla* : Table ; *arrReg* : Integer array {; *seleccion* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la selección actual |
+| tabla | Table | → | Tabla de la selección actual |
| arrReg | Integer array | ← | Array de números de registros |
-| seleccion | Text | → | Nombre de la selección temporal o de la selección actual si este parámetro es omitido |
+| seleccion | Text | → | Nombre de la selección temporal o de la selección actual si este parámetro es omitido |
@@ -41,6 +41,6 @@ Quiere recuperar los números de los registros de la selección actual:
| | |
| --- | --- |
| Número de comando | 647 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
index 2c2fdf4fed8e82..166dfd6e93ae27 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/longint-to-blob
displayed_sidebar: docs
---
-**LONGINT TO BLOB** ( *enteroLargo* ; *BLOB* ; *byteOrden* {; offset | *} )
+**LONGINT TO BLOB** ( *enteroLargo* : Integer ; *BLOB* : Blob ; *byteOrden* : Integer {; offset | *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| enteroLargo | Integer | → | Valor de tipo Entero largo a escribir en el BLOB |
-| Blob | Blob | → | BLOB a recibir el valor Entero largo |
-| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
-| offset | * | Variable, Operador | ↔ | Offset en el BLOB (expresado en bytes) o * para añadir el valor |
-| || | Nuevo offset después de la escritura si se omite * |
+| enteroLargo | Integer | → | Valor de tipo Entero largo a escribir en el BLOB |
+| Blob | Blob | → | BLOB a recibir el valor Entero largo |
+| byteOrden | Integer | → | 0 Orden de bytes nativo 1 Orden de bytes Macintosh 2 Orden de bytes PC |
+| offset | * | Variable, Operador | ↔ | Offset en el BLOB (expresado en bytes) o * para añadir el valor |
+| | | | Nuevo offset después de la escritura si se omite * |
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 550 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
index 21b0967d8aaf90..ec00335554588b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laText | Text | → | Cadena a pasar a minúsculas |
-| * | Operador | → | Si se pasa: conservar los acentos |
+| laText | Text | → | Cadena a pasar a minúsculas |
+| * | Operador | → | Si se pasa: conservar los acentos |
| Resultado | Text | ← | Cadena en minúsculas |
@@ -54,6 +54,6 @@ Este ejemplo compara los resultados obtenidos de acuerdo a si se pasa o no el pa
| | |
| --- | --- |
| Número de comando | 14 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
index ca36388b3b24da..a18468b2d341f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 546 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
index 0bfbb9956b20a8..0b115e1dd6f575 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 544 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
index 95f1ee99f78e67..51cb9d5ee7d54b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 545 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
index f0acaaca069b0c..27107faa4ee87e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
@@ -10,18 +10,13 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| patron | Text | → | Expresión regular |
-| laCadena | Text | → | Cadena en la cual se efectúa la búsqueda |
-| inicio | Integer | → | Posición de laCadena donde comenzar la búsqueda |
-| pos_encont. | Array entero largo, Variable entero largo | ← | Posición de la ocurrencia |
-| long_encont. | Array entero largo, Variable entero largo | ← | Longitud de la ocurrencia |
-| * | Operador | → | Si se pasa: buscar únicamente en la posición indicada |
+| patron | Text | → | Regular expression (complete equality with two-parameters syntax) |
+| laCadena | Text | → | Cadena en la cual se efectúa la búsqueda |
+| inicio | Integer | → | Posición de laCadena donde comenzar la búsqueda |
+| pos_encont. | Integer, Integer array | ← | Posición de la ocurrencia |
+| long_encont. | Integer, Integer array | ← | Longitud de la ocurrencia |
+| * | Operador | → | Si se pasa: buscar únicamente en la posición indicada |
| Resultado | Boolean | ← | True = la búsqueda ha encontrado una ocurrencia; De lo contrario, False. |
-| Match regex ( patron ; laCadena ) -> Resultado |
-| Parámetro | Tipo | Descripción |
-| patron | Text | → | Expresión regular (igualdad completa) |
-| laCadena | Text | → | Cadena en la cual se efectúa la búsqueda |
-| Resultado | Boolean | ← | True= la cadena encuentra una ocurrencia, de lo contrario False |
@@ -120,7 +115,7 @@ En caso de error, el comando genera un error que puede interceptar vía un méto
| | |
| --- | --- |
| Número de comando | 1019 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md
index c4d5ad9f0e608e..2fdfc94cf0fb97 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/max.md
@@ -5,13 +5,13 @@ slug: /commands/max
displayed_sidebar: docs
---
-**Max** ( *series* {; *rutaAtributo*} ) : any
+**Max** ( *series* : Field, Array {; *rutaAtributo* : Text} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve el valor máximo |
-| rutaAtributo | Text | → | Ruta de atributo para el cual calcular el valor máximo |
-| Resultado | Date, Number | ← | Máximo valor en series |
+| series | Field, Array | → | Datos para los cuales se devuelve el valor máximo |
+| rutaAtributo | Text | → | Ruta de atributo para el cual calcular el valor máximo |
+| Resultado | Date, Real | ← | Máximo valor en series |
@@ -75,7 +75,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 3 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
index dcb9110e2675bb..84e23add10e175 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
@@ -5,11 +5,11 @@ slug: /commands/maximize-window
displayed_sidebar: docs
---
-**MAXIMIZE WINDOW** {( *ventana* )}
+**MAXIMIZE WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana Si se omite = todas las ventanas (Windows) o Ventana del primer plano del proceso actual (macOS) |
+| ventana | Integer | → | Número de referencia de la ventana Si se omite = todas las ventanas (Windows) o Ventana del primer plano del proceso actual (macOS) |
@@ -87,6 +87,6 @@ En este contexto, si el usuario hace clic en el botón:
| | |
| --- | --- |
| Número de comando | 453 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
index 73ddd52f330405..1c2fbc4bf02908 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
@@ -5,11 +5,11 @@ slug: /commands/memory-statistics
displayed_sidebar: docs
---
-**MEMORY STATISTICS** ( *tipoInfo* ; *arrayNombres* ; *arrayValores* ; *ArrayContador* )
+**MEMORY STATISTICS** ( *tipoInfo* : Integer ; *arrayNombres* : Text array ; *arrayValores* : Real array ; *ArrayContador* : Real array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoInfo | Integer | → | Selector de información a obtener |
+| tipoInfo | Integer | → | Selector de información a obtener |
| arrayNombres | Text array | ← | Títulos de la información |
| arrayValores | Real array | ← | Valores de la información |
| ArrayContador | Real array | ← | Número de objetos respectivos (si disponible) |
@@ -33,6 +33,6 @@ Después de ejecutar el comando, las estadísticas solicitadas se entregan en lo
| | |
| --- | --- |
| Número de comando | 1118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
index e5ea7fd8d792d6..90c64221f5fd73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ El comando devuelve 0:
| | |
| --- | --- |
| Número de comando | 440 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
index 21b38121de9a24..17bd74759d1d93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 441 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
index 9ec6f6c5954d49..570535d9d534dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
@@ -5,7 +5,7 @@ slug: /commands/menu-selected
displayed_sidebar: docs
---
-**Menu selected** {( *subMenu* )} : Integer
+**Menu selected** ( *subMenu* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -65,7 +65,7 @@ El siguiente método de formulario utiliza Menu selected para proporcionar los a
| | |
| --- | --- |
| Número de comando | 152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md
index fb7aea074e1ac2..d517bacd61d3da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/message.md
@@ -5,11 +5,11 @@ slug: /commands/message
displayed_sidebar: docs
---
-**MESSAGE** ( *mensaje* )
+**MESSAGE** ( *mensaje* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Mensaje a mostrar |
+| mensaje | Text | → | Mensaje a mostrar |
@@ -118,6 +118,6 @@ El resultado es el siguiente (en Windows):
| | |
| --- | --- |
| Número de comando | 88 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
index da43d605d62b00..3e10342dba9e51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ El siguiente ejemplo suprime los termómetros de progreso antes de efectuar una
| | |
| --- | --- |
| Número de comando | 175 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
index 51b5deba618c95..18b9dc387a1c89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 181 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
index 9e0b8c71837dbd..51a12d77780ad3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
@@ -5,11 +5,11 @@ slug: /commands/method-called-on-error
displayed_sidebar: docs
---
-**Method called on error** {( *alcance* )} : Text
+**Method called on error** ( *alcance* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| alcance | Integer | → | Alcance del método de error |
+| alcance | Integer | → | Alcance del método de error |
| Resultado | Text | ← | Nombre del método llamado por error |
@@ -51,6 +51,6 @@ Este comando es particularmente útil en el contexto de componentes porque le pe
| | |
| --- | --- |
| Número de comando | 704 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
index 1c188f4a4a46ef..bda5e440ad9072 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si no se ha instalado un ningún método, se devuelve una cadena vacía ("").
| | |
| --- | --- |
| Número de comando | 705 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
index 760e1d0bf4335b..a2d2b3619c76ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attribute
displayed_sidebar: docs
---
-**METHOD Get attribute** ( *ruta* ; *tipoAtributo* {; *} ) : Boolean
+**METHOD Get attribute** ( *ruta* : Text ; *tipoAtributo* : Integer {; *} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text | → | Ruta de método proyecto |
-| tipoAtributo | Integer | → | Tipo de atributo a obtener |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| ruta | Text | → | Ruta de método proyecto |
+| tipoAtributo | Integer | → | Tipo de atributo a obtener |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
| Resultado | Boolean | ← | True = atributo seleccionado; de lo contrario False |
@@ -45,6 +45,6 @@ El comando devuelve **True** si se selecciona un atributo y **False** si se dese
| | |
| --- | --- |
| Número de comando | 1169 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
index ffa810ef8cc3cd..95c2673658dbda 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attributes
displayed_sidebar: docs
---
-**METHOD GET ATTRIBUTES** ( *ruta* ; *atributos* {; *} )
+**METHOD GET ATTRIBUTES** ( *ruta* : Text, Text array ; *atributos* : Object, Object array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Rutas de métodos |
+| ruta | Text, Text array | → | Rutas de métodos |
| atributos | Object, Object array | ← | Atributos para los métodos seleccionados |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -66,6 +66,6 @@ Después de la ejecución, $att contiene, por ejemplo:
| | |
| --- | --- |
| Número de comando | 1334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
index 8073d4094ab07e..2f1acedb7796df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-code
displayed_sidebar: docs
---
-**METHOD GET CODE** ( *ruta* ; *codigo* {; *opcion*} {; *} )
+**METHOD GET CODE** ( *ruta* : Text, Text array ; *codigo* : Text, Text array {; *opcion* : Integer} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Texto o array de texto que contiene una o varias rutas de método |
+| ruta | Text, Text array | → | Texto o array de texto que contiene una o varias rutas de método |
| codigo | Text, Text array | ← | Código de los métodos designados |
-| opcion | Integer | → | 0 o si se omite = exportación simple (sin tokens), 1 = exportación con tokens |
-| * | Operador | → | Si se pasa = comando se aplica a la base de datos de host cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| opcion | Integer | → | 0 o si se omite = exportación simple (sin tokens), 1 = exportación con tokens |
+| * | Operador | → | Si se pasa = comando se aplica a la base de datos de host cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -127,6 +127,6 @@ El documento resultante contendrá:
| | |
| --- | --- |
| Número de comando | 1190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
index 4fbbea9677946e..bdf356b9ce2b7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-comments
displayed_sidebar: docs
---
-**METHOD GET COMMENTS** ( *ruta* ; *comentarios* {; *} )
+**METHOD GET COMMENTS** ( *ruta* : Text, Text array ; *comentarios* : Text, Text array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de método |
+| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de método |
| comentarios | Text, Text array | ← | Comentarios de los métodos designados |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -61,6 +61,6 @@ Si el comando se ejecuta desde un componente, se aplica por defecto a los métod
| | |
| --- | --- |
| Número de comando | 1189 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
index 3bef8bc94e73b2..6a7fa81863e2dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-folders
displayed_sidebar: docs
---
-**METHOD GET FOLDERS** ( *arrNoms* {; *filtro*}{; *} )
+**METHOD GET FOLDERS** ( *arrNoms* : Text array {; *filtro* : Text}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| arrNoms | Text array | ← | Array de nombres de carpetas de la página de inicio |
-| filtro | Text | → | Filtro de nombres |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| filtro | Text | → | Filtro de nombres |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -35,6 +35,6 @@ Si se ejecuta este comando desde un componente, devuelve por defecto las rutas d
| | |
| --- | --- |
| Número de comando | 1206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
index 09f8bf13b29e76..e5756a27f3117c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-modification-date
displayed_sidebar: docs
---
-**METHOD GET MODIFICATION DATE** ( *ruta* ; *fechaMod* ; *horaMod* {; *operador*} )
+**METHOD GET MODIFICATION DATE** ( *ruta* : Text, Text array ; *fechaMod* : Date, Date array ; *horaMod* : Time, Integer array {; *operador* : *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Texto o array texto que contiene una o más rutas de acceso |
+| ruta | Text, Text array | → | Texto o array texto que contiene una o más rutas de acceso |
| fechaMod | Date, Date array | ← | Fecha(s) de modificación de métodos(s) |
| horaMod | Time, Integer array | ← | Hora(s) de modificación de métodos(s) |
-| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -74,6 +74,6 @@ Quiere obtener las fechas de modificación de los métodos de un módulo con el
| | |
| --- | --- |
| Número de comando | 1170 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
index 4e31a29f958b2a..d6678c1db08568 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-names
displayed_sidebar: docs
---
-**METHOD GET NAMES** ( *arrNoms* {; *filtro*}{; *} )
+**METHOD GET NAMES** ( *arrNoms* : Text array {; *filtro* : Text}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| arrNoms | Text array | ← | Array de nombres de métodos de proyecto |
-| filtro | Text | → | Filtros de nombres |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| filtro | Text | → | Filtros de nombres |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -46,6 +46,6 @@ Ejemplos de uso:
| | |
| --- | --- |
| Número de comando | 1166 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
index eab260fe2cc2bb..839dfeb9d31238 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
@@ -5,15 +5,15 @@ slug: /commands/method-get-path
displayed_sidebar: docs
---
-**METHOD Get path** ( *tipoMetodo* {; *laTabla*}{; *nomObjeto*{; *nomObjetoForm*}}{; *} ) : Text
+**METHOD Get path** ( *tipoMetodo* : Integer {; *laTabla*}{; *nomObjeto* : Text{; *nomObjetoForm* : Text}}{; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoMetodo | Integer | → | Selector de tipo de objeto |
-| laTable | Table | → | Referencia de tabla |
-| nomObjeto | Text | → | Nombre de formulario o método base |
+| tipoMetodo | Integer | → | Selector de tipo de objeto |
+| laTable | Table | → | Referencia de tabla |
+| nomObjeto | Text | → | Nombre de formulario o método base |
| nomObjetoForm | Text | ← | Nombre del objeto de formulario |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
| resultado | Text | ← | Ruta de acceso completa del objeto |
@@ -70,6 +70,6 @@ Si el comando se ejecuta desde un componente, devuelve por defecto las rutas de
| | |
| --- | --- |
| Número de comando | 1164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
index 61d4e5993ab697..f52d0f86fbaa76 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths-form
displayed_sidebar: docs
---
-**METHOD GET PATHS FORM** ( {*laTabla* ;} *arrRutas* {; *filtro*}{; *marcador*}{; *} )
+**METHOD GET PATHS FORM** ( {*laTabla* ;} *arrRutas* : Text array {; *filtro* : Text}{; *marcador* : Real}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Referencia de tabla |
+| laTable | Table | → | Referencia de tabla |
| arrRutas | Text array | ← | Array de rutas y nombres de los métodos |
-| filtro | Text | → | Filtros de nombres |
-| marcador | Real | → | Valor mínimo de marcador |
-| ← | Nuevo valor actual |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| filtro | Text | → | Filtros de nombres |
+| marcador | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -75,6 +74,6 @@ Lista de todos los objetos de los formularios "input" de la tabla \[Empleados\]
| | |
| --- | --- |
| Número de comando | 1168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
index 94a606dbe71a25..1799b294ec1ead 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths
displayed_sidebar: docs
---
-**METHOD GET PATHS** ( {*nomCarpeta* ;} *tipoMetodo* ; *arrRutas* {; *marcador*}{; *} )
+**METHOD GET PATHS** ( {*nomCarpeta* : Text ;} *tipoMetodo* : Integer ; *arrRutas* : Text array {; *marcador* : Real}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomCarpeta | Text | → | Nombre de carpeta de la página Inicio |
-| tipoMetodo | Integer | → | Selector de tipo de método a recuperar |
+| nomCarpeta | Text | → | Nombre de carpeta de la página Inicio |
+| tipoMetodo | Integer | → | Selector de tipo de método a recuperar |
| arrRutas | Text array | ← | Array de rutas y nombres de los métodos |
-| marcador | Real | → | Valor mínimo de marcador |
-| ← | Nuevo valor actual |
-| * | Operador | → | Si se pasa = comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| marcador | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Operador | → | Si se pasa = comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -90,6 +89,6 @@ Consulte el ejemplo del comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número de comando | 1163 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
index f85ca369dd89e3..84c2d01d313ebd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
@@ -5,13 +5,13 @@ slug: /commands/method-open-path
displayed_sidebar: docs
---
-**METHOD OPEN PATH** ( *ruta* {; *line*}{; *} )
+**METHOD OPEN PATH** ( *ruta* : Text {; *line* : Real}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text | → | Ruta del método a abrir |
-| line | Number | → | Line number |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente(parámetro ignorado fuera de este contexto) |
+| ruta | Text | → | Ruta del método a abrir |
+| line | Real | → | Line number |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente(parámetro ignorado fuera de este contexto) |
@@ -35,6 +35,6 @@ Puede ejecutar este comando desde un componente, pero en este caso, debe pasar e
| | |
| --- | --- |
| Número de comando | 1213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
index c37054b7de9324..3c943ea5c35222 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
@@ -5,16 +5,16 @@ slug: /commands/method-resolve-path
displayed_sidebar: docs
---
-**METHOD RESOLVE PATH** ( *ruta* ; *tipoMetodo* ; *prtTabla* ; *nomObjeto* ; *nomObjForm* {; *} )
+**METHOD RESOLVE PATH** ( *ruta* : Text ; *tipoMetodo* : Integer ; *prtTabla* : Pointer ; *nomObjeto* : Text ; *nomObjForm* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text | → | Ruta a resolver |
+| ruta | Text | → | Ruta a resolver |
| tipoMetodo | Integer | ← | Selector de tipo de objeto |
| prtTabla | Pointer | ← | Referencia de tabla |
| nomObjeto | Text | ← | Nombre de formulario o de método base |
| nomObjForm | Text | ← | Nombre de objeto del formulario |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -88,6 +88,6 @@ Resolución de una ruta de objeto de método formulario tabla:
| | |
| --- | --- |
| Número de comando | 1165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
index 9b900f473fb3ad..d2234e3aa310f5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
@@ -5,11 +5,11 @@ slug: /commands/method-set-access-mode
displayed_sidebar: docs
---
-**METHOD SET ACCESS MODE** ( *modo* )
+**METHOD SET ACCESS MODE** ( *modo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| modo | Integer | → | Modo de acceso a los objetos bloqueados |
+| modo | Integer | → | Modo de acceso a los objetos bloqueados |
@@ -31,6 +31,6 @@ En *modo*, pase una de las siguientes constantes del tema *Acceso objetos diseñ
| | |
| --- | --- |
| Número de comando | 1191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
index ff0f305cde409e..2aeafa57aa9e84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/method-set-attribute
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTE** ( *ruta* ; *tipoAtrib* ; *valorAtrib* {; *tipoAtrib2* ; *valorAtrib2* ; ... ; *tipoAtribN* ; *valorAtribN*}{; *operador*} )
+**METHOD SET ATTRIBUTE** ( *ruta* : Text ; *tipoAtrib* : Integer ; *valorAtrib* : Boolean, Text {; ...(*tipoAtrib* : Integer, *valorAtrib* : Boolean, Text)}{; *operador* : *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text | → | Ruta del método proyecto |
-| tipoAtrib | Integer | → | Tipo de atributo |
-| valorAtrib | Boolean, Text | → | True = seleccionar el atributo False = deseleccionar el atributo |
-| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| ruta | Text | → | Ruta del método proyecto |
+| tipoAtrib | Integer | → | Tipo de atributo |
+| valorAtrib | Boolean, Text | → | True = seleccionar el atributo False = deseleccionar el atributo |
+| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -73,6 +73,6 @@ Definición de varios pares de atributos/valores:
| | |
| --- | --- |
| Número de comando | 1192 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
index 94692aca1a7b9b..25ca01c9ee93c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-attributes
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTES** ( *ruta* ; *atributos* {; *} )
+**METHOD SET ATTRIBUTES** ( *ruta* : Text, Text array ; *atributos* : Object, Object array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Rutas de métodos |
-| atributos | Object, Object array | → | Atributos para definir los métodos seleccionados |
-| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| ruta | Text, Text array | → | Rutas de métodos |
+| atributos | Object, Object array | → | Atributos para definir los métodos seleccionados |
+| * | Operador | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -61,6 +61,6 @@ Usted desea modificar un solo atributo:
| | |
| --- | --- |
| Número de comando | 1335 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
index 05fcd4d0aa0799..a0b767a4ae366c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-code
displayed_sidebar: docs
---
-**METHOD SET CODE** ( *ruta* ; *codigo* {; *operador*} )
+**METHOD SET CODE** ( *ruta* : Text, Text array ; *codigo* : Text, Text array {; *operador* : *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de métodos |
-| codigo | Text, Text array | → | Código de los métodos designados |
-| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de métodos |
+| codigo | Text, Text array | → | Código de los métodos designados |
+| operador | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -103,6 +103,6 @@ Este ejemplo exporta e importa la totalidad de los métodos proyecto de una apli
| | |
| --- | --- |
| Número de comando | 1194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
index b62986fd8df96a..b0824135c31072 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-comments
displayed_sidebar: docs
---
-**METHOD SET COMMENTS** ( *ruta* ; *comentarios* {; *Operador*} )
+**METHOD SET COMMENTS** ( *ruta* : Text, Text array ; *comentarios* : Text, Text array {; *Operador*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de métodos |
-| comentarios | Text, Text array | → | Comentarios de los métodos designados |
-| * | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
+| ruta | Text, Text array | → | Texto o array texto que contiene una o varias rutas de métodos |
+| comentarios | Text, Text array | → | Comentarios de los métodos designados |
+| * | * | → | Si se pasa = el comando se aplica a la base local cuando se ejecuta desde un componente (parámetro ignorado fuera de este contexto) |
@@ -67,6 +67,6 @@ Añadir una fecha de modificación a un comentario de trigger existente:
| | |
| --- | --- |
| Número de comando | 1193 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
index d9c9ade7dc12bc..edf19a8881d307 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ El siguiente código espera hasta 5 segundos para que un registro bloqueado se d
| | |
| --- | --- |
| Número de comando | 459 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md
index fd8f9c60ddd7d8..23fac2d65a8309 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/min.md
@@ -5,13 +5,13 @@ slug: /commands/min
displayed_sidebar: docs
---
-**Min** ( *series* {; *rutaAtributo*} ) : any
+**Min** ( *series* : Field, Array {; *rutaAtributo* : Text} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales devuelve el valor mínimo |
-| rutaAtributo | Text | → | Ruta de atributo para el cual calcular el valor mínimo |
-| Resultado | Date, Number | ← | Valor mínimo en series |
+| series | Field, Array | → | Datos para los cuales devuelve el valor mínimo |
+| rutaAtributo | Text | → | Ruta de atributo para el cual calcular el valor mínimo |
+| Resultado | Date, Real | ← | Valor mínimo en series |
@@ -83,7 +83,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 4 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
index 1d42913d7894a2..57c081cd33f880 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
@@ -5,11 +5,11 @@ slug: /commands/minimize-window
displayed_sidebar: docs
---
-**MINIMIZE WINDOW** {( *ventana* )}
+**MINIMIZE WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o si se omite todas las ventanas del primer plano del proceso actual (Windows) o ventana del primer plano del proceso actual (macOS) |
+| ventana | Integer | → | Número de referencia de la ventana o si se omite todas las ventanas del primer plano del proceso actual (Windows) o ventana del primer plano del proceso actual (macOS) |
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| Número de comando | 454 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
index b0fc9097495809..39925b42428741 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Usted desea restablecer todas las sesiones actuales para todas las aplicaciones
| | |
| --- | --- |
| Número de comando | 1596 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
index b594365d1ca96e..98636fc2d3c376 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
@@ -5,12 +5,12 @@ slug: /commands/mod
displayed_sidebar: docs
---
-**Mod** ( *número1* ; *número2* ) : Real
+**Mod** ( *número1* : Integer ; *número2* : Integer ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| número1 | Integer | → | Número a dividir |
-| número2 | Integer | → | Número divisor |
+| número1 | Integer | → | Número a dividir |
+| número2 | Integer | → | Número divisor |
| Resultado | Real | ← | Devuelve el resto de la división |
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra el funcionamiento de Mod con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 98 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
index 408399306fd464..4d8701efa5f64f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
@@ -5,11 +5,11 @@ slug: /commands/modified-record
displayed_sidebar: docs
---
-**Modified record** {( *tabla* )} : Boolean
+**Modified record** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a probar si el registro actual se ha modificado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla a probar si el registro actual se ha modificado o Tabla por defecto, si se omite |
| Resultado | Boolean | ← | El registro ha sido modificado (True), o El registro no ha sido modificado (False) |
@@ -48,6 +48,6 @@ El siguiente ejemplo muestra una utilización típica de Modified record:
| | |
| --- | --- |
| Número de comando | 314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
index 4b6d3b72383869..a33f50b800d7a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
@@ -5,11 +5,11 @@ slug: /commands/modified
displayed_sidebar: docs
---
-**Modified** ( *campo* ) : Boolean
+**Modified** ( *campo* : Field ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo a probar |
+| campo | Field | → | Campo a probar |
| Resultado | Boolean | ← | Verdadero si se ha asignado un nuevo valor al campo, de lo contrario Falso |
@@ -73,6 +73,6 @@ Selecciona un registro para la tabla *\[unaTabla\]*, luego llama múltiples subr
| | |
| --- | --- |
| Número de comando | 32 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
index 0c5912c8378d9b..717d7e6c7237e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
@@ -5,12 +5,12 @@ slug: /commands/modify-record
displayed_sidebar: docs
---
-**MODIFY RECORD** ( {*tabla*}{;}{*} )
+**MODIFY RECORD** ( {*tabla* : Table}{;}{*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a utilizar para entrada de datos o Tabla por defecto, si se omite |
-| * | Operator | → | Ocultar barras de desplazamiento |
+| tabla | Table | → | Tabla a utilizar para entrada de datos o Tabla por defecto, si se omite |
+| * | Operator | → | Ocultar barras de desplazamiento |
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 57 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
index 18f6154e0ac693..5d87aa2ad94ba3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
@@ -5,15 +5,15 @@ slug: /commands/modify-selection
displayed_sidebar: docs
---
-**MODIFY SELECTION** ( {*tabla*}{; *modoSelección*}{; *entradaList*}{; *}{; *} )
+**MODIFY SELECTION** ( {*tabla* : Table}{; *modoSelección* : Integer}{; *entradaList* : Boolean}{; *} )
**MODIFY SELECTION** ( {*tabla* : Table}{; *modoSelección* : Integer}{; *entradaList* : Boolean}; * {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a mostrar y modificar o Tabla por defecto, si se omite |
-| modoSelección | Integer | → | Modo de selección |
-| entradaList | Boolean | → | Autorizar entrada en lista |
-| * | Operator | → | Utilizar formulario de salida para un sólo registro y ocultar las barras de desplazamiento en el formulario de entrada |
-| * | Operator | → | Mostrar las barras de desplazamiento en el formulario de entrada (anula la segunda opción del primer parámetro *) |
+| tabla | Table | → | Tabla a mostrar y modificar o Tabla por defecto, si se omite |
+| modoSelección | Integer | → | Modo de selección |
+| entradaList | Boolean | → | Autorizar entrada en lista |
+| * | Operator | → | Utilizar formulario de salida para un sólo registro y ocultar las barras de desplazamiento en el formulario de entrada |
+| * | Operator | → | Mostrar las barras de desplazamiento en el formulario de entrada (anula la segunda opción del primer parámetro *) |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
index f8e24df80b6252..7bbd85faabf97c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Ver el ejemplo de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número de comando | 1713 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
index b96f24f1b1e30c..92072b3bee73a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
@@ -5,11 +5,11 @@ slug: /commands/month-of
displayed_sidebar: docs
---
-**Month of** ( *fecha* ) : Integer
+**Month of** ( *fecha* : Date ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fecha | Date | → | Fecha para la cual devolver el mes |
+| fecha | Date | → | Fecha para la cual devolver el mes |
| Resultado | Integer | ← | Número que indica el mes de la fecha |
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 24 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
index 903c803d60fcfe..0c13cf1cb66a79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
@@ -5,14 +5,14 @@ slug: /commands/mouse-position
displayed_sidebar: docs
---
-**MOUSE POSITION** ( *ratonX* ; *ratonY* ; *botonRaton* {; *} )
+**MOUSE POSITION** ( *ratonX* : Real ; *ratonY* : Real ; *botonRaton* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| ratonX | Real | ← | Coordenada horizontal del ratón |
| ratonY | Real | ← | Coordenada vertical del ratón |
| botonRaton | Integer | ← | Estado del botón del ratón: 0 = Botón arriba 1 = Botón presionado 2 = Botón derecho presionado 3 = Los dos botones presionados |
-| * | Operador | → | Si se especifica, utlizar el sistema de coordenadas globales Si se omite, utilizar el sistema de coordenadas locales |
+| * | Operador | → | Si se especifica, utlizar el sistema de coordenadas globales Si se omite, utilizar el sistema de coordenadas locales |
@@ -46,6 +46,6 @@ Ver el ejemplo del comando [Pop up menu](pop-up-menu.md "Pop up menu").
| | |
| --- | --- |
| Número de comando | 468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
index 60b54f4ad00c94..ab2833775369fa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
@@ -5,12 +5,12 @@ slug: /commands/move-document
displayed_sidebar: docs
---
-**MOVE DOCUMENT** ( *rutaFuente* ; *rutaDest* )
+**MOVE DOCUMENT** ( *rutaFuente* : Text ; *rutaDest* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaFuente | Text | → | Ruta de acceso completa al documento existente |
-| rutaDest | Text | → | Ruta de acceso de destino |
+| rutaFuente | Text | → | Ruta de acceso completa al documento existente |
+| rutaDest | Text | → | Ruta de acceso de destino |
@@ -57,7 +57,7 @@ El siguiente ejemplo mueve el documento DocName:
| | |
| --- | --- |
| Número de comando | 540 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
index 079838ff407365..f8b2ee234929aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
@@ -5,15 +5,14 @@ slug: /commands/multi-sort-array
displayed_sidebar: docs
---
-**MULTI SORT ARRAY** ( *array* {; *orden*}{; *array2* ; *orden2* ; ... ; *arrayN* ; *ordenN*} )
-**MULTI SORT ARRAY** ( *ptrArrayNombre* ; *ordenArrayNombre* )
+**MULTI SORT ARRAY** ( *array* : Array {; *orden* : Operator}{; ...*array* : Array ; ...*orden* : Operator} )
**MULTI SORT ARRAY** ( *ptrArrayNombre* : Pointer array ; *ordenArrayNombre* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array(s) a ordenar |
-| orden | * | → | ">" efectuar una ordenación creciente o "<" efectuar una ordenación decreciente Si se omite "aa" no ordenación |
-| ptrArrayNombre | Pointer array | → | Array de punteros de arrays |
-| ordenArrayNombre | Integer array | → | Array de criterio de ordenación (1= ordenar por orden creciente, -1= ordenar por orden decreciente), 0= sincronización con ordenaciones anteriores |
+| array | Array | → | Array(s) a ordenar |
+| orden | Operator | → | `>` to sort by increasing order or `<` to sort by decreasing order; if omitted no sort |
+| ptrArrayNombre | Pointer array | → | Array de punteros de arrays |
+| ordenArrayNombre | Integer array | → | Array de criterio de ordenación (1= ordenar por orden creciente, -1= ordenar por orden decreciente), 0= sincronización con ordenaciones anteriores |
@@ -114,6 +113,6 @@ Si quiere que el array de nombres se utilice como tercer criterio de ordenación
| | |
| --- | --- |
| Número de comando | 718 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
index cd41f1ba45eeb6..0ea09e8368c12c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/new-data-key
displayed_sidebar: docs
---
-**New data key** ( *passPhrase* ) : Object
+**New data key** ( *passPhrase* : Text ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| passPhrase | Text | → | Frase contraseña a utilizar para generar la llave de cifrado de datos AES |
+| passPhrase | Text | → | Frase contraseña a utilizar para generar la llave de cifrado de datos AES |
| Resultado | Object | ← | Objeto que contiene la llave (propiedad encodedKey) |
@@ -61,6 +61,6 @@ Desea guardar una llave de cifrado en un archivo .4DKeyChain:
| | |
| --- | --- |
| Número de comando | 1611 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
index 70320578af2990..7268aa2baf8390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número de comando | 375 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
index b93dcd82ba19f5..3dbd32835475fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-object
displayed_sidebar: docs
---
-**New object** {( *propiedad* ; *valor* {; *propiedad2* ; *valor2* ; ... ; *propiedadN* ; *valorN*} )} : Object
+**New object** ( *propiedad* : Text ; *valor* : any {; ...(*propiedad* : Text, *valor* : any)} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| propiedad | Text | → | Nombre de la propiedad a crear |
-| valor | any | → | Valor de la propiedad |
+| propiedad | Text | → | Nombre de la propiedad a crear |
+| valor | any | → | Valor de la propiedad |
| Resultado | Object | ← | Nuevo objeto del lenguaje |
@@ -112,6 +112,6 @@ Con este comando, puede fácilmente manejar objetos en bucles:
| | |
| --- | --- |
| Número de comando | 1471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
index 5a7b2d196d4a03..2d96859e9a4ed2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
@@ -14,15 +14,15 @@ displayed_sidebar: docs
-**New process** ( *metodo* ; *pila* {; *nombre* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**New process** ( *metodo* : Text ; *pila* : Integer {; *nombre* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| metodo | Text | → | Método a ejecutar en el proceso |
-| pila | Integer | → | Tamaño de la pila en bytes |
-| nombre | Text | → | Nombre del proceso creado |
-| param | Expression | → | Parámetros del método |
-| * | Operador | → | Proceso único |
+| metodo | Text | → | Método a ejecutar en el proceso |
+| pila | Integer | → | Tamaño de la pila en bytes |
+| nombre | Text | → | Nombre del proceso creado |
+| param | Expression | → | Parámetros del método |
+| * | Operador | → | Proceso único |
| Resultado | Integer | ← | Número del proceso creado recientemente o del proceso que está siendo ejecutado |
@@ -121,6 +121,6 @@ En el editor de barras de menús, puede reemplazar ADD CUSTOMERS por el método
| | |
| --- | --- |
| Número de comando | 317 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
index 9eb41d3be2569e..762a6b402d17a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-shared-object
displayed_sidebar: docs
---
-**New shared object** {( *propiedad* ; *valor* {; *propiedad2* ; *valor2* ; ... ; *propiedadN* ; *valorN*} )} : Object
+**New shared object** ( *propiedad* : Text ; *valor* : any {; ...(*propiedad* : Text, *valor* : any)} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| propiedad | Text | → | Nombre de la propiedad a crear |
-| valor | Text, Date, Boolean, Pointer, Number, Object | → | Valor de la propiedad |
+| propiedad | Text | → | Nombre de la propiedad a crear |
+| valor | any | → | Valor de la propiedad |
| Resultado | Object | ← | Nuevo objeto compartido |
@@ -73,6 +73,6 @@ Usted desea crear y modificar un objeto compartido. La estructura debe llamarse
| | |
| --- | --- |
| Número de comando | 1526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
index a85308bfede792..0d221bea4a0d8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
@@ -5,11 +5,11 @@ slug: /commands/next-record
displayed_sidebar: docs
---
-**NEXT RECORD** {( *tabla* )}
+**NEXT RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual mover el siguiente registro seleccionado o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla en la cual mover el siguiente registro seleccionado o Tabla por defecto, si se omite |
@@ -36,7 +36,7 @@ Ver el ejemplo del comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número de comando | 51 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
index 6c6ae956628b76..98cc122cd5857b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
@@ -5,11 +5,11 @@ slug: /commands/next-window
displayed_sidebar: docs
---
-**Next window** ( *ventana* ) : Integer
+**Next window** ( *ventana* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana |
| Resultado | Integer | ← | Número de referencia de ventana |
@@ -29,6 +29,6 @@ El comando Next window devuelve el número de referencia de la ventana ubicada
| | |
| --- | --- |
| Número de comando | 448 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
index 8f8fb23961e525..44ac2fd7854f8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ En una base que contiene un formulario de proyecto llamado “ElFormulario” y
| | |
| --- | --- |
| Número de comando | 993 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md
index 27937427bb1f3b..0a2e1a6b9ad19b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/not.md
@@ -5,11 +5,11 @@ slug: /commands/not
displayed_sidebar: docs
---
-**Not** ( *booleano* ) : Boolean
+**Not** ( *booleano* : Boolean ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| booleano | Boolean | → | Valor booleano a negar |
+| booleano | Boolean | → | Valor booleano a negar |
| Resultado | Boolean | ← | Opuesto del booleano |
@@ -38,6 +38,6 @@ Este ejemplo asigna primero Verdadero a una variable, luego cambia el valor de l
| | |
| --- | --- |
| Número de comando | 34 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
index 464a60656d4027..3a25813d2054b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ El parámetro actual puede estar definido:
| | |
| --- | --- |
| Número de comando | 1052 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md
index fbb74ba6ad951a..e36902601a7096 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/null.md
@@ -138,6 +138,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 1517 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
index d69935ff8cd687..c6bafd6421b4d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
@@ -5,11 +5,11 @@ slug: /commands/ob-class
displayed_sidebar: docs
---
-**OB Class** ( *objeto* ) : any
+**OB Class** ( *objeto* : Object ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto cuya clase se devolverá |
+| objeto | Object | → | Objeto cuya clase se devolverá |
| Resultado | Null, Object | ← | Clase de objeto |
@@ -48,6 +48,6 @@ Luego, en un método, puedes escribir:
| | |
| --- | --- |
| Número de comando | 1730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
index f6c13a77c8614f..84e70f65655ce4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
@@ -5,14 +5,14 @@ slug: /commands/ob-copy
displayed_sidebar: docs
---
-**OB Copy** ( *objeto* {; resuelvePunt | {; *option* {; *agruparCon*}}} ) : Object
+**OB Copy** ( *objeto* : Object, Campo Object {; resuelvePunt | {; *option* : Integer {; *agruparCon* : Collection, Object}}} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| resuelvePunt | Boolean | → | True = resuelve los puntero, False o se omite = no resuelve punteros |
-| option | Integer | → | ck shared: devuelve un objeto compartido,ck resolve pointers: resuelve punteros antes de copiar |
-| agruparCon | Collection, Object | → | Colección u objeto compartido a agrupar con el objeto resultante |
+| objeto | Object, Campo Object | → | Objeto estructurado |
+| resuelvePunt | Boolean | → | True = resuelve los puntero, False o se omite = no resuelve punteros |
+| option | Integer | → | ck shared: devuelve un objeto compartido,ck resolve pointers: resuelve punteros antes de copiar |
+| agruparCon | Collection, Object | → | Colección u objeto compartido a agrupar con el objeto resultante |
| Resultado | Object | ← | Copia de objeto |
@@ -170,6 +170,6 @@ Queremos copiar *$sharedObj e*n *$sharedColl* pero dado que pertenecen a diferen
| | |
| --- | --- |
| Número de comando | 1225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
index f826aca9b53774..e3fc8d550b5376 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
@@ -5,11 +5,11 @@ slug: /commands/ob-entries
displayed_sidebar: docs
---
-**OB Entries** ( *objeto* ) : Collection
+**OB Entries** ( *objeto* : Object ) : Collection
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto para devolver contenidos |
+| objeto | Object | → | Objeto para devolver contenidos |
| Resultado | Collection | ← | Colección de objetos con propiedades llave/valor |
@@ -60,6 +60,6 @@ El uso de un objeto como un mapa hash (sistema llave/valor) ofrece un acceso rá
| | |
| --- | --- |
| Número de comando | 1720 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
index aad5ce604777b1..a9c5dc68eddbdc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-array
displayed_sidebar: docs
---
-**OB GET ARRAY** ( *objeto* ; *propiedad* ; *array* )
+**OB GET ARRAY** ( *objeto* : Object ; *propiedad* : Text ; *array* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad a leer |
-| array | Text array, Real array, Boolean array, Object array, Pointer array, Integer array | ← | Array valor de la propiedad |
+| objeto | Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad a leer |
+| array | Array | ← | Array valor de la propiedad |
@@ -57,6 +57,6 @@ Queremos cambiar un valor en el primer elemento del array:
| | |
| --- | --- |
| Número de comando | 1229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
index e484baf507f34f..499f1971cb9570 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
@@ -5,11 +5,11 @@ slug: /commands/ob-get-property-names
displayed_sidebar: docs
---
-**OB GET PROPERTY NAMES** ( *objeto* ; *nomProp* {; *arrTipos*} )
+**OB GET PROPERTY NAMES** ( *objeto* : Object ; *nomProp* : Text array {; *arrTipos* : Integer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto estructurado |
+| objeto | Object | → | Objeto estructurado |
| nomProp | Text array | ← | Nombres de las propiedades |
| arrTipos | Integer array | ← | Tipos de propiedades |
@@ -102,6 +102,6 @@ Utilizando un elemento de array de objetos:
| | |
| --- | --- |
| Número de comando | 1232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
index 64e63505493f1f..f242c115c83a5d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/ob-get-type
displayed_sidebar: docs
---
-**OB Get type** ( *objeto* ; *propiedad* ) : Integer
+**OB Get type** ( *objeto* : Object ; *propiedad* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad |
+| objeto | Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad |
| Resultado | Integer | ← | Tipo de valor de la propiedad |
@@ -58,6 +58,6 @@ Queremos obtener el tipo de valores estándar:
| | |
| --- | --- |
| Número de comando | 1230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
index 9bac71531b9dfa..e174fc831bf63b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get
displayed_sidebar: docs
---
-**OB Get** ( *objeto* ; *propiedad* {; *tipo*} ) : any
+**OB Get** ( *objeto* : Object, Campo Object ; *propiedad* : Text {; *tipo* : Integer} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad a leer |
-| tipo | Integer | → | Tipo al cual convertir el valor |
+| objeto | Object, Campo Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad a leer |
+| tipo | Integer | → | Tipo al cual convertir el valor |
| Resultado | any | ← | Valor actual de propiedad |
@@ -226,6 +226,6 @@ Desea conocer el tamaño de una imagen almacenada en un atributo objeto:
| | |
| --- | --- |
| Número de comando | 1224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
index 29c254f42b6e09..14de659202ccab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
@@ -5,12 +5,12 @@ slug: /commands/ob-instance-of
displayed_sidebar: docs
---
-**OB Instance of** ( *objeto* ; *clase* ) : Boolean
+**OB Instance of** ( *objeto* : Object ; *clase* : Object ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto cuya clase se va a probar |
-| clase | Object | → | Clase para probar pertenencia |
+| objeto | Object | → | Objeto cuya clase se va a probar |
+| clase | Object | → | Clase para probar pertenencia |
| Resultado | Boolean | ← | True si objeto pertenece a la clase especificada o a una clase hijo, y false en caso contrario |
@@ -58,6 +58,6 @@ Luego, en un método, puede escribir:
| | |
| --- | --- |
| Número de comando | 1731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
index c676118c378d0d..84e70d4d4cab4d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
@@ -5,12 +5,12 @@ slug: /commands/ob-is-defined
displayed_sidebar: docs
---
-**OB Is defined** ( *objeto* {; *propiedad*} ) : Boolean
+**OB Is defined** ( *objeto* : Object, Campo Object {; *propiedad* : Text} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| propiedad | Text | → | Si se pasa = propiedad a verificar, si se omite = verificar el objeto |
+| objeto | Object, Campo Object | → | Objeto estructurado |
+| propiedad | Text | → | Si se pasa = propiedad a verificar, si se omite = verificar el objeto |
| Resultado | Boolean | ← | Si propiedad se omite: True si objeto está definido, de lo contrario False.
Si propiedad se pasa: True si propiedad está definida, de lo contrario False |
@@ -66,6 +66,6 @@ Esta prueba es equivalente a:
| | |
| --- | --- |
| Número de comando | 1231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
index 7f25a8acac3626..b3ffadb2847e4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-empty
displayed_sidebar: docs
---
-**OB Is empty** ( *objeto* ) : Boolean
+**OB Is empty** ( *objeto* : Object, Campo Object ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
+| objeto | Object, Campo Object | → | Objeto estructurado |
| Resultado | Boolean | ← | True si objeto está vacío o indefinido, de lo contrario False |
@@ -47,6 +47,6 @@ Estos son los diferentes resultados de este comando como también del comando [O
| | |
| --- | --- |
| Número de comando | 1297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
index 330eeb68f91e88..58d42e136c35dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-shared
displayed_sidebar: docs
---
-**OB Is shared** ( *aVerificar* ) : Boolean
+**OB Is shared** ( *aVerificar* : Object, Collection ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aVerificar | Object, Collection | → | Objeto o colección a verificar |
+| aVerificar | Object, Collection | → | Objeto o colección a verificar |
| Resultado | Boolean | ← | True si el objeto o la colección es compartible, False si es modificable |
@@ -26,6 +26,6 @@ Este comando devuelve **True** si se pasa una selección de entidades compartibl
| | |
| --- | --- |
| Número de comando | 1759 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
index 6c3027010e9094..2ba4913d0494a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
@@ -5,11 +5,11 @@ slug: /commands/ob-keys
displayed_sidebar: docs
---
-**OB Keys** ( *objeto* ) : Collection
+**OB Keys** ( *objeto* : Object ) : Collection
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto para devolver nombres de propiedad |
+| objeto | Object | → | Objeto para devolver nombres de propiedad |
| Resultado | Collection | ← | Colección de nombres de propiedad (cadenas) |
@@ -50,6 +50,6 @@ Quiere una colección con todos los nombres de propiedad de primer nivel de un o
| | |
| --- | --- |
| Número de comando | 1719 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
index df5596a058da97..45e806c13ed495 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
@@ -5,12 +5,12 @@ slug: /commands/ob-remove
displayed_sidebar: docs
---
-**OB REMOVE** ( *objeto* ; *propiedad* )
+**OB REMOVE** ( *objeto* : Object, Campo Object ; *propiedad* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad a eliminar |
+| objeto | Object, Campo Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad a eliminar |
@@ -43,6 +43,6 @@ Usted quiere eliminar la propiedad "edad" de un objeto:
| | |
| --- | --- |
| Número de comando | 1226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
index db6a1c64af3a5f..c3cdb82afac557 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set-array
displayed_sidebar: docs
---
-**OB SET ARRAY** ( *objeto* ; *propiedad* ; *array* )
+**OB SET ARRAY** ( *objeto* : Object, Object ; *propiedad* : Text ; *array* : Array, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad a definir |
-| array | Array, Variable | → | Array a almacenar en propiedad |
+| objeto | Object, Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad a definir |
+| array | Array, Variable | → | Array a almacenar en propiedad |
@@ -136,6 +136,6 @@ Utilizando un array imagen:
| | |
| --- | --- |
| Número de comando | 1227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
index bec36dcfe235fd..b5b762773a5671 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
@@ -5,12 +5,12 @@ slug: /commands/ob-set-null
displayed_sidebar: docs
---
-**OB SET NULL** ( *objeto* ; *property* )
+**OB SET NULL** ( *objeto* : Object, Campo Object ; *property* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estructurado |
-| property | Text | → | Nombre de la propiedad donde el valor nulo se va a aplicar |
+| objeto | Object, Campo Object | → | Objeto estructurado |
+| property | Text | → | Nombre de la propiedad donde el valor nulo se va a aplicar |
@@ -45,6 +45,6 @@ Queremos poner el valor nulo en la propiedad "edad" para Lea:
| | |
| --- | --- |
| Número de comando | 1233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
index 33858f14f77466..b06c2c84a268d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set
displayed_sidebar: docs
---
-**OB SET** ( *objeto* ; *propiedad* ; *valor* {; *propiedad2* ; *valor2* ; ... ; *propiedadN* ; *valorN*} )
+**OB SET** ( *objeto* : Object, Object ; *propiedad* : Text ; *valor* : Expression {; ...(*propiedad* : Text, *valor* : Expression)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object, Object | → | Objeto estructurado |
-| propiedad | Text | → | Nombre de la propiedad a configurar |
-| valor | Expression | → | Nuevo valor de la propiedad |
+| objeto | Object, Object | → | Objeto estructurado |
+| propiedad | Text | → | Nombre de la propiedad a configurar |
+| valor | Expression | → | Nuevo valor de la propiedad |
@@ -202,6 +202,6 @@ Usted desea almacenar una imagen en un campo objeto. Puede escribir:
| | |
| --- | --- |
| Número de comando | 1220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
index 7f66126a238d16..6f4d498346d384 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
@@ -5,11 +5,11 @@ slug: /commands/ob-values
displayed_sidebar: docs
---
-**OB Values** ( *objeto* ) : Collection
+**OB Values** ( *objeto* : Object ) : Collection
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto para devolver valores de propiedad |
+| objeto | Object | → | Objeto para devolver valores de propiedad |
| Resultado | Collection | ← | Colección de valores de propiedad (variante) |
@@ -50,6 +50,6 @@ Desea una colección con todos los valores de propiedad de un objeto:
| | |
| --- | --- |
| Número de comando | 1718 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
index 3107dd8a82b4ee..a68c995fbc8d9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
@@ -5,20 +5,20 @@ slug: /commands/object-duplicate
displayed_sidebar: docs
---
-**OBJECT DUPLICATE** ( {* ;} *objeto* {; *nuevoNom* {; *nuevaVAr* {; *relacionadoA* {; *movH* {; *moveV* {; *redimH* {; *redimV*}}}}}}} {; *} )
+**OBJECT DUPLICATE** ( * ; *objeto* : Text {; *nuevoNom* : Text {; *nuevaVAr* : Pointer {; *relacionadoA* : Text {; *movH* : Integer {; *moveV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
**OBJECT DUPLICATE** ( *objeto* : Field, Variable {; *nuevoNom* : Text {; *nuevaVAr* : Pointer {; *relacionadoA* : Text {; *movH* : Integer {; *moveV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
-| nuevoNom | Text | → | Nombre del nuevo objeto |
-| nuevaVAr | Pointer | → | Puntero a la variable del nuevo objeto |
-| relacionadoA | Text | → | Nombre del objeto editable (o del botón de radio) anterior |
-| movH | Integer | → | Desplazamiento horizontal del nuevo objeto (>0 = a la derecha, <0 =a la izquierda) |
-| moveV | Integer | → | Desplazamiento vertical del nuevo objeto (>0 = hacia abajo, <0= hacia arriba) |
-| redimH | Integer | → | Valor de redimensionamiento horizontal del nuevo objeto |
-| redimV | Integer | → | Valor de redimensionamiento vertical del nuevo objeto |
-| * | Operador | → | Si se especifica = coordenadas absolutas Si se omite = coordenadas relativas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| nuevoNom | Text | → | Nombre del nuevo objeto |
+| nuevaVAr | Pointer | → | Puntero a la variable del nuevo objeto |
+| relacionadoA | Text | → | Nombre del objeto editable (o del botón de radio) anterior |
+| movH | Integer | → | Desplazamiento horizontal del nuevo objeto (>0 = a la derecha, <0 =a la izquierda) |
+| moveV | Integer | → | Desplazamiento vertical del nuevo objeto (>0 = hacia abajo, <0= hacia arriba) |
+| redimH | Integer | → | Valor de redimensionamiento horizontal del nuevo objeto |
+| redimV | Integer | → | Valor de redimensionamiento vertical del nuevo objeto |
+| * | Operador | → | Si se especifica = coordenadas absolutas Si se omite = coordenadas relativas |
@@ -106,7 +106,7 @@ Creación de un nuevo botón radio "bRadio6" basado en el botón radio existente
| | |
| --- | --- |
| Número de comando | 1111 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
index 735f0f00377eac..d25098db05bf3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-action
displayed_sidebar: docs
---
-**OBJECT Get action** ( {* ;} *objeto* ) : Text
+**OBJECT Get action** ( * ; *objeto* : Text ) : Text
**OBJECT Get action** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
| Resultado | Text | ← | Nombre de la acción estándar asociada y (si la hay) cadena de parámetros |
@@ -49,6 +49,6 @@ Usted desea asociar la acción "Cancelar" con todos los objetos en el formulario
| | |
| --- | --- |
| Número de comando | 1457 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
index 66c1a8bf90d501..1f0e60f5ac46a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT Get auto spellcheck** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get auto spellcheck** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get auto spellcheck** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo(si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo(si se omite *) |
| Resultado | Boolean | ← | True = corrección automática, False = no corrección automática |
@@ -37,6 +37,6 @@ El comando devuelve **True** cuando la corrección ortográfica automática est
| | |
| --- | --- |
| Número de comando | 1174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
index bc505f08cf6ec1..51490d69989d74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
@@ -5,15 +5,15 @@ slug: /commands/object-get-best-size
displayed_sidebar: docs
---
-**OBJECT GET BEST SIZE** ( {* ;} *objeto* ; *largOpt* ; *altOpt* {; *anchoMax*} )
+**OBJECT GET BEST SIZE** ( * ; *objeto* : Text ; *largOpt* : Integer ; *altOpt* : Integer {; *anchoMax* : Integer} )
**OBJECT GET BEST SIZE** ( *objeto* : Field, Variable ; *largOpt* : Integer ; *altOpt* : Integer {; *anchoMax* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| largOpt | Integer | ← | Largo óptimo del objeto |
| altOpt | Integer | ← | Alto óptimo del objeto |
-| anchoMax | Integer | → | Largo máximo del objeto |
+| anchoMax | Integer | → | Largo máximo del objeto |
@@ -57,6 +57,6 @@ Consulte el ejemplo en el comando [SET PRINT MARKER](set-print-marker.md "SET PR
| | |
| --- | --- |
| Número de comando | 717 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
index 72d5324052a3a9..44f538144a435d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-border-style
displayed_sidebar: docs
---
-**OBJECT Get border style** ( {* ;} *objeto* ) : Integer
+**OBJECT Get border style** ( * ; *objeto* : Text ) : Integer
**OBJECT Get border style** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
| Resultado | Integer | ← | Estilo de línea de borde |
@@ -44,6 +44,6 @@ El comando devuelve un valor que corresponde al estilo de la línea fronteriza.
| | |
| --- | --- |
| Número de comando | 1263 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
index 5c805945910175..4ae9d2bf867302 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-context-menu
displayed_sidebar: docs
---
-**OBJECT Get context menu** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get context menu** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get context menu** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
| Resultado | Boolean | ← | True = menu contextual activo, False = menu contextual inactivo |
@@ -34,6 +34,6 @@ El comando devuelve **True** si el menú contextual está activo para el objeto
| | |
| --- | --- |
| Número de comando | 1252 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
index 561f519193c12b..4d84ab566cc4ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-coordinates
displayed_sidebar: docs
---
-**OBJECT GET COORDINATES** ( {* ;} *objeto* ; *izquierdo* ; *superior* ; *derecho* ; *inferior* )
+**OBJECT GET COORDINATES** ( * ; *objeto* : Text ; *izquierdo* : Integer ; *superior* : Integer ; *derecho* : Integer ; *inferior* : Integer )
**OBJECT GET COORDINATES** ( *objeto* : Field, Variable ; *izquierdo* : Integer ; *superior* : Integer ; *derecho* : Integer ; *inferior* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es el nombre del objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es el nombre del objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| izquierdo | Integer | ← | Coordenada izquierada del objeto |
| superior | Integer | ← | Coordenada superior del objeto |
| derecho | Integer | ← | Coordenada derecha del objeto |
@@ -90,6 +90,6 @@ El método devuelve las coordenadas teóricas. Si el listbox es redimensionado,
| | |
| --- | --- |
| Número de comando | 663 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
index 6f11ce744d5aa9..8c555d733cb42f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-corner-radius
displayed_sidebar: docs
---
-**OBJECT Get corner radius** ( {* ;} *objeto* ) : Integer
+**OBJECT Get corner radius** ( * ; *objeto* : Text ) : Integer
**OBJECT Get corner radius** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
| Resultado | Integer | ← | Radio de esquinas redondeadas (en píxeles) |
@@ -52,6 +52,6 @@ El siguiente código puede añadirse a un método de un botón:
| | |
| --- | --- |
| Número de comando | 1324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
index 4b37f70dd6af72..7cac080d73087c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-data-source
displayed_sidebar: docs
---
-**OBJECT Get data source** ( {* ;} *objeto* ) : Pointer
+**OBJECT Get data source** ( * ; *objeto* : Text ) : Pointer
**OBJECT Get data source** ( *objeto* : Field, Variable ) : Pointer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
| Resultado | Pointer | ← | Puntero a la fuente de datos actual del objeto |
@@ -47,6 +47,6 @@ Ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1265 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
index 00642f2232efba..e4141162ff69d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT GET DRAG AND DROP OPTIONS** ( {* ;} *objeto* ; *arrastrable* ; *arrastrableAuto* ; *soltable* ; *soltableAuto* )
+**OBJECT GET DRAG AND DROP OPTIONS** ( * ; *objeto* : Text ; *arrastrable* : Boolean ; *arrastrableAuto* : Boolean ; *soltable* : Boolean ; *soltableAuto* : Boolean )
**OBJECT GET DRAG AND DROP OPTIONS** ( *objeto* : Field, Variable ; *arrastrable* : Boolean ; *arrastrableAuto* : Boolean ; *soltable* : Boolean ; *soltableAuto* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| arrastrable | Boolean | ← | 0 = False, 1 = True |
| arrastrableAuto | Boolean | ← | 0 = False, 1 = True |
| soltable | Boolean | ← | 0 = False, 1 = True |
@@ -42,6 +42,6 @@ Cada parámetro devuelve True o False dependiendo de si la opción correspondien
| | |
| --- | --- |
| Número de comando | 1184 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
index 79e7b643f20648..1461ef9f80024e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enabled
displayed_sidebar: docs
---
-**OBJECT Get enabled** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get enabled** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get enabled** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variables (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variables (si se omite *) |
| Resultado | Boolean | ← | True = objeto(s) activo(s), de lo contrario False |
@@ -40,6 +40,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1079 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
index b7a8d2937305cd..1ee03bbf7f760a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enterable
displayed_sidebar: docs
---
-**OBJECT Get enterable** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get enterable** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get enterable** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
| Resultado | Boolean | ← | True = objeto(s) editable(s) |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1067 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
index 37e4e626cac5d3..7a56f923b26451 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-events
displayed_sidebar: docs
---
-**OBJECT GET EVENTS** ( {* ;} *objeto* ; *arrEvents* )
+**OBJECT GET EVENTS** ( * ; *objeto* : Text ; *arrEvents* : Integer array )
**OBJECT GET EVENTS** ( *objeto* : Field, Variable ; *arrEvents* : Integer array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto "" para designar el formulario (si se especifica *) o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto "" para designar el formulario (si se especifica *) o Campo o variable (si se omite *) |
| arrEvents | Integer array | ← | Array de eventos desactivados |
@@ -52,6 +52,6 @@ Usted quiere activar dos eventos y obtener la lista de eventos para un objeto:
| | |
| --- | --- |
| Número de comando | 1238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
index a3490734b5d8af..3be363ca519d12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-filter
displayed_sidebar: docs
---
-**OBJECT Get filter** ( {* ;} *objeto* ) : Text
+**OBJECT Get filter** ( * ; *objeto* : Text ) : Text
**OBJECT Get filter** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite) |
| Resultado | Text | ← | Nombre del filtro |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1073 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
index 0289042899fcc9..21d65abc7e961b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT Get focus rectangle invisible** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get focus rectangle invisible** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get focus rectangle invisible** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo (si se omite *) |
| Resultado | Boolean | ← | True = rectángulo de foco oculto, False = rectángulo de foco visible |
@@ -34,6 +34,6 @@ El comando devuelve **True** si el rectángulo de foco está oculto y **False**
| | |
| --- | --- |
| Número de comando | 1178 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
index dce839260fb14f..07d5b3cc844308 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-size
displayed_sidebar: docs
---
-**OBJECT Get font size** ( {* ;} *objeto* ) : Integer
+**OBJECT Get font size** ( * ; *objeto* : Text ) : Integer
**OBJECT Get font size** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
| Resultado | Integer | ← | Tamaño de la fuente en puntos |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1070 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
index ee2e86e943193b..4816a7743a58f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-style
displayed_sidebar: docs
---
-**OBJECT Get font style** ( * ; *objeto* ) : Integer
+**OBJECT Get font style** ( * ; *objeto* : any ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| Resultado | Integer | ← | Estilo de la fuente |
@@ -39,6 +39,6 @@ Puede comparar el valor devuelto por el comando con el valor de uno o más de la
| | |
| --- | --- |
| Número de comando | 1071 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
index 7fb8d03c0e8812..9aedafacf3de3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font
displayed_sidebar: docs
---
-**OBJECT Get font** ( {* ;} *objeto* ) : Text
+**OBJECT Get font** ( * ; *objeto* : Text ) : Text
**OBJECT Get font** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| Resultado | Text | ← | Nombre de la fuente |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1069 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
index ca2a2c98c16c6f..49730ff4f39756 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-format
displayed_sidebar: docs
---
-**OBJECT Get format** ( {* ;} *objeto* ) : Text
+**OBJECT Get format** ( * ; *objeto* : Text ) : Text
**OBJECT Get format** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| Resultado | Text | ← | Formato de salida del objeto |
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número de comando | 894 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
index cc9edb11aad7cc..07748e0d8b4d3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-help-tip
displayed_sidebar: docs
---
-**OBJECT Get help tip** ( {* ;} *objeto* ) : Text
+**OBJECT Get help tip** ( * ; *objeto* : Text ) : Text
**OBJECT Get help tip** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | Mensaje de ayuda del objeto |
@@ -42,6 +42,6 @@ El título de un botón imagen se guarda en forma de mensaje de ayuda. Este tít
| | |
| --- | --- |
| Número de comando | 1182 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
index a95ba6b7965171..d138a7c55ad821 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT Get horizontal alignment** ( {* ;} *objeto* ) : Integer
+**OBJECT Get horizontal alignment** ( * ; *objeto* : Text ) : Integer
**OBJECT Get horizontal alignment** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
| Resultado | Integer | ← | Código de alineación |
@@ -64,6 +64,6 @@ Los objetos de formulario a los cuales se puede aplicar alineación son los sigu
| | |
| --- | --- |
| Número de comando | 707 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
index 1992230dcf5740..bcf0b9842be2b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-indicator-type
displayed_sidebar: docs
---
-**OBJECT Get indicator type** ( {* ;} *objeto* ) : Integer
+**OBJECT Get indicator type** ( * ; *objeto* : Text ) : Integer
**OBJECT Get indicator type** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Integer | ← | Tipo de indicador |
@@ -40,6 +40,6 @@ Puede comparar el valor devuelto por el comando con las siguientes constantes, q
| | |
| --- | --- |
| Número de comando | 1247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
index be2491187f4da9..4a28dc067b3be1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT Get keyboard layout** ( {* ;} *objeto* ) : Text
+**OBJECT Get keyboard layout** ( * ; *objeto* : Text ) : Text
**OBJECT Get keyboard layout** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo (si se omite *) |
| Resultado | Text | ← | Código del lenguaje de configuración, "" = sin configuración |
@@ -32,6 +32,6 @@ El comando devuelve una cadena indicando el código del lenguaje utilizado, basa
| | |
| --- | --- |
| Número de comando | 1180 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
index b8102bc66a56ec..aa6043db1966e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-name
displayed_sidebar: docs
---
-**OBJECT Get list name** ( {* ;} *objeto* {; *tipoLista*} ) : Text
+**OBJECT Get list name** ( * ; *objeto* : Text {; *tipoLista* : Integer} ) : Text
**OBJECT Get list name** ( *objeto* : Field, Variable {; *tipoLista* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| tipoLista | Integer | → | Tipo de lista: lista de selección, lista de obligatorios o lista de excluidos |
+| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| tipoLista | Integer | → | Tipo de lista: lista de selección, lista de obligatorios o lista de excluidos |
| Resultado | Text | ← | Nombre de la lista (definida en modo Diseño) |
@@ -43,6 +43,6 @@ Si ninguna lista del tipo definido está asociada al *objeto*, el comando devuel
| | |
| --- | --- |
| Número de comando | 1072 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
index d56349b2afaa0c..5cb448524d3d8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-reference
displayed_sidebar: docs
---
-**OBJECT Get list reference** ( {* ;} *objeto* {; *tipoLista*} ) : Integer
+**OBJECT Get list reference** ( * ; *objeto* : Text {; *tipoLista* : Integer} ) : Integer
**OBJECT Get list reference** ( *objeto* : Field, Variable {; *tipoLista* : Integer} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| tipoLista | Integer | → | Tipo de lista: lista de Selección, lista obligatoria o la lista de excluidos |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| tipoLista | Integer | → | Tipo de lista: lista de Selección, lista obligatoria o la lista de excluidos |
| Resultado | Integer | ← | Número de referencia de lista |
@@ -43,6 +43,6 @@ Si no hay una lista jerárquica asociada al objeto para el *tipoLista* definido,
| | |
| --- | --- |
| Número de comando | 1267 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
index 89cc468b189a62..43eea66ebe287f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-maximum-value
displayed_sidebar: docs
---
-**OBJECT GET MAXIMUM VALUE** ( {* ;} *objeto* ; *valorMax* )
+**OBJECT GET MAXIMUM VALUE** ( * ; *objeto* : Text ; *valorMax* : Date, Time, Real )
**OBJECT GET MAXIMUM VALUE** ( *objeto* : Field, Variable ; *valorMax* : Date, Time, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
-| valorMax | Date, Time, Number | ← | Valor máximo actual para objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
+| valorMax | Date, Time, Real | ← | Valor máximo actual para objeto |
@@ -36,6 +36,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1245 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
index 0de34fb710c275..429ab6c9b6ccd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-minimum-value
displayed_sidebar: docs
---
-**OBJECT GET MINIMUM VALUE** ( {* ;} *objeto* ; *valorMin* )
+**OBJECT GET MINIMUM VALUE** ( * ; *objeto* : Text ; *valorMin* : Date, Time, Real )
**OBJECT GET MINIMUM VALUE** ( *objeto* : Field, Variable ; *valorMin* : Date, Time, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| valorMin | Date, Time, Number | ← | Valor mínimo actual del objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| valorMin | Date, Time, Real | ← | Valor mínimo actual del objeto |
@@ -33,6 +33,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1243 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
index f1f87128005f8c..ff6de1c0167c61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-multiline
displayed_sidebar: docs
---
-**OBJECT Get multiline** ( {* ;} *objeto* ) : Integer
+**OBJECT Get multiline** ( * ; *objeto* : Text ) : Integer
**OBJECT Get multiline** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
| Resultado | Integer | ← | Estado Multilínea del objeto |
@@ -43,6 +43,6 @@ El valor devuelto corresponde a una de las siguientes constantes del tema "*Prop
| | |
| --- | --- |
| Número de comando | 1254 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
index adda6f81d1182e..8ee782daa1cca0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-name
displayed_sidebar: docs
---
-**OBJECT Get name** {( *selector* )} : Text
+**OBJECT Get name** ( *selector* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Categoría de objeto |
+| selector | Integer | → | Categoría de objeto |
| Resultado | Text | ← | Nombre del objeto |
@@ -44,6 +44,6 @@ Después de la ejecución de este método objeto, la variable *$btnName* contien
| | |
| --- | --- |
| Número de comando | 1087 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
index d476f7a1f9cf39..e4fcd186af10d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-placeholder
displayed_sidebar: docs
---
-**OBJECT Get placeholder** ( {* ;} *objeto* ) : Text
+**OBJECT Get placeholder** ( * ; *objeto* : Text ) : Text
**OBJECT Get placeholder** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
| Resultado | Text | ← | Texto de ejemplo asociado al objeto |
@@ -42,6 +42,6 @@ Si quiere recibir el texto del marcador de campo:
| | |
| --- | --- |
| Número de comando | 1296 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
index 00212fb64d7b20..80cad56bedbaf7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-pointer
displayed_sidebar: docs
---
-**OBJECT Get pointer** {( *selector* {; *nomObjeto* {; *nomSubFormulario*}})} : Pointer
+**OBJECT Get pointer** ( *selector* : Integer {; *nomObjeto* : Text {; *nomSubFormulario* : Text}}) : Pointer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Categoría del objeto |
-| nomObjeto | Text | → | Nombre de objeto |
-| nomSubFormulario | Text | → | Nombre del objeto subformulario |
+| selector | Integer | → | Categoría del objeto |
+| nomObjeto | Text | → | Nombre de objeto |
+| nomSubFormulario | Text | → | Nombre del objeto subformulario |
| Resultado | Pointer | ← | Puntero a la variable del objeto |
@@ -62,6 +62,6 @@ Dado un formulario "SF" utilizado dos veces como subformulario en el mismo formu
| | |
| --- | --- |
| Número de comando | 1124 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
index 955daeb8b39790..2cc2cda76f216b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT GET PRINT VARIABLE FRAME** ( {* ;} *objeto* ; *tamVariable* {; *subformFijo*} )
+**OBJECT GET PRINT VARIABLE FRAME** ( * ; *objeto* : Text ; *tamVariable* : Boolean {; *subformFijo* : Integer} )
**OBJECT GET PRINT VARIABLE FRAME** ( *objeto* : Field, Variable ; *tamVariable* : Boolean {; *subformFijo* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
| tamVariable | Boolean | ← | True = Impresión tamaño variable, False = impresión tamaño fijo |
| subformFijo | Integer | ← | Opción para impresión de subformularios de tamaño fijo |
@@ -41,6 +41,6 @@ Si el *objeto* es un subformulario y si la impresión en tamaño variable está
| | |
| --- | --- |
| Número de comando | 1241 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
index e6ca25f57241f0..a9d1359fafb711 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-resizing-options
displayed_sidebar: docs
---
-**OBJECT GET RESIZING OPTIONS** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT GET RESIZING OPTIONS** ( * ; *objeto* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT GET RESIZING OPTIONS** ( *objeto* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| horizontal | Integer | ← | Opción de redimensionamiento horizontal |
| vertical | Integer | ← | Opción de redimensionamiento vertical |
@@ -49,6 +49,6 @@ El parámetro *vertical* devuelve un valor indicando la opción de redimensionam
| | |
| --- | --- |
| Número de comando | 1176 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
index e39e9500a5ef9d..e2812e4f837f02 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-rgb-colors
displayed_sidebar: docs
---
-**OBJECT GET RGB COLORS** ( {* ;} *objeto* ; *colorPrimerPlano* {; *colorFondo* {; *colorFondoAlt*}} )
+**OBJECT GET RGB COLORS** ( * ; *objeto* : Text ; *colorPrimerPlano* : Text, Integer {; *colorFondo* : Text, Integer {; *colorFondoAlt* : Text, Integer}} )
**OBJECT GET RGB COLORS** ( *objeto* : Field, Variable ; *colorPrimerPlano* : Text, Integer {; *colorFondo* : Text, Integer {; *colorFondoAlt* : Text, Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
| colorPrimerPlano | Text, Integer | ← | Valor del color RGB del primer plano |
| colorFondo | Text, Integer | ← | Valor del color RGB del fondo |
| colorFondoAlt | Text, Integer | ← | Valor del color RGB del fondo alterno |
@@ -41,6 +41,6 @@ Para obtener más información acerca del formato de los parámetros *colorPrime
| | |
| --- | --- |
| Número de comando | 1074 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
index 022c779feb81f7..75ab56abaa91f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scroll-position
displayed_sidebar: docs
---
-**OBJECT GET SCROLL POSITION** ( {* ;} *objeto* ; *posicionLinea* {; *posicionH*} )
+**OBJECT GET SCROLL POSITION** ( * ; *objeto* : Text ; *posicionLinea* : Integer {; *posicionH* : Integer} )
**OBJECT GET SCROLL POSITION** ( *objeto* : Field, Variable ; *posicionLinea* : Integer {; *posicionH* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
| posicionLinea | Integer | ← | Número de la primera línea mostrada o desplazamiento vertical en píxeles (imágenes) |
| posicionH | Integer | ← | Número de la primera columna mostrada (list box) o desplazamiento horizontal en píxeles (imágenes) |
@@ -37,6 +37,6 @@ Si *objeto* designa una imagen (variable o campo), *posicionLinea* devuelve el d
| | |
| --- | --- |
| Número de comando | 1114 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
index 1750d06e671243..9c0c64df6fb1f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scrollbar
displayed_sidebar: docs
---
-**OBJECT GET SCROLLBAR** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT GET SCROLLBAR** ( * ; *objeto* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT GET SCROLLBAR** ( *objeto* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite*) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite*) |
| horizontal | Boolean, Integer | ← | True = mostrado, False = oculto |
| vertical | Boolean, Integer | ← | True = mostrado, False = oculto |
@@ -50,6 +50,6 @@ Para obtener más información, consulte la descripción del comando [OBJECT SET
| | |
| --- | --- |
| Número de comando | 1076 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
index 7dbef20af7ea40..1d96a43c5fa4e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-shortcut
displayed_sidebar: docs
---
-**OBJECT GET SHORTCUT** ( {* ;} *objeto* ; *tecla* ; *modificadores* )
+**OBJECT GET SHORTCUT** ( * ; *objeto* : Text ; *tecla* : Text ; *modificadores* : Integer )
**OBJECT GET SHORTCUT** ( *objeto* : Field, Variable ; *tecla* : Text ; *modificadores* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| tecla | Text | ← | Tecla asociada al objeto |
| modificadores | Integer | ← | Máscara o combinación de máscaras de teclas de modificación |
@@ -47,6 +47,6 @@ Si ninguna tecla de modificación se ha definido para el atajo, modificadores de
| | |
| --- | --- |
| Número de comando | 1186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
index 074760d360758b..b55d726d2e8e30 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-style-sheet
displayed_sidebar: docs
---
-**OBJECT Get style sheet** ( {* ;} *objeto* ) : Text
+**OBJECT Get style sheet** ( * ; *objeto* : Text ) : Text
**OBJECT Get style sheet** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
| Resultado | Text | ← | Nombre de la hoja de estilo |
@@ -52,6 +52,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1258 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
index 19b19c961a06e6..a048d315f79484 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform-container-size
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM CONTAINER SIZE** ( *ancho* ; *alto* )
+**OBJECT GET SUBFORM CONTAINER SIZE** ( *ancho* : Integer ; *alto* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ El evento On Resize se genera en el método formulario del subformulario si el o
| | |
| --- | --- |
| Número de comando | 1148 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
index e94ac70927d9d2..79cd74d6494d43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número de comando | 1785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
index 826956644b369b..b4799faf0f206b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-subform
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM** ( {* ;} *objeto* ; *puntTabla* ; *subFormDet* {; *subFormList*} )
+**OBJECT GET SUBFORM** ( * ; *objeto* : Text ; *puntTabla* ; *subFormDet* : Text {; *subFormList* : Text} )
**OBJECT GET SUBFORM** ( *objeto* : Field, Variable ; *puntTabla* ; *subFormDet* : Text {; *subFormList* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| puntTable | Table | ← | Puntero a la tabla del formulario |
| subFormDet | Text | ← | Nombre del formulario detallado del subformulario |
| subFormList | Text | ← | Nombre del formulario listado del subformulario (formulario tabla) |
@@ -45,6 +45,6 @@ Si no hay formulario listado, se devuelve una cadena vacía en el parámetro *su
| | |
| --- | --- |
| Número de comando | 1139 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
index 1d672fba5a4b0f..79461d54d0eb09 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-text-orientation
displayed_sidebar: docs
---
-**OBJECT Get text orientation** ( {* ;} *objeto* ) : Integer
+**OBJECT Get text orientation** ( * ; *objeto* : Text ) : Integer
**OBJECT Get text orientation** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
| Resultado | Integer | ← | Ángulo de rotación de texto |
@@ -61,6 +61,6 @@ Cuando se ejecuta el formulario, si se llama a la siguiente declaración:
| | |
| --- | --- |
| Número de comando | 1283 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
index 14722c591e5f9d..c4877e0616af3d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT Get three states checkbox** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get three states checkbox** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get three states checkbox** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
| Resultado | Boolean | ← | True = casilla de selección de tres estados, False = casilla de selección estándar |
@@ -30,6 +30,6 @@ La propiedad "Tres estados" se puede definir ya sea usando la lista de propiedad
| | |
| --- | --- |
| Número de comando | 1250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
index 77fcda9bda7446..71b520478337e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-title
displayed_sidebar: docs
---
-**OBJECT Get title** ( {* ;} *objeto* ) : Text
+**OBJECT Get title** ( * ; *objeto* : Text ) : Text
**OBJECT Get title** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o campo o variable texto (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o campo o variable texto (si se omite *) |
| Resultado | Text | ← | Título del botón |
@@ -38,6 +38,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1068 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
index 9a3a6472c8f49c..569f07980b4f47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-type
displayed_sidebar: docs
---
-**OBJECT Get type** ( {* ;} *objeto* ) : Integer
+**OBJECT Get type** ( * ; *objeto* : Text ) : Integer
**OBJECT Get type** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Integer | ← | Tipo de objeto |
@@ -101,6 +101,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1300 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
index 7a210925da6ad8..50acd3c8df217e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-value
displayed_sidebar: docs
---
-**OBJECT Get value** ( *nomObjeto* ) : any
+**OBJECT Get value** ( *nomObjeto* : Text ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomObjeto | Text | → | Nombre del objeto |
+| nomObjeto | Text | → | Nombre del objeto |
| Resultado | any | ← | Valor actual de la fuente de datos del objeto de formulario |
@@ -44,6 +44,6 @@ Ver el ejemplo para el comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número de comando | 1743 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
index c6da3457ed4866..7b386e677b2979 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT Get vertical alignment** ( {* ;} *objeto* ) : Integer
+**OBJECT Get vertical alignment** ( * ; *objeto* : Text ) : Integer
**OBJECT Get vertical alignment** ( *objeto* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Integer | ← | Tipo de alineación |
@@ -48,6 +48,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
index 24ae0fe7e26e9e..855efc10f94fe5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-visible
displayed_sidebar: docs
---
-**OBJECT Get visible** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get visible** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get visible** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
| Resultado | Boolean | ← | True = objeto(s) visible(s), de lo contrario False |
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1075 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
index 7cdf5a0ae8d97f..b3427cb17479be 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
@@ -5,12 +5,12 @@ slug: /commands/object-is-styled-text
displayed_sidebar: docs
---
-**OBJECT Is styled text** ( {* ;} *objeto* ) : Boolean
+**OBJECT Is styled text** ( * ; *objeto* : Text ) : Boolean
**OBJECT Is styled text** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
| Resultado | Boolean | ← | True si el objeto es un texto multi estilo, False en caso contrario |
@@ -48,6 +48,6 @@ Un formulario contiene un campo representado por dos objetos diferentes, uno de
| | |
| --- | --- |
| Número de comando | 1261 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
index 6dfe46fce21471..7adb9538073ac4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
@@ -5,17 +5,17 @@ slug: /commands/object-move
displayed_sidebar: docs
---
-**OBJECT MOVE** ( {* ;} *objeto* ; *moveH* ; *moveV* {; *redimH* {; *redimV* {; *}}} )
+**OBJECT MOVE** ( * ; *objeto* : Text ; *moveH* : Integer ; *moveV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
**OBJECT MOVE** ( *objeto* : Field, Variable ; *moveH* : Integer ; *moveV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Campo o variable (si se omite *) |
-| moveH | Integer | → | Valor del movimiento horizontal del objeto (>0 = a la derecha, <0 = a la izquierda) |
-| moveV | Integer | → | Valor del movimiento vertical del objeto (>0 = hacia abajo, <0 = hacia arriba) |
-| redimH | Integer | → | Valor del redimensionamiento horizontal del objeto |
-| redimV | Integer | → | Valor del redimensionamiento vertical del objeto |
-| * | Operador | → | Si se especifica = coordenadas absolutas Si se omite = coordenadas relativas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Campo o variable (si se omite *) |
+| moveH | Integer | → | Valor del movimiento horizontal del objeto (>0 = a la derecha, <0 = a la izquierda) |
+| moveV | Integer | → | Valor del movimiento vertical del objeto (>0 = hacia abajo, <0 = hacia arriba) |
+| redimH | Integer | → | Valor del redimensionamiento horizontal del objeto |
+| redimV | Integer | → | Valor del redimensionamiento vertical del objeto |
+| * | Operador | → | Si se especifica = coordenadas absolutas Si se omite = coordenadas relativas |
@@ -72,6 +72,6 @@ La siguiente instrucción mueve el botón “boton\_1” a las siguientes coorde
| | |
| --- | --- |
| Número de comando | 664 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
index 24ab89c17d8bc8..607ce180c9ac22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-action
displayed_sidebar: docs
---
-**OBJECT SET ACTION** ( {*sup* ;} *objeto* ; *accion* )
+**OBJECT SET ACTION** ( {*sup* : * ;} *objeto* : any ; *accion* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| sup | * | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica ) o
Campo o variable (si * se omite) |
-| accion | Text | → | Acción para asociar |
+| sup | * | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica ) o
Campo o variable (si * se omite) |
+| accion | Text | → | Acción para asociar |
@@ -46,6 +46,6 @@ Usted desea asociar la acción estándar **Validate** con un botón:
| | |
| --- | --- |
| Número de comando | 1259 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
index c43ae4b4cc8522..b3bd64b597958c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT SET AUTO SPELLCHECK** ( {* ;} *objeto* ; *correcionAuto* )
+**OBJECT SET AUTO SPELLCHECK** ( * ; *objeto* : Text ; *correcionAuto* : Boolean )
**OBJECT SET AUTO SPELLCHECK** ( *objeto* : Field, Variable ; *correcionAuto* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| correcionAuto | Boolean | → | True = corrección automática,False= no corrección automática |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| correcionAuto | Boolean | → | True = corrección automática,False= no corrección automática |
@@ -37,6 +37,6 @@ Pase **True** en *correccionAuto* para activar esta función para objeto y **Fal
| | |
| --- | --- |
| Número de comando | 1173 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
index f8c58bc599977b..845c97f2c3ab10 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-border-style
displayed_sidebar: docs
---
-**OBJECT SET BORDER STYLE** ( {* ;} *objeto* ; *estiloBorde* )
+**OBJECT SET BORDER STYLE** ( * ; *objeto* : Text ; *estiloBorde* : Integer )
**OBJECT SET BORDER STYLE** ( *objeto* : Field, Variable ; *estiloBorde* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| estiloBorde | Integer | → | Estilo de línea de borde |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| estiloBorde | Integer | → | Estilo de línea de borde |
@@ -44,6 +44,6 @@ En el parámetro *estiloBorde*, pase el valor del estilo de la línea fronteriza
| | |
| --- | --- |
| Número de comando | 1262 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
index 25042e8773d618..1bf6a1570339df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-context-menu
displayed_sidebar: docs
---
-**OBJECT SET CONTEXT MENU** ( {* ;} *objeto* ; *menuContext* )
+**OBJECT SET CONTEXT MENU** ( * ; *objeto* : Text ; *menuContext* : Boolean )
**OBJECT SET CONTEXT MENU** ( *objeto* : Field, Variable ; *menuContext* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| menuContext | Boolean | → | True = activar el menú contextual, False = desactivar el menú contextual |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| menuContext | Boolean | → | True = activar el menú contextual, False = desactivar el menú contextual |
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *menuContext* para activar el menú contextual, y
| | |
| --- | --- |
| Número de comando | 1251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
index 62faf19ebdf850..2f67bef5106686 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-coordinates
displayed_sidebar: docs
---
-**OBJECT SET COORDINATES** ( {* ;} *objeto* ; *izquierda* ; *sup* {; *derecha* ; *inf*} )
+**OBJECT SET COORDINATES** ( {* ;} *objeto* : Integer ; *izquierda* : Integer ; *sup* : Integer {; *derecha* : Integer ; *inf* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | Integer | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| izquierda | Integer | → | Coordenada izquierda del objeto en píxeles |
-| sup | Integer | → | Coordenada superior del objeto en píxeles |
-| derecha | Integer | → | Coordenada derecha del objeto en píxeles |
-| inf | Integer | → | Coordenada iinferior del objeto en píxeles |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | Integer | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| izquierda | Integer | → | Coordenada izquierda del objeto en píxeles |
+| sup | Integer | → | Coordenada superior del objeto en píxeles |
+| derecha | Integer | → | Coordenada derecha del objeto en píxeles |
+| inf | Integer | → | Coordenada iinferior del objeto en píxeles |
@@ -60,6 +60,6 @@ La siguiente declaración ubica el objeto "button\_1" en las coordenadas (10,20)
| | |
| --- | --- |
| Número de comando | 1248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
index 3ba3020714dc6b..e80b7046a8dc3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-corner-radius
displayed_sidebar: docs
---
-**OBJECT SET CORNER RADIUS** ( {* ;} *objeto* ; *radio* )
+**OBJECT SET CORNER RADIUS** ( * ; *objeto* : Text ; *radio* : Integer )
**OBJECT SET CORNER RADIUS** ( *objeto* : Field, Variable ; *radio* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
-| radio | Integer | → | Nuevo radio de esquinas redondeadas (en píxeles) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
+| radio | Integer | → | Nuevo radio de esquinas redondeadas (en píxeles) |
@@ -71,6 +71,6 @@ Tenga en cuenta que para las áreas de texto (así como las entradas), a diferen
| | |
| --- | --- |
| Número de comando | 1323 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
index 01e0440c2142e3..033b4b49770c36 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-data-source
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE** ( {* ;} *objeto* ; *fuenteDatos* )
+**OBJECT SET DATA SOURCE** ( * ; *objeto* : Text ; *fuenteDatos* : Pointer )
**OBJECT SET DATA SOURCE** ( *objeto* : Field, Variable ; *fuenteDatos* : Pointer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| fuenteDatos | Pointer | → | Puntero a la nueva fuente de datos del objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| fuenteDatos | Pointer | → | Puntero a la nueva fuente de datos del objeto |
@@ -55,6 +55,6 @@ Cambio de la fuente de datos para un área de entrada:
| | |
| --- | --- |
| Número de comando | 1264 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
index 0796a954067b50..9cbd6964d5dcc4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT SET DRAG AND DROP OPTIONS** ( {* ;} *objeto* ; *arrastrable* ; *arrastrableAuto* ; *soltable* ; *soltableAuto* )
+**OBJECT SET DRAG AND DROP OPTIONS** ( * ; *objeto* : Text ; *arrastrable* : Boolean ; *arrastrableAuto* : Boolean ; *soltable* : Boolean ; *soltableAuto* : Boolean )
**OBJECT SET DRAG AND DROP OPTIONS** ( *objeto* : Field, Variable ; *arrastrable* : Boolean ; *arrastrableAuto* : Boolean ; *soltable* : Boolean ; *soltableAuto* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| arrastrable | Boolean | → | 0 = False, 1 = True |
-| arrastrableAuto | Boolean | → | 0 = False, 1 = True |
-| soltable | Boolean | → | 0 = False, 1 = True |
-| soltableAuto | Boolean | → | 0 = False, 1 = True |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| arrastrable | Boolean | → | 0 = False, 1 = True |
+| arrastrableAuto | Boolean | → | 0 = False, 1 = True |
+| soltable | Boolean | → | 0 = False, 1 = True |
+| soltableAuto | Boolean | → | 0 = False, 1 = True |
@@ -48,6 +48,6 @@ Definición de un área de texto en arrastrar y soltar auto:
| | |
| --- | --- |
| Número de comando | 1183 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
index ef34d6cd7f4b63..9969afe2001fd3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enabled
displayed_sidebar: docs
---
-**OBJECT SET ENABLED** ( {* ;} *objeto* ; *activo* )
+**OBJECT SET ENABLED** ( * ; *objeto* : Text ; *activo* : Boolean )
**OBJECT SET ENABLED** ( *objeto* : Field, Variable ; *activo* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (se se omite *) |
-| activo | Boolean | → | True = objeto(s) activo(s), de lo contrario False |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (se se omite *) |
+| activo | Boolean | → | True = objeto(s) activo(s), de lo contrario False |
@@ -44,6 +44,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1123 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
index 4a3a2b085bd0fc..89763902426a9b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enterable
displayed_sidebar: docs
---
-**OBJECT SET ENTERABLE** ( {* ;} *objeto* ; *editable* )
+**OBJECT SET ENTERABLE** ( * ; *objeto* : Text ; *editable* : Boolean, Integer )
**OBJECT SET ENTERABLE** ( *objeto* : Field, Variable ; *editable* : Boolean, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Tabla o campo o variable (si se omite *) |
-| editable | Boolean, Integer | → | True para editable; False para no editable |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Tabla o campo o variable (si se omite *) |
+| editable | Boolean, Integer | → | True para editable; False para no editable |
@@ -78,6 +78,6 @@ Este es el método de objeto de una casilla de selección ubicada en el encabeza
| | |
| --- | --- |
| Número de comando | 238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
index 54c5fe4ba36c95..93c795d491a275 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-events
displayed_sidebar: docs
---
-**OBJECT SET EVENTS** ( {* ;} *objeto* ; *arrEventos* ; *modo* )
+**OBJECT SET EVENTS** ( * ; *objeto* : Text ; *arrEventos* : Integer array ; *modo* : Integer )
**OBJECT SET EVENTS** ( *objeto* : Field, Variable ; *arrEventos* : Integer array ; *modo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto o "" para designar el formulario (si * se especifica) o
Campo o variable (si * se omite) |
-| arrEventos | Integer array | → | Array de eventos a definir |
-| modo | Integer | → | Modo de activación de los eventos definidos en arrEvents |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto o "" para designar el formulario (si * se especifica) o
Campo o variable (si * se omite) |
+| arrEventos | Integer array | → | Array de eventos a definir |
+| modo | Integer | → | Modo de activación de los eventos definidos en arrEvents |
@@ -171,6 +171,6 @@ Desactivación de un solo evento del formulario sin modificar los otros:
| | |
| --- | --- |
| Número de comando | 1239 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
index 8fcedddee2a1a8..b0849324c6882a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-filter
displayed_sidebar: docs
---
-**OBJECT SET FILTER** ( {* ;} *objeto* ; *filtroEntrada* )
+**OBJECT SET FILTER** ( * ; *objeto* : Text ; *filtroEntrada* : Text )
**OBJECT SET FILTER** ( *objeto* : Field, Variable ; *filtroEntrada* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| filtroEntrada | Text | → | Nuevo filtro de entrada para el área editable |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| filtroEntrada | Text | → | Nuevo filtro de entrada para el área editable |
@@ -61,6 +61,6 @@ El siguiente ejemplo permite únicamente la entrada de las letras “a,” “b,
| | |
| --- | --- |
| Número de comando | 235 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
index 1ad9f2a9a4e683..ccaf90fadc4d4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( {* ;} *objeto* ; *invisible* )
+**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( * ; *objeto* : Text ; *invisible* : Boolean )
**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( *objeto* : Field, Variable ; *invisible* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| invisible | Boolean | → | True = rectángulo de foco oculto,False = rectángulo de foco visible |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| invisible | Boolean | → | True = rectángulo de foco oculto,False = rectángulo de foco visible |
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *invisible* para ocultar el rectángulo de foco y
| | |
| --- | --- |
| Número de comando | 1177 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
index 6db156029ec8ac..b89fea117ca1b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-size
displayed_sidebar: docs
---
-**OBJECT SET FONT SIZE** ( {* ;} *objeto* ; *tamaño* )
+**OBJECT SET FONT SIZE** ( * ; *objeto* : Text ; *tamaño* : Integer )
**OBJECT SET FONT SIZE** ( *objeto* : Field, Variable ; *tamaño* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| tamaño | Integer | → | Tamaño de fuente en puntos |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| tamaño | Integer | → | Tamaño de fuente en puntos |
@@ -55,6 +55,6 @@ El siguiente ejemplo define el tamaño de fuente para todos los objetos de formu
| | |
| --- | --- |
| Número de comando | 165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
index 764f9d30224208..4ea5729b546492 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-style
displayed_sidebar: docs
---
-**OBJECT SET FONT STYLE** ( {* ;} *objeto* ; *estilos* )
+**OBJECT SET FONT STYLE** ( * ; *objeto* : Text ; *estilos* : Integer )
**OBJECT SET FONT STYLE** ( *objeto* : Field, Variable ; *estilos* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| estilos | Integer | → | Estilo de fuente |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| estilos | Integer | → | Estilo de fuente |
@@ -59,6 +59,6 @@ Este ejemplo define el estilo de fuente Plain para todos los objetos de formular
| | |
| --- | --- |
| Número de comando | 166 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
index 086d202797cdcd..20424b02f20f03 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font
displayed_sidebar: docs
---
-**OBJECT SET FONT** ( {* ;} *objeto* ; *fuente* )
+**OBJECT SET FONT** ( * ; *objeto* : Text ; *fuente* : Text )
**OBJECT SET FONT** ( *objeto* : Field, Variable ; *fuente* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| fuente | Text | → | Nombre o número de fuente |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| fuente | Text | → | Nombre o número de fuente |
@@ -66,6 +66,6 @@ El siguiente ejemplo utiliza la opción especial *%password*, diseñada para la
| | |
| --- | --- |
| Número de comando | 164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
index b9bc399019be1f..8750dfdaad8676 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-format
displayed_sidebar: docs
---
-**OBJECT SET FORMAT** ( {* ;} *objeto* ; *formato* )
+**OBJECT SET FORMAT** ( * ; *objeto* : Text ; *formato* : Text )
**OBJECT SET FORMAT** ( *objeto* : Field, Variable ; *formato* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| formato | Text | → | Nuevo formato de salida para el objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| formato | Text | → | Nuevo formato de salida para el objeto |
@@ -364,6 +364,6 @@ Pase un termómetro a modo "Barber shop"
| | |
| --- | --- |
| Número de comando | 236 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
index 613cb06a6e955e..35263be1d4df42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-help-tip
displayed_sidebar: docs
---
-**OBJECT SET HELP TIP** ( {* ;} *objeto* ; *mensajeAyuda* )
+**OBJECT SET HELP TIP** ( * ; *objeto* : Text ; *mensajeAyuda* : Text )
**OBJECT SET HELP TIP** ( *objeto* : Field, Variable ; *mensajeAyuda* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| mensajeAyuda | Text | → | Contenido del mensaje de ayuda |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| mensajeAyuda | Text | → | Contenido del mensaje de ayuda |
@@ -141,6 +141,6 @@ El resultado es...
| | |
| --- | --- |
| Número de comando | 1181 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
index 3b3cb9c746bc35..61d1fb4372ba55 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT SET HORIZONTAL ALIGNMENT** ( {* ;} *objeto* ; *alineación* )
+**OBJECT SET HORIZONTAL ALIGNMENT** ( * ; *objeto* : Text ; *alineación* : Integer )
**OBJECT SET HORIZONTAL ALIGNMENT** ( *objeto* : Field, Variable ; *alineación* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite= objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| alineación | Integer | → | Código de alineación |
+| * | Operador | → | Si se especifica, objeto es un nombre del objeto (cadena) Si se omite= objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| alineación | Integer | → | Código de alineación |
@@ -62,6 +62,6 @@ Los objetos de formulario a los cuales puede aplicar este comando son los siguie
| | |
| --- | --- |
| Número de comando | 706 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
index 69f2186164f207..b9f40788756cb8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-indicator-type
displayed_sidebar: docs
---
-**OBJECT SET INDICATOR TYPE** ( {* ;} *objeto* ; *indicador* )
+**OBJECT SET INDICATOR TYPE** ( * ; *objeto* : Text ; *indicador* : Integer )
**OBJECT SET INDICATOR TYPE** ( *objeto* : Field, Variable ; *indicador* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| indicador | Integer | → | Tipo de indicador |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| indicador | Integer | → | Tipo de indicador |
@@ -40,6 +40,6 @@ En el parámetro *indicador*, pase el tipo de indicador a mostrar. Puede utiliza
| | |
| --- | --- |
| Número de comando | 1246 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
index 2eeeaf80ca5cbd..cbe5d71b7921ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT SET KEYBOARD LAYOUT** ( {* ;} *objeto* ; *codigoLeng* )
+**OBJECT SET KEYBOARD LAYOUT** ( * ; *objeto* : Text ; *codigoLeng* : Text )
**OBJECT SET KEYBOARD LAYOUT** ( *objeto* : Field, Variable ; *codigoLeng* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| codigoLeng | Text | → | Código de lenguaje RFC3066 ISO639 e ISO3166,"" = no cambiar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| codigoLeng | Text | → | Código de lenguaje RFC3066 ISO639 e ISO3166,"" = no cambiar |
@@ -32,6 +32,6 @@ En *codigoLeng*, pase una cadena indicando el código del lenguaje a utilizar, b
| | |
| --- | --- |
| Número de comando | 1179 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
index 8c42e8452c3501..e47c796877f272 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-name
displayed_sidebar: docs
---
-**OBJECT SET LIST BY NAME** ( {* ;} *objeto* {; *listType*}; *lista* )
+**OBJECT SET LIST BY NAME** ( * ; *objeto* : Text {; *listType* : Integer}; *lista* : Text )
**OBJECT SET LIST BY NAME** ( *objeto* : Field, Variable {; *listType* : Integer}; *lista* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| listType | Integer | → | Tipo de lista: Lista de selección, Lista obligatoria o Lista de excluidos |
-| lista | Text | → | Nombre de la lista a utilizar (definida en el entorno Diseño) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| listType | Integer | → | Tipo de lista: Lista de selección, Lista obligatoria o Lista de excluidos |
+| lista | Text | → | Nombre de la lista a utilizar (definida en el entorno Diseño) |
@@ -98,6 +98,6 @@ Usted quiere eliminar la lista de asociaciones:
| | |
| --- | --- |
| Número de comando | 237 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
index 7c549f19b3d820..8c13d563447be8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-reference
displayed_sidebar: docs
---
-**OBJECT SET LIST BY REFERENCE** ( {* ;} *objeto* {; *tipoLista*}; *lista* )
+**OBJECT SET LIST BY REFERENCE** ( * ; *objeto* : Text {; *tipoLista* : Integer}; *lista* : Integer )
**OBJECT SET LIST BY REFERENCE** ( *objeto* : Field, Variable {; *tipoLista* : Integer}; *lista* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| tipoLista | Integer | → | Tipo de lista: Lista de valores, Lista de obligatorios o Lista de excluidos |
-| lista | Integer | → | Número de referencia de lista |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| tipoLista | Integer | → | Tipo de lista: Lista de valores, Lista de obligatorios o Lista de excluidos |
+| lista | Integer | → | Número de referencia de lista |
@@ -133,6 +133,6 @@ Con el fin de actualizar la lista asociada al pop-up gestionado por array, es ne
| | |
| --- | --- |
| Número de comando | 1266 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
index 25078981972f9c..d5ccf66e4e7d65 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-maximum-value
displayed_sidebar: docs
---
-**OBJECT SET MAXIMUM VALUE** ( {* ;} *objeto* ; *valorMax* )
+**OBJECT SET MAXIMUM VALUE** ( * ; *objeto* : Text ; *valorMax* : Date, Time, Real )
**OBJECT SET MAXIMUM VALUE** ( *objeto* : Field, Variable ; *valorMax* : Date, Time, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si especifica, objeto es un nombre de objeto(cadena)
Si se omite, objeto es un campo o variable |
-| objeto | any | → | Nombre del objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| valorMax | Date, Time, Number | → | Valor máximo para el objeto |
+| * | Operador | → | Si especifica, objeto es un nombre de objeto(cadena)
Si se omite, objeto es un campo o variable |
+| objeto | any | → | Nombre del objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| valorMax | Date, Time, Real | → | Valor máximo para el objeto |
@@ -35,6 +35,6 @@ En *valorMax*, pase el nuevo valor máximo que desea asignar al objeto para el p
| | |
| --- | --- |
| Número de comando | 1244 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
index 17e8f7b48eaf7a..d42b467e81ddaf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-minimum-value
displayed_sidebar: docs
---
-**OBJECT SET MINIMUM VALUE** ( {* ;} *objeto* ; *valorMinimo* )
+**OBJECT SET MINIMUM VALUE** ( * ; *objeto* : Text ; *valorMinimo* : Date, Time, Real )
**OBJECT SET MINIMUM VALUE** ( *objeto* : Field, Variable ; *valorMinimo* : Date, Time, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| valorMinimo | Date, Time, Number | → | Valor mínimo para el objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| valorMinimo | Date, Time, Real | → | Valor mínimo para el objeto |
@@ -35,6 +35,6 @@ En *valorMinimo*, pase el nuevo valor mínimo a asignar al objeto para el proces
| | |
| --- | --- |
| Número de comando | 1242 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
index ee9a34e500a17a..7bdfcdbebe448b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-multiline
displayed_sidebar: docs
---
-**OBJECT SET MULTILINE** ( {* ;} *objeto* ; *multilinea* )
+**OBJECT SET MULTILINE** ( * ; *objeto* : Text ; *multilinea* : Integer )
**OBJECT SET MULTILINE** ( *objeto* : Field, Variable ; *multilinea* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| multilinea | Integer | → | Estado de la propiedad multilínea |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| multilinea | Integer | → | Estado de la propiedad multilínea |
@@ -48,6 +48,6 @@ Usted quiere prohibir varias líneas en un área de entrada:
| | |
| --- | --- |
| Número de comando | 1253 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
index ad2601b36be307..d50f7ea6cf730e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-placeholder
displayed_sidebar: docs
---
-**OBJECT SET PLACEHOLDER** ( {* ;} *objeto* ; *textoEjemplo* )
+**OBJECT SET PLACEHOLDER** ( * ; *objeto* : Text ; *textoEjemplo* : Text )
**OBJECT SET PLACEHOLDER** ( *objeto* : Field, Variable ; *textoEjemplo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| textoEjemplo | Text | → | Texto de ejemplo asociado al objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| textoEjemplo | Text | → | Texto de ejemplo asociado al objeto |
@@ -50,6 +50,6 @@ Usted quiere mostrar el texto "Buscar" un combo box:
| | |
| --- | --- |
| Número de comando | 1295 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
index 2e1605b2759708..638efe9e009f6c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT SET PRINT VARIABLE FRAME** ( {* ;} *objeto* ; *marcoVariable* {; *subformFijo*} )
+**OBJECT SET PRINT VARIABLE FRAME** ( * ; *objeto* : Text ; *marcoVariable* : Boolean {; *subformFijo* : Integer} )
**OBJECT SET PRINT VARIABLE FRAME** ( *objeto* : Field, Variable ; *marcoVariable* : Boolean {; *subformFijo* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| marcoVariable | Boolean | → | True = Impresión de marco variable, False = Impresión de marco fijo |
-| subformFijo | Integer | → | Opciones de impresión de subformularios en tamaño fijo |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| marcoVariable | Boolean | → | True = Impresión de marco variable, False = Impresión de marco fijo |
+| subformFijo | Integer | → | Opciones de impresión de subformularios en tamaño fijo |
@@ -47,6 +47,6 @@ El parámetro opcional *subformFijo* le permite configurar una opción adicional
| | |
| --- | --- |
| Número de comando | 1240 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
index 3450d67fe42ea8..d03b8b53fe93f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-resizing-options
displayed_sidebar: docs
---
-**OBJECT SET RESIZING OPTIONS** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT SET RESIZING OPTIONS** ( * ; *objeto* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT SET RESIZING OPTIONS** ( *objeto* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| horizontal | Integer | → | Opción de redimensionamiento horizontal |
-| vertical | Integer | → | Opción de redimensionamiento vertical |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| horizontal | Integer | → | Opción de redimensionamiento horizontal |
+| vertical | Integer | → | Opción de redimensionamiento vertical |
@@ -48,6 +48,6 @@ En el parámetro *vertical*, pase un valor que indique la opción de redimension
| | |
| --- | --- |
| Número de comando | 1175 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
index f7fafe23f46046..bcb19daee83e21 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-rgb-colors
displayed_sidebar: docs
---
-**OBJECT SET RGB COLORS** ( {* ;} *objeto* ; *colorPrimerPlano* {; *colorFondo* {; *colorFondoAlt*}} )
+**OBJECT SET RGB COLORS** ( * ; *objeto* : Text ; *colorPrimerPlano* : Text, Integer {; *colorFondo* : Text, Integer {; *colorFondoAlt* : Text, Integer}} )
**OBJECT SET RGB COLORS** ( *objeto* : Field, Variable ; *colorPrimerPlano* : Text, Integer {; *colorFondo* : Text, Integer {; *colorFondoAlt* : Text, Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| colorPrimerPlano | Text, Integer | → | Valor del color RGB del primer plano |
-| colorFondo | Text, Integer | → | Valor del color RGB del fondo |
-| colorFondoAlt | Text, Integer | → | Valor del color RGB del fondo alterno |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| colorPrimerPlano | Text, Integer | → | Valor del color RGB del primer plano |
+| colorFondo | Text, Integer | → | Valor del color RGB del fondo |
+| colorFondoAlt | Text, Integer | → | Valor del color RGB del fondo alterno |
@@ -109,6 +109,6 @@ Cambia a fondo transparente con un color de fuente claro:
| | |
| --- | --- |
| Número de comando | 628 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
index 54ecbea8de6c45..c0e80d7008a396 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-scroll-position
displayed_sidebar: docs
---
-**OBJECT SET SCROLL POSITION** ( * ; *objeto* {; *posicionL* {; *posicionH*}}{; *} )
+**OBJECT SET SCROLL POSITION** ( * ; *objeto* : any {; *posicionL* : Integer {; *posicionH* : Integer}}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una tabla o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Tabla o variable (si se omite *) |
-| posicionL | Integer | → | Número de línea a mostrar |
-| posicionH | Integer | → | Número de columna a mostrar (list box) o Desplazamiento horizontal en píxeles (imágenes) |
-| * | Operador | → | Mostrar la línea en primera posición después del desplazamiento |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una tabla o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Tabla o variable (si se omite *) |
+| posicionL | Integer | → | Número de línea a mostrar |
+| posicionH | Integer | → | Número de columna a mostrar (list box) o Desplazamiento horizontal en píxeles (imágenes) |
+| * | Operador | → | Mostrar la línea en primera posición después del desplazamiento |
@@ -95,6 +95,6 @@ Asegúrese de no omitir el segundo parámetro *\** en este caso, de lo contrario
| | |
| --- | --- |
| Número de comando | 906 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
index 6168f42ff9087f..ec2aaf8bd6769c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-scrollbar
displayed_sidebar: docs
---
-**OBJECT SET SCROLLBAR** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT SET SCROLLBAR** ( * ; *objeto* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT SET SCROLLBAR** ( *objeto* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Variable (si se omite *) |
-| horizontal | Boolean, Integer | → | True = mostrar, False = ocultar |
-| vertical | Boolean, Integer | → | True = mostrar, False = ocultar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Variable (si se omite *) |
+| horizontal | Boolean, Integer | → | True = mostrar, False = ocultar |
+| vertical | Boolean, Integer | → | True = mostrar, False = ocultar |
@@ -50,6 +50,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores indicando si las b
| | |
| --- | --- |
| Número de comando | 843 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
index c7a8f7772c3fb6..0409fb59dae071 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-shortcut
displayed_sidebar: docs
---
-**OBJECT SET SHORTCUT** ( {* ;} *objeto* ; *tecla* {; *modificadores*} )
+**OBJECT SET SHORTCUT** ( * ; *objeto* : Text ; *tecla* : Text {; *modificadores* : Integer} )
**OBJECT SET SHORTCUT** ( *objeto* : Field, Variable ; *tecla* : Text {; *modificadores* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo(si se omite *) |
-| tecla | Text | → | Tecla a asociar al objeto |
-| modificadores | Integer | → | Máscara o combinación de máscaras de teclas de modificación |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable o campo(si se omite *) |
+| tecla | Text | → | Tecla a asociar al objeto |
+| modificadores | Integer | → | Máscara o combinación de máscaras de teclas de modificación |
@@ -94,6 +94,6 @@ Usted quiere asociar un atajo de teclado diferente en función del lenguaje actu
| | |
| --- | --- |
| Número de comando | 1185 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
index 0ba3ae9c89971d..777d732ee235cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-style-sheet
displayed_sidebar: docs
---
-**OBJECT SET STYLE SHEET** ( {* ;} *objeto* ; *nomHojaEstilo* )
+**OBJECT SET STYLE SHEET** ( * ; *objeto* : Text ; *nomHojaEstilo* : Text )
**OBJECT SET STYLE SHEET** ( *objeto* : Field, Variable ; *nomHojaEstilo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| nomHojaEstilo | Text | → | Nombre de la hoja de estilo |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| nomHojaEstilo | Text | → | Nombre de la hoja de estilo |
@@ -54,6 +54,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1257 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
index e0576e83511f50..00add716efd587 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-set-subform-container-value
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* )
+**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* : any )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| value | any | → | New value for the data source |
+| value | any | → | New value for the data source |
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número de comando | 1784 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
index 656c39b2c2614e..b9820761b12014 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-subform
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM** ( {* ;} *objeto* {; *aTabla*}; *subFormDet* {; *subFormList*} )
+**OBJECT SET SUBFORM** ( * ; *objeto* : Text {; *aTabla*}; *subFormDet* : Text, Object {; *subFormList* : Text, Object} )
**OBJECT SET SUBFORM** ( *objeto* : Field, Variable {; *aTabla*}; *subFormDet* : Text, Object {; *subFormList* : Text, Object} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| aTable | Table | → | Tabla de formulario (si tabla de formulario) |
-| subFormDet | Text, Object | → | Nombre del formulario detallado de subformulario |
-| subFormList | Text, Object | → | Nombre del formulario listado de subformulario (formulario tabla) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| aTable | Table | → | Tabla de formulario (si tabla de formulario) |
+| subFormDet | Text, Object | → | Nombre del formulario detallado de subformulario |
+| subFormList | Text, Object | → | Nombre del formulario listado de subformulario (formulario tabla) |
@@ -49,6 +49,6 @@ Cuando modifica un subformulario página, el comando puede ejecutarse en cualqui
| | |
| --- | --- |
| Número de comando | 1138 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
index 8977dfe1ce4654..ee8d6ef18fd548 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-text-orientation
displayed_sidebar: docs
---
-**OBJECT SET TEXT ORIENTATION** ( {* ;} *objeto* ; *orientacion* )
+**OBJECT SET TEXT ORIENTATION** ( * ; *objeto* : Text ; *orientacion* : Integer )
**OBJECT SET TEXT ORIENTATION** ( *objeto* : Field, Variable ; *orientacion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| orientacion | Integer | → | Valor de orientación del objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| orientacion | Integer | → | Valor de orientación del objeto |
@@ -55,6 +55,6 @@ Desea aplicar una orientación de 270° a una variable en su formulario:
| | |
| --- | --- |
| Número de comando | 1284 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
index 8869bb9834b631..e0cf80d1de218d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT SET THREE STATES CHECKBOX** ( {* ;} *objeto* ; *tresEst* )
+**OBJECT SET THREE STATES CHECKBOX** ( * ; *objeto* : Text ; *tresEst* : Boolean )
**OBJECT SET THREE STATES CHECKBOX** ( *objeto* : Field, Variable ; *tresEst* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
-| tresEst | Boolean | → | True = casilla de selección de tres estados, False = casilla de selección estándar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si * se especifica) o
Campo o variable (si * se omite) |
+| tresEst | Boolean | → | True = casilla de selección de tres estados, False = casilla de selección estándar |
@@ -36,6 +36,6 @@ En el parámetro *tresEst*, pase **True** para activar el modo "tres estados", o
| | |
| --- | --- |
| Número de comando | 1249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
index 279acbe7ea7c86..14e4864cd5f9ec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-title
displayed_sidebar: docs
---
-**OBJECT SET TITLE** ( {* ;} *objeto* ; *titulo* )
+**OBJECT SET TITLE** ( * ; *objeto* : Text ; *titulo* : Text )
**OBJECT SET TITLE** ( *objeto* : Field, Variable ; *titulo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Variable (si se omite *) |
-| titulo | Text | → | Nuevo título para el objeto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Variable (si se omite *) |
+| titulo | Text | → | Nuevo título para el objeto |
@@ -73,6 +73,6 @@ Usted quiere insertar los títulos en dos líneas:
| | |
| --- | --- |
| Número de comando | 194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
index 931507a8928dba..e4cf6e6af28cc9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
@@ -5,12 +5,12 @@ slug: /commands/object-set-value
displayed_sidebar: docs
---
-**OBJECT SET VALUE** ( *nomObjeto* ; *valor* )
+**OBJECT SET VALUE** ( *nomObjeto* : Text ; *valor* : any )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomObjeto | Text | → | Nombre de objeto |
-| valor | any | → | Nuevo valor para la fuente de datos del objeto de formulario |
+| nomObjeto | Text | → | Nombre de objeto |
+| valor | any | → | Nuevo valor para la fuente de datos del objeto de formulario |
@@ -45,6 +45,6 @@ Desea obtener el valor de la fuente de datos para un objeto de formulario, obten
| | |
| --- | --- |
| Número de comando | 1742 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
index fb2556a3f91ae5..1943ce24672751 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT SET VERTICAL ALIGNMENT** ( {* ;} *objeto* ; *alineacion* )
+**OBJECT SET VERTICAL ALIGNMENT** ( * ; *objeto* : Text ; *alineacion* : Integer )
**OBJECT SET VERTICAL ALIGNMENT** ( *objeto* : Field, Variable ; *alineacion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| alineacion | Integer | → | Código de alineación |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| alineacion | Integer | → | Código de alineación |
@@ -47,6 +47,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
index c2e3b694c77c80..10a7038f8d4cc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-visible
displayed_sidebar: docs
---
-**OBJECT SET VISIBLE** ( {* ;} *objeto* ; *visible* )
+**OBJECT SET VISIBLE** ( * ; *objeto* : Text ; *visible* : Boolean )
**OBJECT SET VISIBLE** ( *objeto* : Field, Variable ; *visible* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
-| visible | Boolean | → | True para visible, False para invisible |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *), o Campo o variable (si se omite *) |
+| visible | Boolean | → | True para visible, False para invisible |
@@ -64,6 +64,6 @@ o:
| | |
| --- | --- |
| Número de comando | 603 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
index e9f009baf68395..0200e4bfd962e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
@@ -5,11 +5,11 @@ slug: /commands/object-to-path
displayed_sidebar: docs
---
-**Object to path** ( *objRuta* ) : Text
+**Object to path** ( *objRuta* : Object ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objRuta | Object | → | Objeto que describe los contenidos de una ruta |
+| objRuta | Object | → | Objeto que describe los contenidos de una ruta |
| Resultado | Text | ← | Nombre de ruta |
@@ -61,6 +61,6 @@ Queremos duplicar y cambiar el nombre de un archivo en su propia carpeta
| | |
| --- | --- |
| Número de comando | 1548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
index dc07058e4e8d42..e6dfd8dcbe3357 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
@@ -5,11 +5,11 @@ slug: /commands/old-related-many
displayed_sidebar: docs
---
-**OLD RELATED MANY** ( *campo* )
+**OLD RELATED MANY** ( *campo* : Field )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo Uno |
+| campo | Field | → | Campo Uno |
@@ -29,7 +29,7 @@ OLD RELATED MANY cambia la selección de la tabla relacionada y selecciona el pr
| | |
| --- | --- |
| Número de comando | 263 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
index 434173cf9bad44..f38545aed92549 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo Muchos |
+| unField | Field | → | Campo Muchos |
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 44 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md
index f8aa7106c71caf..6d957d1f9db220 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/old.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo del cual devolver el valor anterior |
+| unField | Field | → | Campo del cual devolver el valor anterior |
| Resultado | any | ← | Valor original del campo |
@@ -45,6 +45,6 @@ Para restaurar el valor original de un campo, asígnele el valor devuelto por Ol
| | |
| --- | --- |
| Número de comando | 35 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
index 8c4b874c13dddb..bf5ef3efe186f0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-err-call
displayed_sidebar: docs
---
-**ON ERR CALL** ( *metodoError* {; *alcance*} )
+**ON ERR CALL** ( *metodoError* : Text {; *alcance* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| metodoError | Text | → | Método de gestión de errores a llamar o cadena vacía para desinstalar el método |
-| alcance | Integer | → | Alcance del método de gestión de errores |
+| metodoError | Text | → | Método de gestión de errores a llamar o cadena vacía para desinstalar el método |
+| alcance | Integer | → | Alcance del método de gestión de errores |
@@ -190,6 +190,6 @@ El siguiente método de gestión de errores ignora las interrupciones del usuari
| | |
| --- | --- |
| Número de comando | 155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
index 404f0293d26024..b9e151d5615923 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-event-call
displayed_sidebar: docs
---
-**ON EVENT CALL** ( *metodoEvento* {; *nombreProceso*} )
+**ON EVENT CALL** ( *metodoEvento* : Text {; *nombreProceso* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| metodoEvento | Text | → | Método de evento a llamar, o Cadena vacía para detener la interceptación de eventos |
-| nombreProceso | Text | → | Nombre del proceso |
+| metodoEvento | Text | → | Método de evento a llamar, o Cadena vacía para detener la interceptación de eventos |
+| nombreProceso | Text | → | Nombre del proceso |
@@ -120,7 +120,7 @@ Si imprime un informe utilizando [PRINT SELECTION](print-selection.md "PRINT SEL
| | |
| --- | --- |
| Número de comando | 190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
index e534b139669a16..afa14d83e2dede 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mobileInfo | Object | → | Información pasada por la aplicación móvil |
+| mobileInfo | Object | → | Información pasada por la aplicación móvil |
| Resultado | Object | ← | Estado de acción y sincronización de datos |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
index 7d2dd962db73e5..ba668131709944 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
@@ -5,11 +5,11 @@ slug: /commands/on-mobile-app-authentication-database-method
displayed_sidebar: docs
---
-**Método base On Mobile App Authentication** ( *infoMovil* ; *estado* )
+**Método base On Mobile App Authentication** ( *infoMovil* : Object ; *estado* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| infoMovil | Object | → | Información pasada por la aplicación móvil |
+| infoMovil | Object | → | Información pasada por la aplicación móvil |
| estado | Object | ← | Estado de la autenticación |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
index 58e53d3abd0017..02218793d17ed3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ The [Force login authentication](../REST/authUsers.md) is now highly recommended
| | |
| --- | --- |
| Command number | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
index dea6ca45ed567c..7d8e8d9849dc5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
@@ -5,11 +5,11 @@ slug: /commands/one-record-select
displayed_sidebar: docs
---
-**ONE RECORD SELECT** {( *tabla* )}
+**ONE RECORD SELECT** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual reducir la selección actual al registro actual o Tabla por defecto si se omite |
+| tabla | Table | → | Tabla en la cual reducir la selección actual al registro actual o Tabla por defecto si se omite |
@@ -35,7 +35,7 @@ Este comando fue útil para “reponer” un registro que había sido apilado y
| | |
| --- | --- |
| Número de comando | 189 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
index 86f28016ec96e7..0559d7a656068d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 1047 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
index 7de3420bb63888..008a5ee2ffefd1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
@@ -5,11 +5,11 @@ slug: /commands/open-color-picker
displayed_sidebar: docs
---
-**OPEN COLOR PICKER** {( *textOFondo* )}
+**OPEN COLOR PICKER** ({ *textOFondo* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| textOFondo | Integer | → | 0 o si se omite = color del texto, 1 = color del fondo del texto |
+| textOFondo | Integer | → | 0 o si se omite = color del texto, 1 = color del fondo del texto |
@@ -34,6 +34,6 @@ Si el color se ha cambiado, el evento formulario On After Edit se genera para el
| | |
| --- | --- |
| Número de comando | 1304 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
index 07adde52cd74cb..69b84cd1613437 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/open-data-file
displayed_sidebar: docs
---
-**OPEN DATA FILE** ( *rutaAcceso* )
+**OPEN DATA FILE** ( *rutaAcceso* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaAcceso | Text | → | Nombre o ruta de acceso completa del archivo de datos a abrir |
+| rutaAcceso | Text | → | Nombre o ruta de acceso completa del archivo de datos a abrir |
@@ -60,6 +60,6 @@ En el contexto del despliegue de una aplicación fusionada, usted desea abrir o
| | |
| --- | --- |
| Número de comando | 312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
index 16bef78e87e440..a639f795dcb4bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
@@ -5,11 +5,11 @@ slug: /commands/open-database
displayed_sidebar: docs
---
-**OPEN DATABASE** ( *rutaArchivo* )
+**OPEN DATABASE** ( *rutaArchivo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaArchivo | Text | → | Nombre o ruta de acceso completa del archivo de base de datos a abrir (.4db, .4dc, .4dbase o .4dlink) |
+| rutaArchivo | Text | → | Nombre o ruta de acceso completa del archivo de base de datos a abrir (.4db, .4dc, .4dbase o .4dlink) |
@@ -76,6 +76,6 @@ Desea seleccionar un servidor al inicio desde una aplicación mono usuario. Pued
| | |
| --- | --- |
| Número de comando | 1321 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
index 9c8a5a10fa8f18..51f10aff74b282 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
@@ -5,13 +5,13 @@ slug: /commands/open-document
displayed_sidebar: docs
---
-**Open document** ( *doc* {; *tipo*}{; *modo*} ) : Time
+**Open document** ( *doc* : Text {; *tipo* : Text}{; *modo* : Integer} ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento o Cadena vacía para mostrar la caja de diálogo |
-| tipo | Text | → | Lista de los tipos de documentos a filtrar o "*" para no filtrar los documentos |
-| modo | Integer | → | Modo de apertura del documento |
+| doc | Text | → | Nombre del documento o Ruta de acceso completa al documento o Cadena vacía para mostrar la caja de diálogo |
+| tipo | Text | → | Lista de los tipos de documentos a filtrar o "*" para no filtrar los documentos |
+| modo | Integer | → | Modo de apertura del documento |
| Resultado | Time | ← | Número de referencia del documento |
@@ -93,7 +93,7 @@ Si pasa el valor 3 en *modo*, la función devuelve ?00:00:00? (sin referencia de
| | |
| --- | --- |
| Número de comando | 264 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
index 2606113929ea1d..14eb5c7c3504a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Este es el código del botón:
| | |
| --- | --- |
| Número de comando | 1303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
index 36e7e53f1533f6..85336901a993d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
@@ -5,16 +5,16 @@ slug: /commands/open-form-window
displayed_sidebar: docs
---
-**Open form window** ( {*tabla* ;} *nomForm* {; *tipo* {; *posH* {; *posV* {; *}}}} ) : Integer
+**Open form window** ( {*tabla* : Table ;} *nomForm* : Text, Object {; *tipo* : Integer {; *posH* : Integer {; *posV* : Integer {; *}}}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del formulario o tabla por defecto, si se omite |
-| nomForm | Text, Object | → | Nombre del formulario |
-| tipo | Integer | → | Tipo de la ventana |
-| posH | Integer | → | Posición horizontal de la ventana |
-| posV | Integer | → | Posición vertical de la ventana |
-| * | Operador | → | Conservar la posición actual y el tamaño de la ventana |
+| tabla | Table | → | Tabla del formulario o tabla por defecto, si se omite |
+| nomForm | Text, Object | → | Nombre del formulario |
+| tipo | Integer | → | Tipo de la ventana |
+| posH | Integer | → | Posición horizontal de la ventana |
+| posV | Integer | → | Posición vertical de la ventana |
+| * | Operador | → | Conservar la posición actual y el tamaño de la ventana |
| Resultado | Integer | ← | Número de referencia de la ventana |
@@ -143,6 +143,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 675 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
index e7e1a6156a0326..7cb3bd2dc4a348 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable sistema OK toma el valor 1 si el trabajo de impresión se ha abierto
| | |
| --- | --- |
| Número de comando | 995 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
index 49aaed55bb2a6a..e38764bf719201 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
@@ -5,12 +5,12 @@ slug: /commands/open-resource-file
displayed_sidebar: docs
---
-**Open resource file** ( *resNomArchivo* {; *tipo*} ) : Time
+**Open resource file** ( *resNomArchivo* : Text {; *tipo* : Text} ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNomArchivo | Text | → | Nombre o ruta de acceso completa del archivo de recursos o Cadena vacía para mostrar la caja de diálogo estándar de apertura de archivos |
-| tipo | Text | → | Tipo de archivo Mac OS (cadena de 4 caracteres) o extensión del archivo Windows (cadena de 1 a 3 caracteres) o archivo de recursos ("res " / .RES) si se omite |
+| resNomArchivo | Text | → | Nombre o ruta de acceso completa del archivo de recursos o Cadena vacía para mostrar la caja de diálogo estándar de apertura de archivos |
+| tipo | Text | → | Tipo de archivo Mac OS (cadena de 4 caracteres) o extensión del archivo Windows (cadena de 1 a 3 caracteres) o archivo de recursos ("res " / .RES) si se omite |
| Resultado | Time | ← | Número de referencia del archivo de recursos |
@@ -103,7 +103,7 @@ Si el archivo de recursos no se pudo abrir por un problema del recurso o de E/S,
| | |
| --- | --- |
| Número de comando | 497 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
index d5ec4f733cda62..01a380024fae64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
index cacc35dea432de..e61d2797dd0b9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependiendo de los privilegios de acceso del usuario actual, ciertas funciones d
| | |
| --- | --- |
| Número de comando | 1018 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
index 514049c798600f..0685d60ca9d0b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
@@ -5,13 +5,13 @@ slug: /commands/open-settings-window
displayed_sidebar: docs
---
-**OPEN SETTINGS WINDOW** ( *selector* {; *acceso* {; *tipoParam*}} )
+**OPEN SETTINGS WINDOW** ( *selector* : Text {; *acceso* : Boolean {; *tipoParam* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Text | → | Llave que designa un tema o página o un grupo de parámetros de la caja de diálogo Preferencias |
-| acceso | Boolean | → | True=Bloquear las otras páginas de la caja de diálogo, False o si se omite=Dejar activas las otras páginas de la caja de diálogo |
-| tipoParam | Integer | → | 0 o si se omite = Parámetros de estructura, 1 = Parámetros de usuario, 2 = Configuración usuario para archivo de datos |
+| selector | Text | → | Llave que designa un tema o página o un grupo de parámetros de la caja de diálogo Preferencias |
+| acceso | Boolean | → | True=Bloquear las otras páginas de la caja de diálogo, False o si se omite=Dejar activas las otras páginas de la caja de diálogo |
+| tipoParam | Integer | → | 0 o si se omite = Parámetros de estructura, 1 = Parámetros de usuario, 2 = Configuración usuario para archivo de datos |
@@ -145,7 +145,7 @@ Si la caja de diálogo Preferencias/Propiedades se valida, la variable sistema O
| | |
| --- | --- |
| Número de comando | 903 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
index 51b9c388af03b0..3fa2a3ec5a9668 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
@@ -5,13 +5,13 @@ slug: /commands/open-url
displayed_sidebar: docs
---
-**OPEN URL** ( *ruta* {; *nomAp*}{; *} )
+**OPEN URL** ( *ruta* : Text {; *nomAp* : Text}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ruta | Text | → | Ruta del documento o URL a abrir |
-| nomAp | Text | → | Nombre de la aplicación a utilizar |
-| * | Operador | → | Si se especifica = la URL no está traducida, Si se omite = la URL está traducida |
+| ruta | Text | → | Ruta del documento o URL a abrir |
+| nomAp | Text | → | Nombre de la aplicación a utilizar |
+| * | Operador | → | Si se especifica = la URL no está traducida, Si se omite = la URL está traducida |
@@ -87,6 +87,6 @@ Puede abrir un mismo archivo texto con diferentes aplicaciones utilizando el par
| | |
| --- | --- |
| Número de comando | 673 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
index dec072d5bf6ea7..94367d7998e374 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
@@ -5,17 +5,17 @@ slug: /commands/open-window
displayed_sidebar: docs
---
-**Open window** ( *izquierda* ; *superior* ; *derecha* ; *inferior* {; *tipo* {; *titulo* {; *casillaCerrar*}}} ) : Integer
+**Open window** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer {; *tipo* : Integer {; *titulo* : Text {; *casillaCerrar* : Text}}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| izquierda | Integer | → | Coordenada global izquierda del interior de la ventana |
-| superior | Integer | → | Coordenada global superior del interior de la ventana |
-| derecha | Integer | → | Coordenada global derecha del interior de la ventana |
-| inferior | Integer | → | Coordenada global inferior del interior de la ventana |
-| tipo | Integer | → | Tipo de la ventana |
-| titulo | Text | → | Título de la ventana |
-| casillaCerrar | Text | → | Método a llamar en caso de doble clic del menú Control o de clic en la casilla Cerrar |
+| izquierda | Integer | → | Coordenada global izquierda del interior de la ventana |
+| superior | Integer | → | Coordenada global superior del interior de la ventana |
+| derecha | Integer | → | Coordenada global derecha del interior de la ventana |
+| inferior | Integer | → | Coordenada global inferior del interior de la ventana |
+| tipo | Integer | → | Tipo de la ventana |
+| titulo | Text | → | Título de la ventana |
+| casillaCerrar | Text | → | Método a llamar en caso de doble clic del menú Control o de clic en la casilla Cerrar |
| Resultado | Integer | ← | Número de referencia de la ventana |
@@ -166,4 +166,4 @@ Este ejemplo ilustra el mecanismo de “retraso” de mostrar ventanas bajo macO
| | |
| --- | --- |
| Número de comando | 153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
index 91018ab6df3eca..f431028c4582ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
@@ -5,15 +5,15 @@ slug: /commands/order-by-attribute
displayed_sidebar: docs
---
-**ORDER BY ATTRIBUTE** ( {*tabla* ;} *campoObjeto* ; *rutaAtrib* ; > o < {; *campoObjeto2* ; *rutaAtrib2* ; > o <2 ; ... ; *campoObjetoN* ; *rutaAtribN* ; > o
+**ORDER BY ATTRIBUTE** ( {*tabla* : Table ;} {; ...(*campoObjeto* : Field ; *rutaAtrib* : Text {; >,<})} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual ordenar los registros seleccionados, o tabla por defecto, si se omite |
-| campoObjeto | Object | → | Campo objeto que contiene el atributo de ordenación |
-| rutaAtrib | Text | → | Nombre o ruta del atributo en el que se define el orden para cada nivel |
-| > o < | Operador | → | Dirección de ordenación para cada nivel: > para ordenar en orden ascendente o < para ordenar en orden descendente |
-| * | Operador | → | Continuar bandera de orden |
+| tabla | Table | → | Tabla para la cual ordenar los registros seleccionados, o tabla por defecto, si se omite |
+| campoObjeto | Object | → | Campo objeto que contiene el atributo de ordenación |
+| rutaAtrib | Text | → | Nombre o ruta del atributo en el que se define el orden para cada nivel |
+| > o < | Operador | → | Dirección de ordenación para cada nivel: > para ordenar en orden ascendente o < para ordenar en orden descendente |
+| * | Operador | → | Continuar bandera de orden |
@@ -118,6 +118,6 @@ Los registros están en el siguiente orden:
| | |
| --- | --- |
| Número de comando | 1407 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
index 6bccf423b16004..8ff9da7760b4b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
@@ -5,13 +5,13 @@ slug: /commands/order-by-formula
displayed_sidebar: docs
---
-**ORDER BY FORMULA** ( *tabla* ; *formula* {; > o <}{; *formula2* ; > o <2 ; ... ; *formulaN* ; > o
+**ORDER BY FORMULA** ( *tabla* : Table ; *formula* : Expression {; >,<} {; ...(*formula* : Expression {; >,<})} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual ordenar la selección de registros |
-| formula | Expression | → | Fórmula de ordenación de los registros (puede ser de tipo Alfanumérico, Real, Entero, Entero largo, Fecha, Hora o Booleano) |
-| > o < | Operador | → | Sentido de la ordenación para cada nivel: > orden cresciente, u < orden decreciente |
+| tabla | Table | → | Tabla para la cual ordenar la selección de registros |
+| formula | Expression | → | Fórmula de ordenación de los registros (puede ser de tipo Alfanumérico, Real, Entero, Entero largo, Fecha, Hora o Booleano) |
+| > o < | Operador | → | Sentido de la ordenación para cada nivel: > orden cresciente, u < orden decreciente |
@@ -52,7 +52,7 @@ Este ejemplo ordena los registros de la tabla \[Personas\] en orden descendente,
| | |
| --- | --- |
| Número de comando | 300 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
index 20ae99637d1eea..d2bd1e64741c51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
@@ -5,14 +5,14 @@ slug: /commands/order-by
displayed_sidebar: docs
---
-**ORDER BY** ( {*tabla* ;}{ *unCampo* }{; > o < }{; *unCampo2* ; > o <2 ; ... ; *unCampoN* ; > o
+**ORDER BY** ( {*tabla* : Table ;}{; ...(*unField* : Field {; >,<}) } {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual ordenar los registros seleccionados o Tabla por defecto si se omite |
-| unField | Field | → | Campo en el cual efectuar la ordenación para cada nivel |
-| > o < | Operador | → | Sentido de la ordenación para cada nivel: > para orden ascendente o < para orden descendente |
-| * | Operador | → | Continua la bandera de ordenación |
+| tabla | Table | → | Tabla para la cual ordenar los registros seleccionados o Tabla por defecto si se omite |
+| unField | Field | → | Campo en el cual efectuar la ordenación para cada nivel |
+| > o < | Operador | → | Sentido de la ordenación para cada nivel: > para orden ascendente o < para orden descendente |
+| * | Operador | → | Continua la bandera de ordenación |
@@ -206,7 +206,7 @@ Cada botón llama al método de proyecto MULTINIVEL con un puntero al campo de l
| | |
| --- | --- |
| Número de comando | 49 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
index 8acc074f404f9e..6b4244281f3367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Outside call**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
index 8900e69d680ce3..a450e6dd60bc45 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
@@ -5,11 +5,12 @@ slug: /commands/page-break
displayed_sidebar: docs
---
-**PAGE BREAK** {( * )}
**PAGE BREAK** {( > )}
+**PAGE BREAK** ({ * })
**PAGE BREAK** ({ > })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | > |Operator| → | * Cancela la impresión iniciada por Print form, o > Manda un trabajo de impresión |
+| * | Operator | → | Cancel printing job started with Print form |
+| > | Operator | → | Force one printing job |
@@ -49,7 +50,7 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 6 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
index 73d6fa5e6d1f24..683073486f4fbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
@@ -5,12 +5,12 @@ slug: /commands/parse-formula
displayed_sidebar: docs
---
-**Parse formula** ( *formula* {; *opciones*}{; *mensajeError*} ) : Text
+**Parse formula** ( *formula* : Text {; *opciones* : Integer}{; *mensajeError* : Text} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| formula | Text | → | Fórmula de texto sin formato |
-| opciones | Integer | → | Instrucciones para entrada/salida |
+| formula | Text | → | Fórmula de texto sin formato |
+| opciones | Integer | → | Instrucciones para entrada/salida |
| mensajeError | Text | ← | Mensaje de error (cadena vacía si no hay error) |
| Resultado | Text | ← | Fórmula transformada (texto sin formato) |
@@ -111,6 +111,6 @@ Utilizando las tablas del **Ejemplo 1**:
| | |
| --- | --- |
| Número de comando | 1576 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
index 47b59d4fccaf25..450203332df5f5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
@@ -5,11 +5,11 @@ slug: /commands/pasteboard-data-size
displayed_sidebar: docs
---
-**Pasteboard data size** ( *tipoDatos* ) : Integer
+**Pasteboard data size** ( *tipoDatos* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoDatos | Text | → | Tipo de datos (4 caracteres) |
+| tipoDatos | Text | → | Tipo de datos (4 caracteres) |
| Resultado | Integer | ← | Tamaño (en bytes) de datos almacenados en el portapapeles o código de error |
@@ -97,7 +97,7 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 400 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
index fdb0fe50b58ea3..1b75cb0575e969 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
@@ -5,12 +5,12 @@ slug: /commands/path-to-object
displayed_sidebar: docs
---
-**Path to object** ( *Ruta* {; *tipoRuta*} ) : Object
+**Path to object** ( *Ruta* : Text {; *tipoRuta* : Integer} ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Ruta | Text | → | Nombre de la ruta |
-| tipoRuta | Integer | → | Tipo de sintaxis de ruta: Sistema (por defecto) o Posix |
+| Ruta | Text | → | Nombre de la ruta |
+| tipoRuta | Integer | → | Tipo de sintaxis de ruta: Sistema (por defecto) o Posix |
| Resultado | Object | ← | Objeto que describe los contenidos de la ruta |
@@ -180,6 +180,6 @@ Desea saber la cantidad de subcarpetas en una ruta:
| | |
| --- | --- |
| Número de comando | 1547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
index 10452562df2af2..6726cc78f58fc5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Tabla para la cual detener los índices |
+| laTable | Table | → | Tabla para la cual detener los índices |
@@ -52,6 +52,6 @@ Ejemplo de método de importación masivo de datos:
| | |
| --- | --- |
| Número de comando | 1293 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
index d22784eaef38a8..9fe1cc079f39c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
@@ -5,11 +5,11 @@ slug: /commands/pause-process
displayed_sidebar: docs
---
-**PAUSE PROCESS** ( *proceso* )
+**PAUSE PROCESS** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso |
+| proceso | Integer | → | Número de proceso |
@@ -37,6 +37,6 @@ Cuando se suspende la ejecución de un proceso, las ventanas que pertenecen a es
| | |
| --- | --- |
| Número de comando | 319 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
index 9624ac98b18bd2..6d10be78d596a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
@@ -5,13 +5,13 @@ slug: /commands/picture-codec-list
displayed_sidebar: docs
---
-**PICTURE CODEC LIST** ( *arrayCodec* {; *arrayNoms*}{; *} )
+**PICTURE CODEC LIST** ( *arrayCodec* : Text array {; *arrayNoms* : Text array}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| arrayCodec | Text array | ← | Identificadores de codecs de imágenes disponibles |
| arrayNoms | Text array | ← | Nombres de los codecs de imágenes |
-| * | Operador | → | Devuelve la lista de los codecs de lectura |
+| * | Operador | → | Devuelve la lista de los codecs de lectura |
@@ -38,6 +38,6 @@ Por defecto, si no pasa el parámetro *\**, el comando devuelve únicamente los
| | |
| --- | --- |
| Número de comando | 992 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
index 586cc3a698c353..83b53186c708a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
@@ -5,7 +5,7 @@ slug: /commands/picture-library-list
displayed_sidebar: docs
---
-**PICTURE LIBRARY LIST** ( *refsImag* ; *nomsImag* )
+**PICTURE LIBRARY LIST** ( *refsImag* : Integer array ; *nomsImag* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ El siguiente ejemplo exporta la librería de imágenes a un documento almacenado
| | |
| --- | --- |
| Número de comando | 564 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
index 54e8765755b661..a41cac081cad67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
@@ -5,11 +5,11 @@ slug: /commands/picture-properties
displayed_sidebar: docs
---
-**PICTURE PROPERTIES** ( *imagen* ; *largo* ; *altura* {; *hDesp* {; *vDesp* {; *modo*}}} )
+**PICTURE PROPERTIES** ( *imagen* : Picture ; *largo* : Real ; *altura* : Real {; *hDesp* : Integer {; *vDesp* : Integer {; *modo* : Integer}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen para la cual obtener la información |
+| imagen | Picture | → | Imagen para la cual obtener la información |
| largo | Real | ← | Largo de la imagen expresado en píxeles |
| altura | Real | ← | Alto de la imagen expresado en píxeles |
| hDesp | Integer | ← | Offset horizontal cuando la imagen se muestra en segundo plano |
@@ -35,6 +35,6 @@ Los parámetros *hDesp*, *vDesp*, y *modo* devuelven las posiciones horizontal y
| | |
| --- | --- |
| Número de comando | 457 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
index b2757efdcd8277..7a2e2e9e489b5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
@@ -5,11 +5,11 @@ slug: /commands/picture-size
displayed_sidebar: docs
---
-**Picture size** ( *imagen* ) : Integer
+**Picture size** ( *imagen* : Picture ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen para la cual devolver el tamaño en bytes |
+| imagen | Picture | → | Imagen para la cual devolver el tamaño en bytes |
| Resultado | Integer | ← | Tamaño en bytes de la imagen |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 356 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
index 4cffdc1d32d7b1..d715406730bf12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/picture-to-blob
displayed_sidebar: docs
---
-**PICTURE TO BLOB** ( *imagen* ; *blobImag* ; *codec* )
+**PICTURE TO BLOB** ( *imagen* : Picture ; *blobImag* : Blob ; *codec* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Campo o variable tipo imagen |
+| imagen | Picture | → | Campo o variable tipo imagen |
| blobImag | Blob | ← | BLOB para recibir la imagen convertida |
-| codec | Text | → | Identificación de codec de imagen |
+| codec | Text | → | Identificación de codec de imagen |
@@ -57,7 +57,7 @@ Desea convertir una imagen de un formato propietario a formato GIF y mostrarlo e
| | |
| --- | --- |
| Número de comando | 692 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md
index da3bc37bc153d7..047277d158f141 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/play.md
@@ -5,12 +5,12 @@ slug: /commands/play
displayed_sidebar: docs
---
-**PLAY** ( *nomObjeto* {; *canal*} )
+**PLAY** ( *nomObjeto* : Text {; *canal* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomObjeto | Text | → | Nombre de archivo de sonido o sonido sistemaCadena vacía para detener un sonido asincrónico |
-| canal | Integer | → | Si se pasa, canal de salida y ejecución asincrónico Si se omite, ejecución sincrónica |
+| nomObjeto | Text | → | Nombre de archivo de sonido o sonido sistemaCadena vacía para detener un sonido asincrónico |
+| canal | Integer | → | Si se pasa, canal de salida y ejecución asincrónico Si se omite, ejecución sincrónica |
@@ -61,6 +61,6 @@ El siguiente código de ejemplo reproduce un sonido del sistema en macOS:
| | |
| --- | --- |
| Número de comando | 290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
index 1c0425da03d691..74f51b9c1f748e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
@@ -5,7 +5,7 @@ slug: /commands/plugin-list
displayed_sidebar: docs
---
-**PLUGIN LIST** ( *arrayNumeros* ; *arrayNoms* )
+**PLUGIN LIST** ( *arrayNumeros* : Integer array ; *arrayNoms* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ PLUGIN LIST tiene en cuenta todos los plug-ins, incluyendo aquellos que están i
| | |
| --- | --- |
| Número de comando | 847 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
index e5298679bfc5f2..725201d042db4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
@@ -5,11 +5,11 @@ slug: /commands/pop-record
displayed_sidebar: docs
---
-**POP RECORD** {( *tabla* )}
+**POP RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual desapilar el registro actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual desapilar el registro actual o Tabla por defecto, si se omite |
@@ -39,7 +39,7 @@ El siguiente ejemplo recupera el registro de un cliente en la pila:
| | |
| --- | --- |
| Número de comando | 177 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
index 069b2be565795b..3b0bcd25016fc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/pop-up-menu
displayed_sidebar: docs
---
-**Pop up menu** ( *contenido* {; *porDefecto* {; *CoordX* ; *CoordY*}} ) : Integer
+**Pop up menu** ( *contenido* : Text {; *porDefecto* : Integer {; *CoordX* : Integer ; *CoordY* : Integer}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| contenido | Text | → | Definición del texto del menú |
-| porDefecto | Integer | → | Número del elemento seleccionado por defecto |
-| CoordX | Integer | → | Coordenada X de la esquina superior izquierda |
-| CoordY | Integer | → | Coordenada Y de la esquina superior izquierda |
+| contenido | Text | → | Definición del texto del menú |
+| porDefecto | Integer | → | Número del elemento seleccionado por defecto |
+| CoordX | Integer | → | Coordenada X de la esquina superior izquierda |
+| CoordY | Integer | → | Coordenada Y de la esquina superior izquierda |
| Resultado | Integer | ← | Número de elemento de menú seleccionado |
@@ -108,6 +108,6 @@ El siguiente es el menú pop-up tal como aparece en Windows (izquierda) y Macint
| | |
| --- | --- |
| Número de comando | 542 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md
index d11ead63664d72..f6514a70029f1d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/position.md
@@ -5,24 +5,17 @@ slug: /commands/position
displayed_sidebar: docs
---
-**Position** ( *buscar* ; *laCadena* {; *inicio* {; *longEncont*}}{; *} ) -> Resultado
-**Position** ( *buscar* ; *laCadena* ; *inicio* ; *longEncont* ; *opciones* ) -> Resultado
+**Position** ( *buscar* : Text ; *laText* : Text {; *inicio* : Integer {; *longEncont* : Integer}}{; *} ) -> Integer
**Position** ( *buscar* : Text ; *laText* : Text; *inicio* : Integer ; *longEncont* : Integer ; *opciones* : Integer ) -> Integer
+
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| buscar | Text | → | Cadena a buscar |
-| laText | Text | → | Cadena en la cual buscar |
-| inicio | Integer | → | Posición en la cadena donde comenzar la búsqueda |
+| buscar | Text | → | Cadena a buscar |
+| laText | Text | → | Cadena en la cual buscar |
+| inicio | Integer | → | Posición en la cadena donde comenzar la búsqueda |
| longEncont | Integer | ← | Longitud de la cadena encontrada |
-| * | Operador | → | Si se pasa: búsqueda diacrítica |
-| Resultado | Integer | ← | Posición de la primera ocurrencia |
-| Position ( buscar ; laCadena ; inicio ; longEncont ; opciones ) -> Resultado |
-| Parámetro | Tipo | Descripción |
-| buscar | Text | → | Cadena a buscar |
-| laText | Text | → | Cadena en la cual buscar |
-| inicio | Integer | → | Posición en la cadena donde comenzar la búsqueda |
-| longEncont | Integer | → | Longitud de la cadena encontrada |
-| opciones | Integer | → | Condición(es) de búsqueda |
+| * | Operador | → | Si se pasa: búsqueda diacrítica |
+| opciones | Integer | → | Condición(es) de búsqueda |
| Resultado | Integer | ← | Posición de la primera ocurrencia |
@@ -124,6 +117,6 @@ En el siguiente ejemplo, usted quiere encontrar todas las instancias de una cade
| | |
| --- | --- |
| Número de comando | 15 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
index 51221892300875..69933a5c312bf2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
@@ -5,14 +5,14 @@ slug: /commands/post-click
displayed_sidebar: docs
---
-**POST CLICK** ( *ratonX* ; *ratonY* {; *proceso*} {; *} )
+**POST CLICK** ( *ratonX* : Integer ; *ratonY* : Integer {; *proceso* : Integer} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ratonX | Integer | → | Coordenada horizontal |
-| ratonY | Integer | → | Coordenada vertical |
-| proceso | Integer | → | Número de referencia del proceso de destino o fila de atención de eventos de la aplicación, si se omite o si se pasa 0 |
-| * | Operator | → | Si se especifica, utilizar el sistema de coordenadas globales Si se omite, utilizar el sistema de coordenadas locales |
+| ratonX | Integer | → | Coordenada horizontal |
+| ratonY | Integer | → | Coordenada vertical |
+| proceso | Integer | → | Número de referencia del proceso de destino o fila de atención de eventos de la aplicación, si se omite o si se pasa 0 |
+| * | Operator | → | Si se especifica, utilizar el sistema de coordenadas globales Si se omite, utilizar el sistema de coordenadas locales |
@@ -34,6 +34,6 @@ Si especifica el parámetro proceso *proceso*, el clic se envía al proceso cuyo
| | |
| --- | --- |
| Número de comando | 466 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
index 589e0b289ff1f0..06b72daf688f2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
@@ -5,17 +5,17 @@ slug: /commands/post-event
displayed_sidebar: docs
---
-**POST EVENT** ( *que* ; *mensaje* ; *cuando* ; *ratonX* ; *ratonY* ; *modificadores* {; *proceso*} )
+**POST EVENT** ( *que* : Integer ; *mensaje* : Integer ; *cuando* : Integer ; *ratonX* : Integer ; *ratonY* : Integer ; *modificadores* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| que | Integer | → | Tipo de evento |
-| mensaje | Integer | → | Mensaje del evento |
-| cuando | Integer | → | Momento del evento expresado en tics |
-| ratonX | Integer | → | Coordenada horizontal del ratón |
-| ratonY | Integer | → | Coordenada vertical del ratón |
-| modificadores | Integer | → | Estado de las teclas Modificadores |
-| proceso | Integer | → | Número de referencia del proceso de destino o Fila de atención de los eventos de la aplicación, si se omite o si se pasa 0 |
+| que | Integer | → | Tipo de evento |
+| mensaje | Integer | → | Mensaje del evento |
+| cuando | Integer | → | Momento del evento expresado en tics |
+| ratonX | Integer | → | Coordenada horizontal del ratón |
+| ratonY | Integer | → | Coordenada vertical del ratón |
+| modificadores | Integer | → | Estado de las teclas Modificadores |
+| proceso | Integer | → | Número de referencia del proceso de destino o Fila de atención de los eventos de la aplicación, si se omite o si se pasa 0 |
@@ -54,6 +54,6 @@ Si pasa el parámetro *proceso*, el evento se envía al proceso cuyo número se
| | |
| --- | --- |
| Número de comando | 467 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
index 46bd47e2838362..665c3f28db12cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
@@ -5,13 +5,13 @@ slug: /commands/post-key
displayed_sidebar: docs
---
-**POST KEY** ( *codigo* {; *modificadores* {; *proceso*}} )
+**POST KEY** ( *codigo* : Integer {; *modificadores* : Integer {; *proceso* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| codigo | Integer | → | Código de un caracter o código de tecla de función |
-| modificadores | Integer | → | Estado de teclas Modificador |
-| proceso | Integer | → | Número de referencia del proceso de destino o Fila de atención de eventos de la aplicación, si se omite o si es igual a 0 |
+| codigo | Integer | → | Código de un caracter o código de tecla de función |
+| modificadores | Integer | → | Estado de teclas Modificador |
+| proceso | Integer | → | Número de referencia del proceso de destino o Fila de atención de eventos de la aplicación, si se omite o si es igual a 0 |
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [Process number](process-number.md "Process number").
| | |
| --- | --- |
| Número de comando | 465 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
index a0143e36a33591..062e4978887827 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
@@ -5,11 +5,11 @@ slug: /commands/post-outside-call
displayed_sidebar: docs
---
-**POST OUTSIDE CALL** ( *proceso* )
+**POST OUTSIDE CALL** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso |
+| proceso | Integer | → | Número de proceso |
@@ -50,7 +50,7 @@ Ver el ejemplo de la sección [Semáforo](semaphore.md).
| | |
| --- | --- |
| Número de comando | 329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
index 94f682e192ad42..4a58883fc83925 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
@@ -5,11 +5,11 @@ slug: /commands/previous-record
displayed_sidebar: docs
---
-**PREVIOUS RECORD** {( *tabla* )}
+**PREVIOUS RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual mover el registro anterior de la selección actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla en la cual mover el registro anterior de la selección actual o Tabla por defecto, si se omite |
@@ -32,7 +32,7 @@ Si PREVIOUS RECORD mueve el puntero del registro actual antes de la selección a
| | |
| --- | --- |
| Número de comando | 110 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
index 9e28ae5c31666b..7e7596743e6bb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
@@ -5,13 +5,13 @@ slug: /commands/print-label
displayed_sidebar: docs
---
-**PRINT LABEL** ( {*tabla* }{;}{ *doc* {; * | >}} )
+**PRINT LABEL** ( {*tabla* : Table }{;}{ *doc* : Text {; * | >}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a imprimir, o Tabla por defecto, si se omite |
-| doc | Text | → | Nombre del documento de etiquetas del disco |
-| * | > |Operator| → | * para suprimir las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
+| tabla | Table | → | Tabla a imprimir, o Tabla por defecto, si se omite |
+| doc | Text | → | Nombre del documento de etiquetas del disco |
+| * | > | Operator | → | * para suprimir las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
@@ -112,7 +112,7 @@ El siguiente ejemplo le permite al usuario efectuar una búsqueda en la tabla \[
| | |
| --- | --- |
| Número de comando | 39 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
index de0a60612878a6..e359245fc6b8dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
@@ -5,16 +5,16 @@ slug: /commands/print-object
displayed_sidebar: docs
---
-**Print object** ( {* ;} *objeto* {; *posX* {; *posY* {; *ancho* {; *alto*}}}} ) : Boolean
+**Print object** ( * ; *objeto* : Text {; *posX* : Integer {; *posY* : Integer {; *ancho* : Integer {; *alto* : Integer}}}} ) : Boolean
**Print object** ( *objeto* : Field, Variable {; *posX* : Integer {; *posY* : Integer {; *ancho* : Integer {; *alto* : Integer}}}} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de ojbeto (cadena). Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o variable (si se omite *) |
-| posX | Integer | → | Ubicación horizontal del objeto |
-| posY | Integer | → | Ubicación vertical del objeto |
-| ancho | Integer | → | Ancho del objeto (píxeles) |
-| alto | Integer | → | Alto del objeto (píxeles) |
+| * | Operador | → | Si se especifica, objeto es un nombre de ojbeto (cadena). Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o variable (si se omite *) |
+| posX | Integer | → | Ubicación horizontal del objeto |
+| posY | Integer | → | Ubicación vertical del objeto |
+| ancho | Integer | → | Ancho del objeto (píxeles) |
+| alto | Integer | → | Alto del objeto (píxeles) |
| Resultado | Boolean | ← | True = objeto impreso completamente, de lo contrario False |
@@ -101,6 +101,6 @@ Ejemplo de impresión de un list box completo:
| | |
| --- | --- |
| Número de comando | 1095 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
index 282c1f9c27d643..d2443b5968e64b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
@@ -5,11 +5,11 @@ slug: /commands/print-option-values
displayed_sidebar: docs
---
-**PRINT OPTION VALUES** ( *opcion* ; *arrayNoms* {; *info1Array* {; *info2Array*}} )
+**PRINT OPTION VALUES** ( *opcion* : Integer ; *arrayNoms* : Text array {; *info1Array* : Integer array {; *info2Array* : Integer array}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opcion | Integer | → | Número de opción |
+| opcion | Integer | → | Número de opción |
| arrayNoms | Text array | ← | Nombres de los valores |
| info1Array | Integer array | ← | Valores (1) de la opción |
| info2Array | Integer array | ← | Valores (2) de la opción |
@@ -59,6 +59,6 @@ Toda la información devuelta por estos comandos es suministrada por el sistema
| | |
| --- | --- |
| Número de comando | 785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
index 46aa33d87c33c5..380cbad5e07094 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
@@ -5,12 +5,12 @@ slug: /commands/print-record
displayed_sidebar: docs
---
-**PRINT RECORD** ( {*tabla*}{;}{* | >} )
+**PRINT RECORD** ( {*tabla* : Table}{;}{* | >} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual imprimir el registro actual o Tabla por defecto, si se omite |
-| * | > | Operador | → | * para suprimir las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
+| tabla | Table | → | Tabla para la cual imprimir el registro actual o Tabla por defecto, si se omite |
+| * | > | Operador | → | * para suprimir las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
@@ -67,6 +67,6 @@ El siguiente ejemplo imprime el mismo registro actual en dos formularios diferen
| | |
| --- | --- |
| Número de comando | 71 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
index ef2b7e723739b6..cb29a5168b3f8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
@@ -5,12 +5,12 @@ slug: /commands/print-selection
displayed_sidebar: docs
---
-**PRINT SELECTION** ( {*tabla*}{;}{* | >} )
+**PRINT SELECTION** ( {*tabla* : Table}{;}{* | >} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual imprimir la selección, o Tabla por defecto, si se omite |
-| * | > | Operador | → | * para eliminar las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
+| tabla | Table | → | Tabla para la cual imprimir la selección, o Tabla por defecto, si se omite |
+| * | > | Operador | → | * para eliminar las cajas de diálogo de impresión, o > para no reiniciar los parámetros de impresión |
@@ -67,7 +67,7 @@ El siguiente ejemplo selecciona todos los registros en la tabla \[Personas\]. El
| | |
| --- | --- |
| Número de comando | 60 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
index 797814d9a69dad..8ba0b7cf2757d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings-to-blob
displayed_sidebar: docs
---
-**Print settings to BLOB** ( *confImp* ) : Integer
+**Print settings to BLOB** ( *confImp* : Blob ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ Usted desea almacenar la configuración de impresión actual en el disco:
| | |
| --- | --- |
| Número de comando | 1433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
index f06bd2d5aec7db..f48c6be3df1336 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
@@ -5,11 +5,11 @@ slug: /commands/print-settings
displayed_sidebar: docs
---
-**PRINT SETTINGS** {( *dialType* )}
+**PRINT SETTINGS** ({ *dialType* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| dialType | Integer | → | Cajas de diálogo a mostrar |
+| dialType | Integer | → | Cajas de diálogo a mostrar |
@@ -46,7 +46,7 @@ Si el usuario hace clic en OK en ambas cajas de diálogo, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 106 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
index a0d0eaeadc6bf5..550e10bf7cf641 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
@@ -5,7 +5,7 @@ slug: /commands/printers-list
displayed_sidebar: docs
---
-**PRINTERS LIST** ( *arrayNoms* {; *arrayNomsAlt* {; *arrayModelos*}} )
+**PRINTERS LIST** ( *arrayNoms* : Text array {; *arrayNomsAlt* : Text array {; *arrayModelos* : Text array}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 789 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
index 699713b60bf60f..138b8524234fbb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ El siguiente ejemplo cambia la posición de los números de página en un inform
| | |
| --- | --- |
| Número de comando | 275 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
index 1cf0c6bdc279e4..716a0638e4cf63 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
@@ -5,13 +5,13 @@ slug: /commands/process-4d-tags
displayed_sidebar: docs
---
-**PROCESS 4D TAGS** ( *plantillaEntrada* ; *datosSalida* {; *param*}{; *param2* ; ... ; *paramN*} )
+**PROCESS 4D TAGS** ( *plantillaEntrada* : Text ; *datosSalida* : Text {; *...param* : Expression} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| plantillaEntrada | Text | → | Datos que contiene las etiquetas a tratar |
+| plantillaEntrada | Text | → | Datos que contiene las etiquetas a tratar |
| datosSalida | Text | ← | Datos procesados |
-| param | Expression | → | Parámetros pasados a la plantilla en ejecución |
+| param | Expression | → | Parámetros pasados a la plantilla en ejecución |
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número de comando | 816 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
index 7d9c51bca602ef..19269c5d040814 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este estado ocurrirá muy raramente. Los procesos suelen detenerse antes de que
| | |
| --- | --- |
| Número de comando | 672 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
index 80fe394fd82563..af187033460910 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
@@ -5,11 +5,11 @@ slug: /commands/process-state
displayed_sidebar: docs
---
-**Process state** ( *proceso* ) : Integer
+**Process state** ( *proceso* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso |
+| proceso | Integer | → | Número de proceso |
| Resultado | Integer | ← | Estado del proceso |
@@ -65,6 +65,6 @@ El siguiente ejemplo coloca el nombre y número de referencia para cada proceso
| | |
| --- | --- |
| Número de comando | 330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
index 81e381022f78ce..e847a35fcda966 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
@@ -5,11 +5,11 @@ slug: /commands/push-record
displayed_sidebar: docs
---
-**PUSH RECORD** {( *tabla* )}
+**PUSH RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual apilar el registro actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual apilar el registro actual o Tabla por defecto, si se omite |
@@ -39,6 +39,6 @@ El siguiente ejemplo apila el registro de un cliente:
| | |
| --- | --- |
| Número de comando | 176 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
index f6a247ec470dcc..511f4e0dcc379d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
@@ -5,12 +5,12 @@ slug: /commands/qr-blob-to-report
displayed_sidebar: docs
---
-**QR BLOB TO REPORT** ( *area* ; *BLOB* )
+**QR BLOB TO REPORT** ( *area* : Integer ; *BLOB* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| Blob | Blob | → | BLOB que contiene el informe |
+| area | Integer | → | Referencia del área |
+| Blob | Blob | → | BLOB que contiene el informe |
@@ -49,7 +49,7 @@ La siguiente instrucción recupera el informe rápido almacenado en Campo4 y lo
| | |
| --- | --- |
| Número de comando | 771 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
index 48f6154be66dbd..85ea936c267502 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
@@ -5,11 +5,11 @@ slug: /commands/qr-count-columns
displayed_sidebar: docs
---
-**QR Count columns** ( *area* ) : Integer
+**QR Count columns** ( *area* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Resultado | Integer | ← | Número de columnas en el área |
@@ -39,7 +39,7 @@ El siguiente código permite añadir una columna adicional a la derecha de la ú
| | |
| --- | --- |
| Número de comando | 764 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
index c247898cef0f9d..ffe088dfc45d2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-delete-column
displayed_sidebar: docs
---
-**QR DELETE COLUMN** ( *area* ; *numColumna* )
+**QR DELETE COLUMN** ( *area* : Integer ; *numColumna* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
@@ -40,7 +40,7 @@ El siguiente ejemplo se asegura de que el informe sea listado y borra la tercera
| | |
| --- | --- |
| Número de comando | 749 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
index f036786d0cfb12..42ca720b8d5f89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-delete-offscreen-area
displayed_sidebar: docs
---
-**QR DELETE OFFSCREEN AREA** ( *area* )
+**QR DELETE OFFSCREEN AREA** ( *area* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área a borrar |
+| area | Integer | → | Referencia del área a borrar |
@@ -28,7 +28,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 754 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
index 85118a0076cead..af224333c3324e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-execute-command
displayed_sidebar: docs
---
-**QR EXECUTE COMMAND** ( *area* ; *comando* )
+**QR EXECUTE COMMAND** ( *area* : Integer ; *comando* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| comando | Integer | → | Comando de menú a ejecutar |
+| area | Integer | → | Referencia del área |
+| comando | Integer | → | Comando de menú a ejecutar |
@@ -43,7 +43,7 @@ Si pasa un número de *comando* incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 791 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
index d6eae4422d8fd3..93a47c45192389 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-find-column
displayed_sidebar: docs
---
-**QR Find column** ( *area* ; *expresion* ) : Integer
+**QR Find column** ( *area* : Integer ; *expresion* : Text, Pointer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| expresion | Text, Pointer | → | Objeto de columna |
+| area | Integer | → | Referencia del área |
+| expresion | Text, Pointer | → | Objeto de columna |
| Resultado | Integer | ← | Número de columna |
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número de comando | 776 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
index 41ae5b7ea4843b..dd42722cc52a0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-area-property
displayed_sidebar: docs
---
-**QR Get area property** ( *area* ; *propiedad* ) : Integer
+**QR Get area property** ( *area* : Integer ; *propiedad* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| propiedad | Integer | → | Elemento de interfaz |
+| area | Integer | → | Referencia del área |
+| propiedad | Integer | → | Elemento de interfaz |
| Resultado | Integer | ← | 1 = mostrado, 0 = oculto |
@@ -40,7 +40,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 795 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
index 4dfe91de063918..287fc217926811 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-borders
displayed_sidebar: docs
---
-**QR GET BORDERS** ( *area* ; *columna* ; *linea* ; *borde* ; *grueso* {; *color*} )
+**QR GET BORDERS** ( *area* : Integer ; *columna* : Integer ; *linea* : Integer ; *borde* : Integer ; *grueso* : Integer {; *color* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| columna | Integer | → | Número de columna |
-| linea | Integer | → | Número de línea |
-| borde | Integer | → | Valor del borde |
+| area | Integer | → | Referencia del área |
+| columna | Integer | → | Número de columna |
+| linea | Integer | → | Número de línea |
+| borde | Integer | → | Valor del borde |
| grueso | Integer | ← | Grueso de línea |
| color | Integer | ← | Color del borde |
@@ -75,7 +75,7 @@ Si el parámetro *area* es incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 798 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
index 92c8ac525b7f44..a43a1542417126 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-command-status
displayed_sidebar: docs
---
-**QR Get command status** ( *area* ; *comando* {; *valor*} ) : Integer
+**QR Get command status** ( *area* : Integer ; *comando* : Integer {; *valor* : Integer, Text} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| comando | Integer | → | Número del comando |
+| area | Integer | → | Referencia del área |
+| comando | Integer | → | Número del comando |
| valor | Integer, Text | ← | Valor del subelemento seleccionado |
| Resultado | Integer | ← | Estado del comando |
@@ -42,7 +42,7 @@ Si el parámetro *comando* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 792 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
index 348f38e20c6ed3..40c7b8d59e7516 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-destination
displayed_sidebar: docs
---
-**QR GET DESTINATION** ( *area* ; *tipo* {; *especificos*} )
+**QR GET DESTINATION** ( *area* : Integer ; *tipo* : Integer {; *especificos* : Text, Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| tipo | Integer | ← | Tipo de informe |
| especificos | Text, Variable | ← | Específicos asociados al tipo de salida |
@@ -42,7 +42,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 756 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
index 56b1b193845993..2328b8fe300924 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-document-property
displayed_sidebar: docs
---
-**QR Get document property** ( *area* ; *propiedad* ) : Integer
+**QR Get document property** ( *area* : Integer ; *propiedad* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| propiedad | Integer | → | 1 = Diálogo de impresión, 2 = Unidad del documento |
+| area | Integer | → | Referencia del área |
+| propiedad | Integer | → | 1 = Diálogo de impresión, 2 = Unidad del documento |
| Resultado | Integer | ← | Valor de la propiedad |
@@ -51,6 +51,6 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 773 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
index 743da2a5a97558..9042e43eaa3369 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-drop-column
displayed_sidebar: docs
---
-**QR Get drop column** ( *area* ) : Integer
+**QR Get drop column** ( *area* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Resultado | Integer | ← | Espacio de soltar |
@@ -32,7 +32,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 747 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
index b003a913e6054c..c97b2a04a7d39e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-header-and-footer
displayed_sidebar: docs
---
-**QR GET HEADER AND FOOTER** ( *area* ; *selector* ; *tituloIzq* ; *tituloCent* ; *tituloDer* ; *alto* {; *imagen* {; *alinImag*}} )
+**QR GET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *tituloIzq* : Text ; *tituloCent* : Text ; *tituloDer* : Text ; *alto* : Integer {; *imagen* : Picture {; *alinImag* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| selector | Integer | → | 1 = Encabezado, 2 = Pie de página |
+| area | Integer | → | Referencia del área |
+| selector | Integer | → | 1 = Encabezado, 2 = Pie de página |
| tituloIzq | Text | ← | Texto mostrado a la izquierda |
| tituloCent | Text | ← | Texto mostrado en el centro |
| tituloDer | Text | ← | Texto mostrado a la derecha |
@@ -72,7 +72,7 @@ El siguiente código recupera el contenido y la altura del título del encabezad
| | |
| --- | --- |
| Número de comando | 775 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
index 31dbc1b37e2905..4512feb7d3590a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-html-template
displayed_sidebar: docs
---
-**QR Get HTML template** ( *area* ) : Text
+**QR Get HTML template** ( *area* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Resultado | Text | ← | Código HTML utilizado como plantilla |
@@ -31,7 +31,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 751 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
index 3adfe2c827a3fe..91188d984ec9ac 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-column
displayed_sidebar: docs
---
-**QR GET INFO COLUMN** ( *area* ; *numColumna* ; *titulo* ; *objeto* ; *oculta* ; *tamaño* ; *valoresRepetidos* ; *formato* {; *varResultado*} )
+**QR GET INFO COLUMN** ( *area* : Integer ; *numColumna* : Integer ; *titulo* : Text ; *objeto* : Text ; *oculta* : Integer ; *tamaño* : Integer ; *valoresRepetidos* : Integer ; *formato* : Text {; *varResultado* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
| titulo | Text | ← | Título de la columna |
| objeto | Text | ← | Objeto asignado a la columna |
| oculta | Integer | ← | 0 = visible, 1 = oculto |
@@ -121,7 +121,7 @@ Puede escribir:
| | |
| --- | --- |
| Número de comando | 766 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
index f31f2aac4b58a9..feb125000ce551 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-row
displayed_sidebar: docs
---
-**QR Get info row** ( *area* ; *linea* ) : Integer
+**QR Get info row** ( *area* : Integer ; *linea* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área creada |
-| linea | Integer | → | Línea |
+| area | Integer | → | Referencia del área creada |
+| linea | Integer | → | Línea |
| Resultado | Integer | ← | 0 = visible, 1 = oculta |
@@ -44,7 +44,7 @@ Si el parámetro *linea* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 769 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
index c11e2eb0688b35..3c8547c971bc06 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-kind
displayed_sidebar: docs
---
-**QR Get report kind** ( *area* ) : Integer
+**QR Get report kind** ( *area* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Resultado | Integer | ← | Tipo del informe |
@@ -40,7 +40,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 755 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
index ae64e9927eb56e..ed3c6b0c51f31d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-table
displayed_sidebar: docs
---
-**QR Get report table** ( *area* ) : Integer
+**QR Get report table** ( *area* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Resultado | Integer | ← | Número de tabla |
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 758 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
index ab32428efac66b..3ff79ec159db61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-selection
displayed_sidebar: docs
---
-**QR GET SELECTION** ( *area* ; *izquierda* ; *superior* {; *derecha* {; *inferior*}} )
+**QR GET SELECTION** ( *area* : Integer ; *izquierda* : Integer ; *superior* : Integer {; *derecha* : Integer {; *inferior* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| izquierda | Integer | ← | Límite izquierdo |
| superior | Integer | ← | Límite superior |
| derecha | Integer | ← | Límite derecho |
@@ -44,7 +44,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 793 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
index 4f99c3ba33eedb..a4b8de088ac4c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-sorts
displayed_sidebar: docs
---
-**QR GET SORTS** ( *area* ; *aColumnas* ; *aOrden* )
+**QR GET SORTS** ( *area* : Integer ; *aColumnas* : Real array ; *aOrden* : Real array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| aColumnas | Real array | ← | Columnas ordenadas |
| aOrden | Real array | ← | Sentido de ordenación |
@@ -41,7 +41,7 @@ Si pasa un número de area inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 753 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
index b591711f3c9052..6f96213ebb6044 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-text-property
displayed_sidebar: docs
---
-**QR Get text property** ( *area* ; *numColumna* ; *numLinea* ; *propiedad* ) : any
+**QR Get text property** ( *area* : Integer ; *numColumna* : Integer ; *numLinea* : Integer ; *propiedad* : Integer ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| numLinea | Integer | → | Número de línea |
-| propiedad | Integer | → | Número de la propiedad |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| numLinea | Integer | → | Número de línea |
+| propiedad | Integer | → | Número de la propiedad |
| Resultado | Text, Integer | ← | Valor de la propiedad seleccionada |
@@ -71,7 +71,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9854
| | |
| --- | --- |
| Número de comando | 760 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
index 6c61d3ba0a5050..0914ea79946c7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
@@ -5,13 +5,13 @@ slug: /commands/qr-get-totals-data
displayed_sidebar: docs
---
-**QR GET TOTALS DATA** ( *area* ; *numColumna* ; *numRuptura* ; *operador* ; *texto* )
+**QR GET TOTALS DATA** ( *area* : Integer ; *numColumna* : Integer ; *numRuptura* : Integer ; *operador* : Integer ; *texto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| numRuptura | Integer | → | Número de ruptura |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| numRuptura | Integer | → | Número de ruptura |
| operador | Integer | ← | Operador de la celda |
| texto | Text | ← | Contenido de la celda |
@@ -77,7 +77,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 768 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
index d66f4fe42a4b93..ecf9419d719d2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-totals-spacing
displayed_sidebar: docs
---
-**QR GET TOTALS SPACING** ( *area* ; *subtotal* ; *valor* )
+**QR GET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| subtotal | Integer | → | Número subtotal |
+| area | Integer | → | Referencia del área |
+| subtotal | Integer | → | Número subtotal |
| valor | Integer | ← | 0=sin espacio, 32000=inserta un salto de página, >0=espacio añadido en la parte superior del nivel de ruptura, <0=aumento proporcional |
@@ -42,7 +42,7 @@ Si el parámetro *subtotal* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
index f44e1be7bcf479..9c6ca54f1e22dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-insert-column
displayed_sidebar: docs
---
-**QR INSERT COLUMN** ( *area* ; *numColumna* ; *objeto* )
+**QR INSERT COLUMN** ( *area* : Integer ; *numColumna* : Integer ; *objeto* : Field, Variable, Pointer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| objeto | Field, Variable, Pointer | → | Objeto a insertar en la columna |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| objeto | Field, Variable, Pointer | → | Objeto a insertar en la columna |
@@ -44,7 +44,7 @@ La siguiente instrucción inserta (o crea) una primera columna en el área MiAre
| | |
| --- | --- |
| Número de comando | 748 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
index c19c9e5982dc5a..9490bbf27eab0c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-move-column
displayed_sidebar: docs
---
-**QR MOVE COLUMN** ( *area* ; *numColumna* ; *nuevaPosicion* )
+**QR MOVE COLUMN** ( *area* : Integer ; *numColumna* : Integer ; *nuevaPosicion* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de la columna |
-| nuevaPosicion | Integer | → | Nueva posición de la columna |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de la columna |
+| nuevaPosicion | Integer | → | Nueva posición de la columna |
@@ -45,6 +45,6 @@ El resultado es:
| | |
| --- | --- |
| Número de comando | 1325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
index 91900c6479342b..87ca1412dff023 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-new-area
displayed_sidebar: docs
---
-**QR NEW AREA** ( *ptr* )
+**QR NEW AREA** ( *ptr* : Pointer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ptr | Pointer | → | Puntero a una variable |
+| ptr | Pointer | → | Puntero a una variable |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1320 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
index baf6bfa22117fd..e4532113a8828a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 735 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
index 8b1c0b2c8cc360..93bfc92dcd8b9f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-on-command
displayed_sidebar: docs
---
-**QR ON COMMAND** ( *area* ; *nomMetodo* )
+**QR ON COMMAND** ( *area* : Integer ; *nomMetodo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| nomMetodo | Text | → | Nombre del método a llamar |
+| area | Integer | → | Referencia del área |
+| nomMetodo | Text | → | Nombre del método a llamar |
@@ -48,7 +48,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 790 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
index 7b41826d910037..3b88f261bedcb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
@@ -5,11 +5,11 @@ slug: /commands/qr-report-to-blob
displayed_sidebar: docs
---
-**QR REPORT TO BLOB** ( *area* ; *BLOB* )
+**QR REPORT TO BLOB** ( *area* : Integer ; *BLOB* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
+| area | Integer | → | Referencia del área |
| Blob | Blob | ← | Blob a recibir el informe rápido |
@@ -37,7 +37,7 @@ La siguiente instrucción asigna el informe rápido almacenado en el área MiAre
| | |
| --- | --- |
| Número de comando | 770 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
index 292230917bef42..02c57206687d8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
@@ -5,14 +5,14 @@ slug: /commands/qr-report
displayed_sidebar: docs
---
-**QR REPORT** ( {*tabla* ;} *doc* {; *nomMetodo*}{; *} )
+**QR REPORT** ( {*tabla* : Table ;} *doc* : Text {; *nomMetodo* : Text}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a utilizar para el informe o tabla por defecto si se omite |
-| doc | Text | → | Documento de informe rápido a cargar |
-| nomMetodo | Text | → | Nombre del método a llamar |
-| * | Operador | → | Eliminación de las cajas de diálogo de impresión |
+| tabla | Table | → | Tabla a utilizar para el informe o tabla por defecto si se omite |
+| doc | Text | → | Documento de informe rápido a cargar |
+| nomMetodo | Text | → | Nombre del método a llamar |
+| * | Operador | → | Eliminación de las cajas de diálogo de impresión |
@@ -136,7 +136,7 @@ El método myCallbackMeth convierte el informe cuando se genera:
| | |
| --- | --- |
| Número de comando | 197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
index 7a9a74cb275a9b..f719ada2c70b21 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
@@ -5,11 +5,11 @@ slug: /commands/qr-run
displayed_sidebar: docs
---
-**QR RUN** ( *area* )
+**QR RUN** ( *area* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área a ejecutar |
+| area | Integer | → | Referencia del área a ejecutar |
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 746 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
index 4a877a4a796768..9f21c5352f9c57 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-area-property
displayed_sidebar: docs
---
-**QR SET AREA PROPERTY** ( *area* ; *propiedad* ; *valor* )
+**QR SET AREA PROPERTY** ( *area* : Integer ; *propiedad* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| propiedad | Integer | → | Elemento de interfaz |
-| valor | Integer | → | 1 = mostrado, 0 = oculto |
+| area | Integer | → | Referencia del área |
+| propiedad | Integer | → | Elemento de interfaz |
+| valor | Integer | → | 1 = mostrado, 0 = oculto |
@@ -39,7 +39,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 796 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
index ed7e7a612f111b..7f976c361755a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
@@ -5,16 +5,16 @@ slug: /commands/qr-set-borders
displayed_sidebar: docs
---
-**QR SET BORDERS** ( *area* ; *columna* ; *linea* ; *borde* ; *grueso* {; *color*} )
+**QR SET BORDERS** ( *area* : Integer ; *columna* : Integer ; *linea* : Integer ; *borde* : Integer ; *grueso* : Integer {; *color* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| columna | Integer | → | Número de columna |
-| linea | Integer | → | Número de línea |
-| borde | Integer | → | Valor del borde compuesto |
-| grueso | Integer | → | Ancho de la línea |
-| color | Integer | → | Color del borde |
+| area | Integer | → | Referencia del área |
+| columna | Integer | → | Número de columna |
+| linea | Integer | → | Número de línea |
+| borde | Integer | → | Valor del borde compuesto |
+| grueso | Integer | → | Ancho de la línea |
+| color | Integer | → | Color del borde |
@@ -78,7 +78,7 @@ Si el parámetro *ancho* es incorrecto, se genera el error -9855.
| | |
| --- | --- |
| Número de comando | 797 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
index 375724a71abc7e..de372a3cc2f4e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-destination
displayed_sidebar: docs
---
-**QR SET DESTINATION** ( *area* ; *tipo* {; *especificos*} )
+**QR SET DESTINATION** ( *area* : Integer ; *tipo* : Integer {; *especificos* : Text, Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| tipo | Integer | → | Tipo de informe |
-| especificos | Text, Variable | → | Específicos del tipo de salida |
+| area | Integer | → | Referencia del área |
+| tipo | Integer | → | Tipo de informe |
+| especificos | Text, Variable | → | Específicos del tipo de salida |
@@ -55,7 +55,7 @@ El siguiente código define el archivo texto Midoc.txt como tipo de destino del
| | |
| --- | --- |
| Número de comando | 745 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
index a57b3a1a79b3ff..ea1beb5e23c012 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-document-property
displayed_sidebar: docs
---
-**QR SET DOCUMENT PROPERTY** ( *area* ; *propiedad* ; *valor* )
+**QR SET DOCUMENT PROPERTY** ( *area* : Integer ; *propiedad* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| propiedad | Integer | → | 1 = Diálogo de impresión, 2 = Unidad del documento |
-| valor | Integer | → | Valor de la propiedad |
+| area | Integer | → | Referencia del área |
+| propiedad | Integer | → | 1 = Diálogo de impresión, 2 = Unidad del documento |
+| valor | Integer | → | Valor de la propiedad |
@@ -51,7 +51,7 @@ Si pasa un valor incorrecto en *propiedad* o *valor*, se genera el error corresp
| | |
| --- | --- |
| Número de comando | 772 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
index 095afa8d53f0e6..77497c4844ae99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-header-and-footer
displayed_sidebar: docs
---
-**QR SET HEADER AND FOOTER** ( *area* ; *selector* ; *tituloIzq* ; *tituloCent* ; *tituloDer* ; *altura* {; *imagen* {; *alinImag*}} )
+**QR SET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *tituloIzq* : Text ; *tituloCent* : Text ; *tituloDer* : Text ; *altura* : Integer {; *imagen* : Picture {; *alinImag* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| selector | Integer | → | 1 = Encabezado, 2 = Pie de página |
-| tituloIzq | Text | → | Texto mostrado a la izquierda |
-| tituloCent | Text | → | Texto mostrado en el centro |
-| tituloDer | Text | → | Texto mostrado a la derecha |
-| altura | Integer | → | Altura del encabezado o pie de página |
-| imagen | Picture | → | Imagen a mostrar |
-| alinImag | Integer | → | Atributo de alineación de la imagen |
+| area | Integer | → | Referencia del área |
+| selector | Integer | → | 1 = Encabezado, 2 = Pie de página |
+| tituloIzq | Text | → | Texto mostrado a la izquierda |
+| tituloCent | Text | → | Texto mostrado en el centro |
+| tituloDer | Text | → | Texto mostrado a la derecha |
+| altura | Integer | → | Altura del encabezado o pie de página |
+| imagen | Picture | → | Imagen a mostrar |
+| alinImag | Integer | → | Atributo de alineación de la imagen |
@@ -61,7 +61,7 @@ La siguiente instrucción coloca el título “Título del centro” en el encab
| | |
| --- | --- |
| Número de comando | 774 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
index d6696d9f932d87..14720822435c3d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-html-template
displayed_sidebar: docs
---
-**QR SET HTML TEMPLATE** ( *area* ; *plantilla* )
+**QR SET HTML TEMPLATE** ( *area* : Integer ; *plantilla* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| plantilla | Text | → | Código de la plantilla HTML |
+| area | Integer | → | Referencia del área |
+| plantilla | Text | → | Código de la plantilla HTML |
@@ -79,7 +79,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 750 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
index 4f28a2f9e93a6f..6c059f8d3a4d55 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-info-column
displayed_sidebar: docs
---
-**QR SET INFO COLUMN** ( *area* ; *numColumna* ; *titulo* ; *objeto* ; *oculta* ; *tamaño* ; *valoresRepetidos* ; *formato* )
+**QR SET INFO COLUMN** ( *area* : Integer ; *numColumna* : Integer ; *titulo* : Text ; *objeto* : Field, Variable ; *oculta* : Integer ; *tamaño* : Integer ; *valoresRepetidos* : Integer ; *formato* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| titulo | Text | → | Título de la columna |
-| objeto | Field, Variable | → | Objeto asignado a la columna |
-| oculta | Integer | → | 0 = visible, 1 = oculto |
-| tamaño | Integer | → | Largo de la columna |
-| valoresRepetidos | Integer | → | 0 = no repetidos, 1 = repetido |
-| formato | Text | → | Formato de visualización |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| titulo | Text | → | Título de la columna |
+| objeto | Field, Variable | → | Objeto asignado a la columna |
+| oculta | Integer | → | 0 = visible, 1 = oculto |
+| tamaño | Integer | → | Largo de la columna |
+| valoresRepetidos | Integer | → | 0 = no repetidos, 1 = repetido |
+| formato | Text | → | Formato de visualización |
@@ -115,7 +115,7 @@ Si el parámetro *numColumna* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 765 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
index 8a9abcad210a9a..2795642111629f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-info-row
displayed_sidebar: docs
---
-**QR SET INFO ROW** ( *area* ; *linea* ; *oculta* )
+**QR SET INFO ROW** ( *area* : Integer ; *linea* : Integer ; *oculta* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| linea | Integer | → | Línea |
-| oculta | Integer | → | 0 = visible, 1 = oculta |
+| area | Integer | → | Referencia del área |
+| linea | Integer | → | Línea |
+| oculta | Integer | → | 0 = visible, 1 = oculta |
@@ -55,7 +55,7 @@ La siguiente instrucción oculta el contenido de la línea detalle:
| | |
| --- | --- |
| Número de comando | 763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
index 563b9129ba18b6..dfd7ca8cb2af6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-kind
displayed_sidebar: docs
---
-**QR SET REPORT KIND** ( *area* ; *tipo* )
+**QR SET REPORT KIND** ( *area* : Integer ; *tipo* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| tipo | Integer | → | Tipo del informe |
+| area | Integer | → | Referencia del área |
+| tipo | Integer | → | Tipo del informe |
@@ -44,7 +44,7 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 738 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
index 63acb11b21c433..748549fa48f7f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-table
displayed_sidebar: docs
---
-**QR SET REPORT TABLE** ( *area* ; *tabla* )
+**QR SET REPORT TABLE** ( *area* : Integer ; *tabla* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| tabla | Integer | → | Número de tabla |
+| area | Integer | → | Referencia del área |
+| tabla | Integer | → | Número de tabla |
@@ -32,7 +32,7 @@ Si el parámetro *tabla* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 757 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
index 2d9a92c5387780..433ea8d8e4e2d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-selection
displayed_sidebar: docs
---
-**QR SET SELECTION** ( *area* ; *izquierda* ; *superior* {; *derecha* {; *inferior*}} )
+**QR SET SELECTION** ( *area* : Integer ; *izquierda* : Integer ; *superior* : Integer {; *derecha* : Integer {; *inferior* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| izquierda | Integer | → | Límite izquierdo |
-| superior | Integer | → | Límite superior |
-| derecha | Integer | → | Límite derecho |
-| inferior | Integer | → | Límite inferior |
+| area | Integer | → | Referencia del área |
+| izquierda | Integer | → | Límite izquierdo |
+| superior | Integer | → | Límite superior |
+| derecha | Integer | → | Límite derecho |
+| inferior | Integer | → | Límite inferior |
@@ -41,7 +41,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 794 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
index e151fbbe52e7c4..8c95b0f14e0a9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-sorts
displayed_sidebar: docs
---
-**QR SET SORTS** ( *area* ; *aColumnas* {; *aOrden*} )
+**QR SET SORTS** ( *area* : Integer ; *aColumnas* : Real array {; *aOrden* : Real array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| aColumnas | Real array | → | Columnas |
-| aOrden | Real array | → | Sentido de ordenación |
+| area | Integer | → | Referencia del área |
+| aColumnas | Real array | → | Columnas |
+| aOrden | Real array | → | Sentido de ordenación |
@@ -51,7 +51,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 752 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
index bb3b2ee63d35d8..778d0cb699ef64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-text-property
displayed_sidebar: docs
---
-**QR SET TEXT PROPERTY** ( *area* ; *numColumna* ; *numLinea* ; *propiedad* ; *valor* )
+**QR SET TEXT PROPERTY** ( *area* : Integer ; *numColumna* : Integer ; *numLinea* : Integer ; *propiedad* : Integer ; *valor* : Integer, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| numLinea | Integer | → | Número de línea |
-| propiedad | Integer | → | Número de propiedad |
-| valor | Integer, Text | → | Valor de la propiedad seleccionada |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| numLinea | Integer | → | Número de línea |
+| propiedad | Integer | → | Número de propiedad |
+| valor | Integer, Text | → | Valor de la propiedad seleccionada |
@@ -90,7 +90,7 @@ Este método define varios atributos para el título de la primera columna:
| | |
| --- | --- |
| Número de comando | 759 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
index f34a58e984cd46..e99c61b67c7d1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
@@ -5,14 +5,14 @@ slug: /commands/qr-set-totals-data
displayed_sidebar: docs
---
-**QR SET TOTALS DATA** ( *area* ; *numColumna* ; *numRuptura* ; operador | valor )
+**QR SET TOTALS DATA** ( *area* : Integer ; *numColumna* : Integer ; *numRuptura* : Integer ; operador | valor )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| numColumna | Integer | → | Número de columna |
-| numRuptura | Integer | → | Número de ruptura |
-| operador | valor | Entero largo, Cadena | → | Operador para la celda o contenido de la celda |
+| area | Integer | → | Referencia del área |
+| numColumna | Integer | → | Número de columna |
+| numRuptura | Integer | → | Número de ruptura |
+| operador | valor | Entero largo, Cadena | → | Operador para la celda o contenido de la celda |
@@ -101,7 +101,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 767 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
index 65273a18c0eb3f..eca4c4c24d7faa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-totals-spacing
displayed_sidebar: docs
---
-**QR SET TOTALS SPACING** ( *area* ; *subtotal* ; *valor* )
+**QR SET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *valor* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| area | Integer | → | Referencia del área |
-| subtotal | Integer | → | Número del subtotal |
-| valor | Integer | → | 0=sin espacio, 32000=inserta un salto de página, >0=espacio añadido en la parte superior del nivel de ruptura, <0=aumento proporcional |
+| area | Integer | → | Referencia del área |
+| subtotal | Integer | → | Número del subtotal |
+| valor | Integer | → | 0=sin espacio, 32000=inserta un salto de página, >0=espacio añadido en la parte superior del nivel de ruptura, <0=aumento proporcional |
@@ -43,7 +43,7 @@ Si el parámetro *subtotal*, es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
index b2559925b25235..dad479eae5d2a7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-by-attribute
displayed_sidebar: docs
---
-**QUERY BY ATTRIBUTE** ( {*tabla*}{;}{*opConj* ;} *campoObjeto* ; *rutaAtributo* ; *opBusq* ; *valor* {; *} )
+**QUERY BY ATTRIBUTE** ( {*tabla* : Table}{;}{*opConj* : Operator ;} *campoObjeto* : Field ; *rutaAtributo* : Text ; *opBusq* : Text, Operator ; *valor* : Text, Real, Date, Time {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual devolver una selección de registros o Tabla por defecto si se omite |
-| opConj | Operator | → | Operador de conjunción a usar para combinar varias búsquedas (si las hay) |
-| campoObjeto | Field | → | Campo objeto cuyos atributos utilizar para la búsqueda |
-| rutaAtributo | Text | → | Nombre o ruta de atributo |
-| opBusq | Text, Operator | → | Operador de búsqueda (comparador) |
-| valor | Text, Number, Date, Time | → | Valor a comparar |
-| * | Operator | → | Espera de ejecución de la búsqueda |
+| tabla | Table | → | Tabla para la cual devolver una selección de registros o Tabla por defecto si se omite |
+| opConj | Operator | → | Operador de conjunción ausar para combinar varias búsquedas (si las hay) |
+| campoObjeto | Field | → | Campo objeto cuyos atributos utilizar para la búsqueda |
+| rutaAtributo | Text | → | Nombre o ruta de atributo |
+| opBusq | Text, Operator | → | Operador de búsqueda (comparador) |
+| valor | Text, Real, Date, Time | → | Valor a comparar |
+| * | Operador | → | Espera de ejecución de la búsqueda |
@@ -410,7 +410,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 1331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
index 6e3eaceeeb9a12..dd6a4984b93c7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-example
displayed_sidebar: docs
---
-**QUERY BY EXAMPLE** ( {*tabla*}{;}{*} )
+**QUERY BY EXAMPLE** ( {*tabla* : Table}{;}{*} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual debe devolverse una selección de registros , o Tabla por defecto, si se omite |
-| * | Operador | → | Si se pasa, no se muestra la barra de desplazamiento |
+| tabla | Table | → | Tabla de la cual debe devolverse una selección de registros , o Tabla por defecto, si se omite |
+| * | Operador | → | Si se pasa, no se muestra la barra de desplazamiento |
@@ -46,7 +46,7 @@ Si el usuario hace clic en el botón Aceptar o presionan la tecla Enter, la vari
| | |
| --- | --- |
| Número de comando | 292 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
index a9bb111578a335..5bab1f9b9e0d92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-formula
displayed_sidebar: docs
---
-**QUERY BY FORMULA** ( *tabla* {; *formula*} )
+**QUERY BY FORMULA** ( *tabla* : Table {; *formula* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual efectuar la búsqueda |
-| formula | Boolean | → | Fórmula de búsqueda |
+| tabla | Table | → | Tabla en la cual efectuar la búsqueda |
+| formula | Boolean | → | Fórmula de búsqueda |
@@ -84,7 +84,7 @@ Este ejemplo utiliza una unión para buscar todas las líneas de facturas de cli
| | |
| --- | --- |
| Número de comando | 48 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
index 8acf0c830477a4..f0053cb5540c18 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-sql
displayed_sidebar: docs
---
-**QUERY BY SQL** ( {*tabla* ;} *formulaSQL* )
+**QUERY BY SQL** ( {*tabla* : Table ;} *formulaSQL* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual devolver una selección de registros o Tabla por defecto si este parámetro se omite |
-| formulaSQL | Text | → | Fórmula de búsqueda SQL válida representando la cláusula WHERE de la búsqueda SELECT |
+| tabla | Table | → | Tabla en la cual devolver una selección de registros o Tabla por defecto si este parámetro se omite |
+| formulaSQL | Text | → | Fórmula de búsqueda SQL válida representando la cláusula WHERE de la búsqueda SELECT |
@@ -165,7 +165,7 @@ Si el formato de la condición de búsqueda es correcto, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 942 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
index 9e34f09cbdfff0..1f15df6e73d2a5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-selection-by-attribute
displayed_sidebar: docs
---
-**QUERY SELECTION BY ATTRIBUTE** ( {*tabla*}{;}{*opConj* ;} *campoObjeto* ; *rutaAtributo* ; *opBusq* ; *valor* {; *} )
+**QUERY SELECTION BY ATTRIBUTE** ( {*tabla* : Table}{;}{*opConj* ;} *campoObjeto* : Field ; *rutaAtributo* : Text ; *opBusq* : Text, Operator ; *valor* : Text, Real, Date, Time {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual devolver una selección de registros o Tabla por defecto si se omite |
-| opConj | Operator | → | Operador de conjunción a usar para combinar varias búsquedas (si las hay) |
-| campoObjeto | Field | → | Campo objeto cuyos atributos utilizar para la búsqueda |
-| rutaAtributo | Text | → | Nombre o ruta de atributo |
-| opBusq | Text, Operator | → | Operador de búsqueda (comparador) |
-| valor | Text, Number, Date, Time | → | Valor a comparar |
-| * | Operator | → | Espera de ejecución de la búsqueda |
+| tabla | Table | → | Tabla para la cual devolver una selección de registros o tabla por defecto si se omite |
+| conjOp | Operator | → | Operador de conjunción a utilizar ara unir múltiples búsquedas (si las hay) |
+| campoObjeto | Field | → | Campo objeto para buscar atributos |
+| rutaAtributo | Text | → | Nombre o ruta de atributo |
+| opBusq | Text, Operator | → | Operador de búsqueda (comparador) |
+| valor | Text, Real, Date, Time | → | Valor a comparar |
+| * | Operador | → | Continuar bandera de búsqueda |
@@ -53,7 +53,7 @@ Usted quiere encontrar personas con una edad entre 20 y 30, entre los registros
| | |
| --- | --- |
| Número de comando | 1424 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
index 1cf4f15c50f59b..b55a0967e6648a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-by-formula
displayed_sidebar: docs
---
-**QUERY SELECTION BY FORMULA** ( *tabla* {; *formula*} )
+**QUERY SELECTION BY FORMULA** ( *tabla* : Table {; *formula* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual efectuar la búsqueda en la selección actual |
-| formula | Boolean | → | Fórmula de búsqueda |
+| tabla | Table | → | Tabla en la cual efectuar la búsqueda en la selección actual |
+| formula | Boolean | → | Fórmula de búsqueda |
@@ -36,7 +36,7 @@ Para mayor información, consulte la descripción del comando [QUERY BY FORMULA]
| | |
| --- | --- |
| Número de comando | 207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
index 61fee85f1955c7..4d2b0d603d5de2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-with-array
displayed_sidebar: docs
---
-**QUERY SELECTION WITH ARRAY** ( *campoObjetivo* ; *array* )
+**QUERY SELECTION WITH ARRAY** ( *campoObjetivo* : Field ; *array* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoObjetivo | Field | → | Campo utilizado para comparar los valores |
-| array | Array | → | Array de valores buscados |
+| campoObjetivo | Field | → | Campo utilizado para comparar los valores |
+| array | Array | → | Array de valores buscados |
@@ -34,7 +34,7 @@ Para mayor información, consulte la descripción del comando [QUERY WITH ARRAY]
| | |
| --- | --- |
| Número de comando | 1050 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
index cfc6c5407d12d0..1314126ed666dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
@@ -5,13 +5,13 @@ slug: /commands/query-selection
displayed_sidebar: docs
---
-**QUERY SELECTION** ( {*tabla* }{;}{ *criterioBusqueda* {; *}} )
+**QUERY SELECTION** ( {*tabla* : Table }{;}{ *criterioBusqueda* : Expression {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual efectuar la búsqueda o Tabla por defecto, si se omite |
-| criterioBusqueda | Expression | → | Líneas de búsqueda |
-| * | Operador | → | Bandera para continuar la búsqueda |
+| tabla | Table | → | Tabla en la cual efectuar la búsqueda o Tabla por defecto, si se omite |
+| criterioBusqueda | Expression | → | Líneas de búsqueda |
+| * | Operador | → | Bandera para continuar la búsqueda |
@@ -49,7 +49,7 @@ Va a encontrar todas las empresas ubicadas en la ciudad de Nueva York, con una a
| | |
| --- | --- |
| Número de comando | 341 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
index e6e01c9f178237..5df5e0a11af6a5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-with-array
displayed_sidebar: docs
---
-**QUERY WITH ARRAY** ( *campoObjetivo* ; *array* )
+**QUERY WITH ARRAY** ( *campoObjetivo* : Field ; *array* : Array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoObjetivo | Field | → | Campo utilizado para comparar los valores |
-| array | Array | → | Array de los valores buscados |
+| campoObjetivo | Field | → | Campo utilizado para comparar los valores |
+| array | Array | → | Array de los valores buscados |
@@ -45,7 +45,7 @@ El siguiente ejemplo le permite recuperar los registros de clientes franceses y
| | |
| --- | --- |
| Número de comando | 644 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md
index 80bba79cd84909..28b8a672f58c35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/query.md
@@ -5,13 +5,13 @@ slug: /commands/query
displayed_sidebar: docs
---
-**QUERY** ( {*tabla* }{;}{ *criterioBusqueda* {; *}} )
+**QUERY** ( {*tabla* : Table }{;}{ *criterioBusqueda* : Expression {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual devolver una selección de registros o Tabla por defecto, si se omite |
-| criterioBusqueda | Expression | → | Criterio de búsqueda |
-| * | Operador | → | Continuar la ejecución de la búsqueda |
+| tabla | Table | → | Tabla para la cual devolver una selección de registros o Tabla por defecto, si se omite |
+| criterioBusqueda | Expression | → | Criterio de búsqueda |
+| * | Operador | → | Continuar la ejecución de la búsqueda |
@@ -315,7 +315,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
index f99568751a28d8..9e19d8b8e4df38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
@@ -5,11 +5,11 @@ slug: /commands/quit-4d
displayed_sidebar: docs
---
-**QUIT 4D** {( *tiempo* )}
+**QUIT 4D** ({ *tiempo* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tiempo | Integer | → | Tiempo en segundos antes de salir del servidor |
+| tiempo | Integer | → | Tiempo en segundos antes de salir del servidor |
@@ -72,6 +72,6 @@ El método de proyecto siguiente está asociado al elemento de menú Salir en el
| | |
| --- | --- |
| Número de comando | 291 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md
index fa9edd269be71e..1bf0d4698ff1b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/random.md
@@ -39,6 +39,6 @@ El siguiente ejemplo asigna un valor aleatorio entre 10 y 30 a la variable *vlRe
| | |
| --- | --- |
| Número de comando | 100 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
index b9bd34998ba2e5..2ce032ccf185b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
@@ -5,11 +5,11 @@ slug: /commands/read-only-state
displayed_sidebar: docs
---
-**Read only state** {( *tabla* )} : Boolean
+**Read only state** ( *tabla* : Table ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual probar el estado sólo lectura o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla para la cual probar el estado sólo lectura o Tabla por defecto, si se omite |
| Resultado | Boolean | ← | El acceso a la tabla es sólo lectura (TRUE), o El acceso a la tabla es lectura/escritura (FALSE) |
@@ -42,6 +42,6 @@ El siguiente ejemplo prueba el estado de la tabla \[Facturas\]. Si el estado de
| | |
| --- | --- |
| Número de comando | 362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
index 31e942d44b0434..2eb4f8427733a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
@@ -5,11 +5,11 @@ slug: /commands/read-only
displayed_sidebar: docs
---
-**READ ONLY** {( tabla | * )}
+**READ ONLY** ({ tabla | * })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | * | Tabla, Operador | → | Tabla a definir en modo sólo lectura o * para todas las tablas o Tabla por defecto, si se omite |
+| tabla | * | Tabla, Operador | → | Tabla a definir en modo sólo lectura o * para todas las tablas o Tabla por defecto, si se omite |
@@ -32,6 +32,6 @@ Utilice READ ONLY cuando no necesite modificar los registros.
| | |
| --- | --- |
| Número de comando | 145 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
index 06ae63dbd6ba8d..d9db736cf3e6df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/read-picture-file
displayed_sidebar: docs
---
-**READ PICTURE FILE** ( *nomArchivo* ; *imagen* {; *} )
+**READ PICTURE FILE** ( *nomArchivo* : Text ; *imagen* : Picture {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Nombre o ruta de acceso completa del archivo a leer, o cadena vacía |
+| nomArchivo | Text | → | Nombre o ruta de acceso completa del archivo a leer, o cadena vacía |
| imagen | Picture | ← | Campo o variable que recibe la imagen |
-| * | Operador | → | Si se pasa = acepta todo tipo de archivo |
+| * | Operador | → | Si se pasa = acepta todo tipo de archivo |
@@ -47,7 +47,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 678 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
index 7e771f2ac345b4..7278e675f3fbbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
@@ -5,11 +5,11 @@ slug: /commands/read-write
displayed_sidebar: docs
---
-**READ WRITE** {( tabla | * )}
+**READ WRITE** ({ tabla | * })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | * | Tabla, Operador | → | Tabla a definir en modo lectura/escritura o * para todas las tablas o Tabla por defecto si se omite |
+| tabla | * | Tabla, Operador | → | Tabla a definir en modo lectura/escritura o * para todas las tablas o Tabla por defecto si se omite |
@@ -36,6 +36,6 @@ Utilice READ WRITE cuando tenga que modificar un registro y guardar los cambios.
| | |
| --- | --- |
| Número de comando | 146 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
index 0550263a6ec57b..6891aba3bb5f57 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/real-to-blob
displayed_sidebar: docs
---
-**REAL TO BLOB** ( *real* ; *BLOB* ; *formatoReal* {; offset | *} )
+**REAL TO BLOB** ( *real* : Real ; *BLOB* : Blob ; *formatoReal* : Integer {; offset | *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| real | Real | → | Valor de tipo real a escribir en el BLOB |
-| Blob | Blob | → | BLOB a recibir el valor Real |
-| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real doble Macintosh 3 Formato real doble Windows |
-| offset | * | Variable, Operador | ↔ | Offset en el BLOB (expresado en bytes) o * para añadir el valor |
-||| | Nuevo offset después de la escritura si se omite * |
+| real | Real | → | Valor de tipo real a escribir en el BLOB |
+| Blob | Blob | → | BLOB a recibir el valor Real |
+| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real doble Macintosh 3 Formato real doble Windows |
+| offset | * | Variable, Operador | ↔ | Offset en el BLOB (expresado en bytes) o * para añadir el valor |
+| | | | Nuevo offset después de la escritura si se omite * |
@@ -138,6 +138,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 552 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
index ce17a4c435804b..265e86d8eb61c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
@@ -5,7 +5,7 @@ slug: /commands/receive-buffer
displayed_sidebar: docs
---
-**RECEIVE BUFFER** ( *varRecep* )
+**RECEIVE BUFFER** ( *varRecep* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -69,7 +69,7 @@ Note que el acceso a la variable interproceso *vtBuffer* debe estar protegido po
| | |
| --- | --- |
| Número de comando | 172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
index e132c65f6c45b3..7d49956d12a254 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
@@ -5,13 +5,13 @@ slug: /commands/receive-packet
displayed_sidebar: docs
---
-**RECEIVE PACKET** ( {*docRef* ;} *varRecep* ; stopCar | numBytes )
+**RECEIVE PACKET** ( {*docRef* : Time ;} *varRecep* : Text, Blob ; stopCar | numBytes )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento o canal actual (puerto serial o documento) |
+| docRef | Time | → | Número de referencia del documento o canal actual (puerto serial o documento) |
| varRecep | Text, Blob | ← | Variable para recibir datos |
-| stopCar | numBytes | Cadena, Entero largo | → | Carácter(es) en el(los) cual(es) detener la recepción de datos o número de bytes a recibir |
+| stopCar | numBytes | Cadena, Entero largo | → | Carácter(es) en el(los) cual(es) detener la recepción de datos o número de bytes a recibir |
@@ -121,7 +121,7 @@ Después de un llamado a RECEIVE PACKET, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 104 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
index 34f9298e768c8a..6b5ffa1fc1aa42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
@@ -5,11 +5,11 @@ slug: /commands/receive-record
displayed_sidebar: docs
---
-**RECEIVE RECORD** {( *tabla* )}
+**RECEIVE RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla en la cual recibir el registro o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla en la cual recibir el registro o Tabla por defecto, si se omite |
@@ -157,7 +157,7 @@ La variable sistema OK toma el valor 1 si se recibe el registro. De lo contrario
| | |
| --- | --- |
| Número de comando | 79 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
index b7268e08d5241f..576419f64d714e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
@@ -5,7 +5,7 @@ slug: /commands/receive-variable
displayed_sidebar: docs
---
-**RECEIVE VARIABLE** ( *variable* )
+**RECEIVE VARIABLE** ( *variable* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -47,7 +47,7 @@ La variable sistema OK toma el valor 1 si se recibe la variable. De lo contrario
| | |
| --- | --- |
| Número de comando | 81 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
index a1e195a530c993..6eae08b018644c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
@@ -5,11 +5,11 @@ slug: /commands/record-number
displayed_sidebar: docs
---
-**Record number** {( *tabla* )} : Integer
+**Record number** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual devolver el número del registro actual o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual devolver el número del registro actual o Tabla por defecto, si se omite |
| Resultado | Integer | ← | Número del registro actual |
@@ -49,6 +49,6 @@ El siguiente ejemplo guarda el número del registro actual y luego busca en la t
| | |
| --- | --- |
| Número de comando | 243 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
index 2649f4a9206d9f..22daadbf8bbcce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-selection
displayed_sidebar: docs
---
-**Records in selection** {( *tabla* )} : Integer
+**Records in selection** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual devolver el número de registros seleccionados,o tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual devolver el número de registros seleccionados,o tabla por defecto, si se omite |
| Resultado | Integer | ← | Registros en la selección de tabla |
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una técnica de bucle actualmente utilizada para mo
| | |
| --- | --- |
| Número de comando | 76 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
index 7e64708dd86363..cadc69afe6a761 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-set
displayed_sidebar: docs
---
-**Records in set** ( *conjunto* ) : Integer
+**Records in set** ( *conjunto* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nombre del conjunto a probar |
+| conjunto | Text | → | Nombre del conjunto a probar |
| Resultado | Integer | ← | Número de registros en prueba |
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una alerta indicando el porcentaje de clientes que
| | |
| --- | --- |
| Número de comando | 195 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
index 3b6c451cb4c9e4..e2b6bef1a88f59 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-table
displayed_sidebar: docs
---
-**Records in table** {( *tabla* )} : Integer
+**Records in table** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual devolver el número total de registros o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual devolver el número total de registros o Tabla por defecto, si se omite |
| Resultado | Integer | ← | Número total de registros en la tabla |
@@ -35,6 +35,6 @@ El siguiente ejemplo muestra una alerta que indica el número de registros en la
| | |
| --- | --- |
| Número de comando | 83 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
index 367205f6ef7a6a..3ab698b0668a58 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
@@ -5,11 +5,11 @@ slug: /commands/redraw-window
displayed_sidebar: docs
---
-**REDRAW WINDOW** {( *ventana* )}
+**REDRAW WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
@@ -30,6 +30,6 @@ Si omite el parámetro *ventana*, REDRAW WINDOW aplica a la ventana del primer p
| | |
| --- | --- |
| Número de comando | 456 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
index 8a8c0a1ea2fa25..8cbbbf9a5c8a74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
@@ -5,11 +5,11 @@ slug: /commands/redraw
displayed_sidebar: docs
---
-**REDRAW** ( *objeto* )
+**REDRAW** ( *objeto* : any )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | any | → | Tabla para la cual rediseñar el subformulario o Campo para el cual rediseñar el área o Variable para la cual rediseñar el área o Tabla del formulario a rediseñar en un navegador Web |
+| objeto | any | → | Tabla para la cual rediseñar el subformulario o Campo para el cual rediseñar el área o Variable para la cual rediseñar el área o Tabla del formulario a rediseñar en un navegador Web |
@@ -28,6 +28,6 @@ En el contexto de los list boxes en modo selección, la instrucción REDRAW apli
| | |
| --- | --- |
| Número de comando | 174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
index 86124243bf98d3..0313cdeb7bc3a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
@@ -5,11 +5,11 @@ slug: /commands/reduce-restore-window
displayed_sidebar: docs
---
-**REDUCE RESTORE WINDOW** ( *ventana* )
+**REDUCE RESTORE WINDOW** ( *ventana* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana |
@@ -35,6 +35,6 @@ El comando cambia el estado de la ventana:
| | |
| --- | --- |
| Número de comando | 1829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
index c6853d693c6b44..44534bb983ac16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
@@ -5,12 +5,12 @@ slug: /commands/reduce-selection
displayed_sidebar: docs
---
-**REDUCE SELECTION** ( {*tabla* ;} *Numero* )
+**REDUCE SELECTION** ( {*tabla* : Table ;} *Numero* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual reducir la selección, o Tabla por defecto, si se omite |
-| Numero | Integer | → | Número de registros a conservar seleccionados |
+| tabla | Table | → | Tabla de la cual reducir la selección, o Tabla por defecto, si se omite |
+| Numero | Integer | → | Número de registros a conservar seleccionados |
@@ -63,7 +63,7 @@ El siguiente ejemplo busca las estadísticas correctas para una competencia mund
| | |
| --- | --- |
| Número de comando | 351 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
index 0eb12353e7df4b..7c93974a3eeb92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Desea actualizar su licencia y recibir un mensaje cuando se complete:
| | |
| --- | --- |
| Número de comando | 1336 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
index ff1688af21f2b5..30a498637b0e2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
@@ -5,11 +5,11 @@ slug: /commands/regenerate-missing-table
displayed_sidebar: docs
---
-**REGENERATE MISSING TABLE** ( *nomTabla* )
+**REGENERATE MISSING TABLE** ( *nomTabla* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomTabla | Text | → | Nombre de tabla faltante a regenerar |
+| nomTabla | Text | → | Nombre de tabla faltante a regenerar |
@@ -65,6 +65,6 @@ Este método regenera todas las tablas faltantes eventualmente presentes en la b
| | |
| --- | --- |
| Número de comando | 1126 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
index 10d4704b2d589c..f1009e1c769fd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
@@ -15,11 +15,11 @@ displayed_sidebar: docs
-**REGISTER CLIENT** ( *nomCliente* )
+**REGISTER CLIENT** ( *nomCliente* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomCliente | Text | → | Nombre de la sesión 4D Client |
+| nomCliente | Text | → | Nombre de la sesión 4D Client |
@@ -124,7 +124,7 @@ Si el cliente 4D está registrado correctamente, la variable sistema OK es igual
| | |
| --- | --- |
| Número de comando | 648 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
index a2beaec29e0fa2..99c0045e891452 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/register-data-key
displayed_sidebar: docs
---
-**Register data key** ( *curPassPhrase* ) : Boolean
**Register data key** ( *curDataKey* ) : Boolean
+**Register data key** ( *curPassPhrase* : Texto, Objeto ) : Boolean
**Register data key** ( *curDataKey* : Texto, Objeto ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| curPassPhrase | curDataKey | Texto, Objeto | → | Frase contraseña actual (texto) o llave de cifrado de datos actual (objeto) |
+| curPassPhrase | curDataKey | Texto, Objeto | → | Frase contraseña actual (texto) o llave de cifrado de datos actual (objeto) |
| Resultado | Boolean | ← | True si la llave de cifrado se ha agregado correctamente al llavero 4D, False si ya estaba en el llavero 4D |
@@ -54,6 +54,6 @@ En el primer parámetro, pase *curPassPhrase* o *curDataKey* que define la llave
| | |
| --- | --- |
| Número de comando | 1638 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
index 2e320933713118..3151e31d366e18 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
@@ -5,11 +5,11 @@ slug: /commands/reject-new-remote-connections
displayed_sidebar: docs
---
-**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* )
+**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rejectStatus | Boolean | → | True si se rechazan las nuevas conexiones, de lo contrario false |
+| rejectStatus | Boolean | → | True si se rechazan las nuevas conexiones, de lo contrario false |
@@ -45,6 +45,6 @@ Desea rechazar o aceptar las nuevas conexiones de clientes:
| | |
| --- | --- |
| Número de comando | 1635 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
index 30ca4684392096..93716fa148bcfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
@@ -5,11 +5,11 @@ slug: /commands/reject
displayed_sidebar: docs
---
-**REJECT** {( *unCampo* )}
+**REJECT** ({ *unCampo* })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo a rechazar |
+| unField | Field | → | Campo a rechazar |
@@ -68,6 +68,6 @@ El siguiente ejemplo es parte de un método de objeto para un campo *\[Employees
| | |
| --- | --- |
| Número de comando | 38 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
index 6194cfbefd78c6..2b87217793e3e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo de la tabla Muchos (donde inicia la relación) |
+| unField | Field | → | Campo de la tabla Muchos (donde inicia la relación) |
@@ -39,7 +39,7 @@ Este ejemplo selecciona todas las facturas de clientes con crédito superior o i
| | |
| --- | --- |
| Número de comando | 340 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
index b8ffdf3a1dfe39..d6a21c29985544 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla1 | campo1 | Tabla, Campo | → | Tabla para la cual establecer todas las relaciones de Uno a Muchos o campo Uno |
+| tabla1 | campo1 | Tabla, Campo | → | Tabla para la cual establecer todas las relaciones de Uno a Muchos o campo Uno |
@@ -71,7 +71,7 @@ Note que es necesario el comando RELATE MANY, aunque las relaciones sean automá
| | |
| --- | --- |
| Número de comando | 262 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
index 59bfb78d998708..eea8a5e397ea1b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one-selection
displayed_sidebar: docs
---
-**RELATE ONE SELECTION** ( *tablaN* ; *tabla1* )
+**RELATE ONE SELECTION** ( *tablaN* : Table ; *tabla1* : Table )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tablaN | Table | → | Nombre de la tabla Muchos (donde inicia la relación) |
-| tabla1 | Table | → | Nombre de la tabla Uno (donde termina la relación) |
+| tablaN | Table | → | Nombre de la tabla Muchos (donde inicia la relación) |
+| tabla1 | Table | → | Nombre de la tabla Uno (donde termina la relación) |
@@ -63,7 +63,7 @@ La siguiente técnica utiliza **RELATE ONE SELECTION** para obtener el mismo res
| | |
| --- | --- |
| Número de comando | 349 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
index 0bed30a6aefde1..a90205a9232c12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one
displayed_sidebar: docs
---
-**RELATE ONE** ( tablasN | CampoN {; *discriminante*} )
+**RELATE ONE** ( tablasN | CampoN {; *discriminante* : Field} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tablasN | CampoN | Tabla, Campo | → | Tabla para la cual definir todas las relaciones automáticas o Campo con la relación manual con la tabla Uno |
-| discriminante | Field | → | Campo discriminante de la tabla 1 |
+| tablasN | CampoN | Tabla, Campo | → | Tabla para la cual definir todas las relaciones automáticas o Campo con la relación manual con la tabla Uno |
+| discriminante | Field | → | Campo discriminante de la tabla 1 |
@@ -92,7 +92,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 42 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
index bbde3cbf500963..00ade255c93265 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
@@ -5,11 +5,11 @@ slug: /commands/release-menu
displayed_sidebar: docs
---
-**RELEASE MENU** ( *menu* )
+**RELEASE MENU** ( *menu* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Text | → | Referencia de menú |
+| menu | Text | → | Referencia de menú |
@@ -60,6 +60,6 @@ Este ejemplo muestra las diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número de comando | 978 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
index 43af5b4976d88e..2ba156c9fc1f9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
@@ -5,11 +5,11 @@ slug: /commands/reload-external-data
displayed_sidebar: docs
---
-**RELOAD EXTERNAL DATA** ( *elCampo* )
+**RELOAD EXTERNAL DATA** ( *elCampo* : Text, Blob, Picture, Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elCampo | Text, Blob, Picture, Object | → | Campo para el cual recargar los datos |
+| elCampo | Text, Blob, Picture, Object | → | Campo para el cual recargar los datos |
@@ -32,6 +32,6 @@ A continuación debe recargar los datos utilizando el comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número de comando | 1135 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
index e356404ef616b0..29a2966d976c39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Cuando se llama al comando desde:
| | |
| --- | --- |
| Número de comando | 1739 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
index 4cc1de98e164b9..ae78224d171ae3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/remove-from-set
displayed_sidebar: docs
---
-**REMOVE FROM SET** ( {*tabla* ;} *conjunto* )
+**REMOVE FROM SET** ( {*tabla* : Table ;} *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro actual o Tabla por defecto si se omite |
-| conjunto | Text | → | Nombre del conjunto del cual eliminar el registro actual |
+| tabla | Table | → | Tabla del registro actual o Tabla por defecto si se omite |
+| conjunto | Text | → | Nombre del conjunto del cual eliminar el registro actual |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 561 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
index 3cbc5a66f3a861..db1fef4d22a568 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refImag | nomImag | Entero largo, Cadena | → | Número de referencia o nombre de una imagen de la librería de imágenes |
+| refImag | nomImag | Entero largo, Cadena | → | Número de referencia o nombre de una imagen de la librería de imágenes |
@@ -61,7 +61,7 @@ El siguiente ejemplo borra de la librería de imágenes toda imagen cuyo nombre
| | |
| --- | --- |
| Número de comando | 567 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
index 152787f90771a9..05fdd8dcaad9cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
@@ -5,15 +5,15 @@ slug: /commands/replace-string
displayed_sidebar: docs
---
-**Replace string** ( *fuente* ; *obsoleta* ; *nueva* {; *reemplazos*}{; *} ) : Text
+**Replace string** ( *fuente* : Text ; *obsoleta* : Text ; *nueva* : Text {; *reemplazos* : Integer}{; *} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Text | → | Cadena original |
-| obsoleta | Text | → | Caracteres a reemplazar |
-| nueva | Text | → | Cadena de reemplazo (si la cadena está vacía, se borran todas las ocurrencias) |
-| reemplazos | Integer | → | Número de reemplazos a efectuar Si se omite, se reemplazan todas las ocurrencias |
-| * | Operador | → | Si se pasa: evaluación basada en los códigos de los caracteres |
+| fuente | Text | → | Cadena original |
+| obsoleta | Text | → | Caracteres a reemplazar |
+| nueva | Text | → | Cadena de reemplazo (si la cadena está vacía, se borran todas las ocurrencias) |
+| reemplazos | Integer | → | Número de reemplazos a efectuar Si se omite, se reemplazan todas las ocurrencias |
+| * | Operador | → | Si se pasa: evaluación basada en los códigos de los caracteres |
| Resultado | Text | ← | Cadena resultante |
@@ -78,6 +78,6 @@ El siguiente ejemplo ilustra el uso del parámetro \* en el caso de una evaluaci
| | |
| --- | --- |
| Número de comando | 233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md
index a8277dcd8f62f7..f34778d2b4bdef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/request.md
@@ -5,14 +5,14 @@ slug: /commands/request
displayed_sidebar: docs
---
-**Request** ( *mensaje* {; *respuestaDefecto* {; *titulobotonOK* {; *titulobotoncancel*}}} ) : Text
+**Request** ( *mensaje* : Text {; *respuestaDefecto* : Text {; *titulobotonOK* : Text {; *titulobotoncancel* : Text}}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo |
-| respuestaDefecto | Text | → | Valor por defecto en el área de entrada de texto |
-| titulobotonOK | Text | → | Título del botón Aceptar |
-| titulobotoncancel | Text | → | Título del botón Cancelar |
+| mensaje | Text | → | Mensaje a mostrar en la caja de diálogo |
+| respuestaDefecto | Text | → | Valor por defecto en el área de entrada de texto |
+| titulobotonOK | Text | → | Título del botón Aceptar |
+| titulobotoncancel | Text | → | Título del botón Cancelar |
| Resultado | Text | ← | Valor introducido por el usuario |
@@ -84,7 +84,7 @@ Mostrará la siguiente caja de diálogo (en Windows):
| | |
| --- | --- |
| Número de comando | 163 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
index 0d40bec9c68fbb..b1c3e39b96918a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
@@ -5,12 +5,12 @@ slug: /commands/resize-form-window
displayed_sidebar: docs
---
-**RESIZE FORM WINDOW** ( *ancho* ; *alto* )
+**RESIZE FORM WINDOW** ( *ancho* : Integer ; *alto* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ancho | Integer | → | Píxeles a añadir o eliminar del ancho actual de la ventana formulario |
-| alto | Integer | → | Píxeles a añadir o eliminar del largo actual de la ventana formulario |
+| ancho | Integer | → | Píxeles a añadir o eliminar del ancho actual de la ventana formulario |
+| alto | Integer | → | Píxeles a añadir o eliminar del largo actual de la ventana formulario |
@@ -52,6 +52,6 @@ Después de la ejecución de esta línea:
| | |
| --- | --- |
| Número de comando | 890 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
index 80067dc8c6cb26..6c3bd07731a12c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-alias
displayed_sidebar: docs
---
-**RESOLVE ALIAS** ( *rutaAlias* ; *rutaObjetivo* )
+**RESOLVE ALIAS** ( *rutaAlias* : Text ; *rutaObjetivo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaAlias | Text | → | Nombre o ruta de acceso completa del alias/atajo |
+| rutaAlias | Text | → | Nombre o ruta de acceso completa del alias/atajo |
| rutaObjetivo | Text | ← | Nombre o ruta de acceso completa del objetivo del alias/atajo |
@@ -37,7 +37,7 @@ Si *rutaAlias* especifica un alias/atajo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 695 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
index 9a204efecd46b2..3bd7684fa67d11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-pointer
displayed_sidebar: docs
---
-**RESOLVE POINTER** ( *puntero* ; *nomVar* ; *numTabla* ; *numCamp* )
+**RESOLVE POINTER** ( *puntero* : Pointer ; *nomVar* : Text ; *numTabla* : Integer ; *numCamp* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| puntero | Pointer | → | Puntero del cual recuperar el objeto referenciado |
+| puntero | Pointer | → | Puntero del cual recuperar el objeto referenciado |
| nomVar | Text | ← | Nombre de la variable referenciada o cadena vacía |
| numTabla | Integer | ← | Número de la tabla o del elemento del array referenciado o 0 o -1 |
| numCamp | Integer | ← | Número del campo referenciado o 0 |
@@ -115,6 +115,6 @@ Este es un ejemplo de puntero a un array 2D:
| | |
| --- | --- |
| Número de comando | 394 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
index a33546b0878d8a..cce97109d7f06b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
@@ -5,14 +5,14 @@ slug: /commands/resource-list
displayed_sidebar: docs
---
-**RESOURCE LIST** ( *resTipo* ; *resNums* ; *resNoms* {; *resArchivo*} )
+**RESOURCE LIST** ( *resTipo* : Text ; *resNums* : Integer array ; *resNoms* : Text array {; *resArchivo* : Time} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resTipo | Text | → | Tipo de recurso (4 caracteres) |
+| resTipo | Text | → | Tipo de recurso (4 caracteres) |
| resNums | Integer array | ← | Números de recursos de este tipo |
| resNoms | Text array | ← | Nombres de los recursos de este tipo |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
@@ -75,6 +75,6 @@ El siguiente ejemplo copia los recursos imagen presentes en todos los archivos d
| | |
| --- | --- |
| Número de comando | 500 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
index 8ea895e4c77b3b..72bccfe818aff5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
@@ -5,12 +5,12 @@ slug: /commands/resource-type-list
displayed_sidebar: docs
---
-**RESOURCE TYPE LIST** ( *resTipos* {; *resArchivo*} )
+**RESOURCE TYPE LIST** ( *resTipos* : Text array {; *resArchivo* : Time} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| resTipos | Text array | ← | Lista de tipos de recursos disponibles |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos de recursos abiertos, si se omite |
@@ -84,6 +84,6 @@ Una vez este método de proyecto se implementa en una base, puede escribir:
| | |
| --- | --- |
| Número de comando | 499 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
index 50dde9c5536db8..1a5b9fb94f5dd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
@@ -5,12 +5,12 @@ slug: /commands/restart-4d
displayed_sidebar: docs
---
-**RESTART 4D** {( *demora* {; *mensaje*} )}
+**RESTART 4D** ({ *demora* : Integer {; *mensaje* : Text} })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| demora | Integer | → | Tiempo de retardo (segundos) antes que 4D reinicie |
-| mensaje | Text | → | Texto a mostrar en los equipos clientes |
+| demora | Integer | → | Tiempo de retardo (segundos) antes que 4D reinicie |
+| mensaje | Text | → | Texto a mostrar en los equipos clientes |
@@ -40,7 +40,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1,
| | |
| --- | --- |
| Número de comando | 1292 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
index 1cee75708b043c..c2adb7bc10ce24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
@@ -5,11 +5,11 @@ slug: /commands/restore-info
displayed_sidebar: docs
---
-**RESTORE INFO** ( *selector* ; *info1* ; *info2* )
+**RESTORE INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Text, Time )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Tipo de información a recuperar |
+| selector | Integer | → | Tipo de información a recuperar |
| info1 | Integer, Date | ← | Valor 1 del selector |
| info2 | Text, Time | ← | Valor 2 del selector |
@@ -41,6 +41,6 @@ El tipo y el contenido de los parámetros *info1* e *info2* dependen del valor d
| | |
| --- | --- |
| Número de comando | 889 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
index 8262cb62c653e3..e35929b22cfdbe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
@@ -5,12 +5,12 @@ slug: /commands/restore
displayed_sidebar: docs
---
-**RESTORE** {( *rutaArchivo* {; *rutaCarpetaDest*} )}
+**RESTORE** ({ *rutaArchivo* : Text {; *rutaCarpetaDest* : Text} })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaArchivo | Text | → | Ruta de acceso del archivo a restituir |
-| rutaCarpetaDest | Text | → | Ruta de acceso de la carpeta de destino |
+| rutaArchivo | Text | → | Ruta de acceso del archivo a restituir |
+| rutaCarpetaDest | Text | → | Ruta de acceso de la carpeta de destino |
@@ -39,7 +39,7 @@ El comando RESTORE modifica el valor de las variables *OK* y *Document*: si la r
| | |
| --- | --- |
| Número de comando | 918 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
index 369cd68d14bb24..8c927a976cb57d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
@@ -5,12 +5,12 @@ slug: /commands/resume-indexes
displayed_sidebar: docs
---
-**RESUME INDEXES** ( *tabla* {; *} )
+**RESUME INDEXES** ( *tabla* : Table {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual reactivar los índices |
-| * | Operador | → | Si se pasa = indexación asíncrona |
+| tabla | Table | → | Tabla para la cual reactivar los índices |
+| * | Operador | → | Si se pasa = indexación asíncrona |
@@ -33,6 +33,6 @@ El comando **RESUME INDEXES** sólo se puede llamar desde 4D Server o un 4D loca
| | |
| --- | --- |
| Número de comando | 1294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
index 46e684d9426a54..42117c99c540e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
@@ -5,11 +5,11 @@ slug: /commands/resume-process
displayed_sidebar: docs
---
-**RESUME PROCESS** ( *proceso* )
+**RESUME PROCESS** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso |
+| proceso | Integer | → | Número de proceso |
@@ -31,7 +31,7 @@ Si *proceso* ha sido retrasado anteriormente, consulte los comandos [PAUSE PROCE
| | |
| --- | --- |
| Número de comando | 320 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
index d1ead926995b39..40e01e5604dc6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para más información, consulte la sección *Suspender las transacciones*.
| | |
| --- | --- |
| Número de comando | 1386 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
index 7047cb967cda85..58272e330fa10e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando debe utilizarse únicamente en el contexto del evento de formulario
| | |
| --- | --- |
| Número de comando | 712 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md
index 2011bfae528025..7a8d7869fe9f5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/round.md
@@ -5,12 +5,12 @@ slug: /commands/round
displayed_sidebar: docs
---
-**Round** ( *redond* ; *decimales* ) : Real
+**Round** ( *redond* : Real ; *decimales* : Integer ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| redond | Real | → | Número a redondear |
-| decimales | Integer | → | Número de lugares decimales a redondear |
+| redond | Real | → | Número a redondear |
+| decimales | Integer | → | Número de lugares decimales a redondear |
| Resultado | Real | ← | Número redondeado para el número de lugares decimales especificado por decimales |
@@ -43,6 +43,6 @@ El siguiente ejemplo ilustra cómo Redondeo funciona con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 94 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
index a727463b168467..9dab2ba9fb8c1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
@@ -5,12 +5,12 @@ slug: /commands/save-list
displayed_sidebar: docs
---
-**SAVE LIST** ( *lista* ; *nomLista* )
+**SAVE LIST** ( *lista* : Integer ; *nomLista* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de la lista |
-| nomLista | Text | → | Nombre de la lista como aparecerá en el editor de listas del entorno Diseño |
+| lista | Integer | → | Número de referencia de la lista |
+| nomLista | Text | → | Nombre de la lista como aparecerá en el editor de listas del entorno Diseño |
@@ -31,6 +31,6 @@ Su contenido se reemplazará si ya hay una lista con el mismo nombre.
| | |
| --- | --- |
| Número de comando | 384 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
index d9421938d3702e..a11881a8f4b2d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
@@ -5,11 +5,11 @@ slug: /commands/save-record
displayed_sidebar: docs
---
-**SAVE RECORD** {( *tabla* )}
+**SAVE RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla del registro a guardar o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla del registro a guardar o Tabla por defecto, si se omite |
@@ -54,6 +54,6 @@ El siguiente ejemplo es parte de un método que lee registros de un documento. E
| | |
| --- | --- |
| Número de comando | 53 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
index 69bded942e0dc0..18ca3025ffa2aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo Muchos |
+| unField | Field | → | Campo Muchos |
@@ -31,6 +31,6 @@ SAVE RELATED ONE no guardará un registro bloqueado. Cuando utilice este comando
| | |
| --- | --- |
| Número de comando | 43 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
index 475932673f38e5..94cd96d3aca946 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
@@ -5,12 +5,12 @@ slug: /commands/save-set
displayed_sidebar: docs
---
-**SAVE SET** ( *conjunto* ; *doc* )
+**SAVE SET** ( *conjunto* : Text ; *doc* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nombre del conjunto a guardar |
-| doc | Text | → | Nombre del archivo en el cual guardar el conjunto |
+| conjunto | Text | → | Nombre del conjunto a guardar |
+| doc | Text | → | Nombre del archivo en el cual guardar el conjunto |
@@ -47,7 +47,7 @@ Si el usuario hace clic en el botón Cancelar en la caja de diálogo de guardar
| | |
| --- | --- |
| Número de comando | 184 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
index 338bc328f0270c..423f67624e1820 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
@@ -5,12 +5,12 @@ slug: /commands/save-variables
displayed_sidebar: docs
---
-**SAVE VARIABLES** ( *doc* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**SAVE VARIABLES** ( *doc* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento en el cual guardar las variables |
-| variable | Variable | → | Variables a guardar |
+| doc | Text | → | Nombre del documento en el cual guardar las variables |
+| variable | Variable | → | Variables a guardar |
@@ -54,7 +54,7 @@ Si las variables se guardan correctamente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 75 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
index 3697a4b0dcd83e..b68bba73b65851 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-processing-instruction
displayed_sidebar: docs
---
-**SAX ADD PROCESSING INSTRUCTION** ( *documento* ; *instruccion* )
+**SAX ADD PROCESSING INSTRUCTION** ( *documento* : Time ; *instruccion* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| instruccion | Text | → | Instrucción a insertar en el documento |
+| documento | Time | → | Referencia del documento abierto |
+| instruccion | Text | → | Instrucción a insertar en el documento |
@@ -34,8 +34,8 @@ El siguiente código:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -51,7 +51,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 857 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
index 9576ca41a8e6c8..07d4ca0fc38ce4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-cdata
displayed_sidebar: docs
---
-**SAX ADD XML CDATA** ( *documento* ; *datos* )
+**SAX ADD XML CDATA** ( *documento* : Time ; *datos* : Blob, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| datos | Blob, Text | → | Texto o BLOB a insertar en el documento entre etiquetas CData |
+| documento | Time | → | Referencia del documento abierto |
+| datos | Blob, Text | → | Texto o BLOB a insertar en el documento entre etiquetas CData |
@@ -80,7 +80,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 856 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
index 468909f0d208e5..6a3f921c844ed6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-comment
displayed_sidebar: docs
---
-**SAX ADD XML COMMENT** ( *documento* ; *comentario* )
+**SAX ADD XML COMMENT** ( *documento* : Time ; *comentario* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| comentario | Text | → | Comentario a añadir |
+| documento | Time | → | Referencia del documento abierto |
+| comentario | Text | → | Comentario a añadir |
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 852 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
index d0c3c79e9c297a..a433a3f7051b11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-doctype
displayed_sidebar: docs
---
-**SAX ADD XML DOCTYPE** ( *documento* ; *docType* )
+**SAX ADD XML DOCTYPE** ( *documento* : Time ; *docType* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| docType | Text | → | DocType a añadir |
+| documento | Time | → | Referencia del documento abierto |
+| docType | Text | → | DocType a añadir |
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 851 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
index f347673039b33c..086d8d5c32de5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
@@ -5,13 +5,13 @@ slug: /commands/sax-add-xml-element-value
displayed_sidebar: docs
---
-**SAX ADD XML ELEMENT VALUE** ( *documento* ; *datos* {; *} )
+**SAX ADD XML ELEMENT VALUE** ( *documento* : Time ; *datos* : Text, Variable {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| datos | Text, Variable | → | Texto o variable a insertar en el documento |
-| * | Operador | → | Si se pasa: codificar los caracteres especiales Si se omite: no codificación |
+| documento | Time | → | Referencia del documento abierto |
+| datos | Text, Variable | → | Texto o variable a insertar en el documento |
+| * | Operador | → | Si se pasa: codificar los caracteres especiales Si se omite: no codificación |
@@ -56,7 +56,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 855 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
index ca8bdfad05dca8..3adb76ad3c9c11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-close-xml-element
displayed_sidebar: docs
---
-**SAX CLOSE XML ELEMENT** ( *documento* )
+**SAX CLOSE XML ELEMENT** ( *documento* : Time )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
@@ -29,8 +29,8 @@ Si el último elemento abierto es **, la siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Ver también
@@ -43,6 +43,6 @@ Si el último elemento abierto es **, la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 854 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
index 15821b121dccd2..44ef0713b054ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-cdata
displayed_sidebar: docs
---
-**SAX GET XML CDATA** ( *documento* ; *valor* )
+**SAX GET XML CDATA** ( *documento* : Time ; *valor* : Text, Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| valor | Text, Blob | ← | Valor del elemento |
@@ -55,7 +55,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 878 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
index e0d38e575e0749..67cd3ca78c1c84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-comment
displayed_sidebar: docs
---
-**SAX GET XML COMMENT** ( *documento* ; *comentario* )
+**SAX GET XML COMMENT** ( *documento* : Time ; *comentario* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| comentario | Text | ← | Comentario XML |
@@ -32,7 +32,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 874 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
index 68cfa3fd16ac57..8f4f277f64a865 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-document-values
displayed_sidebar: docs
---
-**SAX GET XML DOCUMENT VALUES** ( *documento* ; *codificacion* ; *version* ; *autonomo* )
+**SAX GET XML DOCUMENT VALUES** ( *documento* : Time ; *codificacion* : Text ; *version* : Text ; *autonomo* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| codificacion | Text | ← | Conjunto de caracteres del documento XML |
| version | Text | ← | Versión XML |
| autonomo | Boolean | ← | True = el documento es autónomo, de lo contrario es False |
@@ -36,7 +36,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 873 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
index 36fde52edc5107..3978d3606ac1a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element-value
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT VALUE** ( *documento* ; *valor* )
+**SAX GET XML ELEMENT VALUE** ( *documento* : Time ; *valor* : Text, Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| valor | Text, Blob | ← | Valor del elemento |
@@ -50,7 +50,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 877 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
index 82054681aca249..0fbe904f0be921 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT** ( *documento* ; *nombre* ; *prefijo* ; *nomsAtributos* ; *valoresAtributos* )
+**SAX GET XML ELEMENT** ( *documento* : Time ; *nombre* : Text ; *prefijo* : Text ; *nomsAtributos* : Text array ; *valoresAtributos* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| nombre | Text | ← | Nombre del elemento |
| prefijo | Text | ← | Espacio de nombre |
| nomsAtributos | Text array | ← | Nombres de los atributos |
@@ -63,7 +63,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 876 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
index 8fcafb008b1b6b..b92f5c0ac6d10a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-entity
displayed_sidebar: docs
---
-**SAX GET XML ENTITY** ( *documento* ; *nombre* ; *valor* )
+**SAX GET XML ENTITY** ( *documento* : Time ; *nombre* : Text ; *valor* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| nombre | Text | ← | Nombre de la entidad |
| valor | Text | ← | Valor de la entidad |
@@ -54,7 +54,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 879 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
index 245ea3d0e89c7f..53e8bab0aa87e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-node
displayed_sidebar: docs
---
-**SAX Get XML node** ( *documento* ) : Integer
+**SAX Get XML node** ( *documento* : Time ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| Resultado | Integer | ← | Evento devuelto por la función |
@@ -62,7 +62,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 860 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
index ee122e7f879730..86bb0f50b58d23 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-processing-instruction
displayed_sidebar: docs
---
-**SAX GET XML PROCESSING INSTRUCTION** ( *documento* ; *nombre* ; *valor* )
+**SAX GET XML PROCESSING INSTRUCTION** ( *documento* : Time ; *nombre* : Text ; *valor* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
+| documento | Time | → | Referencia del documento abierto |
| nombre | Text | ← | Nombre de la instrucción |
| valor | Text | ← | Valor de la instrucción |
@@ -46,6 +46,6 @@ La siguiente instrucción devolverá “PI” en *vNom* y “TextProcess” en *
| | |
| --- | --- |
| Número de comando | 875 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
index 42e686126e2232..6afc71b0461f02 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT ARRAYS** ( *documento* ; *etiqueta* {; *arrayNomsAtrib* ; *arrayValoresAtrib*} {; *arrayNomsAtrib2* ; *arrayValoresAtrib2* ; ... ; *arrayNomsAtribN* ; *arrayValoresAtribN*} )
+**SAX OPEN XML ELEMENT ARRAYS** ( *documento* : Time ; *etiqueta* : Text {; *arrayNomsAtrib* : Text array ; *arrayValoresAtrib* : Array} {; ...(*arrayNomsAtrib* : Text array, *arrayValoresAtrib* : Array)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| etiqueta | Text | → | Nombre del elemento a abrir |
-| arrayNomsAtrib | Text array | → | Array de nombres de atributos |
-| arrayValoresAtrib | Text array, Integer array, Date array, Real array, Picture array, Boolean array | → | Array de valores de atributos |
+| documento | Time | → | Referencia del documento abierto |
+| etiqueta | Text | → | Nombre del elemento a abrir |
+| arrayNomsAtrib | Text array | → | Array de nombres de atributos |
+| arrayValoresAtrib | Array | → | Array de valores de atributos |
@@ -60,6 +60,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 921 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
index 03164546003a7b..8f5e13ae9884db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT** ( *documento* ; *etiqueta* {; *nomAtrib* ; *valorAtrib*} {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} )
+**SAX OPEN XML ELEMENT** ( *documento* : Time ; *etiqueta* : Text {; *nomAtrib* : Text ; *valorAtrib* : Text} {; ...(*nomAtrib* : Text, *valorAtrib* : Text)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| etiqueta | Text | → | Nombre del elemento a abrir |
-| nomAtrib | Text | → | Nombre del atributo |
-| valorAtrib | Text | → | Valor del atributo |
+| documento | Time | → | Referencia del documento abierto |
+| etiqueta | Text | → | Nombre del elemento a abrir |
+| nomAtrib | Text | → | Nombre del atributo |
+| valorAtrib | Text | → | Valor del atributo |
@@ -58,7 +58,7 @@ Si se pasa en tag un carácter inválido, se genera un error.
| | |
| --- | --- |
| Número de comando | 853 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
index f0a7b2a0ea75a9..7d9c70b1a9d916 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
@@ -5,13 +5,13 @@ slug: /commands/sax-set-xml-declaration
displayed_sidebar: docs
---
-**SAX SET XML DECLARATION** ( *documento* ; *codificacion* {; *autonomo*} )
+**SAX SET XML DECLARATION** ( *documento* : Time ; *codificacion* : Text {; *autonomo* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| documento | Time | → | Referencia del documento abierto |
-| codificacion | Text | → | Conjunto de caracteres del documento XML |
-| autonomo | Boolean | → | True = el documento es autónomo False (por defecto) = el documento no es autónomo |
+| documento | Time | → | Referencia del documento abierto |
+| codificacion | Text | → | Conjunto de caracteres del documento XML |
+| autonomo | Boolean | → | True = el documento es autónomo False (por defecto) = el documento no es autónomo |
@@ -51,6 +51,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 858 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
index 0ae4c333487e37..8712dadc6df3d6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
@@ -5,13 +5,13 @@ slug: /commands/scan-index
displayed_sidebar: docs
---
-**SCAN INDEX** ( *unCampo* ; *Numero* {; > o <} )
+**SCAN INDEX** ( *unCampo* ; *Numero* : Integer {; > o <} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo indexado con el cual escanear los registros |
-| Numero | Integer | → | Número de registros a devolver |
-| > o < | Operador | → | > a partir del inicio del índice < a partir del final del índice |
+| unField | Field | → | Campo indexado con el cual escanear los registros |
+| Numero | Integer | → | Número de registros a devolver |
+| > o < | Operador | → | > a partir del inicio del índice < a partir del final del índice |
@@ -55,7 +55,7 @@ El siguiente ejemplo envía cartas a los 50 peores clientes y 50 a los mejores c
| | |
| --- | --- |
| Número de comando | 350 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
index 056301297ac3cd..1b0a2e0ee905e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/screen-coordinates
displayed_sidebar: docs
---
-**SCREEN COORDINATES** ( *izquierda* ; *superior* ; *derecha* ; *inferior* {; *IDpantalla* {; *areaPantalla*}} )
+**SCREEN COORDINATES** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer {; *IDpantalla* : Integer {; *areaPantalla* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -13,8 +13,8 @@ displayed_sidebar: docs
| superior | Integer | ← | Coordenada superior del área de la pantalla |
| derecha | Integer | ← | Coordenada derecha del área de la pantalla |
| inferior | Integer | ← | Coordenada inferior del área de la pantalla |
-| IDpantalla | Integer | → | Número de la pantalla, o pantalla principal si se omite |
-| areaPantalla | Integer | → | Pantalla completa (por defecto) o área de trabajo |
+| IDpantalla | Integer | → | Número de la pantalla, o pantalla principal si se omite |
+| areaPantalla | Integer | → | Pantalla completa (por defecto) o área de trabajo |
@@ -51,6 +51,6 @@ Las siguientes imágenes demuestran las diferencias entre el tamaño de la panta
| | |
| --- | --- |
| Número de comando | 438 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
index 58db2831001981..6b4e88971b40b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
@@ -5,13 +5,13 @@ slug: /commands/screen-depth
displayed_sidebar: docs
---
-**SCREEN DEPTH** ( *profundidad* ; *color* {; *pantalla*} )
+**SCREEN DEPTH** ( *profundidad* : Integer ; *color* : Integer {; *pantalla* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| profundidad | Integer | ← | Profundidad de la pantalla (número de colores = 2 ^ profundidad) |
| color | Integer | ← | 1 = Pantalla color 0 = Pantalla blanco y negro o escala de grises |
-| pantalla | Integer | → | Número de la pantalla, o pantalla principal si se omite |
+| pantalla | Integer | → | Número de la pantalla, o pantalla principal si se omite |
@@ -65,6 +65,6 @@ Su aplicación muestra varios gráficos a color. Puede escribir en alguna parte
| | |
| --- | --- |
| Número de comando | 439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
index e036599e3a4117..e0dcd5b366128c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
@@ -5,11 +5,11 @@ slug: /commands/screen-height
displayed_sidebar: docs
---
-**Screen height** {( * )} : Integer
+**Screen height** ( * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Windows: altura de la ventana de la aplicación o altura de la pantalla si se especifica * Macintosh: altura de la pantalla principal |
+| * | Operador | → | Windows: altura de la ventana de la aplicación o altura de la pantalla si se especifica * Macintosh: altura de la pantalla principal |
| Resultado | Integer | ← | Altura expresada en píxeles |
@@ -30,6 +30,6 @@ En Mac OS, Screen height devuelve la altura de la pantalla principal, es decir l
| | |
| --- | --- |
| Número de comando | 188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
index 66fb27401878f4..bc70cb5bf197ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
@@ -5,11 +5,11 @@ slug: /commands/screen-width
displayed_sidebar: docs
---
-**Screen width** {( * )} : Integer
+**Screen width** ( * ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Windows: largo de la ventana de la aplicación o largo de la pantalla si se especifica * Macintosh: largo de la pantalla principal |
+| * | Operador | → | Windows: largo de la ventana de la aplicación o largo de la pantalla si se especifica * Macintosh: largo de la pantalla principal |
| Resultado | Integer | ← | Largo expresado en píxeles |
@@ -30,6 +30,6 @@ En Macintosh, Screen width devuelve el largo de la pantalla principal, es decir
| | |
| --- | --- |
| Número de comando | 187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
index 3bbda658e35b82..f634c0f92c0936 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
@@ -5,14 +5,14 @@ slug: /commands/select-document
displayed_sidebar: docs
---
-**Select document** ( *directorio* ; *tiposArchivos* ; *titulo* ; *opciones* {; *seleccionados*} ) : Text
+**Select document** ( *directorio* : Text, Integer ; *tiposArchivos* : Text ; *titulo* : Text ; *opciones* : Integer {; *seleccionados* : Text array} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| directorio | Text, Integer | → | • Ruta de acceso del directorio para mostrar por defecto en la caja de diálogo de selección o • Cadena vacía para mostrar la carpeta del usuario por defecto (“Mis documentos” bajo Windows, “Documentos” bajo Mac OS), o • Número de la ruta de acceso memorizada |
-| tiposArchivos | Text | → | Lista de los tipos de documentos a filtrar, o "*" para no filtrar los documentos |
-| titulo | Text | → | Título de la caja de diálogo de selección |
-| opciones | Integer | → | Opciones de selección |
+| directorio | Text, Integer | → | • Ruta de acceso del directorio para mostrar por defecto en la caja de diálogo de selección o • Cadena vacía para mostrar la carpeta del usuario por defecto (“Mis documentos” bajo Windows, “Documentos” bajo Mac OS), o • Número de la ruta de acceso memorizada |
+| tiposArchivos | Text | → | Lista de los tipos de documentos a filtrar, o "*" para no filtrar los documentos |
+| titulo | Text | → | Título de la caja de diálogo de selección |
+| opciones | Integer | → | Opciones de selección |
| seleccionados | Text array | ← | Array que contiene la lista de rutas de acceso + los nombres de los archivos seleccionados |
| Resultado | Text | ← | Nombre del archivo seleccionado (primer archivo de la lista en caso de selección múltiple) |
@@ -103,7 +103,7 @@ Si no se seleccionó ningún archivo (por ejemplo, si el usuario hace clic en el
| | |
| --- | --- |
| Número de comando | 905 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
index debad538f280c9..de12b66598f0d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
@@ -5,13 +5,13 @@ slug: /commands/select-folder
displayed_sidebar: docs
---
-**Select folder** ( {*mensaje* }{;}{ *rutaDefecto* {; *opciones*}} ) : Text
+**Select folder** ( {*mensaje* : Text }{;}{ *rutaDefecto* : Text, Integer {; *opciones* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Título de la ventana |
-| rutaDefecto | Text, Integer | → | • Ruta de acceso por defecto o • Ruta vacía para mostrar el usuario por defecto carpeta (“Mis documentos” bajo Windows, “Documentos” bajor Mac OS), o • Número de ruta de acceso memorizada |
-| opciones | Integer | → | Opciones de selección bajo Mac OS |
+| mensaje | Text | → | Título de la ventana |
+| rutaDefecto | Text, Integer | → | • Ruta de acceso por defecto o • Ruta vacía para mostrar el usuario por defecto carpeta (“Mis documentos” bajo Windows, “Documentos” bajor Mac OS), o • Número de ruta de acceso memorizada |
+| opciones | Integer | → | Opciones de selección bajo Mac OS |
| Resultado | Text | ← | Ruta de acceso al archivo seleccionado |
@@ -93,7 +93,7 @@ El siguiente ejemplo le permite seleccionar la carpeta en la cual se almacenará
| | |
| --- | --- |
| Número de comando | 670 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
index 86527c1e15abd7..4eee167a149c45 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
@@ -5,14 +5,14 @@ slug: /commands/select-list-items-by-position
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY POSITION** ( {* ;} *lista* ; *posicionElem* {; *posicionArray*} )
+**SELECT LIST ITEMS BY POSITION** ( {* ;} *lista* : Integer, Text ; *posicionElem* : Integer {; *posicionArray* : Integer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| posicionElem | Integer | → | Posición del elemento en la(s) lista(s) desplegada(s) /contraída(s) |
-| posicionArray | Integer array | → | Array de posiciones en la(s) lista(s) desplegada(s) /contraída(s) |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| posicionElem | Integer | → | Posición del elemento en la(s) lista(s) desplegada(s) /contraída(s) |
+| posicionArray | Integer array | → | Array de posiciones en la(s) lista(s) desplegada(s) /contraída(s) |
@@ -78,6 +78,6 @@ Se seleccionan los elementos segundo, tercero y quinto de la lista jerárquica
| | |
| --- | --- |
| Número de comando | 381 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
index 1e1d394cf1839b..eaaa696a7da617 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
@@ -5,13 +5,13 @@ slug: /commands/select-list-items-by-reference
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY REFERENCE** ( *lista* ; *refElem* {; *refArray*} )
+**SELECT LIST ITEMS BY REFERENCE** ( *lista* : Integer ; *refElem* : Integer {; *refArray* : Integer array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de lista |
-| refElem | Integer | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista |
-| refArray | Integer array | → | Array de números de referencia de elementos |
+| lista | Integer | → | Número de referencia de lista |
+| refElem | Integer | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista |
+| refArray | Integer array | → | Array de números de referencia de elementos |
@@ -55,6 +55,6 @@ Si trabaja con los números de referencia de los elementos, asegúrese de constr
| | |
| --- | --- |
| Número de comando | 630 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
index 3d785042e34d4b..43e9cfb9031667 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
@@ -5,12 +5,12 @@ slug: /commands/select-rgb-color
displayed_sidebar: docs
---
-**Select RGB color** {( *colorDefecto* {; *mensaje*} )} : Integer
+**Select RGB color** ( *colorDefecto* : Integer {; *mensaje* : Text} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| colorDefecto | Integer | → | Color RGB preseleccionado |
-| mensaje | Text | → | Título de la ventana de selección |
+| colorDefecto | Integer | → | Color RGB preseleccionado |
+| mensaje | Text | → | Título de la ventana de selección |
| Resultado | Integer | ← | Color RGB |
@@ -45,7 +45,7 @@ El efecto de la validación de esta caja de diálogo difiere dependiendo de la p
| | |
| --- | --- |
| Número de comando | 956 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
index 34e3907d4f8cfb..40ca0047b30953 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
@@ -5,14 +5,14 @@ slug: /commands/selected-list-items
displayed_sidebar: docs
---
-**Selected list items** ( {* ;} *lista* {; *arrayElem* {; *}} ) : Integer
+**Selected list items** ( {* ;} *lista* : Integer, Text {; *arrayElem* : Integer array {; *}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica: lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto tipo lista (si se pasa *) |
+| * | Operador | → | Si se especifica: lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto tipo lista (si se pasa *) |
| arrayElem | Integer array | ← | Si se omite el segundo *: Array contiene las posiciones de los elementos seleccionados en la(s) lista(s) Si se pasa el segundo *: Array contiene las referencias de los elementos seleccionados |
-| * | Operador | → | Si se omite: posición(es) de(l) (los) elemento(s) Si se pasa: referencia(s) de(l) (los) elemento(s) |
+| * | Operador | → | Si se omite: posición(es) de(l) (los) elemento(s) Si se pasa: referencia(s) de(l) (los) elemento(s) |
| Resultado | Integer | ← | Si se omite segundo *: posición del elemento seleccionado en la(s) lista(s) desplegada(s) Si se pasa el segundo *: Referencia del elemento seleccionado |
@@ -90,6 +90,6 @@ Esta es una lista llamada *hList,* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 379 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
index c0dceb38f9427d..ad37f7bb1c8cd3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
@@ -5,11 +5,11 @@ slug: /commands/selected-record-number
displayed_sidebar: docs
---
-**Selected record number** {( *tabla* )} : Integer
+**Selected record number** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual devolver el número de registros seleccionados, o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual devolver el número de registros seleccionados, o Tabla por defecto, si se omite |
| Resultado | Integer | ← | Número en la selección |
@@ -41,6 +41,6 @@ El siguiente ejemplo guarda el número del registro actual de la selección en u
| | |
| --- | --- |
| Número de comando | 246 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
index e35573bb9e5828..7456b2fe79f196 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/selection-range-to-array
displayed_sidebar: docs
---
-**SELECTION RANGE TO ARRAY** ( *inicio* ; *fin* {; *campo* ; *array*} {; *campo2* ; *array2* ; ... ; *campoN* ; *arrayN*} )
+**SELECTION RANGE TO ARRAY** ( *inicio* : Integer ; *fin* : Integer {; ...(*data* : Field, Table ; *array* : Array)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| inicio | Integer | → | Número de registro seleccionado a partir del cual comenzar la recuperación de datos |
-| fin | Integer | → | Número de registro seleccionado donde termina la recuperación de datos |
-| campo | Field, Table | → | Campo a utilizar para recuperar los datos o Tabla a utilizar para recuperar los números de registros |
+| inicio | Integer | → | Número de registro seleccionado a partir del cual comenzar la recuperación de datos |
+| fin | Integer | → | Número de registro seleccionado donde termina la recuperación de datos |
+| data | Field, Table | → | Campo a utilizar para recuperar los datos o Tabla a utilizar para recuperar los números de registros |
| array | Array | ← | Array para recibir los datos o números de registros de los campos |
@@ -114,6 +114,6 @@ Uso de los 50 primeros registros actuales de la tabla \[Facturas\] para cargar v
| | |
| --- | --- |
| Número de comando | 368 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
index ffdf231f8501dd..c6891a0c72aa28 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
@@ -5,15 +5,15 @@ slug: /commands/selection-to-array
displayed_sidebar: docs
---
-**SELECTION TO ARRAY** {( *campo* ; *array* {; *campo* ; *array* {; *campo2* ; *array2* ; ... ; *campoN* ; *arrayN*}}{; *})}
+**SELECTION TO ARRAY** ({ *campo* : Field ; *array* : Array {; *campo* : Field ; *array* : Array {; ...(*campo* : Field, *array* : Array)}}{; *}})
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field, Table | → | Campo a utilizar para recuperar datos o Tabla a utilizar para recuperar números de registros |
+| campo | Field, Table | → | Campo a utilizar para recuperar datos o Tabla a utilizar para recuperar números de registros |
| array | Array | ← | Array para recibir valores de campos o números de registros |
-| campo | Field | → | Campo a recuperar en el array |
+| campo | Field | → | Campo a recuperar en el array |
| array | Array | ← | Array que recibe los valores del campo |
-| * | Operador | → | Esperar ejecución |
+| * | Operador | → | Esperar ejecución |
@@ -85,6 +85,6 @@ El mismo ejemplo puede escribirse:
| | |
| --- | --- |
| Número de comando | 260 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
index 184b2460991f43..9e9693ad0acbcc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
@@ -5,13 +5,13 @@ slug: /commands/selection-to-json
displayed_sidebar: docs
---
-**Selection to JSON** ( *laTabla* {; *elCampo*}{; *elCampo2* ; ... ; *elCampoN*}{; *template*}) : Text
+**Selection to JSON** ( *laTabla* {; *...elCampo*}{; *template* : Object}) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Tabla a serializar |
-| elField | Field | → | Campo(s) cuyo(s) contenidos deben ser serializados |
-| template | Object | → | Objeto para la selección de etiquetas y de campos |
+| laTable | Table | → | Tabla a serializar |
+| elField | Field | → | Campo(s) cuyo(s) contenidos deben ser serializados |
+| template | Object | → | Objeto para la selección de etiquetas y de campos |
| Resultado | Text | ← | Cadena que contiene el array JSON serializado |
@@ -97,6 +97,6 @@ Puede utilizar la sintaxis *template* para exportar campos de tablas diferentes:
| | |
| --- | --- |
| Número de comando | 1234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md
index 466b820e5e7256..342384da423635 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER
| | |
| --- | --- |
| Número de comando | 308 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
index 76b5df5d4093e4..6014fcb337275e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
@@ -5,12 +5,12 @@ slug: /commands/semaphore
displayed_sidebar: docs
---
-**Semaphore** ( *semaforo* {; *ticCont*} ) : Boolean
+**Semaphore** ( *semaforo* : Text {; *ticCont* : Integer} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| semaforo | Text | → | Semáforo a probar y posicionar |
-| ticCont | Integer | → | Máximo tiempo de espera |
+| semaforo | Text | → | Semáforo a probar y posicionar |
+| ticCont | Integer | → | Máximo tiempo de espera |
| Resultado | Boolean | ← | El semáforo se ha creado correctamente (FALSE) o El semáforo ya había sido creado (TRUE) |
@@ -153,6 +153,6 @@ Sintaxis:
| | |
| --- | --- |
| Número de comando | 143 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
index 002e4fa3833976..e89820714b23c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
@@ -5,12 +5,12 @@ slug: /commands/send-message-to-remote-user
displayed_sidebar: docs
---
-**SEND MESSAGE TO REMOTE USER** ( *mensaje* {; *sesionUsuario*} )
+**SEND MESSAGE TO REMOTE USER** ( *mensaje* : Text {; *sesionUsuario* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mensaje | Text | → | Texto enviado al usuario |
-| sesionUsuario | Text | → | ID de sesión del usuario |
+| mensaje | Text | → | Texto enviado al usuario |
+| sesionUsuario | Text | → | ID de sesión del usuario |
@@ -58,6 +58,6 @@ Desea enviar un mensaje a todos los usuarios y luego enviar un mensaje a un usua
| | |
| --- | --- |
| Número de comando | 1632 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
index 13d31a6af40e2b..8803618a2c8fc5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
@@ -5,12 +5,12 @@ slug: /commands/send-packet
displayed_sidebar: docs
---
-**SEND PACKET** ( {*docRef* ;} *paquete* )
+**SEND PACKET** ( {*docRef* : Time ;} *paquete* : Text, Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento o canal actual (puerto serial o documento) |
-| paquete | Text, Blob | → | Cadena o BLOB a enviar |
+| docRef | Time | → | Número de referencia del documento o canal actual (puerto serial o documento) |
+| paquete | Text, Blob | → | Cadena o BLOB a enviar |
@@ -88,6 +88,6 @@ Este ejemplo ilustra el envío y recuperación de caracteres extendidos vía un
| | |
| --- | --- |
| Número de comando | 103 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
index 38c0841399ff6e..1265d2dc00f86c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
@@ -5,11 +5,11 @@ slug: /commands/send-record
displayed_sidebar: docs
---
-**SEND RECORD** {( *tabla* )}
+**SEND RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual enviar el registro actual o tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual enviar el registro actual o tabla por defecto, si se omite |
@@ -40,6 +40,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 78 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
index eb195e5c9a3670..6c4fa2a5eb06b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
@@ -5,11 +5,11 @@ slug: /commands/send-variable
displayed_sidebar: docs
---
-**SEND VARIABLE** ( *variable* )
+**SEND VARIABLE** ( *variable* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable a enviar |
+| variable | Variable | → | Variable a enviar |
@@ -38,6 +38,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 80 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
index e37e038b1e9aa1..70fc398c4fde7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
@@ -5,11 +5,11 @@ slug: /commands/sequence-number
displayed_sidebar: docs
---
-**Sequence number** {( *tabla* )} : Integer
+**Sequence number** ( *tabla* : Table ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla a numerar automáticamente o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla a numerar automáticamente o Tabla por defecto, si se omite |
| Resultado | Integer | ← | Número automático |
@@ -65,6 +65,6 @@ El siguiente ejemplo es parte de un método de formulario. Estas líneas de cód
| | |
| --- | --- |
| Número de comando | 244 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
index 285a6cf2b9ac0a..a1361a95843d60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
@@ -5,12 +5,12 @@ slug: /commands/set-about
displayed_sidebar: docs
---
-**SET ABOUT** ( *textoElem* ; *metodo* )
+**SET ABOUT** ( *textoElem* : Text ; *metodo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| textoElem | Text | → | Nueva línea de menú Acerca de |
-| metodo | Text | → | Nombre del método a ejecutar cuando se elije la línea |
+| textoElem | Text | → | Nueva línea de menú Acerca de |
+| metodo | Text | → | Nombre del método a ejecutar cuando se elije la línea |
@@ -49,6 +49,6 @@ El siguiente ejemplo reinicializa el comando de menú Acerca de 4D:
| | |
| --- | --- |
| Número de comando | 316 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
index e7e2e378c60c30..bad04b4ae8feb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/set-application-color-scheme
displayed_sidebar: docs
---
-**SET APPLICATION COLOR SCHEME** ( *esquemaColor* )
+**SET APPLICATION COLOR SCHEME** ( *esquemaColor* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| esquemaColor | Text | → | "claro", "oscuro" o "heredado" |
+| esquemaColor | Text | → | "claro", "oscuro" o "heredado" |
@@ -42,6 +42,6 @@ En el parámetro *esquemaColor*, pase un esquema de color a aplicar:
| | |
| --- | --- |
| Número de comando | 1762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
index bc82da3dcbc381..de81c231b3f9a5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/set-assert-enabled
displayed_sidebar: docs
---
-**SET ASSERT ENABLED** ( *aser* {; *} )
+**SET ASSERT ENABLED** ( *aser* : Boolean {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aser | Boolean | → | True = activar las aserciones, False = desactivar las aserciones |
-| * | Operador | → | Si se omite = el comando se aplica al conjunto de los procesos, Si se pasa = el comando se aplica al proceso actual únicamente |
+| aser | Boolean | → | True = activar las aserciones, False = desactivar las aserciones |
+| * | Operador | → | Si se omite = el comando se aplica al conjunto de los procesos, Si se pasa = el comando se aplica al proceso actual únicamente |
@@ -44,6 +44,6 @@ Desactivación de aserciones:
| | |
| --- | --- |
| Número de comando | 1131 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
index 2adb391357dd75..56269f10e720bc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
@@ -5,12 +5,12 @@ slug: /commands/set-automatic-relations
displayed_sidebar: docs
---
-**SET AUTOMATIC RELATIONS** ( *uno* {; *muchos*} )
+**SET AUTOMATIC RELATIONS** ( *uno* : Boolean {; *muchos* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| uno | Boolean | → | Estado de todas las relaciones Muchos a Uno |
-| muchos | Boolean | → | Estado de todas las relaciones de Uno a Muchos |
+| uno | Boolean | → | Estado de todas las relaciones Muchos a Uno |
+| muchos | Boolean | → | Estado de todas las relaciones de Uno a Muchos |
@@ -50,6 +50,6 @@ El siguiente ejemplo vuelve automáticas todas las relaciones Muchos a Uno y res
| | |
| --- | --- |
| Número de comando | 310 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
index 9f7f62658c3e43..c2f1c7bd43ed95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
@@ -5,13 +5,13 @@ slug: /commands/set-blob-size
displayed_sidebar: docs
---
-**SET BLOB SIZE** ( *BLOB* ; *tamaño* {; *relleno*} )
+**SET BLOB SIZE** ( *BLOB* : Blob ; *tamaño* : Integer {; *relleno* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | Campo o variable de tipo BLOB |
-| tamaño | Integer | → | Nuevo tamaño del BLOB |
-| relleno | Integer | → | Código ASCII del caracter de relleno |
+| Blob | Blob | → | Campo o variable de tipo BLOB |
+| tamaño | Integer | → | Nuevo tamaño del BLOB |
+| relleno | Integer | → | Código ASCII del caracter de relleno |
@@ -56,6 +56,6 @@ El siguiente ejemplo crea un BLOB de 16K lleno de 0xFF:
| | |
| --- | --- |
| Número de comando | 606 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
index 9c3dee9080542c..c6a28d742d3dfd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-blobs-cache-priority
displayed_sidebar: docs
---
-**SET BLOBS CACHE PRIORITY** ( *tabla* ; *prioridad* )
+**SET BLOBS CACHE PRIORITY** ( *tabla* : Table ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla cuyo valor de prioridad de datos "blobs" tiene que definirse para la sesión |
-| prioridad | Integer | → | Valor de prioridad de la caché para BLOBs en la tabla |
+| tabla | Table | → | Tabla cuyo valor de prioridad de datos "blobs" tiene que definirse para la sesión |
+| prioridad | Integer | → | Valor de prioridad de la caché para BLOBs en la tabla |
@@ -54,6 +54,6 @@ En el , usted desea definir una prioridad alta para la tabla \[Customer\]:
| | |
| --- | --- |
| Número de comando | 1425 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
index c9fd2c0b587f0d..fd44156a93ad39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-cache-size
displayed_sidebar: docs
---
-**SET CACHE SIZE** ( *tam* {; *libMin*} )
+**SET CACHE SIZE** ( *tam* : Real {; *libMin* : Real} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tam | Real | → | Tamaño de la caché de base de datos en bytes |
-| libMin | Real | → | Número mínimo de bytes a liberar cuando la caché está llena |
+| tam | Real | → | Tamaño de la caché de base de datos en bytes |
+| libMin | Real | → | Número mínimo de bytes a liberar cuando la caché está llena |
@@ -45,6 +45,6 @@ Usted quiere añadir 100 MB al tamaño de la caché de su base actual. Puede esc
| | |
| --- | --- |
| Número de comando | 1399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
index f77211a9a5fca7..6d25f79d988870 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
@@ -10,12 +10,12 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| puerto | Integer | → | Número de puerto serial |
-| param | Integer | → | Parámetros de puerto serial |
-| SET CHANNEL ( operacion ; doc ) |
-| Parámetro | Tipo | Descripción |
-| operacion | Integer | → | Operación a efectuar en el documento |
-| doc | Text | → | Nombre del documento |
+| puerto | Integer | → | Número de puerto serial |
+| param | Integer | → | Parámetros de puerto serial |
+| SET CHANNEL ( operacion ; doc ) | | | |
+| Parámetro | Tipo | Descripción | |
+| operacion | Integer | → | Operación a efectuar en el documento |
+| doc | Text | → | Nombre del documento |
@@ -174,7 +174,7 @@ Ver los ejemplos de los comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BUF
| | |
| --- | --- |
| Número de comando | 77 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
index 38b2809747d687..adc3a042addac2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
@@ -5,11 +5,11 @@ slug: /commands/set-current-printer
displayed_sidebar: docs
---
-**SET CURRENT PRINTER** ( *nomImpr* )
+**SET CURRENT PRINTER** ( *nomImpr* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomImpr | Text | → | Nombre de la impresora a utilizar |
+| nomImpr | Text | → | Nombre de la impresora a utilizar |
@@ -58,7 +58,7 @@ Creación de un documento PDF bajo Windows:
| | |
| --- | --- |
| Número de comando | 787 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
index c8ebe64b1e1142..da99a52eaf1c4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
@@ -5,11 +5,11 @@ slug: /commands/set-cursor
displayed_sidebar: docs
---
-**SET CURSOR** {( *cursor* )}
+**SET CURSOR** ({ *cursor* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cursor | Integer | → | Número de cursor sistema |
+| cursor | Integer | → | Número de cursor sistema |
@@ -66,6 +66,6 @@ Usted quiere que se muestre el cursor 
+**SET DATABASE LOCALIZATION** ( *codigoLeng* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| codigoLeng | Text | → | Selector del lenguaje |
-| * | Operador | → | Alcance del comando |
+| codigoLeng | Text | → | Selector del lenguaje |
+| * | Operador | → | Alcance del comando |
@@ -75,7 +75,7 @@ La interfaz de su aplicación utiliza la cadena estática ":xliff:shopping". Los
| | |
| --- | --- |
| Número de comando | 1104 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
index 9ebc5c0c5ed0f9..bdb5fbddf18eed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-database-parameter
displayed_sidebar: docs
---
-**SET DATABASE PARAMETER** ( {*tabla* ;} *selector* ; *valor* )
+**SET DATABASE PARAMETER** ( {*tabla* : Table ;} *selector* : Integer ; *valor* : Real, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual definir el parámetro o Tabla por defecto si se omite este parámetro |
-| selector | Integer | → | Código del parámetro de la base a modificar |
-| valor | Real, Text | → | Valor del parámetro |
+| tabla | Table | → | Tabla para la cual definir el parámetro o Tabla por defecto si se omite este parámetro |
+| selector | Integer | → | Código del parámetro de la base a modificar |
+| valor | Real, Text | → | Valor del parámetro |
@@ -1113,4 +1113,4 @@ Usted quiere exportar datos en JSON que contienen una fecha 4D convertida. Note
| | |
| --- | --- |
| Número de comando | 642 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
index 7e163b66fc5228..e1b972bc2174bc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
@@ -5,12 +5,12 @@ slug: /commands/set-default-century
displayed_sidebar: docs
---
-**SET DEFAULT CENTURY** ( *siglo* {; *añoPivote*} )
+**SET DEFAULT CENTURY** ( *siglo* : Integer {; *añoPivote* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| siglo | Integer | → | Siglo por defecto (menos uno) para la entrada de años con dos dígitos |
-| añoPivote | Integer | → | Año pivote para la entrada de años con dos dígitos |
+| siglo | Integer | → | Siglo por defecto (menos uno) para la entrada de años con dos dígitos |
+| añoPivote | Integer | → | Año pivote para la entrada de años con dos dígitos |
@@ -71,6 +71,6 @@ Este comando afecta sólo la entrada de datos. No tiene ningún efecto en el alm
| | |
| --- | --- |
| Número de comando | 392 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
index d4abd005381a79..5f9f766671e05e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
@@ -5,13 +5,13 @@ slug: /commands/set-document-position
displayed_sidebar: docs
---
-**SET DOCUMENT POSITION** ( *docRef* ; *offset* {; *ancla*} )
+**SET DOCUMENT POSITION** ( *docRef* : Time ; *offset* : Real {; *ancla* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento |
-| offset | Real | → | Posición del archivo (expresada en bytes) |
-| ancla | Integer | → | 1 = En relación con el inicio del archivo 2 = En relación con el final del archivo 3 = En relación con la posición actual |
+| docRef | Time | → | Número de referencia del documento |
+| offset | Real | → | Posición del archivo (expresada en bytes) |
+| ancla | Integer | → | 1 = En relación con el inicio del archivo 2 = En relación con el final del archivo 3 = En relación con la posición actual |
@@ -36,6 +36,6 @@ Dependiendo del ancla puede pasar valores positivos o negativos en *offset*.
| | |
| --- | --- |
| Número de comando | 482 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
index 48a31d87ef395b..ee8d9cf99fcf01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-document-properties
displayed_sidebar: docs
---
-**SET DOCUMENT PROPERTIES** ( *doc* ; *bloqueado* ; *invisible* ; creado el ; creado a las ; modificado el ; modificado a las )
+**SET DOCUMENT PROPERTIES** ( *doc* : Text ; *bloqueado* : Boolean ; *invisible* : Boolean ; creado el ; creado a las ; modificado el ; modificado a las )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| doc | Text | → | Nombre del documento o ruta de acceso completa al documento |
-| bloqueado | Boolean | → | Bloqueado (True) o desbloqueado (False) |
-| invisible | Boolean | → | Invisible (True) o Visible (False) |
-| creado el | Fecha | → | Fecha de creación |
-| creado a las | Hora | → | Hora de creación |
-| modificado el | Fecha | → | Última fecha de modificación |
-| modificado a las | Hora | → | Hora de la última modificación |
+| doc | Text | → | Nombre del documento o ruta de acceso completa al documento |
+| bloqueado | Boolean | → | Bloqueado (True) o desbloqueado (False) |
+| invisible | Boolean | → | Invisible (True) o Visible (False) |
+| creado el | Fecha | → | Fecha de creación |
+| creado a las | Hora | → | Hora de creación |
+| modificado el | Fecha | → | Última fecha de modificación |
+| modificado a las | Hora | → | Hora de la última modificación |
@@ -41,7 +41,7 @@ Las fechas y horas de creación y última modificación son administradas por el
| | |
| --- | --- |
| Número de comando | 478 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
index a8b00ea13a349d..94f918ffb506bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-document-size
displayed_sidebar: docs
---
-**SET DOCUMENT SIZE** ( *docRef* ; *tamaño* )
+**SET DOCUMENT SIZE** ( *docRef* : Time ; *tamaño* : Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referencia del documento |
-| tamaño | Real | → | Nuevo tamaño expresado en bytes |
+| docRef | Time | → | Número de referencia del documento |
+| tamaño | Real | → | Nuevo tamaño expresado en bytes |
@@ -33,6 +33,6 @@ En Macintosh, se modifica el tamaño del data fork del documento.
| | |
| --- | --- |
| Número de comando | 480 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
index f003927c46dd41..7c1cea6c86f527 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
@@ -5,13 +5,13 @@ slug: /commands/set-drag-icon
displayed_sidebar: docs
---
-**SET DRAG ICON** ( *icono* {; *despH* {; *despV*}} )
+**SET DRAG ICON** ( *icono* : Picture {; *despH* : Integer {; *despV* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| icono | Picture | → | Icono a utilizar durante arrastrar |
-| despH | Integer | → | Desplazamiento horizontal del borde izquierdo de la imagen con respecto a la posición del cursor (> = 0, a la izquierda, <0 = a la derecha) |
-| despV | Integer | → | Desplazamiento vertical del borde superior de la imagen con respecto a la posición del cursor (> 0 = hacia arriba, <0 = hacia abajo) |
+| icono | Picture | → | Icono a utilizar durante arrastrar |
+| despH | Integer | → | Desplazamiento horizontal del borde izquierdo de la imagen con respecto a la posición del cursor (> = 0, a la izquierda, <0 = a la derecha) |
+| despV | Integer | → | Desplazamiento vertical del borde superior de la imagen con respecto a la posición del cursor (> 0 = hacia arriba, <0 = hacia abajo) |
@@ -63,6 +63,6 @@ Note que puede modificar la posición del cursor con respecto a la imagen:
| | |
| --- | --- |
| Número de comando | 1272 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
index 1686ac59d274cd..18c5a970ec3d9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
@@ -5,12 +5,12 @@ slug: /commands/set-environment-variable
displayed_sidebar: docs
---
-**SET ENVIRONMENT VARIABLE** ( *nomVar* ; *valorVar* )
+**SET ENVIRONMENT VARIABLE** ( *nomVar* : Text ; *valorVar* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomVar | Text | → | Nombre de la variable a definir |
-| valorVar | Text | → | Valor de la variable o "" para restablecer el valor por defecto |
+| nomVar | Text | → | Nombre de la variable a definir |
+| valorVar | Text | → | Valor de la variable o "" para restablecer el valor por defecto |
@@ -23,7 +23,7 @@ Se recomienda utilizar la clase [`4D.SystemWorker class`](../API/SystemWorkerCla
## Descripción
-El comando **SET ENVIRONMENT VARIABLE** permite fijar el valor de una variable de entorno bajo macOS y Windows. Está diseñado para utilizarse con el comando [LAUNCH EXTERNAL PROCESS](launch-external-process.md). También funciona con el comando [PHP Execute](php-execute.md).
+El comando **SET ENVIRONMENT VARIABLE** permite fijar el valor de una variable de entorno bajo macOS y Windows. Está diseñado para utilizarse con el comando [LAUNCH EXTERNAL PROCESS](launch-external-process.md).
Pase el nombre de la variable a definir en *nomVar* y su valor en *valorVar*.
@@ -48,6 +48,6 @@ Consulte los ejemplos del comando [LAUNCH EXTERNAL PROCESS](launch-external-proc
| | |
| --- | --- |
| Número de comando | 812 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
index 9182c4ae3fde47..b58f98bfe9ee2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
@@ -5,12 +5,12 @@ slug: /commands/set-external-data-path
displayed_sidebar: docs
---
-**SET EXTERNAL DATA PATH** ( *aCampo* ; *ruta* )
+**SET EXTERNAL DATA PATH** ( *aCampo* : Text, Blob, Picture ; *ruta* : Text, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| aCampo | Text, Blob, Picture | → | Campo para el cual definir el lugar de almacenamiento |
-| ruta | Text, Integer | → | Ruta de acceso y nombre del archivo de almacenamiento externo o0 = utilizar la definición en estructura 1 = utilizar la carpeta por defecto |
+| aCampo | Text, Blob, Picture | → | Campo para el cual definir el lugar de almacenamiento |
+| ruta | Text, Integer | → | Ruta de acceso y nombre del archivo de almacenamiento externo o0 = utilizar la definición en estructura 1 = utilizar la carpeta por defecto |
@@ -63,6 +63,6 @@ Usted desea guardar el contenido de un archivo existente en el campo imagen, alm
| | |
| --- | --- |
| Número de comando | 1134 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
index 0f1fc31572573f..7e301206ea806c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
@@ -5,13 +5,13 @@ slug: /commands/set-field-relation
displayed_sidebar: docs
---
-**SET FIELD RELATION** ( tablasN | CampoN ; *uno* ; *muchos* )
+**SET FIELD RELATION** ( tablasN | CampoN ; *uno* : Integer ; *muchos* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tablasN | CampoN | Tabla, Campo | → | Tabla de inicio de las relaciones o Campo de inicio de la relación |
-| uno | Integer | → | Estado de la relación Muchos a Uno a partir del campo o de las relaciones Muchos a Uno de la tabla |
-| muchos | Integer | → | Estado de la relación Uno a Muchos a partir del campo o de las relaciones Uno a Muchos de la tabla |
+| tablasN | CampoN | Tabla, Campo | → | Tabla de inicio de las relaciones o Campo de inicio de la relación |
+| uno | Integer | → | Estado de la relación Muchos a Uno a partir del campo o de las relaciones Muchos a Uno de la tabla |
+| muchos | Integer | → | Estado de la relación Uno a Muchos a partir del campo o de las relaciones Uno a Muchos de la tabla |
@@ -60,7 +60,7 @@ El siguiente código permite definir sólo las relaciones útiles como automáti
| | |
| --- | --- |
| Número de comando | 919 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
index 975cbd58f4f570..708626ac6b772d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
@@ -5,14 +5,14 @@ slug: /commands/set-field-titles
displayed_sidebar: docs
---
-**SET FIELD TITLES** ( *tabla* ; *titulosCampos* ; *numCampos* {; *} )
+**SET FIELD TITLES** ( *tabla* : Table ; *titulosCampos* : Text array ; *numCampos* : Integer array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla para la cual definir los títulos de los campos |
-| titulosCampos | Text array | → | Nuevos títulos de los campos |
-| numCampos | Integer array | → | Números de los campos |
-| * | Operator | → | Utilizar los nombres personalizados en el editor de fórmulas |
+| tabla | Table | → | Tabla para la cual definir los títulos de los campos |
+| titulosCampos | Text array | → | Nuevos títulos de los campos |
+| numCampos | Integer array | → | Números de los campos |
+| * | Operator | → | Utilizar los nombres personalizados en el editor de fórmulas |
@@ -66,6 +66,6 @@ Ver el ejemplo del comando [SET TABLE TITLES](set-table-titles.md "SET TABLE TIT
| | |
| --- | --- |
| Número de comando | 602 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
index 9e3e69c3ce5820..fc8beddd1c73c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo al cual atribuir el valor NULL |
+| unField | Field | → | Campo al cual atribuir el valor NULL |
@@ -34,6 +34,6 @@ El valor NULL es utilizado por el motor SQL de 4D. Para mayor información, cons
| | |
| --- | --- |
| Número de comando | 965 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
index aea07a6ee24d87..7999292e078b6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/set-file-to-pasteboard
displayed_sidebar: docs
---
-**SET FILE TO PASTEBOARD** ( *archivo* {; *} )
+**SET FILE TO PASTEBOARD** ( *archivo* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| archivo | Text | → | Nombre del archivo o ruta de acceso completa del archivo |
-| * | Operador | → | Si se pasa = añadir; Si se omite= reemplazar |
+| archivo | Text | → | Nombre del archivo o ruta de acceso completa del archivo |
+| * | Operador | → | Si se pasa = añadir; Si se omite= reemplazar |
@@ -33,6 +33,6 @@ El comando admite el asterisco *\** como parámetro opcional. Por defecto, cuand
| | |
| --- | --- |
| Número de comando | 975 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
index ab8db523aa849c..45bf592f8cb567 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
@@ -5,11 +5,11 @@ slug: /commands/set-group-access
displayed_sidebar: docs
---
-**SET GROUP ACCESS** {( *grupos* )}
+**SET GROUP ACCESS** ({ *grupos* : Collection })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| grupos | Collection | → | Nombre de los grupos a los que debe pertenecer la cuenta de usuario 4D durante la sesión |
+| grupos | Collection | → | Nombre de los grupos a los que debe pertenecer la cuenta de usuario 4D durante la sesión |
@@ -50,7 +50,7 @@ Desea promocionar al usuario actual a los grupos "admin" y "plugins" para la ses
| | |
| --- | --- |
| Número de comando | 1737 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
index 16561214bbc487..4fa5d30c7ffce1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
@@ -5,15 +5,14 @@ slug: /commands/set-group-properties
displayed_sidebar: docs
---
-**Set group properties** ( *refGrupo* ; *nombre* ; *propietario* {; *miembros*} ) : Integer
+**Set group properties** ( *refGrupo* : Integer ; *nombre* : Text ; *propietario* : Integer {; *miembros* : Integer array} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refGrupo | Integer | → | Número de referencia único del grupo activo o -1 para añadir un grupo de Diseñador o -2 para añadir un grupo de Administrador |
-| ← | Número de identificación único del grupo agregado (si lo hay) |
-| nombre | Text | → | Nuevo nombre de grupo |
-| propietario | Integer | → | Número de referencia único del usuario o del propietario del nuevo grupo |
-| miembros | Integer array | → | Nuevos miembros del grupo |
+| refGrupo | Integer | ↔ | *in:* Unique ID number of group, -1 for adding a group
*out:* Unique ID number of added group (if any) |
+| nombre | Text | → | Nuevo nombre de grupo |
+| propietario | Integer | → | Número de referencia único del usuario o del propietario del nuevo grupo |
+| miembros | Integer array | → | Nuevos miembros del grupo |
| Resultado | Integer | ← | Número de referencia único del nuevo grupo |
@@ -62,7 +61,7 @@ Si no tiene privilegios de acceso para llamar al comando Set group properties o
| | |
| --- | --- |
| Número de comando | 614 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
index 0f10aab7d9cc46..423640c03e8733 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
@@ -5,11 +5,11 @@ slug: /commands/set-help-menu
displayed_sidebar: docs
---
-**SET HELP MENU** ( *menuCol* )
+**SET HELP MENU** ( *menuCol* : Collection )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menuCol | Collection | → | Colección de objetos de menú |
+| menuCol | Collection | → | Colección de objetos de menú |
@@ -65,6 +65,6 @@ Desea personalizar el menú **Ayuda** de su aplicación:
| | |
| --- | --- |
| Número de comando | 1801 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
index a8a1a3b75f2029..1d933e0fcfbda4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-index-cache-priority
displayed_sidebar: docs
---
-**SET INDEX CACHE PRIORITY** ( *campo* ; *prioridad* )
+**SET INDEX CACHE PRIORITY** ( *campo* : Field ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campo | Field | → | Campo cuyo valor de prioridad de índices debe ser configurado para la sesión |
-| prioridad | Integer | → | Valor de prioridad de la caché para el(los) índice(s) de campo |
+| campo | Field | → | Campo cuyo valor de prioridad de índices debe ser configurado para la sesión |
+| prioridad | Integer | → | Valor de prioridad de la caché para el(los) índice(s) de campo |
@@ -54,6 +54,6 @@ En el , usted desea definir una alta prioridad para los índices campo \[Cliente
| | |
| --- | --- |
| Número de comando | 1401 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
index 49e9d2c67ff0a3..d0a3a1e93621a7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
@@ -5,13 +5,13 @@ slug: /commands/set-index
displayed_sidebar: docs
---
-**SET INDEX** ( *unCampo* ; *index* {; *} )
+**SET INDEX** ( *unCampo* ; *index* : Boolean, Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| unField | Field | → | Campo del cual crear o borrar el índice |
-| index | Boolean, Integer | → | • True=Crear el índice, False=Borrar el índice, o • Crear un índice de tipo: -1=palabras claves, 0=por defecto, 1=B-Tree estándar, 3=B-Tree cluster |
-| * | Operator | → | Si se pasa * indexación asincrónica |
+| unField | Field | → | Campo del cual crear o borrar el índice |
+| index | Boolean, Integer | → | • True=Crear el índice, False=Borrar el índice, o • Crear un índice de tipo: -1=palabras claves, 0=por defecto, 1=B-Tree estándar, 3=B-Tree cluster |
+| * | Operator | → | Si se pasa * indexación asincrónica |
@@ -95,6 +95,6 @@ Creación de un índice de palabras claves:
| | |
| --- | --- |
| Número de comando | 344 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
index 456057a22b073a..99178d3bb33bdf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-font
displayed_sidebar: docs
---
-**SET LIST ITEM FONT** ( {* ;} *lista* ; refElem | * ; *fuente* )
+**SET LIST ITEM FONT** ( {* ;} *lista* : Integer, Text ; refElem | * ; *fuente* : Text, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
-| fuente | Text, Integer | → | Nombre o número de fuente |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| fuente | Text, Integer | → | Nombre o número de fuente |
@@ -48,6 +48,6 @@ Aplicar la fuente Times al elemento actual de la lista:
| | |
| --- | --- |
| Número de comando | 953 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
index 9b8640cbbb852b..bf87176dfff5ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-icon
displayed_sidebar: docs
---
-**SET LIST ITEM ICON** ( {* ;} *lista* ; refElem | * ; *icono* )
+**SET LIST ITEM ICON** ( {* ;} *lista* : Integer, Text ; refElem | * ; *icono* : Picture )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
-| icono | Picture | → | Icono a asociar al elemento |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Entero largo, Operador | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| icono | Picture | → | Icono a asociar al elemento |
@@ -52,6 +52,6 @@ Queremos asignar la misma imagen a dos elementos diferentes. El siguiente códig
| | |
| --- | --- |
| Número de comando | 950 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
index c35e0b0f3a479a..5a14576cea0ca7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
@@ -5,15 +5,15 @@ slug: /commands/set-list-item-parameter
displayed_sidebar: docs
---
-**SET LIST ITEM PARAMETER** ( {* ;} *lista* ; refElem | * ; *selector* ; *valor* )
+**SET LIST ITEM PARAMETER** ( {* ;} *lista* : Integer, Text ; refElem | * ; *selector* : Text ; *valor* : Text, Boolean, Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
-| selector | Text | → | Constante de parámetro |
-| valor | Text, Boolean, Real | → | Valor del parámetro |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es un número de referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Operador, Entero largo | → | Número de referencia del elemento o 0 para el último elemento añadido a la lista o * para el elemento actual de la lista |
+| selector | Text | → | Constante de parámetro |
+| valor | Text, Boolean, Real | → | Valor del parámetro |
@@ -67,6 +67,6 @@ Usted desea definir como lista de opciones de un menú emergente jerárquico una
| | |
| --- | --- |
| Número de comando | 986 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
index f20fe8eb0966f1..a55b7f0c376e63 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item-properties
displayed_sidebar: docs
---
-**SET LIST ITEM PROPERTIES** ( {* ;} *lista* ; refElem | * ; *editable* ; *estilos* {; *icono* {; *color*}} )
+**SET LIST ITEM PROPERTIES** ( {* ;} *lista* : Integer, Text ; refElem | * ; *editable* : Boolean ; *estilos* : Integer {; *icono* : Text, Integer {; *color* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
-| refElem | * | Operador, Entero largo | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
-| editable | Boolean | → | TRUE = Editable, FALSE = No-editable |
-| estilos | Integer | → | Estilo de fuente para el elemento |
-| icono | Text, Integer | → | Nombre o número de la imagen ("" o 0 para ningún icono) |
-| color | Integer | → | Valor de color RGB o -1 = restablecer color original |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre del objeto de tipo lista (si se pasa *) |
+| refElem | * | Operador, Entero largo | → | Número de referencia del elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
+| editable | Boolean | → | TRUE = Editable, FALSE = No-editable |
+| estilos | Integer | → | Estilo de fuente para el elemento |
+| icono | Text, Integer | → | Nombre o número de la imagen ("" o 0 para ningún icono) |
+| color | Integer | → | Valor de color RGB o -1 = restablecer color original |
@@ -83,6 +83,6 @@ El siguiente ejemplo cambia el texto del elemento actual de *lista* a negrita y
| | |
| --- | --- |
| Número de comando | 386 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
index e6e3700e83bbea..2bda408878aa33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item
displayed_sidebar: docs
---
-**SET LIST ITEM** ( {* ;} *lista* ; refElem | * ; *textElem* ; *nuevaRef* {; *sublista* ; *desplegada*} )
+**SET LIST ITEM** ( {* ;} *lista* : Integer, Text ; refElem | * ; *textElem* : Text ; *nuevaRef* : Integer {; *sublista* : Integer ; *desplegada* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
-| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo lista (si se pasa*) |
-| refElem | * | Operador, Entero largo | → | Número de referencia de elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
-| textElem | Text | → | Nuevo texto del elemento |
-| nuevaRef | Integer | → | Nuevo número de referencia del elemento |
-| sublista | Integer | → | Nueva sublista asociada al elemento, o 0 = ninguna sublista (separar actual, si la hay), o -1 = ningún cambio |
-| desplegada | Boolean | → | Indica si la sublista debe ser desplegada o contraída |
+| * | Operador | → | Si se especifica, lista es un nombre de objeto (cadena) Si se omite, lista es una referencia de lista |
+| lista | Integer, Text | → | Número de referencia de lista (si se omite *) o Nombre de objeto de tipo lista (si se pasa*) |
+| refElem | * | Operador, Entero largo | → | Número de referencia de elemento, o 0 para el último elemento añadido a la lista, o * para el elemento actual de la lista |
+| textElem | Text | → | Nuevo texto del elemento |
+| nuevaRef | Integer | → | Nuevo número de referencia del elemento |
+| sublista | Integer | → | Nueva sublista asociada al elemento, o 0 = ninguna sublista (separar actual, si la hay), o -1 = ningún cambio |
+| desplegada | Boolean | → | Indica si la sublista debe ser desplegada o contraída |
@@ -83,6 +83,6 @@ Ver ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número de comando | 385 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
index 164ba7f74b9fc6..b70cc3586cfbbd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-properties
displayed_sidebar: docs
---
-**SET LIST PROPERTIES** ( *lista* ; *apariencia* {; *icono* {; *altoLinea* {; *dobleClic* {; *multiSeleccion* {; *editable*}}}}} )
+**SET LIST PROPERTIES** ( *lista* : Integer ; *apariencia* : Integer {; *icono* : Integer {; *altoLinea* : Integer {; *dobleClic* : Integer {; *multiSeleccion* : Integer {; *editable* : Integer}}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de la lista |
-| apariencia | Integer | → | Estilo gráfico de la lista 1 = Lista jerárquica a la Macintosh 2 = Lista jerárquica a la Windows 0 = Aparición auto dependiendo de la plataforma |
-| icono | Integer | → | ID de recurso Mac OS ‘cicn’ o 0 = icono por defecto de la plataforma |
-| altoLinea | Integer | → | Altura mínima de la línea expresada en píxeles |
-| dobleClic | Integer | → | Desplegar/Contraer sublista con doble-clic 0 = Sí, 1= No |
-| multiSeleccion | Integer | → | Selecciones múltiples: 0 = No (por defecto), 1 = Sí |
-| editable | Integer | → | 0 = Lista no editable por el usuario, 1 = Lista editable por el usuario (por defecto) |
+| lista | Integer | → | Número de referencia de la lista |
+| apariencia | Integer | → | Estilo gráfico de la lista 1 = Lista jerárquica a la Macintosh 2 = Lista jerárquica a la Windows 0 = Aparición auto dependiendo de la plataforma |
+| icono | Integer | → | ID de recurso Mac OS ‘cicn’ o 0 = icono por defecto de la plataforma |
+| altoLinea | Integer | → | Altura mínima de la línea expresada en píxeles |
+| dobleClic | Integer | → | Desplegar/Contraer sublista con doble-clic 0 = Sí, 1= No |
+| multiSeleccion | Integer | → | Selecciones múltiples: 0 = No (por defecto), 1 = Sí |
+| editable | Integer | → | 0 = Lista no editable por el usuario, 1 = Lista editable por el usuario (por defecto) |
@@ -71,6 +71,6 @@ Desea rechazar la sublista de expandir/contraer al hacer doble clic. Puede escri
| | |
| --- | --- |
| Número de comando | 387 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
index a0475f56385d47..78a3e9c081f347 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/set-macro-parameter
displayed_sidebar: docs
---
-**SET MACRO PARAMETER** ( *selector* ; *paramText* )
+**SET MACRO PARAMETER** ( *selector* : Integer ; *paramText* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Selección a utilizar |
-| paramText | Text | → | Texto enviado |
+| selector | Integer | → | Selección a utilizar |
+| paramText | Text | → | Texto enviado |
@@ -63,6 +63,6 @@ Esta macro crea un nuevo texto que será devuelto al método llamante:
| | |
| --- | --- |
| Número de comando | 998 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
index 41d61b43bdb04e..b77b333fe32170 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-bar
displayed_sidebar: docs
---
-**SET MENU BAR** ( *barra* {; *proceso*}{; *} )
+**SET MENU BAR** ( *barra* : Integer, Text, Text {; *proceso* : Integer}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| barra | Integer, Text, Text | → | Número o nombre de la barra de menús o Referencia de menú |
-| proceso | Integer | → | Número de referencia del proceso |
-| * | Operador | → | Guardar el estado de la barra de menús |
+| barra | Integer, Text, Text | → | Número o nombre de la barra de menús o Referencia de menú |
+| proceso | Integer | → | Número de referencia del proceso |
+| * | Operador | → | Guardar el estado de la barra de menús |
@@ -124,6 +124,6 @@ En este ejemplo, crearemos por programación, una barra de menús incluyendo los
| | |
| --- | --- |
| Número de comando | 67 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
index 892adf51f69e2a..2f60acc7bc65dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-icon
displayed_sidebar: docs
---
-**SET MENU ITEM ICON** ( *menu* ; *lineamenu* ; *refIcon* {; *proceso*} )
+**SET MENU ITEM ICON** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *refIcon* : Text, Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
-| refIcon | Text, Integer | → | Nombre o número de la librería de imágenes a asociar a la línea de menú |
-| proceso | Integer | → | Número de proceso |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
+| refIcon | Text, Integer | → | Nombre o número de la librería de imágenes a asociar a la línea de menú |
+| proceso | Integer | → | Número de proceso |
@@ -49,6 +49,6 @@ Uso de una imagen ubicada en la carpeta Resources de la base:
| | |
| --- | --- |
| Número de comando | 984 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
index 5bf2ad21f8d051..6d8ea2fb803f98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-mark
displayed_sidebar: docs
---
-**SET MENU ITEM MARK** ( *menu* ; *lineamenu* ; *marca* {; *proceso*} )
+**SET MENU ITEM MARK** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *marca* : Text {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
-| marca | Text | → | Nueva marca de línea de menú |
-| proceso | Integer | → | Número de referencia de proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 por el último elemento añadido |
+| marca | Text | → | Nueva marca de línea de menú |
+| proceso | Integer | → | Número de referencia de proceso |
@@ -42,7 +42,7 @@ Ver ejemplo para el comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número de comando | 208 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
index 977386a954147f..160876c61ab2c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-method
displayed_sidebar: docs
---
-**SET MENU ITEM METHOD** ( *menu* ; *lineaMenu* ; *nomMetodo* {; *proceso*} )
+**SET MENU ITEM METHOD** ( *menu* : Integer, Text ; *lineaMenu* : Integer ; *nomMetodo* : Text {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
-| nomMetodo | Text | → | Nombre del método |
-| proceso | Integer | → | Número de proceso |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido al menú |
+| nomMetodo | Text | → | Nombre del método |
+| proceso | Integer | → | Número de proceso |
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 982 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
index 72d9abd70b5fb0..ec8011e7ab0253 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-item-parameter
displayed_sidebar: docs
---
-**SET MENU ITEM PARAMETER** ( *menu* ; *lineaMenu* ; *param* )
+**SET MENU ITEM PARAMETER** ( *menu* : Integer, Text ; *lineaMenu* : Integer ; *param* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineaMenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
-| param | Text | → | Cadena a asociar como parámetro |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineaMenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
+| param | Text | → | Cadena a asociar como parámetro |
@@ -47,6 +47,6 @@ Este código ofrece un menú que incluye los nombres de las ventanas abiertas y
| | |
| --- | --- |
| Número de comando | 1004 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
index af71f8fdfef720..90ae3fe4b4e00c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-property
displayed_sidebar: docs
---
-**SET MENU ITEM PROPERTY** ( *menu* ; *lineaMenu* ; *propiedad* ; *valor* {; *proceso*} )
+**SET MENU ITEM PROPERTY** ( *menu* : Integer, Text ; *lineaMenu* : Integer ; *propiedad* : Text ; *valor* : Text, Real, Boolean {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia del menú o número de menú |
-| lineaMenu | Integer | → | Número de línea del menú o -1 para la última línea añadida al menú |
-| propiedad | Text | → | Tipo de propiedad |
-| valor | Text, Number, Boolean | → | Valor de la propiedad |
-| proceso | Integer | → | Número del proceso |
+| menu | Integer, Text | → | Referencia del menú o número de menú |
+| lineaMenu | Integer | → | Número de línea del menú o -1 para la última línea añadida al menú |
+| propiedad | Text | → | Tipo de propiedad |
+| valor | Text, Real, Boolean | → | Valor de la propiedad |
+| proceso | Integer | → | Número del proceso |
@@ -64,6 +64,6 @@ En el caso de la propiedad Associated standard action, puede pasar en el paráme
| | |
| --- | --- |
| Número de comando | 973 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
index 69d5fa66022eb7..a9a8e26997443a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-shortcut
displayed_sidebar: docs
---
-**SET MENU ITEM SHORTCUT** ( *menu* ; *lineamenu* ; *tecla* ; *modificadores* {; *proceso*} )
+**SET MENU ITEM SHORTCUT** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *tecla* : Text, Integer ; *modificadores* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Referencia de menú o número de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
-| tecla | Text, Integer | → | Código del carácter de atajo de teclado o letra del atajo de teclado |
-| modificadores | Integer | → | Modificador(es) a asociar al atajo (se ignora si se pasa el código de tecla) |
-| proceso | Integer | → | Número de referencia del proceso |
+| menu | Integer, Text | → | Referencia de menú o número de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para la última línea añadida al menú |
+| tecla | Text, Integer | → | Código del carácter de atajo de teclado o letra del atajo de teclado |
+| modificadores | Integer | → | Modificador(es) a asociar al atajo (se ignora si se pasa el código de tecla) |
+| proceso | Integer | → | Número de referencia del proceso |
@@ -83,7 +83,7 @@ Definición del atajo de teclado F4 para la opción de menú "Cerrar":
| | |
| --- | --- |
| Número de comando | 423 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
index 087cd2e14f65a5..77160f3472d144 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-style
displayed_sidebar: docs
---
-**SET MENU ITEM STYLE** ( *menu* ; *lineamenu* ; *estiloItem* {; *proceso*} )
+**SET MENU ITEM STYLE** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *estiloItem* : Integer {; *proceso* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o Referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
-| estiloItem | Integer | → | Nuevo estilo de la línea de menú |
-| proceso | Integer | → | Número de referencia de proceso |
+| menu | Integer, Text | → | Número de menú o Referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
+| estiloItem | Integer | → | Nuevo estilo de la línea de menú |
+| proceso | Integer | → | Número de referencia de proceso |
@@ -44,7 +44,7 @@ En el parámetro *itemEstilo* puede definir el estilo del elemento. Pase una com
| | |
| --- | --- |
| Número de comando | 425 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
index 6ff90a0ead4a1f..f980202166107d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item
displayed_sidebar: docs
---
-**SET MENU ITEM** ( *menu* ; *lineamenu* ; *textoElem* {; *proceso*}{; *} )
+**SET MENU ITEM** ( *menu* : Integer, Text ; *lineamenu* : Integer ; *textoElem* : Text {; *proceso* : Integer}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menú o referencia de menú |
-| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
-| textoElem | Text | → | Nuevo texto de la línea de menú |
-| proceso | Integer | → | Número de referencia del proceso |
-| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
+| menu | Integer, Text | → | Número de menú o referencia de menú |
+| lineamenu | Integer | → | Número de línea de menú o -1 para el último elemento añadido |
+| textoElem | Text | → | Nuevo texto de la línea de menú |
+| proceso | Integer | → | Número de referencia del proceso |
+| * | Operador | → | Si se pasa: considerar metacaracteres como caracteres estándar |
@@ -38,7 +38,7 @@ Si omite el parámetro *proceso*, SET MENU ITEM se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 348 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
index 733edef2423566..457372b595adc9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
@@ -5,12 +5,12 @@ slug: /commands/set-picture-file-name
displayed_sidebar: docs
---
-**SET PICTURE FILE NAME** ( *imagen* ; *nomArchivo* )
+**SET PICTURE FILE NAME** ( *imagen* : Picture, Picture ; *nomArchivo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture, Picture | → | Imagen para la cual definir el nombre por defecto |
-| nomArchivo | Text | → | Nombre de la imagen por defecto |
+| imagen | Picture, Picture | → | Imagen para la cual definir el nombre por defecto |
+| nomArchivo | Text | → | Nombre de la imagen por defecto |
@@ -32,6 +32,6 @@ El nombre por defecto se utiliza como nombre de archivo cuando la imagen se expo
| | |
| --- | --- |
| Número de comando | 1172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
index a1526318bf385f..61f530e9867015 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-metadata
displayed_sidebar: docs
---
-**SET PICTURE METADATA** ( *imagen* ; *nomMeta* ; *ContenidoMeta* {; *nomMeta2* ; *ContenidoMeta2* ; ... ; *nomMetaN* ; *ContenidoMetaN*} )
+**SET PICTURE METADATA** ( *imagen* : Picture ; *nomMeta* : Text ; *ContenidoMeta* : Variable {; ...(*nomMeta* : Text, *ContenidoMeta* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen cuyos metadatos quiere escribir |
-| nomMeta | Text | → | Nombre o ruta del bloque a escribir |
-| ContenidoMeta | Variable | → | Contenido del metadato |
+| imagen | Picture | → | Imagen cuyos metadatos quiere escribir |
+| nomMeta | Text | → | Nombre o ruta del bloque a escribir |
+| ContenidoMeta | Variable | → | Contenido del metadato |
@@ -88,7 +88,7 @@ Cuanto todos los metadatos se manipulan vía una referencia de elementos DOM, la
| | |
| --- | --- |
| Número de comando | 1121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
index 0c0fd6da490c96..cdb4a16231655d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-to-library
displayed_sidebar: docs
---
-**SET PICTURE TO LIBRARY** ( *imagen* ; *refImag* ; *nomImag* )
+**SET PICTURE TO LIBRARY** ( *imagen* : Picture ; *refImag* : Integer ; *nomImag* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Nueva imagen |
-| refImag | Integer | → | Número de referencia de la imagen en la librería de imágenes |
-| nomImag | Text | → | Nuevo nombre de la imagen |
+| imagen | Picture | → | Nueva imagen |
+| refImag | Integer | → | Número de referencia de la imagen en la librería de imágenes |
+| nomImag | Text | → | Nuevo nombre de la imagen |
@@ -104,7 +104,7 @@ Si no hay suficiente memoria para añadir la imagen a la librería de imágenes,
| | |
| --- | --- |
| Número de comando | 566 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
index 3d7167be7a8e66..a42db7bb786d12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-picture-to-pasteboard
displayed_sidebar: docs
---
-**SET PICTURE TO PASTEBOARD** ( *imagen* )
+**SET PICTURE TO PASTEBOARD** ( *imagen* : Picture )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen a copiar en el portapapeles |
+| imagen | Picture | → | Imagen a copiar en el portapapeles |
@@ -54,7 +54,7 @@ Si no hay suficiente memoria para colocar una copia de la imagen en el portapape
| | |
| --- | --- |
| Número de comando | 521 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
index 3717b123fa6f50..df81084f7ac73c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
@@ -5,12 +5,12 @@ slug: /commands/set-plugin-access
displayed_sidebar: docs
---
-**SET PLUGIN ACCESS** ( *plugIn* ; *grupo* )
+**SET PLUGIN ACCESS** ( *plugIn* : Integer ; *grupo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Número del plug-in |
-| grupo | Text | → | Nombre del grupo a asociar al plug-in |
+| plugIn | Integer | → | Número del plug-in |
+| grupo | Text | → | Nombre del grupo a asociar al plug-in |
@@ -49,6 +49,6 @@ Pase en el parámetro *grupo* el nombre del grupo cuyos usuarios están autoriza
| | |
| --- | --- |
| Número de comando | 845 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
index f02034014efa78..f8ed6ac5eb85b5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-marker
displayed_sidebar: docs
---
-**SET PRINT MARKER** ( *markNum* ; *posicion* {; *} )
+**SET PRINT MARKER** ( *markNum* : Integer ; *posicion* : Integer {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| markNum | Integer | → | Número de marcador |
-| posicion | Integer | → | Nueva posición del marcador |
-| * | Operador | → | Si se pasa = mover los marcadores siguientes Si se omite = no mover los marcadores siguientes |
+| markNum | Integer | → | Número de marcador |
+| posicion | Integer | → | Nueva posición del marcador |
+| * | Operador | → | Si se pasa = mover los marcadores siguientes Si se omite = no mover los marcadores siguientes |
@@ -187,6 +187,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número de comando | 709 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
index d197dc3cc85acd..7a308d401d2e03 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-option
displayed_sidebar: docs
---
-**SET PRINT OPTION** ( *opcion* ; *valor1* {; *valor2*} )
+**SET PRINT OPTION** ( *opcion* : Integer ; *valor1* : Integer, Text {; *valor2* : Integer, Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opcion | Integer | → | Número de opción |
-| valor1 | Integer, Text | → | Valor 1 de la opción |
-| valor2 | Integer, Text | → | Valor 2 de la opción |
+| opcion | Integer | → | Número de opción |
+| valor1 | Integer, Text | → | Valor 1 de la opción |
+| valor2 | Integer, Text | → | Valor 2 de la opción |
@@ -85,7 +85,7 @@ Si el valor pasado por una *opción* es incorrecto o si no está disponible en l
| | |
| --- | --- |
| Número de comando | 733 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
index f87ee82bfb21d8..5401a8b5215ad4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| vista previa | Booleano | → | Previsualización en pantalla (TRUE), o Sin previsualización (FALSE) |
+| vista previa | Booleano | → | Previsualización en pantalla (TRUE), o Sin previsualización (FALSE) |
@@ -42,6 +42,6 @@ El siguiente ejemplo selecciona la opción Previsualización en pantalla para mo
| | |
| --- | --- |
| Número de comando | 364 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
index 09bf34d826a727..06759584b2ec65 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
@@ -5,14 +5,14 @@ slug: /commands/set-printable-margin
displayed_sidebar: docs
---
-**SET PRINTABLE MARGIN** ( *izquierda* ; *superior* ; *derecha* ; *inferior* )
+**SET PRINTABLE MARGIN** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| izquierda | Integer | → | Margen izquierda |
-| superior | Integer | → | Margen superior |
-| derecha | Integer | → | Margen derecha |
-| inferior | Integer | → | Margen inferior |
+| izquierda | Integer | → | Margen izquierda |
+| superior | Integer | → | Margen superior |
+| derecha | Integer | → | Margen derecha |
+| inferior | Integer | → | Margen inferior |
@@ -63,6 +63,6 @@ El siguiente ejemplo le permite obtener el tamaño del papel:
| | |
| --- | --- |
| Número de comando | 710 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
index 694be3199704fa..dc90d82680a78b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
@@ -5,13 +5,13 @@ slug: /commands/set-process-variable
displayed_sidebar: docs
---
-**SET PROCESS VARIABLE** ( *proceso* ; *dstVar* ; *expr* {; *dstVar2* ; *expr2* ; ... ; *dstVarN* ; *exprN*} )
+**SET PROCESS VARIABLE** ( *proceso* : Integer ; *dstVar* : Variable ; *expr* : Variable {; ...(*dstVar* : Variable, *expr* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso de destino |
-| dstVar | Variable | → | Variable de destino |
-| expr | Variable | → | Expresión fuente (o variable fuente) |
+| proceso | Integer | → | Número de proceso de destino |
+| dstVar | Variable | → | Variable de destino |
+| expr | Variable | → | Expresión fuente (o variable fuente) |
@@ -102,6 +102,6 @@ Este ejemplo escribe la instancia de las variables *v1*, *v2* y *v3* utilizando
| | |
| --- | --- |
| Número de comando | 370 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
index 8aa0478dea50ed..e9d10fa05c9ab3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-and-lock
displayed_sidebar: docs
---
-**SET QUERY AND LOCK** ( *bloq* )
+**SET QUERY AND LOCK** ( *bloq* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| bloq | Boolean | → | True = bloquear los registros encontrados por las búsquedas False = No bloquear registros |
+| bloq | Boolean | → | True = bloquear los registros encontrados por las búsquedas False = No bloquear registros |
@@ -75,7 +75,7 @@ Si el comando no se llama en el contexto de una transacción, se genera un error
| | |
| --- | --- |
| Número de comando | 661 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
index d306c4040c36f1..b5e6039a2069ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
@@ -5,13 +5,13 @@ slug: /commands/set-query-destination
displayed_sidebar: docs
---
-**SET QUERY DESTINATION** ( *destinoTipo* {; *destinoObjeto* {; *destPunt*}} )
+**SET QUERY DESTINATION** ( *destinoTipo* : Integer {; *destinoObjeto* : Text, Variable {; *destPunt* : Pointer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| destinoTipo | Integer | → | 0 = selección actual, 1 = conjunto, 2 = selección temporal, 3 = variable |
-| destinoObjeto | Text, Variable | → | Nombre del conjunto o Nombre de la selección temporal o variable |
-| destPunt | Pointer | → | Puntero a la variable local si destinoTipo=3 |
+| destinoTipo | Integer | → | 0 = selección actual, 1 = conjunto, 2 = selección temporal, 3 = variable |
+| destinoObjeto | Text, Variable | → | Nombre del conjunto o Nombre de la selección temporal o variable |
+| destPunt | Pointer | → | Puntero a la variable local si destinoTipo=3 |
@@ -257,6 +257,6 @@ Después de implementar este método de proyecto en su aplicación, puede escrib
| | |
| --- | --- |
| Número de comando | 396 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
index 2e1137885b98e6..17da7acd5bc606 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-limit
displayed_sidebar: docs
---
-**SET QUERY LIMIT** ( *limite* )
+**SET QUERY LIMIT** ( *limite* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| limite | Integer | → | Número límite de registros ó 0 para ilimitado |
+| limite | Integer | → | Número límite de registros ó 0 para ilimitado |
@@ -69,6 +69,6 @@ Ver el segundo ejemplo del comando [SET QUERY DESTINATION](set-query-destination
| | |
| --- | --- |
| Número de comando | 395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
index 819e9784a46d42..cf1f7833ee549d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
@@ -5,11 +5,11 @@ slug: /commands/set-real-comparison-level
displayed_sidebar: docs
---
-**SET REAL COMPARISON LEVEL** ( *epsilon* )
+**SET REAL COMPARISON LEVEL** ( *epsilon* : Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| epsilon | Real | → | Valor epsilon para las comparaciones de igualdad de los reales |
+| epsilon | Real | → | Valor epsilon para las comparaciones de igualdad de los reales |
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL**, puede aumentar o reducir el valor epsi
| | |
| --- | --- |
| Número de comando | 623 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
index 996143e64adb0c..6a4aae977464e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
@@ -5,11 +5,11 @@ slug: /commands/set-recent-fonts
displayed_sidebar: docs
---
-**SET RECENT FONTS** ( *arrayFuentes* )
+**SET RECENT FONTS** ( *arrayFuentes* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| arrayFuentes | Text array | → | Array de nombres de fuentes |
+| arrayFuentes | Text array | → | Array de nombres de fuentes |
@@ -47,6 +47,6 @@ Luego el menú contiene:
| | |
| --- | --- |
| Número de comando | 1305 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
index 9580000cd3251f..506ae2bcbd8f1f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-table-cache-priority
displayed_sidebar: docs
---
-**SET TABLE CACHE PRIORITY** ( *tabla* ; *prioridad* )
+**SET TABLE CACHE PRIORITY** ( *tabla* : Table ; *prioridad* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla cuyo valor de prioridad de datos escalares tiene que ser definido para la sesión |
-| prioridad | Integer | → | Valor de prioridad de caché para valores escalares en la tabla |
+| tabla | Table | → | Tabla cuyo valor de prioridad de datos escalares tiene que ser definido para la sesión |
+| prioridad | Integer | → | Valor de prioridad de caché para valores escalares en la tabla |
@@ -55,6 +55,6 @@ En el , usted desea definir una prioridad alta para el dato escalar \[Customer\]
| | |
| --- | --- |
| Número de comando | 1400 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
index 1c966b87ae5be7..ac034182dd6ce5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
@@ -5,13 +5,13 @@ slug: /commands/set-table-titles
displayed_sidebar: docs
---
-**SET TABLE TITLES** {( *titulosTablas* ; *numTablas* {; *})}
+**SET TABLE TITLES** ({ *titulosTablas* : Text array ; *numTablas* : Integer array {; *}})
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| titulosTablas | Text array | → | Nombres de las tablas tal como deben aparecer |
-| numTablas | Integer array | → | Números de las tablas |
-| * | Operador | → | Utilizar los nombres personalizados en el editor de fórmulas |
+| titulosTablas | Text array | → | Nombres de las tablas tal como deben aparecer |
+| numTablas | Integer array | → | Números de las tablas |
+| * | Operador | → | Utilizar los nombres personalizados en el editor de fórmulas |
@@ -185,6 +185,6 @@ Desea eliminar todos los nombres de tablas y campos personalizados definidos:
| | |
| --- | --- |
| Número de comando | 601 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
index 9dcb3b9c08165e..79ab18742108a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-text-to-pasteboard
displayed_sidebar: docs
---
-**SET TEXT TO PASTEBOARD** ( *texto* )
+**SET TEXT TO PASTEBOARD** ( *texto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a copiar en el portapapeles |
+| texto | Text | → | Texto a copiar en el portapapeles |
@@ -43,7 +43,7 @@ Si el texto se coloca correctamente en el portapapeles, la variable OK toma el v
| | |
| --- | --- |
| Número de comando | 523 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
index 550942186efdcc..a0501da8b328c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
@@ -5,11 +5,11 @@ slug: /commands/set-timeout
displayed_sidebar: docs
---
-**SET TIMEOUT** ( *segundos* )
+**SET TIMEOUT** ( *segundos* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| segundos | Integer | → | Número de segundos hasta el timeout |
+| segundos | Integer | → | Número de segundos hasta el timeout |
@@ -55,7 +55,7 @@ El siguiente ejemplo fija el puerto serial para recibir datos y el timeout. Los
| | |
| --- | --- |
| Número de comando | 268 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
index be69e97763f05e..d5794afb25d6c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
@@ -5,11 +5,11 @@ slug: /commands/set-timer
displayed_sidebar: docs
---
-**SET TIMER** ( *ticCont* )
+**SET TIMER** ( *ticCont* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ticCont | Integer | → | Número de tics |
+| ticCont | Integer | → | Número de tics |
@@ -51,6 +51,6 @@ Imaginemos que usted quiere, cuando un formulario aparece en pantalla, que el or
| | |
| --- | --- |
| Número de comando | 645 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
index e6348d4875034f..8865f76d7c216a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
@@ -5,12 +5,12 @@ slug: /commands/set-update-folder
displayed_sidebar: docs
---
-**SET UPDATE FOLDER** ( *rutaCarpeta* {; *erroresDiscretos*} )
+**SET UPDATE FOLDER** ( *rutaCarpeta* : Text {; *erroresDiscretos* : Boolean} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaCarpeta | Text | → | Ruta de acceso de la carpeta (paquete bajo macOS) que contiene la aplicación actualizada |
-| erroresDiscretos | Boolean | → | False (por defecto) = mostrar mensajes de error,
True = no reportarlos |
+| rutaCarpeta | Text | → | Ruta de acceso de la carpeta (paquete bajo macOS) que contiene la aplicación actualizada |
+| erroresDiscretos | Boolean | → | False (por defecto) = mostrar mensajes de error,
True = no reportarlos |
@@ -59,7 +59,7 @@ Usted creó una carpeta "MyUpdates" en su disco, en la cual ubicó una nueva ver
| | |
| --- | --- |
| Número de comando | 1291 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
index 6c0a16ec475159..b06b5b97c6a345 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
@@ -5,11 +5,11 @@ slug: /commands/set-user-alias
displayed_sidebar: docs
---
-**SET USER ALIAS** ( *alias* )
+**SET USER ALIAS** ( *alias* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| alias | Text | → | Nombre de usuario alternativo para la cuenta de usuario 4D o "" para reiniciar |
+| alias | Text | → | Nombre de usuario alternativo para la cuenta de usuario 4D o "" para reiniciar |
@@ -46,7 +46,7 @@ Sus usuarios se administran a través de una tabla personalizada y utilizan la m
| | |
| --- | --- |
| Número de comando | 1666 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
index 7e5a9f53324909..112ecbd56c64c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
@@ -5,19 +5,18 @@ slug: /commands/set-user-properties
displayed_sidebar: docs
---
-**Set user properties** ( *refUsuario* ; *nombre* ; *inicio* ; *contraseña* ; *nbLogin* ; *ultimoLogin* {; *membrecias* {; *grupoPropietario*}} ) : Integer
+**Set user properties** ( *refUsuario* : Integer ; *nombre* : Text ; *inicio* : Text ; *contraseña* : Text ; *nbLogin* : Integer ; *ultimoLogin* : Date {; *membrecias* : Integer array {; *grupoPropietario* : Integer}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de referencia único de cuenta de usuario, -1 para añadir un usuario |
-| ← | Número de referencia único de la cuenta de usuario añadida(si la hay) |
-| nombre | Text | → | Nuevo nombre de usuario |
-| inicio | Text | → | Nombre del nuevo método de inicio |
-| contraseña | Text | → | Nueva contraseña (encriptada) o * para no modificar la contraseña |
-| nbLogin | Integer | → | Nuevo número de usos de la base |
-| ultimoLogin | Date | → | Nueva fecha de la última utilización de la base |
-| membrecias | Integer array | → | Números de referencia de los grupos a los que pertenece el usuario |
-| grupoPropietario | Integer | → | Número de referencia del grupo propietario del usuario |
+| refUsuario | Integer | ↔ | *in:* Unique ID number of user account, -1 for adding a user
*out:* Unique ID number of added user account (if any) |
+| nombre | Text | → | Nuevo nombre de usuario |
+| inicio | Text | → | Nombre del nuevo método de inicio |
+| contraseña | Text | → | Nueva contraseña (encriptada) o * para no modificar la contraseña |
+| nbLogin | Integer | → | Nuevo número de usos de la base |
+| ultimoLogin | Date | → | Nueva fecha de la última utilización de la base |
+| membrecias | Integer array | → | Números de referencia de los grupos a los que pertenece el usuario |
+| grupoPropietario | Integer | → | Número de referencia del grupo propietario del usuario |
| Resultado | Integer | ← | Número de referencia único del nuevo usuario |
@@ -68,6 +67,6 @@ Si no tiene privilegios de acceso para llamar al comando Set user properties o s
| | |
| --- | --- |
| Número de comando | 612 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
index c714148d836a24..a89c6331060891 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
@@ -5,16 +5,16 @@ slug: /commands/set-window-rect
displayed_sidebar: docs
---
-**SET WINDOW RECT** ( *izquierda* ; *superior* ; *derecha* ; *inferior* {; *ventana*}{; *} )
+**SET WINDOW RECT** ( *izquierda* : Integer ; *superior* : Integer ; *derecha* : Integer ; *inferior* : Integer {; *ventana* : Integer}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| izquierda | Integer | → | Coordenada global izquierda del interior de la ventana |
-| superior | Integer | → | Coordenada global superior del interior de la ventana |
-| derecha | Integer | → | Coordenada global derecha del interior de la ventana |
-| inferior | Integer | → | Coordenada global inferior del interior de la ventana |
-| ventana | Integer | → | Número de referencia de la ventana o ventana del primer plano del proceso si se omite este parámetro |
-| * | Operador | → | Si se omite (por defecto) = cambiar ventana al fondo
Si se pasa = no cambiar el nivel de la ventana |
+| izquierda | Integer | → | Coordenada global izquierda del interior de la ventana |
+| superior | Integer | → | Coordenada global superior del interior de la ventana |
+| derecha | Integer | → | Coordenada global derecha del interior de la ventana |
+| inferior | Integer | → | Coordenada global inferior del interior de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana o ventana del primer plano del proceso si se omite este parámetro |
+| * | Operador | → | Si se omite (por defecto) = cambiar ventana al fondo
Si se pasa = no cambiar el nivel de la ventana |
@@ -67,6 +67,6 @@ La ventana aparece de esta forma:
| | |
| --- | --- |
| Número de comando | 444 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
index 5d603a7404cc95..996f841c1dfa95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
@@ -5,12 +5,12 @@ slug: /commands/set-window-title
displayed_sidebar: docs
---
-**SET WINDOW TITLE** ( *titulo* {; *ventana*} )
+**SET WINDOW TITLE** ( *titulo* : Text {; *ventana* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| titulo | Text | → | Título de la ventana |
-| ventana | Integer | → | Número de referencia de ventana o Ventana del primer plano del proceso actual si se omite el parámetro |
+| titulo | Text | → | Título de la ventana |
+| ventana | Integer | → | Número de referencia de ventana o Ventana del primer plano del proceso actual si se omite el parámetro |
@@ -55,6 +55,6 @@ Mientras efectúa una entrada de datos en un formulario, usted hace clic en un b
| | |
| --- | --- |
| Número de comando | 213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
index 0e1fe195f9839d..15c90d8f78fcdd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ El siguiente método de objeto para el botón *bUnBoton* efectúa diferentes acc
| | |
| --- | --- |
| Número de comando | 543 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
index adcc2a91144d23..3a72fda6467652 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver el ejemplo del comando [HIDE MENU BAR](hide-menu-bar.md "HIDE MENU BAR").
| | |
| --- | --- |
| Número de comando | 431 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
index 18bddd33587255..d12036dae14359 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
@@ -5,12 +5,12 @@ slug: /commands/show-on-disk
displayed_sidebar: docs
---
-**SHOW ON DISK** ( *nombreRuta* {; *} )
+**SHOW ON DISK** ( *nombreRuta* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreRuta | Text | → | Ruta de acceso del elemento a mostrar |
-| * | Operador | → | Si el elemento es una carpeta, mostrar su contenido |
+| nombreRuta | Text | → | Ruta de acceso del elemento a mostrar |
+| * | Operador | → | Si el elemento es una carpeta, mostrar su contenido |
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, d
| | |
| --- | --- |
| Número de comando | 922 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
index 30576291c96e22..b5786b4b0c261a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
@@ -5,11 +5,11 @@ slug: /commands/show-process
displayed_sidebar: docs
---
-**SHOW PROCESS** ( *proceso* )
+**SHOW PROCESS** ( *proceso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso del proceso a mostrar |
+| proceso | Integer | → | Número de proceso del proceso a mostrar |
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra un proceso llamado Clientes, que se ha ocultado pre
| | |
| --- | --- |
| Número de comando | 325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
index 7da018c4dc8018..3bd2892bc5998c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte el ejemplo del comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número de comando | 433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
index 60d7d678c11f5d..0a021e7719106e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
@@ -5,11 +5,11 @@ slug: /commands/show-window
displayed_sidebar: docs
---
-**SHOW WINDOW** {( *ventana* )}
+**SHOW WINDOW** ({ *ventana* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
@@ -32,6 +32,6 @@ Consulte el ejemplo del comando [HIDE WINDOW](hide-window.md "HIDE WINDOW").
| | |
| --- | --- |
| Número de comando | 435 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
index 6170addc409a60..61a2c3332663f5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
@@ -5,11 +5,11 @@ slug: /commands/sin
displayed_sidebar: docs
---
-**Sin** ( *Numero* ) : Real
+**Sin** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número, en radianes, cuyo seno se devuelve |
+| Numero | Real | → | Número, en radianes, cuyo seno se devuelve |
| Resultado | Real | ← | Seno del número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 17 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
index 0eb1c738d72eb4..ed5689324533d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
@@ -5,11 +5,11 @@ slug: /commands/size-of-array
displayed_sidebar: docs
---
-**Size of array** ( *array* ) : Integer
+**Size of array** ( *array* : Array ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Array cuyo tamaño se devuelve |
+| array | Array | → | Array cuyo tamaño se devuelve |
| Resultado | Integer | ← | Devuelve el número de elementos en el array |
@@ -52,6 +52,6 @@ El siguiente ejemplo devuelve el número de columnas de una fila en un array bid
| | |
| --- | --- |
| Número de comando | 274 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
index 961997f9981e64..8825f00d3c8591 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/soap-declaration
displayed_sidebar: docs
---
-**SOAP DECLARATION** ( *variable* ; *tipo* ; entrada_salida {; *alias*} )
+**SOAP DECLARATION** ( *variable* : Variable ; *tipo* : Integer ; entrada_salida {; *alias* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable que referencia un argumento SOAP entrante o saliente |
-| tipo | Integer | → | Tipo 4D al cual apunta el argumento |
-| entrada_salida | Integer | → | 1 = Entrada SOAP, 2 = Salida SOAP |
-| alias | Text | → | Nombre publicado para este argumento durante los intercambios SOAP |
+| variable | Variable | → | Variable que referencia un argumento SOAP entrante o saliente |
+| tipo | Integer | → | Tipo 4D al cual apunta el argumento |
+| entrada_salida | Integer | → | 1 = Entrada SOAP, 2 = Salida SOAP |
+| alias | Text | → | Nombre publicado para este argumento durante los intercambios SOAP |
@@ -192,6 +192,6 @@ Este ejemplo illustra los resultados de los diferentes tipos de declaraciones:
| | |
| --- | --- |
| Número de comando | 782 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
index d83b81f4d33ba2..107afb536e7c8e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/soap-get-info
displayed_sidebar: docs
---
-**SOAP get info** ( *numInfo* ) : Text
+**SOAP get info** ( *numInfo* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numInfo | Integer | → | Número de tipo de información SOAP a obtener |
+| numInfo | Integer | → | Número de tipo de información SOAP a obtener |
| Resultado | Text | ← | Información SOAP |
@@ -39,6 +39,6 @@ Pase en el parámetro *numInfo* el número del tipo de información SOAP que qui
| | |
| --- | --- |
| Número de comando | 784 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
index 51fa9c3d9ea0fd..7f405d4d34386c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
@@ -5,11 +5,11 @@ slug: /commands/soap-reject-new-requests
displayed_sidebar: docs
---
-**SOAP REJECT NEW REQUESTS** ( *estadoRechazar* )
+**SOAP REJECT NEW REQUESTS** ( *estadoRechazar* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| estadoRechazar | Boolean | → | True si se rechazan las nuevas solicitudes, de lo contrario false |
+| estadoRechazar | Boolean | → | True si se rechazan las nuevas solicitudes, de lo contrario false |
@@ -44,6 +44,6 @@ Desea rechazar cualquier solicitud nueva a su servidor de servicios web:
| | |
| --- | --- |
| Número de comando | 1636 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
index 99bb25236f8d05..d3ac2ec51312aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
@@ -5,12 +5,12 @@ slug: /commands/soap-send-fault
displayed_sidebar: docs
---
-**SOAP SEND FAULT** ( *tipoError* ; *descripcion* )
+**SOAP SEND FAULT** ( *tipoError* : Integer ; *descripcion* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoError | Integer | → | 1 = Error cliente, 2 = Error servidor |
-| descripcion | Text | → | Descripción del error a enviar al cliente SOAP |
+| tipoError | Integer | → | 1 = Error cliente, 2 = Error servidor |
+| descripcion | Text | → | Descripción del error a enviar al cliente SOAP |
@@ -49,6 +49,6 @@ Regresando al ejemplo del servicio Web “Raiz\_cuadrada” de la descripción d
| | |
| --- | --- |
| Número de comando | 781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
index b55c11724672d0..3b676192ec9e19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
@@ -5,12 +5,12 @@ slug: /commands/sort-array
displayed_sidebar: docs
---
-**SORT ARRAY** ( *array* {; *array2* ; ... ; *arrayN*}{; > o <} )
+**SORT ARRAY** ( *array* : Array {; *...array* : Array}{; > o <} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| array | Array | → | Arrays a ordenar |
-| > o < | Operador | → | ">" ordenar en orden ascendente, u "<" ordenar en orden descendente, u orden ascendente si se omite |
+| array | Array | → | Arrays a ordenar |
+| > o < | Operador | → | ">" ordenar en orden ascendente, u "<" ordenar en orden descendente, u orden ascendente si se omite |
@@ -86,6 +86,6 @@ Usted visualiza los nombres de una tabla *\[Personas\]* en una ventana flotante.
| | |
| --- | --- |
| Número de comando | 229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
index dfabfa670d6430..b2e90697e9a2a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
@@ -5,12 +5,12 @@ slug: /commands/sort-list
displayed_sidebar: docs
---
-**SORT LIST** ( *lista* {; > ou <} )
+**SORT LIST** ( *lista* : Integer {; > ou <} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referencia de lista |
-| > ou < | Operador | → | Criterio de ordenación: > ordenar en orden ascendente, u < ordenar en orden descendente |
+| lista | Integer | → | Número de referencia de lista |
+| > ou < | Operador | → | Criterio de ordenación: > ordenar en orden ascendente, u < ordenar en orden descendente |
@@ -62,6 +62,6 @@ La lista se ve de esta forma:
| | |
| --- | --- |
| Número de comando | 391 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
index 483f10ee2e859e..495a086d707987 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-add-to-user-dictionary
displayed_sidebar: docs
---
-**SPELL ADD TO USER DICTIONARY** ( *palabras* )
+**SPELL ADD TO USER DICTIONARY** ( *palabras* : Text, Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| palabras | Text, Text array | → | Palabra o lista de palabras para agregar al diccionario del usuario |
+| palabras | Text, Text array | → | Palabra o lista de palabras para agregar al diccionario del usuario |
@@ -42,6 +42,6 @@ Adición de nombres propios al diccionario de usuario:
| | |
| --- | --- |
| Número de comando | 1214 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
index 09e665783e5660..5949de0442261a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
@@ -5,14 +5,14 @@ slug: /commands/spell-check-text
displayed_sidebar: docs
---
-**SPELL CHECK TEXT** ( *texto* ; *posErr* ; *longErr* ; *posVerif* ; *arrSug* )
+**SPELL CHECK TEXT** ( *texto* : Text ; *posErr* : Integer ; *longErr* : Integer ; *posVerif* : Integer ; *arrSug* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a verificar |
+| texto | Text | → | Texto a verificar |
| posErr | Integer | ← | Posición del primer carácter de la palabra desconocida |
| longErr | Integer | ← | Longitud de la palabra desconocida |
-| posVerif | Integer | → | Posición de inicio de la verificación |
+| posVerif | Integer | → | Posición de inicio de la verificación |
| arrSug | Text array | ← | Lista de sugerencias |
@@ -58,7 +58,7 @@ Queremos contar el número posible de errores en un texto:
| | |
| --- | --- |
| Número de comando | 1215 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
index 76192f09751c47..a4297f56162f95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La verificación ortográfica comienza con la primera palabra del campo o variab
| | |
| --- | --- |
| Número de comando | 900 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
index b42d32b12fdd28..f3aada3ccb5d46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar el lenguaje del diccionario actual:
| | |
| --- | --- |
| Número de comando | 1205 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
index fcbb5bd61f5100..5a4eebfd95fbed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
@@ -5,7 +5,7 @@ slug: /commands/spell-get-dictionary-list
displayed_sidebar: docs
---
-**SPELL GET DICTIONARY LIST** ( *lengID* ; *lengArchivos* ; *lengNoms* )
+**SPELL GET DICTIONARY LIST** ( *lengID* : Integer array ; *lengArchivos* : Text array ; *lengNoms* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ Usted pone "fr-classic+reform1990.aff" y "fr-classic+reform1990.dic" como tambi
| | |
| --- | --- |
| Número de comando | 1204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
index 34e6e14e85375a..b90978adda372a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-set-current-dictionary
displayed_sidebar: docs
---
-**SPELL SET CURRENT DICTIONARY** ( *diccionario* )
+**SPELL SET CURRENT DICTIONARY** ( *diccionario* : Integer, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| diccionario | Integer, Text | → | ID, Nombre o Código de lenguaje del diccionario a utilizar para la corrección ortográficaSi se omite = restablecer el diccionario por defecto |
+| diccionario | Integer, Text | → | ID, Nombre o Código de lenguaje del diccionario a utilizar para la corrección ortográficaSi se omite = restablecer el diccionario por defecto |
@@ -56,7 +56,7 @@ Carga del diccionario "fr-classic" presente en la carpeta Hunspell:
| | |
| --- | --- |
| Número de comando | 904 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
index cca9970ecd52e4..d4f3704e0aaa06 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
@@ -5,13 +5,13 @@ slug: /commands/split-string
displayed_sidebar: docs
---
-**Split string** ( *cadenaASeparar* ; *separador* {; *opciones*} ) : Collection
+**Split string** ( *cadenaASeparar* : Text ; *separador* : Text {; *opciones* : Integer} ) : Collection
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| cadenaASeparar | Text | → | Valor de la cadena |
-| separador | Text | → | Cadena en la que cadenaASeparar se divide. Si cadena vacía (""), cada carácter de cadenaASeparar es una subcadena |
-| opciones | Integer | → | Opciones relativas a las cadenas vacías y espacios |
+| cadenaASeparar | Text | → | Valor de la cadena |
+| separador | Text | → | Cadena en la que cadenaASeparar se divide. Si cadena vacía (""), cada carácter de cadenaASeparar es una subcadena |
+| opciones | Integer | → | Opciones relativas a las cadenas vacías y espacios |
| Resultado | Collection | ← | Colección de subcadenas |
@@ -63,6 +63,6 @@ El parámetro *separador* puede ser una cadena de múltiples caracteres:
| | |
| --- | --- |
| Número de comando | 1554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
index df2482e375bd3e..f3799933f4e7c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 824 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
index f9a967d44950d4..aafd8fb8cb89d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá en la variable 4D *vNombre* los nombres (ename) almacena
| | |
| --- | --- |
| Número de comando | 821 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
index 4bc3db66eeac89..e228531fff5f42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
@@ -5,14 +5,14 @@ slug: /commands/sql-execute-script
displayed_sidebar: docs
---
-**SQL EXECUTE SCRIPT** ( *rutaScript* ; *accionError* {; *nomAtrib* ; *valAtrib*} {; *nomAtrib2* ; *valAtrib2* ; ... ; *nomAtribN* ; *valAtribN*} )
+**SQL EXECUTE SCRIPT** ( *rutaScript* : Text ; *accionError* : Integer {; *nomAtrib* : Text ; *valAtrib* : Text} {; ...(*nomAtrib* : Text, *valAtrib* : Text)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaScript | Text | → | Ruta de acceso completa del archivo que contiene el script SQL a ejecutar |
-| accionError | Integer | → | Acción a efectuar en caso de error durante la ejecución del script |
-| nomAtrib | Text | → | Nombre del atributo a utilizar |
-| valAtrib | Text | → | Valor del atributo |
+| rutaScript | Text | → | Ruta de acceso completa del archivo que contiene el script SQL a ejecutar |
+| accionError | Integer | → | Acción a efectuar en caso de error durante la ejecución del script |
+| nomAtrib | Text | → | Nombre del atributo a utilizar |
+| valAtrib | Text | → | Valor del atributo |
@@ -64,7 +64,7 @@ Si el script se ejecuta correctamente (no se encuentra ningún error), la variab
| | |
| --- | --- |
| Número de comando | 1089 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
index 04d8cc365a31d7..f83cb93ccbed45 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
@@ -5,11 +5,11 @@ slug: /commands/sql-execute
displayed_sidebar: docs
---
-**SQL EXECUTE** ( *instruccionSQL* {; *objAsoc*}{; *objAsoc2* ; ... ; *objAsocN*} )
+**SQL EXECUTE** ( *instruccionSQL* : Text {; *...objAsoc* : Variable, Field} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| instruccionSQL | Text | → | Comando SQL a ejecutar |
+| instruccionSQL | Text | → | Comando SQL a ejecutar |
| objAsoc | Variable, Field | ← | Recibe el resultado (si es necesario) |
@@ -163,7 +163,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1, de lo
| | |
| --- | --- |
| Número de comando | 820 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
index 3b97c821739965..81382370cfb9db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
@@ -5,14 +5,14 @@ slug: /commands/sql-export-database
displayed_sidebar: docs
---
-**SQL EXPORT DATABASE** ( *rutaCarpeta* {; *numArchivos* {; *tamLimiteArchivos* {; *tamLimiteCampos*}}} )
+**SQL EXPORT DATABASE** ( *rutaCarpeta* : Text {; *numArchivos* : Integer {; *tamLimiteArchivos* : Integer {; *tamLimiteCampos* : Integer}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaCarpeta | Text | → | Ruta de acceso de la carpeta de exportación o "" para mostrar una caja de diálogo de selección de carpeta |
-| numArchivos | Integer | → | Número máximo de archivos por carpeta |
-| tamLimiteArchivos | Integer | → | Valor límite de tamaño de los archivos de exportación (en KB) |
-| tamLimiteCampos | Integer | → | Limite de tamaño (en bytes) debajo del cual el contenido de un campo Texto, BLOB o Imagen se integrará al archivo principal |
+| rutaCarpeta | Text | → | Ruta de acceso de la carpeta de exportación o "" para mostrar una caja de diálogo de selección de carpeta |
+| numArchivos | Integer | → | Número máximo de archivos por carpeta |
+| tamLimiteArchivos | Integer | → | Valor límite de tamaño de los archivos de exportación (en KB) |
+| tamLimiteCampos | Integer | → | Limite de tamaño (en bytes) debajo del cual el contenido de un campo Texto, BLOB o Imagen se integrará al archivo principal |
@@ -61,7 +61,7 @@ Si la exportación se realiza correctamente, la variable OK toma el valor 1\. De
| | |
| --- | --- |
| Número de comando | 1065 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
index 2d38974b4b98ea..06ffb35476a57b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
@@ -5,15 +5,15 @@ slug: /commands/sql-export-selection
displayed_sidebar: docs
---
-**SQL EXPORT SELECTION** ( *tabla* ; *rutaCarpeta* {; *numArchivos* {; *tamLimiteArchivos* {; *tamLimiteCampos*}}} )
+**SQL EXPORT SELECTION** ( *tabla* : Table ; *rutaCarpeta* : Text {; *numArchivos* : Integer {; *tamLimiteArchivos* : Integer {; *tamLimiteCampos* : Integer}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual exportar la selección |
-| rutaCarpeta | Text | → | Ruta de acceso de la carpeta de exportación o "" para mostrar una caja de diálogo de selección de carpeta |
-| numArchivos | Integer | → | Número máximo de archivos por carpeta |
-| tamLimiteArchivos | Integer | → | Tamaño máximo del archivo Export.sql (en KB) |
-| tamLimiteCampos | Integer | → | Límite de tamaño debajo del cual el contenido de un campo Texto, BLOB o imagen se integrará al archivo principal (en bytes) |
+| tabla | Table | → | Tabla de la cual exportar la selección |
+| rutaCarpeta | Text | → | Ruta de acceso de la carpeta de exportación o "" para mostrar una caja de diálogo de selección de carpeta |
+| numArchivos | Integer | → | Número máximo de archivos por carpeta |
+| tamLimiteArchivos | Integer | → | Tamaño máximo del archivo Export.sql (en KB) |
+| tamLimiteCampos | Integer | → | Límite de tamaño debajo del cual el contenido de un campo Texto, BLOB o imagen se integrará al archivo principal (en bytes) |
@@ -42,7 +42,7 @@ Si la exportación se lleva a cabo correctamente, la variable *OK* toma el valor
| | |
| --- | --- |
| Número de comando | 1064 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
index 394c5900b76216..80a7b5dd10f67c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar la fuente de datos actual, generalmente antes de
| | |
| --- | --- |
| Número de comando | 990 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
index 56e8663b7e2233..3fa69e94e0c407 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-data-source-list
displayed_sidebar: docs
---
-**SQL GET DATA SOURCE LIST** ( *tipoFuente* ; *arrayNomsFuentes* ; *arraydrivers* )
+**SQL GET DATA SOURCE LIST** ( *tipoFuente* : Integer ; *arrayNomsFuentes* : Text array ; *arraydrivers* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoFuente | Integer | → | Tipo de fuente: usuario o sistema |
+| tipoFuente | Integer | → | Tipo de fuente: usuario o sistema |
| arrayNomsFuentes | Text array | ← | Array de nombres de fuentes de datos |
| arraydrivers | Text array | ← | Array de drivers de las fuentes |
@@ -59,7 +59,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 989 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
index f0e0f85824b8fd..bd15fba5e734c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-last-error
displayed_sidebar: docs
---
-**SQL GET LAST ERROR** ( *errCode* ; *errText* ; *errODBC* ; *errSQLServer* )
+**SQL GET LAST ERROR** ( *errCode* : Integer ; *errText* : Text ; *errODBC* : Text ; *errSQLServer* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Los dos últimos parámetros sólo se llenan cuando el error viene de la fuente
| | |
| --- | --- |
| Número de comando | 825 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
index 788bde5fc3d167..56657ad82b0517 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-option
displayed_sidebar: docs
---
-**SQL GET OPTION** ( *opcion* ; *valor* )
+**SQL GET OPTION** ( *opcion* : Integer ; *valor* : Integer, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opcion | Integer | → | Número de opción |
+| opcion | Integer | → | Número de opción |
| valor | Integer, Text | ← | Valor de la opción |
@@ -33,7 +33,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 819 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
index 326e636d1f6e7b..fc5bbac66427c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
@@ -5,11 +5,11 @@ slug: /commands/sql-load-record
displayed_sidebar: docs
---
-**SQL LOAD RECORD** {( *numReg* )}
+**SQL LOAD RECORD** ({ *numReg* : Integer })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numReg | Integer | → | Número de registros a cargar |
+| numReg | Integer | → | Número de registros a cargar |
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 822 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
index fbd3908c81102c..d8788cb65b41e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
@@ -5,14 +5,14 @@ slug: /commands/sql-login
displayed_sidebar: docs
---
-**SQL LOGIN** {( *entradaDatos* ; *nomUsuario* ; *contraseña* ; * )}
+**SQL LOGIN** ({ *entradaDatos* : Text ; *nomUsuario* : Text ; *contraseña* : Text ; * })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| entradaDatos | Text | → | Nombre de publicación de base 4D o
Dirección IP de la base remota o
Nombre de la fuente de datos en el administrador ODBC o
"" para mostrar el diálogo de selección |
-| nomUsuario | Text | → | Nombre del usuario registrado en la fuente de datos |
-| contraseña | Text | → | Contraseña del usuario registrado en la fuente de datos |
-| * | Operador | → | Aplicado a Begin SQL/End SQL Si se omite: no aplicar (base de datos local); si se pasa: aplicar |
+| entradaDatos | Text | → | Nombre de publicación de base 4D o
Dirección IP de la base remota o
Nombre de la fuente de datos en el administrador ODBC o
"" para mostrar el diálogo de selección |
+| nomUsuario | Text | → | Nombre del usuario registrado en la fuente de datos |
+| contraseña | Text | → | Contraseña del usuario registrado en la fuente de datos |
+| * | Operador | → | Aplicado a Begin SQL/End SQL Si se omite: no aplicar (base de datos local); si se pasa: aplicar |
@@ -207,7 +207,7 @@ Si la conexión es exitosa, el variable sistema OK toma el valor 1; de lo contra
| | |
| --- | --- |
| Número de comando | 817 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
index 66bfdbb39a2240..a3729cd0514c44 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la conexión se cierra correctamente, la variable sistema OK toma el valor 1;
| | |
| --- | --- |
| Número de comando | 872 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
index 000c7376d75e68..d49a8f9dc98287 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-option
displayed_sidebar: docs
---
-**SQL SET OPTION** ( *opción* ; *valor* )
+**SQL SET OPTION** ( *opción* : Integer ; *valor* : Integer, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opción | Integer | → | Número de opción a definir |
-| valor | Integer, Text | → | Nuevo valor de opción |
+| opción | Integer | → | Número de opción a definir |
+| valor | Integer, Text | → | Nuevo valor de opción |
@@ -52,7 +52,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1\. De l
| | |
| --- | --- |
| Número de comando | 818 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
index 61429261abb826..ccad421a0439e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-parameter
displayed_sidebar: docs
---
-**SQL SET PARAMETER** ( *objeto* ; *tipoParam* )
+**SQL SET PARAMETER** ( *objeto* : Object ; *tipoParam* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto 4D a utilizar (variable, array o campo) |
-| tipoParam | Integer | → | Tipo de parámetro |
+| objeto | Object | → | Objeto 4D a utilizar (variable, array o campo) |
+| tipoParam | Integer | → | Tipo de parámetro |
@@ -82,7 +82,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 823 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
index 22fff9c966d92b..c9666011c568a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
@@ -5,11 +5,11 @@ slug: /commands/square-root
displayed_sidebar: docs
---
-**Square root** ( *Numero* ) : Real
+**Square root** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número al que se le va a calcular la raíz cuadrada |
+| Numero | Real | → | Número al que se le va a calcular la raíz cuadrada |
| Resultado | Real | ← | Raíz cuadrada del número |
@@ -48,6 +48,6 @@ Por ejemplo, Hipotenusa (4;3) devuelve 5.
| | |
| --- | --- |
| Número de comando | 539 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
index 77110f0ae12388..83c72e22eba488 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
@@ -5,14 +5,14 @@ slug: /commands/st-compute-expressions
displayed_sidebar: docs
---
-**ST COMPUTE EXPRESSIONS** ( {* ;} *objeto* {; *inicioSel* {; *finSel*}} )
+**ST COMPUTE EXPRESSIONS** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
**ST COMPUTE EXPRESSIONS** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es el nombre de un objeto (cadena). Si se omite es un campo o una variable. |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es el nombre de un objeto (cadena). Si se omite es un campo o una variable. |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -71,7 +71,7 @@ Usted desea actualizar las referencias incluidas en la selección de texto:
| | |
| --- | --- |
| Número de comando | 1285 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
index 570c9e85782c4c..41f98307ae3256 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
@@ -5,15 +5,15 @@ slug: /commands/st-freeze-expressions
displayed_sidebar: docs
---
-**ST FREEZE EXPRESSIONS** ( {* ;} *objeto* {; *inicioSel* {; *finSel*}}{; *} )
+**ST FREEZE EXPRESSIONS** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *finSel* : Integer}}{; *} )
**ST FREEZE EXPRESSIONS** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *finSel* : Integer}}{; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
-| * | Operador | → | Si se pasa = actualizar las expresiones antes de congelarlas |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se pasa = actualizar las expresiones antes de congelarlas |
@@ -72,6 +72,6 @@ Usted quiere insertar la hora actual al inicio del texto y luego congelarla ante
| | |
| --- | --- |
| Número de comando | 1282 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
index bb66c7d7961ed2..cc4011d0663951 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
@@ -5,15 +5,15 @@ slug: /commands/st-get-attributes
displayed_sidebar: docs
---
-**ST GET ATTRIBUTES** ( {* ;} *objeto* ; *inicioSel* ; *finSel* ; *nomAtrib* ; *valorAtrib* {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} )
+**ST GET ATTRIBUTES** ( * ; *objeto* : Text ; *inicioSel* : Integer ; *finSel* : Integer ; *nomAtrib* : Integer ; *valorAtrib* : Variable {; ...(*nomAtrib* : Integer, *valorAtrib* : Variable)} )
**ST GET ATTRIBUTES** ( *objeto* : Field, Variable ; *inicioSel* : Integer ; *finSel* : Integer ; *nomAtrib* : Integer ; *valorAtrib* : Variable {; ...(*nomAtrib* : Integer, *valorAtrib* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (se se especifica *) o Variable o campo (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección de texto |
-| finSel | Integer | → | Fin de la selección de texto |
-| nomAtrib | Integer | → | Atributo a leer |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (se se especifica *) o Variable o campo (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección de texto |
+| finSel | Integer | → | Fin de la selección de texto |
+| nomAtrib | Integer | → | Atributo a leer |
| valorAtrib | Variable | ← | Valor actual del atributo |
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1094 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
index 70fa6f1aa9f96b..5905776d8f621c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-content-type
displayed_sidebar: docs
---
-**ST Get content type** ( {* ;} *object* {; *inicioSel* {; *finSel* {; *inicioBloq* {; *finBloq*}}}} ) : Integer
+**ST Get content type** ( * ; *object* : Text {; *inicioSel* : Integer {; *finSel* : Integer {; *inicioBloq* : Integer {; *finBloq* : Integer}}}} ) : Integer
**ST Get content type** ( *object* : Field, Variable {; *inicioSel* : Integer {; *finSel* : Integer {; *inicioBloq* : Integer {; *finBloq* : Integer}}}} ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| object | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| object | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
| inicioBloq | Integer | ← | Inicio de posición del primer tipo de la selección |
| finBloq | Integer | ← | Fin de posición del primer tipo de la selección |
| Resultado | Integer | ← | Tipo de contenido |
@@ -106,7 +106,7 @@ Usted desea mostrar los comandos de un menú contextual basado en el tipo de con
| | |
| --- | --- |
| Número de comando | 1286 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
index 230c6021aa0293..b33f37f7657b1c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-expression
displayed_sidebar: docs
---
-**ST Get expression** ( {* ;} *objeto* {; *inicioSel* {; *finSel*}} ) : Text
+**ST Get expression** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} ) : Text
**ST Get expression** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *finSel* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
| Resultado | Text | ← | Etiqueta de la expresión |
@@ -97,7 +97,7 @@ Usted quiere ejecutar un método 4D cuando se hace clic en un enlace de usuario:
| | |
| --- | --- |
| Número de comando | 1287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
index 0baccc12b5a136..3644e55975d5ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-options
displayed_sidebar: docs
---
-**ST GET OPTIONS** ( {* ;} *objeto* ; *opcion* ; *valor* {; *opcion2* ; *valor2* ; ... ; *opcionN* ; *valorN*} )
+**ST GET OPTIONS** ( * ; *objeto* : Text ; *opcion* : Integer ; *valor* : Integer {; ...(*opcion* : Integer, *valor* : Integer)} )
**ST GET OPTIONS** ( *objeto* : Field, Variable ; *opcion* : Integer ; *valor* : Integer {; ...(*opcion* : Integer, *valor* : Integer)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| opcion | Integer | → | Opción a leer |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| opcion | Integer | → | Opción a leer |
| valor | Integer | ← | Valor actual de la opción |
@@ -40,6 +40,6 @@ Pase el código de la opción a leer en el parámetro *opcion*. El comando devue
| | |
| --- | --- |
| Número de comando | 1290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
index 734df0c5353773..2293bb1d89681e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-plain-text
displayed_sidebar: docs
---
-**ST Get plain text** ( {* ;} *objeto* {; *refMode*} ) : Text
+**ST Get plain text** ( * ; *objeto* : Text {; *refMode* : Integer} ) : Text
**ST Get plain text** ( *objeto* : Field, Variable {; *refMode* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo. |
-| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
-| refMode | Integer | → | Modo para el manejo de las referencias presentes en el texto |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo. |
+| objeto | any | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| refMode | Integer | → | Modo para el manejo de las referencias presentes en el texto |
| Resultado | Text | ← | Texto sin etiquetas |
@@ -115,7 +115,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1092 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
index addc4767846508..f5bfa22d1641ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-text
displayed_sidebar: docs
---
-**ST Get text** ( {* ;} *objeto* {; *inicioSel* {; *finSel*}} ) : Text
+**ST Get text** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} ) : Text
**ST Get text** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *finSel* : Integer}} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o campo o variable texto (si se omite *) |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o campo o variable texto (si se omite *) |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
| Resultado | Text | ← | Texto incluyendo las etiquetas de estilo |
@@ -66,7 +66,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1116 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
index 7df737d9d234ee..c589d4253e0845 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-get-url
displayed_sidebar: docs
---
-**ST GET URL** ( {* ;} *objeto* ; *textoURL* ; *direccionURL* {; *inicioSel* {; *finSel*}} )
+**ST GET URL** ( * ; *objeto* : Text ; *textoURL* : Text ; *direccionURL* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
**ST GET URL** ( *objeto* : Field, Variable ; *textoURL* : Text ; *direccionURL* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
| textoURL | Text | ← | Texto visible de la URL |
| direccionURL | Text | ← | Dirección de la URL |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -75,6 +75,6 @@ Cuando hay un evento de doble clic, se comprueba que no existe en realidad una U
| | |
| --- | --- |
| Número de comando | 1288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
index 3bbac0c3483031..ce7c1e9d84742e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
@@ -5,15 +5,15 @@ slug: /commands/st-insert-expression
displayed_sidebar: docs
---
-**ST INSERT EXPRESSION** ( {* ;} *objeto* ; *expresion* {; *inicioSel* {; *finSel*}} )
+**ST INSERT EXPRESSION** ( {* ;} *objeto* : Object ; *expresion* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
-| objeto | Object | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| expresion | Text | → | Expresión y (opcional) formato a insertar |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
+| objeto | Object | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| expresion | Text | → | Expresión y (opcional) formato a insertar |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -92,7 +92,7 @@ Desea reemplazar el texto seleccionado con el resultado de un método proyecto:
| | |
| --- | --- |
| Número de comando | 1281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
index 9d3bd9fcc369db..90a48e15dcc23d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-insert-url
displayed_sidebar: docs
---
-**ST INSERT URL** ( {* ;} *objeto* ; *textoURL* ; *direccionURL* {; *inicioSel* {; *finSel*}} )
+**ST INSERT URL** ( * ; *objeto* : Text ; *textoURL* : Text ; *direccionURL* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
**ST INSERT URL** ( *objeto* : Field, Variable ; *textoURL* : Text ; *direccionURL* : Text {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| textoURL | Text | → | Texto visible del URL |
-| direccionURL | Text | → | Dirección de la URL |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| textoURL | Text | → | Texto visible del URL |
+| direccionURL | Text | → | Dirección de la URL |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -69,7 +69,7 @@ Usted desea insertar un enlace al sitio web de 4D para reemplazar el texto selec
| | |
| --- | --- |
| Número de comando | 1280 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
index 246e0b91695f2a..a9fbeab2ef8525 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
@@ -5,16 +5,16 @@ slug: /commands/st-set-attributes
displayed_sidebar: docs
---
-**ST SET ATTRIBUTES** ( {* ;} *objeto* ; *inicioSel* ; *finSel* ; *nomAtrib* ; *valorAtrib* {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} )
+**ST SET ATTRIBUTES** ( * ; *objeto* : Text ; *inicioSel* : Integer ; *finSel* : Integer ; *nomAtrib* : Text ; *valorAtrib* : Text, Integer {; ...(*nomAtrib* : Text, *valorAtrib* : Text, Integer)} )
**ST SET ATTRIBUTES** ( *objeto* : Field, Variable ; *inicioSel* : Integer ; *finSel* : Integer ; *nomAtrib* : Text ; *valorAtrib* : Text, Integer {; ...(*nomAtrib* : Text, *valorAtrib* : Text, Integer)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *), o Variable o campo Texto (si se omite *) |
-| inicioSel | Integer | → | Inicio de la nueva selección de texto |
-| finSel | Integer | → | Fin de la nueva selección de texto |
-| nomAtrib | Text | → | Atributo a definir |
-| valorAtrib | Text, Integer | → | Nuevo valor del atributo |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *), o Variable o campo Texto (si se omite *) |
+| inicioSel | Integer | → | Inicio de la nueva selección de texto |
+| finSel | Integer | → | Fin de la nueva selección de texto |
+| nomAtrib | Text | → | Atributo a definir |
+| valorAtrib | Text, Integer | → | Nuevo valor del atributo |
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1093 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
index e29beb7a8f99e7..5c4550e94fa547 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
@@ -5,14 +5,14 @@ slug: /commands/st-set-options
displayed_sidebar: docs
---
-**ST SET OPTIONS** ( {* ;} *objeto* ; *opcion* ; *valor* {; *opcion2* ; *valor2* ; ... ; *opcionN* ; *valorN*} )
+**ST SET OPTIONS** ( * ; *objeto* : Text ; *opcion* : Integer ; *valor* : Integer {; ...(*opcion* : Integer, *valor* : Integer)} )
**ST SET OPTIONS** ( *objeto* : Field, Variable ; *opcion* : Integer ; *valor* : Integer {; ...(*opcion* : Integer, *valor* : Integer)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
-| opcion | Integer | → | Opción a definir |
-| valor | Integer | → | Nuevo valor de la opción |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena)
Si se omite, objeto es un campo o una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o
Campo o variable (si se omite *) |
+| opcion | Integer | → | Opción a definir |
+| valor | Integer | → | Nuevo valor de la opción |
@@ -67,6 +67,6 @@ El siguiente código permite cambiar el modo de visualización del área:
| | |
| --- | --- |
| Número de comando | 1289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
index 2c57bdb6745e04..7cceb8865c105f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-plain-text
displayed_sidebar: docs
---
-**ST SET PLAIN TEXT** ( {* ;} *objeto* ; *nuevTexto* {; *inicioSel* {; *finSel*}} )
+**ST SET PLAIN TEXT** ( * ; *objeto* : Text ; *nuevTexto* {; *inicioSel* : Integer {; *finSel* : Integer}} )
**ST SET PLAIN TEXT** ( *objeto* : Field, Variable ; *nuevTexto* {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
-| nuevText | Text | → | Texto a insertar |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena). Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo (si se omite *) |
+| nuevText | Text | → | Texto a insertar |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -98,7 +98,7 @@ En caso de un error, la variable no cambia. Cuando se produce un error en una va
| | |
| --- | --- |
| Número de comando | 1136 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
index 0c735699477514..db546b22d70bc8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-text
displayed_sidebar: docs
---
-**ST SET TEXT** ( {* ;} *objeto* ; *nuevTexto* {; *inicioSel* {; *finSel*}} )
+**ST SET TEXT** ( * ; *objeto* : Text ; *nuevTexto* {; *inicioSel* : Integer {; *finSel* : Integer}} )
**ST SET TEXT** ( *objeto* : Field, Variable ; *nuevTexto* {; *inicioSel* : Integer {; *finSel* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo Texto (si se omite *) |
-| nuevText | Text | → | Texto a insertar |
-| inicioSel | Integer | → | Inicio de la selección |
-| finSel | Integer | → | Fin de la selección |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable o un campo |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable o campo Texto (si se omite *) |
+| nuevText | Text | → | Texto a insertar |
+| inicioSel | Integer | → | Inicio de la selección |
+| finSel | Integer | → | Fin de la selección |
@@ -95,7 +95,7 @@ Consulte el ejemplo del comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número de comando | 1115 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
index 77243cca66b97d..e86e8fd3b0a9a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
@@ -5,12 +5,12 @@ slug: /commands/start-monitoring-activity
displayed_sidebar: docs
---
-**START MONITORING ACTIVITY** ( *duracion* {; *fuente*} )
+**START MONITORING ACTIVITY** ( *duracion* : Real {; *fuente* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| duracion | Real | → | Período de tiempo (en segundos) antes de que comience el registro |
-| fuente | Integer | → | Origen de una operación |
+| duracion | Real | → | Período de tiempo (en segundos) antes de que comience el registro |
+| fuente | Integer | → | Origen de una operación |
@@ -98,6 +98,6 @@ Desea iniciar/detener la supervisión y revisión de los datos 4D y las activida
| | |
| --- | --- |
| Número de comando | 1712 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
index d39a9af5d1bc54..9925c40d0950b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si el servidor SQL ha sido lanzado correctamente, la variable sistema OK toma el
| | |
| --- | --- |
| Número de comando | 962 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
index 3be6ad72e16b0b..634d420f770faa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir de la versión 11 de 4D, puede anidar varias transacciones (subtransacc
| | |
| --- | --- |
| Número de comando | 239 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
index 5d6241742a66c7..761c7a266bd3b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
@@ -5,11 +5,11 @@ slug: /commands/std-deviation
displayed_sidebar: docs
---
-**Std deviation** ( *series* ) : Real
+**Std deviation** ( *series* : Field, Array ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve la desviación estándar |
+| series | Field, Array | → | Datos para los cuales se devuelve la desviación estándar |
| Resultado | Real | ← | Desviación estándar de series |
@@ -66,6 +66,6 @@ Este ejemplo obtiene la desviación estándar de una serie de valores ubicados e
| | |
| --- | --- |
| Número de comando | 26 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
index 10ca06684a1276..49a6812f049ec6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver ejemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número de comando | 1721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
index 820c6676ac2a52..f25763b8b15e3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Si el servidor SQL ha sido lanzado, todas las conexiones SQL se interrumpen y el
| | |
| --- | --- |
| Número de comando | 963 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
index 846fe60afb5beb..124540d8d51a41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este ejemplo muestra una forma estándar de establecer valores de **Almacenamien
| | |
| --- | --- |
| Número de comando | 1525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
index 291d820dcbff3b..3fef5f161c9d95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/string-list-to-array
displayed_sidebar: docs
---
-**STRING LIST TO ARRAY** ( *resNum* ; *cadenas* {; *resArchivo*} )
+**STRING LIST TO ARRAY** ( *resNum* : Integer ; *cadenas* : Text array {; *resArchivo* : Time} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de referencia del recurso o Atributo "id" del elemento "group" (XLIFF) |
+| resNum | Integer | → | Número de referencia del recurso o Atributo "id" del elemento "group" (XLIFF) |
| cadenas | Text array | ← | Cadenas del elemento "group" (XLIFF) |
-| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos XLIFF o los archivos de recursos abiertos, si se omite |
+| resArchivo | Time | → | Número de referencia del archivo de recursos o Todos los archivos XLIFF o los archivos de recursos abiertos, si se omite |
@@ -48,7 +48,7 @@ Si se encuentra el recurso, la variable sistema OK toma el valor 1, de lo contra
| | |
| --- | --- |
| Número de comando | 511 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
index b58aaa0fd80ec0..4b4224e3a3cb68 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
@@ -5,11 +5,11 @@ slug: /commands/structure-file
displayed_sidebar: docs
---
-**Structure file** {( * )} : Text
+**Structure file** ( * ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Devuelve el archivo de estructura de la base local |
+| * | Operador | → | Devuelve el archivo de estructura de la base local |
| Resultado | Text | ← | Nombre largo del archivo de estructura de la base |
@@ -73,6 +73,6 @@ El siguiente ejemplo puede utilizarse para saber si el método se llama desde un
| | |
| --- | --- |
| Número de comando | 489 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
index 9bbab6a88d5d13..ee8b3ef52883fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
@@ -5,13 +5,13 @@ slug: /commands/substring
displayed_sidebar: docs
---
-**Substring** ( *fuente* ; *aPartirDe* {; *numCaracteres*} ) : Text
+**Substring** ( *fuente* : Text ; *aPartirDe* : Integer {; *numCaracteres* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fuente | Text | → | Cadena de la cual obtener una subcadena |
-| aPartirDe | Integer | → | Posición del primer carácter |
-| numCaracteres | Integer | → | Número de caracteres a obtener |
+| fuente | Text | → | Cadena de la cual obtener una subcadena |
+| aPartirDe | Integer | → | Posición del primer carácter |
+| numCaracteres | Integer | → | Número de caracteres a obtener |
| Resultado | Text | ← | Subcadena de fuente |
@@ -69,6 +69,6 @@ El siguiente método de proyecto añade los párrafos que se encuentran en el te
| | |
| --- | --- |
| Número de comando | 12 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
index 12d31b843e1e8b..fc816fb0ea3f5b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
@@ -5,12 +5,12 @@ slug: /commands/subtotal
displayed_sidebar: docs
---
-**Subtotal** ( *valores* {; *saltoPag*} ) : Real
+**Subtotal** ( *valores* : Field {; *saltoPag* : Integer} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| valores | Field | → | Campo o variable numérica donde quiere devolver el subtotal |
-| saltoPag | Integer | → | Nivel de ruptura para el cual efectuar un salto de página |
+| valores | Field | → | Campo o variable numérica donde quiere devolver el subtotal |
+| saltoPag | Integer | → | Nivel de ruptura para el cual efectuar un salto de página |
| Resultado | Real | ← | Subtotal de valores |
@@ -68,6 +68,6 @@ La función Subtotal es necesaria para mostrar valores en un formulario.
| | |
| --- | --- |
| Número de comando | 97 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
index 4b254fda959543..6923281a3f1afe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
@@ -5,11 +5,11 @@ slug: /commands/sum-squares
displayed_sidebar: docs
---
-**Sum squares** ( *series* ) : Real
+**Sum squares** ( *series* : Field, Array ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve la suma de cuadrados |
+| series | Field, Array | → | Datos para los cuales se devuelve la suma de cuadrados |
| Resultado | Real | ← | Suma de cuadrados de series |
@@ -64,6 +64,6 @@ Este ejemplo permite obtener la suma de cuadrados de los valores ubicados en un
| | |
| --- | --- |
| Número de comando | 28 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
index 67ffb1efc875f6..dc2383aa09bb4d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
@@ -5,12 +5,12 @@ slug: /commands/sum
displayed_sidebar: docs
---
-**Sum** ( *series* {; *rutaAtributo*} ) : Real
+**Sum** ( *series* : Field, Array {; *rutaAtributo* : Text} ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve la suma |
-| rutaAtributo | Text | → | Ruta de atributo para el cual calcular la suma |
+| series | Field, Array | → | Datos para los cuales se devuelve la suma |
+| rutaAtributo | Text | → | Ruta de atributo para el cual calcular la suma |
| Resultado | Real | ← | Suma de series |
@@ -78,7 +78,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 1 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
index 7bae8e486b87df..0949caa52a8a7b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para más información, por favor consulte la sección *Suspender las transaccio
| | |
| --- | --- |
| Número de comando | 1385 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
index 58e9afe1ed483e..4c8531836b861b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/svg-export-to-picture
displayed_sidebar: docs
---
-**SVG EXPORT TO PICTURE** ( *elementRef* ; *varImag* {; *tipoExport*} )
+**SVG EXPORT TO PICTURE** ( *elementRef* : Text ; *varImag* : Picture {; *tipoExport* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML raíz |
-| varImag | Picture | → | Variable imagen a recibir del árbol XML (imagen SVG) |
-| tipoExport | Integer | → | 0 = No guardar la fuente de datos, 1 = Copiar la fuente de datos, 2 (por defecto) = Fuente de datos propia |
+| elementRef | Text | → | Referencia del elemento XML raíz |
+| varImag | Picture | → | Variable imagen a recibir del árbol XML (imagen SVG) |
+| tipoExport | Integer | → | 0 = No guardar la fuente de datos, 1 = Copiar la fuente de datos, 2 (por defecto) = Fuente de datos propia |
@@ -57,6 +57,6 @@ El siguiente ejemplo puede utilizarse para mostrar “Hello World” en una imag
| | |
| --- | --- |
| Número de comando | 1017 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
index a16b72ac2e632a..e002f99db6c67a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/svg-find-element-id-by-coordinates
displayed_sidebar: docs
---
-**SVG Find element ID by coordinates** ( {* ;} *objetoImagen* ; *x* ; *y* ) : Text
+**SVG Find element ID by coordinates** ( {* ;} *objetoImagen* ; *x* : Integer ; *y* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, pictureObject es un nombre de objeto (cadena) Si se omite, pictureObject es un campo o variable |
-| objetoPicture | Picture | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
-| x | Integer | → | X coordenada en píxeles |
-| y | Integer | → | Y coordenada en píxeles |
+| * | Operador | → | Si se especifica, pictureObject es un nombre de objeto (cadena) Si se omite, pictureObject es un campo o variable |
+| objetoPicture | Picture | → | Nombre de objeto (si se especifica *) o Campo o variable (si se omite *) |
+| x | Integer | → | X coordenada en píxeles |
+| y | Integer | → | Y coordenada en píxeles |
| Resultado | Text | ← | ID del elemento encontrado en la ubicación X,Y |
@@ -56,7 +56,7 @@ Si *objetoImagen* no contiene una imagen SVG válida, el comando devuelve una ca
| | |
| --- | --- |
| Número de comando | 1054 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
index bb82745010a74a..eb7c922ba951af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
@@ -5,16 +5,16 @@ slug: /commands/svg-find-element-ids-by-rect
displayed_sidebar: docs
---
-**SVG Find element IDs by rect** ( {* ;} *objetoImagen* ; *x* ; *y* ; *ancho* ; *alto* ; *arrIDs* ) : Boolean
+**SVG Find element IDs by rect** ( {* ;} *objetoImagen* ; *x* : Integer ; *y* : Integer ; *ancho* : Integer ; *alto* : Integer ; *arrIDs* : Text array ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es un campo o una variable. |
-| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o Campo o Variable (si se omite *) |
-| x | Integer | → | Coordenada horizontal de la esquina superior izquierda del rectángulo de selección. |
-| y | Integer | → | Coordinada vertical de la esquina superior izquierda del rectángulo de selección |
-| ancho | Integer | → | Ancho del rectángulo de selección |
-| alto | Integer | → | Altura del rectángulo de selección |
+| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es un campo o una variable. |
+| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o Campo o Variable (si se omite *) |
+| x | Integer | → | Coordenada horizontal de la esquina superior izquierda del rectángulo de selección. |
+| y | Integer | → | Coordinada vertical de la esquina superior izquierda del rectángulo de selección |
+| ancho | Integer | → | Ancho del rectángulo de selección |
+| alto | Integer | → | Altura del rectángulo de selección |
| arrIDs | Text array | ← | IDs de los elementos cuyo rectángulo circundante está en intersección con el rectángulo de selección |
| Resultado | Boolean | ← | True = se encontró al menos un elemento |
@@ -47,6 +47,6 @@ Todos los elementos cuyo rectángulo circundante está en intersección con el r
| | |
| --- | --- |
| Número de comando | 1109 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
index 4fe3929840e502..e71f648075c130 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/svg-get-attribute
displayed_sidebar: docs
---
-**SVG GET ATTRIBUTE** ( {* ;} *objetoImagen* ; id_Element ; *nomAtrib* ; *valorAtrib* )
+**SVG GET ATTRIBUTE** ( {* ;} *objetoImagen* ; id_Element ; *nomAtrib* : Text ; *valorAtrib* : Text, Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable o un campo |
-| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
-| id_Element | Text | → | ID del elemento donde uno o más atributos se definen |
-| nomAtrib | Text | → | Atributo cuyo valor quiere obtener |
+| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable o un campo |
+| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| id_Element | Text | → | ID del elemento donde uno o más atributos se definen |
+| nomAtrib | Text | → | Atributo cuyo valor quiere obtener |
| valorAtrib | Text, Integer | ← | Valor actual del atributo |
@@ -46,6 +46,6 @@ Para obtener más información acerca de los atributos SVG, consulte la descripc
| | |
| --- | --- |
| Número de comando | 1056 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
index 27ecafb4f61dff..daebeb497eb4cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
@@ -5,16 +5,16 @@ slug: /commands/svg-set-attribute
displayed_sidebar: docs
---
-**SVG SET ATTRIBUTE** ( {* ;} *objetoImagen* ; id_Element ; *nomAtrib* ; *valorAtrib* {; *nomAtrib2* ; *valorAtrib2* ; ... ; *nomAtribN* ; *valorAtribN*} {; *})
+**SVG SET ATTRIBUTE** ( {* ;} *objetoImagen* ; id_Element ; *nomAtrib* : Text ; *valorAtrib* : Text, Integer {; ...(*nomAtrib* : Text, *valorAtrib* : Text, Integer)} {; *})
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable o un campo |
-| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
-| id_Element | Text | → | ID del elemento donde uno o más atributos se definen |
-| nomAtrib | Text | → | Atributo a definir |
-| valorAtrib | Text, Integer | → | Nuevo valor del atributo |
-| * | Operador | → | Si se pasa = modificar el árbol DOM interno de la imagen SVG (variable únicamente) |
+| * | Operador | → | Si se especifica, objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable o un campo |
+| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| id_Element | Text | → | ID del elemento donde uno o más atributos se definen |
+| nomAtrib | Text | → | Atributo a definir |
+| valorAtrib | Text, Integer | → | Nuevo valor del atributo |
+| * | Operador | → | Si se pasa = modificar el árbol DOM interno de la imagen SVG (variable únicamente) |
@@ -101,7 +101,7 @@ Modificación del contenido de un elemento de tipo texto:
| | |
| --- | --- |
| Número de comando | 1055 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
index bee50479ac19a3..19c563a3f584f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
@@ -5,14 +5,14 @@ slug: /commands/svg-show-element
displayed_sidebar: docs
---
-**SVG SHOW ELEMENT** ( {* ;} *objetoImagen* ; *id* {; *margen*} )
+**SVG SHOW ELEMENT** ( {* ;} *objetoImagen* ; *id* : Text {; *margen* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable |
-| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
-| id | Text | → | Atributo id del elemento a visualizar |
-| margen | Integer | → | Margen de visibilidad (en píxeles por defecto) |
+| * | Operador | → | Si se especifica objetoImagen es un nombre de objeto (cadena). Si se omite, objetoImagen es una variable |
+| objetoPicture | Picture | → | Nombre del objeto (si se especifica *) o variable o campo (si se omite *) |
+| id | Text | → | Atributo id del elemento a visualizar |
+| margen | Integer | → | Margen de visibilidad (en píxeles por defecto) |
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1108 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
index b4e1d0b56e7383..301d582e4e0cf0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
@@ -5,11 +5,11 @@ slug: /commands/system-folder
displayed_sidebar: docs
---
-**System folder** {( *tipo* )} : Text
+**System folder** ( *tipo* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipo | Integer | → | Tipo de carpeta sistema |
+| tipo | Integer | → | Tipo de carpeta sistema |
| Resultado | Text | ← | Ruta de acceso de una carpeta del sistema activo |
@@ -55,6 +55,6 @@ Si omite el parámetro *tipo*, la función devolverá la ruta a la carpeta siste
| | |
| --- | --- |
| Número de comando | 487 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
index 8cb80d2895a3c1..cd908c4de509fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ devuelve un objeto que contiene la siguiente información:
| | |
| --- | --- |
| Número de comando | 1571 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
index 6bfbcec56ce28b..4cd1ceb181e12e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laTable | Table | → | Tabla para la cual obtener la tasa de fragmentación |
+| laTable | Table | → | Tabla para la cual obtener la tasa de fragmentación |
| Resultado | Real | ← | Porcentaje de fragmentación |
@@ -47,6 +47,6 @@ Este método de mantenimiento permite solicitar la compactación del archivo de
| | |
| --- | --- |
| Número de comando | 1127 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
index 913eea47fd94d9..ffd8b81b2f3737 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
@@ -5,11 +5,11 @@ slug: /commands/table-name
displayed_sidebar: docs
---
-**Table name** ( *numTabla* ) : Text
**Table name** ( *ptrTabla* ) : Text
+**Table name** ( *numTabla* : Entero largo, Puntero ) : Text
**Table name** ( *ptrTabla* : Entero largo, Puntero ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o puntero de tabla |
+| numTabla | ptrTabla | Entero largo, Puntero | → | Número de tabla o puntero de tabla |
| Resultado | Text | ← | Nombre de la tabla |
@@ -44,6 +44,6 @@ El siguiente es un ejemplo de un método genérico que muestra los registros de
| | |
| --- | --- |
| Número de comando | 256 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md
index ed2d74dc40460d..55b432ccc0e1f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/table.md
@@ -5,24 +5,24 @@ slug: /commands/table
displayed_sidebar: docs
---
-**Table** ( *numTabla* ) : Pointer
**Table** ( *ptrTabla* ) : Integer
**Table** ( *ptrCampo* ) : Integer
+**Table** ( *numTabla* : Integer ) : Pointer
**Table** ( *ptrTabla* : Pointer ) : Integer
**Table** ( *ptrCampo* : Pointer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| numTabla | Integer | → | Número de tabla |
-| ptrTabla | Pointer | → | Puntero de tabla |
-| ptrCampo | Pointer | → | Puntero de campo |
-| Resultado | todos | ← | Puntero de tabla, si se pasa un número de tabla
Número de tabla, si se pasa un puntero de tabla Número de tabla o si se pasa un puntero de campo |
+| numTabla | Integer | → | Número de tabla |
+| ptrTabla | Pointer | → | Puntero de tabla |
+| ptrCampo | Pointer | → | Puntero de campo |
+| Resultado | Pointer, Integer | ← | Puntero de tabla, si se pasa un número de tabla
Número de tabla, si se pasa un puntero de tabla Número de tabla o si se pasa un puntero de campo |
## Descripción
-El comando Table tiene tres sintaxis diferentes:
+El comando **Table** tiene tres sintaxis diferentes:
-* Si pasa un número de tabla en *numTabla*, Table devuelve un puntero para la tabla.
+* Si pasa un número de tabla en *numTabla*, Table devuelve un puntero para la tabla.
* Si pasa un puntero de tabla en *unPtr*, Table devuelve el número de la tabla.
-* Si pasa un puntero de campo en *unPtr*, Table devuelve el número de tabla del campo.
+* Si pasa un puntero de campo en *unPtr*, Table devuelve el número de tabla del campo.
## Ejemplo 1
@@ -67,6 +67,6 @@ Este ejemplo, la variable *numTabla* es igual al número de la tabla a la cual p
| | |
| --- | --- |
| Número de comando | 252 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
index 88b5290f809172..b822aa10652d6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
@@ -5,11 +5,11 @@ slug: /commands/tan
displayed_sidebar: docs
---
-**Tan** ( *Numero* ) : Real
+**Tan** ( *Numero* : Real ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número, en radianes, cuya tangente se devuelve |
+| Numero | Real | → | Número, en radianes, cuya tangente se devuelve |
| Resultado | Real | ← | Tangente del número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 19 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
index 59831890334e8f..46b1189e03d313 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 486 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
index 47b983c0950a47..4b71ef6ecce5d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
@@ -5,11 +5,11 @@ slug: /commands/test-path-name
displayed_sidebar: docs
---
-**Test path name** ( *nombreRuta* ) : Integer
+**Test path name** ( *nombreRuta* : Text ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombreRuta | Text | → | Ruta de acceso a un directorio, carpeta o documento |
+| nombreRuta | Text | → | Ruta de acceso a un directorio, carpeta o documento |
| Resultado | Integer | ← | 1, rutaAcceso es un documento existente 0, rutaAcceso es un directorio o carpeta existente <0, ruta de acceso incorrecta, código de error del administrador de archivos del sistema |
@@ -56,6 +56,6 @@ El siguiente ejemplo prueba la presencia del documento “Diario” en la carpet
| | |
| --- | --- |
| Número de comando | 476 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
index 5c352f02e9a98c..340a63e5fefeb5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/test-semaphore
displayed_sidebar: docs
---
-**Test semaphore** ( *semaforo* ) : Boolean
+**Test semaphore** ( *semaforo* : Text ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| semaforo | Text | → | Nombre del semáforo a probar |
+| semaforo | Text | → | Nombre del semáforo a probar |
| Resultado | Boolean | ← | True = el semáforo existe, False = el semáforo no existe |
@@ -48,6 +48,6 @@ El siguiente ejemplo le permite conocer el estado de un proceso (en nuestro caso
| | |
| --- | --- |
| Número de comando | 652 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
index 34431ed89f7264..69dc1922fd7d47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
@@ -5,17 +5,17 @@ slug: /commands/text-to-array
displayed_sidebar: docs
---
-**TEXT TO ARRAY** ( *varText* ; *arrText* ; *ancho* ; *nomFuente* ; *tamFuente* {; *estiloFuente* {; *}} )
+**TEXT TO ARRAY** ( *varText* : Text ; *arrText* : Text array ; *ancho* : Integer ; *nomFuente* : Text ; *tamFuente* : Integer {; *estiloFuente* : Integer {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| varText | Text | → | Texto original a dividir |
+| varText | Text | → | Texto original a dividir |
| arrText | Text array | ← | Array que contiene el texto dividido en palabras o líneas |
-| ancho | Integer | → | Ancho máximo de la cadena(en píxeles) |
-| nomFuente | Text | → | Nombre de la fuente |
-| tamFuente | Integer | → | Tamaño de la fuente |
-| estiloFuente | Integer | → | Estilo de fuente |
-| * | Operador | → | Si se pasa = interpretar el texto como multistyle |
+| ancho | Integer | → | Ancho máximo de la cadena(en píxeles) |
+| nomFuente | Text | → | Nombre de la fuente |
+| tamFuente | Integer | → | Tamaño de la fuente |
+| estiloFuente | Integer | → | Estilo de fuente |
+| * | Operador | → | Si se pasa = interpretar el texto como multistyle |
@@ -114,6 +114,6 @@ Debe imprimir en un área de 400 píxeles de largo un texto de un máximo de 80
| | |
| --- | --- |
| Número de comando | 1149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
index 7a0d6bfadd727f..ffca872082a301 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/text-to-blob
displayed_sidebar: docs
---
-**TEXT TO BLOB** ( *texto* ; *BLOB* {; *formatoTexto* {; offset | *}} )
+**TEXT TO BLOB** ( *texto* : Text ; *BLOB* : Blob {; *formatoTexto* : Integer {; offset | *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a escribir en el BLOB |
-| Blob | Blob | → | BLOB a recibir el texto |
-| formatoTexto | Integer | → | Formato y conjunto de caracteres de texto |
+| texto | Text | → | Texto a escribir en el BLOB |
+| Blob | Blob | → | BLOB a recibir el texto |
+| formatoTexto | Integer | → | Formato y conjunto de caracteres de texto |
| offset | * | Variable, Operador | ↔ | Offset en el BLOB (expresado en bytes) o * para añadir el valor |
-| || | Nuevo offset después de la escritura si se omite * |
+| | | | Nuevo offset después de la escritura si se omite * |
@@ -112,6 +112,6 @@ Después de la ejecución este código:
| | |
| --- | --- |
| Número de comando | 554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
index d40093c987bcab..5109b90d16e85d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
@@ -5,14 +5,14 @@ slug: /commands/text-to-document
displayed_sidebar: docs
---
-**TEXT TO DOCUMENT** ( *nomArchivo* ; *texto* {; *conjCaract* {; *ModoRetorno*}} )
+**TEXT TO DOCUMENT** ( *nomArchivo* : Text ; *texto* : Text {; *conjCaract* : Text, Integer {; *ModoRetorno* : Integer}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Nombre del documento o ruta de acceso al documento |
-| texto | Text | → | Texto a almacenar en el documento |
-| conjCaract | Text, Integer | → | Nombre o número del conjunto de caracteres |
-| ModoRetorno | Integer | → | Modo de procesamiento para los retornos de línea |
+| nomArchivo | Text | → | Nombre del documento o ruta de acceso al documento |
+| texto | Text | → | Texto a almacenar en el documento |
+| conjCaract | Text, Integer | → | Nombre o número del conjunto de caracteres |
+| ModoRetorno | Integer | → | Modo de procesamiento para los retornos de línea |
@@ -88,6 +88,6 @@ Ejemplo que permite al usuario indicar la ubicación del archivo a crear:
| | |
| --- | --- |
| Número de comando | 1237 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
index bd403da2a0d3a5..325832459decae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
@@ -5,16 +5,13 @@ slug: /commands/throw
displayed_sidebar: docs
---
-**throw** ( *errorCode* {; *descripcion*} )
-*throw* {( *errorObj* )}
+**throw** ( *errorCode* : Integer {; *description* : Text} )
**throw** ( *errorObj* : Object )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| errorCode | Integer | → | Un entero largo que representa el código de error. |
-| descripcion | Text | → | Texto que describe el error. |
-| throw {( errorObj )} |
-| Parámetro | Tipo | Descripción |
-| errorObj | Object | → | Un objeto que contiene propiedades para construir el error |
+| errorCode | Integer | → | Un entero largo que representa el código de error. |
+| descripcion | Text | → | Texto que describe el error. |
+| errorObj | Object | → | Un objeto que contiene propiedades para construir el error |
@@ -111,6 +108,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número de comando | 1805 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
index 88af704b1dd256..60cc927c4ce026 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver el ejemplo del comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número de comando | 458 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
index 26a06d97bf15b1..451397842a29ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
@@ -5,11 +5,11 @@ slug: /commands/time-string
displayed_sidebar: docs
---
-**Time string** ( *segundos* ) : Text
+**Time string** ( *segundos* : Integer, Time ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| segundos | Integer, Time | → | Segundos desde la media noche |
+| segundos | Integer, Time | → | Segundos desde la media noche |
| Resultado | Text | ← | Hora como una cadena en formato 24 horas |
@@ -42,6 +42,6 @@ El siguiente muestra una caja de alerta con el mensaje, “46 800 segundos repre
| | |
| --- | --- |
| Número de comando | 180 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md
index f12d4601d9e44a..50b0703c32a5a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/time.md
@@ -5,11 +5,11 @@ slug: /commands/time
displayed_sidebar: docs
---
-**Time** ( *valHora* ) : Time
+**Time** ( *valHora* : Text, Integer ) : Time
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| valHora | Text, Integer | → | Valor a devolver en forma de hora |
+| valHora | Text, Integer | → | Valor a devolver en forma de hora |
| Resultado | Time | ← | Hora especificada por horaCadena |
@@ -57,6 +57,6 @@ Puede expresar todo valor numérico como una hora:
| | |
| --- | --- |
| Número de comando | 179 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
index abe2b9c01a1188..f08ae115507020 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 1445 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
index b4ff4f19a3d7d5..7052c47a9b689b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Si no se muestra ninguna barra de herramientas, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1016 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
index d33797327491ca..2f0664e2f79e3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
@@ -66,6 +66,6 @@ El método de proyecto DEBUG se lista aquí:
| | |
| --- | --- |
| Número de comando | 157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
index 341f0664c10fe7..e00b775be2ac22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 961 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
index dd796725369bf6..d7758b0d21e07d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
@@ -5,17 +5,16 @@ slug: /commands/transform-picture
displayed_sidebar: docs
---
-**TRANSFORM PICTURE** ( *imagen* ; *operador* {; *param1* {; *param2* {; *param3* {; *param4*}}}} )
+**TRANSFORM PICTURE** ( *imagen* : Picture ; *operador* : Integer {; *param1* : Real {; *param2* : Real {; *param3* : Real {; *param4* : Real}}}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| imagen | Picture | → | Imagen fuente a transformar |
-| ← | Imagen resultante de la transformación |
-| operador | Integer | → | Tipo de transformación a efectuar |
-| param1 | Real | → | Parámetro de la transformación |
-| param2 | Real | → | Parámetro de la transformación |
-| param3 | Real | → | Parámetro de la transformación |
-| param4 | Real | → | Parámetro de la transformación |
+| imagen | Picture | ↔ | *in:* Source picture to be transformed
*out:* Resulting picture after transformation |
+| operador | Integer | → | Tipo de transformación a efectuar |
+| param1 | Real | → | Parámetro de la transformación |
+| param2 | Real | → | Parámetro de la transformación |
+| param3 | Real | → | Parámetro de la transformación |
+| param4 | Real | → | Parámetro de la transformación |
@@ -78,6 +77,6 @@ Este es un ejemplo de corte de una imagen (la imagen se muestra en el formulario
| | |
| --- | --- |
| Número de comando | 988 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
index 9dbcd5d1ade2d5..6c4c35f3200770 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
@@ -59,6 +59,6 @@ Utilice el comando **Trigger event** para estructurar sus triggers de esta maner
| | |
| --- | --- |
| Número de comando | 369 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
index c537aea2ad2c6e..57cddda90b1045 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para mayor información sobre niveles de ejecución, consulte el tema *Triggers
| | |
| --- | --- |
| Número de comando | 398 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
index d40264612c8fa6..e3525069159bc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
@@ -5,11 +5,11 @@ slug: /commands/trigger-properties
displayed_sidebar: docs
---
-**TRIGGER PROPERTIES** ( *nivelTrigger* ; *eventoBase* ; *numTabla* ; *regNum* )
+**TRIGGER PROPERTIES** ( *nivelTrigger* : Integer ; *eventoBase* : Integer ; *numTabla* : Integer ; *regNum* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nivelTrigger | Integer | → | Nivel de ejecución del trigger |
+| nivelTrigger | Integer | → | Nivel de ejecución del trigger |
| eventoBase | Integer | ← | Evento de base de datos |
| numTabla | Integer | ← | Número de la tabla |
| regNum | Integer | ← | Número del registro |
@@ -44,6 +44,6 @@ El número de tabla y de registro para el registro relacionado por el evento de
| | |
| --- | --- |
| Número de comando | 399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md
index 132fbf9ea6cafb..37c1333d0e0137 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 214 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
index af06e993c912f0..b598eaf18c01b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
@@ -5,12 +5,12 @@ slug: /commands/trunc
displayed_sidebar: docs
---
-**Trunc** ( *Numero* ; *decimales* ) : Real
+**Trunc** ( *Numero* : Real ; *decimales* : Integer ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Numero | Real | → | Número a truncar |
-| decimales | Integer | → | Número de lugares decimales a conservar |
+| Numero | Real | → | Número a truncar |
+| decimales | Integer | → | Número de lugares decimales a conservar |
| Resultado | Real | ← | Número truncado a partir del número decimales especificado por decimales |
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra la manera cómo Trunc funciona con diferentes argum
| | |
| --- | --- |
| Número de comando | 95 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
index 8ae153457ba3b0..ba542ac1b4668b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
@@ -5,11 +5,11 @@ slug: /commands/truncate-table
displayed_sidebar: docs
---
-**TRUNCATE TABLE** {( *tabla* )}
+**TRUNCATE TABLE** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual se borrarán todos los registros o tabla por defecto si se omite este parámetro |
+| tabla | Table | → | Tabla de la cual se borrarán todos los registros o tabla por defecto si se omite este parámetro |
@@ -45,7 +45,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 1051 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md
index f1f68521f81824..6c70e5854b1570 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/type.md
@@ -5,11 +5,11 @@ slug: /commands/type
displayed_sidebar: docs
---
-**Type** ( *campoVar* ) : Integer
+**Type** ( *campoVar* : Field, Variable ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| campoVar | Field, Variable | → | Campo o variable a probar |
+| campoVar | Field, Variable | → | Campo o variable a probar |
| Resultado | Integer | ← | Número de tipo de datos |
@@ -146,6 +146,6 @@ Ver ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número de comando | 295 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
index db1570d9e340b3..407d9f6e3dfec7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
@@ -5,11 +5,11 @@ slug: /commands/undefined
displayed_sidebar: docs
---
-**Undefined** ( *expresion* ) : Boolean
+**Undefined** ( *expresion* : Expression ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresion | Expression | → | Variable a probar |
+| expresion | Expression | → | Variable a probar |
| Resultado | Boolean | ← | True = Variable indefinida False = Variable definida |
@@ -66,6 +66,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 82 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md
index f64f042f7f01d7..d457e1918e50b5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/union.md
@@ -5,13 +5,13 @@ slug: /commands/union
displayed_sidebar: docs
---
-**UNION** ( *conjunto1* ; *conjunto2* ; *resultado* )
+**UNION** ( *conjunto1* : Text ; *conjunto2* : Text ; *resultado* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Primer conjunto |
-| conjunto2 | Text | → | Segundo conjunto |
-| resultado | Text | → | Conjunto resultante |
+| conjunto1 | Text | → | Primer conjunto |
+| conjunto2 | Text | → | Segundo conjunto |
+| resultado | Text | → | Conjunto resultante |
@@ -56,6 +56,6 @@ Este ejemplo añade registros al conjunto de mejores clientes. Los registros se
| | |
| --- | --- |
| Número de comando | 120 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
index d521773972d051..153624c7236294 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
@@ -5,11 +5,11 @@ slug: /commands/unload-record
displayed_sidebar: docs
---
-**UNLOAD RECORD** {( *tabla* )}
+**UNLOAD RECORD** ({ *tabla* : Table })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tabla | Table | → | Tabla de la cual descargar el registro o Tabla por defecto, si se omite |
+| tabla | Table | → | Tabla de la cual descargar el registro o Tabla por defecto, si se omite |
@@ -35,6 +35,6 @@ Si un registro tiene una cantidad importante de datos, de campos de imagen, o de
| | |
| --- | --- |
| Número de comando | 212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
index 2479ff7ccfa7ee..1c3626749cb87e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ Si el cliente es dado de baja correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 649 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
index 075fcde1fc7e1e..88ed851235e882 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| laText | Text | → | Cadena a convertir en mayúsculas |
-| * | Operador | → | Si se pasa: conservar los acentos |
+| laText | Text | → | Cadena a convertir en mayúsculas |
+| * | Operador | → | Si se pasa: conservar los acentos |
| Resultado | Text | ← | Cadena en mayúsculas |
@@ -43,6 +43,6 @@ Ver el ejemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número de comando | 13 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
index 41c1c1597dcedb..71c892ab355b9b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
@@ -5,12 +5,12 @@ slug: /commands/use-character-set
displayed_sidebar: docs
---
-**USE CHARACTER SET** ( *mapa* {; *mapaImpExp*} )
+**USE CHARACTER SET** ( *mapa* : Text, Operator {; *mapaImpExp* : Integer} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| mapa | Text, * | → | Nombre del conjunto de caracteres a a utilizar (Modo Unicode) o nombre del documento del mapa ASCII a utilizar (Modo ASCII) o * para restaurar el mapa ASCII/conjunto de caracteres por defecto |
-| mapaImpExp | Integer | → | 0 = Mapa de exportación 1 = Mapa de importación Si se omite, mapa de exportación |
+| mapa | Text, Operator | → | Nombre del conjunto de caracteres a a utilizar (Modo Unicode) o nombre del documento del mapa ASCII a utilizar (Modo ASCII) o * para restaurar el mapa ASCII/conjunto de caracteres por defecto |
+| mapaImpExp | Integer | → | 0 = Mapa de exportación 1 = Mapa de importación Si se omite, mapa de exportación |
@@ -57,7 +57,7 @@ La variable sistema OK toma el valor 1 si el mapa se carga correctamente, de lo
| | |
| --- | --- |
| Número de comando | 205 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
index 74e57f4f3589cd..a683f483e467f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/use-named-selection
displayed_sidebar: docs
---
-**USE NAMED SELECTION** ( *nombre* )
+**USE NAMED SELECTION** ( *nombre* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombre | Text | → | Nombre de la selección temporal a utilizar |
+| nombre | Text | → | Nombre de la selección temporal a utilizar |
@@ -35,7 +35,7 @@ Recuerde que una selección temporal es una representación de una selección de
| | |
| --- | --- |
| Número de comando | 332 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
index fec48dc80420e3..9da6474335a764 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
@@ -5,11 +5,11 @@ slug: /commands/use-set
displayed_sidebar: docs
---
-**USE SET** ( *conjunto* )
+**USE SET** ( *conjunto* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nombre del conjunto a utilizar |
+| conjunto | Text | → | Nombre del conjunto a utilizar |
@@ -41,7 +41,7 @@ El siguiente ejemplo utiliza [LOAD SET](load-set.md "LOAD SET") para cargar un c
| | |
| --- | --- |
| Número de comando | 118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
index c85a8365659435..1423c2ac347283 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
@@ -5,12 +5,12 @@ slug: /commands/user-in-group
displayed_sidebar: docs
---
-**User in group** ( *usuario* ; *grupo* ) : Boolean
+**User in group** ( *usuario* : Text ; *grupo* : Text ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| usuario | Text | → | Nombre del usuario |
-| grupo | Text | → | Nombre del grupo |
+| usuario | Text | → | Nombre del usuario |
+| grupo | Text | → | Nombre del grupo |
| Resultado | Boolean | ← | TRUE = el usuario está en el grupo FALSE = el usuario no está en el grupo |
@@ -46,6 +46,6 @@ El siguiente ejemplo busca facturas específicas. Si el usuario actual está en
| | |
| --- | --- |
| Número de comando | 338 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
index 3d8db1ed51c09a..d4ec36073d9de2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
@@ -5,12 +5,11 @@ slug: /commands/users-to-blob
displayed_sidebar: docs
---
-**USERS TO BLOB** ( *usuarios* )
+**USERS TO BLOB** ( *usuarios* : Blob )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| usuarios | Blob | → | BLOB que debe contener los usuarios |
-| ← | Cuentas de usuarios (encriptado) |
+| usuarios | Blob | ↔ | *in:* BLOB that must contain users
*out:* User accounts (encrypted) |
@@ -37,7 +36,7 @@ Este concepto permite conservar un backup de usuarios en la base e implementar u
| | |
| --- | --- |
| Número de comando | 849 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
index d1c5f6e83e4afa..aba6bb37b441d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
@@ -5,13 +5,13 @@ slug: /commands/validate-password
displayed_sidebar: docs
---
-**Validate password** ( *refUsuario* ; *contraseña* {; *digest*} ) : Boolean
+**Validate password** ( *refUsuario* : Integer, Text ; *contraseña* : Text {; *digest* : Boolean} ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refUsuario | Integer, Text | → | Número de referencia único |
-| contraseña | Text | → | Contraseña no encriptada |
-| digest | Boolean | → | Contraseña digest = True,
Contraseña texto plano (por defecto) = False |
+| refUsuario | Integer, Text | → | Número de referencia único |
+| contraseña | Text | → | Contraseña no encriptada |
+| digest | Boolean | → | Contraseña digest = True,
Contraseña texto plano (por defecto) = False |
| Resultado | Boolean | ← | True = contraseña correcta False = contraseña incorrecta |
@@ -66,6 +66,6 @@ En el [Método base On 4D Mobile Authentication](metodo-base-on-4d-mobile-authen
| | |
| --- | --- |
| Número de comando | 638 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
index 65394261a812eb..259c9a91413159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Tenga en cuenta que cuando OK toma el valor 0, la transacción automáticamente
| | |
| --- | --- |
| Número de comando | 240 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
index 87966b5a835563..d35f5f33ccf89a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
@@ -5,11 +5,11 @@ slug: /commands/value-type
displayed_sidebar: docs
---
-**Value type** ( *expresion* ) : Integer
+**Value type** ( *expresion* : Expression ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| expresion | Expression | → | Expresión cuyo valor resultante debe ser probado |
+| expresion | Expression | → | Expresión cuyo valor resultante debe ser probado |
| Resultado | Integer | ← | Número de tipo de dato |
@@ -119,6 +119,6 @@ Desea obtener la suma de todos los valores numéricos en una colección:
| | |
| --- | --- |
| Número de comando | 1509 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
index 29099182262fb9..0b9e671443b1ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
@@ -5,14 +5,14 @@ slug: /commands/variable-to-blob
displayed_sidebar: docs
---
-**VARIABLE TO BLOB** ( *variable* ; *blob* {; offset } )
**VARIABLE TO BLOB** ( *variable* ; *blob* {; *} )
+**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; offset } )
**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable a guardar en el BLOB |
-| Blob | Blob | → | BLOB a recibir la variable |
+| variable | Variable | → | Variable a guardar en el BLOB |
+| Blob | Blob | → | BLOB a recibir la variable |
| offset | * | Variable, Operador | ↔ | Offset de la variable (expresado en bytes) en el BLOB o * para añadir el valor |
-||| | Nuevo offset después de escritura si se omite * |
+| | | | Nuevo offset después de escritura si se omite * |
@@ -142,7 +142,7 @@ Después de añadir estos métodos a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 532 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
index afbea109c5cd52..a9b4fc144dd6d6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
@@ -5,13 +5,13 @@ slug: /commands/variable-to-variable
displayed_sidebar: docs
---
-**VARIABLE TO VARIABLE** ( *proceso* ; *dstVar* ; *srcVar* {; *dstVar2* ; *srcVar2* ; ... ; *dstVarN* ; *srcVarN*} )
+**VARIABLE TO VARIABLE** ( *proceso* : Integer ; *dstVar* : Variable ; *srcVar* : Variable {; ...(*dstVar* : Variable, *srcVar* : Variable)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| proceso | Integer | → | Número de proceso de destino |
-| dstVar | Variable | → | Variable de destino |
-| srcVar | Variable | → | Variable fuente |
+| proceso | Integer | → | Número de proceso de destino |
+| dstVar | Variable | → | Variable de destino |
+| srcVar | Variable | → | Variable fuente |
@@ -64,6 +64,6 @@ El siguiente ejemplo lee un array proceso desde el proceso indicado por *$vlProc
| | |
| --- | --- |
| Número de comando | 635 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
index 0e040ac9cd72e7..cc56792fb61299 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
@@ -5,11 +5,11 @@ slug: /commands/variance
displayed_sidebar: docs
---
-**Variance** ( *series* ) : Real
+**Variance** ( *series* : Field, Array ) : Real
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| series | Field, Array | → | Datos para los cuales se devuelve la varianza |
+| series | Field, Array | → | Datos para los cuales se devuelve la varianza |
| Resultado | Real | ← | Varianza de series |
@@ -72,6 +72,6 @@ Este ejemplo permite obtener la varianza de valores ubicados en un array:
| | |
| --- | --- |
| Número de comando | 27 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
index 505272c4038fe0..5888c9827cfdb3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/verify-current-data-file
displayed_sidebar: docs
---
-**VERIFY CURRENT DATA FILE** {( *objetos* ; *opciones* ; *metodo* {; *arrayTablas* {; *arrayCampos*}} )}
+**VERIFY CURRENT DATA FILE** ({ *objetos* : Integer ; *opciones* : Integer ; *metodo* : Text {; *arrayTablas* : Integer array {; *arrayCampos* : Integer array}} })
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| objetos | Integer | → | Objetos a verificar |
-| opciones | Integer | → | Opciones de verificación |
-| metodo | Text | → | Nombre del método 4D de retrollamada |
-| arrayTablas | Integer array | → | Números de las tablas a verificar |
-| arrayCampos | 2D Integer array, 2D Integer array, 2D Real array | → | Números de los índices a verificar |
+| objetos | Integer | → | Objetos a verificar |
+| opciones | Integer | → | Opciones de verificación |
+| metodo | Text | → | Nombre del método 4D de retrollamada |
+| arrayTablas | Integer array | → | Números de las tablas a verificar |
+| arrayCampos | Integer array | → | 2D array, numbers of indexes to be checked |
@@ -48,7 +48,7 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 1008 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
index 251b195c1212ad..98489a79d4a54a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
@@ -5,17 +5,17 @@ slug: /commands/verify-data-file
displayed_sidebar: docs
---
-**VERIFY DATA FILE** ( *rutaEstructura* ; *rutaDatos* ; *objetos* ; *opciones* ; *metodo* {; *arrayTablas* {; *arrayCampos*}} )
+**VERIFY DATA FILE** ( *rutaEstructura* : Text ; *rutaDatos* : Text ; *objetos* : Integer ; *opciones* : Integer ; *metodo* : Text {; *arrayTablas* : Integer array {; *arrayCampos* : Integer array}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| rutaEstructura | Text | → | Ruta de acceso al archivo de estructura de la base a verificar |
-| rutaDatos | Text | → | Ruta de acceso del archivo de datos de la base a verificar |
-| objetos | Integer | → | Objetos a verificar |
-| opciones | Integer | → | Opciones de verificación |
-| metodo | Text | → | Nombre del método 4D de retrollamada |
-| arrayTablas | Integer array | → | Números de las tablas a verificar |
-| arrayCampos | 2D Integer array, 2D Integer array, 2D Real array | → | Números de los índices a verificar |
+| rutaEstructura | Text | → | Ruta de acceso al archivo de estructura de la base a verificar |
+| rutaDatos | Text | → | Ruta de acceso del archivo de datos de la base a verificar |
+| objetos | Integer | → | Objetos a verificar |
+| opciones | Integer | → | Opciones de verificación |
+| metodo | Text | → | Nombre del método 4D de retrollamada |
+| arrayTablas | Integer array | → | Números de las tablas a verificar |
+| arrayCampos | Integer array | → | Números de los índices a verificar |
@@ -175,5 +175,5 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 939 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
index d19802bb6125b7..b9e81923ef049d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/verify-password-hash
displayed_sidebar: docs
---
-**Verify password hash** ( *contrasena* ; *hash* ) : Boolean
+**Verify password hash** ( *contrasena* : Text ; *hash* : Text ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| contrasena | Text | → | La contraseña de usuario. Sólo se utilizan los primeros 72 caracteres. |
-| hash | Text | → | Un hash de contraseña. |
+| contrasena | Text | → | La contraseña de usuario. Sólo se utilizan los primeros 72 caracteres. |
+| hash | Text | → | Un hash de contraseña. |
| Resultado | Boolean | ← | Devuelve TRUE si la contraseña y hash coinciden, de lo contrario devuelve FALSE. |
@@ -59,6 +59,6 @@ Este ejemplo verifica un hash de contraseña creado previamente por [Generate pa
| | |
| --- | --- |
| Número de comando | 1534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
index 1c79b1998b6336..3647b89cab617a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prueba permite ejecutar código diferente dependiendo de que versión es un
| | |
| --- | --- |
| Número de comando | 495 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
index f1fd611a074b5b..cd2ff655b76451 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/volume-attributes
displayed_sidebar: docs
---
-**VOLUME ATTRIBUTES** ( *volumen* ; *tamaño* ; *utilizado* ; *libre* )
+**VOLUME ATTRIBUTES** ( *volumen* : Text ; *tamaño* : Real ; *utilizado* : Real ; *libre* : Real )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| volumen | Text | → | Nombre del volumen |
+| volumen | Text | → | Nombre del volumen |
| tamaño | Real | ← | Tamaño del volumen expresado en bytes |
| utilizado | Real | ← | Espacio utilizado expresado en bytes |
| libre | Real | ← | Espacio libre expresado en bytes |
@@ -101,7 +101,7 @@ Una vez se añade este método de proyecto a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 472 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
index ec91e4644b2365..469422fe6d9721 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
@@ -5,7 +5,7 @@ slug: /commands/volume-list
displayed_sidebar: docs
---
-**VOLUME LIST** ( *volumenes* )
+**VOLUME LIST** ( *volumenes* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ Utilizando un área de desplazamiento llamada *atVolumenes,* usted quiere mostra
| | |
| --- | --- |
| Número de comando | 471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
index e8423fa3e9c71e..ccd958e20de17f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-back-url-available
displayed_sidebar: docs
---
-**WA Back URL available** ( {* ;} *objeto* ) : Boolean
+**WA Back URL available** ( * ; *objeto* : Text ) : Boolean
**WA Back URL available** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Boolean | ← | True si hay un URL anterior en la secuenca de URLs abiertos; de lo contrario, False |
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1026 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
index dcb8ff465efb3b..7018ceed613de3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
@@ -5,13 +5,13 @@ slug: /commands/wa-create-url-history-menu
displayed_sidebar: docs
---
-**WA Create URL history menu** ( {* ;} *objeto* {; *direccion*} ) : Text
+**WA Create URL history menu** ( * ; *objeto* : Text {; *direccion* : Integer} ) : Text
**WA Create URL history menu** ( *objeto* : Field, Variable {; *direccion* : Integer} ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| direccion | Integer | → | 0 ó si se omite=Lista de los URLs anteriores, 1=Lista de los URLs siguientes |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| direccion | Integer | → | 0 ó si se omite=Lista de los URLs anteriores, 1=Lista de los URLs siguientes |
| Resultado | Text | ← | Referencia de menú |
@@ -73,6 +73,6 @@ El siguiente código puede estar asociado con un botón 3D con menú pop up llam
| | |
| --- | --- |
| Número de comando | 1049 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
index e66d96a9c90dda..4cc3824df79e59 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
@@ -5,14 +5,14 @@ slug: /commands/wa-evaluate-javascript
displayed_sidebar: docs
---
-**WA Evaluate JavaScript** ( {* ;} *objeto* ; *codeJS* {; *type*} ) : any
+**WA Evaluate JavaScript** ( * ; *objeto* : Text ; *codeJS* : Text {; *type* : Integer} ) : any
**WA Evaluate JavaScript** ( *objeto* : Field, Variable ; *codeJS* : Text {; *type* : Integer} ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| codeJS | Text | → | Código JavaScript |
-| type | Integer | → | Tipo al cual convertir el resultado |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| codeJS | Text | → | Código JavaScript |
+| type | Integer | → | Tipo al cual convertir el resultado |
| Resultado | Date, Time, Object, Pointer, Real, Text | ← | Resultado de ejecución |
@@ -108,6 +108,6 @@ Luego puede evaluar el código JavaScript desde 4D:
| | |
| --- | --- |
| Número de comando | 1029 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
index 7ff47bcdbbecac..d4780215c9bfc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
@@ -5,16 +5,16 @@ slug: /commands/wa-execute-javascript-function
displayed_sidebar: docs
---
-**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *objeto* ; *funcionjs* ; resultado|* {; *param*}{; *param2* ; ... ; *paramN*} )
+**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *objeto* : Text ; *funcionjs* : Text ; resultado|* {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *objeto* : Field, Variable ; *funcionjs* : Text ; resultado|* {; *...param* : any} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| funcionjs | Text | → | Nombre de la función JavaScript a ejecutar |
-| resultado|* | Variable | → | * para una función sin resultado o |
-| ← | Resultado de la función (si se espera) |
-| param | Text, Number, Date, Object, Collection | → | Parámetro(s) a pasar a la función |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| funcionjs | Text | → | Nombre de la función JavaScript a ejecutar |
+| result | Variable | ← | Function result (if expected) |
+| * | Operator | → | Function with no result |
+| param | any | → | Parámetro(s) a pasar a la función |
@@ -63,6 +63,6 @@ La función JavaScript "getCustomerInfo" recibe un número ID como parámetro y
| | |
| --- | --- |
| Número de comando | 1043 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
index 01a82e9f847648..e9eb49aea38b7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-forward-url-available
displayed_sidebar: docs
---
-**WA Forward URL available** ( {* ;} *objeto* ) : Boolean
+**WA Forward URL available** ( * ; *objeto* : Text ) : Boolean
**WA Forward URL available** ( *objeto* : Field, Variable ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Boolean | ← | True si existe un URL siguiente en la secuencia de URLs abiertos; de lo contrario, False |
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1027 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
index a24ef0befa5050..9b8a3fa25982cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-current-url
displayed_sidebar: docs
---
-**WA Get current URL** ( {* ;} *objeto* ) : Text
+**WA Get current URL** ( * ; *objeto* : Text ) : Text
**WA Get current URL** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | URL actualmente cargada en el área Web |
@@ -41,6 +41,6 @@ La página mostrada es el URL "www.apple.com" y la página "www.4dhispano.com" e
| | |
| --- | --- |
| Número de comando | 1025 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
index 9b96ce204634ea..73b676c9cf75be 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-external-links-filters
displayed_sidebar: docs
---
-**WA GET EXTERNAL LINKS FILTERS** ( {* ;} *objeto* ; *arrFiltros* ; *arrAutorizRechazar* )
+**WA GET EXTERNAL LINKS FILTERS** ( * ; *objeto* : Text ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
**WA GET EXTERNAL LINKS FILTERS** ( *objeto* : Field, Variable ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| arrFiltros | Text array | ← | Array de filtros |
| arrAutorizRechazar | Boolean array | ← | Array autorizar-rechazar |
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET EXTERNAL LINKS FILTERS](wa-set
| | |
| --- | --- |
| Número de comando | 1033 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
index 1183a1dcd95028..f0cb73c7ee17e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-filtered-url
displayed_sidebar: docs
---
-**WA Get last filtered URL** ( {* ;} *objeto* ) : Text
+**WA Get last filtered URL** ( * ; *objeto* : Text ) : Text
**WA Get last filtered URL** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | Último URL filtrado |
@@ -39,6 +39,6 @@ Es recomendable llamar este comando en el contexto de los eventos de formulario
| | |
| --- | --- |
| Número de comando | 1035 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
index 27fa68327ed12d..8ff90b40a94eff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-url-error
displayed_sidebar: docs
---
-**WA GET LAST URL ERROR** ( {* ;} *objeto* ; *url* ; *descripcion* ; *codigoError* )
+**WA GET LAST URL ERROR** ( * ; *objeto* : Text ; *url* : Text ; *descripcion* : Text ; *codigoError* : Integer )
**WA GET LAST URL ERROR** ( *objeto* : Field, Variable ; *url* : Text ; *descripcion* : Text ; *codigoError* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| url | Text | ← | URL al origen del error |
| descripcion | Text | ← | Descripción del error (macOS) |
| codigoError | Integer | ← | Código de error |
@@ -44,6 +44,6 @@ Es recomendable llamar este comando dentro del marco del evento de formulario On
| | |
| --- | --- |
| Número de comando | 1034 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
index c92b8eb32a937f..d1823bd30f9f62 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-content
displayed_sidebar: docs
---
-**WA Get page content** ( {* ;} *objeto* ) : Text
+**WA Get page content** ( * ; *objeto* : Text ) : Text
**WA Get page content** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | Código HTML fuente |
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si el contenido de la página actual no
| | |
| --- | --- |
| Número de comando | 1038 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
index f60f1029a02a8c..9a259431da6b2e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-title
displayed_sidebar: docs
---
-**WA Get page title** ( {* ;} *objeto* ) : Text
+**WA Get page title** ( * ; *objeto* : Text ) : Text
**WA Get page title** ( *objeto* : Field, Variable ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
| Resultado | Text | ← | Título de la página actual |
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si no hay título disponible para el URL
| | |
| --- | --- |
| Número de comando | 1036 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
index bcf2b39022b942..26bfdf15350d63 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
@@ -5,13 +5,13 @@ slug: /commands/wa-get-preference
displayed_sidebar: docs
---
-**WA GET PREFERENCE** ( {* ;} *objeto* ; *selector* ; *valor* )
+**WA GET PREFERENCE** ( * ; *objeto* : Text ; *selector* : Integer ; *valor* : Variable )
**WA GET PREFERENCE** ( *objeto* : Field, Variable ; *selector* : Integer ; *valor* : Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| selector | Integer | → | Preferencia a leer |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| selector | Integer | → | Preferencia a leer |
| valor | Variable | ← | Valor actual de la preferencia |
@@ -39,6 +39,6 @@ Pase en el parámetro *valor* una variable que recibirá el valor actual de la p
| | |
| --- | --- |
| Número de comando | 1042 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
index 5cbc584289205e..eb3638c3e34e75 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-url-filters
displayed_sidebar: docs
---
-**WA GET URL FILTERS** ( {* ;} *objeto* ; *arrFiltros* ; *arrAutorizRechazar* )
+**WA GET URL FILTERS** ( * ; *objeto* : Text ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
**WA GET URL FILTERS** ( *objeto* : Field, Variable ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| arrFiltros | Text array | ← | Array filtros |
| arrAutorizRechazar | Boolean array | ← | Array Autorizar-rechazar |
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET URL FILTERS](wa-set-url-filter
| | |
| --- | --- |
| Número de comando | 1031 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
index b68ffc1eb074ea..049ce02e362769 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
@@ -5,14 +5,14 @@ slug: /commands/wa-get-url-history
displayed_sidebar: docs
---
-**WA GET URL HISTORY** ( {* ;} *objeto* ; *arrUrls* {; *direccion* {; *arrTitulos*}} )
+**WA GET URL HISTORY** ( * ; *objeto* : Text ; *arrUrls* : Text array {; *direccion* : Integer {; *arrTitulos* : Text array}} )
**WA GET URL HISTORY** ( *objeto* : Field, Variable ; *arrUrls* : Text array {; *direccion* : Integer {; *arrTitulos* : Text array}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
| arrUrls | Text array | ← | Array de los URLs visitados |
-| direccion | Integer | → | 0 ó si se omite=Lista de los URLs anteriores, 1=Lista de los URLs siguientes |
+| direccion | Integer | → | 0 ó si se omite=Lista de los URLs anteriores, 1=Lista de los URLs siguientes |
| arrTitulos | Text array | ← | Array de títulos de ventanas |
@@ -49,6 +49,6 @@ Si se pasa, el parámetro *arrTitulos* contiene la lista de los nombres de venta
| | |
| --- | --- |
| Número de comando | 1048 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
index 82c33bf8055884..1d477c3e621ec8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-back-url
displayed_sidebar: docs
---
-**WA OPEN BACK URL** ( {* ;} *objeto* )
+**WA OPEN BACK URL** ( * ; *objeto* : Text )
**WA OPEN BACK URL** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
@@ -30,6 +30,6 @@ Si no hay un URL precedente, el comando no hace nada. Puede probar la disponibil
| | |
| --- | --- |
| Número de comando | 1021 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
index 775aa8d125320f..8ca452cc3f1654 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-forward-url
displayed_sidebar: docs
---
-**WA OPEN FORWARD URL** ( {* ;} *objeto* )
+**WA OPEN FORWARD URL** ( * ; *objeto* : Text )
**WA OPEN FORWARD URL** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
@@ -30,6 +30,6 @@ Si no hay un URL siguiente (es decir, si el usuario no ha regresado al URL anter
| | |
| --- | --- |
| Número de comando | 1022 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
index e05c9a7e849f25..2b8eca52c72b93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
@@ -5,13 +5,13 @@ slug: /commands/wa-open-url
displayed_sidebar: docs
---
-**WA OPEN URL** ( {* ;} *objeto* ; *url* )
+**WA OPEN URL** ( * ; *objeto* : Text ; *url* : Text )
**WA OPEN URL** ( *objeto* : Field, Variable ; *url* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si * se omite) |
-| url | Text | → | URL a cargar en el área Web |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si * se omite) |
+| url | Text | → | URL a cargar en el área Web |
@@ -53,6 +53,6 @@ Es equivalente a:
| | |
| --- | --- |
| Número de comando | 1020 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
index cac340caaf37f9..9e92a162bb6a35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-web-inspector
displayed_sidebar: docs
---
-**WA OPEN WEB INSPECTOR** ( {* ;} *objeto* )
+**WA OPEN WEB INSPECTOR** ( * ; *objeto* : Text )
**WA OPEN WEB INSPECTOR** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre del objeto (si se especifica *) o Variable (si se omite *) |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1736 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
index 507747793b7dc3..6d1b1a3d1a497d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-refresh-current-url
displayed_sidebar: docs
---
-**WA REFRESH CURRENT URL** ( {* ;} *objeto* )
+**WA REFRESH CURRENT URL** ( * ; *objeto* : Text )
**WA REFRESH CURRENT URL** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1023 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
index 4a48cab2e6e736..f74ed02e1e211f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/wa-run-offscreen-area
displayed_sidebar: docs
---
-**WA Run offscreen area** ( *parametros* ) : any
+**WA Run offscreen area** ( *parametros* : Object ) : any
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| parametros | Object | → | Objeto que contiene los atributos del área web |
+| parametros | Object | → | Objeto que contiene los atributos del área web |
| Resultado | any | ← | Propiedad .result del objeto onEvent, o Null si no devuelve un valor |
@@ -102,7 +102,7 @@ La variable del sistema OK se define en 0 si se ha alcanzado el tiempo de espera
| | |
| --- | --- |
| Número de comando | 1727 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
index 4cd2c2c30ff879..2962b1479c9b5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-external-links-filters
displayed_sidebar: docs
---
-**WA SET EXTERNAL LINKS FILTERS** ( {* ;} *objeto* ; *arrFiltros* ; *arrAutorizRechazar* )
+**WA SET EXTERNAL LINKS FILTERS** ( * ; *objeto* : Text ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
**WA SET EXTERNAL LINKS FILTERS** ( *objeto* : Field, Variable ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| arrFiltros | Text array | → | Array de filtros |
-| arrAutorizRechazar | Boolean array | → | Array autorizar- rechazar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| arrFiltros | Text array | → | Array de filtros |
+| arrAutorizRechazar | Boolean array | → | Array autorizar- rechazar |
@@ -80,6 +80,6 @@ Este ejemplo combina los filtros de sitios y de enlaces externos:
| | |
| --- | --- |
| Número de comando | 1032 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
index 0dbd5c2b7450c5..b5529220bbe36e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-page-content
displayed_sidebar: docs
---
-**WA SET PAGE CONTENT** ( {* ;} *objeto* ; *contenido* ; *baseURL* )
+**WA SET PAGE CONTENT** ( * ; *objeto* : Text ; *contenido* : Text ; *baseURL* : Text )
**WA SET PAGE CONTENT** ( *objeto* : Field, Variable ; *contenido* : Text ; *baseURL* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| contenido | Text | → | Código HTML fuente |
-| baseURL | Text | → | URL para las referencias relativas (macOS) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| contenido | Text | → | Código HTML fuente |
+| baseURL | Text | → | URL para las referencias relativas (macOS) |
@@ -51,6 +51,6 @@ Mostrar la frase "¡Hola mundo!" y definición de un URL de base "file:///" base
| | |
| --- | --- |
| Número de comando | 1037 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
index 069f5b3cc91edd..23ef6f01250b1b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-preference
displayed_sidebar: docs
---
-**WA SET PREFERENCE** ( {* ;} *objeto* ; *selector* ; *valor* )
+**WA SET PREFERENCE** ( * ; *objeto* : Text ; *selector* : Integer ; *valor* : Boolean )
**WA SET PREFERENCE** ( *objeto* : Field, Variable ; *selector* : Integer ; *valor* : Boolean )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| selector | Integer | → | Preferencia a modificar |
-| valor | Boolean | → | Valor de la preferencia (True = permitido, False = no autorizado) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| selector | Integer | → | Preferencia a modificar |
+| valor | Boolean | → | Valor de la preferencia (True = permitido, False = no autorizado) |
@@ -55,6 +55,6 @@ Para activar la URL suéltela en el área web 'myarea':
| | |
| --- | --- |
| Número de comando | 1041 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
index 301ead144729c9..8da188c1cf3652 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-url-filters
displayed_sidebar: docs
---
-**WA SET URL FILTERS** ( {* ;} *objeto* ; *arrFiltros* ; *arrAutorizRechazar* )
+**WA SET URL FILTERS** ( * ; *objeto* : Text ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
**WA SET URL FILTERS** ( *objeto* : Field, Variable ; *arrFiltros* : Text array ; *arrAutorizRechazar* : Boolean array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
-| arrFiltros | Text array | → | Array de filtros |
-| arrAutorizRechazar | Boolean array | → | Array autorizar- rechazar |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| arrFiltros | Text array | → | Array de filtros |
+| arrAutorizRechazar | Boolean array | → | Array autorizar- rechazar |
@@ -161,6 +161,6 @@ Usted quiere negar el acceso a direcciones IP específicas:
| | |
| --- | --- |
| Número de comando | 1030 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
index c6c78cf8aeb8bf..90c85c7a825d05 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-stop-loading-url
displayed_sidebar: docs
---
-**WA STOP LOADING URL** ( {* ;} *objeto* )
+**WA STOP LOADING URL** ( * ; *objeto* : Text )
**WA STOP LOADING URL** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1024 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
index a93619b3554cbd..e2e64844e5c7d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-in
displayed_sidebar: docs
---
-**WA ZOOM IN** ( {* ;} *objeto* )
+**WA ZOOM IN** ( * ; *objeto* : Text )
**WA ZOOM IN** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1039 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
index b087afb0fefe89..c7f7a1fd1e6fa5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-out
displayed_sidebar: docs
---
-**WA ZOOM OUT** ( {* ;} *objeto* )
+**WA ZOOM OUT** ( * ; *objeto* : Text )
**WA ZOOM OUT** ( *objeto* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
-| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
+| * | Operador | → | Si se especifica, objeto es un nombre de objeto (cadena) Si se omite, objeto es una variable |
+| objeto | any | → | Nombre de objeto (si se especifica *) o Variable (si se omite *) |
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1040 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
index 81c86f791d37c5..4cc17822b5a935 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte el ejemplo del comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número de comando | 1211 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
index 0ba030d663fcef..0feff8fe51135d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-body-part
displayed_sidebar: docs
---
-**WEB GET BODY PART** ( *parte* ; *contenido* ; *nombre* ; *tipoMime* ; *nomArchivo* )
+**WEB GET BODY PART** ( *parte* : Integer ; *contenido* : Blob, Text ; *nombre* : Text ; *tipoMime* : Text ; *nomArchivo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| parte | Integer | → | Número de parte |
+| parte | Integer | → | Número de parte |
| contenido | Blob, Text | ← | Contenido de la parte |
| nombre | Text | ← | Nombre de la variable "input" |
| tipoMime | Text | ← | Tipo mime del archivo |
@@ -98,6 +98,6 @@ Este es el código del método GetFile:
| | |
| --- | --- |
| Número de comando | 1212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
index 5cd5f81b7fc506..7b7d416d3e0e3a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si este comando se llama fuera del contexto de una sesión web, devuelve una cad
| | |
| --- | --- |
| Número de comando | 1162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
index 8abfb6da484aec..a272e20eae2f38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-body
displayed_sidebar: docs
---
-**WEB GET HTTP BODY** ( *cuerpo* )
+**WEB GET HTTP BODY** ( *cuerpo* : Blob, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ Cuando el formulario se envia al servidor web, la variable $textoSolicitud recib
| | |
| --- | --- |
| Número de comando | 814 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
index fe5c31dfdcc6cf..3411302cb531ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-header
displayed_sidebar: docs
---
-**WEB GET HTTP HEADER** ( encab|arrayCamp {; *arrayValores*} )
+**WEB GET HTTP HEADER** ( encab|arrayCamp {; *arrayValores* : Text array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -124,6 +124,6 @@ On Web Connection):
| | |
| --- | --- |
| Número de comando | 697 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
index 8ad5defd352c28..5d197dc491edb4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-option
displayed_sidebar: docs
---
-**WEB GET OPTION** ( *selector* ; *valor* )
+**WEB GET OPTION** ( *selector* : Integer ; *valor* : Integer, Text, Collection )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Código de la opción a modificar |
+| selector | Integer | → | Código de la opción a modificar |
| valor | Integer, Text, Collection | ← | Valor de la opción |
@@ -69,6 +69,6 @@ Cuando utiliza el *selector* Web debug log, puede recibir una de las siguientes
| | |
| --- | --- |
| Número de comando | 1209 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
index d5de85b04ffdd4..3825405e4a3ebe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-server-info
displayed_sidebar: docs
---
-**WEB Get server info** {( *conCaché* )} : Object
+**WEB Get server info** ( *conCaché* : Boolean ) : Object
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| conCaché | Boolean | → | True para devolver la descripción de la caché Web. De lo contrario (por defecto), no se devuelve la descripción de la caché. |
+| conCaché | Boolean | → | True para devolver la descripción de la caché Web. De lo contrario (por defecto), no se devuelve la descripción de la caché. |
| Resultado | Object | ← | Información sobre el servidor Web en ejecución y el servidor SOAP |
@@ -134,6 +134,6 @@ Después de ejecutar el siguiente código:
| | |
| --- | --- |
| Número de comando | 1531 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
index 0e660647d8dba7..5f679cc750c097 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-statistics
displayed_sidebar: docs
---
-**WEB GET STATISTICS** ( *paginas* ; *hits* ; *uso* )
+**WEB GET STATISTICS** ( *paginas* : Text array ; *hits* : Integer array ; *uso* : Integer )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ Puede enviar la página "stats.shtm" utilizando un enlace URL o utilizando el co
| | |
| --- | --- |
| Número de comando | 658 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
index 035f5bcb4ba7fa..d8f9c5e3613964 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-variables
displayed_sidebar: docs
---
-**WEB GET VARIABLES** ( *arrayNoms* ; *arrayValores* )
+**WEB GET VARIABLES** ( *arrayNoms* : Text array ; *arrayValores* : Text array )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ La variable vNOMBRE contiene ROBERTO y vCIUDAD contiene PARIS.
| | |
| --- | --- |
| Número de comando | 683 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
index 1130d0abef850b..0b896843de599c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por ejemplo, rechazar los intentos de conexión en modo no
| | |
| --- | --- |
| Número de comando | 698 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
index 298cd294c4b4f8..2867d8d1f6cadb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Usted quiere verificar que el servidor web se está ejecutando:
| | |
| --- | --- |
| Número de comando | 1313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
index d27bfb964bd8c2..eb88591b7df256 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-close-session
displayed_sidebar: docs
---
-**WEB LEGACY CLOSE SESSION** ( *idSesion* )
+**WEB LEGACY CLOSE SESSION** ( *idSesion* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| idSesion | Text | → | UUID de sesión |
+| idSesion | Text | → | UUID de sesión |
@@ -41,6 +41,6 @@ Después de la ejecución de este comando, si un cliente web envía una petició
| | |
| --- | --- |
| Número de comando | 1208 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
index e50d714a8e664f..0ac02274001539 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-get-session-expiration
displayed_sidebar: docs
---
-**WEB LEGACY GET SESSION EXPIRATION** ( *idSesion* ; *fechaVenc* ; *horaVenc* )
+**WEB LEGACY GET SESSION EXPIRATION** ( *idSesion* : Text ; *fechaVenc* : Date ; *horaVenc* : Time )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| idSesion | Text | → | UUID de sesión |
+| idSesion | Text | → | UUID de sesión |
| fechaVenc | Date | ← | Fecha de vencimiento de la cookie |
| horaVenc | Time | ← | Fecha de vencimiento de la cookie |
@@ -44,6 +44,6 @@ El parámetro *fechaVenc* recibe la fecha de vencimiento y el parámetro *horaVe
| | |
| --- | --- |
| Número de comando | 1207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
index 328aea1c3d3637..c4e0ce4899e208 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-blob
displayed_sidebar: docs
---
-**WEB SEND BLOB** ( *BLOB* ; *tipo* )
+**WEB SEND BLOB** ( *BLOB* : Blob ; *tipo* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB a enviar al navegador |
-| tipo | Text | → | Tipo de datos del BLOB |
+| Blob | Blob | → | BLOB a enviar al navegador |
+| tipo | Text | → | Tipo de datos del BLOB |
@@ -43,6 +43,6 @@ Consulte el ejemplo de la rutina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número de comando | 654 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
index 670c6171602d73..617c4a7686cad0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
@@ -5,11 +5,11 @@ slug: /commands/web-send-file
displayed_sidebar: docs
---
-**WEB SEND FILE** ( *archivohtml* )
+**WEB SEND FILE** ( *archivohtml* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| archivohtml | Text | → | Ruta de acceso HTML al archivo HTML o cadena vacía para terminar SEND HTML FILE |
+| archivohtml | Text | → | Ruta de acceso HTML al archivo HTML o cadena vacía para terminar SEND HTML FILE |
@@ -56,7 +56,7 @@ Si el archivo a enviar existe y si el timeout no ha pasado, OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 619 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
index 4ab1872991f1ee..119f207a4fa192 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-http-redirect
displayed_sidebar: docs
---
-**WEB SEND HTTP REDIRECT** ( *url* {; *} )
+**WEB SEND HTTP REDIRECT** ( *url* : Text {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| url | Text | → | Nuevo URL |
-| * | Operador | → | Si se especifica = el URL no está traducido, Si se omite = el URL está traducido |
+| url | Text | → | Nuevo URL |
+| * | Operador | → | Si se especifica = el URL no está traducido, Si se omite = el URL está traducido |
@@ -62,6 +62,6 @@ En el [On Web Connection](./on-web-connection-database-method.md), inserte el si
| | |
| --- | --- |
| Número de comando | 659 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
index 0b0996e4c0207f..4264171c73de70 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-raw-data
displayed_sidebar: docs
---
-**WEB SEND RAW DATA** ( *datos* {; *} )
+**WEB SEND RAW DATA** ( *datos* : Blob {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| datos | Blob | → | Datos HTTP a enviar |
-| * | Operador | → | Envío en trozos (chunked) |
+| datos | Blob | → | Datos HTTP a enviar |
+| * | Operador | → | Envío en trozos (chunked) |
@@ -87,6 +87,6 @@ Este ejemplo ilustra el uso de la opción chunked con el comando **WEB SEND RAW
| | |
| --- | --- |
| Número de comando | 815 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
index f3572dfb85ce77..1239778650dc22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-text
displayed_sidebar: docs
---
-**WEB SEND TEXT** ( *textoHTML* {; *tipo*} )
+**WEB SEND TEXT** ( *textoHTML* : Text {; *tipo* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| textoHTML | Text | → | Campo o variable de tipo texto con formato HTML a enviar al navegador web |
-| tipo | Text | → | True = Ir al modo contextual False o si se omite = Permanecer en el modo actual |
+| textoHTML | Text | → | Campo o variable de tipo texto con formato HTML a enviar al navegador web |
+| tipo | Text | → | True = Ir al modo contextual False o si se omite = Permanecer en el modo actual |
@@ -50,6 +50,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 677 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
index 9b101f70af9f06..467dee1b86e753 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/web-service-authenticate
displayed_sidebar: docs
---
-**WEB SERVICE AUTHENTICATE** ( *nombre* ; *contraseña* {; *metAutenticacion*} {; *} )
+**WEB SERVICE AUTHENTICATE** ( *nombre* : Text ; *contraseña* : Text {; *metAutenticacion* : Integer} {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombre | Text | → | Nombre del usuario |
-| contraseña | Text | → | Contraseña del usuario |
-| metAutenticacion | Integer | → | Método de Autenticación 0 u omitido = no especificado, 1 = BASIC, 2 = DIGEST |
-| * | Operador | → | Si se pasa: autenticación por proxy |
+| nombre | Text | → | Nombre del usuario |
+| contraseña | Text | → | Contraseña del usuario |
+| metAutenticacion | Integer | → | Método de Autenticación 0 u omitido = no especificado, 1 = BASIC, 2 = DIGEST |
+| * | Operador | → | Si se pasa: autenticación por proxy |
@@ -58,6 +58,6 @@ Autenticación con un servicio web ubicado detrás de un proxy:
| | |
| --- | --- |
| Número de comando | 786 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
index 579b0882ccc254..c334237a75c93c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
@@ -5,16 +5,16 @@ slug: /commands/web-service-call
displayed_sidebar: docs
---
-**WEB SERVICE CALL** ( *urlAcceso* ; *soapAccion* ; *nomMetodo* ; *nomEspacio* {; *tipoCompuesto* {; *}} )
+**WEB SERVICE CALL** ( *urlAcceso* : Text ; *soapAccion* : Text ; *nomMetodo* : Text ; *nomEspacio* : Text {; *tipoCompuesto* : Integer {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| urlAcceso | Text | → | URL de acceso al servicio Web |
-| soapAccion | Text | → | Contenido del campo SOAPAction |
-| nomMetodo | Text | → | Nombre del método |
-| nomEspacio | Text | → | Espacio del nombre (Namespace) |
-| tipoCompuesto | Integer | → | Configuración de tipos compuestos (tipos simples si se omite) |
-| * | Operador | → | No cerrar la conexión |
+| urlAcceso | Text | → | URL de acceso al servicio Web |
+| soapAccion | Text | → | Contenido del campo SOAPAction |
+| nomMetodo | Text | → | Nombre del método |
+| nomEspacio | Text | → | Espacio del nombre (Namespace) |
+| tipoCompuesto | Integer | → | Configuración de tipos compuestos (tipos simples si se omite) |
+| * | Operador | → | No cerrar la conexión |
@@ -167,7 +167,7 @@ Si la petición se enruta correctamente y el servicio web la acepta, la variable
| | |
| --- | --- |
| Número de comando | 778 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
index cd1ffd9db35e5e..01ec0e1043bf58 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-service-get-info
displayed_sidebar: docs
---
-**WEB SERVICE Get info** ( *tipoInfo* ) : Text
+**WEB SERVICE Get info** ( *tipoInfo* : Integer ) : Text
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| tipoInfo | Integer | → | Información a recuperar |
+| tipoInfo | Integer | → | Información a recuperar |
| Resultado | Text | ← | Información sobre el último error SOAP |
@@ -36,6 +36,6 @@ Se devuelve una cadena vacía cuando no hay información disponible, en particul
| | |
| --- | --- |
| Número de comando | 780 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
index f0c3ba05cb6e97..62d60214d6f897 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-get-result
displayed_sidebar: docs
---
-**WEB SERVICE GET RESULT** ( *valorDevuelto* {; *nombreDevuelto* {; *}} )
+**WEB SERVICE GET RESULT** ( *valorDevuelto* : Variable {; *nombreDevuelto* : Text {; *}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| valorDevuelto | Variable | ← | Valor devuelto por el servicio web |
-| nombreDevuelto | Text | → | Nombre del parámetro a recuperar |
-| * | Operator | → | Liberar memoria |
+| nombreDevuelto | Text | → | Nombre del parámetro a recuperar |
+| * | Operator | → | Liberar memoria |
@@ -53,6 +53,6 @@ Imagine un servicio web que devuelve la hora actual en cualquier ciudad del mund
| | |
| --- | --- |
| Número de comando | 779 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
index a1c472a564463e..d2b5e73629cef4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-service-set-option
displayed_sidebar: docs
---
-**WEB SERVICE SET OPTION** ( *opción* ; *valor* )
+**WEB SERVICE SET OPTION** ( *opción* : Integer ; *valor* : Integer, Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| opción | Integer | → | Código de la opción a definir |
-| valor | Integer, Text | → | Valor de la opción |
+| opción | Integer | → | Código de la opción a definir |
+| valor | Integer, Text | → | Valor de la opción |
@@ -68,6 +68,6 @@ Utilización de la versión 1.2 del protocolo SOAP:
| | |
| --- | --- |
| Número de comando | 901 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
index 557e0434c1b28c..56d3b58ab13753 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-set-parameter
displayed_sidebar: docs
---
-**WEB SERVICE SET PARAMETER** ( *nombre* ; *valor* {; *tipoSOAP*} )
+**WEB SERVICE SET PARAMETER** ( *nombre* : Text ; *valor* : Variable {; *tipoSOAP* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nombre | Text | → | Nombre del parámetro a incluir en la petición SOAP |
-| valor | Variable | → | Variable 4D que contiene el valor del parámetro |
-| tipoSOAP | Text | → | Tipo SOAP del parámetro |
+| nombre | Text | → | Nombre del parámetro a incluir en la petición SOAP |
+| valor | Variable | → | Variable 4D que contiene el valor del parámetro |
+| tipoSOAP | Text | → | Tipo SOAP del parámetro |
@@ -78,6 +78,6 @@ Este ejemplo define dos parámetros:
| | |
| --- | --- |
| Número de comando | 777 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
index 4fba27a8756267..72589ab7555c1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-home-page
displayed_sidebar: docs
---
-**WEB SET HOME PAGE** ( *pagInicio* )
+**WEB SET HOME PAGE** ( *pagInicio* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| pagInicio | Text | → | Nombre de la página o ruta de acceso HTML a la página o "" para no enviar la página de inicio personalizada |
+| pagInicio | Text | → | Nombre de la página o ruta de acceso HTML a la página o "" para no enviar la página de inicio personalizada |
@@ -33,6 +33,6 @@ Para no enviar *pagInicio* como página de inicio para el proceso web actual, ej
| | |
| --- | --- |
| Número de comando | 639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
index af1e6776c955e6..e14e05be7da26a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-http-header
displayed_sidebar: docs
---
-**WEB SET HTTP HEADER** ( encab|arrayCamp {; *arrayValores*} )
+**WEB SET HTTP HEADER** ( encab|arrayCamp {; *arrayValores* : Text array} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| encab|arrayCamp | Texto, Array texto | → | Campo o variable que contiene el encabezado HTTP de la petición o Array de campos del encabezado HTTP |
-| arrayValores | Text array | → | Contenido de los campos del encabezado HTTP |
+| encab|arrayCamp | Texto, Array texto | → | Campo o variable que contiene el encabezado HTTP de la petición o Array de campos del encabezado HTTP |
+| arrayValores | Text array | → | Contenido de los campos del encabezado HTTP |
@@ -71,6 +71,6 @@ Los campos **Date** y **Content-Length** siempre son definidos por defecto por 4
| | |
| --- | --- |
| Número de comando | 660 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
index b6dfff24ec09f3..780d8acfbe4389 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-option
displayed_sidebar: docs
---
-**WEB SET OPTION** ( *selector* ; *valor* )
+**WEB SET OPTION** ( *selector* : Integer ; *valor* : Integer, Text, Collection )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| selector | Integer | → | Código de la opción a modificar |
-| valor | Integer, Text, Collection | → | Valor de la opción |
+| selector | Integer | → | Código de la opción a modificar |
+| valor | Integer, Text, Collection | → | Valor de la opción |
@@ -86,6 +86,6 @@ Una entrada registrada se ve así:
| | |
| --- | --- |
| Número de comando | 5 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
index b1b00c69c26f8b..5ce826ce7e09e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-root-folder
displayed_sidebar: docs
---
-**WEB SET ROOT FOLDER** ( *carpetaRaiz* )
+**WEB SET ROOT FOLDER** ( *carpetaRaiz* : Text )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| carpetaRaiz | Text | → | Ruta de acceso de la carpeta raíz del servidor Web |
+| carpetaRaiz | Text | → | Ruta de acceso de la carpeta raíz del servidor Web |
@@ -44,7 +44,7 @@ Si especifica una ruta de acceso invalida, se generará un error del administrad
| | |
| --- | --- |
| Número de comando | 634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
index 9151137c4193ca..de531f67c5c726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si el servidor web se inicia correctamente, OK toma el valor *1*; de lo contrari
| | |
| --- | --- |
| Número de comando | 617 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
index b5f085b99eaba9..c4715951c1d3db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si el servidor web no se ha iniciado, el comando no hace nada.
| | |
| --- | --- |
| Número de comando | 618 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
index df247498ec4412..aa404bba699988 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
@@ -5,12 +5,12 @@ slug: /commands/web-validate-digest
displayed_sidebar: docs
---
-**WEB Validate digest** ( *nomUsuario* ; *contraseña* ) : Boolean
+**WEB Validate digest** ( *nomUsuario* : Text ; *contraseña* : Text ) : Boolean
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomUsuario | Text | → | Nombre del usuario |
-| contraseña | Text | → | Contraseña del usuario |
+| nomUsuario | Text | → | Nombre del usuario |
+| contraseña | Text | → | Contraseña del usuario |
| Resultado | Boolean | ← | True=Autenticación correcta, False=Falla de la autenticación |
@@ -63,6 +63,6 @@ Ejemplo de método de base On Web Authentication en modo Digest:
| | |
| --- | --- |
| Número de comando | 946 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
index 671ac6aa3f3fa8..27ae0f726601f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
@@ -5,11 +5,11 @@ slug: /commands/window-kind
displayed_sidebar: docs
---
-**Window kind** {( *ventana* )} : Integer
+**Window kind** ( *ventana* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
+| ventana | Integer | → | Número de referencia de la ventana o Ventana del primer plano del proceso actual, si se omite |
| Resultado | Integer | ← | Tipo de ventana |
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 445 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
index 958d3bae9dc56b..227a12ace8dd6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
@@ -5,12 +5,12 @@ slug: /commands/window-list
displayed_sidebar: docs
---
-**WINDOW LIST** ( *ventanas* {; *} )
+**WINDOW LIST** ( *ventanas* : Array {; *} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
| ventanas | Array | ← | Array de los números de referencia de las ventanas |
-| * | Operador | → | Si se especifica, tiene en cuenta las ventanas flotantes Si se omite, ignora las ventanas flotantes |
+| * | Operador | → | Si se especifica, tiene en cuenta las ventanas flotantes Si se omite, ignora las ventanas flotantes |
@@ -56,6 +56,6 @@ El siguiente método de proyecto coloca en mosaico todas las ventanas abiertas a
| | |
| --- | --- |
| Número de comando | 442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
index 1a34c745ae6c91..db17810eff3822 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
@@ -5,11 +5,11 @@ slug: /commands/window-process
displayed_sidebar: docs
---
-**Window process** {( *ventana* )} : Integer
+**Window process** ( *ventana* : Integer ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| ventana | Integer | → | Número de referencia de la ventana |
+| ventana | Integer | → | Número de referencia de la ventana |
| Resultado | Integer | ← | Número de referencia del proceso |
@@ -29,6 +29,6 @@ Si omite el parámetro *ventana*, Window process devuelve el número del proceso
| | |
| --- | --- |
| Número de comando | 446 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
index 4e9ca076b6daf1..d82095a479721c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
index 7ccb9dc3f99fa5..cd0de2e960a0bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
index 7e6f4e08db969e..e571bf6f7d93b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/write-picture-file
displayed_sidebar: docs
---
-**WRITE PICTURE FILE** ( *nomArchivo* ; *imagen* {; *codec*} )
+**WRITE PICTURE FILE** ( *nomArchivo* : Text ; *imagen* : Picture {; *codec* : Text} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| nomArchivo | Text | → | Nombre o ruta de acceso completo del archivo a escribir, o cadena vacía |
-| imagen | Picture | → | Campo o variable imagen a escribir |
-| codec | Text | → | Identificación de codec de imagen |
+| nomArchivo | Text | → | Nombre o ruta de acceso completo del archivo a escribir, o cadena vacía |
+| imagen | Picture | → | Campo o variable imagen a escribir |
+| codec | Text | → | Identificación de codec de imagen |
@@ -56,7 +56,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 680 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
index 3ab05a4697429f..529ddf1348aaa6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
@@ -5,11 +5,11 @@ slug: /commands/xml-decode
displayed_sidebar: docs
---
-**XML DECODE** ( valor XML ; *objeto4D* )
+**XML DECODE** ( valor XML ; *objeto4D* : Field, Variable )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| valor XML | Texto | → | Valor de tipo texto proveniente de una estructura XML |
+| valor XML | Texto | → | Valor de tipo texto proveniente de una estructura XML |
| objeto4D | Field, Variable | ← | Variable o campo 4D que recibe el valor XML convertido |
@@ -82,6 +82,6 @@ Ejemplo del documento XML:
| | |
| --- | --- |
| Número de comando | 1091 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
index f419f46e4da9d3..171e63e12405c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
@@ -5,11 +5,11 @@ slug: /commands/xml-get-error
displayed_sidebar: docs
---
-**XML GET ERROR** ( *elementRef* ; *textoError* {; *linea* {; *columna*}} )
+**XML GET ERROR** ( *elementRef* : Text ; *textoError* : Variable {; *linea* : Variable {; *columna* : Variable}} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| elementRef | Text | → | Referencia del elemento XML |
+| elementRef | Text | → | Referencia del elemento XML |
| textoError | Variable | ← | Texto del error |
| linea | Variable | ← | Número de línea |
| columna | Variable | ← | Número de columna |
@@ -35,7 +35,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 732 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
index 01d1b65f51bf9c..6e35cf05412a66 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
@@ -5,12 +5,12 @@ slug: /commands/xml-get-options
displayed_sidebar: docs
---
-**XML GET OPTIONS** ( refElement | document ; *selector* ; *valor* {; *selector2* ; *valor2* ; ... ; *selectorN* ; *valorN*} )
+**XML GET OPTIONS** ( refElement | document ; *selector* : Integer ; *valor* : Integer {; ...(*selector* : Integer, *valor* : Integer)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | document | Texto | → | Referencia del elemento XML raíz o referenica del documento abierto |
-| selector | Integer | → | Opción a leer |
+| refElement | document | Texto | → | Referencia del elemento XML raíz o referenica del documento abierto |
+| selector | Integer | → | Opción a leer |
| valor | Integer | ← | Valor actual de la opción |
@@ -43,6 +43,6 @@ En *selector*, pase una de las constantes del tema *XML* indicando la opción a
| | |
| --- | --- |
| Número de comando | 1096 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
index 765ce7f7c054a2..18e636e3ae498b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
@@ -5,13 +5,13 @@ slug: /commands/xml-set-options
displayed_sidebar: docs
---
-**XML SET OPTIONS** ( refElement | document ; *selector* ; *valor* {; *selector2* ; *valor2* ; ... ; *selectorN* ; *valorN*} )
+**XML SET OPTIONS** ( refElement | document ; *selector* : Integer ; *valor* : Integer {; ...(*selector* : Integer, *valor* : Integer)} )
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| refElement | document | Texto | → | Referencia del elemento XML raíz o Referencia del documento abierto |
-| selector | Integer | → | Opción a definir |
-| valor | Integer | → | Valor de la opción |
+| refElement | document | Texto | → | Referencia del elemento XML raíz o Referencia del documento abierto |
+| selector | Integer | → | Opción a definir |
+| valor | Integer | → | Valor de la opción |
@@ -75,6 +75,6 @@ Inserción de una imagen SVG:
| | |
| --- | --- |
| Número de comando | 1090 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
index 5602f35fc14ee8..79c1cdf78e6384 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
@@ -5,11 +5,11 @@ slug: /commands/year-of
displayed_sidebar: docs
---
-**Year of** ( *fecha* ) : Integer
+**Year of** ( *fecha* : Date ) : Integer
| Parámetro | Tipo | | Descripción |
| --- | --- | --- | --- |
-| fecha | Date | → | Fecha para la cual devolver el año |
+| fecha | Date | → | Fecha para la cual devolver el año |
| Resultado | Integer | ← | Número indicando el año de la fecha |
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 25 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/compile-project.md
index 210a58340b690a..1f17da6c7e3a4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/compile-project.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/compile-project.md
@@ -5,7 +5,7 @@ slug: /commands/compile-project
displayed_sidebar: docs
---
-**Compile project** {( {*projectFile*}{;}{*options*} )} : Object
+**Compile project** ( {*options* : Object} ) : Object
**Compile project** ( *projectFile* : 4D.File } {; *options* : Object} ) : Object
@@ -194,9 +194,9 @@ var $result:=Compile project($options)
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1760 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1760 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/file.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/file.md
index 1eaba138f757d3..592deca82d5ae4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/file.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**File** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.File
**File** ( *fileConstant* : Integer { ; \* } ) : 4D.File
+**File** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.File
**File** ( *fileConstant* : Integer { ; * } ) : 4D.File
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Ruta del archivo |
| fileConstant | Integer | → | Constante del archivo 4D |
| pathType | Integer | → | `fk posix path` (por defecto) o `fk platform path` |
-| \* | operator | → | \* para devolver el archivo de la base local |
+| \* | Operador | → | \* para devolver el archivo de la base local |
| Resultado | [4D.File](../API/FileClass.md) | ← | Nuevo objeto de archivo |
@@ -88,9 +88,9 @@ Si el comando se llama desde un componente, pase el parámetro opcional `*` para
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1566 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1566 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/folder.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/folder.md
index 0b4a04629d7e12..aaf97debdbb61d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/folder.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; \* } ) : 4D.Folder
+**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; * } ) : 4D.Folder
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Ruta de la carpeta |
| folderConstant | Integer | → | Constante de la carpeta 4D |
| pathType | Integer | → | `fk posix path` (por defecto) o `fk platform path` |
-| \* | operator | → | \* para devolver la carpeta de la base local |
+| \* | Operador | → | \* para devolver la carpeta de la base local |
| Resultado | [4D.Folder](../API/FolderClass.md) | ← | Nuevo objeto de carpeta |
@@ -78,9 +78,9 @@ Si el comando se llama desde un componente, pase el parámetro opcional `*` para
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1567 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1567 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/license-info.md
index c2f031693f6363..356771c6b31aed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/license-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parámetros | Tipo | | Descripción |
| ---------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Información sobre la licencia activa |
+| Resultado | Object | ← | Information about the active license |
@@ -143,9 +143,9 @@ Desea obtener información sobre su licencia actual de 4D Server:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
index e0fe65323178a0..529ac35b9cf10b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
@@ -4,7 +4,7 @@ title: LISTBOX Get property
displayed_sidebar: docs
---
-**LISTBOX Get property** ( {* ;} *object* ; *property* ) : any
+**LISTBOX Get property** ( * ; *object* : Text ; *property* : Integer ) : any
**LISTBOX Get property** ( *object* : Field, Variable ; *property* : Integer ) : any
@@ -37,6 +37,8 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,7 +49,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
+| lk hor scrollbar height | 3 | Altura en píxeles (solo se puede leer)
Aplica a: List box |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Ancho en píxeles (solo se puede leer)
Aplica a: List box |
\* These properties only apply to list box columns; if you pass a list box as parameter with one of these properties, **LISTBOX Get property** returns -1, or an empty string, depending on the *property* passed.
@@ -105,9 +104,9 @@ Dado un list box "MyListbox", si ejecuta la siguiente instrucción:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 917 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | --- |
+| Número de comando | 917 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
index 26236b6a1d6836..98292b6703049b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
@@ -4,7 +4,7 @@ title: LISTBOX SET PROPERTY
displayed_sidebar: docs
---
-**LISTBOX SET PROPERTY** ( {* ;} *object* ; *property* ; *value* )
+**LISTBOX SET PROPERTY** ( * ; *object* : Text ; *property* : Integer ; *value* : Integer, Text )
**LISTBOX SET PROPERTY** ( *object* : Field, Variable ; *property* : Integer ; *value* : Integer, Text )
@@ -37,6 +37,8 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,21 +49,17 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
| lk named selection | 28 | **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** property for selection type list box
Applies to: List box |
| lk resizing mode | 11 | **[Column Auto-Resizing](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)** property
Applies to: List box
Possible values:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unit of **[Row Height](../FormObjects/properties_CoordinatesAndSizing.md#row-height)** property
Applies to: List box
Possible values:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
| lk selection mode | 10 | **[Selection Mode](../FormObjects/properties_ListBox.md#selection-mode)** property
Applies to: List box
Possible values:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
\* These properties can only be applied to list box columns; however, if you pass a list box as parameter, **LISTBOX SET PROPERTY** applies the *property* to each column of the list box.
@@ -90,9 +88,9 @@ Desea definir un ancho máximo para la columna cuyo nombre es "ProductNumber":
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1440 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1440 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/open-datastore.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/open-datastore.md
index 417c2e3d6c437a..903c5df54c63d6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/open-datastore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/open-datastore.md
@@ -6,12 +6,12 @@ displayed_sidebar: docs
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | --------------------------------------- |
-| 21 | Qodly cloud discontinued |
-| 20 R6 | Support access to Qodly cloud instances |
-| 20 R4 | Nueva propiedad *passwordAlgorithm* |
-| 18 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ----------------------------------------------- |
+| 21 | Qodly cloud discontinued |
+| 20 R6 | Soporta el acceso a instancias en la nube Qodly |
+| 20 R4 | Nueva propiedad *passwordAlgorithm* |
+| 18 | Añadidos |
@@ -33,9 +33,9 @@ El comando `Open datastore` conect
Exchanges with the remote datastore are automatically managed via REST requests. The *connectionInfo* 4D datastore must be available as a remote datastore, i.e.:
-- its Web Server must be launched with http and/or https enabled,
+- su servidor web debe ser lanzado con http y/o https activado,
- its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked),
-- a client license must be available if required (see note).
+- una licencia de cliente debe estar disponible si es necesario (ver nota).
:::note
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/session.md
index c7a55da29c5d8a..52f39a41c501ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/session.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## Descripción
-El comando `Session` devuelve el objeto `Session` correspondiente a la sesión usuario actual.
+The `Session` command returns the `Session` object corresponding to the current session.
-Dependiendo del proceso desde el que se llame al comando, la sesión de usuario actual puede ser:
+Dependiendo del proceso desde el que se llame al comando, la sesión actual puede ser:
- una sesión web (cuando las [sesiones escalables están activadas](WebServer/sessions.md#enabling-web-sessions)),
-- una sesión de cliente remoto,
-- la sesión de procedimientos almacenados,
-- la sesión del ***Print form*** en una aplicación independiente.
+- una sesión de cliente remoto (en el servidor),
+- una sesión de procedimientos almacenados,
+- a standalone session.
Para obtener más información, consulte el párrafo [Tipos de sesion](../API/SessionClass.md#session-types).
-Si el comando se llama desde un contexto no soportado (por ejemplo, sesiones escalables desactivadas), devuelve *Null*.
+El comando devuelve *Null* si:
-## Sesiones web
+- se llama en un proceso web y se desactivan las sesiones escalables en el servidor web,
+- se llama en un 4D remoto.
+
+### Sesiones web
El objeto `Session` de las sesiones web está disponible desde cualquier proceso web:
@@ -51,7 +54,7 @@ El objeto `Session` de las sesiones web está disponible desde cualquier proceso
Para más información sobre las sesiones usuario web, consulte la sección [Sesiones web](../WebServer/sessions.md).
-## Sesiones de cliente remoto
+### Sesiones de cliente remoto
El objeto `Session` de las sesiones cliente remotas está disponible desde:
@@ -60,21 +63,48 @@ El objeto `Session` de las sesiones cliente remotas está disponible desde:
- ORDA [funciones del modelo de datos](../ORDA/ordaClasses.md) (excepto las declaradas con la palabra clave [`local`](../ORDA/ordaClasses.md#local-functions),
- Los métodos base `On Server Open Connection` y `On Server Shutdown Connection` de la base de datos.
-Para más información sobre las sesiones usuario remoto, por favor consulte el párrafo [**Sesiones usuario cliente remoto**](../Desktop/clientServer.md#remote-user-sessions).
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## Sesión de procedimientos almacenados
+### Sesión de procedimientos almacenados
Todos los procesos de procedimientos almacenados comparten la misma sesión virtual de usuario. El objeto `Session` de los procedimientos almacenados está disponible desde:
- métodos llamados con el comando [`Execute on server`](../commands-legacy/execute-on-server.md),
- Los métodos base `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown` y `On System event`
-Para obtener información sobre la sesión de usuario virtual de los procedimientos almacenados, consulte la página [4D Server y lenguaje 4D](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html).
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
-## Sesión independiente
+### Sesión independiente
El objeto `Session` está disponible desde cualquier proceso en aplicaciones independientes (monousuario) para que pueda escribir y probar su código cliente/servidor utilizando el objeto `Session` en su entorno de desarrollo 4D.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+### `Session` y componentes
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Ejemplo
Ha definido el método `action_Session` con el atributo "Disponible a través de etiquetas 4D y URLs". Se llama al método introduciendo la siguiente URL en el navegador:
@@ -84,13 +114,13 @@ IP:port/4DACTION/action_Session
```
```4d
- //método action_Session
+ //action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //llamando a la función hasPrivilege
- WEB SEND TEXT("4DACTION --> Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
WEB SEND TEXT("4DACTION --> Session is null")
@@ -100,15 +130,16 @@ IP:port/4DACTION/action_Session
## Ver también
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1714 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1714 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/theme/Collections.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/theme/Collections.md
index 4f096364d18748..8efa32f280a911 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/theme/Collections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/theme/Collections.md
@@ -1,7 +1,7 @@
---
id: Collections_theme
-title: Collections
-sidebar_label: Collections
+title: Colecciones
+sidebar_label: Colecciones
slug: /commands/theme/Collections
---
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-event.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-event.md
index d152985e83fc99..c03fa27385aa2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-event.md
@@ -29,9 +29,9 @@ El objeto devuelto contiene las siguientes propiedades:
| caller | | string | [Server-side reference](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview#data-access-category) of the component triggering the event |
| eventType | | string | Type of event:onbluronfocusonclickonauxclickonmouseenteronmouseleaveonkeyuponkeydownonchangeunloadonload - triggered when the `Page` loads |
| data | | object | Información adicional en función del componente implicado |
-| | index | number | Tabs component: index of the tab (indexing starts at 0)Data Table component: column number |
+| | index | number | Componente Pestañas: índice de la pestaña (la indexación comienza en 0)Componente de la tabla de datos: número de columna |
| | row | number | Componente de la tabla de datos: número de línea |
-| | name | string | Data Table component: qodlysource name of the column (e.g. "firstname", "address.city") |
+| | name | string | Componente Data Table: nombre qodlysource de la columna (por ejemplo, "firstname", "address.city") |
#### Ejemplo
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-form.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-form.md
index 11a368e5bc0f4d..320e9799280d06 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-form.md
@@ -20,11 +20,11 @@ The `Web Form` command returns a `4D.We
:::info
-Keep in mind that a `4D.WebForm` object is a **proxy object**, and not a direct reference to the web form object itself. As a consequence for example, the `4D.WebForm` object does not expose all Page properties in the Debugger.
+Keep in mind that a `4D.WebForm` object is a **proxy object**, and not a direct reference to the web form object itself. Como consecuencia, por ejemplo, el objeto `4D.WebForm` no expone todas las propiedades de la página en el depurador.
:::
-Each property of the returned object is an object of the [4D.WebFormItem](../API/WebFormItemClass.md) class.
+Cada propiedad del objeto devuelto es un objeto de la clase [4D.WebFormItem](../API/WebFormItemClass.md).
The command returns `null` if it is called in a request that does not originate from Qodly Studio.
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-server.md
index 8a01b628bde82f..ec358ab13fefb5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/commands/web-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/commands/web-server.md
@@ -30,11 +30,11 @@ El comando `WEB Server` devuelve el ob
Por defecto, si se omite el parámetro *option*, el comando devuelve una referencia al servidor web de la base de datos, es decir, al servidor web por defecto. Para designar el servidor web a devolver, puede pasar una de las siguientes constantes en el parámetro *option*:
-| Constante | Valor | Comentario |
-| ------------------------------ | ----- | ------------------------------------------------------------------------------------ |
-| `Web server database` | 1 | Servidor web de la base actual (por defecto si se omite) |
-| `Web server host database` | 2 | Servidor web de la base local de un componente |
-| `Web server receiving request` | 3 | Servidor web que ha recibido la solicitud (servidor web objetivo) |
+| Constante | Valor | Comentario |
+| ------------------------------ | ----- | -------------------------------------------------------------------------------------------------- |
+| `Web server database` | 1 | Web server of the project from which the command is called (default if omitted) |
+| `Web server host database` | 2 | Servidor web de la base local de un componente |
+| `Web server receiving request` | 3 | Servidor web que ha recibido la solicitud (servidor web objetivo) |
El **objeto servidor web devuelto** contiene los valores actuales de las [propiedades del servidor web](../API/WebServerClass.md).
@@ -58,9 +58,9 @@ El objeto servidor web devuelto contiene los valores actuales de las propiedades
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1674 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1674 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/current/settings/web.md b/i18n/es/docusaurus-plugin-content-docs/current/settings/web.md
index 6cea9f5a1781b0..b53f83b2e1384a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/current/settings/web.md
+++ b/i18n/es/docusaurus-plugin-content-docs/current/settings/web.md
@@ -294,7 +294,7 @@ Inicia y detiene el servidor REST. Ver [Configuración del servidor REST](../RES
:::
-See [Users and sessions](../REST/authUsers.md) to know the recommended way to control and manage REST access in your 4D projects.
+Ver [Usuarios y sesiones](../REST/authUsers.md) para conocer la forma recomendada de controlar y administrar el acceso REST en sus proyectos 4D.
#### Activar la autenticación REST mediante la función ds.authentify()
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md
index 99dcdf0fe650d8..c7a604a12d7ae6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/API/CryptoKeyClass.md
@@ -49,7 +49,7 @@ Para obtener una visión general de esta clase, consulte la página [**CryptoKey
| Resultado | 4D.CryptoKey | <- | Objeto que encapsula un par de llaves de cifrado |
-La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, basado en el parámetro objeto *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition.
+La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, basado en el parámetro objeto *settings*. Permite generar una nueva llave RSA o ECDSA, o cargar un par de llaves existente desde una definición PEM.
#### *settings*
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/Admin/cli.md b/i18n/es/docusaurus-plugin-content-docs/version-19/Admin/cli.md
index 7126a240bfce86..ce7c267c373531 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/Admin/cli.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/Admin/cli.md
@@ -47,9 +47,9 @@ Sintaxis:
--webadmin-auto-start` | Boolean | Estado del inicio automático del [servidor web WebAdmin](webAdmin.md) |
| `
--webadmin-store-settings` | | Almacena la llave de acceso y los parámetros de inicio automático en el archivo de parámetros actual (es decir, el archivo [`WebAdmin.4DSettings`](webAdmin.md#webadmin-settings) por defecto o un archivo personalizado designado por el parámetro `--webadmin-settings-path`). Utilice el argumento `--webadmin-store-settings` para guardar estos parámetros si es necesario |
+ (*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the
-
-[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (licence alert, conversion dialog, database selection, data file selection). En este caso, se lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema, y luego la aplicación se cierra.
+[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). En este caso, se lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema, y luego la aplicación se cierra.
### Ejemplos
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md b/i18n/es/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
index ab7ff43b7f7872..0620f4f460aaef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
@@ -75,7 +75,7 @@ El operador modulo % devuelve valores significativos con números que están en
### División entera
-The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` is equivalent to `Int(a/b)`. This operator returns significant values with integer numbers only.
+The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. Este operador devuelve valores significativos sólo con números enteros.
### Comparación real
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/Desktop/building.md b/i18n/es/docusaurus-plugin-content-docs/version-19/Desktop/building.md
index 2c3b6f8346f11f..bfab4ff409536a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/Desktop/building.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/Desktop/building.md
@@ -349,8 +349,8 @@ executable\<ApplicationName>Server\Server Database`.
Para activar esta funcionalidad, añada las llaves `DatabaseToEmbedInClientWinFolder` y/o `DatabaseToEmbedInClientMacFolder` en el archivo de configuración *buildApp*. Cuando una de estas llaves está presente, el proceso de generación de la aplicación cliente genera una aplicación monopuesto: la estructura compilada, en lugar del archivo *EnginedServer.4Dlink*, se coloca en la carpeta "Database".
-* Si existe una carpeta de datos por defecto en la aplicación monopuesto, se integra una licencia.
-* Si no existe una carpeta de datos por defecto en la aplicación monopuesto, ésta se ejecutará sin archivo de datos y sin licencia.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
El escenario básico es:
@@ -423,7 +423,7 @@ Si hay un conflicto entre dos versiones diferentes del mismo plug-in (una cargad
## Página licencias y certificados
-La página de Licencias y certificados puede utilizarse para:
+The Licenses & Certificate page can be used to:
* designe el número o los números de licencia que desea integrar en su aplicación ejecutable monopuesto
* firmar la aplicación mediante un certificado en macOS.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
index 4c06656246d6dd..a1ae5ef30552c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
@@ -123,12 +123,21 @@ Por ejemplo, la siguiente instrucción:
... recupera un puntero a la variable "MyButton" que se encuentra en el objeto subformulario "MySubForm". Esta sintaxis se puede utilizar para acceder desde el formulario padre a todo objeto que se encuentre en un subformulario. También hay que tener en cuenta el comando `OBJECT Get name` que se puede utilizar para recuperar el nombre del objeto que tiene el foco.
-#### Comando CALL SUBFORM CONTAINER
+#### Comando CALL SUBFORM CONTAINER {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un evento al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. El evento se recibe en el método del objeto contenedor. Puede estar en el origen de todo evento detectado por el subformulario (clic, arrastrar y soltar, etc.).
El código del evento no tiene restricciones (por ejemplo, 20000 o -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. En el primer caso, sólo puede utilizar los eventos que haya marcado en la lista de propiedades para los contenedores de subformulario. En el segundo caso, el código no debe corresponder a ningún evento de formulario existente. Se recomienda utilizar un valor negativo para asegurarse de que este código no será utilizado por 4D en futuras versiones.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-19/REST/configuration.md b/i18n/es/docusaurus-plugin-content-docs/version-19/REST/configuration.md
index 8ec7d314bd27d7..5526bf2abc9159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-19/REST/configuration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-19/REST/configuration.md
@@ -7,7 +7,7 @@ Utilizando peticiones HTTP estándar, el servidor 4D REST permite a las aplicaci
Para comenzar a utilizar las funcionalidades REST, es necesario iniciar y configurar el servidor 4D REST.
-> - En 4D Server, para abrir una sesión REST es necesario disponer de una licencia cliente 4D gratuita.
+> - En 4D Server, para abrir una sesión REST es necesario disponer de una licencia gratuita cliente 4D.
> - En 4D monopuesto, puede abrir hasta tres sesiones REST para realizar pruebas.
> - Debe gestionar la [sesión](authUsers.md) para su aplicación solicitante.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10.json b/i18n/es/docusaurus-plugin-content-docs/version-20-R10.json
index 89d4803b4e8acd..f5a3bac74f2748 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10.json
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10.json
@@ -100,7 +100,7 @@
"description": "The label for category Cache Management in sidebar docs"
},
"sidebar.docs.category.Collections": {
- "message": "Collections",
+ "message": "Colecciones",
"description": "The label for category Collections in sidebar docs"
},
"sidebar.docs.category.Communications": {
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/CryptoKeyClass.md
index 73a64cd7179651..e864d777b34cb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/CryptoKeyClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/CryptoKeyClass.md
@@ -50,7 +50,7 @@ Para obtener una visión general de esta clase, consulte la entrada del blog [**
-La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition.
+La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. Permite generar una nueva llave RSA o ECDSA, o cargar un par de llaves existente desde una definición PEM.
#### *settings*
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/EntityClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/EntityClass.md
index c48ea72a71189d..7a970d01700bb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/EntityClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/API/EntityClass.md
@@ -302,7 +302,7 @@ vCompareResult2 (sólo se devuelven las diferencias en $attributesToInspect)
]
```
-vCompareResult1 (se devuelven todas las diferencias):
+vCompareResult3 (sólo se devuelven las diferencias en atributos tocados $e1)
```4d
[
@@ -1279,7 +1279,7 @@ Los siguientes valores pueden ser devueltos en las propiedades `status`y `status
| `dk status entity does not exist anymore` | 5 | La entidad ya no existe en los datos. Este error puede ocurrir en los siguientes casos:
la entidad ha sido eliminada (el marcador ha cambiado y ahora el espacio de memoria está libre)la entidad ha sido eliminada y reemplazada por otra con otra clave primaria (el marcador ha cambiado y una nueva entidad ahora utiliza el espacio memoria). the entity has been dropped and replaced by another one with another primary key (the stamp has changed and a new entity now uses the memory space). Cuando se utiliza `.lock()`, este error puede ser devuelto cuando se utiliza la opción `dk reload if stamp changed`
**statusText asociado**: "Entity does not exist anymore" |
| `dk status locked` | 3 | La entidad está bloqueada por un bloqueo pesimista. **statusText asociado**: "Already locked" |
| `dk status serious error` | 4 | Un error grave es un error de base de datos de bajo nivel (por ejemplo, una llave duplicada), un error de hardware, etc.
**statusText asociado**: "Other error" |
-| `dk status stamp has changed` | 2 | El valor del marcador interno (stamp) de la entidad no coincide con el de la entidad almacenada en los datos (bloqueo optimista).
with `.save( )`: error only if the `dk auto merge` option is not usedwith `.drop( )`: error only if the `dk force drop if stamp changed` option is not usedwith `.lock()`: error only if the `dk reload if stamp changed` option is not used
**Associated statusText**: "Stamp has changed" |
+| `dk status stamp has changed` | 2 | El valor del marcador interno (stamp) de la entidad no coincide con el de la entidad almacenada en los datos (bloqueo optimista).
con `.save( )`: error sólo si no se utiliza la opción `dk auto merge`.con `.drop( )`: error sólo si no se usa la opción `dk force drop if stamp changed`con `.lock()`: error sólo si no se utiliza la opción `dk reload if stamp changed`.
**statusText asociado**: "Stamp has changed" |
| `dk status wrong permission` | 1 | Los privilegios actuales no permiten guardar la entidad. **Associated statusText**: "Permission Error" |
#### Ejemplo 1
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
index cc30a3dc01b1af..ab8606bffd7787 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
@@ -64,7 +64,7 @@ Sintaxis:
| `--skip-onstartup` | | Lanza el proyecto sin ejecutar ningún método "automático", incluyendo los métodos base `On Startup` y `On Exit` |
| `--startup-method` | Nombre del método proyecto (cadena) | Método de proyecto a ejecutar inmediatamente después del método base `On Startup` (si no se omite con `--skip-onstartup`). |
-(\*) Algunos diálogos se muestran antes de abrir la base de datos, por lo que es imposible escribir en el [archivo de registro de diagnóstico](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerta de licencia, diálogo de conversión, selección de bases de datos, selección de archivos de datos). En este caso, se
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). En este caso, se
lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema,
y luego la aplicación se cierra.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
index 3f0cb32f0e1398..ade2fd94054bcf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
@@ -32,7 +32,7 @@ Las licencias de despliegue pueden ser anidadas en el paso de creación por el d
Algunas licencias 4D tienen una fecha de caducidad, después de la cual deben ser renovadas. Cuando la suscripción a la licencia se renueva en 4D Store, sus licencias se actualizan automáticamente en sus aplicaciones 4D al iniciar el proceso [cuando se conecta](GettingStarted/Installation.md) en el Asistente de bienvenida.
-En algunos casos, la actualización de la licencia puede necesitar que haga clic en el botón [**Actualizar**](#refresh) de la caja de diálogo del Gestor de licencias.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Activación de licencias
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Concepts/dt_number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Concepts/dt_number.md
index 90ab1aa1163c11..d9033d9d79f430 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Concepts/dt_number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Concepts/dt_number.md
@@ -81,7 +81,7 @@ El operador modulo % devuelve valores significativos con números que están en
### División entera
-The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. This operator returns significant values with integer numbers only.
+The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. Este operador devuelve valores significativos sólo con números enteros.
### Comparación real
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
index f4c5aca61e10c2..d81699be0eec19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
@@ -407,8 +407,8 @@ Los elementos deben ser instalados:
Para activar esta funcionalidad, añada las llaves `DatabaseToEmbedInClientWinFolder` y/o `DatabaseToEmbedInClientMacFolder` en el archivo de configuración *buildApp*. Cuando una de estas llaves está presente, el proceso de generación de la aplicación cliente genera una aplicación monopuesto: la estructura compilada, en lugar del archivo *EnginedServer.4Dlink*, se coloca en la carpeta "Database".
-- Si existe una carpeta de datos por defecto en la aplicación monopuesto, se integra una licencia.
-- Si no existe una carpeta de datos por defecto en la aplicación monopuesto, ésta se ejecutará sin archivo de datos y sin licencia.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
El escenario básico es:
@@ -500,7 +500,7 @@ Los siguientes módulos opcionales pueden ser deseleccionados:
## Página licencias y certificados
-La página de Licencias y certificados puede utilizarse para:
+The Licenses & Certificate page can be used to:
- configure las [licencias de despliegue](../Admin/licenses.md#deployment-licenses) que quiere integrar en su aplicación [monopuesto](#application-page) o [cliente-servidor](#clientserver-page),
- firmar la aplicación mediante un certificado en macOS.
@@ -535,7 +535,7 @@ Se requiere una conexión a Internet en la máquina del usuario en el primer lan
- El comando [`License info`](../commands/license-info.md) permite conocer el tipo de licencia de la aplicación (colección *.attributes*) y su fecha de caducidad (objeto *.expirationDate*).
- La llave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite gestionar las versiones de evaluación.
-- El comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) no hace nada cuando se llama desde una versión de evaluación.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/properties_Action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/properties_Action.md
index 8558b04e6a0808..1de26adee219f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/properties_Action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/properties_Action.md
@@ -189,7 +189,7 @@ En otros casos (list box basados en selecciones temporales, columnas asociadas a
## Acción estándar
-Actividades típicas que deben realizar los objetos activos (\*por ejemplo, permitir al usuario aceptar, cancelar o eliminar registros, desplazarse entre registros o de una página a otra en un formulario multipágina, etc.) han sido predefinidas por 4D como acciones estándar. Se describen con detalle en la sección [Acciones estándar](https://doc.4d.com/4Dv20/4D/20.2/Standard-actions.300-6750239.en.html) de la *manual de Diseño*. There are also standard actions specific to 4D Write Pro areas.
+Actividades típicas que deben realizar los objetos activos (\*por ejemplo, permitir al usuario aceptar, cancelar o eliminar registros, desplazarse entre registros o de una página a otra en un formulario multipágina, etc.) han sido predefinidas por 4D como acciones estándar. Se describen con detalle en la sección [Acciones estándar](https://doc.4d.com/4Dv20/4D/20.2/Standard-actions.300-6750239.en.html) de la *manual de Diseño*. También hay acciones estándar específicas de las áreas de 4D Write Pro.
Puede asignar al mismo tiempo una acción estándar y un método proyecto de un objeto. En este caso, la acción estándar suele ejecutarse después del método y 4D utiliza esta acción para activar/desactivar el objeto según el contexto actual. Cuando se desactiva un objeto, no se puede ejecutar el método proyecto asociado.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
index c06a9428ab317f..f5d037149e1a50 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ La comunicación entre el formulario padre y las instancias del subformulario pu
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. El evento se recibe en el método del objeto contenedor. Puede estar en el origen de todo evento detectado por el subformulario (clic, arrastrar y soltar, etc.).
El código del evento no tiene restricciones (por ejemplo, 20000 o -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. En el primer caso, sólo puede utilizar los eventos que haya marcado en la lista de propiedades para los contenedores de subformulario. En el segundo caso, el código no debe corresponder a ningún evento de formulario existente. Se recomienda utilizar un valor negativo para asegurarse de que este código no será utilizado por 4D en futuras versiones.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/webArea_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/webArea_overview.md
index ba8ac84ef8e799..5d5959e222545f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/webArea_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/FormObjects/webArea_overview.md
@@ -117,7 +117,7 @@ $4d.today(function(result)
En lugar de utilizar un método independiente, también podemos utilizar una función de clase para realizar el cálculo.
-Define a "SumCalculator" 4D user class with a `calcSum` function which receives parameters and returns their sum:
+Define una clase usuario 4D "SumCalculator" con una función `calcSum` que recibe parámetros y devuelve su suma:
```4d
// SumCalculator user class
@@ -334,7 +334,7 @@ El archivo 4DCEFParameters.json por defecto contiene los siguientes cambios:
:::info Entrada de blog relacionada
-[Custom Parameters for Initializing Embedded Web Area](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
+[Parámetros personalizados para inicializar el área web integrada](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ORDA/ordaClasses.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ORDA/ordaClasses.md
index 96207ad628a079..1c5d8b9374e9ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ORDA/ordaClasses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ORDA/ordaClasses.md
@@ -939,7 +939,7 @@ Las peticiones remotas son:
Una función que no está expuesta no está disponible en aplicaciones remotas y no se puede llamar a ninguna instancia de objeto desde una petición REST. Si una aplicación remota intenta acceder a una función no expuesta, se devuelve el error "-10729 - Método miembro desconocido".
-To allow a function or an attribute to be called by a remote request, you must explicitly declare it using the `exposed` keyword. La sintaxis formal es:
+Para permitir que una función o un atributo sea llamado por una petición remota, debe declararlo explícitamente utilizando la palabra clave `exposed`. La sintaxis formal es:
```4d
// declarar una función expuesta
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
index c77c466346d0fd..e68c0ec7189fc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ El área "Visión general" ofrece diferente información sobre el sistema, la ap

-Generalmente, tendrá que verificar el [**Administrador de licencias**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalles
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
index b1558d7998d930..f63a7fa6b6794e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
@@ -63,7 +63,7 @@ El nombre de la cookie se puede obtener utilizando la propiedad [`.sessionCookie
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-get-attributes.md
index fa6360bcb95c9e..853f57edfe5002 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-get-attributes.md
@@ -20,7 +20,7 @@ displayed_sidebar: docs
## Descripción
-El comando **WP Get attributes** devuelve el valor de todo atributo en un rango 4D Write Pro, encabezado, cuerpo, pie de página, tabla o documento. This command gives you access to any kind of 4D Write Pro internal attributes: character, paragraph, document, table, or image.
+El comando **WP Get attributes** devuelve el valor de todo atributo en un rango 4D Write Pro, encabezado, cuerpo, pie de página, tabla o documento. Este comando le da acceso a cualquier tipo de atributo interno de 4D Write Pro: caracter, párrafo, documento, tabla o imagen.
En *targetObj*, puede pasar:
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-import-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-import-document.md
index 592a131b1b226d..e957193abe657f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-import-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/WritePro/commands/wp-import-document.md
@@ -51,20 +51,20 @@ Por defecto, las expresiones HTML insertadas en documentos heredados de 4D Write
Puede pasar un objeto para definir cómo se gestionan los siguientes atributos durante la operación de importación:
-| **Atributo** | **Tipo** | **Description** |
-| ----------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
-| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
-| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
-| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Note**: If a .docx field corresponds to a 4D Write Pro variable, the field is imported as a formula and this option is ignored. |
-| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
-| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
-| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
-| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (default) - 4W7 image display mode is converted to the *imageDisplayMode* attribute if different than scaled to fit. |
+| **Atributo** | **Tipo** | **Description** |
+| ----------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
+| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
+| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
+| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Nota**: si un campo .docx corresponde a una variable de 4D Write Pro, el campo se importa como una fórmula y esta opción se ignora. |
+| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
+| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
+| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
+| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (por defecto) - El modo de visualización de la imagen 4W7 se convierte al atributo *imageDisplayMode* si es diferente a escalado para ajustarse. |
**Notas de compatibilidad**
-- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. To get the best result for imported text, style sheet attributes are converted to "hard coded" style attributes. Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
+- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. Para obtener el mejor resultado para el texto importado, los atributos de la hoja de estilo se convierten en atributos de estilo "codificados". Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
- *El soporte para la importación en formato .docx solo está certificado para Microsoft Word 2010 y más recientes. Versiones antiguas, especialmente Microsoft Word 2007, pueden no importar correctamente.*
## Ejemplo 1
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
index 083f285583c404..a79c331d2e9248 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Desea detener el proceso seleccionado de la colección de procesos que se muestr
| | |
| --- | --- |
| Número de comando | 1634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
index 32446ac6b87fe4..701d41b1b72b10 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Aunque el comando ABORT está destinado a ser utilizado sólo desde un método d
| | |
| --- | --- |
| Número de comando | 156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
index a23d4d3905b254..34f1b4a1c69b6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
@@ -32,6 +32,6 @@ El siguiente ejemplo devuelve el valor absoluto de –10.3, que es 10.3:
| | |
| --- | --- |
| Número de comando | 99 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
index 5178f513d15ee1..000985c7d142c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
@@ -41,7 +41,7 @@ El comando **ACCEPT** se permite en modo sin interfaz, en el contexto de las ár
| | |
| --- | --- |
| Número de comando | 269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
index f1b6627d3fe17d..e41bf255cc4463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [BREAK LEVEL](break-level.md "BREAK LEVEL").
| | |
| --- | --- |
| Número de comando | 303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
index 2dd137a7ee7eb8..6a9c0e4a2735cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
@@ -71,6 +71,6 @@ Desea saber si la acción copiar está disponible (es decir, si se han seleccion
| | |
| --- | --- |
| Número de comando | 1442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
index 2c22f7a84fb979..fd58954a57c380 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 346 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
index 043d3c34977860..f5b6eeeae5b4a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Usted quiere conocer el estado de la transacción actual:
| | |
| --- | --- |
| Número de comando | 1387 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
index 25e0d85be37b35..df3da42d0a8287 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
@@ -111,6 +111,6 @@ Obtiene arrays del tipo:
| | |
| --- | --- |
| Número de comando | 1277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
index ca645f771f905f..65b9dc01a4b537 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 56 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
index 06fd9f8eeb9fb3..abf7290707c987 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Aunque usted puede utilizar los *Operadores de fechas* para añadir días a una
| | |
| --- | --- |
| Número de comando | 393 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
index f72eb1c6f6251b..96ead6846b4f88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 119 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
index 313e8a913dc1d3..c3a9d041c8901c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
@@ -59,6 +59,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos de tex
| | |
| --- | --- |
| Número de comando | 1431 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
index 008eebe78fee8a..2558f14e62ccb4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Usted desea cambiar temporalmente la prioridad de la caché para el índice de c
| | |
| --- | --- |
| Número de comando | 1430 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
index 1f3c021a123044..b93819cf0de0f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
@@ -57,6 +57,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos escala
| | |
| --- | --- |
| Número de comando | 1429 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
index f30a6db793f5a8..83c2307e9d565b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **After** se genere, asegúrese de que la propie
| | |
| --- | --- |
| Número de comando | 31 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
index 1a9f9d9f9885b5..c9236552554b7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Muestra la siguiente caja de diálogo de alerta (en Windows):
| | |
| --- | --- |
| Número de comando | 41 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
index 77f9e2555b5f00..67c733650b36bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra todos los registros de la tabla \[Personas\]:
| | |
| --- | --- |
| Número de comando | 47 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
index b922fcba3f7df8..8d59a6553ca785 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
@@ -221,7 +221,7 @@ Si los datos en el BLOB se añaden correctamente al portapapeles, la variable si
| | |
| --- | --- |
| Número de comando | 403 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
index d4623bc251810d..7a0c7b35cd3920 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ El siguiente ejemplo abre un documento existente llamado Nota, añade la cadena
| | |
| --- | --- |
| Número de comando | 265 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
index a6fd90d2a3e35d..15f9f91f124716 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
@@ -86,7 +86,7 @@ Entonces, en todo método de formulario o de proyecto, puede escribir:
| | |
| --- | --- |
| Número de comando | 411 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
index 11a510b0c75fb7..01621d00a4024f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
@@ -49,6 +49,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 911 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
index 8ecd84d7408873..fa56d858cdd784 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
@@ -159,6 +159,6 @@ Cuando el formulario se ejecuta, la lista se verá de esta forma:
| | |
| --- | --- |
| Número de comando | 376 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
index 108ea98d534949..1930ef48eeb043 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Al iniciar su base de datos en Windows, necesita verificar si una librería DLL
| | |
| --- | --- |
| Número de comando | 491 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
index 097346d79b9acc..c0a6616db0de4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si el código se ejecuta en 4D Server, el objeto contiene (por ejemplo):
| | |
| --- | --- |
| Número de comando | 1599 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
index 615a39003f0278..d8740f0efe0d71 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ En alguna parte de su código, diferente del *Método base On Server Startup*, d
| | |
| --- | --- |
| Número de comando | 494 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
index e92a08015c303b..8f7c7ec15a9d2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
@@ -126,6 +126,6 @@ Usted desea utilizar el valor de la versión corta de la aplicación devuelto po
| | |
| --- | --- |
| Número de comando | 493 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
index fa7871afeadeba..0056dad40531a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ Si el usuario hace clic en el botón Detener en el termómetro de progresión, l
| | |
| --- | --- |
| Número de comando | 70 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
index 5de0eebdf35d02..0cadc6b4013e40 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra el valor de Pi:
| | |
| --- | --- |
| Número de comando | 20 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
index cfb78c24cb3dc0..6ff78e6bdf36f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array local de 100 filas, conteniendo cada una 50 elementos
| | |
| --- | --- |
| Número de comando | 1222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
index c2bdf647763abb..747cd92b6a18ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo [Booleano](# "Ca
| | |
| --- | --- |
| Número de comando | 223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
index 63a9b4bebfe9a9..eba8d5b680d579 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Fecha y asigna a
| | |
| --- | --- |
| Número de comando | 224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
index c0cedcf4ae2054..f7b3f319ad01a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 2 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
index b3073493473c67..c7ae48f162f5b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 4 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
index ef7c0499ee5a12..bef7af2e3b5f89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Creación y llenado de un array local de objetos:
| | |
| --- | --- |
| Número de comando | 1221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
index eefbc04bdac863..c43640f5a720e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array interpcoceso de elementos de tipo [Imagen](# "Can be
| | |
| --- | --- |
| Número de comando | 279 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
index 37e56d9ab515b3..d388b8a039ca8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Este ejemplo crea un array interproceso de elementos de tipo [Puntero](# "A refe
| | |
| --- | --- |
| Número de comando | 280 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
index 6223715560a47a..7ee475ed2801b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
@@ -65,6 +65,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Real y asigna a
| | |
| --- | --- |
| Número de comando | 219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
index 4e401069f38ba3..acd74709e633c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
@@ -60,6 +60,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo texto y asigna a
| | |
| --- | --- |
| Número de comando | 222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
index 04b8d0368e2b89..6ba91197b77f79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Como los arrays de horas aceptan valores numéricos, el siguiente código es vá
| | |
| --- | --- |
| Número de comando | 1223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
index 19ae495f8756bb..bcd9af58eda95f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Desea copiar una array texto en una colección compartida:
| | |
| --- | --- |
| Número de comando | 1563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
index aa3803662dd126..c760ffcf4c9b60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ El comando ARRAY TO LIST genera el error *\-9957* cuando se aplica a una lista q
| | |
| --- | --- |
| Número de comando | 287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
index 26af482b82f022..d23cd484fb71ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ Usted desea copiar una selección de registros a una tabla archivo seleccionando
| | |
| --- | --- |
| Número de comando | 261 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
index 28360ee8227017..c78690f47481d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
@@ -63,7 +63,7 @@ Una aserción permite probar los parámetros pasados a un método de proyecto pa
| | |
| --- | --- |
| Número de comando | 1129 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
index 5d9036366bd4c4..65f871a91fb0f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Inserción de una aserción en la evaluación de una expresión:
| | |
| --- | --- |
| Número de comando | 1132 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
index 781e22682ad63a..70948b70dbdfae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
@@ -95,7 +95,7 @@ Puede hacer los siguientes cálculos:
| | |
| --- | --- |
| Número de comando | 2 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
index 7bd5a7f8c0f5ed..8900cd149fbfe6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Pase el tipo de información a obtener en *selector*. El tipo y el contenido de
| | |
| --- | --- |
| Número de comando | 888 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
index 519f0cef07f742..a9e1b9ef1be180 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En caso de que se presenten incidentes durante el backup, la información relati
| | |
| --- | --- |
| Número de comando | 887 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
index 10626c3002dfd5..1f52d9982ad029 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Este ejemplo le permite transferir una imagen vía un BLOB:
| | |
| --- | --- |
| Número de comando | 896 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
index 50e4d20d9619c4..ad9561c3166a5b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
@@ -44,6 +44,6 @@ Por defecto, si se omite el parámetro *\**, el comando utiliza una codificació
| | |
| --- | --- |
| Número de comando | 895 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
index 5818d9c29b5f34..b80da20d3c9ca7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
@@ -39,6 +39,6 @@ En el siguiente ejemplo, si una búsqueda no encuentra ningún registro, se emit
| | |
| --- | --- |
| Número de comando | 151 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
index ce54385f76defb..e4a1f6cb3a6105 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
@@ -68,6 +68,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Defin
| | |
| --- | --- |
| Número de comando | 198 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
index 85145b461477e4..7fc32c84f4554d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **Before** se genere, asegúrese de que la propi
| | |
| --- | --- |
| Número de comando | 29 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
index eb711a06df3a11..45983a8c9534fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que el *Depurador* 4D evaluará el código SQL línea por línea. En alguno
| | |
| --- | --- |
| Número de comando | 948 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
index bd5576c6c8d3b8..15c160271a62c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
@@ -83,6 +83,6 @@ Después de añadir este método a su aplicación, lo puede utilizar de esta man
| | |
| --- | --- |
| Número de comando | 536 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
index ed30045f49ac51..764fc917f4e0af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ La línea de código añade 100 bytes al BLOB *miBlob*:
| | |
| --- | --- |
| Número de comando | 605 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
index 595c8cdd587d75..762e88d69a93e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
index 004d1aaa7c72fb..6eb644c767b4c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores enteros de un BLOB, a partir del offset 0x20
| | |
| --- | --- |
| Número de comando | 549 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
index 439c54cfb120f8..2171210683bf67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ La variable OK toma el valor 1 si la lista se crea correctamente, de lo contrari
| | |
| --- | --- |
| Número de comando | 557 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
index 98b6deb07c5efa..3f9f173c75ee21 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
@@ -64,6 +64,6 @@ El siguiente ejemplo lee 20 valores de tipo entero largo de un BLOB, a partir de
| | |
| --- | --- |
| Número de comando | 551 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
index 2fa328c959a266..00d1529f8be606 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 682 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
index cce5b132486dd4..e2ef5b43c68e12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
@@ -75,4 +75,4 @@ Usted desea aplicar la configuración de impresión guardada en el disco para el
| | |
| --- | --- |
| Número de comando | 1434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
index 140ec85e575fcf..a0ecffd70c8dda 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores reales de un BLOB, a partir del offset 0x200
| | |
| --- | --- |
| Número de comando | 553 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
index 23531095d11c87..ee649d418df86e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
@@ -66,6 +66,6 @@ Después de la ejecución del comando, la variable se incrementa en el número d
| | |
| --- | --- |
| Número de comando | 555 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
index 1921932655a356..7e8903abb1f5e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
@@ -53,7 +53,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 850 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
index 1a031115f36a14..d949e6e6c49785 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ La variable OK toma el valor 1 si la variable ha sido reescrita correctamente, d
| | |
| --- | --- |
| Número de comando | 533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
index b904e37817ded4..91f624ce5974b5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Selecciona un valor dependiendo del contenido de un atributo de campo de objeto,
| | |
| --- | --- |
| Número de comando | 1537 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
index 130399c9d93c9b..dc8edb8e8b1418 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Si no pasa el parámetro *conjunto*, el comando utilizará UserSet en el proceso
| | |
| --- | --- |
| Número de comando | 646 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
index 7bc9f75cdeedaa..296f97a89a50ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ El siguiente ejemplo imprime un informe con dos niveles de ruptura. La selecció
| | |
| --- | --- |
| Número de comando | 302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
index 367a03b6ad3ad7..4e80aaad333bd7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ El siguiente ejemplo es un método que puede ser ejecutado desde un menú. Él v
| | |
| --- | --- |
| Número de comando | 326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
index 96eae7ad3ab6db..e501fb7bcf0ead 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
@@ -57,7 +57,7 @@ Si el comando falla, se genera un error que puede interceptar con la ayuda del c
| | |
| --- | --- |
| Número de comando | 871 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
index 909a62e277da26..4269c5bc2d73de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Usted quiere obtener información de la caché de la base de datos y todos los c
| | |
| --- | --- |
| Número de comando | 1402 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
index f44b8623f5ae03..80d574c101cd9f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Luego puede añadir otros mensajes ejecutando el comando **CALL FORM** nuevament
| | |
| --- | --- |
| Número de comando | 1391 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
index e30cd744f98fd7..db112868b348a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ En *evento*, puede pasar todo evento de formulario predefinido de 4D (puede util
| | |
| --- | --- |
| Número de comando | 1086 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
index c77c7b12e605da..057ed72fecdc37 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
@@ -83,6 +83,6 @@ El código de *workerMethod* es:
| | |
| --- | --- |
| Número de comando | 1389 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
index d1cbc82a938a5d..6c75b91efd19c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 241 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
index 37fa778d1ceb50..49848762f46597 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Cuando el comando CANCEL se ejecuta (anulación de formulario o de impresión),
| | |
| --- | --- |
| Número de comando | 270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
index 46f1d5c0263d1a..8111e5646c3fd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
index 4d525beb107706..df9a8f3656fe5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
@@ -77,6 +77,6 @@ El siguiente ejemplo muestra la caja de diálogo de conexión:
| | |
| --- | --- |
| Número de comando | 289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
index 173c5382e939cf..a59b375c4949c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ De esta forma un usuario puede activar licencias sin tener que modificar la base
| | |
| --- | --- |
| Número de comando | 637 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
index d5237c86c44489..e6e632d800a41f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ El siguiente ejemplo permite al usuario cambiar su contraseña.
| | |
| --- | --- |
| Número de comando | 186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
index a87c6f4f777a36..636bf45e180269 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ El siguiente ejemplo ilustra el uso de Change string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
index 54ddf3d469b867..6411002ea3d463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
@@ -41,6 +41,6 @@ El siguiente ejemplo utiliza Char para insertar un retorno de carro en el texto
| | |
| --- | --- |
| Número de comando | 90 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
index 09ae8c107ad7a9..451f2dd71fb4e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
@@ -87,6 +87,6 @@ El segundo código se ejecuta más rápido por dos razones: sólo referencia un
| | |
| --- | --- |
| Número de comando | 91 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
index 0ace8440791ec9..6f65b75205672a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Puede interceptar estos errores utilizando un método de manejo de errores insta
| | |
| --- | --- |
| Número de comando | 799 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
index 7c03f9548cb1f7..d19b91c5913915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
@@ -85,6 +85,6 @@ Este código es estrictamente equivalente a:
| | |
| --- | --- |
| Número de comando | 955 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
index daa464de64a5d4..2631c8eb902f0b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
@@ -59,6 +59,6 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 377 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
index 833bb7d8621b0d..c3f5fe18454b13 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Si *temp* fue creado por el comando [CUT NAMED SELECTION](cut-named-selection.md
| | |
| --- | --- |
| Número de comando | 333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
index 60831609750ec5..dd067329568c24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 402 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
index 7eae4829aa6629..42656470d9d5d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ Ver el ejemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número de comando | 144 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
index 2746c118433ad8..943c4341a14048 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Ver el ejemplo del comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número de comando | 117 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
index a138bc30b75b56..eb21f6e2944fc1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ En un formulario, utilice una lista desplegable llamada *asMiListaDesplegable* c
| | |
| --- | --- |
| Número de comando | 89 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
index d1e077e78f948e..3a372552bf716d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Las etiquetas no son editables pero lo son después de un triple-clic. Si desea
| | |
| --- | --- |
| Número de comando | 1332 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
index b2ce697a206236..73ac405de7f6e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ El siguiente ejemplo permite al usuario crear un nuevo documento, escribe la cad
| | |
| --- | --- |
| Número de comando | 267 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
index bf7ea1f2b5eb4d..8e8aad73dad89e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 996 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
index 611e77c86be2a5..19dbde2668aa79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ Recuerde llamar finalmente **CLOSE RESOURCE FILE** para un archivo de recursos q
| | |
| --- | --- |
| Número de comando | 498 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
index 01e847ea6ddf11..ff05610369037f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
@@ -42,6 +42,6 @@ El siguiente ejemplo abre una ventana formulario y crea nuevos registros con el
| | |
| --- | --- |
| Número de comando | 154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
index 2ad107419956c2..b7d74fa064a436 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Desea copiar diferentes valores de propiedad de una colección de objetos en dif
| | |
| --- | --- |
| Número de comando | 1562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
index f2b564e0ef64e2..22d62bbe7bd451 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 987 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
index 45fb35f7de5bff..7dc0f467659b07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
@@ -76,7 +76,7 @@ Si la operación de compactación se lleva a cabo correctamente, la variable sis
| | |
| --- | --- |
| Número de comando | 937 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
index e6bb6813b83382..b907ce82e6e07c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
@@ -112,6 +112,6 @@ Los siguientes ejemplos ilustran el impacto específico de las opciones en el **
| | |
| --- | --- |
| Número de comando | 1756 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
index 7386bd13a219ed..c65e3f4736c0ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Para mayor información sobre componentes 4D, por favor consulte el *Manual de D
| | |
| --- | --- |
| Número de comando | 1001 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
index 5be2500ed3f130..e36b691efaa3eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
@@ -96,7 +96,7 @@ La variable OK toma el valor 1 si el BLOB se comprime correctamente; de lo contr
| | |
| --- | --- |
| Número de comando | 534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
index 4a02eb065fa519..7cc4a766811644 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
@@ -98,7 +98,7 @@ Mostrará la siguiente caja de diálogo de confirmación (en Windows):
| | |
| --- | --- |
| Número de comando | 162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
index 62b444139c43b9..babc98647d3113 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado con un área desplegable, le permite cambiar el valor de
| | |
| --- | --- |
| Número de comando | 713 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
index d71cea1d532a9c..d6f0a2a7f5d6c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ Usted quiere abrir una ventana emergente en la posición del cursor del ratón.
| | |
| --- | --- |
| Número de comando | 1365 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
index c86a910c489235..3ef3e9d18b1ab9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
@@ -195,7 +195,7 @@ Si el comando ha sido ejecutado correctamente, la variable OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 1011 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
index 2530657efda9e0..98ab9024ee4710 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Ejemplos bajo Windows:
| | |
| --- | --- |
| Número de comando | 1107 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
index efa408ba56db93..8ff269163075a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Ejemplo bajo Windows
| | |
| --- | --- |
| Número de comando | 1106 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
index 4136adf1ab742e..e498efd6c3179f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
@@ -57,6 +57,6 @@ Conversión de una imagen con calidad del 60%:
| | |
| --- | --- |
| Número de comando | 1002 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
index 5b166327b0c5f2..98fed9d8774f1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. De lo c
| | |
| --- | --- |
| Número de comando | 1012 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
index 9bac13b233760f..4198fc7a5fd8df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ El siguiente ejemplo llena el array C. Luego crea un nuevo array, llamado D, del
| | |
| --- | --- |
| Número de comando | 226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
index ea479a9603c0f1..4c9b15706d73d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ La copia comienza en la posición (expresada con relación al comienzo del BLOB
| | |
| --- | --- |
| Número de comando | 558 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
index df8cd8fc1944d9..37f99bf9ec535d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
@@ -123,7 +123,7 @@ Los siguientes ejemplos crean diferentes archivos y carpetas en la carpeta de la
| | |
| --- | --- |
| Número de comando | 541 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
index 2961318691ca41..37275f037293f0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Una vez hay terminado de utilizar la nueva lista, llame a [CLEAR LIST](clear-lis
| | |
| --- | --- |
| Número de comando | 626 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
index 2ba49e8525faf7..0d3734aa4e4fd2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ El siguiente ejemplo permite verificar si hay otras facturas vencidas en la tabl
| | |
| --- | --- |
| Número de comando | 331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
index d76f0e84dcb218..5f20121c3252b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Como el comando devuelve una colección, se puede utilizar con **.join()** para
| | |
| --- | --- |
| Número de comando | 1790 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
index a00c0b60722746..822d210f810c86 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ El siguiente ejemplo en Cliente/Servidor, copia el conjunto proceso "ConjuntoA",
| | |
| --- | --- |
| Número de comando | 600 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
index ffb2b1ebf99882..73da236254a4e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 18 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
index 9f91b2125df7c5..bef31b703c4068 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Desea contar las referencias a objetos en un array objeto:
| | |
| --- | --- |
| Número de comando | 907 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
index 5660a095ce683d..dbfc2232ca13ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
@@ -66,6 +66,6 @@ Acá tenemos una lista llamada *hList* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 380 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
index 567e73212ac25b..d043b21b6f30ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Count menu items se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 405 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
index 6b10c46d042d3f..065194fa388700 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Si omite el parámetro *proceso*, Count menus se aplica a la barra de menús del
| | |
| --- | --- |
| Número de comando | 404 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
index 20e3ff485e06fe..d09a90bde0a728 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ o:
| | |
| --- | --- |
| Número de comando | 259 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
index 530f8f55c36402..9d8f9d4da63c7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 437 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
index 23829a8f3a522e..fc14c9f916ffef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver el ejemplo para [Process state](process-state.md "Process state") y [On Exit
| | |
| --- | --- |
| Número de comando | 335 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
index 7eeb49d4530a37..9bf34d5577affb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 343 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
index c2127b764d0249..4aaed29592c596 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Cuando se ejecuta en una aplicación 4D monousuario, **Count users** devuelve 1.
| | |
| --- | --- |
| Número de comando | 342 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
index dccf00bd43e899..f88ffa77650010 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, s
| | |
| --- | --- |
| Número de comando | 694 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
index be0289a8df7b59..c216bfe07f22d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Antes de lanzar la operación, el comando verifica que la ruta de acceso no corr
| | |
| --- | --- |
| Número de comando | 313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
index 48602e7687cfa8..5030b5b6c9c567 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
@@ -78,7 +78,7 @@ Si el documento se crea correctamente, la variable sistema OK toma el valor 1 y
| | |
| --- | --- |
| Número de comando | 266 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
index 77b65a02142f92..c8f0d79e252236 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Consulte el ejemplo de la sección *Conjuntos*.
| | |
| --- | --- |
| Número de comando | 140 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
index 5adf465123b816..c649b40badc4ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ Creación de la subcarpeta "\\Febrero\\" en la carpeta existente "C:\\Archives\\
| | |
| --- | --- |
| Número de comando | 475 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
index b7bf33c4ef2fc4..14ff647cab3b8a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Creación de un índice compuesto en los campos “Ciudad” y “CodigoPostal
| | |
| --- | --- |
| Número de comando | 966 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
index 914063e30b6598..b515d1b02f29bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
index 9277786ee6ebe6..b3e649fa89f7a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ El siguiente ejemplo archiva los registros que tienen más de 30 días. Esta ope
| | |
| --- | --- |
| Número de comando | 68 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
index d03f37621102d3..1f5b8adc06ac19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ Si ya existe un registro relacionado, CREATE RELATED ONE actúa como [RELATE ONE
| | |
| --- | --- |
| Número de comando | 65 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
index f67427a197a904..14addd65db0502 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ Si un número de registro no es válido (registro no creado), se genera el error
| | |
| --- | --- |
| Número de comando | 640 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
index 163ea797f27b8a..d11cd222251c35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ En un array de enteros largos, si un número de registro no es válido (registro
| | |
| --- | --- |
| Número de comando | 641 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
index b4729b89a87b0c..c9cfadc41b3e7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ El siguiente ejemplo crea un conjunto después de efectuar una búsqueda, de man
| | |
| --- | --- |
| Número de comando | 116 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
index 7c47d1879e0a3e..46e0c0f264b7eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
@@ -64,6 +64,6 @@ El parámetro opcional *profundidad* define el número de colores bajo Mac OS (e
| | |
| --- | --- |
| Número de comando | 679 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
index ae43fb9b08248f..59cddea2c88459 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
@@ -75,6 +75,6 @@ Con esta configuración, no se muestra un diálogo de contraseña para un 4D rem
| | |
| --- | --- |
| Número de comando | 1355 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
index d660abff0b4637..f69cbce6575301 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ El siguiente método de proyecto permite hacerlo:
| | |
| --- | --- |
| Número de comando | 33 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
index a0d3b008abfbe0..08bef9601e0390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Siempre y cuando se haya definido una tabla por defecto, la siguiente línea de
| | |
| --- | --- |
| Número de comando | 363 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
index 98c3eec980bd4f..843878234a9d0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Usted quiere obtener el formulario actual si éste es un formulario proyecto:
| | |
| --- | --- |
| Número de comando | 1298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
index f4ee0246fe08e7..956fd93951912b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
@@ -69,6 +69,6 @@ Para esto, utilice el método de objeto para crear la variable *vsCurrentRecord*
| | |
| --- | --- |
| Número de comando | 627 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
index d21998b4c000c5..3bb794336f5270 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La ventana del formulario actual puede ser generada automáticamente por un coma
| | |
| --- | --- |
| Número de comando | 827 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
index 2c06f3477c72e9..432c618ccb31e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Incluso si no está corriendo la versión cliente/servidor de 4D, su aplicación
| | |
| --- | --- |
| Número de comando | 483 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
index 21f9b568243ef1..1717c8eb9df455 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Este comando no puede llamarse desde una fórmula 4D.
| | |
| --- | --- |
| Número de comando | 684 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
index 580f7954000da8..5f13043b421c12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1201 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
index 8f2216cd2ec602..b0e2e50f6f45e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Quiere llamar a un proceso worker y pasar el nombre del proceso de llamada como
| | |
| --- | --- |
| Número de comando | 1392 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
index f4186e02e094ef..a5756542bec159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver los ejemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") y [PROCESS
| | |
| --- | --- |
| Número de comando | 322 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
index a33a0654cbb402..72adbd9d118ebf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [Current machine](current-machine.md "Current machine
| | |
| --- | --- |
| Número de comando | 484 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
index 25c84085ed4ff4..0131f94d5c466c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ El siguiente ejemplo extrae las horas, minutos y segundos de la hora actual:
| | |
| --- | --- |
| Número de comando | 178 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
index 3fdc4e55c0300d..f9319133ca04ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [User in group](user-in-group.md "User in group").
| | |
| --- | --- |
| Número de comando | 182 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
index 64fcd0ac9d726a..0ebe7e38246c3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ El método siguiente vacía la selección actual de una tabla *\[Clientes\]*:
| | |
| --- | --- |
| Número de comando | 334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
index a9976e75e3968b..8ea585427a404a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Desea conocer el estado de cifrado de un archivo de datos que corresponde al arc
| | |
| --- | --- |
| Número de comando | 1609 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
index afd6f6e5b42b0c..695968017671aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Si está trabajando por ejemplo con la base en la carpeta Documentos:MisCDsƒ: e
| | |
| --- | --- |
| Número de comando | 490 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
index 251d12c4cf879b..fc93ad71468977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
@@ -337,6 +337,6 @@ Queremos obtener las medidas de bytes de caché en los últimos dos minutos:
| | |
| --- | --- |
| Número de comando | 1314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
index 7bf99b26cc1ec3..d7af6a787215de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
@@ -100,6 +100,6 @@ Usted desea obtener una fecha de un atributo objeto, sea cual sea la opción de
| | |
| --- | --- |
| Número de comando | 102 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
index be7c37e454c480..6adbce66f76462 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ El siguiente ejemplo es una función que devuelve el día actual como una cadena
| | |
| --- | --- |
| Número de comando | 114 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
index 89876a0d2412e9..69ff07f2b772aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Ver el ejemplo para el comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 23 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
index 0392ae896d7ecc..1c567ab9614a61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Deactivated**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 347 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
index 63872453cc4e31..445159f9779db7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
@@ -36,6 +36,6 @@ El siguiente ejemplo utiliza un valor monetario expresado como un número real,
| | |
| --- | --- |
| Número de comando | 9 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
index 967aaba15a72f8..b4b5ad445fb325 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ Consulte los ejemplos dados por el comando [ENCRYPT BLOB](encrypt-blob.md "ENCRY
| | |
| --- | --- |
| Número de comando | 690 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
index d2192d257a7340..7e5d6bb7f050c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
@@ -64,6 +64,6 @@ La *frasePasar* y la *sal* utilizadas para el descifrado son idénticas a la *fr
| | |
| --- | --- |
| Número de comando | 1774 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
index edd5c9f36e2624..9db20be16de02b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
@@ -82,6 +82,6 @@ En este código se especifica el resultado de la tabla por defecto:
| | |
| --- | --- |
| Número de comando | 46 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
index 9ed72c2d3d968a..4146e516c1de46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Process Number](process-number.md "Process Number").
| | |
| --- | --- |
| Número de comando | 323 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
index 4ace745f75d86c..e18087b851f2c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
@@ -53,7 +53,7 @@ La eliminación de un documento hace que la variable sistema tome el valor 1\. S
| | |
| --- | --- |
| Número de comando | 159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
index 3288b0b1fd6f93..733fe98d97d78e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Puede interceptar estos errores utilizando un método instalado por el comando [
| | |
| --- | --- |
| Número de comando | 693 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
index 8cf6610949c949..953b969d813db3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ El siguiente ejemplo borra el último elemento de un array, si existe:
| | |
| --- | --- |
| Número de comando | 228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
index 90ebfb9a136363..b025ce80e028dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 560 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
index 61856026b429ef..cb55b36c597342 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ El siguiente código borra el elemento seleccionado de la lista *hList*. Si el e
| | |
| --- | --- |
| Número de comando | 624 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
index 5ec0d368e4e6ca..6328acd1fb5c40 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
@@ -52,6 +52,6 @@ Este ejemplo ilustra las dos sintaxis del comando:
| | |
| --- | --- |
| Número de comando | 967 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
index 05eb14dfb5eac2..4aa12e4c00609a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
@@ -39,7 +39,7 @@ Si omite el parámetro *proceso*, DELETE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 413 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
index b551f0432c216b..81e7467fc0cb2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ El siguiente ejemplo borra un registro de un empleado. El código pregunta al us
| | |
| --- | --- |
| Número de comando | 58 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
index 1d5854543f6577..bc288954916dc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
@@ -70,7 +70,7 @@ Si se encuentra un registro bloqueado durante la ejecución de DELETE SELECTION,
| | |
| --- | --- |
| Número de comando | 66 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
index eb2358b96f4f28..e245f6de209985 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
@@ -51,6 +51,6 @@ El siguiente ejemplo ilustra el uso de Delete string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
index f92281488acf5a..d058cb02e1c1a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Si no tiene los privilegios de acceso para llamar DELETE USER o si otro proceso
| | |
| --- | --- |
| Número de comando | 615 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
index fa891e104a0560..e9e3356c1a5058 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Número de comando | 1044 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
index ea641dcc8d892d..0de72de700f9a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
@@ -60,6 +60,6 @@ Al final de la lista de registros hay un botón con un método de objeto. El mé
| | |
| --- | --- |
| Número de comando | 122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
index 9c872f1111c9ba..49ac9d53067ce0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Si el parámetro *menuItem* designa un submenú jerárquico, todos los elementos
| | |
| --- | --- |
| Número de comando | 150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
index fbcb4285279863..2c0ee28e880390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Los archivos llave (archivos de extensión ".4DKeyChain") deben almacenarse en e
| | |
| --- | --- |
| Número de comando | 1639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
index 8e5802219dc098..ee2c3d0c0f876d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Bajo Windows, se muestra la ventana del mensaje si no se detecta actividad en la
| | |
| --- | --- |
| Número de comando | 910 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
index a3d579dc173b80..285599c28238f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ El siguiente ejemplo muestra una serie de registros como una presentación de di
| | |
| --- | --- |
| Número de comando | 105 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
index 97a8e09df01bab..45473304832d6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
@@ -108,7 +108,7 @@ También puede utilizar otros comandos, tales como [PRINT SELECTION](print-selec
| | |
| --- | --- |
| Número de comando | 59 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
index c75a540f34e772..8e922d9cb31fa9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este ejemplo le permite aplicar un color alterno en un formulario listado mostra
| | |
| --- | --- |
| Número de comando | 897 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
index 81e1bbbf0fc2a1..f439c8ff9557c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
@@ -73,6 +73,6 @@ El array *aTPaths* obtiene los siguientes elementos:
| | |
| --- | --- |
| Número de comando | 1395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
index 4ee209e12d7ffd..ad53542c7a2e14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
@@ -70,6 +70,6 @@ El array *aLAges* obtiene los siguientes 9 elementos:
| | |
| --- | --- |
| Número de comando | 1397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
index 3aed9649394b1c..5ae76d2546f906 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
@@ -88,6 +88,6 @@ Para calcular las estadísticas, usted desea ordenar el número de valores disti
| | |
| --- | --- |
| Número de comando | 339 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
index 5c024612f211f4..28677e72ef2db8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
@@ -117,7 +117,7 @@ Lista de todos los documentos en modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número de comando | 474 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
index da8d57b754c745..fe36d2c2eb1fb5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
index ac519e6af1b47a..c2cdd7ddbe733d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Cuando ejecuta este código:
| | |
| --- | --- |
| Número de comando | 1236 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
index 30c2d03f8b132f..06dbf8e5735cc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Si el contenido de *valorHijo* no es valido, se devuelve un error.
| | |
| --- | --- |
| Número de comando | 1080 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
index b518b106e406fb..34f6279c89a176 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Ver el ejemplo del comando [DOM Insert XML element](dom-insert-xml-element.md "D
| | |
| --- | --- |
| Número de comando | 1082 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
index 643d6d5a117e05..8d30b9ad655ac9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 722 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
index 5dfc853567c287..13a5f901bc59e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 727 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
index 93347a1116139a..1a233d20743a4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 726 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
index a9e0149e74428d..1c97bf77ef27da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Para esto, es suficiente escribir:
| | |
| --- | --- |
| Número de comando | 1097 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
index e701b76b98c615..6f54e71ad8abbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
@@ -161,7 +161,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 865 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
index 47b8ae1e8027b7..55a7e2abf8459d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
@@ -104,7 +104,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 861 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
index bccb89de9124b5..28d89133f1c893 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
@@ -68,7 +68,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 862 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
index 5ebf10f9fbb649..9dbea5df224dab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
@@ -61,7 +61,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 863 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
index f97bf1adf4412f..fc42faa91c297a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ El comando devuelve en resultado la referencia XML del elemento encontrado.
| | |
| --- | --- |
| Número de comando | 1010 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
index 31f77b1132b510..2044dd16fe94b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
@@ -123,7 +123,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 864 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
index 40421f72d9e076..a78590c3a8de32 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 723 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
index 3e68a68e025438..a625e7df8359ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 925 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
index 37eb8e2d51affb..8b108d065c6100 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -67,7 +67,7 @@ Si el comando se ha ejecutado correctamente y si el elemento analizado no es el
| | |
| --- | --- |
| Número de comando | 724 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
index 31cbb266c77afa..118d557cf7380c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
@@ -42,7 +42,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 923 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
index 5f29cdf89274ae..d847d89fbbc9b5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente y si el elemento referenciado no es
| | |
| --- | --- |
| Número de comando | 924 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
index 37a013bf9d7a18..e69dd662d9af28 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1053 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
index d0e15060504d2b..7ed7a1d02a49bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 729 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
index b0b4112a373fb4..b989d190251803 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 728 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
index 54d0fe9e1c1153..3fa2b8c806ebc8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ Después de la ejecución de estas instrucciones:
| | |
| --- | --- |
| Número de comando | 1081 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
index 879e43cb3bdfe0..46a3cea5950621 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ En este ejemplo, queremos encontrar la declaración DTD del documento XML:
| | |
| --- | --- |
| Número de comando | 1088 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
index 5787680e625373..dd95bee0877ec1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
index 010479e519ab8f..6828a78eb60977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
index 96f17a85759992..c47ab213bead3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 725 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
index 4531483ba50b4a..ead1c367f5eb79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
@@ -48,6 +48,6 @@ Estas constantes indican la siguiente información:
| | |
| --- | --- |
| Número de comando | 721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
index 1bdc96675400c6..8d16be53fd1367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
@@ -86,6 +86,6 @@ $rootRef:=DOM Parse XML source("") //selección de documento XML
| | |
| --- | --- |
| Número de comando | 1083 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
index 7df2884e616a7b..7b41775271d021 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
@@ -100,7 +100,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 719 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
index aa51e25a052b22..5373244d29867c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
@@ -88,7 +88,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 720 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
index ad01e2d824a27b..ed35fb79efc10d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ El siguiente código permite remover el primer atributo "N=1":
| | |
| --- | --- |
| Número de comando | 1084 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
index f6f96340db6732..92b27bc3e197a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
@@ -33,7 +33,7 @@ Un error se genera cuando la referencia del elemento no es válida.
| | |
| --- | --- |
| Número de comando | 869 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
index 73ed67ad780cf0..d5a4f9f468b155 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
@@ -73,7 +73,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 866 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
index f2886bb0bbaab1..4d87a3a125ec20 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ El siguiente ejemplo define la codificación a utilizar y la opción autónomo d
| | |
| --- | --- |
| Número de comando | 859 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
index 77f6230ca32a17..f06872c871f222 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 867 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
index 8c080ee6f0d34b..4bdc817715a02f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 868 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
index 0486a4ceda2fbe..d5bdf050693158 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Luego puede arrastrar la ventana haciendo clic en cualquiera de los bordes.
| | |
| --- | --- |
| Número de comando | 452 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
index f92dce18090943..bdeab7f69008d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
@@ -99,6 +99,6 @@ El método de objeto list box de la izquierda (destino) contiene el siguiente c
| | |
| --- | --- |
| Número de comando | 608 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
index 4a46c321c35eef..c1b5a3f2fef728 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
@@ -49,6 +49,6 @@ Desea eliminar un usuario remoto específico:
| | |
| --- | --- |
| Número de comando | 1633 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
index 9341d5a91ba973..0895ca552db2c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORD puede ejecutarse durante la entrada de datos. Esto permite dupl
| | |
| --- | --- |
| Número de comando | 225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
index 9e32bccb9a090d..a81fc08491fd88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ Este código permite crear un menú emergente dinámico jerárquico basado en ac
| | |
| --- | --- |
| Número de comando | 1006 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
index 27074ae4e59309..192141c6baf1c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra al usuario la ventana de gestión de usuarios y gru
| | |
| --- | --- |
| Número de comando | 281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
index 7309aabade0272..e4dea6b1dd497c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ Si el usuario valida la caja de diálogo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 806 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
index 0a8a1425ff61a7..ba1a22d6436a7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
@@ -77,6 +77,6 @@ Dadas dos columnas de un list box donde los nombres de las variables asociadas s
| | |
| --- | --- |
| Número de comando | 870 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
index 60756e7672fb8c..bbbdb440b28b91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, ENABLE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
index c3e1dcd51f367d..f65ab5ac6f8609 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
@@ -191,6 +191,6 @@ Una empresa quiere utilizar el Internet para intercambiar información. Cada fil
| | |
| --- | --- |
| Número de comando | 689 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
index 5571638dc7f9b0..8558b832c5bf5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
@@ -66,6 +66,6 @@ Encriptar un archivo de texto ubicado en la carpeta RESOURCES de la base de dato
| | |
| --- | --- |
| Número de comando | 1773 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
index 3c373732d89f95..72373eb51beb0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
@@ -137,6 +137,6 @@ Vuelva a cifrar un archivo de datos encriptados con la llave actual (por ejemplo
| | |
| --- | --- |
| Número de comando | 1610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
index 9f5068dc0172a4..c1d55503224a47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Se de
| | |
| --- | --- |
| Número de comando | 36 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
index 9300f88296e50a..0e4a553d43fab7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Una secuencia de instrucciones SQL debe estar rodeada por las palabras claves [B
| | |
| --- | --- |
| Número de comando | 949 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
index 858734ed060cdc..24facff3a2310a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Este es el código del botón **Compare**:
| | |
| --- | --- |
| Número de comando | 1196 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
index 84e5b30a5bc493..a7fc2b3cc84703 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW, que borra el contenido de una ventana, con [CLOSE WIND
| | |
| --- | --- |
| Número de comando | 160 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
index ec9f0e481818c3..c3ba8068dde17b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
@@ -85,6 +85,6 @@ Estos son algunos ejemplos de conversiones que pueden realizarse con este comand
| | |
| --- | --- |
| Número de comando | 676 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
index 9c9b13f82ead66..222b234843dfd8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
@@ -72,6 +72,6 @@ Usted desea ejecutar una fórmula incluida las llamadas a los comandos y tablas
| | |
| --- | --- |
| Número de comando | 63 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
index 6a35abe960e582..f9217ed5c0b316 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1085 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
index 106be8af82ee37..42ef1ad362922e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1007 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
index d84e57f912a39a..77cb9329ffc0ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
@@ -65,7 +65,7 @@ Consulte el ejemplo del comando [REGISTER CLIENT](register-client.md "REGISTER C
| | |
| --- | --- |
| Número de comando | 651 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
index 4e1a991b15ec96..e51b829116f863 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
@@ -192,6 +192,6 @@ Consulte la sección *Servicios basados en los procedimientos almacenados (ejemp
| | |
| --- | --- |
| Número de comando | 373 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
index a857475d2dd4eb..89918c70f37109 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
@@ -37,6 +37,6 @@ El siguiente ejemplo asigna el exponencial de 1 a *vrE* (el log de *vrE* es 1):
| | |
| --- | --- |
| Número de comando | 21 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
index 2a778f4925a3c8..fa3beafd5a412d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ La variable OK toma el valor 1 si el BLOB ha sido descomprimido con éxito, de l
| | |
| --- | --- |
| Número de comando | 535 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
index c5a0cc61fb45b7..aff77e9501264a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de abri
| | |
| --- | --- |
| Número de comando | 666 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
index 83e26d9a533337..7497af6e358c54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 84 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
index 0681a7588af658..4b175daae71183 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
@@ -119,6 +119,6 @@ Desea exportar solo los métodos proyecto y base, y un archivo de registro:
| | |
| --- | --- |
| Número de comando | 1565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
index a9a8fdadf71b19..042fb2e5e87f1f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
@@ -61,6 +61,6 @@ Desea exportar la estructura actual de la base de datos en formato html:
| | |
| --- | --- |
| Número de comando | 1311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
index cf968d56ea9fd8..942843207d8021 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 85 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
index 06624640332f4d..b5f2da11dfb64a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
index 5024cdd47e65e5..549772227d8a8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
@@ -35,6 +35,6 @@ El siguiente ejemplo asigna la variable *vbOpciones* a Falso:
| | |
| --- | --- |
| Número de comando | 215 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
index 1ca6a5075f7e1f..f7657f9f780efa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ Este ejemplo muestra una alerta. Este método pasa un puntero a un campo:
| | |
| --- | --- |
| Número de comando | 257 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
index 63f04f9ceb2d0b..98e5c68362307a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
@@ -63,6 +63,6 @@ En el siguiente ejemplo, la variable *campNum* es igual al número del campo de
| | |
| --- | --- |
| Número de comando | 253 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
index 9793abacd97224..3e3b9dd3feb861 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
@@ -46,7 +46,7 @@ Ver el ejemplo del comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número de comando | 321 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
index f9b652c985639d..3d4d2c488b390b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
@@ -247,6 +247,6 @@ El método ObtenerTextoSeleccionado es el siguiente:
| | |
| --- | --- |
| Número de comando | 389 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
index cef68f65eda6c0..508a9cbbdde5d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
@@ -116,6 +116,6 @@ Desea encontrar una referencia a un objeto:
| | |
| --- | --- |
| Número de comando | 230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
index 419fc7a9cb8cca..ecb685e1a49d69 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ Tenga en cuenta >= permite cubrir todos los casos. De hecho, la función devuelv
| | |
| --- | --- |
| Número de comando | 653 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
index 763cd8ddd53d8d..b1948284c6fd0a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Dada la siguiente lista jerárquica:
| | |
| --- | --- |
| Número de comando | 952 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
index 383d063c6fd577..6ecd4796014dd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
@@ -80,6 +80,6 @@ Usted quiere encontrar el número de ocurrencias de las cadenas que comienzan po
| | |
| --- | --- |
| Número de comando | 1333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
index 7cccb0aa40625d..3a5e7572bcb16d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ El parámetro *parteVentana* devuelve 3 si se toca la ventana, de lo contrario 0
| | |
| --- | --- |
| Número de comando | 449 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
index d3bd23517fd532..ce29bf30d97587 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ El siguiente ejemplo carga el primer registro de la tabla \[Clientes\]:
| | |
| --- | --- |
| Número de comando | 50 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
index 5fed536ffc9045..4eeefc68e67abf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ Normalmente, no es necesario llamar a este comando, ya que 4D guarda las modific
| | |
| --- | --- |
| Número de comando | 297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
index ea9c959ecc25ae..66ab90ee545967 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón. El método de objet
| | |
| --- | --- |
| Número de comando | 278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
index fcc13edc043056..aaeaa0e4c28fe6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ Si no hay carpetas en la ubicación especificada, el comando devuelve un array v
| | |
| --- | --- |
| Número de comando | 473 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
index 2c7d03fc1e3fc2..cef24e6cbfe399 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ Desea asegurarse de que la fuente utilizada en un área de texto esté disponibl
| | |
| --- | --- |
| Número de comando | 1700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
index 167d2cd154d51d..0a30611fa80680 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
@@ -81,6 +81,6 @@ Usted quiere obtener una lista de fuentes recientes:
| | |
| --- | --- |
| Número de comando | 460 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
index e31ab15affe95b..ae80094a0c8d2e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Usted desea seleccionar estilos de la familia de fuentes "Verdana" (si está dis
| | |
| --- | --- |
| Número de comando | 1362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
index 8be3644a61664d..fb88193444f531 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
@@ -63,6 +63,6 @@ Si ejecuta el código:
| | |
| --- | --- |
| Número de comando | 1570 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
index 9ca7971f01e32e..8478c136ea2f16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
index 7535b0729099a9..6d1206aa4ad766 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Desea cargar una imagen según el esquema actual del formulario:
| | |
| --- | --- |
| Número de comando | 1761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
index 49ea856724f8ed..686ab9653d86ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
@@ -75,6 +75,6 @@ En un formulario, si selecciona un elemento de menú de la barra de menús o si
| | |
| --- | --- |
| Número de comando | 276 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
index da03e08281f5fb..92df2979afb6a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ Puede excluir ciertos objetos del orden de entrada:
| | |
| --- | --- |
| Número de comando | 1469 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
index c0164803b70b51..a3276c2eb4cc91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1077 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
index bc6a29b0d1cf21..1512d0cadb5a7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
@@ -73,6 +73,6 @@ Ejemplos de uso típicos:
| | |
| --- | --- |
| Número de comando | 1167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
index 055e58a73b46f6..16fc4d8fb819bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
@@ -130,6 +130,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 898 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
index 54bc8fb1fb6d4c..b0c698fd0bfb7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ El parámetro *título* devuelve el título de la ventana del formulario, tal co
| | |
| --- | --- |
| Número de comando | 674 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
index 95e6b158ce147a..5629c0975f6d52 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1078 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
index 89e030c17d907c..7b6074b67a0934 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón que muestra una pág
| | |
| --- | --- |
| Número de comando | 247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
index b17d552956b1b2..300688beefeb5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
index dd08ba8589ed6e..d90149f85baf5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
index 949c1511033d33..8702fa4e5d8112 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea llamado por un comando de menú
| | |
| --- | --- |
| Número de comando | 249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
index 6a10e509867bca..e6c57d4e10f3e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Por defecto, el comando devuelve una captura de pantalla de la página 1 del for
| | |
| --- | --- |
| Número de comando | 940 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
index 3ed40b05b5fe05..1a34502a2a8374 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ Usted desea definir el orden de entrada de los objetos en el formulario basado e
| | |
| --- | --- |
| Número de comando | 1468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
index ae751cd8c099ba..8ffe1b3a7d05ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 892 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
index 1a981aaff11c75..17684c4f8fc885 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
@@ -112,6 +112,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 55 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
index 4c0f72510cfa6a..2aeb0437f93f08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ Los siguientes ejemplos usan la ruta a un formulario .json para imprimir los reg
| | |
| --- | --- |
| Número de comando | 54 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
index 23230a5dfeed9e..0ec849f1435a39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ El método de objeto asociado con este botón es el siguiente:
| | |
| --- | --- |
| Número de comando | 891 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
index 15afc7138a831d..18c56622c2b5f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 893 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
index 782b698a6036ac..b1bdc8fbda2a72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Llamar este comando es necesario cuando se utiliza el comando [FORM LOAD](../com
| | |
| --- | --- |
| Número de comando | 1299 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
index 1590c5d645c10d..9162cb83b9fcf7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Ver el ejemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número de comando | 327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
index 08b8acd5b8ac46..5669c60185f9bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 447 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
index 2849bdbc2ed7b7..f2b98eae176314 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
@@ -93,6 +93,6 @@ Este es el método del botón **Generar**
| | |
| --- | --- |
| Número de comando | 691 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
index 8c31345e7ee6fb..2ccd8c6f967e38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
@@ -90,6 +90,6 @@ Estos ejemplos ilustran cómo recuperar el extracto de un texto:
| | |
| --- | --- |
| Número de comando | 1147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
index d78d0e1625263d..1a990282e20349 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [ENCRYPT BLOB](encrypt-blob.md "ENCRYPT BLOB").
| | |
| --- | --- |
| Número de comando | 688 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
index 4420f1c263f3f7..39c9e234323ea8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Este ejemplo genera un hash de contraseña utilizando bcrypt con un factor de co
| | |
| --- | --- |
| Número de comando | 1533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
index 1cd8689c10e798..c9ed87f0f2cf79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Usted quiere obtener la ruta del último archivo de backup:
| | |
| --- | --- |
| Número de comando | 1418 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
index 20a24aab8bc964..e855c0e01dc830 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
@@ -214,7 +214,7 @@ Si el parámetro *carpeta* no es válido o si la ruta de acceso devuelta está v
| | |
| --- | --- |
| Número de comando | 485 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
index d3405f85a59ee9..9eb1adb944e774 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1428 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
index bff993d348a0c3..23ae251409668b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1427 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
index 7045e2c54361e4..bf93c59a51d187 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Los tipos de campos de datos escalares incluyen campos de tipo fecha/hora, numé
| | |
| --- | --- |
| Número de comando | 1426 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
index 1a3adc14f7c827..41583688f8f7c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Este ejemplo autoriza un conjunto de métodos específicos para crear un informe
| | |
| --- | --- |
| Número de comando | 908 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
index dc1bb2046a2696..a4de2996a1b306 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Consulte la descripción del comando [SET APPLICATION COLOR SCHEME](set-applicat
| | |
| --- | --- |
| Número de comando | 1763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
index e988e73d97fca1..51d2b1b4a45a42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Por defecto, las aserciones están activas pero pueden haber sido desactivadas u
| | |
| --- | --- |
| Número de comando | 1130 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
index 30d474a3e685a8..c42c667aa48726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [GET FIELD RELATION](get-field-relation.md "GET
| | |
| --- | --- |
| Número de comando | 899 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
index 4dd9ddc8f7240d..758887c21a3d19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número de comando | 1432 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
index 9564ffa771afb5..fccc276882bfba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si no hay ninguna impresora instalada, se genera un error.
| | |
| --- | --- |
| Número de comando | 788 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
index f4aad65d31e72b..57a579de7af544 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
@@ -57,6 +57,6 @@ El lenguaje actual de la base permite definir la carpeta .lproj en la que el pro
| | |
| --- | --- |
| Número de comando | 1009 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
index 67e32715374ec9..1b6a5047a12c2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
@@ -1022,4 +1022,4 @@ En el [Método base On Startup](metodo-base-on-startup.md), usted escribe:
| | |
| --- | --- |
| Número de comando | 643 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
index 704874db7845de..537a7c4f02ac07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si ningún usuario por defecto está definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 826 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
index 7a610d1610aba2..02964311ea22ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ El parámetro opcional *tamaño* permite indicar las dimensiones en píxeles del
| | |
| --- | --- |
| Número de comando | 700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
index 22725f63ecf88c..d4a856d920ce94 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document position devuelve la posición, a partir del inicio del documento,
| | |
| --- | --- |
| Número de comando | 481 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
index 9c7deec5649764..4d1a7022971915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
@@ -208,7 +208,7 @@ Una vez implementado en la base, tenemos todo lo que necesitamos para escribir e
| | |
| --- | --- |
| Número de comando | 477 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
index 487ec7a1eb9c42..8308723972dca8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ En Macintosh, si no pasa el parámetro opcional *\**, se devuelve el tamaño del
| | |
| --- | --- |
| Número de comando | 479 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
index 9e8ce3b04a106e..45e59a9e221450 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ Este es un ejemplo de cómo procesar inmediatamente los caracteres introducidos
| | |
| --- | --- |
| Número de comando | 655 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
index f1c7c31f42099e..7921ee2bdf0977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Este comando devuelve una cadena vacía en los siguiente casos:
| | |
| --- | --- |
| Número de comando | 1133 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
index 8fcd596bac1965..722e1b66a60af0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
@@ -50,6 +50,6 @@ Si ninguna lista está asociada al campo o si el tipo del campo no permite la as
| | |
| --- | --- |
| Número de comando | 685 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
index c0673aa60a0bd7..dd1040234a06d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
@@ -81,6 +81,6 @@ Este ejemplo recupera en las variables *vTipo*, *vLong*, *vIndex*, *vUnico* y *v
| | |
| --- | --- |
| Número de comando | 258 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
index 9ad4f1398ab77a..faed0699a9451d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
@@ -89,6 +89,6 @@ El siguiente código ilustra las diferentes posibilidades ofrecidas por los coma
| | |
| --- | --- |
| Número de comando | 920 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
index bdfd3b5ba7b4d3..d271b1db199c43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
@@ -35,6 +35,6 @@ En ambos casos, el comando no devuelve campos invisibles.
| | |
| --- | --- |
| Número de comando | 804 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
index 55b18c2aeacef3..43f8384ab0d729 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ El siguiente ejemplo puede utilizarse para recuperar en un array todas las rutas
| | |
| --- | --- |
| Número de comando | 976 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
index 6753f9b2a883cc..a84ec5b7365b68 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Desea verificar si el usuario actual pertenece al grupo "plugins":
| | |
| --- | --- |
| Número de comando | 1738 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
index 49173acfbf3592..3d6de5d394ed74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP LIST o si otr
| | |
| --- | --- |
| Número de comando | 610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
index cfa4dd0d41026a..997873dede148e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP PROPERTIES o
| | |
| --- | --- |
| Número de comando | 613 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
index 1eea1d0ee8641a..43ace1a7f69e3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
@@ -69,6 +69,6 @@ Modificación del estilo del texto resaltado:
| | |
| --- | --- |
| Número de comando | 209 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
index 3ac6274c9cea50..226ecd57b101aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
@@ -49,7 +49,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 902 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
index debd9bdd67f8dc..0d39f99e4cff4a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
@@ -44,7 +44,7 @@ Si el recurso se encuentra, OK toma el valor 1, de lo contrario toma el valor 0
| | |
| --- | --- |
| Número de comando | 510 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
index 8d9774acc6e210..5f4c9d33fed1b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
@@ -37,6 +37,6 @@ Finalmente, puede pasar \* en *refElem*: en este caso, el comando se aplicará a
| | |
| --- | --- |
| Número de comando | 954 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
index 7757ab479dd070..6187363b21d5b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
@@ -44,6 +44,6 @@ Si ningún icono está asociado al elemento, la variable icono se devuelve vací
| | |
| --- | --- |
| Número de comando | 951 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
index 9002dc26f7ea20..2f96275ca6e21a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
@@ -81,6 +81,6 @@ Si también quiere obtener los valores de los parámetros, escriba:
| | |
| --- | --- |
| Número de comando | 1195 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
index 59f54367a6b581..cffc373fe723b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
@@ -41,6 +41,6 @@ En *selector*, puede pasar la constante Additional text o Standard action (en el
| | |
| --- | --- |
| Número de comando | 985 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
index d4ed4738478707..148dbadc4f7a30 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
@@ -58,6 +58,6 @@ Para mayor información sobre estas propiedades, consulte la descripción del co
| | |
| --- | --- |
| Número de comando | 631 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
index 02a021cc4d2d10..cd59dc26eced64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ Consulte el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LI
| | |
| --- | --- |
| Número de comando | 378 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
index 8b2052540ef06f..8d454793f302c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Para una completa descripción de la apariencia, iconos de nodos, altura de lín
| | |
| --- | --- |
| Número de comando | 632 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
index 677b3aaafbac35..fdbf7a77d70ecd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Consulte el ejemplo del comando [SET MACRO PARAMETER](set-macro-parameter.md "SE
| | |
| --- | --- |
| Número de comando | 997 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
index de83fcdc16782d..087bb0906df64d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Consulte el ejemplo del comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITE
| | |
| --- | --- |
| Número de comando | 979 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
index 3ec5932573ce40..f88755f3dfc3f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Si ningún icono está asociado a la línea de menú, el comando devuelve un val
| | |
| --- | --- |
| Número de comando | 983 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
index 5a98d01edc1b70..1424a0bc16bf34 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
@@ -54,7 +54,7 @@ Para obtener un atajo asociado con un comando de menú, es útil implementar una
| | |
| --- | --- |
| Número de comando | 424 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
index 2767e4994cba4b..cfa82d0ee81df8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ El siguiente ejemplo invierte la marca de una línea de menú:
| | |
| --- | --- |
| Número de comando | 428 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
index 93daa3f9c4e819..96b878a7074f1b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
@@ -35,6 +35,6 @@ El comando devuelve el nombre del método 4D como una cadena de caracteres (expr
| | |
| --- | --- |
| Número de comando | 981 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
index ae24d13cdabf62..7a2aa13dd373ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
@@ -57,6 +57,6 @@ Consulte el ejemplo del comando [Get menu item key](get-menu-item-key.md "Get me
| | |
| --- | --- |
| Número de comando | 980 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
index 01780b3f0d07a5..ccdcde11838c0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1003 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
index 71091ab8d090fe..e53a5700596d52 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
@@ -38,6 +38,6 @@ En el parámetro *propiedad*, pase la propiedad para la cual quiere obtener el v
| | |
| --- | --- |
| Número de comando | 972 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
index ed0026ce39069a..a77f580cc54771 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Para probar si un elemento de menú se muestra en negrita, escribe:
| | |
| --- | --- |
| Número de comando | 426 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
index 36ddba63423e2f..2cf8936dba524f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, Get menu item se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
index aa1c2ac26c0f92..413241641f5bdd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Usted quiere conocer el contenido de la barra de menú del proceso actual:
| | |
| --- | --- |
| Número de comando | 977 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
index bd6722f0d95a67..688b0e43fc25ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Get menu title se aplica a la barra de menús
| | |
| --- | --- |
| Número de comando | 430 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
index 2edfe7a64f60ac..e24cec26260a9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ Una vez haya identificado las tablas faltantes de la base, puede reactivarlas v
| | |
| --- | --- |
| Número de comando | 1125 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
index ea6c0c26213540..b7616803361139 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
@@ -43,6 +43,6 @@ Para mayor información sobre los tipos de datos soportados, consulte la secció
| | |
| --- | --- |
| Número de comando | 958 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
index c9c3737b446e97..d660217cbbf4bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Si los datos se extraen correctamente, la variable OK toma el valor 1; de lo con
| | |
| --- | --- |
| Número de comando | 401 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
index 46cf5ecf53f915..02b36c629f1a2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Si la imagen no tienen un nombre por defecto, el comando devuelve una cadena vac
| | |
| --- | --- |
| Número de comando | 1171 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
index 365640e86bdf39..00e3edeb2c0cb2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
@@ -54,6 +54,6 @@ Usted quiere saber los formatos de imagen almacenados en un campo para el regist
| | |
| --- | --- |
| Número de comando | 1406 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
index 01b5454a60ddcf..48164d938cca2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
@@ -65,7 +65,7 @@ Si no hay suficiente memoria para devolver la imagen, se genera el error -108\.
| | |
| --- | --- |
| Número de comando | 565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
index 6865a8a05ecb70..eb7ac5f9f2032e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Si la imagen se extrae correctamente, OK toma el valor 1; de lo contrario OK tom
| | |
| --- | --- |
| Número de comando | 522 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
index fff175850de422..69ebae771d8609 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Si la imagen no contiene palabras claves o metadatos IPTC/Keywords, el comando d
| | |
| --- | --- |
| Número de comando | 1142 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
index d85b5545dc4934..8ade4a897bb017 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ La variable sistema *OK* devuelve 1 si la recuperación de los metadatos es corr
| | |
| --- | --- |
| Número de comando | 1122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
index 4fd1782d9c97f8..25bc2039fdc852 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
index 4510d669e9b83d..39b76576469407 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Pase en el parámetro *plugIn* el número del plug-in del que quiere conocer el
| | |
| --- | --- |
| Número de comando | 846 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
index 7ec4c2356c213d..d8c56a4635d912 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Utilizar punteros a elementos de arrays de dos dimensiones:
| | |
| --- | --- |
| Número de comando | 304 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
index ebeda0baa41565..179cfed2ff851a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
@@ -67,6 +67,6 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 708 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
index 298aa0ea6927da..621ca49cb73d4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 734 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
index 0be6511d5a3d0f..d7b8a1fa650463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que el usuario puede modificar esta opción antes de validar la caja de di
| | |
| --- | --- |
| Número de comando | 1197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
index b4bd6caeee8623..90c745fe44c4a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Para saber el tamaño total de la página, puede:
| | |
| --- | --- |
| Número de comando | 703 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
index 254f103b0c87ee..1740ff6e1bce0d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
@@ -49,6 +49,6 @@ Es posible basar la impresión de los formularios efectuados utilizando los coma
| | |
| --- | --- |
| Número de comando | 711 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
index 2b079e570bcfd4..65bfa4c43f0224 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ Los márgenes de impresión derecha e izquierda no influyen en el valor devuelto
| | |
| --- | --- |
| Número de comando | 702 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
index ad7e76415a2768..b831a86f6029d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
@@ -123,6 +123,6 @@ Ver el ejemplo del comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número de comando | 371 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
index e00e5a238a457a..424bf570228b9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Queremos modificar temporalmente el destino de búsqueda y restablecer los pará
| | |
| --- | --- |
| Número de comando | 1155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
index 1dd9a73cf9baf9..fb97ae0919f77b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defecto, si ningún límite se ha definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
index d0cf35638e0473..ba698ab3ce1dc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ Si la operación se realiza correctemente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 650 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
index de1cfdaf49e024..b9d6b6113de6ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
@@ -49,6 +49,6 @@ Una se haya ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 686 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
index 60ce924ad18f56..656b911917fdcd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Si el recurso no existe, Get resource name devuelve una cadena vacía.
| | |
| --- | --- |
| Número de comando | 513 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
index 0213194202ca03..acaf44e29d794e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ La variable sistema OK toma el valor 0 si el recurso no existe, de lo contrario
| | |
| --- | --- |
| Número de comando | 515 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
index 2c0fd1ff334666..11020eb996e8ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 508 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
index c9d1835fd1fa3a..d4cfd9c5af5b4e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si ninguna línea de menú ha sido seleccionada, el comando devuelve una cadena
| | |
| --- | --- |
| Número de comando | 1005 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
index be6f8a487067e2..5296535dfd63cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Este método de proyecto puede utilizarse para direccionar el mismo puerto seria
| | |
| --- | --- |
| Número de comando | 909 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
index 84f03835f3ed8a..131fb8c7e9334a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ La variable sistema OK toma el valor 1 si se encuentra el recurso, de lo contrar
| | |
| --- | --- |
| Número de comando | 506 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
index c423053a769d1b..5763a3e9ad3b0d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Si quiere conocer la configuración actual de la hoja de estilo "Automatic"
| | |
| --- | --- |
| Número de comando | 1256 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
index 9935beba17af16..402e6d116e4145 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número de comando | 1137 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
index 1d96ff5b6cd069..761d6edae1f5d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ En el parámetro *formato*, pase el tipo del parámetro del que quiere conocer e
| | |
| --- | --- |
| Número de comando | 994 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
index 0e5737c4c416b6..62dd9e6cfdb84f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Una vez ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 687 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
index 95efd40da8b558..defd9c1bd312c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
@@ -34,6 +34,6 @@ En ambos casos, el comando no devuelve las tablas invisibles.
| | |
| --- | --- |
| Número de comando | 803 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
index 739bab1e27f435..4033dc6af85ae8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si el texto se extrae correctamente, OK toma el valor 1; de lo contrario OK toma
| | |
| --- | --- |
| Número de comando | 524 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
index 9bd8c5011d5526..2b672095d86478 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Para contar las palabras de un texto:
| | |
| --- | --- |
| Número de comando | 1141 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
index f5b77a361dfcf2..e187948fecd927 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
@@ -48,7 +48,7 @@ Si se encuentra el recurso, OK toma el valor 1\. De lo contrario, toma el valor
| | |
| --- | --- |
| Número de comando | 504 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
index 3eb6a157dfdb72..041e38e015090d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER LIST o si otro
| | |
| --- | --- |
| Número de comando | 609 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
index c3da97fcd934d7..832d19c5e96719 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER PROPERTIES o s
| | |
| --- | --- |
| Número de comando | 611 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
index 18e1021888b183..6fad5176ffd6bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 443 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
index 1de30927bb500b..0d076b46194182 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Ver ejemplo del comando [SET WINDOW TITLE](set-window-title.md "SET WINDOW TITLE
| | |
| --- | --- |
| Número de comando | 450 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
index cddcc37d269d00..8e2fd0394cd468 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Ver el ejemplo del comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número de comando | 206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
index 41596500e11c2f..ada1f1b4aa4b81 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ Ver el ejemplo para Record Number.
| | |
| --- | --- |
| Número de comando | 242 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
index 18c9f276485af9..65460e97c023bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ El siguiente método de objeto del área desplegable *atNames* selecciona el reg
| | |
| --- | --- |
| Número de comando | 245 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
index 41fc35326e54e2..6b775c296d862d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ Muestra la siguiente ventana (en Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número de comando | 161 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
index e63bebae5aa7c8..4cd139e417eb37 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número de comando | 298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
index 6c1bbc35daf6c4..d5d00d47cc369e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
@@ -289,6 +289,6 @@ En este ejemplo, personalizamos algunos parámetros:
| | |
| --- | --- |
| Número de comando | 169 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
index 86f35706b7c44d..391f7dcdbca1f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ El siguiente método muestra un registro en toda la pantalla (Macintosh) hasta q
| | |
| --- | --- |
| Número de comando | 432 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
index ab22cd4f1bd100..59243420eb9836 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ El siguiente ejemplo oculta todas las ventanas que pertenecen al proceso actual:
| | |
| --- | --- |
| Número de comando | 324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
index fa0b3518c30c60..ffb46047b219e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar esto, en el evento formulario On Resize de la ventana estándar, es
| | |
| --- | --- |
| Número de comando | 434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
index 71a66386e8dc81..cc1f6c7fcf1ec4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Este ejemplo corresponde a un método de un botón ubicado en un formulario de e
| | |
| --- | --- |
| Número de comando | 436 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
index 3a0705f53fc144..b512716d628c2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Cuando el usuario hace clic en el botón, aparece la caja de diálogo estándar
| | |
| --- | --- |
| Número de comando | 656 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
index e5494d30845113..d0d6a04025b180 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
@@ -67,6 +67,6 @@ Ver el ejemplo del comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTR
| | |
| --- | --- |
| Número de comando | 210 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
index 18431c67fd8839..f274fe8a47094c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
@@ -63,6 +63,6 @@ Ejemplos de peticiones con autenticación:
| | |
| --- | --- |
| Número de comando | 1161 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
index 90007c185caa08..b2c157fe042b72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1307 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
index 855c4bd2f44b4e..fd7a1cb64ef54a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ En el parámetro *valor*, pase una variable para recibir el valor actual de la *
| | |
| --- | --- |
| Número de comando | 1159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
index 4bf44d430f2926..4621d9da030f54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
@@ -111,7 +111,7 @@ Recuperación de un vídeo:
| | |
| --- | --- |
| Número de comando | 1157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
index b67764145c5974..1737cb87e8865d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
@@ -131,6 +131,6 @@ Petición para añadir un registro en JSON a una base remota:
| | |
| --- | --- |
| Número de comando | 1158 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
index 1c167ae9a687eb..a306a412cf0926 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1306 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
index 7ffcc7f3cf35fb..7fcc8ac91f7c2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
@@ -51,6 +51,6 @@ El orden de llamada de las opciones no tiene importancia. Si la misma opción se
| | |
| --- | --- |
| Número de comando | 1160 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
index 2e99b408d79c0f..c2645fc9f95c0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
@@ -57,6 +57,6 @@ con:
| | |
| --- | --- |
| Número de comando | 311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
index 06585f09eb0d3e..fcb6c59ecc0f9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
@@ -52,7 +52,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de guar
| | |
| --- | --- |
| Número de comando | 665 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
index 05a9e0ff0d96c2..e2787b9924babb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 86 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
index 69743c67296abe..cf970b4403013a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Usted desea importar una definición de estructura guardada en la base actual:
| | |
| --- | --- |
| Número de comando | 1310 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
index 6f4dc9b514f40f..d04b7456322b77 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 87 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
index d3868d6221c55f..3fd5d4ed8d6e3a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
index 6bf89eedb62ae5..d3949b8acccc5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In break** asegúrese de que la prop
| | |
| --- | --- |
| Número de comando | 113 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
index 89e74e06b83b32..2b54285dbef221 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In footer** asegúrese de que la pro
| | |
| --- | --- |
| Número de comando | 191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
index 155531d80ea3d3..15c295e8f094af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In header**, asegúrese de que la pr
| | |
| --- | --- |
| Número de comando | 112 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
index ce34dac04d8d0c..7cc2c57aeae7ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si efectúa la operación desde un trigger o una subrutina que puede ser llamado
| | |
| --- | --- |
| Número de comando | 397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
index d27f3162a05220..8a3455a5a7df93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ El siguiente ejemplo añade un elemento a un array:
| | |
| --- | --- |
| Número de comando | 227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
index 8be2d7b4c7dfe4..bcc886805d73ec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Antes de llamar el comando, pase en la variable del parámetro *offset* la posic
| | |
| --- | --- |
| Número de comando | 559 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
index 34fcc800e33a21..7ac71d8107b862 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
@@ -54,6 +54,6 @@ El siguiente código inserta un elemento (sin sublista asociada) justo antes del
| | |
| --- | --- |
| Número de comando | 625 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
index 2a8520991e628b..099a37eada089b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ El siguiente ejemplo crea un menú que consiste en dos comandos los cuales asign
| | |
| --- | --- |
| Número de comando | 412 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
index 311c636df62d5b..9fdd8e7942614b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ El siguiente ejemplo ilustra el uso de Insert string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
index 75cc372784af60..d990f9383c2835 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
@@ -36,6 +36,6 @@ El siguiente ejemplo ilustra el funcionamiento de Int para números positivos y
| | |
| --- | --- |
| Número de comando | 8 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
index 805a001feed005..5aa95a5bfd18ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
index 929d503e1bcf9b..cb36faab670604 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
@@ -109,7 +109,7 @@ Si la integración se efectúa correctamente, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 1312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
index 9f6785ff77f24f..0a580041e90de3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ El siguiente ejemplo busca los clientes que son atendidos por dos representantes
| | |
| --- | --- |
| Número de comando | 121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
index 154ccc839bdc1f..406a1766d168e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Usted desea ejecutar una acción estándar **Goto page** (página 3) en el formu
| | |
| --- | --- |
| Número de comando | 1439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
index 6a90bf704da614..1035668929b08d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
@@ -29,6 +29,6 @@ Ver el ejemplo del comando [CLEAR LIST](clear-list.md "CLEAR LIST").
| | |
| --- | --- |
| Número de comando | 621 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
index d1d98a3a09ce73..4b0cf95425f078 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ Si quiere conocer el nombre de la variable que está siendo apuntada o el númer
| | |
| --- | --- |
| Número de comando | 294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
index 51a8933f9f3b95..05af9c9814393c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
@@ -50,6 +50,6 @@ En una de sus rutinas, usted incluyó el código de depuración de la base, úti
| | |
| --- | --- |
| Número de comando | 492 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
index 33efe6db48d895..f5421a1473e76e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método evitará la apertura de la base si el archivo de datos está bloque
| | |
| --- | --- |
| Número de comando | 716 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
index cf6d74e3187443..35f9838a3bcf8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Desea permitir que el usuario seleccione una línea que comience con la letra o
| | |
| --- | --- |
| Número de comando | 1744 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
index aae737881fa012..330986ac1ef0e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Este comando permite detectar las eventuales eliminaciones de campos, que crean
| | |
| --- | --- |
| Número de comando | 1000 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
index 4e07892f5544d2..33ec100b9937ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ El valor devuelto por este comando sólo tiene sentido si la opción "*Mapear va
| | |
| --- | --- |
| Número de comando | 964 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
index 6ccc9b3cf499a4..26f603ea42fa24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este ejemplo permite tener en cuenta todos los tipos de impresiones:
| | |
| --- | --- |
| Número de comando | 1198 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
index c287dbc5f0d82e..ab83e4cb4aadb9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
@@ -40,6 +40,6 @@ El siguiente ejemplo es un método de objeto de un botón que prueba si el regis
| | |
| --- | --- |
| Número de comando | 273 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
index 2426656e3d1036..cef63f7912ce92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
@@ -52,6 +52,6 @@ Is license available devuelve [False](false.md "False") si el plug-in está func
| | |
| --- | --- |
| Número de comando | 714 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
index e3d551a37ee65c..c96e349fe17dd7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Usted desea determinar si el sistema operativo actual es macOS:
| | |
| --- | --- |
| Número de comando | 1572 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
index f4378fbbec9fcc..dd0280b83ef752 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
@@ -44,6 +44,6 @@ Las dos siguientes instrucciones siguientes son idénticas. La segunda se recomi
| | |
| --- | --- |
| Número de comando | 668 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
index a5122dd8ce3b4c..3f1db6a465b24f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Si quiere conocer el nombre de la variable apuntada o el número del campo, pued
| | |
| --- | --- |
| Número de comando | 315 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
index 037dcafa117af9..809a8eb5cfbbb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Si no pasa el parámetro *\**, el comando prueba el archivo buscando su extensi
| | |
| --- | --- |
| Número de comando | 1113 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
index f68fe62c018eda..c25a51bf6ed546 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
@@ -48,6 +48,6 @@ En lugar de utilizar las acciones automáticas “Siguiente registro” o “Reg
| | |
| --- | --- |
| Número de comando | 669 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
index 9d60fb5c158472..0e1eba64577c3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Este comando permite detectar las eventuales eliminaciones de tablas, que crean
| | |
| --- | --- |
| Número de comando | 999 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
index 427dd33d5b6572..546209d560b631 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Si no tiene privilegios de acceso para llamar al comando Is user deleted o si ot
| | |
| --- | --- |
| Número de comando | 616 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
index dc9e58777ecafe..e3b5a189a7ac7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
@@ -67,6 +67,6 @@ End case
| | |
| --- | --- |
| Número de comando | 1422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
index ec05d73bcfed13..a498cd1e8511c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Quiere cambiar entre el estado maximizado y el anterior:
| | |
| --- | --- |
| Número de comando | 1830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
index 5ec84b7b0d6e6e..3746edc8b7bc1c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
index e363653060051f..8afdc8a69a90f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Desea determinar si el sistema operativo actual es Windows:
| | |
| --- | --- |
| Número de comando | 1573 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
index 65d61d3469047a..77469c4c3396b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ En este ejemplo, los datos de los campos de los registros de una tabla se extrae
| | |
| --- | --- |
| Número de comando | 1219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
index 30ceb5d5a8d389..6527da8e51d3e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
@@ -196,6 +196,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número de comando | 1218 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
index 628a55cb311180..5cee5517c2cafe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ Si ejecuta:
| | |
| --- | --- |
| Número de comando | 1478 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
index e297f8838d1777..583abd6c31a7b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversión de una selección 4D en un array objeto:
| | |
| --- | --- |
| Número de comando | 1228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
index e6343ff8d820b4..914c0efa8986e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
@@ -175,6 +175,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número de comando | 1217 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
index 5b4209b9da78b9..3d21e8ba9eb7f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Uso del comando **JSON TO SELECTION** para añadir los registros a la tabla \[Co
| | |
| --- | --- |
| Número de comando | 1235 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
index f33b802f8385f4..8c8593160874da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Usted desea validar un objeto JSON con un esquema y obtener la lista de errores
| | |
| --- | --- |
| Número de comando | 1456 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
index 74cff74074e34b..1a339b2209100e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ Utilizando las habilidades de la comunicación interproceso de 4D, puede constru
| | |
| --- | --- |
| Número de comando | 390 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
index 4dd4b513362e9c..1709a5a84ff40c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ En el método (*theWorker*), se añade código para manejar esta situación:
| | |
| --- | --- |
| Número de comando | 1390 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
index 0c75a1b112b9ab..671e031aedc5ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ El siguiente método de proyecto crea el array *asCampos*, con los nombres de lo
| | |
| --- | --- |
| Número de comando | 255 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
index e038f158edb251..4e8780a6d7f52e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ La descripción de la ruta de la última búsqueda puede compararse con la descr
| | |
| --- | --- |
| Número de comando | 1045 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
index f63434929c086b..36cfab3d140fa5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ La descripción del plan de la última búsqueda puede compararse con la descrip
| | |
| --- | --- |
| Número de comando | 1046 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
index f916e5a2fde4b3..c0e06445c7b3eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ El siguiente ejemplo designa el último registro de la tabla \[Personas\] como r
| | |
| --- | --- |
| Número de comando | 200 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
index 6fb739a1cc731f..3dfdb8cbbecaf6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ El siguiente ejemplo inicializa los elementos del array *asTablas,* con los nomb
| | |
| --- | --- |
| Número de comando | 254 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
index 3e7e20c6c9ba18..ce51741694b92a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado en un proceso de actualización aut
| | |
| --- | --- |
| Número de comando | 1301 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
index 52ab1a4217b673..dd6a1690ddf37b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
@@ -151,7 +151,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 811 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
index 1e25146ef453fc..9c4ac6d9d0e715 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
@@ -102,6 +102,6 @@ Este ejemplo intenta conectarse a una aplicación:
| | |
| --- | --- |
| Número de comando | 1326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
index d5b8b891db58bf..18566e4e290c90 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
index a075666476b1a0..b1f8b884702f58 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Estos ejemplos ilustran el uso del parámetro *atributosEnArray*:
| | |
| --- | --- |
| Número de comando | 1329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
index 6a687668d7ebcd..e823101d030dec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Queremos obtener una array de todas las entradas que se encuentran en el atribut
| | |
| --- | --- |
| Número de comando | 1328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
index a43d1e2dd52e6d..f7eea5ea9bf411 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
@@ -35,6 +35,6 @@ Este ejemplo ilustra el uso de Length. Los resultados, descritos en los comentar
| | |
| --- | --- |
| Número de comando | 16 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
index a0cffdd12ba99d..4dcd7f6c431239 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este ejemplo es una plantilla para un método de formulario. Muestra cada evento
| | |
| --- | --- |
| Número de comando | 101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
index 167f02e795b993..1b0eeb3276d886 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Esta tabla detalla el contenido del objeto de sesión para las sesiones REST:
| | |
| --- | --- |
| Número de comando | 1782 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
index 58b0f80e111359..e2fcbdf8ad6522 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
@@ -77,6 +77,6 @@ Los números de referencia de los elementos son los siguientes:
| | |
| --- | --- |
| Número de comando | 633 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
index c7d02dfbac0f0c..d102803e042534 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Si el elemento no existe, List item position devuelve 0.
| | |
| --- | --- |
| Número de comando | 629 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
index ced18bfe57a558..d1a82f3fb4d8f7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Los números de las listas corresponden a su orden de creación. En el editor de
| | |
| --- | --- |
| Número de comando | 957 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
index f2837b6a8e19f4..dbde4e7c1c54e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Si ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1255 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
index 97234b2e35f795..1828243c968826 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Si ejecuta la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
index 4041047fa24971..cfbcacb3485b6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 556 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
index 3d058de0dcbae8..9fc2e7fb2003e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Este ejemplo colapsa el primer nivel de líneas de ruptura de la selección en e
| | |
| --- | --- |
| Número de comando | 1101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
index e855efb2c1ccf2..f6475c041e5a82 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Si el parámetro *posicionCol* es mayor al número de columnas en el list box, e
| | |
| --- | --- |
| Número de comando | 830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
index 4b8d7b28cf06a8..6cad0772f49cae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Si el parámetro *posicion* es superior al número de líneas del array del list
| | |
| --- | --- |
| Número de comando | 914 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
index 10b42f36766000..61d503030c4ab5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
@@ -91,6 +91,6 @@ Note que las variables de encabezado y de pie de página siempre se crean con un
| | |
| --- | --- |
| Número de comando | 1273 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
index ea2dc5ba619ecc..4a0f0841882d98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número de comando | 1100 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
index ad59d909743dd3..6b563bd7fb0a05 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Ejemplos típicos de uso:
| | |
| --- | --- |
| Número de comando | 1278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
index 1e48cc452649a2..a06becde4668da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Para un list box de tipo selección, colección o selección de entidades, *arrE
| | |
| --- | --- |
| Número de comando | 832 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
index 2a7b8294f87022..b5166724d0df60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ Usted desea obtener el número máximo de líneas para una línea de list box:
| | |
| --- | --- |
| Número de comando | 1502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
index 9415747ae4694d..c79ae707cb2198 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
@@ -58,6 +58,6 @@ Usted quiere dibujar un rectángulo rojo alrededor de la celda seleccionada de u
| | |
| --- | --- |
| Número de comando | 1330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
index 19d8d2a3b6c5b8..6cf304215674e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
@@ -59,6 +59,6 @@ Este comando tiene en cuenta las acciones de selección o deselección efectuada
| | |
| --- | --- |
| Número de comando | 971 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
index 0a0f993f0d5ca8..fa10bbbdb955e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1202 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
index 44f19f76ad3bc9..586eab7f0fb1bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ Si no se ha definido ningún valor de ancho mínimo y/o máximo para la columna,
| | |
| --- | --- |
| Número de comando | 834 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
index 2a33e87322ef22..584c444aa96a5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
@@ -36,6 +36,6 @@ Puede comparar el valor devuelto con las constantes del tema *List box cálculo
| | |
| --- | --- |
| Número de comando | 1150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
index 4b804387ca7605..ec5e63237a1a89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1146 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
index 31cb9757b8792c..2a886392758730 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ En *colorH* y *colorV*, el comando devuelve los valores de los colores RGB. El f
| | |
| --- | --- |
| Número de comando | 1200 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
index 4e82a6f473a352..10340c1fe39802 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ El comando devuelve en los parámetros *horizontal* y *vertical*, el valor **Tru
| | |
| --- | --- |
| Número de comando | 1199 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
index 132303c5ef7bae..fb86aca7504791 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1144 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
index b124697b2e7759..632c0e26ad4e4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Si el list box está en modo jerárquico, el comando llena el array *jerarquia*
| | |
| --- | --- |
| Número de comando | 1099 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
index c454f6b48dc7ae..259532489198ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
index 7018f2aa3ab121..88909a671d96dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
index e9cedcb7e24620..26489d2bc082d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Si pasa el parámetro opcional \*, indica que el parámetro *objeto* es un nombr
| | |
| --- | --- |
| Número de comando | 915 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
index 8c40fcc439296e..399031deb8f32b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
index 2df241da6b77fb..0d6b5207f3ead2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impresión de al menos 500 líneas del list box, conociendo que algunas líneas
| | |
| --- | --- |
| Número de comando | 1110 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
index fe4d3977dee943..b8d7780b1da90a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
@@ -64,6 +64,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1271 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
index 9e084f7f39886e..65fcbe1b7db22e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1658 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
index 41decbc0cd9674..1e18a396f4f163 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
index 044be8645f215c..e1d0227bb0478b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ El valor de la altura de la línea se expresa:
| | |
| --- | --- |
| Número de comando | 1408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
index 7c755031dadd18..2cc76fc38feefd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 836 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
index 5e3f3502b36ac2..def602ba980f99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ Sin embargo, el comando no tiene en cuenta el estado visible/invisible de las co
| | |
| --- | --- |
| Número de comando | 1154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
index fbc5b90c06b28a..cd9f1407ee90c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
@@ -38,6 +38,6 @@ Si el list box está asociado con arrays, *numTabla* devuelve -1 y *tempo*, si s
| | |
| --- | --- |
| Número de comando | 1014 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
index 1e355e35acef2d..c02398843f5d83 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
@@ -123,6 +123,6 @@ La columna se añade al list box:
| | |
| --- | --- |
| Número de comando | 970 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
index 23fd5904543e60..887631822ed30f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
@@ -104,6 +104,6 @@ Usted desea insertar una columna de forma dinámica en un array de tipo list box
| | |
| --- | --- |
| Número de comando | 829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
index 0bbc0290f14af1..6bd3e0eb7eb30b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Si el valor de *posicionL* es mayor que el número total de filas en el list box
| | |
| --- | --- |
| Número de comando | 913 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
index 66ebca7f706471..8a39f3f270554e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Usted quiere invertir la segunda y tercera columna del list box:
| | |
| --- | --- |
| Número de comando | 1274 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
index 9dd2391a473aff..a34135e01afb14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Este comando debe utilizarse con el evento de formulario On column moved (ver el
| | |
| --- | --- |
| Número de comando | 844 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
index 8bba122e9b9974..36a0736ac33913 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Este comando debe utilizarse con el evento de formulario On row moved (ver el co
| | |
| --- | --- |
| Número de comando | 837 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
index 828696c1aa92a1..20ca47ebb47b6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Este es el resultado:
| | |
| --- | --- |
| Número de comando | 1117 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
index c4ed2fa1e35fb4..65cbc48092fc7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ Después de la ejecución del método, los arrays son sincronizados: si el array
| | |
| --- | --- |
| Número de comando | 912 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
index 1106809779c181..fc8bb18af4077d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
@@ -90,6 +90,6 @@ Ejemplo con una colección de objetos:
| | |
| --- | --- |
| Número de comando | 1715 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
index 32ce0fc3084902..e06a23064ffa98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
@@ -71,6 +71,6 @@ Usted desea definir un array de altura de línea para un list box:
| | |
| --- | --- |
| Número de comando | 1279 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
index 12d6b9de5168d5..877b23eeb8a37e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Usted desea definir las alturas mínimas y máximas para un list box con una alt
| | |
| --- | --- |
| Número de comando | 1501 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
index c3f9de859ca7f2..357998805eabe3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ El parámetro *tipoDatos* designa el tipo de datos resultantes de la ejecución
| | |
| --- | --- |
| Número de comando | 1203 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
index 0db02fb18a673c..b07f9001b2bbc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
@@ -38,6 +38,6 @@ Los parámetros opcionales *anchoMin* y *anchoMax* permiten definir los límites
| | |
| --- | --- |
| Número de comando | 833 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
index cea66239478022..bec6cd5e79129d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ Si el tipo de datos de la columna o de al menos una columna del list box (si obj
| | |
| --- | --- |
| Número de comando | 1140 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
index 689014e45f1d35..23d9946eca22c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
@@ -41,6 +41,6 @@ Pase en el parámetro *altura* la altura a definir. Por defecto, si omite el par
| | |
| --- | --- |
| Número de comando | 1145 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
index 6f70602cb24a72..d0cb555cc9fc35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Los parámetros *horizontal* y *vertical* le permiten especificar las líneas a
| | |
| --- | --- |
| Número de comando | 842 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
index 5822d947fb27a3..df0075ea1dfefc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores booleanos que indi
| | |
| --- | --- |
| Número de comando | 841 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
index a54c12c0feeec3..deddbfeed0c55b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
@@ -45,6 +45,6 @@ Los encabezados deben respetar la altura mínima establecida por el sistema. Est
| | |
| --- | --- |
| Número de comando | 1143 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
index a89b35eb7c91d1..e207d12fa1265a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Definición de los arrays aPais, aRegion y aCiudad como jerarquía de un list bo
| | |
| --- | --- |
| Número de comando | 1098 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
index fc65ccddd1bc52..cc48477caa5fee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Para eliminar el bloqueo de columnas, pase 0 o un valor negativo en *numColumnas
| | |
| --- | --- |
| Número de comando | 1151 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
index 80274f758de49b..b19e852ea527c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ En un array de tipo list box, queremos establecer los colores de una fila y para
| | |
| --- | --- |
| Número de comando | 1270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
index 26e7bd4b6cc832..3c14b6454aabf1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
@@ -84,6 +84,6 @@ Después de la segunda declaración, todas las celdas de la tercera fila cambian
| | |
| --- | --- |
| Número de comando | 1268 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
index 2fac6b71698803..96d37c417d2ef1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
@@ -89,6 +89,6 @@ Por otro lado, si el código siguiente se ejecuta posteriormente...
| | |
| --- | --- |
| Número de comando | 1409 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
index 8d31f5ddbc9527..5082e18aead09b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura se expresa en píxeles.
| | |
| --- | --- |
| Número de comando | 835 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
index 1d56ccb8c13a94..b610fc928e3a50 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ Las columnas estáticas no pueden moverse en el list box.
| | |
| --- | --- |
| Número de comando | 1153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
index 6fe0f215d366c9..bcc63878895090 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ Si el list box ya contiene las columnas, sus contenidos se actualizarán despué
| | |
| --- | --- |
| Número de comando | 1013 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
index 01eb556798bdf9..bb686dc52393ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ Conforme con el principio de funcionamiento del list box, las columnas están si
| | |
| --- | --- |
| Número de comando | 916 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
index f5ba0cfa7f02c6..d811065cdc4e6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Obtendrá el siguiente resultado (objeto stringified):
| | |
| --- | --- |
| Número de comando | 1528 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
index dccd7280f05205..b248cb0f69b5c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Usted crea una base para el mercado internacional y necesita cambiar a los difer
| | |
| --- | --- |
| Número de comando | 383 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
index dbd6583afb0da0..eb86089311e1a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ En entornos multiusuario y multiprocesos, cuando necesite modificar un registro
| | |
| --- | --- |
| Número de comando | 52 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
index cc474be9bd6c0a..698b7651685d4a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ Si el usuario hace clic en Cancelar en la caja de diálogo de abrir archivos, o
| | |
| --- | --- |
| Número de comando | 185 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
index 5894fa98847e63..cb777126e426c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ Si las variables se cargan correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 74 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
index b0820e418afd1e..2473b19b2ea08b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
@@ -71,6 +71,6 @@ Si el lenguaje actual es, por ejemplo, francés canadiense (fr-ca), el comando d
| | |
| --- | --- |
| Número de comando | 1105 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
index 2b18692dfa8bf2..853f1864443daf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. Si *res
| | |
| --- | --- |
| Número de comando | 991 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
index 24155b5659184b..657a94783754d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ Si el registro ha sido bloqueado por una *petición $lock REST*:
| | |
| --- | --- |
| Número de comando | 353 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
index 4e5249d5e93a58..13b9fd1851393f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
@@ -96,6 +96,6 @@ Si el código se ejecuta en un 4D Server y el bloqueo es causado por una máquin
| | |
| --- | --- |
| Número de comando | 1316 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
index d9c15785dc8dc2..a10547adb12d8a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Durante una transacción, [LOAD RECORD](load-record.md) y Locked se utilizan con
| | |
| --- | --- |
| Número de comando | 147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
index 7c5cd994cd34bf..2e15063291b8c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
@@ -70,6 +70,6 @@ Cada vez que se abre la base, esta información se escribirá en el visor de eve
| | |
| --- | --- |
| Número de comando | 667 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
index 3407561c4a25d2..708c19d6ba67b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ El comando **LOG FILE TO JSON** modifica el valor de las variables sistema OK y
| | |
| --- | --- |
| Número de comando | 1352 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
index 69fb9b810dbf14..bd6c5911c54cdb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
@@ -38,5 +38,5 @@ Si la base funciona con un archivo historial, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 928 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
index b10d5f21823fb5..1d8b8b01c5f127 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
@@ -37,6 +37,6 @@ La siguiente línea muestra 1:
| | |
| --- | --- |
| Número de comando | 22 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
index da44333afcb99e..28a403b842aa5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Quiere recuperar los números de los registros de la selección actual:
| | |
| --- | --- |
| Número de comando | 647 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
index 2c2fdf4fed8e82..4811e46271ef01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 550 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
index 21b0967d8aaf90..33ecb91ec65211 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ Este ejemplo compara los resultados obtenidos de acuerdo a si se pasa o no el pa
| | |
| --- | --- |
| Número de comando | 14 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
index ca36388b3b24da..a18468b2d341f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 546 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
index 0bfbb9956b20a8..0b115e1dd6f575 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 544 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
index 95f1ee99f78e67..51cb9d5ee7d54b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 545 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
index f0acaaca069b0c..73d66cf7dcb82f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
@@ -120,7 +120,7 @@ En caso de error, el comando genera un error que puede interceptar vía un méto
| | |
| --- | --- |
| Número de comando | 1019 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
index c4d5ad9f0e608e..e4375b52e1f5a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
@@ -75,7 +75,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 3 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
index dcb9110e2675bb..e183ee048d2541 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
@@ -87,6 +87,6 @@ En este contexto, si el usuario hace clic en el botón:
| | |
| --- | --- |
| Número de comando | 453 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
index 73ddd52f330405..c1d240763e5c2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ Después de ejecutar el comando, las estadísticas solicitadas se entregan en lo
| | |
| --- | --- |
| Número de comando | 1118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
index e5ea7fd8d792d6..90c64221f5fd73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ El comando devuelve 0:
| | |
| --- | --- |
| Número de comando | 440 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
index 21b38121de9a24..17bd74759d1d93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 441 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
index 9ec6f6c5954d49..b9fb5699a0859d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ El siguiente método de formulario utiliza Menu selected para proporcionar los a
| | |
| --- | --- |
| Número de comando | 152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
index fb7aea074e1ac2..6e51dd923bd05b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
@@ -118,6 +118,6 @@ El resultado es el siguiente (en Windows):
| | |
| --- | --- |
| Número de comando | 88 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
index da43d605d62b00..3e10342dba9e51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ El siguiente ejemplo suprime los termómetros de progreso antes de efectuar una
| | |
| --- | --- |
| Número de comando | 175 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
index 51b5deba618c95..18b9dc387a1c89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 181 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
index 9e0b8c71837dbd..42e335892b78ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Este comando es particularmente útil en el contexto de componentes porque le pe
| | |
| --- | --- |
| Número de comando | 704 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
index 1c188f4a4a46ef..bda5e440ad9072 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si no se ha instalado un ningún método, se devuelve una cadena vacía ("").
| | |
| --- | --- |
| Número de comando | 705 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
index 760e1d0bf4335b..8d8e3854b7ab2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ El comando devuelve **True** si se selecciona un atributo y **False** si se dese
| | |
| --- | --- |
| Número de comando | 1169 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
index ffa810ef8cc3cd..14ee200f2ebb6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
@@ -66,6 +66,6 @@ Después de la ejecución, $att contiene, por ejemplo:
| | |
| --- | --- |
| Número de comando | 1334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
index c0c0f2d522bab7..aa031260b78872 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
@@ -127,6 +127,6 @@ El documento resultante contendrá:
| | |
| --- | --- |
| Número de comando | 1190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
index 4fbbea9677946e..598d42671fc3f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
@@ -61,6 +61,6 @@ Si el comando se ejecuta desde un componente, se aplica por defecto a los métod
| | |
| --- | --- |
| Número de comando | 1189 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
index 3bef8bc94e73b2..bedb1a7ac77d76 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
@@ -35,6 +35,6 @@ Si se ejecuta este comando desde un componente, devuelve por defecto las rutas d
| | |
| --- | --- |
| Número de comando | 1206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
index 09f8bf13b29e76..5d5b225854a142 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Quiere obtener las fechas de modificación de los métodos de un módulo con el
| | |
| --- | --- |
| Número de comando | 1170 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
index 4e31a29f958b2a..b5e306c6222632 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Ejemplos de uso:
| | |
| --- | --- |
| Número de comando | 1166 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
index eab260fe2cc2bb..11fe9deeec44bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Si el comando se ejecuta desde un componente, devuelve por defecto las rutas de
| | |
| --- | --- |
| Número de comando | 1164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
index 61d4e5993ab697..736af2ca27696e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ Lista de todos los objetos de los formularios "input" de la tabla \[Empleados\]
| | |
| --- | --- |
| Número de comando | 1168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
index 94a606dbe71a25..0302a8a09bc4ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Consulte el ejemplo del comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número de comando | 1163 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
index f85ca369dd89e3..64bc479c91db29 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Puede ejecutar este comando desde un componente, pero en este caso, debe pasar e
| | |
| --- | --- |
| Número de comando | 1213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
index c37054b7de9324..5d9129d997ce4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ Resolución de una ruta de objeto de método formulario tabla:
| | |
| --- | --- |
| Número de comando | 1165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
index 9b900f473fb3ad..00732e2c05aa26 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ En *modo*, pase una de las siguientes constantes del tema *Acceso objetos diseñ
| | |
| --- | --- |
| Número de comando | 1191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
index ff0f305cde409e..0ba6d335481c84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Definición de varios pares de atributos/valores:
| | |
| --- | --- |
| Número de comando | 1192 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
index 94692aca1a7b9b..4af94bb976cef7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
@@ -61,6 +61,6 @@ Usted desea modificar un solo atributo:
| | |
| --- | --- |
| Número de comando | 1335 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
index 05fcd4d0aa0799..615f1e97fca25d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
@@ -103,6 +103,6 @@ Este ejemplo exporta e importa la totalidad de los métodos proyecto de una apli
| | |
| --- | --- |
| Número de comando | 1194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
index b62986fd8df96a..94043ed944ca84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
@@ -67,6 +67,6 @@ Añadir una fecha de modificación a un comentario de trigger existente:
| | |
| --- | --- |
| Número de comando | 1193 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
index d9c9ade7dc12bc..edf19a8881d307 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ El siguiente código espera hasta 5 segundos para que un registro bloqueado se d
| | |
| --- | --- |
| Número de comando | 459 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
index fd8f9c60ddd7d8..71eb9663ec286c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
@@ -83,7 +83,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 4 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
index 1d42913d7894a2..74b5e9111e5966 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| Número de comando | 454 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
index b0fc9097495809..39925b42428741 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Usted desea restablecer todas las sesiones actuales para todas las aplicaciones
| | |
| --- | --- |
| Número de comando | 1596 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
index b594365d1ca96e..896f0594c991a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra el funcionamiento de Mod con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 98 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
index 408399306fd464..9a24d6edb04d84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ El siguiente ejemplo muestra una utilización típica de Modified record:
| | |
| --- | --- |
| Número de comando | 314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
index 4b6d3b72383869..03fa0c88d35e08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
@@ -73,6 +73,6 @@ Selecciona un registro para la tabla *\[unaTabla\]*, luego llama múltiples subr
| | |
| --- | --- |
| Número de comando | 32 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
index 0c5912c8378d9b..51bfa6a5cb59d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 57 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
index 18f6154e0ac693..666bc896e8aea3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
index f8e24df80b6252..7bbd85faabf97c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Ver el ejemplo de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número de comando | 1713 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
index b96f24f1b1e30c..3d7d50b077dd8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 24 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
index 903c803d60fcfe..8b9d111c55f7e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ Ver el ejemplo del comando [Pop up menu](pop-up-menu.md "Pop up menu").
| | |
| --- | --- |
| Número de comando | 468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
index 60b54f4ad00c94..278cb37996f4e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ El siguiente ejemplo mueve el documento DocName:
| | |
| --- | --- |
| Número de comando | 540 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
index 079838ff407365..2851d5d26c1362 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
@@ -114,6 +114,6 @@ Si quiere que el array de nombres se utilice como tercer criterio de ordenación
| | |
| --- | --- |
| Número de comando | 718 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
index cd41f1ba45eeb6..9f1421c3cb136e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Desea guardar una llave de cifrado en un archivo .4DKeyChain:
| | |
| --- | --- |
| Número de comando | 1611 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
index 70320578af2990..7268aa2baf8390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número de comando | 375 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
index b93dcd82ba19f5..4a39d3109a753d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ Con este comando, puede fácilmente manejar objetos en bucles:
| | |
| --- | --- |
| Número de comando | 1471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
index 68482e638020d4..18af242b1f1643 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
@@ -114,6 +114,6 @@ En el editor de barras de menús, puede reemplazar ADD CUSTOMERS por el método
| | |
| --- | --- |
| Número de comando | 317 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
index 9eb41d3be2569e..c4d16eb3520028 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Usted desea crear y modificar un objeto compartido. La estructura debe llamarse
| | |
| --- | --- |
| Número de comando | 1526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
index a85308bfede792..af734ad1bd8eee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Ver el ejemplo del comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número de comando | 51 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
index 6c6ae956628b76..75904c232d9b7b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
@@ -29,6 +29,6 @@ El comando Next window devuelve el número de referencia de la ventana ubicada
| | |
| --- | --- |
| Número de comando | 448 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
index 8f8fb23961e525..44ac2fd7854f8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ En una base que contiene un formulario de proyecto llamado “ElFormulario” y
| | |
| --- | --- |
| Número de comando | 993 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
index 27937427bb1f3b..7769d080b87116 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
@@ -38,6 +38,6 @@ Este ejemplo asigna primero Verdadero a una variable, luego cambia el valor de l
| | |
| --- | --- |
| Número de comando | 34 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
index 464a60656d4027..3a25813d2054b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ El parámetro actual puede estar definido:
| | |
| --- | --- |
| Número de comando | 1052 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
index fbb74ba6ad951a..e36902601a7096 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
@@ -138,6 +138,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 1517 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
index 0b6773282ff07a..af694a4e19e313 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
@@ -93,6 +93,6 @@ Este ejemplo compara los resultados obtenidos dependiendo del separador “actua
| | |
| --- | --- |
| Número de comando | 11 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
index d69935ff8cd687..341f2d0ba080de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Luego, en un método, puedes escribir:
| | |
| --- | --- |
| Número de comando | 1730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
index f6c13a77c8614f..ff3aceb0f38707 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ Queremos copiar *$sharedObj e*n *$sharedColl* pero dado que pertenecen a diferen
| | |
| --- | --- |
| Número de comando | 1225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
index f826aca9b53774..d1b941e7d7b5d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ El uso de un objeto como un mapa hash (sistema llave/valor) ofrece un acceso rá
| | |
| --- | --- |
| Número de comando | 1720 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
index aad5ce604777b1..b0f7ebc13991e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ Queremos cambiar un valor en el primer elemento del array:
| | |
| --- | --- |
| Número de comando | 1229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
index e484baf507f34f..86a7792abb4ad3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ Utilizando un elemento de array de objetos:
| | |
| --- | --- |
| Número de comando | 1232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
index 64e63505493f1f..f2c370b9361b27 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
@@ -58,6 +58,6 @@ Queremos obtener el tipo de valores estándar:
| | |
| --- | --- |
| Número de comando | 1230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
index 9bac71531b9dfa..ae0ffb1300e3e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
@@ -226,6 +226,6 @@ Desea conocer el tamaño de una imagen almacenada en un atributo objeto:
| | |
| --- | --- |
| Número de comando | 1224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
index 29c254f42b6e09..86d56437e1c81b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
@@ -58,6 +58,6 @@ Luego, en un método, puede escribir:
| | |
| --- | --- |
| Número de comando | 1731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
index c676118c378d0d..1bfe3cc41ecbc9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Esta prueba es equivalente a:
| | |
| --- | --- |
| Número de comando | 1231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
index 7f25a8acac3626..e4a1a5db31af11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Estos son los diferentes resultados de este comando como también del comando [O
| | |
| --- | --- |
| Número de comando | 1297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
index 330eeb68f91e88..6e9e220971249c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Este comando devuelve **True** si se pasa una selección de entidades compartibl
| | |
| --- | --- |
| Número de comando | 1759 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
index 6c3027010e9094..f687f8080dcb80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ Quiere una colección con todos los nombres de propiedad de primer nivel de un o
| | |
| --- | --- |
| Número de comando | 1719 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
index df5596a058da97..f363e429a08747 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Usted quiere eliminar la propiedad "edad" de un objeto:
| | |
| --- | --- |
| Número de comando | 1226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
index db6a1c64af3a5f..64220560af498d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
@@ -136,6 +136,6 @@ Utilizando un array imagen:
| | |
| --- | --- |
| Número de comando | 1227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
index bec36dcfe235fd..28e84f431828e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Queremos poner el valor nulo en la propiedad "edad" para Lea:
| | |
| --- | --- |
| Número de comando | 1233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
index 33858f14f77466..2dcdca49aa486e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ Usted desea almacenar una imagen en un campo objeto. Puede escribir:
| | |
| --- | --- |
| Número de comando | 1220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
index 7f66126a238d16..a7897f281f4a73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Desea una colección con todos los valores de propiedad de un objeto:
| | |
| --- | --- |
| Número de comando | 1718 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
index 3107dd8a82b4ee..6e363447ec734f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
@@ -106,7 +106,7 @@ Creación de un nuevo botón radio "bRadio6" basado en el botón radio existente
| | |
| --- | --- |
| Número de comando | 1111 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
index 735f0f00377eac..b48ab0aad75473 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Usted desea asociar la acción "Cancelar" con todos los objetos en el formulario
| | |
| --- | --- |
| Número de comando | 1457 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
index 66c1a8bf90d501..93935bedc5005c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ El comando devuelve **True** cuando la corrección ortográfica automática est
| | |
| --- | --- |
| Número de comando | 1174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
index bc505f08cf6ec1..a3e435f2013709 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
@@ -57,6 +57,6 @@ Consulte el ejemplo en el comando [SET PRINT MARKER](set-print-marker.md "SET PR
| | |
| --- | --- |
| Número de comando | 717 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
index 72d5324052a3a9..1ec79d8a70de55 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ El comando devuelve un valor que corresponde al estilo de la línea fronteriza.
| | |
| --- | --- |
| Número de comando | 1263 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
index 5c805945910175..bcb34552efcb5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ El comando devuelve **True** si el menú contextual está activo para el objeto
| | |
| --- | --- |
| Número de comando | 1252 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
index 561f519193c12b..f7bb1bac9f78e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ El método devuelve las coordenadas teóricas. Si el listbox es redimensionado,
| | |
| --- | --- |
| Número de comando | 663 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
index 6f11ce744d5aa9..eeb98fa6305d74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ El siguiente código puede añadirse a un método de un botón:
| | |
| --- | --- |
| Número de comando | 1324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
index 4b37f70dd6af72..c7b7e3277589a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
@@ -47,6 +47,6 @@ Ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1265 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
index 00642f2232efba..1a79536c9acee6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Cada parámetro devuelve True o False dependiendo de si la opción correspondien
| | |
| --- | --- |
| Número de comando | 1184 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
index 79e7b643f20648..76f8db52b14762 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1079 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
index b7a8d2937305cd..92626c3fff1996 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1067 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
index 37e4e626cac5d3..c6f42886d8bde1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Usted quiere activar dos eventos y obtener la lista de eventos para un objeto:
| | |
| --- | --- |
| Número de comando | 1238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
index a3490734b5d8af..b1131e608dc14a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1073 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
index 0289042899fcc9..b4e2c4109a4622 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ El comando devuelve **True** si el rectángulo de foco está oculto y **False**
| | |
| --- | --- |
| Número de comando | 1178 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
index dce839260fb14f..a1ce788542c59f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1070 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
index ee2e86e943193b..86b1bd3bd93f43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Puede comparar el valor devuelto por el comando con el valor de uno o más de la
| | |
| --- | --- |
| Número de comando | 1071 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
index 7fb8d03c0e8812..593fb334eedd75 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1069 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
index ca2a2c98c16c6f..f165470400bb71 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número de comando | 894 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
index cc9edb11aad7cc..edd4fd6adc2696 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ El título de un botón imagen se guarda en forma de mensaje de ayuda. Este tít
| | |
| --- | --- |
| Número de comando | 1182 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
index a95ba6b7965171..555756f8b8bf95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
@@ -64,6 +64,6 @@ Los objetos de formulario a los cuales se puede aplicar alineación son los sigu
| | |
| --- | --- |
| Número de comando | 707 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
index 1992230dcf5740..a20d8a4acf60a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Puede comparar el valor devuelto por el comando con las siguientes constantes, q
| | |
| --- | --- |
| Número de comando | 1247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
index be2491187f4da9..71d0c587ef710b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ El comando devuelve una cadena indicando el código del lenguaje utilizado, basa
| | |
| --- | --- |
| Número de comando | 1180 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
index b8102bc66a56ec..87ebd4c4fdb5ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
@@ -43,6 +43,6 @@ Si ninguna lista del tipo definido está asociada al *objeto*, el comando devuel
| | |
| --- | --- |
| Número de comando | 1072 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
index d56349b2afaa0c..083b895e5388d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
@@ -43,6 +43,6 @@ Si no hay una lista jerárquica asociada al objeto para el *tipoLista* definido,
| | |
| --- | --- |
| Número de comando | 1267 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
index 89cc468b189a62..afb61acb3f5169 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
@@ -36,6 +36,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1245 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
index 0de34fb710c275..d0ce9d6170912a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1243 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
index f1f87128005f8c..b1a2a6f4445a2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
@@ -43,6 +43,6 @@ El valor devuelto corresponde a una de las siguientes constantes del tema "*Prop
| | |
| --- | --- |
| Número de comando | 1254 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
index adda6f81d1182e..3bb5443d459e9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Después de la ejecución de este método objeto, la variable *$btnName* contien
| | |
| --- | --- |
| Número de comando | 1087 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
index d476f7a1f9cf39..6115ac509fac15 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Si quiere recibir el texto del marcador de campo:
| | |
| --- | --- |
| Número de comando | 1296 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
index 00212fb64d7b20..67cba3d9ad780d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
@@ -62,6 +62,6 @@ Dado un formulario "SF" utilizado dos veces como subformulario en el mismo formu
| | |
| --- | --- |
| Número de comando | 1124 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
index 955daeb8b39790..1e540c0cd9839f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
@@ -41,6 +41,6 @@ Si el *objeto* es un subformulario y si la impresión en tamaño variable está
| | |
| --- | --- |
| Número de comando | 1241 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
index e6ca25f57241f0..f225e92b9acf41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ El parámetro *vertical* devuelve un valor indicando la opción de redimensionam
| | |
| --- | --- |
| Número de comando | 1176 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
index e39e9500a5ef9d..e0d65faa4adb97 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Para obtener más información acerca del formato de los parámetros *colorPrime
| | |
| --- | --- |
| Número de comando | 1074 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
index 022c779feb81f7..63a84cbf661f42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Si *objeto* designa una imagen (variable o campo), *posicionLinea* devuelve el d
| | |
| --- | --- |
| Número de comando | 1114 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
index 1750d06e671243..d65d148fca871f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
@@ -50,6 +50,6 @@ Para obtener más información, consulte la descripción del comando [OBJECT SET
| | |
| --- | --- |
| Número de comando | 1076 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
index 7dbef20af7ea40..8253b8c7dd6705 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
@@ -47,6 +47,6 @@ Si ninguna tecla de modificación se ha definido para el atajo, modificadores de
| | |
| --- | --- |
| Número de comando | 1186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
index 074760d360758b..8a19266e116545 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
@@ -52,6 +52,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1258 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
index 19b19c961a06e6..b6e0073375310d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
@@ -37,6 +37,6 @@ El evento On Resize se genera en el método formulario del subformulario si el o
| | |
| --- | --- |
| Número de comando | 1148 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
index e94ac70927d9d2..79cd74d6494d43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número de comando | 1785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
index 826956644b369b..f4f558c257a924 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ Si no hay formulario listado, se devuelve una cadena vacía en el parámetro *su
| | |
| --- | --- |
| Número de comando | 1139 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
index 1d672fba5a4b0f..4f310b9989e1fd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Cuando se ejecuta el formulario, si se llama a la siguiente declaración:
| | |
| --- | --- |
| Número de comando | 1283 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
index 14722c591e5f9d..bd0fd162025aad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ La propiedad "Tres estados" se puede definir ya sea usando la lista de propiedad
| | |
| --- | --- |
| Número de comando | 1250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
index 77fcda9bda7446..ebf16283e25c47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
@@ -38,6 +38,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1068 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
index 9a3a6472c8f49c..75d5fb8c4d3597 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1300 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
index 7a210925da6ad8..32a3ac505c6915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Ver el ejemplo para el comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número de comando | 1743 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
index c6da3457ed4866..eef16ea00c79c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
index 24ae0fe7e26e9e..d76712a2ed8f27 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1075 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
index 7cdf5a0ae8d97f..1fcd6d8d8e8d44 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Un formulario contiene un campo representado por dos objetos diferentes, uno de
| | |
| --- | --- |
| Número de comando | 1261 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
index 6dfe46fce21471..404d4d54ff93d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
@@ -72,6 +72,6 @@ La siguiente instrucción mueve el botón “boton\_1” a las siguientes coorde
| | |
| --- | --- |
| Número de comando | 664 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
index 24ab89c17d8bc8..f245960c62cf5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
@@ -46,6 +46,6 @@ Usted desea asociar la acción estándar **Validate** con un botón:
| | |
| --- | --- |
| Número de comando | 1259 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
index c43ae4b4cc8522..7a2809973e8409 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Pase **True** en *correccionAuto* para activar esta función para objeto y **Fal
| | |
| --- | --- |
| Número de comando | 1173 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
index f8c58bc599977b..78bd97c2170bc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ En el parámetro *estiloBorde*, pase el valor del estilo de la línea fronteriza
| | |
| --- | --- |
| Número de comando | 1262 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
index 25042e8773d618..799ba1691864e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *menuContext* para activar el menú contextual, y
| | |
| --- | --- |
| Número de comando | 1251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
index 62faf19ebdf850..e9c42f2ec23ae8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ La siguiente declaración ubica el objeto "button\_1" en las coordenadas (10,20)
| | |
| --- | --- |
| Número de comando | 1248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
index 3ba3020714dc6b..b80c77376b6d72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
@@ -71,6 +71,6 @@ Tenga en cuenta que para las áreas de texto (así como las entradas), a diferen
| | |
| --- | --- |
| Número de comando | 1323 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
index 01e0440c2142e3..9de121ecc24d9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Cambio de la fuente de datos para un área de entrada:
| | |
| --- | --- |
| Número de comando | 1264 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
index 0796a954067b50..33cf8bb5c14e9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Definición de un área de texto en arrastrar y soltar auto:
| | |
| --- | --- |
| Número de comando | 1183 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
index ef34d6cd7f4b63..ca02b7f08e0f05 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1123 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
index 4a3a2b085bd0fc..72466f7792b22f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Este es el método de objeto de una casilla de selección ubicada en el encabeza
| | |
| --- | --- |
| Número de comando | 238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
index 54c5fe4ba36c95..c8f8243ba0a35e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
@@ -171,6 +171,6 @@ Desactivación de un solo evento del formulario sin modificar los otros:
| | |
| --- | --- |
| Número de comando | 1239 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
index 8fcedddee2a1a8..03509b9f8df772 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ El siguiente ejemplo permite únicamente la entrada de las letras “a,” “b,
| | |
| --- | --- |
| Número de comando | 235 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
index 1ad9f2a9a4e683..a8ef29d200bc38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *invisible* para ocultar el rectángulo de foco y
| | |
| --- | --- |
| Número de comando | 1177 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
index 6db156029ec8ac..93962206472b39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ El siguiente ejemplo define el tamaño de fuente para todos los objetos de formu
| | |
| --- | --- |
| Número de comando | 165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
index 764f9d30224208..247f2f945b14ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
@@ -59,6 +59,6 @@ Este ejemplo define el estilo de fuente Plain para todos los objetos de formular
| | |
| --- | --- |
| Número de comando | 166 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
index 086d202797cdcd..77e4786f088a33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ El siguiente ejemplo utiliza la opción especial *%password*, diseñada para la
| | |
| --- | --- |
| Número de comando | 164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
index b9bc399019be1f..9913d116473a14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
@@ -364,6 +364,6 @@ Pase un termómetro a modo "Barber shop"
| | |
| --- | --- |
| Número de comando | 236 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
index 613cb06a6e955e..4e6e5d083a2444 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
@@ -141,6 +141,6 @@ El resultado es...
| | |
| --- | --- |
| Número de comando | 1181 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
index 3b3cb9c746bc35..cd4f433dbcbe31 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
@@ -62,6 +62,6 @@ Los objetos de formulario a los cuales puede aplicar este comando son los siguie
| | |
| --- | --- |
| Número de comando | 706 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
index 69f2186164f207..088d07690e042f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ En el parámetro *indicador*, pase el tipo de indicador a mostrar. Puede utiliza
| | |
| --- | --- |
| Número de comando | 1246 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
index 2eeeaf80ca5cbd..1e64a41834f0bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ En *codigoLeng*, pase una cadena indicando el código del lenguaje a utilizar, b
| | |
| --- | --- |
| Número de comando | 1179 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
index 8c42e8452c3501..570bdd78f2e675 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
@@ -98,6 +98,6 @@ Usted quiere eliminar la lista de asociaciones:
| | |
| --- | --- |
| Número de comando | 237 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
index 7c549f19b3d820..96d3a50c3b1247 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ Con el fin de actualizar la lista asociada al pop-up gestionado por array, es ne
| | |
| --- | --- |
| Número de comando | 1266 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
index 25078981972f9c..32ac545cb2849c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ En *valorMax*, pase el nuevo valor máximo que desea asignar al objeto para el p
| | |
| --- | --- |
| Número de comando | 1244 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
index 17e8f7b48eaf7a..ca0e082eb0e57e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ En *valorMinimo*, pase el nuevo valor mínimo a asignar al objeto para el proces
| | |
| --- | --- |
| Número de comando | 1242 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
index ee9a34e500a17a..ec4aefa530c82e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ Usted quiere prohibir varias líneas en un área de entrada:
| | |
| --- | --- |
| Número de comando | 1253 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
index ad2601b36be307..4c010c88057cc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Usted quiere mostrar el texto "Buscar" un combo box:
| | |
| --- | --- |
| Número de comando | 1295 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
index 2e1605b2759708..ef674fc4cb4f8d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
@@ -47,6 +47,6 @@ El parámetro opcional *subformFijo* le permite configurar una opción adicional
| | |
| --- | --- |
| Número de comando | 1240 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
index 3450d67fe42ea8..a9acda328738f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
@@ -48,6 +48,6 @@ En el parámetro *vertical*, pase un valor que indique la opción de redimension
| | |
| --- | --- |
| Número de comando | 1175 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
index f7fafe23f46046..ee7b657196d875 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
@@ -109,6 +109,6 @@ Cambia a fondo transparente con un color de fuente claro:
| | |
| --- | --- |
| Número de comando | 628 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
index 54ecbea8de6c45..8d2f7d2400c963 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
@@ -95,6 +95,6 @@ Asegúrese de no omitir el segundo parámetro *\** en este caso, de lo contrario
| | |
| --- | --- |
| Número de comando | 906 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
index 6168f42ff9087f..392b4facfb70a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores indicando si las b
| | |
| --- | --- |
| Número de comando | 843 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
index c7a8f7772c3fb6..3a1e1e8e196ee8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
@@ -94,6 +94,6 @@ Usted quiere asociar un atajo de teclado diferente en función del lenguaje actu
| | |
| --- | --- |
| Número de comando | 1185 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
index 0ba3ae9c89971d..618fc93abe26e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1257 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
index e0576e83511f50..aab25f5bafbf72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número de comando | 1784 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
index 656c39b2c2614e..c98d1f4799dc6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
@@ -49,6 +49,6 @@ Cuando modifica un subformulario página, el comando puede ejecutarse en cualqui
| | |
| --- | --- |
| Número de comando | 1138 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
index 8977dfe1ce4654..083f7c526ecb6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
@@ -55,6 +55,6 @@ Desea aplicar una orientación de 270° a una variable en su formulario:
| | |
| --- | --- |
| Número de comando | 1284 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
index 8869bb9834b631..d399707a5271ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ En el parámetro *tresEst*, pase **True** para activar el modo "tres estados", o
| | |
| --- | --- |
| Número de comando | 1249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
index 279acbe7ea7c86..f1b6ae18cfffbd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
@@ -73,6 +73,6 @@ Usted quiere insertar los títulos en dos líneas:
| | |
| --- | --- |
| Número de comando | 194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
index 931507a8928dba..bec887413c777c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Desea obtener el valor de la fuente de datos para un objeto de formulario, obten
| | |
| --- | --- |
| Número de comando | 1742 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
index fb2556a3f91ae5..9c1e1206a3f4d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
index c2e3b694c77c80..0dc1a5e9664a32 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ o:
| | |
| --- | --- |
| Número de comando | 603 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
index e9f009baf68395..336cdc93c66fc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Queremos duplicar y cambiar el nombre de un archivo en su propia carpeta
| | |
| --- | --- |
| Número de comando | 1548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
index dc07058e4e8d42..b330db3025a8f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
@@ -29,7 +29,7 @@ OLD RELATED MANY cambia la selección de la tabla relacionada y selecciona el pr
| | |
| --- | --- |
| Número de comando | 263 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
index 434173cf9bad44..371908c673db61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 44 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
index f8aa7106c71caf..437a20f793bcc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
@@ -45,6 +45,6 @@ Para restaurar el valor original de un campo, asígnele el valor devuelto por Ol
| | |
| --- | --- |
| Número de comando | 35 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
index 8c4b874c13dddb..fd62c7e26d9f34 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
@@ -190,6 +190,6 @@ El siguiente método de gestión de errores ignora las interrupciones del usuari
| | |
| --- | --- |
| Número de comando | 155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
index 404f0293d26024..aafe82289f29cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
@@ -120,7 +120,7 @@ Si imprime un informe utilizando [PRINT SELECTION](print-selection.md "PRINT SEL
| | |
| --- | --- |
| Número de comando | 190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
index 58e53d3abd0017..02218793d17ed3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ The [Force login authentication](../REST/authUsers.md) is now highly recommended
| | |
| --- | --- |
| Command number | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
index dea6ca45ed567c..7f994f19fa9767 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ Este comando fue útil para “reponer” un registro que había sido apilado y
| | |
| --- | --- |
| Número de comando | 189 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
index 86f28016ec96e7..0559d7a656068d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 1047 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
index 7de3420bb63888..560b588a0bc572 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Si el color se ha cambiado, el evento formulario On After Edit se genera para el
| | |
| --- | --- |
| Número de comando | 1304 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
index 07adde52cd74cb..1e5c816e2d67b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ En el contexto del despliegue de una aplicación fusionada, usted desea abrir o
| | |
| --- | --- |
| Número de comando | 312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
index 32cfeb4a35c082..05c82a7792de33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
@@ -76,6 +76,6 @@ Desea seleccionar un servidor al inicio desde una aplicación mono usuario. Pued
| | |
| --- | --- |
| Número de comando | 1321 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
index 9c8a5a10fa8f18..a161e6d1992ec7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
@@ -93,7 +93,7 @@ Si pasa el valor 3 en *modo*, la función devuelve ?00:00:00? (sin referencia de
| | |
| --- | --- |
| Número de comando | 264 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
index 2606113929ea1d..14eb5c7c3504a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Este es el código del botón:
| | |
| --- | --- |
| Número de comando | 1303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
index 36e7e53f1533f6..b9e038db3bdd9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
@@ -143,6 +143,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 675 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
index e7e1a6156a0326..7cb3bd2dc4a348 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable sistema OK toma el valor 1 si el trabajo de impresión se ha abierto
| | |
| --- | --- |
| Número de comando | 995 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
index 49aaed55bb2a6a..ae83f79c1de105 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Si el archivo de recursos no se pudo abrir por un problema del recurso o de E/S,
| | |
| --- | --- |
| Número de comando | 497 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
index d5ec4f733cda62..01a380024fae64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
index cacc35dea432de..e61d2797dd0b9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependiendo de los privilegios de acceso del usuario actual, ciertas funciones d
| | |
| --- | --- |
| Número de comando | 1018 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
index 514049c798600f..ba811867cc8360 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
@@ -145,7 +145,7 @@ Si la caja de diálogo Preferencias/Propiedades se valida, la variable sistema O
| | |
| --- | --- |
| Número de comando | 903 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
index 51b9c388af03b0..cc27c0138a8ccf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
@@ -87,6 +87,6 @@ Puede abrir un mismo archivo texto con diferentes aplicaciones utilizando el par
| | |
| --- | --- |
| Número de comando | 673 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
index dec072d5bf6ea7..394eee1ec4df43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
@@ -166,4 +166,4 @@ Este ejemplo ilustra el mecanismo de “retraso” de mostrar ventanas bajo macO
| | |
| --- | --- |
| Número de comando | 153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
index 91018ab6df3eca..9ba6928018b19d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Los registros están en el siguiente orden:
| | |
| --- | --- |
| Número de comando | 1407 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
index 6bccf423b16004..bd4ed3a2988810 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
@@ -52,7 +52,7 @@ Este ejemplo ordena los registros de la tabla \[Personas\] en orden descendente,
| | |
| --- | --- |
| Número de comando | 300 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
index 20ae99637d1eea..9d5c60c8a29110 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
@@ -206,7 +206,7 @@ Cada botón llama al método de proyecto MULTINIVEL con un puntero al campo de l
| | |
| --- | --- |
| Número de comando | 49 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
index 8acc074f404f9e..6b4244281f3367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Outside call**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
index 8900e69d680ce3..c53d721efb1071 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 6 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
index 73d6fa5e6d1f24..8a9259f85c6b26 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
@@ -111,6 +111,6 @@ Utilizando las tablas del **Ejemplo 1**:
| | |
| --- | --- |
| Número de comando | 1576 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
index 47b59d4fccaf25..4d88a075f8c9af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
@@ -97,7 +97,7 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 400 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
index fdb0fe50b58ea3..3249696b11956b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
@@ -180,6 +180,6 @@ Desea saber la cantidad de subcarpetas en una ruta:
| | |
| --- | --- |
| Número de comando | 1547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
index 10452562df2af2..3465b22af93844 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ Ejemplo de método de importación masivo de datos:
| | |
| --- | --- |
| Número de comando | 1293 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
index d22784eaef38a8..ee45536a4dad8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Cuando se suspende la ejecución de un proceso, las ventanas que pertenecen a es
| | |
| --- | --- |
| Número de comando | 319 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
index 10a21b6b44889d..599b9a59665684 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
@@ -285,6 +285,6 @@ Para obtener más información acerca de la función trim, por favor, consulte l
| | |
| --- | --- |
| Número de comando | 1058 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
index f7b450d20275f5..a9a810cda6db5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
@@ -45,6 +45,6 @@ Dado que los intercambios entre 4D y el intérprete PHP se efectúan a través d
| | |
| --- | --- |
| Número de comando | 1061 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
index 2093a64b865f46..34892ab5b1d6cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
@@ -43,6 +43,6 @@ Pase en el parámetro *opcion* una constante del tema "*PHP*" para designar la o
| | |
| --- | --- |
| Número de comando | 1060 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
index de55e1aa80d4e3..3540d2f83acaa0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
@@ -45,6 +45,6 @@ Por defecto, **PHP SET OPTION** define la opción para todas las llamadas poster
| | |
| --- | --- |
| Número de comando | 1059 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
index 9624ac98b18bd2..c11619490d422b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
@@ -38,6 +38,6 @@ Por defecto, si no pasa el parámetro *\**, el comando devuelve únicamente los
| | |
| --- | --- |
| Número de comando | 992 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
index 586cc3a698c353..895531b000bbea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
@@ -98,6 +98,6 @@ El siguiente ejemplo exporta la librería de imágenes a un documento almacenado
| | |
| --- | --- |
| Número de comando | 564 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
index 54e8765755b661..68caca9ad7937a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Los parámetros *hDesp*, *vDesp*, y *modo* devuelven las posiciones horizontal y
| | |
| --- | --- |
| Número de comando | 457 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
index b2757efdcd8277..7a0333c1e333c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 356 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
index 4cffdc1d32d7b1..8880dddd817de8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
@@ -57,7 +57,7 @@ Desea convertir una imagen de un formato propietario a formato GIF y mostrarlo e
| | |
| --- | --- |
| Número de comando | 692 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
index da3bc37bc153d7..ff021bbcc7ccfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
@@ -61,6 +61,6 @@ El siguiente código de ejemplo reproduce un sonido del sistema en macOS:
| | |
| --- | --- |
| Número de comando | 290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
index 1c0425da03d691..b2bef19d4448c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LIST tiene en cuenta todos los plug-ins, incluyendo aquellos que están i
| | |
| --- | --- |
| Número de comando | 847 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
index e5298679bfc5f2..f11e5b9e3d2de6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
@@ -39,7 +39,7 @@ El siguiente ejemplo recupera el registro de un cliente en la pila:
| | |
| --- | --- |
| Número de comando | 177 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
index 069b2be565795b..4759205af4ae2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
@@ -108,6 +108,6 @@ El siguiente es el menú pop-up tal como aparece en Windows (izquierda) y Macint
| | |
| --- | --- |
| Número de comando | 542 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
index c7c34be77c45e3..1c2599acc7abfa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
@@ -124,6 +124,6 @@ En el siguiente ejemplo, usted quiere encontrar todas las instancias de una cade
| | |
| --- | --- |
| Número de comando | 15 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
index 51221892300875..1c5ca3631797ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Si especifica el parámetro proceso *proceso*, el clic se envía al proceso cuyo
| | |
| --- | --- |
| Número de comando | 466 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
index 589e0b289ff1f0..67ae9a9047337b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
@@ -54,6 +54,6 @@ Si pasa el parámetro *proceso*, el evento se envía al proceso cuyo número se
| | |
| --- | --- |
| Número de comando | 467 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
index 8b04dadef2d898..8f7d1caaec5003 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número de comando | 465 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
index 99cfe627a92d2c..d9830d59e6fe2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ Ver el ejemplo de [On Exit Database Method](metodo-base-on-exit.md "On Exit Data
| | |
| --- | --- |
| Número de comando | 329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
index 94f682e192ad42..619ab8694548ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Si PREVIOUS RECORD mueve el puntero del registro actual antes de la selección a
| | |
| --- | --- |
| Número de comando | 110 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
index 9e28ae5c31666b..2789c5bf2fc560 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
@@ -112,7 +112,7 @@ El siguiente ejemplo le permite al usuario efectuar una búsqueda en la tabla \[
| | |
| --- | --- |
| Número de comando | 39 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
index de0a60612878a6..621196750238e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
@@ -101,6 +101,6 @@ Ejemplo de impresión de un list box completo:
| | |
| --- | --- |
| Número de comando | 1095 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
index 282c1f9c27d643..2659197dcf597f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ Toda la información devuelta por estos comandos es suministrada por el sistema
| | |
| --- | --- |
| Número de comando | 785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
index 46aa33d87c33c5..d4d2e9c23f9a7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
@@ -67,6 +67,6 @@ El siguiente ejemplo imprime el mismo registro actual en dos formularios diferen
| | |
| --- | --- |
| Número de comando | 71 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
index ef2b7e723739b6..d195db898ac56a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
@@ -67,7 +67,7 @@ El siguiente ejemplo selecciona todos los registros en la tabla \[Personas\]. El
| | |
| --- | --- |
| Número de comando | 60 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
index 797814d9a69dad..9a9dbf79328736 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
@@ -59,6 +59,6 @@ Usted desea almacenar la configuración de impresión actual en el disco:
| | |
| --- | --- |
| Número de comando | 1433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
index f06bd2d5aec7db..17c364476d90be 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Si el usuario hace clic en OK en ambas cajas de diálogo, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 106 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
index a0d0eaeadc6bf5..63816124ce40fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 789 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
index 699713b60bf60f..138b8524234fbb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ El siguiente ejemplo cambia la posición de los números de página en un inform
| | |
| --- | --- |
| Número de comando | 275 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
index 1cf0c6bdc279e4..813dfc4f62246a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número de comando | 816 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
index 7d9c51bca602ef..19269c5d040814 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este estado ocurrirá muy raramente. Los procesos suelen detenerse antes de que
| | |
| --- | --- |
| Número de comando | 672 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
index 80fe394fd82563..580f057b719bfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ El siguiente ejemplo coloca el nombre y número de referencia para cada proceso
| | |
| --- | --- |
| Número de comando | 330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
index 81e381022f78ce..bcb9c56fc50da4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ El siguiente ejemplo apila el registro de un cliente:
| | |
| --- | --- |
| Número de comando | 176 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
index f6a247ec470dcc..7258af3b4506b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ La siguiente instrucción recupera el informe rápido almacenado en Campo4 y lo
| | |
| --- | --- |
| Número de comando | 771 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
index 48f6154be66dbd..130b216b9f73b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ El siguiente código permite añadir una columna adicional a la derecha de la ú
| | |
| --- | --- |
| Número de comando | 764 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
index c247898cef0f9d..ee1a378b6fa828 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ El siguiente ejemplo se asegura de que el informe sea listado y borra la tercera
| | |
| --- | --- |
| Número de comando | 749 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
index f036786d0cfb12..7d7ef0174ac889 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 754 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
index 85118a0076cead..211cde3686b900 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ Si pasa un número de *comando* incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 791 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
index d6eae4422d8fd3..a2145d7c312acf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número de comando | 776 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
index 41ae5b7ea4843b..8ec2c6f62150dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 795 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
index 4dfe91de063918..851d01a075dfcd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
@@ -75,7 +75,7 @@ Si el parámetro *area* es incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 798 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
index 92c8ac525b7f44..6f7bff9d218454 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
@@ -42,7 +42,7 @@ Si el parámetro *comando* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 792 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
index 348f38e20c6ed3..c5ac94c90b9165 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 756 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
index 56b1b193845993..9897eae0bbeb5d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
@@ -51,6 +51,6 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 773 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
index 743da2a5a97558..504d3e9fb5addf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 747 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
index b003a913e6054c..4e55124b25d255 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ El siguiente código recupera el contenido y la altura del título del encabezad
| | |
| --- | --- |
| Número de comando | 775 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
index 31dbc1b37e2905..02eb6b7b83901a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 751 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
index 3adfe2c827a3fe..12746b089be8e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
@@ -121,7 +121,7 @@ Puede escribir:
| | |
| --- | --- |
| Número de comando | 766 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
index f31f2aac4b58a9..653afdcd62f341 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
@@ -44,7 +44,7 @@ Si el parámetro *linea* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 769 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
index c11e2eb0688b35..ecde45b3591aef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
@@ -40,7 +40,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 755 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
index ae64e9927eb56e..9bafb511ac460a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 758 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
index ab32428efac66b..dae8f608448f9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 793 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
index 4f99c3ba33eedb..9fb33614e90eea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ Si pasa un número de area inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 753 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
index b591711f3c9052..c4e1fafac8cfb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
@@ -71,7 +71,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9854
| | |
| --- | --- |
| Número de comando | 760 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
index 6c61d3ba0a5050..214ab3a191300e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
@@ -77,7 +77,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 768 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
index d66f4fe42a4b93..a05d3a4c4ab645 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ Si el parámetro *subtotal* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
index f44e1be7bcf479..e2459f23441aa7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ La siguiente instrucción inserta (o crea) una primera columna en el área MiAre
| | |
| --- | --- |
| Número de comando | 748 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
index c19c9e5982dc5a..16f51ea74e66da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ El resultado es:
| | |
| --- | --- |
| Número de comando | 1325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
index 91900c6479342b..915cdceec5aec1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1320 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
index baf6bfa22117fd..e4532113a8828a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 735 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
index 8b1c0b2c8cc360..3b73490574082b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
@@ -48,7 +48,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 790 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
index 7b41826d910037..3e1e3b6d5c04d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ La siguiente instrucción asigna el informe rápido almacenado en el área MiAre
| | |
| --- | --- |
| Número de comando | 770 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
index 292230917bef42..647150acb87334 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
@@ -136,7 +136,7 @@ El método myCallbackMeth convierte el informe cuando se genera:
| | |
| --- | --- |
| Número de comando | 197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
index 7a9a74cb275a9b..571050125db070 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 746 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
index 4a877a4a796768..7d030c4bf35251 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
@@ -39,7 +39,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 796 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
index ed7e7a612f111b..4b0fd686389b56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
@@ -78,7 +78,7 @@ Si el parámetro *ancho* es incorrecto, se genera el error -9855.
| | |
| --- | --- |
| Número de comando | 797 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
index 375724a71abc7e..cca1a4362d0233 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
@@ -55,7 +55,7 @@ El siguiente código define el archivo texto Midoc.txt como tipo de destino del
| | |
| --- | --- |
| Número de comando | 745 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
index a57b3a1a79b3ff..dcd97b4ff5565e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
@@ -51,7 +51,7 @@ Si pasa un valor incorrecto en *propiedad* o *valor*, se genera el error corresp
| | |
| --- | --- |
| Número de comando | 772 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
index 095afa8d53f0e6..4163b7a5f96638 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ La siguiente instrucción coloca el título “Título del centro” en el encab
| | |
| --- | --- |
| Número de comando | 774 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
index d6696d9f932d87..8f1bc612a4f394 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
@@ -79,7 +79,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 750 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
index 4f28a2f9e93a6f..6c96d9d45f048f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
@@ -115,7 +115,7 @@ Si el parámetro *numColumna* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 765 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
index 8a9abcad210a9a..762a86579556ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
@@ -55,7 +55,7 @@ La siguiente instrucción oculta el contenido de la línea detalle:
| | |
| --- | --- |
| Número de comando | 763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
index 563b9129ba18b6..bc04e0578f3111 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
@@ -44,7 +44,7 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 738 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
index 63acb11b21c433..314c3e58e6ca7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ Si el parámetro *tabla* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 757 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
index 2d9a92c5387780..8d9650ee0fac41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
@@ -41,7 +41,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 794 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
index e151fbbe52e7c4..2dea93f9dc28f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 752 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
index bb3b2ee63d35d8..50d30ed0dedf04 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Este método define varios atributos para el título de la primera columna:
| | |
| --- | --- |
| Número de comando | 759 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
index f34a58e984cd46..b59e0644a9ccb8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
@@ -101,7 +101,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 767 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
index 65273a18c0eb3f..236a19db050771 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ Si el parámetro *subtotal*, es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
index b2559925b25235..3673bc7b66c1cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
@@ -410,7 +410,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 1331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
index 6e3eaceeeb9a12..cbc6393b2ca81c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ Si el usuario hace clic en el botón Aceptar o presionan la tecla Enter, la vari
| | |
| --- | --- |
| Número de comando | 292 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
index a9bb111578a335..f7ec3027459112 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
@@ -84,7 +84,7 @@ Este ejemplo utiliza una unión para buscar todas las líneas de facturas de cli
| | |
| --- | --- |
| Número de comando | 48 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
index 8acf0c830477a4..fd5aea822992ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
@@ -165,7 +165,7 @@ Si el formato de la condición de búsqueda es correcto, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 942 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
index 9e34f09cbdfff0..089dca308d09f7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
@@ -53,7 +53,7 @@ Usted quiere encontrar personas con una edad entre 20 y 30, entre los registros
| | |
| --- | --- |
| Número de comando | 1424 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
index 1cf4f15c50f59b..ce336fa7245b5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Para mayor información, consulte la descripción del comando [QUERY BY FORMULA]
| | |
| --- | --- |
| Número de comando | 207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
index 61fee85f1955c7..643c1e7fe15b39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Para mayor información, consulte la descripción del comando [QUERY WITH ARRAY]
| | |
| --- | --- |
| Número de comando | 1050 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
index cfc6c5407d12d0..3ea591a2504ae5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Va a encontrar todas las empresas ubicadas en la ciudad de Nueva York, con una a
| | |
| --- | --- |
| Número de comando | 341 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
index e6e01c9f178237..37ee75ee4a04e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ El siguiente ejemplo le permite recuperar los registros de clientes franceses y
| | |
| --- | --- |
| Número de comando | 644 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
index 80bba79cd84909..273ce679c07d6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
@@ -315,7 +315,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
index f99568751a28d8..6036e07ed5d3ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
@@ -72,6 +72,6 @@ El método de proyecto siguiente está asociado al elemento de menú Salir en el
| | |
| --- | --- |
| Número de comando | 291 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
index fa9edd269be71e..1bf0d4698ff1b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
@@ -39,6 +39,6 @@ El siguiente ejemplo asigna un valor aleatorio entre 10 y 30 a la variable *vlRe
| | |
| --- | --- |
| Número de comando | 100 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
index b9bd34998ba2e5..2ee5c8c0ff37c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ El siguiente ejemplo prueba el estado de la tabla \[Facturas\]. Si el estado de
| | |
| --- | --- |
| Número de comando | 362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
index 31e942d44b0434..c6d476e5a940ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Utilice READ ONLY cuando no necesite modificar los registros.
| | |
| --- | --- |
| Número de comando | 145 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
index 06ae63dbd6ba8d..51dbf954438175 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
@@ -47,7 +47,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 678 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
index 7e771f2ac345b4..e38f7f1041a56c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilice READ WRITE cuando tenga que modificar un registro y guardar los cambios.
| | |
| --- | --- |
| Número de comando | 146 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
index 0550263a6ec57b..765e9d303b6965 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
@@ -138,6 +138,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 552 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
index ce17a4c435804b..af72698a135f02 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
@@ -69,7 +69,7 @@ Note que el acceso a la variable interproceso *vtBuffer* debe estar protegido po
| | |
| --- | --- |
| Número de comando | 172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
index e132c65f6c45b3..38d4c01361d106 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
@@ -121,7 +121,7 @@ Después de un llamado a RECEIVE PACKET, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 104 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
index 34f9298e768c8a..d28dec038f1fd9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
@@ -157,7 +157,7 @@ La variable sistema OK toma el valor 1 si se recibe el registro. De lo contrario
| | |
| --- | --- |
| Número de comando | 79 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
index b7268e08d5241f..bc02e2bb1c1458 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ La variable sistema OK toma el valor 1 si se recibe la variable. De lo contrario
| | |
| --- | --- |
| Número de comando | 81 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
index a1e195a530c993..7ad02032be4fc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ El siguiente ejemplo guarda el número del registro actual y luego busca en la t
| | |
| --- | --- |
| Número de comando | 243 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
index 2649f4a9206d9f..a28e344ebe07f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una técnica de bucle actualmente utilizada para mo
| | |
| --- | --- |
| Número de comando | 76 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
index 7e64708dd86363..d64469c89e5c7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una alerta indicando el porcentaje de clientes que
| | |
| --- | --- |
| Número de comando | 195 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
index 3b6c451cb4c9e4..d80499be54f61d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ El siguiente ejemplo muestra una alerta que indica el número de registros en la
| | |
| --- | --- |
| Número de comando | 83 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
index 367205f6ef7a6a..bb4da292ab9337 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Si omite el parámetro *ventana*, REDRAW WINDOW aplica a la ventana del primer p
| | |
| --- | --- |
| Número de comando | 456 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
index 8a8c0a1ea2fa25..af0b78fdda805f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ En el contexto de los list boxes en modo selección, la instrucción REDRAW apli
| | |
| --- | --- |
| Número de comando | 174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
index 86124243bf98d3..ae44376df8484c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ El comando cambia el estado de la ventana:
| | |
| --- | --- |
| Número de comando | 1829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
index c6853d693c6b44..5a74254a4bcb4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
@@ -63,7 +63,7 @@ El siguiente ejemplo busca las estadísticas correctas para una competencia mund
| | |
| --- | --- |
| Número de comando | 351 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
index 0eb12353e7df4b..7c93974a3eeb92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Desea actualizar su licencia y recibir un mensaje cuando se complete:
| | |
| --- | --- |
| Número de comando | 1336 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
index ff1688af21f2b5..05be2b571556e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Este método regenera todas las tablas faltantes eventualmente presentes en la b
| | |
| --- | --- |
| Número de comando | 1126 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
index 9526c1815a7cb9..315545bce70fda 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
@@ -122,7 +122,7 @@ Si el cliente 4D está registrado correctamente, la variable sistema OK es igual
| | |
| --- | --- |
| Número de comando | 648 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
index a2beaec29e0fa2..d650fb58361489 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ En el primer parámetro, pase *curPassPhrase* o *curDataKey* que define la llave
| | |
| --- | --- |
| Número de comando | 1638 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
index 2e320933713118..ebc8f93c6bb89f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Desea rechazar o aceptar las nuevas conexiones de clientes:
| | |
| --- | --- |
| Número de comando | 1635 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
index 30ca4684392096..85b10c7bc7ccb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
@@ -68,6 +68,6 @@ El siguiente ejemplo es parte de un método de objeto para un campo *\[Employees
| | |
| --- | --- |
| Número de comando | 38 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
index 6194cfbefd78c6..34f71db8096425 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ Este ejemplo selecciona todas las facturas de clientes con crédito superior o i
| | |
| --- | --- |
| Número de comando | 340 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
index b8ffdf3a1dfe39..e983c6e7453fd4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
@@ -71,7 +71,7 @@ Note que es necesario el comando RELATE MANY, aunque las relaciones sean automá
| | |
| --- | --- |
| Número de comando | 262 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
index 59bfb78d998708..85731c47c6a67e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
@@ -63,7 +63,7 @@ La siguiente técnica utiliza **RELATE ONE SELECTION** para obtener el mismo res
| | |
| --- | --- |
| Número de comando | 349 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
index 0bed30a6aefde1..b979de8e085251 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
@@ -92,7 +92,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 42 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
index bbde3cbf500963..3cc053aaf0ab2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Este ejemplo muestra las diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número de comando | 978 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
index 43af5b4976d88e..e5639c64c10586 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ A continuación debe recargar los datos utilizando el comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número de comando | 1135 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
index e356404ef616b0..29a2966d976c39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Cuando se llama al comando desde:
| | |
| --- | --- |
| Número de comando | 1739 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
index 4cc1de98e164b9..9c8ec813422bbb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 561 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
index 3cbc5a66f3a861..419bc9d127c849 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
@@ -61,7 +61,7 @@ El siguiente ejemplo borra de la librería de imágenes toda imagen cuyo nombre
| | |
| --- | --- |
| Número de comando | 567 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
index 90773e53521265..81d4d2ce7c0346 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ El siguiente ejemplo ilustra el uso del parámetro \* en el caso de una evaluaci
| | |
| --- | --- |
| Número de comando | 233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
index 0d2da9fe8892c8..44ed867ea9ced2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
@@ -84,7 +84,7 @@ Mostrará la siguiente caja de diálogo (en Windows):
| | |
| --- | --- |
| Número de comando | 163 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
index 0d40bec9c68fbb..e9ce2e9ef2f580 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
@@ -52,6 +52,6 @@ Después de la ejecución de esta línea:
| | |
| --- | --- |
| Número de comando | 890 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
index 80067dc8c6cb26..ad7bc594c07591 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
@@ -37,7 +37,7 @@ Si *rutaAlias* especifica un alias/atajo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 695 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
index 9a204efecd46b2..b8d6fac0bbeb11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
@@ -115,6 +115,6 @@ Este es un ejemplo de puntero a un array 2D:
| | |
| --- | --- |
| Número de comando | 394 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
index a33546b0878d8a..9feb62d019a687 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ El siguiente ejemplo copia los recursos imagen presentes en todos los archivos d
| | |
| --- | --- |
| Número de comando | 500 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
index 8ea895e4c77b3b..a3bed5339b1a99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ Una vez este método de proyecto se implementa en una base, puede escribir:
| | |
| --- | --- |
| Número de comando | 499 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
index 50dde9c5536db8..2c43d8567ef9a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1,
| | |
| --- | --- |
| Número de comando | 1292 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
index 1cee75708b043c..ed73909024f900 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
@@ -41,6 +41,6 @@ El tipo y el contenido de los parámetros *info1* e *info2* dependen del valor d
| | |
| --- | --- |
| Número de comando | 889 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
index 8262cb62c653e3..89e92c30ad4e5f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
@@ -39,7 +39,7 @@ El comando RESTORE modifica el valor de las variables *OK* y *Document*: si la r
| | |
| --- | --- |
| Número de comando | 918 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
index 369cd68d14bb24..f5623d26dc89cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ El comando **RESUME INDEXES** sólo se puede llamar desde 4D Server o un 4D loca
| | |
| --- | --- |
| Número de comando | 1294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
index 46e684d9426a54..7babf9757ea25f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Si *proceso* ha sido retrasado anteriormente, consulte los comandos [PAUSE PROCE
| | |
| --- | --- |
| Número de comando | 320 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
index d1ead926995b39..40e01e5604dc6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para más información, consulte la sección *Suspender las transacciones*.
| | |
| --- | --- |
| Número de comando | 1386 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
index 7047cb967cda85..58272e330fa10e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando debe utilizarse únicamente en el contexto del evento de formulario
| | |
| --- | --- |
| Número de comando | 712 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
index 2011bfae528025..cedd1cc8a6f625 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
@@ -43,6 +43,6 @@ El siguiente ejemplo ilustra cómo Redondeo funciona con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 94 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
index a727463b168467..362b5bdb715cde 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Su contenido se reemplazará si ya hay una lista con el mismo nombre.
| | |
| --- | --- |
| Número de comando | 384 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
index d9421938d3702e..c0aea35920e230 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es parte de un método que lee registros de un documento. E
| | |
| --- | --- |
| Número de comando | 53 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
index 69bded942e0dc0..1ab969f8dd3a5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONE no guardará un registro bloqueado. Cuando utilice este comando
| | |
| --- | --- |
| Número de comando | 43 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
index 475932673f38e5..6568eb3cf9f6ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ Si el usuario hace clic en el botón Cancelar en la caja de diálogo de guardar
| | |
| --- | --- |
| Número de comando | 184 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
index 338bc328f0270c..90556d2ab031d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Si las variables se guardan correctamente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 75 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
index 3697a4b0dcd83e..8e98ec58f0672d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
@@ -34,8 +34,8 @@ El siguiente código:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -51,7 +51,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 857 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
index 9576ca41a8e6c8..6fc7c9742f3491 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 856 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
index 468909f0d208e5..b3db1902c1ac2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 852 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
index d0c3c79e9c297a..4e12d28f69d573 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 851 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
index f347673039b33c..57d24fa3b5d41e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
@@ -56,7 +56,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 855 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
index ca8bdfad05dca8..20c473902a22a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
@@ -29,8 +29,8 @@ Si el último elemento abierto es **, la siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Ver también
@@ -43,6 +43,6 @@ Si el último elemento abierto es **, la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 854 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
index 15821b121dccd2..97c971119bb405 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 878 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
index e0d38e575e0749..1ae409abf1c3aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 874 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
index 68cfa3fd16ac57..de038daaceea99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 873 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
index 36fde52edc5107..eb025a8795a00d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 877 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
index 82054681aca249..c9367a804d96eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 876 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
index 8fcafb008b1b6b..b8891ee1357cd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 879 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
index 245ea3d0e89c7f..f353c18fe97ade 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 860 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
index ee122e7f879730..d1d6cee22ffda4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ La siguiente instrucción devolverá “PI” en *vNom* y “TextProcess” en *
| | |
| --- | --- |
| Número de comando | 875 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
index 42e686126e2232..01b6c9a6b122fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 921 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
index 03164546003a7b..edd0fae834814e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ Si se pasa en tag un carácter inválido, se genera un error.
| | |
| --- | --- |
| Número de comando | 853 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
index f0a7b2a0ea75a9..90a18d2ec393f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
@@ -51,6 +51,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 858 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
index 0ae4c333487e37..8e243cb8f1ace2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
@@ -55,7 +55,7 @@ El siguiente ejemplo envía cartas a los 50 peores clientes y 50 a los mejores c
| | |
| --- | --- |
| Número de comando | 350 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
index 056301297ac3cd..cfa56595426670 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ Las siguientes imágenes demuestran las diferencias entre el tamaño de la panta
| | |
| --- | --- |
| Número de comando | 438 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
index 58db2831001981..36ceb545910ffd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ Su aplicación muestra varios gráficos a color. Puede escribir en alguna parte
| | |
| --- | --- |
| Número de comando | 439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
index e036599e3a4117..34828becc97d4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ En Mac OS, Screen height devuelve la altura de la pantalla principal, es decir l
| | |
| --- | --- |
| Número de comando | 188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
index 66fb27401878f4..84805c1d412280 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ En Macintosh, Screen width devuelve el largo de la pantalla principal, es decir
| | |
| --- | --- |
| Número de comando | 187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
index 3bbda658e35b82..c5226fc217e82d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
@@ -103,7 +103,7 @@ Si no se seleccionó ningún archivo (por ejemplo, si el usuario hace clic en el
| | |
| --- | --- |
| Número de comando | 905 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
index debad538f280c9..69f1ac57f2397a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
@@ -93,7 +93,7 @@ El siguiente ejemplo le permite seleccionar la carpeta en la cual se almacenará
| | |
| --- | --- |
| Número de comando | 670 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
index 86527c1e15abd7..f14bf4f80126fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
@@ -78,6 +78,6 @@ Se seleccionan los elementos segundo, tercero y quinto de la lista jerárquica
| | |
| --- | --- |
| Número de comando | 381 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
index 1e1d394cf1839b..dad4756e861992 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ Si trabaja con los números de referencia de los elementos, asegúrese de constr
| | |
| --- | --- |
| Número de comando | 630 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
index 3d785042e34d4b..136698c2c8664f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
@@ -45,7 +45,7 @@ El efecto de la validación de esta caja de diálogo difiere dependiendo de la p
| | |
| --- | --- |
| Número de comando | 956 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
index 34e3907d4f8cfb..8256a2c98716b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
@@ -90,6 +90,6 @@ Esta es una lista llamada *hList,* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 379 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
index c0dceb38f9427d..dbadd91450b2d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ El siguiente ejemplo guarda el número del registro actual de la selección en u
| | |
| --- | --- |
| Número de comando | 246 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
index e35573bb9e5828..45aed4ca4ad317 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
@@ -114,6 +114,6 @@ Uso de los 50 primeros registros actuales de la tabla \[Facturas\] para cargar v
| | |
| --- | --- |
| Número de comando | 368 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
index ffdf231f8501dd..21dd2cc253331e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ El mismo ejemplo puede escribirse:
| | |
| --- | --- |
| Número de comando | 260 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
index 184b2460991f43..8c32ef23bbdd94 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
@@ -97,6 +97,6 @@ Puede utilizar la sintaxis *template* para exportar campos de tablas diferentes:
| | |
| --- | --- |
| Número de comando | 1234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
index 466b820e5e7256..342384da423635 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER
| | |
| --- | --- |
| Número de comando | 308 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
index 76b5df5d4093e4..0449670b55584f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
@@ -153,6 +153,6 @@ Sintaxis:
| | |
| --- | --- |
| Número de comando | 143 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
index 002e4fa3833976..5d48cba050df33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ Desea enviar un mensaje a todos los usuarios y luego enviar un mensaje a un usua
| | |
| --- | --- |
| Número de comando | 1632 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
index 13d31a6af40e2b..16bfcd9cfe8c41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
@@ -88,6 +88,6 @@ Este ejemplo ilustra el envío y recuperación de caracteres extendidos vía un
| | |
| --- | --- |
| Número de comando | 103 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
index 38c0841399ff6e..fe52389ced0eb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 78 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
index eb195e5c9a3670..2c6caf92132b24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 80 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
index e37e038b1e9aa1..9eaa4f7f9d2b3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
@@ -65,6 +65,6 @@ El siguiente ejemplo es parte de un método de formulario. Estas líneas de cód
| | |
| --- | --- |
| Número de comando | 244 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
index 285a6cf2b9ac0a..1779086223c499 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ El siguiente ejemplo reinicializa el comando de menú Acerca de 4D:
| | |
| --- | --- |
| Número de comando | 316 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
index e7e2e378c60c30..f80aadd14167bc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ En el parámetro *esquemaColor*, pase un esquema de color a aplicar:
| | |
| --- | --- |
| Número de comando | 1762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
index bc82da3dcbc381..7c658868237dc8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Desactivación de aserciones:
| | |
| --- | --- |
| Número de comando | 1131 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
index 2adb391357dd75..fb61032f576166 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ El siguiente ejemplo vuelve automáticas todas las relaciones Muchos a Uno y res
| | |
| --- | --- |
| Número de comando | 310 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
index 9f7f62658c3e43..882ad047ba44d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ El siguiente ejemplo crea un BLOB de 16K lleno de 0xFF:
| | |
| --- | --- |
| Número de comando | 606 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
index 9c3dee9080542c..5b5a40b009f6b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ En el , usted desea definir una prioridad alta para la tabla \[Customer\]:
| | |
| --- | --- |
| Número de comando | 1425 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
index c9fd2c0b587f0d..3149e2fb0bcfbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Usted quiere añadir 100 MB al tamaño de la caché de su base actual. Puede esc
| | |
| --- | --- |
| Número de comando | 1399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
index f77211a9a5fca7..b1ad85c61e9e5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
@@ -174,7 +174,7 @@ Ver los ejemplos de los comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BUF
| | |
| --- | --- |
| Número de comando | 77 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
index 38b2809747d687..7c394d6a717be0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
@@ -58,7 +58,7 @@ Creación de un documento PDF bajo Windows:
| | |
| --- | --- |
| Número de comando | 787 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
index c8ebe64b1e1142..890cdbadbbf3c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ Usted quiere que se muestre el cursor .
| | |
| --- | --- |
| Número de comando | 385 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
index 164ba7f74b9fc6..1167ae1e5de7ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
@@ -71,6 +71,6 @@ Desea rechazar la sublista de expandir/contraer al hacer doble clic. Puede escri
| | |
| --- | --- |
| Número de comando | 387 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
index a0475f56385d47..4628b5e8fdb5a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
@@ -63,6 +63,6 @@ Esta macro crea un nuevo texto que será devuelto al método llamante:
| | |
| --- | --- |
| Número de comando | 998 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
index 41d61b43bdb04e..f523801a2a1c83 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ En este ejemplo, crearemos por programación, una barra de menús incluyendo los
| | |
| --- | --- |
| Número de comando | 67 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
index 892adf51f69e2a..41032f23fccd9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
@@ -49,6 +49,6 @@ Uso de una imagen ubicada en la carpeta Resources de la base:
| | |
| --- | --- |
| Número de comando | 984 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
index 5bf2ad21f8d051..46ea5f28e130c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ Ver ejemplo para el comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número de comando | 208 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
index 977386a954147f..38d12df8c20fb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 982 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
index 72d9abd70b5fb0..d5a16862510cef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Este código ofrece un menú que incluye los nombres de las ventanas abiertas y
| | |
| --- | --- |
| Número de comando | 1004 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
index af71f8fdfef720..a33f0bed9308f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
@@ -64,6 +64,6 @@ En el caso de la propiedad Associated standard action, puede pasar en el paráme
| | |
| --- | --- |
| Número de comando | 973 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
index 69d5fa66022eb7..d1afc39d30c769 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
@@ -83,7 +83,7 @@ Definición del atajo de teclado F4 para la opción de menú "Cerrar":
| | |
| --- | --- |
| Número de comando | 423 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
index 087cd2e14f65a5..4f77bd605254df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ En el parámetro *itemEstilo* puede definir el estilo del elemento. Pase una com
| | |
| --- | --- |
| Número de comando | 425 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
index 6ff90a0ead4a1f..b10cedc573d8ec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Si omite el parámetro *proceso*, SET MENU ITEM se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 348 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
index 733edef2423566..356a0c93a25407 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ El nombre por defecto se utiliza como nombre de archivo cuando la imagen se expo
| | |
| --- | --- |
| Número de comando | 1172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
index a1526318bf385f..57a7f82d965db9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
@@ -88,7 +88,7 @@ Cuanto todos los metadatos se manipulan vía una referencia de elementos DOM, la
| | |
| --- | --- |
| Número de comando | 1121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
index 0c0fd6da490c96..76b66c13fc2494 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
@@ -104,7 +104,7 @@ Si no hay suficiente memoria para añadir la imagen a la librería de imágenes,
| | |
| --- | --- |
| Número de comando | 566 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
index 3d7167be7a8e66..85fea9c21f6f8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
@@ -54,7 +54,7 @@ Si no hay suficiente memoria para colocar una copia de la imagen en el portapape
| | |
| --- | --- |
| Número de comando | 521 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
index 3717b123fa6f50..891f452da23bae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Pase en el parámetro *grupo* el nombre del grupo cuyos usuarios están autoriza
| | |
| --- | --- |
| Número de comando | 845 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
index f02034014efa78..3ced1ea6d161b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
@@ -187,6 +187,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número de comando | 709 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
index d197dc3cc85acd..d9524cfa82c6eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
@@ -85,7 +85,7 @@ Si el valor pasado por una *opción* es incorrecto o si no está disponible en l
| | |
| --- | --- |
| Número de comando | 733 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
index f87ee82bfb21d8..2b4242b815b9a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ El siguiente ejemplo selecciona la opción Previsualización en pantalla para mo
| | |
| --- | --- |
| Número de comando | 364 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
index 09bf34d826a727..ecf7c181bf54df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ El siguiente ejemplo le permite obtener el tamaño del papel:
| | |
| --- | --- |
| Número de comando | 710 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
index 694be3199704fa..aa36bdbf11fd2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
@@ -102,6 +102,6 @@ Este ejemplo escribe la instancia de las variables *v1*, *v2* y *v3* utilizando
| | |
| --- | --- |
| Número de comando | 370 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
index 8aa0478dea50ed..27ad7f3c331fb4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Si el comando no se llama en el contexto de una transacción, se genera un error
| | |
| --- | --- |
| Número de comando | 661 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
index d306c4040c36f1..7135c6fc39ad2e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ Después de implementar este método de proyecto en su aplicación, puede escrib
| | |
| --- | --- |
| Número de comando | 396 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
index 2e1137885b98e6..c990880ba5e15a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Ver el segundo ejemplo del comando [SET QUERY DESTINATION](set-query-destination
| | |
| --- | --- |
| Número de comando | 395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
index 819e9784a46d42..aec92c7dad613d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL**, puede aumentar o reducir el valor epsi
| | |
| --- | --- |
| Número de comando | 623 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
index 996143e64adb0c..996f0f396cadef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Luego el menú contiene:
| | |
| --- | --- |
| Número de comando | 1305 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
index 9580000cd3251f..b921bad451abd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ En el , usted desea definir una prioridad alta para el dato escalar \[Customer\]
| | |
| --- | --- |
| Número de comando | 1400 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
index 1c966b87ae5be7..8b38229549ffbe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
@@ -185,6 +185,6 @@ Desea eliminar todos los nombres de tablas y campos personalizados definidos:
| | |
| --- | --- |
| Número de comando | 601 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
index 9dcb3b9c08165e..802a6174826422 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Si el texto se coloca correctamente en el portapapeles, la variable OK toma el v
| | |
| --- | --- |
| Número de comando | 523 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
index 550942186efdcc..2c76bc97dc1420 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ El siguiente ejemplo fija el puerto serial para recibir datos y el timeout. Los
| | |
| --- | --- |
| Número de comando | 268 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
index be69e97763f05e..a095e3924dd2c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Imaginemos que usted quiere, cuando un formulario aparece en pantalla, que el or
| | |
| --- | --- |
| Número de comando | 645 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
index e6348d4875034f..99dc876e4b7440 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
@@ -59,7 +59,7 @@ Usted creó una carpeta "MyUpdates" en su disco, en la cual ubicó una nueva ver
| | |
| --- | --- |
| Número de comando | 1291 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
index 6c0a16ec475159..b73c62d4da40d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Sus usuarios se administran a través de una tabla personalizada y utilizan la m
| | |
| --- | --- |
| Número de comando | 1666 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
index 7e5a9f53324909..44d979eee48697 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
@@ -68,6 +68,6 @@ Si no tiene privilegios de acceso para llamar al comando Set user properties o s
| | |
| --- | --- |
| Número de comando | 612 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
index c714148d836a24..a144fcad112c9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
@@ -67,6 +67,6 @@ La ventana aparece de esta forma:
| | |
| --- | --- |
| Número de comando | 444 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
index 5d603a7404cc95..80d0fa117204ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Mientras efectúa una entrada de datos en un formulario, usted hace clic en un b
| | |
| --- | --- |
| Número de comando | 213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
index 0e1fe195f9839d..15c90d8f78fcdd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ El siguiente método de objeto para el botón *bUnBoton* efectúa diferentes acc
| | |
| --- | --- |
| Número de comando | 543 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
index adcc2a91144d23..3a72fda6467652 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver el ejemplo del comando [HIDE MENU BAR](hide-menu-bar.md "HIDE MENU BAR").
| | |
| --- | --- |
| Número de comando | 431 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
index 18bddd33587255..d331cb1e657772 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, d
| | |
| --- | --- |
| Número de comando | 922 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
index 30576291c96e22..da4dfebef385d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra un proceso llamado Clientes, que se ha ocultado pre
| | |
| --- | --- |
| Número de comando | 325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
index 7da018c4dc8018..3bd2892bc5998c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte el ejemplo del comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número de comando | 433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
index 60d7d678c11f5d..961a9e2399e26c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Consulte el ejemplo del comando [HIDE WINDOW](hide-window.md "HIDE WINDOW").
| | |
| --- | --- |
| Número de comando | 435 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
index 6170addc409a60..5d16d845da2100 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 17 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
index 0eb1c738d72eb4..9c7f644fc8fe53 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ El siguiente ejemplo devuelve el número de columnas de una fila en un array bid
| | |
| --- | --- |
| Número de comando | 274 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
index 961997f9981e64..82b953eb0bf5f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
@@ -192,6 +192,6 @@ Este ejemplo illustra los resultados de los diferentes tipos de declaraciones:
| | |
| --- | --- |
| Número de comando | 782 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
index d83b81f4d33ba2..b1c911b9574ef0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ Pase en el parámetro *numInfo* el número del tipo de información SOAP que qui
| | |
| --- | --- |
| Número de comando | 784 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
index 51fa9c3d9ea0fd..fdbc8d2dc17904 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
@@ -44,6 +44,6 @@ Desea rechazar cualquier solicitud nueva a su servidor de servicios web:
| | |
| --- | --- |
| Número de comando | 1636 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
index 99bb25236f8d05..dc882600c3a99b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
@@ -49,6 +49,6 @@ Regresando al ejemplo del servicio Web “Raiz\_cuadrada” de la descripción d
| | |
| --- | --- |
| Número de comando | 781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
index b55c11724672d0..444fc2e577730e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ Usted visualiza los nombres de una tabla *\[Personas\]* en una ventana flotante.
| | |
| --- | --- |
| Número de comando | 229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
index dfabfa670d6430..ae304f830af57b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
@@ -62,6 +62,6 @@ La lista se ve de esta forma:
| | |
| --- | --- |
| Número de comando | 391 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
index 483f10ee2e859e..fb2209ea95b031 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Adición de nombres propios al diccionario de usuario:
| | |
| --- | --- |
| Número de comando | 1214 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
index 09e665783e5660..7c5c714b67206d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ Queremos contar el número posible de errores en un texto:
| | |
| --- | --- |
| Número de comando | 1215 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
index 76192f09751c47..a4297f56162f95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La verificación ortográfica comienza con la primera palabra del campo o variab
| | |
| --- | --- |
| Número de comando | 900 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
index b42d32b12fdd28..f3aada3ccb5d46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar el lenguaje del diccionario actual:
| | |
| --- | --- |
| Número de comando | 1205 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
index fcbb5bd61f5100..3bcdf958832194 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Usted pone "fr-classic+reform1990.aff" y "fr-classic+reform1990.dic" como tambi
| | |
| --- | --- |
| Número de comando | 1204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
index 34e6e14e85375a..62704a9608d0ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Carga del diccionario "fr-classic" presente en la carpeta Hunspell:
| | |
| --- | --- |
| Número de comando | 904 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
index cca9970ecd52e4..befc9d8b0ad865 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ El parámetro *separador* puede ser una cadena de múltiples caracteres:
| | |
| --- | --- |
| Número de comando | 1554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
index df2482e375bd3e..f3799933f4e7c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 824 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
index f9a967d44950d4..aafd8fb8cb89d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá en la variable 4D *vNombre* los nombres (ename) almacena
| | |
| --- | --- |
| Número de comando | 821 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
index 4bc3db66eeac89..13663217f630e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
@@ -64,7 +64,7 @@ Si el script se ejecuta correctamente (no se encuentra ningún error), la variab
| | |
| --- | --- |
| Número de comando | 1089 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
index 04d8cc365a31d7..7377762d7963a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1, de lo
| | |
| --- | --- |
| Número de comando | 820 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
index 3b97c821739965..f7fa704e8dcb6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ Si la exportación se realiza correctamente, la variable OK toma el valor 1\. De
| | |
| --- | --- |
| Número de comando | 1065 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
index 2d38974b4b98ea..b6692a4a4a2fa6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Si la exportación se lleva a cabo correctamente, la variable *OK* toma el valor
| | |
| --- | --- |
| Número de comando | 1064 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
index 394c5900b76216..80a7b5dd10f67c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar la fuente de datos actual, generalmente antes de
| | |
| --- | --- |
| Número de comando | 990 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
index 56e8663b7e2233..1f6f102e77b65f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 989 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
index f0e0f85824b8fd..fa6550d5f0d69f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ Los dos últimos parámetros sólo se llenan cuando el error viene de la fuente
| | |
| --- | --- |
| Número de comando | 825 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
index 788bde5fc3d167..0e894f67c9775f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 819 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
index 326e636d1f6e7b..db728c9da818b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 822 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
index fbd3908c81102c..9a05a26e220b63 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
@@ -207,7 +207,7 @@ Si la conexión es exitosa, el variable sistema OK toma el valor 1; de lo contra
| | |
| --- | --- |
| Número de comando | 817 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
index 66bfdbb39a2240..a3729cd0514c44 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la conexión se cierra correctamente, la variable sistema OK toma el valor 1;
| | |
| --- | --- |
| Número de comando | 872 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
index 000c7376d75e68..93a69a8480c61f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
@@ -52,7 +52,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1\. De l
| | |
| --- | --- |
| Número de comando | 818 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
index 61429261abb826..78a8f58ee87f39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
@@ -82,7 +82,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 823 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
index 22fff9c966d92b..6f1b10c8dd6422 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Por ejemplo, Hipotenusa (4;3) devuelve 5.
| | |
| --- | --- |
| Número de comando | 539 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
index 77110f0ae12388..edcda33d4ee9ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
@@ -71,7 +71,7 @@ Usted desea actualizar las referencias incluidas en la selección de texto:
| | |
| --- | --- |
| Número de comando | 1285 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
index 570c9e85782c4c..73645e978feefa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
@@ -72,6 +72,6 @@ Usted quiere insertar la hora actual al inicio del texto y luego congelarla ante
| | |
| --- | --- |
| Número de comando | 1282 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
index bb66c7d7961ed2..ec520cd153ecf5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1094 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
index 70fa6f1aa9f96b..2e1317e48d0b3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
@@ -106,7 +106,7 @@ Usted desea mostrar los comandos de un menú contextual basado en el tipo de con
| | |
| --- | --- |
| Número de comando | 1286 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
index 230c6021aa0293..485b793cb5c0bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ Usted quiere ejecutar un método 4D cuando se hace clic en un enlace de usuario:
| | |
| --- | --- |
| Número de comando | 1287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
index 0baccc12b5a136..edaf245de61486 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Pase el código de la opción a leer en el parámetro *opcion*. El comando devue
| | |
| --- | --- |
| Número de comando | 1290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
index 734df0c5353773..b37a826889fc80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
@@ -115,7 +115,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1092 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
index addc4767846508..1cedf5b04729b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
@@ -66,7 +66,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1116 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
index 7df737d9d234ee..89d2770e27c264 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
@@ -75,6 +75,6 @@ Cuando hay un evento de doble clic, se comprueba que no existe en realidad una U
| | |
| --- | --- |
| Número de comando | 1288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
index 3bbac0c3483031..79fcbd54a41a49 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
@@ -92,7 +92,7 @@ Desea reemplazar el texto seleccionado con el resultado de un método proyecto:
| | |
| --- | --- |
| Número de comando | 1281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
index 9d3bd9fcc369db..2e9190f8da4f80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ Usted desea insertar un enlace al sitio web de 4D para reemplazar el texto selec
| | |
| --- | --- |
| Número de comando | 1280 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
index 246e0b91695f2a..05b2f308c58a7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1093 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
index e29beb7a8f99e7..9052566f5bcf13 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ El siguiente código permite cambiar el modo de visualización del área:
| | |
| --- | --- |
| Número de comando | 1289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
index 2c57bdb6745e04..4166015b64f81c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ En caso de un error, la variable no cambia. Cuando se produce un error en una va
| | |
| --- | --- |
| Número de comando | 1136 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
index 0c735699477514..65a3ec38160645 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Consulte el ejemplo del comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número de comando | 1115 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
index 77243cca66b97d..1ddc9b47b7f309 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Desea iniciar/detener la supervisión y revisión de los datos 4D y las activida
| | |
| --- | --- |
| Número de comando | 1712 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
index d39a9af5d1bc54..9925c40d0950b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si el servidor SQL ha sido lanzado correctamente, la variable sistema OK toma el
| | |
| --- | --- |
| Número de comando | 962 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
index 3be6ad72e16b0b..634d420f770faa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir de la versión 11 de 4D, puede anidar varias transacciones (subtransacc
| | |
| --- | --- |
| Número de comando | 239 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
index 5d6241742a66c7..15202b25e2e620 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
@@ -66,6 +66,6 @@ Este ejemplo obtiene la desviación estándar de una serie de valores ubicados e
| | |
| --- | --- |
| Número de comando | 26 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
index 10ca06684a1276..49a6812f049ec6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver ejemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número de comando | 1721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
index 820c6676ac2a52..f25763b8b15e3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Si el servidor SQL ha sido lanzado, todas las conexiones SQL se interrumpen y el
| | |
| --- | --- |
| Número de comando | 963 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
index 846fe60afb5beb..124540d8d51a41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este ejemplo muestra una forma estándar de establecer valores de **Almacenamien
| | |
| --- | --- |
| Número de comando | 1525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
index e2b3ee89cd398d..e45ff1c580adfd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
@@ -49,7 +49,7 @@ Si se encuentra el recurso, la variable sistema OK toma el valor 1, de lo contra
| | |
| --- | --- |
| Número de comando | 511 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
index bcdc6c9df6ab01..991b7c7b813518 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
@@ -192,6 +192,6 @@ Si *expresion* se evalúa como Null, el comando devuelve la cadena "null". Esto
| | |
| --- | --- |
| Número de comando | 10 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
index b58aaa0fd80ec0..d5d653cd7d73a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
@@ -73,6 +73,6 @@ El siguiente ejemplo puede utilizarse para saber si el método se llama desde un
| | |
| --- | --- |
| Número de comando | 489 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
index 9bbab6a88d5d13..b836b4caf08b54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
@@ -69,6 +69,6 @@ El siguiente método de proyecto añade los párrafos que se encuentran en el te
| | |
| --- | --- |
| Número de comando | 12 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
index 12d31b843e1e8b..43735782766a0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
@@ -68,6 +68,6 @@ La función Subtotal es necesaria para mostrar valores en un formulario.
| | |
| --- | --- |
| Número de comando | 97 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
index 4b254fda959543..2c23dd908a6f54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Este ejemplo permite obtener la suma de cuadrados de los valores ubicados en un
| | |
| --- | --- |
| Número de comando | 28 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
index 67ffb1efc875f6..65b089cf3c2cf3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
@@ -78,7 +78,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 1 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
index 7bae8e486b87df..0949caa52a8a7b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para más información, por favor consulte la sección *Suspender las transaccio
| | |
| --- | --- |
| Número de comando | 1385 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
index 58e9afe1ed483e..0fff40af1fa796 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
@@ -57,6 +57,6 @@ El siguiente ejemplo puede utilizarse para mostrar “Hello World” en una imag
| | |
| --- | --- |
| Número de comando | 1017 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
index a16b72ac2e632a..a450a890bba3fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -56,7 +56,7 @@ Si *objetoImagen* no contiene una imagen SVG válida, el comando devuelve una ca
| | |
| --- | --- |
| Número de comando | 1054 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
index bb82745010a74a..f422a0701f6013 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ Todos los elementos cuyo rectángulo circundante está en intersección con el r
| | |
| --- | --- |
| Número de comando | 1109 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
index 4fe3929840e502..0032e8a67102ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ Para obtener más información acerca de los atributos SVG, consulte la descripc
| | |
| --- | --- |
| Número de comando | 1056 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
index 27ecafb4f61dff..2b1523646f0edf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
@@ -101,7 +101,7 @@ Modificación del contenido de un elemento de tipo texto:
| | |
| --- | --- |
| Número de comando | 1055 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
index bee50479ac19a3..6ef1f779a7e72c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1108 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
index b4e1d0b56e7383..1bdf46f640871f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
@@ -55,6 +55,6 @@ Si omite el parámetro *tipo*, la función devolverá la ruta a la carpeta siste
| | |
| --- | --- |
| Número de comando | 487 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
index 8cb80d2895a3c1..cd908c4de509fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ devuelve un objeto que contiene la siguiente información:
| | |
| --- | --- |
| Número de comando | 1571 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
index 6bfbcec56ce28b..ac4e3f4284a505 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Este método de mantenimiento permite solicitar la compactación del archivo de
| | |
| --- | --- |
| Número de comando | 1127 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
index 913eea47fd94d9..a2f436b5362bb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ El siguiente es un ejemplo de un método genérico que muestra los registros de
| | |
| --- | --- |
| Número de comando | 256 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
index ed2d74dc40460d..ccde044035fc25 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
@@ -67,6 +67,6 @@ Este ejemplo, la variable *numTabla* es igual al número de la tabla a la cual p
| | |
| --- | --- |
| Número de comando | 252 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
index 88b5290f809172..43b0431c1915e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 19 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
index 59831890334e8f..46b1189e03d313 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 486 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
index 47b983c0950a47..f762edfc8e7cb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ El siguiente ejemplo prueba la presencia del documento “Diario” en la carpet
| | |
| --- | --- |
| Número de comando | 476 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
index 5c352f02e9a98c..e0df78b2ec0673 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
@@ -48,6 +48,6 @@ El siguiente ejemplo le permite conocer el estado de un proceso (en nuestro caso
| | |
| --- | --- |
| Número de comando | 652 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
index 95f0c853169584..2bf8b4bba412a7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ Debe imprimir en un área de 400 píxeles de largo un texto de un máximo de 80
| | |
| --- | --- |
| Número de comando | 1149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
index 7a0d6bfadd727f..d7822a312bc04a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
@@ -112,6 +112,6 @@ Después de la ejecución este código:
| | |
| --- | --- |
| Número de comando | 554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
index d40093c987bcab..a639d8f5838eb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ Ejemplo que permite al usuario indicar la ubicación del archivo a crear:
| | |
| --- | --- |
| Número de comando | 1237 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
index bd403da2a0d3a5..084b3549afc3ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número de comando | 1805 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
index 88af704b1dd256..60cc927c4ce026 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver el ejemplo del comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número de comando | 458 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
index 4c18dfb1efb6cb..a68d6112e19b75 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ El siguiente muestra una caja de alerta con el mensaje, “46 800 segundos repre
| | |
| --- | --- |
| Número de comando | 180 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
index 318cfff10329c1..9937399745629d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
@@ -57,6 +57,6 @@ Puede expresar todo valor numérico como una hora:
| | |
| --- | --- |
| Número de comando | 179 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
index 27b0c66e1ce66e..a0b3af71225bac 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 1445 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
index b4ff4f19a3d7d5..7052c47a9b689b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Si no se muestra ninguna barra de herramientas, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1016 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
index d33797327491ca..2f0664e2f79e3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
@@ -66,6 +66,6 @@ El método de proyecto DEBUG se lista aquí:
| | |
| --- | --- |
| Número de comando | 157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
index 341f0664c10fe7..e00b775be2ac22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 961 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
index dd796725369bf6..1287d6fe05b6db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
@@ -78,6 +78,6 @@ Este es un ejemplo de corte de una imagen (la imagen se muestra en el formulario
| | |
| --- | --- |
| Número de comando | 988 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
index 9dbcd5d1ade2d5..6c4c35f3200770 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
@@ -59,6 +59,6 @@ Utilice el comando **Trigger event** para estructurar sus triggers de esta maner
| | |
| --- | --- |
| Número de comando | 369 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
index c537aea2ad2c6e..57cddda90b1045 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para mayor información sobre niveles de ejecución, consulte el tema *Triggers
| | |
| --- | --- |
| Número de comando | 398 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
index d40264612c8fa6..ac12e054092ee8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
@@ -44,6 +44,6 @@ El número de tabla y de registro para el registro relacionado por el evento de
| | |
| --- | --- |
| Número de comando | 399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
index 132fbf9ea6cafb..37c1333d0e0137 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 214 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
index af06e993c912f0..dbd23816d557db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra la manera cómo Trunc funciona con diferentes argum
| | |
| --- | --- |
| Número de comando | 95 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
index 8ae153457ba3b0..563b5e31d731e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
@@ -45,7 +45,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 1051 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
index f1f68521f81824..6f09059b95d7f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
@@ -146,6 +146,6 @@ Ver ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número de comando | 295 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
index db1570d9e340b3..8381f4e430c52e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
@@ -66,6 +66,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 82 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
index f64f042f7f01d7..abf63489f22276 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
@@ -56,6 +56,6 @@ Este ejemplo añade registros al conjunto de mejores clientes. Los registros se
| | |
| --- | --- |
| Número de comando | 120 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
index d521773972d051..7962a54dc030e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Si un registro tiene una cantidad importante de datos, de campos de imagen, o de
| | |
| --- | --- |
| Número de comando | 212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
index 2479ff7ccfa7ee..1c3626749cb87e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ Si el cliente es dado de baja correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 649 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
index 075fcde1fc7e1e..86cea63b5a1736 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Ver el ejemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número de comando | 13 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
index 41c1c1597dcedb..bf37b378bf5968 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
@@ -57,7 +57,7 @@ La variable sistema OK toma el valor 1 si el mapa se carga correctamente, de lo
| | |
| --- | --- |
| Número de comando | 205 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
index 74e57f4f3589cd..c68c7ec4401df6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ Recuerde que una selección temporal es una representación de una selección de
| | |
| --- | --- |
| Número de comando | 332 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
index fec48dc80420e3..b139afbaecbee7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ El siguiente ejemplo utiliza [LOAD SET](load-set.md "LOAD SET") para cargar un c
| | |
| --- | --- |
| Número de comando | 118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
index c85a8365659435..f1bf6f7a015a4e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
@@ -46,6 +46,6 @@ El siguiente ejemplo busca facturas específicas. Si el usuario actual está en
| | |
| --- | --- |
| Número de comando | 338 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
index 3d8db1ed51c09a..bc1636160d1f15 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ Este concepto permite conservar un backup de usuarios en la base e implementar u
| | |
| --- | --- |
| Número de comando | 849 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
index d1c5f6e83e4afa..4b57212f3153f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ En el [Método base On 4D Mobile Authentication](metodo-base-on-4d-mobile-authen
| | |
| --- | --- |
| Número de comando | 638 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
index 65394261a812eb..259c9a91413159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Tenga en cuenta que cuando OK toma el valor 0, la transacción automáticamente
| | |
| --- | --- |
| Número de comando | 240 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
index 87966b5a835563..746db1b2d3482a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ Desea obtener la suma de todos los valores numéricos en una colección:
| | |
| --- | --- |
| Número de comando | 1509 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
index 29099182262fb9..38116610f4a6f5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
@@ -142,7 +142,7 @@ Después de añadir estos métodos a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 532 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
index afbea109c5cd52..a8887174593e9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
@@ -64,6 +64,6 @@ El siguiente ejemplo lee un array proceso desde el proceso indicado por *$vlProc
| | |
| --- | --- |
| Número de comando | 635 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
index 0e040ac9cd72e7..c9565ece11d2cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Este ejemplo permite obtener la varianza de valores ubicados en un array:
| | |
| --- | --- |
| Número de comando | 27 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
index 505272c4038fe0..192eee9ff2783a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 1008 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
index 251b195c1212ad..8c115f9fefc78a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
@@ -175,5 +175,5 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 939 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
index d19802bb6125b7..c31b3b2b951d56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Este ejemplo verifica un hash de contraseña creado previamente por [Generate pa
| | |
| --- | --- |
| Número de comando | 1534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
index 1c79b1998b6336..3647b89cab617a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prueba permite ejecutar código diferente dependiendo de que versión es un
| | |
| --- | --- |
| Número de comando | 495 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
index f1fd611a074b5b..35947bd4b0785c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ Una vez se añade este método de proyecto a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 472 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
index ec91e4644b2365..42597756819530 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ Utilizando un área de desplazamiento llamada *atVolumenes,* usted quiere mostra
| | |
| --- | --- |
| Número de comando | 471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
index e8423fa3e9c71e..85a1c300c96d38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1026 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
index dcb8ff465efb3b..5a19d5dbf6cb0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ El siguiente código puede estar asociado con un botón 3D con menú pop up llam
| | |
| --- | --- |
| Número de comando | 1049 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
index e66d96a9c90dda..088d2ba979584d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
@@ -108,6 +108,6 @@ Luego puede evaluar el código JavaScript desde 4D:
| | |
| --- | --- |
| Número de comando | 1029 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
index 7ff47bcdbbecac..3a16e4e9637350 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ La función JavaScript "getCustomerInfo" recibe un número ID como parámetro y
| | |
| --- | --- |
| Número de comando | 1043 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
index 01a82e9f847648..4e2ba3faf845bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1027 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
index a24ef0befa5050..b36c04ce75ee23 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ La página mostrada es el URL "www.apple.com" y la página "www.4dhispano.com" e
| | |
| --- | --- |
| Número de comando | 1025 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
index 9b96ce204634ea..fb276ef6fda5d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET EXTERNAL LINKS FILTERS](wa-set
| | |
| --- | --- |
| Número de comando | 1033 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
index 1183a1dcd95028..203ea99a6709c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ Es recomendable llamar este comando en el contexto de los eventos de formulario
| | |
| --- | --- |
| Número de comando | 1035 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
index 27fa68327ed12d..675fb0788f1727 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
@@ -44,6 +44,6 @@ Es recomendable llamar este comando dentro del marco del evento de formulario On
| | |
| --- | --- |
| Número de comando | 1034 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
index c92b8eb32a937f..a1bf223074d66b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si el contenido de la página actual no
| | |
| --- | --- |
| Número de comando | 1038 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
index f60f1029a02a8c..62bdd7032329c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si no hay título disponible para el URL
| | |
| --- | --- |
| Número de comando | 1036 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
index bcf2b39022b942..eca215102639ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
@@ -39,6 +39,6 @@ Pase en el parámetro *valor* una variable que recibirá el valor actual de la p
| | |
| --- | --- |
| Número de comando | 1042 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
index 5cbc584289205e..daae4cf3b68a72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET URL FILTERS](wa-set-url-filter
| | |
| --- | --- |
| Número de comando | 1031 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
index b68ffc1eb074ea..88f86d793e1cc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ Si se pasa, el parámetro *arrTitulos* contiene la lista de los nombres de venta
| | |
| --- | --- |
| Número de comando | 1048 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
index 82c33bf8055884..796bc63776afd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ Si no hay un URL precedente, el comando no hace nada. Puede probar la disponibil
| | |
| --- | --- |
| Número de comando | 1021 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
index 775aa8d125320f..a1b035e0f3d65a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ Si no hay un URL siguiente (es decir, si el usuario no ha regresado al URL anter
| | |
| --- | --- |
| Número de comando | 1022 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
index e05c9a7e849f25..867332de00a1de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Es equivalente a:
| | |
| --- | --- |
| Número de comando | 1020 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
index cac340caaf37f9..77596b6e344e7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1736 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
index 507747793b7dc3..7e88fe4ad9bf3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1023 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
index 4a48cab2e6e736..aaf83864a4bf91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
@@ -102,7 +102,7 @@ La variable del sistema OK se define en 0 si se ha alcanzado el tiempo de espera
| | |
| --- | --- |
| Número de comando | 1727 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
index 4cd2c2c30ff879..997f3ae976d222 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
@@ -80,6 +80,6 @@ Este ejemplo combina los filtros de sitios y de enlaces externos:
| | |
| --- | --- |
| Número de comando | 1032 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
index 0dbd5c2b7450c5..14a623d6123415 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
@@ -51,6 +51,6 @@ Mostrar la frase "¡Hola mundo!" y definición de un URL de base "file:///" base
| | |
| --- | --- |
| Número de comando | 1037 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
index 069f5b3cc91edd..6a7e674213a026 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ Para activar la URL suéltela en el área web 'myarea':
| | |
| --- | --- |
| Número de comando | 1041 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
index 301ead144729c9..d9d6961127a731 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
@@ -161,6 +161,6 @@ Usted quiere negar el acceso a direcciones IP específicas:
| | |
| --- | --- |
| Número de comando | 1030 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
index c6c78cf8aeb8bf..972626d84cc959 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1024 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
index a93619b3554cbd..2c9900da9fd662 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1039 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
index b087afb0fefe89..41a5d9418e6af7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1040 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
index 81c86f791d37c5..4cc17822b5a935 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte el ejemplo del comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número de comando | 1211 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
index 0ba030d663fcef..c24430e8ebe84f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Este es el código del método GetFile:
| | |
| --- | --- |
| Número de comando | 1212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
index 5cd5f81b7fc506..7b7d416d3e0e3a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si este comando se llama fuera del contexto de una sesión web, devuelve una cad
| | |
| --- | --- |
| Número de comando | 1162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
index 8abfb6da484aec..7cb8269fd4e4cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Cuando el formulario se envia al servidor web, la variable $textoSolicitud recib
| | |
| --- | --- |
| Número de comando | 814 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
index fe5c31dfdcc6cf..491cc17f297710 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
@@ -124,6 +124,6 @@ On Web Connection):
| | |
| --- | --- |
| Número de comando | 697 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
index 8ad5defd352c28..833cd7b2de083c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Cuando utiliza el *selector* Web debug log, puede recibir una de las siguientes
| | |
| --- | --- |
| Número de comando | 1209 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
index d5de85b04ffdd4..c2e695fb2467d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
@@ -134,6 +134,6 @@ Después de ejecutar el siguiente código:
| | |
| --- | --- |
| Número de comando | 1531 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
index 0e660647d8dba7..91cf0d48f6570d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
@@ -65,6 +65,6 @@ Puede enviar la página "stats.shtm" utilizando un enlace URL o utilizando el co
| | |
| --- | --- |
| Número de comando | 658 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
index 035f5bcb4ba7fa..61931876a975f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
@@ -70,6 +70,6 @@ La variable vNOMBRE contiene ROBERTO y vCIUDAD contiene PARIS.
| | |
| --- | --- |
| Número de comando | 683 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
index 1130d0abef850b..0b896843de599c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por ejemplo, rechazar los intentos de conexión en modo no
| | |
| --- | --- |
| Número de comando | 698 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
index 298cd294c4b4f8..2867d8d1f6cadb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Usted quiere verificar que el servidor web se está ejecutando:
| | |
| --- | --- |
| Número de comando | 1313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
index d27bfb964bd8c2..1a12efddb780cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Después de la ejecución de este comando, si un cliente web envía una petició
| | |
| --- | --- |
| Número de comando | 1208 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
index e50d714a8e664f..1d8fe87e12fea0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ El parámetro *fechaVenc* recibe la fecha de vencimiento y el parámetro *horaVe
| | |
| --- | --- |
| Número de comando | 1207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
index 328aea1c3d3637..2a80d09aa87f12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
@@ -43,6 +43,6 @@ Consulte el ejemplo de la rutina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número de comando | 654 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
index 670c6171602d73..23fa695975f479 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
@@ -56,7 +56,7 @@ Si el archivo a enviar existe y si el timeout no ha pasado, OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 619 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
index 4ab1872991f1ee..291533f39731fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ En el [On Web Connection](./on-web-connection-database-method.md), inserte el si
| | |
| --- | --- |
| Número de comando | 659 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
index 0b0996e4c0207f..f0c55bc8517f0a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
@@ -87,6 +87,6 @@ Este ejemplo ilustra el uso de la opción chunked con el comando **WEB SEND RAW
| | |
| --- | --- |
| Número de comando | 815 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
index f3572dfb85ce77..8264b5c19b2ef9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
@@ -50,6 +50,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 677 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
index 9b101f70af9f06..a2ba19d81648ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ Autenticación con un servicio web ubicado detrás de un proxy:
| | |
| --- | --- |
| Número de comando | 786 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
index 579b0882ccc254..f61b5a418b60d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
@@ -167,7 +167,7 @@ Si la petición se enruta correctamente y el servicio web la acepta, la variable
| | |
| --- | --- |
| Número de comando | 778 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
index cd1ffd9db35e5e..fb2635e1cff8f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
@@ -36,6 +36,6 @@ Se devuelve una cadena vacía cuando no hay información disponible, en particul
| | |
| --- | --- |
| Número de comando | 780 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
index f0c3ba05cb6e97..cef03e9d4ac8d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
@@ -53,6 +53,6 @@ Imagine un servicio web que devuelve la hora actual en cualquier ciudad del mund
| | |
| --- | --- |
| Número de comando | 779 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
index a1c472a564463e..116c9504910a67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
@@ -68,6 +68,6 @@ Utilización de la versión 1.2 del protocolo SOAP:
| | |
| --- | --- |
| Número de comando | 901 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
index 557e0434c1b28c..df6e47c370673d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
@@ -78,6 +78,6 @@ Este ejemplo define dos parámetros:
| | |
| --- | --- |
| Número de comando | 777 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
index 4fba27a8756267..c390325110e3bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Para no enviar *pagInicio* como página de inicio para el proceso web actual, ej
| | |
| --- | --- |
| Número de comando | 639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
index af1e6776c955e6..fa29a8f8ca7104 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
@@ -71,6 +71,6 @@ Los campos **Date** y **Content-Length** siempre son definidos por defecto por 4
| | |
| --- | --- |
| Número de comando | 660 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
index b6dfff24ec09f3..2d9b336087f0a7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
@@ -86,6 +86,6 @@ Una entrada registrada se ve así:
| | |
| --- | --- |
| Número de comando | 5 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
index b1b00c69c26f8b..75143692a6a367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
@@ -44,7 +44,7 @@ Si especifica una ruta de acceso invalida, se generará un error del administrad
| | |
| --- | --- |
| Número de comando | 634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
index 9151137c4193ca..de531f67c5c726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si el servidor web se inicia correctamente, OK toma el valor *1*; de lo contrari
| | |
| --- | --- |
| Número de comando | 617 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
index b5f085b99eaba9..c4715951c1d3db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si el servidor web no se ha iniciado, el comando no hace nada.
| | |
| --- | --- |
| Número de comando | 618 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
index df247498ec4412..07c5411d3a6c9b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Ejemplo de método de base On Web Authentication en modo Digest:
| | |
| --- | --- |
| Número de comando | 946 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
index 671ac6aa3f3fa8..33b33489cb2050 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 445 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
index 958d3bae9dc56b..cf3d8181d4d1bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ El siguiente método de proyecto coloca en mosaico todas las ventanas abiertas a
| | |
| --- | --- |
| Número de comando | 442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
index 1a34c745ae6c91..69716dc09d0456 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Si omite el parámetro *ventana*, Window process devuelve el número del proceso
| | |
| --- | --- |
| Número de comando | 446 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
index 4e9ca076b6daf1..d82095a479721c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
index 7ccb9dc3f99fa5..cd0de2e960a0bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
index 7e6f4e08db969e..193717f7418f33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
@@ -56,7 +56,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 680 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
index 3ab05a4697429f..c9a68d73dd286b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
@@ -82,6 +82,6 @@ Ejemplo del documento XML:
| | |
| --- | --- |
| Número de comando | 1091 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
index f419f46e4da9d3..4ff38edb074260 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 732 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
index 01d1b65f51bf9c..a0a1addec1989e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ En *selector*, pase una de las constantes del tema *XML* indicando la opción a
| | |
| --- | --- |
| Número de comando | 1096 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
index 765ce7f7c054a2..0196480abda425 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
@@ -75,6 +75,6 @@ Inserción de una imagen SVG:
| | |
| --- | --- |
| Número de comando | 1090 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
index 5602f35fc14ee8..0f60540e3c81b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 25 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
index c0840cd6de402c..eb7f91af01870b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parámetros | Tipo | | Descripción |
| ---------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Información sobre la licencia activa |
+| Resultado | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ Desea obtener información sobre su licencia actual de 4D Server:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
index e0fe65323178a0..2e5319d735ae2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,7 +49,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
+| lk hor scrollbar height | 3 | Altura en píxeles (solo se puede leer)
Aplica a: List box |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Ancho en píxeles (solo se puede leer)
Aplica a: List box |
\* These properties only apply to list box columns; if you pass a list box as parameter with one of these properties, **LISTBOX Get property** returns -1, or an empty string, depending on the *property* passed.
@@ -105,9 +104,9 @@ Dado un list box "MyListbox", si ejecuta la siguiente instrucción:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 917 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | --- |
+| Número de comando | 917 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
index 26236b6a1d6836..eb6d6ae50ce942 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,21 +49,17 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
| lk named selection | 28 | **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** property for selection type list box
Applies to: List box |
| lk resizing mode | 11 | **[Column Auto-Resizing](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)** property
Applies to: List box
Possible values:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unit of **[Row Height](../FormObjects/properties_CoordinatesAndSizing.md#row-height)** property
Applies to: List box
Possible values:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
| lk selection mode | 10 | **[Selection Mode](../FormObjects/properties_ListBox.md#selection-mode)** property
Applies to: List box
Possible values:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
\* These properties can only be applied to list box columns; however, if you pass a list box as parameter, **LISTBOX SET PROPERTY** applies the *property* to each column of the list box.
@@ -90,9 +88,9 @@ Desea definir un ancho máximo para la columna cuyo nombre es "ProductNumber":
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1440 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1440 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/process-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/process-activity.md
index 44a364190a3d99..0187da14432e45 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/process-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/process-activity.md
@@ -57,7 +57,7 @@ La propiedad "sessions" contiene una colección de objetos que describen todas l
:::note Notas
- Puede obtener el objeto de una sesión utilizando el comando [Session](session.md).
-- `Process activity` returns remote client sessions, stored procedure session and rest sessions but not Web sessions (limitation).
+- `Process activity` devuelve sesiones de clientes remotos, sesiones de procedimientos almacenados y sesiones restantes pero no sesiones Web (limitación).
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/theme/Collections.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/theme/Collections.md
index 02d4a039e49cd8..248cd1cfca6c8a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/theme/Collections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/commands/theme/Collections.md
@@ -1,6 +1,6 @@
---
id: Collections_theme
-title: Collections
+title: Colecciones
slug: /commands/theme/Collections
---
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/settings/web.md b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/settings/web.md
index 060f745580ee32..87bbf0681203ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20-R10/settings/web.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20-R10/settings/web.md
@@ -292,7 +292,7 @@ Inicia y detiene el servidor REST. Ver [Configuración del servidor REST](../RES
:::
-See [Users and sessions](../REST/authUsers.md) to know the recommended way to control and manage REST access in your 4D projects.
+Ver [Usuarios y sesiones](../REST/authUsers.md) para conocer la forma recomendada de controlar y administrar el acceso REST en sus proyectos 4D.
#### Activar la autenticación REST mediante la función ds.authentify()
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md
index 39526eaad9b45e..208d9e47c334e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/API/CryptoKeyClass.md
@@ -49,7 +49,7 @@ Para obtener una visión general de esta clase, consulte la página [**CryptoKey
| Resultado | 4D.CryptoKey | <- | Objeto que encapsula un par de llaves de cifrado |
-La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, basado en el parámetro objeto *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition.
+La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, basado en el parámetro objeto *settings*. Permite generar una nueva llave RSA o ECDSA, o cargar un par de llaves existente desde una definición PEM.
#### *settings*
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/Admin/cli.md b/i18n/es/docusaurus-plugin-content-docs/version-20/Admin/cli.md
index 69fcca15eec530..867d9b1a31616c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/Admin/cli.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/Admin/cli.md
@@ -55,7 +55,7 @@ Sintaxis:
| `--skip-onstartup` | | Lanza el proyecto sin ejecutar ningún método "automático", incluidos los métodos base `On Startup` y `On Exit` |
| `--startup-method` | Nombre del método proyecto (cadena) | Método proyecto a ejecutar inmediatamente después del método base `On Startup` (si no se omite con `--skip-onstartup`). |
-[Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (licence alert, conversion dialog, database selection, data file selection). En este caso, se lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema, y luego la aplicación se cierra.
+(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). En este caso, se lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema, y luego la aplicación se cierra.
### Ejemplos
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md b/i18n/es/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
index ab7ff43b7f7872..0620f4f460aaef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
@@ -75,7 +75,7 @@ El operador modulo % devuelve valores significativos con números que están en
### División entera
-The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` is equivalent to `Int(a/b)`. This operator returns significant values with integer numbers only.
+The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. Este operador devuelve valores significativos sólo con números enteros.
### Comparación real
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/Desktop/building.md b/i18n/es/docusaurus-plugin-content-docs/version-20/Desktop/building.md
index af43e127423961..1e37af6a0867fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/Desktop/building.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/Desktop/building.md
@@ -408,8 +408,8 @@ Los elementos deben ser instalados:
Para activar esta funcionalidad, añada las llaves `DatabaseToEmbedInClientWinFolder` y/o `DatabaseToEmbedInClientMacFolder` en el archivo de configuración *buildApp*. Cuando una de estas llaves está presente, el proceso de generación de la aplicación cliente genera una aplicación monopuesto: la estructura compilada, en lugar del archivo *EnginedServer.4Dlink*, se coloca en la carpeta "Database".
-* Si existe una carpeta de datos por defecto en la aplicación monopuesto, se integra una licencia.
-* Si no existe una carpeta de datos por defecto en la aplicación monopuesto, ésta se ejecutará sin archivo de datos y sin licencia.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
El escenario básico es:
@@ -501,7 +501,7 @@ Los siguientes módulos opcionales pueden ser deseleccionados:
## Página licencias y certificados
-La página de Licencias y certificados puede utilizarse para:
+The Licenses & Certificate page can be used to:
* designe el número o los números de licencia que desea integrar en su [aplicación ejecutable monopuesto](#application-page),
* firmar la aplicación mediante un certificado en macOS.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
index 11722f4b1f8387..9124bd27a46ad8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
@@ -187,12 +187,21 @@ La comunicación entre el formulario padre y las instancias del subformulario pu
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### Comando CALL SUBFORM CONTAINER {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. El evento se recibe en el método del objeto contenedor. Puede estar en el origen de todo evento detectado por el subformulario (clic, arrastrar y soltar, etc.).
El código del evento no tiene restricciones (por ejemplo, 20000 o -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. En el primer caso, sólo puede utilizar los eventos que haya marcado en la lista de propiedades para los contenedores de subformulario. En el segundo caso, el código no debe corresponder a ningún evento de formulario existente. Se recomienda utilizar un valor negativo para asegurarse de que este código no será utilizado por 4D en futuras versiones.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/REST/configuration.md b/i18n/es/docusaurus-plugin-content-docs/version-20/REST/configuration.md
index ea12d7fccaa24e..d2f0298710ba8d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/REST/configuration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/REST/configuration.md
@@ -7,7 +7,7 @@ Utilizando peticiones HTTP estándar, el servidor 4D REST permite a las aplicaci
Para comenzar a utilizar las funcionalidades REST, es necesario iniciar y configurar el servidor 4D REST.
-> - En 4D Server, para abrir una sesión REST es necesario disponer de una licencia cliente 4D gratuita.
+> - En 4D Server, para abrir una sesión REST es necesario disponer de una licencia gratuita cliente 4D.
> - En 4D monopuesto, puede abrir hasta tres sesiones REST para realizar pruebas.
> - Debe gestionar la [sesión](authUsers.md) para su aplicación solicitante.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md b/i18n/es/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
index 2cb3d147e06b2b..248ee266012e14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
@@ -35,7 +35,7 @@ El área "Visión general" ofrece diferente información sobre el sistema, la ap

-Generalmente, tendrá que verificar el [**Administrador de licencias**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalles
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/API/CryptoKeyClass.md b/i18n/es/docusaurus-plugin-content-docs/version-21/API/CryptoKeyClass.md
index 73a64cd7179651..e864d777b34cb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/API/CryptoKeyClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/API/CryptoKeyClass.md
@@ -50,7 +50,7 @@ Para obtener una visión general de esta clase, consulte la entrada del blog [**
-La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. It allows to generate a new RSA or ECDSA key, or to load an existing key pair from a PEM definition.
+La función `4D.CryptoKey.new()` crea un nuevo objeto `4D.CryptoKey` que encapsula un par de llaves de cifrado, en función del parámetro *settings*. Permite generar una nueva llave RSA o ECDSA, o cargar un par de llaves existente desde una definición PEM.
#### *settings*
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/API/SessionClass.md b/i18n/es/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
index 53e8a1a9ceea1b..c3bbfb0339223d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
@@ -3,7 +3,7 @@ id: SessionClass
title: Session
---
-Los objetos de sesión son devueltos por el comando [`Session`](../commands/session.md). Estos objetos ofrecen al desarrollador una interfaz que permite gestionar la sesión de usuario actual y ejecutar acciones como almacenar datos contextuales, compartir información entre procesos de sesión, lanzar procesos preferentes relacionados con la sesión o (sólo web) gestionar [privilegios](../ORDA/privileges.md).
+Los objetos de sesión son devueltos por el comando [`Session`](../commands/session.md). Estos objetos ofrecen al desarrollador una interfaz que permite gestionar la sesión actual y ejecutar acciones como almacenar datos contextuales, compartir información entre procesos de sesión, lanzar procesos preferentes relacionados con la sesión o (sólo contexto web) gestionar [privilegios](../ORDA/privileges.md).
:::tip Entradas de blog relacionadas
@@ -17,14 +17,15 @@ Los objetos de sesión son devueltos por el comando [`Session`](../commands/sess
Los siguientes tipos de sesiones están soportados por esta clase:
-- [**Sesiones usuario web**](WebServer/sessions.md): las sesiones usuario web están disponibles cuando [las sesiones escalables están activas en su proyecto](WebServer/sessions.md#enabling-web-sessions). Se utilizan para conexiones Web y REST, y se les pueden asignar privilegios.
-- [Sesiones usuario cliente remoto\*\*](../Desktop/clientServer.md#remote-user-sessions): en las aplicaciones cliente/servidor, los usuarios remotos tienen sus propias sesiones gestionadas en el servidor.
-- [**Sesión de procedimientos almacenados**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): todos los procedimientos almacenados ejecutados en el servidor comparten la misma sesión usuario virtual.
-- [**Sesión independiente**](../Project/overview.md#development): objeto de sesión local devuelto en una aplicación de un solo usuario (útil en las fases de desarrollo y prueba de aplicaciones cliente/servidor).
+- [**Sesiones usuario web**](WebServer/sessions.md): las sesiones usuario web están disponibles cuando [las sesiones escalables están activas en su proyecto](WebServer/sessions.md#enabling-web-sessions). Se utilizan para las conexiones Web (incluidos los accesos REST) y se controlan mediante los [privilegios](../ORDA/privileges.md) asignados.
+- [**Sesiones de escritorio**](../Desktop/sessions.md), que incluyen:
+ - [Sesiones usuario remoto\*\*](../Desktop/sessions.md#remote-user-sessions): en las aplicaciones cliente/servidor, los usuarios remotos tienen sus propias sesiones gestionadas en el servidor.
+ - [Sesiones procedimientos almacenados\*\*](../Desktop/sessions.md#stored-procedure-sessions): sesión usuario virtual para todos los procedimientos almacenados ejecutados en el servidor.
+ - [**Sesiones autónomas**](../Desktop/sessions.md#standalone-sessions): sesión local devuelta en una aplicación mono usuario (útil en las fases de desarrollo y de prueba de las aplicaciones cliente/servidor).
-:::note
+:::warning Acerca de los privilegios de sesión
-La disponibilidad de las propiedades y funciones del objeto `Session` depende del tipo de sesión.
+Todos los tipos de sesión pueden manejar los privilegios, pero solo el código ejecutado en las [sesiones usuario web](WebServer/sessions.md) está realmente controlado por los privilegios de sesión.
:::
@@ -54,10 +55,10 @@ La disponibilidad de las propiedades y funciones del objeto `Session` depende de
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | --------------------------- |
-| 21 | Soporte de sesiones remotas |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------------- |
+| 21 | Soporte de sesiones remotas y autónomas |
+| 18 R6 | Añadidos |
@@ -73,33 +74,27 @@ La disponibilidad de las propiedades y funciones del objeto `Session` depende de
#### Descripción
-:::note
-
-Esta función no hace nada y siempre devuelve **True** con sesiones de procedimientos almacenadas y sesiones independientes.
-
-:::
-
La función `.clearPrivileges()` elimina todos los privilegios asociados a la sesión (excluyendo privilegios promocionados)y devuelve **True** si la ejecución se ha realizado correctamente.
-A menos que esté en modo ["forceLogin"](../REST/authUsers.md#force-login-mode), la sesión se convierte automáticamente en una sesión de Invitado. En modo "forceLogin", `.clearPrivileges()` no transforma la sesión a una sesión de invitado, sólo elimina los privilegios de la sesión.
-
:::note
Esta función no elimina los **privilegios promovidos** del proceso web, tanto si se han añadido a través del archivo [roles.json](../ORDA/privileges.md#rolesjson-file) como de la función [`promote()`](#promote).
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Tenga en cuenta que los privilegios sólo se aplican al código ejecutado a través de accesos web, sea cual sea el [tipo de sesión](#session-types) sobre el que se ejecuta esta función.
+:::
#### Ejemplo
```4d
-//Invalidar una sesión usuario web
+//Invalidar la sesión de un usuario web
var $isGuest : Boolean
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest es True
```
@@ -110,10 +105,10 @@ $isGuest:=Session.isGuest() //$isGuest es True
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | --------------------------- |
-| 21 | Soporte de sesiones remotas |
-| 20 R9 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------------- |
+| 21 | Soporte de sesiones remotas y autónomas |
+| 20 R9 | Añadidos |
@@ -121,33 +116,28 @@ $isGuest:=Session.isGuest() //$isGuest es True
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------- | :-------------------------: | --------------------------------------------------- |
-| lifespan | Integer | -> | Duración de la vida del token de sesión en segundos |
-| Resultado | Text | <- | UUID del token |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------- | :-------------------------: | ------------------------------------------------------------------------------- |
+| lifespan | Integer | -> | Duración del token de sesión en segundos (solo sesiones web) |
+| Resultado | Text | <- | UUID del token |
#### Descripción
-:::note
-
-Esta función está disponible con sesiones usuario web y sesiones remotas. Devuelve una cadena vacía en procedimientos almacenados y sesiones independientes.
-
-:::
-
La función `.createOTP()` crea un nuevo OTP (One Time Passcode) para la sesión y devuelve su token UUID. Este token es único en la sesión en la que fue generado.
Para más información sobre los tokens OTP, por favor consulte [esta sección](../WebServer/sessions.md#session-token-otp).
-Puede definir un tiempo de espera personalizado pasando un valor en segundos en *lifespan*. Si se utiliza un token caducado para restaurar la sesión, se ignora. Por defecto, si el parámetro *lifespan* se omite:
+Si se utiliza un token caducado para restaurar la sesión, se ignora.
+
+Para las sesiones web, puede definir un tiempo de espera personalizado pasando un valor en segundos en *lifespan*. Por defecto, si se omite el parámetro *lifespan*, el token se crea con el mismo tiempo de vida que el [`.idleTimeOut`](#idletimeout) de la sesión.
-- con sesiones de usuario web, el token se crea con el mismo espacio de vida que el [`.idleTimeOut`](#idletimeout) de la sesión.
-- con sesiones remotas, el token se crea con una duración de 10 segundos.
+Para las sesiones de escritorio, el token se crea con una vida útil de 10 segundos.
-Para las **sesiones usuario web**, el token devuelto puede ser utilizado en intercambios con las aplicaciones de terceros o sitios web para identificar la sesión de forma segura. Por ejemplo, el token OTP de sesión se puede utilizar con una aplicación de pago.
+El token devuelto puede ser utilizado en intercambios con aplicaciones de terceros o sitios web para identificar la sesión de forma segura. Por ejemplo, el token OTP de sesión se puede utilizar con una aplicación de pago.
-Para las **sesiones remotas**, el token devuelto puede ser utilizado en 4D Server para identificar las solicitudes provenientes de un [4D remoto ejecutando formularios Qodly en un área Web](../Desktop/clientServer.md#remote-user-sessions).
+El token devuelto puede ser utilizado por 4D Server o la aplicación monousuario 4D para identificar las peticiones procedentes de la web que [comparten la sesión](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Ejemplo
@@ -182,12 +172,6 @@ $token := Session.createOTP( 60 ) //el token es válido durante 1 mn
#### Descripción
-:::note
-
-Esta función no hace nada en las sesiones cliente remoto, procedimientos almacenados y autónomos.
-
-:::
-
La función `.demote()` elimina del proceso web el privilegio promocionado cuyo id pasó en *promoteId*, si fue añadido previamente por la función [`.promote()`](#promote).
Si ningún privilegio con *promoteId* fue promovido usando [`.promote()`](#promote) en el proceso web, la función no hace nada.
@@ -262,10 +246,10 @@ $expiration:=Session.expirationDate //eg "2021-11-05T17:10:42Z"
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ----------------------------------- |
-| 21 | Soporte de sesiones cliente remotas |
-| 20 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------------- |
+| 21 | Soporte de sesiones remotas y autónomas |
+| 20 R6 | Añadidos |
@@ -289,9 +273,10 @@ Esta función devuelve los privilegios asignados a una Sesión utilizando única
:::
-Con las sesiones de clientes remotos, los privilegios sólo se refieren al código ejecutado en el contexto de una [solicitud web enviada a través de un área Web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Con las sesiones de procedimiento almacenadas y sesiones independientes, esta función devuelve una colección que sólo contiene "WebAdmin".
+Tenga en cuenta que los privilegios sólo se aplican al código ejecutado a través de accesos web, sea cual sea el [tipo de sesión](#session-types) sobre el que se ejecuta esta función.
+:::
#### Ejemplo
@@ -360,10 +345,10 @@ $privileges := Session.getPrivileges()
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------------------------- |
-| 21 | Devuelve True para privilegios promocionados, Soporte de sesiones de clientes remotas |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | ---------------------------------------------------------------------------------- |
+| 21 | Devuelve True para privilegios promovidos, Soporte de sesiones remotas y autónomas |
+| 18 R6 | Añadidos |
@@ -388,26 +373,27 @@ Esta función devuelve True para el *privilegio* si se llama desde una función
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Con las sesiones de procedimiento almacenadas y las sesiones independientes, esta función siempre devuelve True, sea cual sea el *privilegio*.
+Tenga en cuenta que los privilegios sólo se aplican al código ejecutado a través de accesos web, sea cual sea el [tipo de sesión](#session-types) sobre el que se ejecuta esta función.
+:::
#### Ejemplo
-Quiere comprobar si el privilegio "WebAdmin" está asociado a la sesión usuario web:
+Desea verificar si el privilegio "CreateInvoices" está asociado a la sesión del usuario web:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Acceso concedido, no hacer nada
+If (Session.hasPrivilege("CreateInvoices"))
+ //Acceso a las funciones de creación de facturas
Else
- //Mostrar una página de autenticación
+ //Sin acceso a las funciones de creación de facturas
End if
```
#### Ver también
-[*Publicaciones de blog sobre esta funcionalidad*](https://blog.4d.com/?s=hasPrivilege)
+[*Restringir datos según privilegios o información guardada en almacenamiento de sesión* (entrada de blog)](https://blog.4d.com/?s=hasPrivilege)
@@ -445,8 +431,7 @@ Puede utilizar esta propiedad para obtener el objeto [`.storage`](#storage) de u
| Lanzamiento | Modificaciones |
| ----------- | -------------- |
-
-|18 R6|Añadido|
+| 18 R6 | Añadidos |
@@ -501,26 +486,16 @@ End if
#### Descripción
-:::note
-
-Esta propiedad solo está disponible con clientes remotos, procedimientos almacenados y sesiones independientes.
-
-:::
+La propiedad `.info` describe la sesión de escritorio o web.
-La propiedad `.info` describe la sesión del cliente remoto o del procedimiento almacenado en el servidor, o la sesión autónoma.
-
-:::note
-
-- El objeto `.info` es el mismo objeto que el devuelto en la propiedad "session" por el comando [`Process activity`](../commands/process-activity.md) para sesiones de cliente remoto y procedimientos almacenados.
-- El objeto `.info` es el mismo que devuelve el comando [`Session info`](../commands/session-info.md) para una sesión autónoma.
-
-:::
+- **Sesiones remotas** y **Sesiones de procedimientos almacenados**: el objeto `.info` es el mismo objeto que el devuelto en la propiedad "session" por el comando [`Process activity`](../commands/process-activity.md).
+- **Sesiones estándar**: el objeto `.info` es el mismo objeto que el devuelto por el comando [`Session info`](../commands/session-info.md).
El objeto `.info` contiene las siguientes propiedades:
| Propiedad | Tipo | Descripción |
| ---------------- | ------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | Tipo de sesión: "remote", "storedProcedure", "standalone" |
+| type | Text | Tipo de sesión: "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nombre de usuario 4D (mismo valor que [`.userName`](#username)) |
| machineName | Text | Sesiones remotas: nombre de la máquina remota. Sesión de procedimientos almacenados: nombre del equipo servidor. Sesión autónoma: nombre de la máquina |
| systemUserName | Text | Sesiones remotas: nombre de la sesión del sistema abierta en la máquina remota. |
@@ -555,9 +530,9 @@ Dado que `.info` es una propiedad calculada, se recomienda llamarla una vez y lu
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------- | :-------------------------: | -------------------------------------------------------------- |
-| Resultado | Boolean | <- | True si la sesión es una sesión Guest, False en caso contrario |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------- | :-------------------------: | ------------------------------------------------------------------------------------------------ |
+| Resultado | Boolean | <- | True si la sesión es de invitado, False en caso contrario (sólo sesiones web) |
@@ -565,11 +540,17 @@ Dado que `.info` es una propiedad calculada, se recomienda llamarla una vez y lu
:::note
-Esta función siempre devuelve **False** con clientes remotos, procedimientos almacenados y sesiones independientes.
+Esta función siempre devuelve **False** con sesiones de escritorio.
:::
-La función `.isGuest()` devuelve True si la sesión es una sesión Guest (es decir, no tiene privilegios).
+La función `.isGuest()` devuelve True mientras no se llame a `setPrivileges()` en la sesión o después de que se haya ejecutado un [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) en la sesión.
+
+:::note Compatibilidad
+
+En una sesión REST cuando el modo [**Forzar inicio de sesión**](../REST/authUsers.md#force-login-mode) no está activado, `.isGuest()` devuelve True si la sesión no tiene privilegios.
+
+:::
#### Ejemplo
@@ -608,12 +589,6 @@ End if
#### Descripción
-:::note
-
-Esta función no hace nada en las sesiones cliente remoto, procedimientos almacenados y autónomos.
-
-:::
-
La función `.promote()` añade el privilegio definido en el parámetro *privilege* al proceso actual durante la ejecución de la función de llamada y devuelve el id del privilegio promovido.
La adición dinámica de privilegios es útil cuando los derechos de acceso dependen del contexto de ejecución, que no puede definirse completamente en el archivo "roles.json". Esto es especialmente relevante cuando la misma función puede ser ejecutada por usuarios con diferentes niveles de acceso. El uso de `.promote()` asegura que sólo el proceso actual reciba los privilegios necesarios, sin afectar a otros.
@@ -629,6 +604,11 @@ El id devuelto se incrementa cada vez que un privilegio se añade dinámicamente
Para eliminar un privilegio dinámicamente, llame a la función `demote()` con el id apropiado.
+:::note
+
+Tenga en cuenta que los privilegios sólo se aplican al código ejecutado a través de accesos web, sea cual sea el [tipo de sesión](#session-types) sobre el que se ejecuta esta función.
+:::
+
#### Ejemplo
Varios usuarios se conectan a un único punto final que sirve a distintas aplicaciones. Un usuario de la aplicación #1 no necesita el privilegio "super_admin" porque no crea "VerySensitiveInfo". Un usuario de la aplicación #2 necesita privilegios "super_admin".
@@ -687,12 +667,6 @@ End if
#### Descripción
-:::note
-
-Esta función solo está disponible con sesiones usuario web. Devuelve False en otros contextos.
-
-:::
-
La función `.restore()` sustituye la sesión actual del usuario web por su sesión original correspondiente al *token* UUID. El almacenamiento y los privilegios de la sesión son restaurados.
Si la sesión original del usuario ha sido correctamente restaurada, la función devuelve `true`.
@@ -731,7 +705,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Lanzamiento | Modificaciones |
| ----------- | --------------------------------------------------- |
-| 21 | Soporte de sesiones cliente remotas |
+| 21 | Soporte de sesiones remotas y autónomas |
| 19 R8 | Compatibilidad con la propiedad "roles" en Settings |
| 18 R6 | Añadidos |
@@ -752,12 +726,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Descripción
-:::note
-
-Esta función no hace nada y siempre devuelve **False** con sesiones de procedimientos almacenadas y las sesiones independientes.
-
-:::
-
La función `.setPrivileges()` asocia a la sesión los privilegios y/o roles definidos en el parámetro y devuelve **True** si la ejecución se ha realizado correctamente.
- En el parámetro *privilege*, pase una cadena que contenga un nombre de privilegio (o varios nombres de privilegio separados por comas).
@@ -782,7 +750,10 @@ Por defecto, cuando no hay ningún privilegio o rol asociado a la sesión, la se
La propiedad [`userName`](#username) está disponible a nivel de objeto de sesión (sólo lectura).
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Tenga en cuenta que los privilegios sólo se aplican al código ejecutado a través de accesos web, sea cual sea el [tipo de sesión](#session-types) sobre el que se ejecuta esta función.
+:::
#### Ejemplo
@@ -814,10 +785,10 @@ End if
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------ |
-| 20 R5 | Soporte de cliente remoto y sesiones de procedimientos almacenados |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------- |
+| 20 R5 | Soporte de sesiones de escritorio |
+| 18 R6 | Añadidos |
@@ -839,6 +810,8 @@ Puede obtener la propiedad `.storage` de una sesión utilizando el comando [`Ses
:::
+Cuando una sesión de escritorio y una sesión web son [compartidas usando un OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), también comparten el mismo objeto `.storage`.
+
#### Ejemplo de sesión web
Desea almacenar la IP del cliente en la propiedad `.storage`. Puede escribir en el método base `On Web Authentication`:
@@ -869,10 +842,10 @@ End use
Historia
-| Lanzamiento | Modificaciones |
-| ----------- | ------------------------------------------------------------------ |
-| 20 R5 | Soporte de cliente remoto y sesiones de procedimientos almacenados |
-| 18 R6 | Añadidos |
+| Lanzamiento | Modificaciones |
+| ----------- | --------------------------------- |
+| 20 R5 | Soporte de sesiones de escritorio |
+| 18 R6 | Añadidos |
@@ -882,10 +855,10 @@ End use
La propiedad `.userName` contiene el nombre de usuario asociado a la sesión. Puede utilizarlo para identificar al usuario dentro de su código.
-- Con las sesiones web, esta propiedad es una cadena vacía por defecto. Puede definirse mediante la propiedad `privileges` de la función [`setPrivileges()`](#setprivileges).
-- Con sesiones remotas y de procedimientos almacenados, esta propiedad devuelve el mismo nombre de usuario que el comando [`Current user`](../commands-legacy/current-user.md).
-- Con sesiones independientes, esta propiedad contiene "diseñador" o el nombre definido con el comando [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Sesiones web**: esta propiedad es una cadena vacía por defecto. Puede definirse mediante la propiedad `privileges` de la función [`setPrivileges()`](#setprivileges).
+- **Sesiones de procedimiento remoto/almacenado**: esta propiedad devuelve el mismo nombre de usuario que el comando [`Usuario actual`](../commands-legacy/current-user.md).
+- **Sesiones autónomas**: esta propiedad contiene "designer" o el nombre definido con el comando [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
-Esta propiedad es **solo lectura**.
+Esta propiedad es **sólo de lectura** para las sesiones de escritorio.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormClass.md b/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormClass.md
index e0a2a1330a8f39..bb60aad3a856c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormClass.md
@@ -3,7 +3,7 @@ id: WebFormClass
title: WebForm
---
-The `WebForm` class contains functions and properties allowing to handle your Qodly web page components. Los objetos `4D.WebForm` se instancian con el comando [`webForm`](../commands/web-form.md).
+La clase `WebForm` contiene funciones y propiedades que permiten manejar sus componentes de páginas Qodly. Los objetos `4D.WebForm` se instancian con el comando [`webForm`](../commands/web-form.md).
Historia
@@ -31,9 +31,9 @@ The `WebForm` class contains functions and properties allowing to handle your Qo
#### Descripción
-The components of web pages are objects that are available directly as properties of these web pages.
+Los componentes de las páginas web son objetos que están disponibles directamente como propiedades de estas páginas web.
-The returned objects are of the [`4D.WebFormItem`](WebFormItemClass.md) class. Estos objetos tienen funciones que puede utilizar para gestionar sus componentes de forma dinámica.
+Los objetos devueltos son de la clase [`4D.WebFormItem`](WebFormItemClass.md). Estos objetos tienen funciones que puede utilizar para gestionar sus componentes de forma dinámica.
#### Ejemplo
@@ -43,14 +43,14 @@ shared singleton Class constructor()
var myForm : 4D.WebForm
var component : 4D.WebFormItem
- myForm:=webForm //returns the web page as an object, each property is a component
- component:=myForm.myImage //returns the myImage component of the web page
+ myForm:=webForm //devuelve la página web como un objeto, cada propiedad es un componente
+ component:=myForm.myImage //devuelve el componente myImage de la página web
```
:::info
-While `myForm` may not display typical object properties when examined in the debugger, it behaves as if it were the actual `webForm` object. You can interact with the underlying `webForm` object's properties and functions through `myForm`. For example, you can dynamically manipulate page components or transmit messages to web pages using specialized functions like `myForm.setMessage()`.
+Aunque `myForm` puede no mostrar las propiedades típicas de un objeto cuando se examina en el depurador, se comporta como si fuera el objeto `webForm` real. Puede interactuar con las propiedades y funciones del objeto `webForm` subyacente a través de `myForm`. Por ejemplo, puede manipular dinámicamente los componentes de la página o transmitir mensajes a las páginas web utilizando funciones especializadas como `myForm.setMessage()`.
:::
@@ -68,16 +68,16 @@ While `myForm` may not display typical object properties when examined in the de
#### Descripción
-The `.disableState()` function disables the rendering of the *state* in the current web page.
+La función `.disableState()` desactiva la renderización del *estado* en la página web actual.
Esta función no hace nada si:
-- the *state* is currently not enabled in the web page,
+- el *state* no está habilitado actualmente en la página web,
- el *estado* no existe para la página web.
Si [activa](#enablestate) o desactiva varios estados en la misma función usuario, todas las modificaciones se envían al mismo tiempo al cliente una vez finalizada la función.
-For more information on web pages states, please refer to the [States section in the Qodly documentation](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/states/stateOverview).
+Para más información sobre los estados de las páginas web, consulte la sección [Estados en la documentación de Qodly](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/states/stateOverview).
### .enableState()
@@ -93,16 +93,16 @@ For more information on web pages states, please refer to the [States section in
#### Descripción
-The `.enableState()` function enables the rendering of the *state* in the current web page.
+La función `.enableState()` activa la renderización del *estado* en la página web actual.
Esta función no hace nada si:
-- the *state* has already been enabled on the web page,
+- el *estado* ya ha sido activado en la página web,
- el *estado* no existe para la página web.
Si activa o [desactiva](#disablestate) varios estados dentro de la misma función usuario, todas las modificaciones se envían al mismo tiempo al cliente una vez que la función termina.
-For more information on web page states, please refer to the [States section in the Qodly documentation](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/states/stateOverview).
+Para más información sobre los estados de las páginas web, consulte la sección [Estados en la documentación de Qodly](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/states/stateOverview).
#### Ejemplo
@@ -121,17 +121,17 @@ Function authenticationError()
-| Parámetros | Tipo | | Descripción |
-| ---------- | ------ | :-: | ---------------------------------------- |
-| msg | string | -> | Error message to display in the web page |
+| Parámetros | Tipo | | Descripción |
+| ---------- | ------ | :-: | ------------------------------------------- |
+| msg | string | -> | Mensaje de error a mostrar en la página web |
#### Descripción
-The `.setError()` function sends *msg* as an error message to the web page.
+La función `.setError()` envía *msg* como mensaje de error a la página web.
-The function returns a response with a `200 OK` status and a `__WEBFORM` object in the body with a `__NOTIFICATION.message` property set to *msg* and a `__NOTIFICATION.type` set to "error".
+La función devuelve una respuesta con un estado `200 OK` y un objeto `__WEBFORM` en el cuerpo con una propiedad `__NOTIFICATION.message` definida como *msg* y un `__NOTIFICATION.type` definido como "error".
#### Ejemplo
@@ -146,7 +146,7 @@ myForm.setError("My error message")
```
-If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) feature is enabled for the event, the *message* is automatically displayed as a red *toast* at the bottom of the Page and disappears automatically after 5 seconds:
+Si la funcionalidad [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) está activada para el evento, el *mensaje* se muestra automáticamente como un *toast* rojo en la parte inferior de la página y desaparece automáticamente después de 5 segundos:

@@ -164,9 +164,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
#### Descripción
-The `.setMessage()` function sends *msg* as an information message to the web page.
+La función `.setMessage()` envía *msg* como mensaje de información a la página web.
-The function returns a response with a `200 OK` status and a `__WEBFORM` object in the body with a `__NOTIFICATION.message` property set to *msg* and a `__NOTIFICATION.type` set to "message".
+La función devuelve una respuesta con un estado `200 OK` y un objeto `__WEBFORM` en el cuerpo con una propiedad `__NOTIFICATION.message` definida como *msg* y un `__NOTIFICATION.type` definido como "message".
#### Ejemplo
@@ -181,7 +181,7 @@ myForm.setMessage("My information message")
```
-If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) feature is enabled for the event, the *message* is automatically displayed as a green *toast* at the bottom of the Page and disappears automatically after 5 seconds:
+Si la funcionalidad [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) está activada para el evento, el *mensaje* se muestra automáticamente como un *toast* verde en la parte inferior de la página y desaparece automáticamente después de 5 segundos:

@@ -199,9 +199,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
#### Descripción
-The `.setWarning()` function sends *msg* as a warning message to the web page.
+La función `.setWarning()` envía *msg* como mensaje de advertencia a la página web.
-The function returns a response with a `200 OK` status and a `__WEBFORM` object in the body with a `__NOTIFICATION.message` property set to *msg* and a `__NOTIFICATION.type` set to "warning".
+La función devuelve una respuesta con un estado `200 OK` y un objeto `__WEBFORM` en el cuerpo con una propiedad `__NOTIFICATION.message` definida como *msg* y un `__NOTIFICATION.type` definido como "warning".
#### Ejemplo
@@ -216,7 +216,7 @@ myForm.setWarning("My warning message")
```
-If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) feature is enabled for the event, the *message* is automatically displayed as a yellow *toast* at the bottom of the web page and disappears automatically after 5 seconds:
+Si la funcionalidad [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/events/bindingActionToEvents#providing-feedback) está activada para el evento, el *mensaje* se muestra automáticamente como un *toast* amarillo en la parte inferior de la página web y desaparece automáticamente después de 5 segundos:

diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormItemClass.md b/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormItemClass.md
index c0ebfd153ea5a1..27bf14e1967290 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormItemClass.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/API/WebFormItemClass.md
@@ -7,9 +7,9 @@ La clase `4D.WebFormItem` le permite manejar el comportamiento de sus componente
Los objetos `4D.WebFormItem` son propiedades del objeto [`4D.WebForm`](WebFormClass.md) devuelto por el comando [`Web Form`](../commands/web-form.md).
-When you call the [`Web Form`](../commands/web-form.md) command, the returned `4D.WebForm` proxy object holds as many `4D.WebFormItems` as there are components with [**server-side references**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview#server-side) in your webform.
+Cuando llama al comando [`Web Form`](../commands/web-form.md), el objeto proxy `4D.WebForm` devuelto contiene tantos `4D.WebFormItems` ya que hay componentes con [**referencias servidor**](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview#server-side) en su formulario.
-For example, `WebFormObject.myImage` refers to the image component with `myImage` as server reference.
+Por ejemplo, `WebFormObject.myImage` hace referencia al componente de imagen con `myImage` como referencia del servidor.
Historia
@@ -64,7 +64,7 @@ La función `.hide()` oculta el com
Para llamar a una función que oculta una imagen cuando el usuario hace clic en un botón:
-1. Create an [exposed](../ORDA/ordaClasses.md#exposed-vs-non-exposed-functions) function inside a shared singleton class named `isHidden` that contains the following code:
+1. Crear una función [exposed](../ORDA/ordaClasses.md#exposed-vs-non-exposed-functions) al interior de una clase singleton compartida llamada `isHidden` que contiene el siguiente código:
```4d
@@ -73,11 +73,11 @@ exposed Function isHidden()
var myComponent : 4D.WebFormItem
myComponent:=Web Form.myImage
- myComponent.hide() // Hide the component that has "myImage" as server reference
+ myComponent.hide() // Oculta el componente que tiene "myImage" como referencia servidor.
```
-2. In Qodly Studio: Select the image component on the canvas, and enter a server-side reference in the Properties Panel > Server Side, for example "myImage".
-3. Select the Button component and add an `onclick` event to it.
+2. En Qodly Studio: seleccione el componente imagen en la página e introduzca una referencia del lado del servidor en el panel Propiedades > Server Side, por ejemplo "myImage".
+3. Seleccione el componente Button y añádale un evento `onclick`.
4. Adjunta la función `isHidden` al evento.
### .removeCSSClass()
@@ -110,7 +110,7 @@ La función `.removeCSSClass()` makes the component visible.If the component was already visible, the function does nothing.
+La función `.show()` hace visible el componente. Si el componente ya era visible, la función no hace nada.
## Ver también
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/cli.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/cli.md
index cc30a3dc01b1af..ab8606bffd7787 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/cli.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/cli.md
@@ -64,7 +64,7 @@ Sintaxis:
| `--skip-onstartup` | | Lanza el proyecto sin ejecutar ningún método "automático", incluyendo los métodos base `On Startup` y `On Exit` |
| `--startup-method` | Nombre del método proyecto (cadena) | Método de proyecto a ejecutar inmediatamente después del método base `On Startup` (si no se omite con `--skip-onstartup`). |
-(\*) Algunos diálogos se muestran antes de abrir la base de datos, por lo que es imposible escribir en el [archivo de registro de diagnóstico](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerta de licencia, diálogo de conversión, selección de bases de datos, selección de archivos de datos). En este caso, se
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). En este caso, se
lanza un mensaje de error tanto en el flujo stderr como en el registro de eventos sistema,
y luego la aplicación se cierra.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/licenses.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
index 3f0cb32f0e1398..ade2fd94054bcf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
@@ -32,7 +32,7 @@ Las licencias de despliegue pueden ser anidadas en el paso de creación por el d
Algunas licencias 4D tienen una fecha de caducidad, después de la cual deben ser renovadas. Cuando la suscripción a la licencia se renueva en 4D Store, sus licencias se actualizan automáticamente en sus aplicaciones 4D al iniciar el proceso [cuando se conecta](GettingStarted/Installation.md) en el Asistente de bienvenida.
-En algunos casos, la actualización de la licencia puede necesitar que haga clic en el botón [**Actualizar**](#refresh) de la caja de diálogo del Gestor de licencias.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Activación de licencias
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Concepts/dt_number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Concepts/dt_number.md
index 90ab1aa1163c11..d9033d9d79f430 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Concepts/dt_number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Concepts/dt_number.md
@@ -81,7 +81,7 @@ El operador modulo % devuelve valores significativos con números que están en
### División entera
-The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. This operator returns significant values with integer numbers only.
+The integer division operator divides one number by another and returns the whole number part of the result, discarding any remainder. `a\b` es equivalente a `Int(a/b)`. Este operador devuelve valores significativos sólo con números enteros.
### Comparación real
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
index e684cd82a4f2a2..9096f3b1d00154 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
@@ -42,7 +42,7 @@ La ventana del depurador suele aparecer en la máquina donde se ejecuta el códi
:::note Notas
- Si el servidor se ejecuta en modo sin interfaz, no se puede mostrar ninguna ventana de depuración en el servidor, es necesario utilizar el depurador remoto. Ver [Depuración desde máquinas remotas](./debugging-remote.md).
-- También puede [adjuntar el depurador de Qodly Studio a una aplicación 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) si necesita depurar páginas Qodly en un entorno desplegado.
+- También puede [adjuntar el depurador de Qodly Studio a una aplicación 4D Server](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) si necesita depurar páginas Qodly en un entorno desplegado.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/building.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/building.md
index b4bb86c4b4387c..8f28ccc21294c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/building.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/building.md
@@ -407,8 +407,8 @@ Los elementos deben ser instalados:
Para activar esta funcionalidad, añada las llaves `DatabaseToEmbedInClientWinFolder` y/o `DatabaseToEmbedInClientMacFolder` en el archivo de configuración *buildApp*. Cuando una de estas llaves está presente, el proceso de generación de la aplicación cliente genera una aplicación monopuesto: la estructura compilada, en lugar del archivo *EnginedServer.4Dlink*, se coloca en la carpeta "Database".
-- Si existe una carpeta de datos por defecto en la aplicación monopuesto, se integra una licencia.
-- Si no existe una carpeta de datos por defecto en la aplicación monopuesto, ésta se ejecutará sin archivo de datos y sin licencia.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
El escenario básico es:
@@ -497,10 +497,11 @@ Los siguientes módulos opcionales pueden ser deseleccionados:
- **SpellChecker**: se utiliza para las funciones integradas de [corrección ortográfica](../FormObjects/properties_Entry.md#auto-spellcheck) y los comandos disponibles para las áreas de entrada y las áreas 4D Write Pro.
- **4D Updater**: controla la [actualización automática](#what-is-a-clientserver-application) de las partes del cliente y es utilizado por el comando `SET UPDATE FOLDER` para [actualizaciones automáticas del servidor](#automatic-updating-of-server-or-single-user-applications).
+- **4D Qodly Pro**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/).
## Página licencias y certificados
-La página de Licencias y certificados puede utilizarse para:
+The Licenses & Certificate page can be used to:
- configure las [licencias de despliegue](../Admin/licenses.md#deployment-licenses) que quiere integrar en su aplicación [monopuesto](#application-page) o [cliente-servidor](#clientserver-page),
- firmar la aplicación mediante un certificado en macOS.
@@ -535,7 +536,7 @@ Se requiere una conexión a Internet en la máquina del usuario en el primer lan
- El comando [`License info`](../commands/license-info.md) permite conocer el tipo de licencia de la aplicación (colección *.attributes*) y su fecha de caducidad (objeto *.expirationDate*).
- La llave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite gestionar las versiones de evaluación.
-- El comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) no hace nada cuando se llama desde una versión de evaluación.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
index 689333389298b9..053f041374d1d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
@@ -85,93 +85,3 @@ Sin embargo, debe prestar atención a las siguientes diferencias de comportamien
> No se recomienda instalar plug-ins o componentes a nivel de la aplicación 4D o 4D Server.
-## Sesiones de usuarios remotos
-
-En el servidor, el comando [`Session`](../commands/session.md) devuelve un objeto `session` que describe la sesión de usuario actual. Este objeto se maneja a través de las funciones y propiedades de la [clase `Session`](../API/SessionClass.md).
-
-:::tip Entradas de blog relacionadas
-
-[Objeto sesión remota 4D con conexión cliente/servidor y procedimiento almacenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
-
-:::
-
-### Utilización
-
-El objeto `session` permite manejar la información y los privilegios de la sesión del usuario remoto.
-
-Puede compartir datos entre todos los procesos de la sesión del usuario utilizando el objeto compartido [`session.storage`](../API/SessionClass.md#storage). Por ejemplo, puede iniciar un procedimiento de autenticación y verificación de usuario cuando un cliente se conecta al servidor, que involucra ingresar un código enviado por correo electrónico o SMS en la aplicación. A continuación, añada la información de usuario al almacenamiento de sesión, permitiendo al servidor identificar al usuario. De este modo, el servidor 4D puede acceder a la información del usuario para todos los procesos del cliente, lo que permite escribir código personalizado según el rol del usuario.
-
-You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
-
-### Disponibilidad
-
-El objeto `session` del usuario remoto está disponible en:
-
-- Métodos proyecto que tienen el atributo [Ejecutar en el Servidor](../Project/code-overview.md#execute-on-server) (se ejecutan en el proceso "twinned" del proceso cliente),
-- Triggers,
-- ORDA [funciones del modelo de datos](../ORDA/ordaClasses.md) (excepto las declaradas con la palabra clave [`local`](../ORDA/ordaClasses.md#local-functions),
-- Los métodos base `On Server Open Connection` y `On Server Shutdown Connection` de la base de datos.
-
-:::info
-
-Todos los procedimientos almacenados en el servidor comparten la misma sesión de usuario virtual. Para más información, consulte [esta página en doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Compartiendo la sesión con páginas Qodly en áreas web
-
-Remote client sessions can be used to handle Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. En tales aplicaciones, las páginas Qodly se ejecutan dentro de las [áreas Web](../FormObjects/webArea_overview.md) 4D estándar.
-
-Para gestionar esta configuración, necesita utilizar sesiones cliente remotas. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Las sesiones compartidas se gestionan a través de [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip Entrada de blog relacionada
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Ejemplo
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-Función *resetPrivileges()* en la clase Datastore:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-Función *getOTP()* en la clase Datastore:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
new file mode 100644
index 00000000000000..4ca8cecfd7fb0c
--- /dev/null
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Tipos de sesiones
+
+Las sesiones de escritorio incluyen:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sesiones de usuarios remotos
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Este objeto se maneja a través de las funciones y propiedades de la [clase `Session`](../API/SessionClass.md).
+
+:::note
+
+En un 4D remoto, el objeto `session` siempre devuelve null.
+
+:::
+
+:::tip Entradas de blog relacionadas
+
+[Objeto sesión remota 4D con conexión cliente/servidor y procedimiento almacenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
+
+:::
+
+### Utilización
+
+El objeto `session` permite manejar la información y los privilegios de la sesión del usuario remoto.
+
+Puede compartir datos entre todos los procesos de la sesión del usuario utilizando el objeto compartido [`session.storage`](../API/SessionClass.md#storage). Por ejemplo, puede iniciar un procedimiento de autenticación y verificación de usuario cuando un cliente se conecta al servidor, que involucra ingresar un código enviado por correo electrónico o SMS en la aplicación. A continuación, añada la información de usuario al almacenamiento de sesión, permitiendo al servidor identificar al usuario. De este modo, el servidor 4D puede acceder a la información del usuario para todos los procesos del cliente, lo que permite escribir código personalizado según el rol del usuario.
+
+You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
+
+### Disponibilidad
+
+El objeto `session` del usuario remoto está disponible en:
+
+- Métodos proyecto que tienen el atributo [Ejecutar en el Servidor](../Project/code-overview.md#execute-on-server) (se ejecutan en el proceso "twinned" del proceso cliente),
+- Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Sesiones de procedimientos almacenados
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilización
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilidad
+
+El objeto `session` de los procedimientos almacenados está disponible desde:
+
+- Métodos proyecto que son llamados por el comando [`Execute on Server`](../commands-legacy/execute-on-server.md),
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+Una sesión independiente es la sesión de un solo usuario que se ejecuta cuando trabaja localmente con 4D.
+
+### Utilización
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilidad
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. En tales aplicaciones, las páginas Qodly se ejecutan dentro de las [áreas Web](../FormObjects/webArea_overview.md) 4D estándar.
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Las sesiones compartidas se gestionan a través de [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Entrada de blog relacionada
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Ejemplo
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md b/i18n/es/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
index a1f7b072584a41..f780ef9be2a24d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
@@ -96,81 +96,6 @@ No hay restricciones en el número de páginas que puede tener un formulario. El
Un formulario multipáginas tiene una página de fondo y varias páginas de visualización. Los objetos que se colocan en la página de fondo pueden ser visibles en todas las páginas de visualización, pero sólo se pueden seleccionar y editar en la página de fondo. En los formularios multipágina, debe colocar su paleta de botones en la página de fondo. También es necesario incluir uno o más objetos en la página de fondo que ofrezcan las herramientas de navegación para el usuario.
-## Renderizado Fluent UI (Developer Preview)
-
-En Windows, 4D soporta el renderizado de formularios **Fluent UI**, el moderno diseño gráfico de la interfaz de usuario de Microsoft, basado en la tecnología **WinUI 3**. **WinUI 3** es la base del Windows App SDK y representa las próximas interfaces gráficas de Windows.
-
-La renderización Fluent UI ofrece controles modernos y atractivos, compatibilidad con los temas sistema dark/light, renderización más fluida optimizada para pantallas de alta resolución y una experiencia de usuario coherente y alineada con las aplicaciones recientes de Microsoft.
-
-| Tema claro | Tema oscuro |
-| --------------------------------------- | -------------------------------------------- |
-|  |  |
-
-:::caution Vista previa para desarrolladores
-
-La compatibilidad con Fluent UI se encuentra actualmente en fase Developer Preview. No debe utilizarse en producción.
-
-:::
-
-:::info Disponibilidad
-
-This feature can be used **in 4D projects on Windows**. No está disponible en macOS ni en bases de datos binarias 4D en Windows.
-
-:::
-
-:::tip Entrada de blog relacionada
-
-[Modernice sus interfaces 4D con Fluent UI](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui)
-
-:::
-
-### Requisitos
-
-La renderización Fluent UI requiere que esté instalado [**Windows App SDK versión 1.7.3**](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/downloads). Debe instalar este SDK en cualquier máquina Windows que muestre sus formularios.
-
-Si el Windows App SDK no está correctamente instalado, 4D renderizará todos sus formularios en modo clásico sin error.
-
-### Activar el renderizado Fluent UI
-
-Puede activar el modo de renderizado Fluent UI a nivel de aplicación o a nivel de formulario. La configuración del formulario tiene prioridad sobre la configuración de la aplicación.
-
-#### Parámetros de la aplicación
-
-Seleccione la opción **Utilizar Fluent UI en Windows** en la página "Interfaz" de la caja de diálogo de las Propiedades.
-
-
-
-En este caso, el modo de renderizado Fluent UI se utilizará por defecto en Windows para todos los formularios.
-
-#### Parámetros del formulario
-
-Cada formulario puede definir su propio renderizado a través de la propiedad **Apariencia de los Widgets**. Las siguientes opciones están disponibles:
-
-- **Heredado**: hereda las propiedades globales de la aplicación (por defecto),
-- **Classic**: utiliza el estilo clásico de Windows,
-- **Fluent UI**: permite el renderizado moderno basado en Fluent UI.
- 
-
-La [propiedad de formulario JSON](./properties_JSONref.md) correspondiente es `fluentUI` con el valor undefined (es decir, heredado, valor por defecto), "true" o "false".
-
-### Comportamientos específicos
-
-Cuando utilice los formularios 4D con el renderizado Fluent UI, debe prestar atención a los siguientes puntos:
-
-- El nuevo comando `FORM Windows theme` devuelve el tema de visualización actual del formulario. Valores posibles: "Classic" o "FluentUI". Si no existe un formulario actual o el comando se ejecuta en macOS, se devuelve una cadena vacía.
-- Si [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) es llamado en el contexto de un formulario, la información devuelta se refiere a la apariencia actual del formulario (Classic o FluentUI). Si se llama al comando fuera del contexto de un formulario, la información devuelta se refiere a las [propiedades globales del proyecto](#application-setting).
-- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) con el parámetro *itemStyle* `Underline` no es soportado (ignorado) para los menús emergentes.
-- El objeto de formulario [Stepper](../FormObjects/stepper.md) no admite el [evento doble clic](../Events/onDoubleClicked.md).
-- Los [botones circulares](../FormObjects/button_overview.md#circle) son soportados (como en macOS).
-- Los comandos [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) no son compatibles en áreas Web con motor de renderizado sistema.
-- Se puede añadir rectángulo de foco a las [entradas](../FormObjects/input_overview.md) imagen y texto.
-
-:::info Limitaciones
-
-Esta **Vista previa para desarrolladores** incluye algunas limitaciones, que se [enumeran en la entrada del blog relacionado](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui).
-
-:::
-
## Formularios heredados
Los formularios 4D pueden utilizar y ser utilizados como "formularios heredados", lo que significa que todos los objetos de *Formulario A* pueden ser utilizados en *Formulario B*. En este caso, *Formulario B* "hereda" los objetos de *Formulario A*.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
index c06a9428ab317f..f5d037149e1a50 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ La comunicación entre el formulario padre y las instancias del subformulario pu
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. El evento se recibe en el método del objeto contenedor. Puede estar en el origen de todo evento detectado por el subformulario (clic, arrastrar y soltar, etc.).
El código del evento no tiene restricciones (por ejemplo, 20000 o -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. En el primer caso, sólo puede utilizar los eventos que haya marcado en la lista de propiedades para los contenedores de subformulario. En el segundo caso, el código no debe corresponder a ningún evento de formulario existente. Se recomienda utilizar un valor negativo para asegurarse de que este código no será utilizado por 4D en futuras versiones.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/webArea_overview.md b/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/webArea_overview.md
index ee0b5d7a0faa89..dffc22876e2f01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/webArea_overview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/FormObjects/webArea_overview.md
@@ -123,7 +123,7 @@ $4d.today(function(result)
En lugar de utilizar un método independiente, también podemos utilizar una función de clase para realizar el cálculo.
-Define a "SumCalculator" 4D user class with a `calcSum` function which receives parameters and returns their sum:
+Define una clase usuario 4D "SumCalculator" con una función `calcSum` que recibe parámetros y devuelve su suma:
```4d
// SumCalculator user class
@@ -340,7 +340,7 @@ El archivo 4DCEFParameters.json por defecto contiene los siguientes cambios:
:::info Entrada de blog relacionada
-[Custom Parameters for Initializing Embedded Web Area](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
+[Parámetros personalizados para inicializar el área web integrada](https://blog.4d.com/custom-parameters-for-initializing-embedded-web-area/)
:::
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/Notes/updates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/Notes/updates.md
index 1889b7ee555b5a..870fb747b92f8e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/Notes/updates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/Notes/updates.md
@@ -18,9 +18,8 @@ Lea [**Novedades en 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/), la ent
- Nuevos [eventos ORDA sobre los datos](../ORDA/orda-events.md): validateSave, saving, afterSave, validateDrop, dropping, afterDrop.
- Support of the new [`restrictedByDefault` property](../ORDA/privileges.md#restriction-modes) in the `roles.json` file to block access by default to all resources without explicit permission.
- Nueva opción que permite utilizar certificados de Windows Certificate Store en lugar de una carpeta local de certificados en las clases [`HTTPRequest`](../API/HTTPRequestClass.md#4dhttprequestnew) y [`HTTPAgent`](../API/HTTPAgentClass.md#4dhttpagentnew).
-- Cliente/servidor:
- - Puede mostrar las páginas Qodly en las áreas Web y [compartir la sesión del cliente remoto](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
- - La [capa red QUIC](../settings/client-server.md#network-layer) se ha mejorado para gestionar los cambios de interfaz de red de forma transparente, por ejemplo, cuando viajas co su ordenador portátil. Ver [esta entrada del blog](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
+- [Sessions API](../API/SessionClass.md) now supports all [desktop sessions](../Desktop/sessions.md) and you can [share a desktop session with a web access](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), facilitating the development of applications using Qodly pages in Web areas.
+- La [capa red QUIC](../settings/client-server.md#network-layer) se ha mejorado para gestionar los cambios de interfaz de red de forma transparente, por ejemplo, cuando viajas co su ordenador portátil. Ver [esta entrada del blog](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
- Ahora puede [crear componentes directamente desde el proyecto local](../Extensions/develop-components.md#creating-components) y [editar su código desde una pestaña dedicada](../Extensions/develop-components.md#editing-all-component-code) en el Explorador 4D sin salir o reiniciar el proyecto.
- La etapa de activación del producto 4D se ha simplificado y automatizado durante la [conexión](../GettingStarted/Installation.md#sign-in).
- Componente 4D AIKit: nuevas funcionalidades para [invocar automáticamente una herramienta específica](../aikit/Classes/OpenAIChatHelper.md#registertool) y [especificar un formato de respuesta](../aikit/Classes/OpenAIChatCompletionsParameters.md#response-format).
@@ -30,10 +29,6 @@ Lea [**Novedades en 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/), la ent
- [**Lista de bugs corregidos**](https://bugs.4d.fr/fixedbugslist?version=21): lista de todos los bugs que se han corregido en 4D 21.
- [Notas de la versión de Qodly Pro 4D\*\*](https://developer.4d.com/qodly/4DQodlyPro/release-notes): novedades de Qodly Studio.
-#### Vista previa para desarrolladores
-
-El [renderizado **Fluent UI** para los formularios 4D](../FormEditor/forms.md#fluent-ui-rendering-developer-preview) está disponible en Developer Preview durante el programa de pruebas beta.
-
#### Cambios de comportamiento
:::caution Reconstrucción del índice
@@ -43,7 +38,9 @@ El [renderizado **Fluent UI** para los formularios 4D](../FormEditor/forms.md#fl
:::
- Servicios web (SOAP): cuando las [sesiones escalables](../WebServer/sessions.md#enabling-web-sessions) están activadas, los servicios web se ejecutan ahora en [**procesos apropiativos**](../Develop/preemptive.md) en modo compilado. Make sure that your SOAP code is thread-safe and that the session in which it runs has appropriate [privileges](../API/SessionClass.md#setprivileges).
-- Servidor web: se elimina la compatibilidad con las URL obsoletas `4DSYNC/` y `4DCGI/`. Ya no se realiza ningún tratamiento específico en estas URL.
+- Servidor web:
+ - the support of deprecated `4DSYNC/` and `4DCGI/` URLs is removed. Ya no se realiza ningún tratamiento específico en estas URL,
+ - web processes are no longer recycled when [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
- Las sesiones usuario web ahora son devueltas por [`Process activity`](../commands/process-activity.md).
- PHP commands are now [deprecated](https://blog.4d.com/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter/) and should no longer be used in your developments.
- El comando [`HIGHLIGHT TEXT`](../commands/highlight-text) es ahora compatible en el contexto de los subformularios.
@@ -294,7 +291,7 @@ Si sus aplicaciones 4D utilizan conexiones TLS, se recomienda actualizar a 4D 20
| Librería | Versión actual | Actualizado en 4D | Comentario |
| --------- | -------------------------------------- | ----------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| BoringSSL | fa47b1d | **21** | Utilizado para QUIC |
+| BoringSSL | 9b86817 | **21** | Utilizado para QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | Utilizado para la corrección ortográfica en formularios 4D y 4D Write Pro |
| ICU | 77.1 | **21** | Esta actualización fuerza una reconstrucción automática de los índices alfanuméricos, textos y objetos. |
@@ -304,7 +301,7 @@ Si sus aplicaciones 4D utilizan conexiones TLS, se recomienda actualizar a 4D 20
| Libuv | 1.51.0 | **21** | Utilizado para QUIC |
| libZip | 1.11.4 | **21** | Utilizado por los componentes zip class, 4D Write Pro, svg y serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.16.0 | **21** | Utilizado para QUIC |
+| ngtcp2 | 1.18.0 | **21** | Utilizado para QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Utilizado para [`WP Export document`](../WritePro/commands/wp-export-document.md) y [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
| SpreadJS | 17.1.0 | 20 R7 | Consulte [esta entrada de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) para obtener una visión general de las nuevas funciones |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
index d81c186249f125..982e44c7db74cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
@@ -599,7 +599,7 @@ Function event afterDrop($event : Object)
Este evento se activa justo después de que una entidad es soltada.
-This event is useful after dropping data to propagate the drop action outside the application or to execute administration tasks. Por ejemplo, se puede utilizar para enviar un correo electrónico de cancelación después de soltar los datos. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
+Este evento es útil después de soltar datos para propagar la acción de soltar fuera de la aplicación o para ejecutar tareas de administración. Por ejemplo, se puede utilizar para enviar un correo electrónico de cancelación después de soltar los datos. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
La función recibe un [objeto *event*](#event-parameter) como parámetro.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/ordaClasses.md b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/ordaClasses.md
index 96207ad628a079..1c5d8b9374e9ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/ordaClasses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/ordaClasses.md
@@ -939,7 +939,7 @@ Las peticiones remotas son:
Una función que no está expuesta no está disponible en aplicaciones remotas y no se puede llamar a ninguna instancia de objeto desde una petición REST. Si una aplicación remota intenta acceder a una función no expuesta, se devuelve el error "-10729 - Método miembro desconocido".
-To allow a function or an attribute to be called by a remote request, you must explicitly declare it using the `exposed` keyword. La sintaxis formal es:
+Para permitir que una función o un atributo sea llamado por una petición remota, debe declararlo explícitamente utilizando la palabra clave `exposed`. La sintaxis formal es:
```4d
// declarar una función expuesta
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
index 1981b5f2286c8d..ab2b9c89de43e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
@@ -248,7 +248,7 @@ In Qodly Studio for 4D, the login mode can be set using the [**Force login** opt
The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
-- **Unrestricted mode** (`restrictedByDefault`: **false**): Resources without defined permissions are accessible to all requests. Este modo es adecuado para entornos de desarrollo donde el acceso se puede restringir gradualmente.
+- **Modo sin restricciones** (`restrictedByDefault`: **false**): los recursos sin permisos definidos son accesibles a todas las peticiones. Este modo es adecuado para entornos de desarrollo donde el acceso se puede restringir gradualmente.
- **Restricted mode** (`restrictedByDefault`: **true**): Resources without defined permissions are blocked by default. Este modo se recomienda para entornos de producción donde el acceso debe ser otorgado explícitamente.
:::note Compatibilidad
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md b/i18n/es/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
index c77c466346d0fd..e68c0ec7189fc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ El área "Visión general" ofrece diferente información sobre el sistema, la ap

-Generalmente, tendrá que verificar el [**Administrador de licencias**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalles
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
index 212afdc4624c71..69b9783601fce1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
@@ -66,7 +66,7 @@ Se soportan las siguientes palabras clave de acción:
Algunos encabezados no pudieron ser añadidos, modificados o eliminados:
-| Encabezado | Acción de añadir | Set | Remove |
+| Encabezado | Acción de añadir | Modificación | Remove |
| ---------------- | ---------------- | ------------- | ------ |
| Fecha | No | No | No |
| Content-Length | No | No | No |
@@ -153,7 +153,7 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
```
-### Using a *settings* parameter
+### Utilizar un parámetro *settings*
```4d
var $rule:={}
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
index 0e7af110758c9b..75960de9b424e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
@@ -29,7 +29,7 @@ La siguiente tabla indica si el modo apropiativo se utiliza o está disponible,
- ***web setting*** means that the preemptive mode depends on the [**scalable sessions**](sessions.md#enabling-web-sessions) status:
- si las sesiones escalables están activadas, el modo apropiativo se utiliza automáticamente para los procesos web y servicios web.
- si las sesiones escalables no están activadas:
- - for web processes, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account.
+ - para los procesos web, se tiene en cuenta la opción [**Usar procesos apropiativos**](webServerConfig.md#use-preemptive-processes).
- para los procesos de servicios web (servidor o cliente), el modo preventivo está soportado a nivel de método.
## Escribir código servidor web hilo seguro
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
index 00048040081872..b9dcd05dae233b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
@@ -63,7 +63,7 @@ El nombre de la cookie se puede obtener utilizando la propiedad [`.sessionCookie
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +71,6 @@ Se puede acceder al objeto `Session` de la sesión actual a través del comando

-:::info
-
-Los procesos web no suelen terminar, sino que se reciclan en un fondo común para ser más eficientes. Cuando un proceso termina de ejecutar una petición, se devuelve al pool y queda disponible para la siguiente petición. Dado que un proceso web puede ser reutilizado por cualquier sesión, las [variables proceso](Concepts/variables.md#process-variables) deben ser borradas por su código al final de su ejecución (utilizando [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) por ejemplo). Esta limpieza es necesaria para cualquier información relacionada con el proceso, como una referencia a un archivo abierto. Esta es la razón por la que **se recomienda** utilizar el objeto [Sesión](API/SessionClass.md) cuando se quiera guardar información relacionada con la sesión.
-
-:::
-
## Almacenar y compartir información de sesión
Cada objeto `Session` proporciona una propiedad [`.storage`](API/SessionClass.md#storage) que es un [objeto compartido](Concepts/shared.md). Esta propiedad permite compartir información entre todos los procesos manejados por la sesión.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-get-attributes.md
index fa6360bcb95c9e..853f57edfe5002 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-get-attributes.md
@@ -20,7 +20,7 @@ displayed_sidebar: docs
## Descripción
-El comando **WP Get attributes** devuelve el valor de todo atributo en un rango 4D Write Pro, encabezado, cuerpo, pie de página, tabla o documento. This command gives you access to any kind of 4D Write Pro internal attributes: character, paragraph, document, table, or image.
+El comando **WP Get attributes** devuelve el valor de todo atributo en un rango 4D Write Pro, encabezado, cuerpo, pie de página, tabla o documento. Este comando le da acceso a cualquier tipo de atributo interno de 4D Write Pro: caracter, párrafo, documento, tabla o imagen.
En *targetObj*, puede pasar:
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-import-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-import-document.md
index 592a131b1b226d..e957193abe657f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-import-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/commands/wp-import-document.md
@@ -51,20 +51,20 @@ Por defecto, las expresiones HTML insertadas en documentos heredados de 4D Write
Puede pasar un objeto para definir cómo se gestionan los siguientes atributos durante la operación de importación:
-| **Atributo** | **Tipo** | **Description** |
-| ----------------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
-| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
-| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
-| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Note**: If a .docx field corresponds to a 4D Write Pro variable, the field is imported as a formula and this option is ignored. |
-| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
-| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
-| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
-| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (default) - 4W7 image display mode is converted to the *imageDisplayMode* attribute if different than scaled to fit. |
+| **Atributo** | **Tipo** | **Description** |
+| ----------------------- | -------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| anchoredTextAreas | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las áreas de texto ancladas en Word. Valores disponibles:
**anchored** (por defecto) - Las áreas de texto ancladas se tratan como cuadros de texto. **inline** - Las áreas de texto ancladas se tratan como texto en línea en la posición del ancla. **ignore** \- Las áreas de texto ancladas son ignoradas. **Nota**: el diseño y el número de páginas en el documento pueden cambiar. Ver también *Cómo importar formato .docx* |
+| anchoredImages | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan las imágenes ancladas. Available values:
**all** (default) - All anchored images are imported as anchored images with their text wrapping properties (exception: the .docx wrapping option "tight" is imported as wrap square). **ignoreWrap** \- Las imágenes ancladas son importadas, pero todo texto que se envuelve alrededor de la imagen es ignorado. **ignore** \- Las imágenes ancladas no son importadas. |
+| secciones | Text | Sólo para documentos MS Word (.docx). Especifica cómo se maneja la sección. Valores disponibles:
**all** (por defecto) - Se importan todas las secciones. Secciones continuas, incluso impares se convierten en secciones estándar. **ignore** \- Sections are converted to default 4D Write Pro sections (A4 portrait layout without header or footer). **Nota**: las rupturas de secciones de cualquier tipo pero continuas se convierten en rupturas de sección con rupturas de página. Continuous section breaks are imported as continuous section breaks. |
+| fields | Text | Sólo para documentos MS Word (.docx). Especifica cómo se manejan los campos .docx que no pueden ser convertidos a fórmulas 4D Write Pro. Valores disponibles:
**ignore** \- Los campos .docx son ignorados. **label** - Las referencias de campo .docx se importan como etiquetas entre llaves dobles ("{{ }}"). Ej: el campo "ClientName" se importará como {{ClientName}}. **value** (default) - El último valor calculado para el campo .docx (si está disponible) es importado. **Nota**: si un campo .docx corresponde a una variable de 4D Write Pro, el campo se importa como una fórmula y esta opción se ignora. |
+| borderRules | Text | Sólo para documentos MS Word (.docx). Especifica cómo se gestionan los bordes de los párrafos. Valores disponibles:
**collapse** \- El formato del párrafo se modifica para imitar los bordes colapsados automáticamente. Tenga en cuenta que la propiedad contraída sólo se aplica durante la operación de importación. Si se vuelve a aplicar una hoja de estilo con un ajuste de colapso automático de bordes después de la operación de importación, se ignorará el ajuste. **noCollapse** (por defecto) - No se modifica el formato de los párrafos. |
+| preferredFontScriptType | Text | Sólo para documentos MS Word (.docx). Especifica el tipo de letra preferido que se utilizará cuando se definan distintos tipos de letra para una única propiedad de fuente en OOXML. Valores disponibles:
**latin** (por defecto) - script latino **bidi** \- script bidreccional. Adecuado si el documento es principalmente bidireccional de izquierda a derecha (LTR) o de derecha a izquierda (RTL) texto (por ejemplo, árabe o hebreo). **eastAsia** \- East Asian script. Adecuado si el documento es principalmente texto asiático. |
+| htmlExpressions | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se manejan las expresiones HTML. Available values:
**rawText** \- HTML expressions are imported as raw text within ##htmlBegin## and ##htmlEnd## tags **ignore** (default) - HTML expressions are ignored. |
+| importDisplayMode | Text | Sólo para documentos 4D Write (.4w7). Especifica cómo se gestiona la visualización de imágenes. Available values:
**legacy -** 4W7 image display mode is converted using a background image if different than scaled to fit. **noLegacy** (por defecto) - El modo de visualización de la imagen 4W7 se convierte al atributo *imageDisplayMode* si es diferente a escalado para ajustarse. |
**Notas de compatibilidad**
-- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. To get the best result for imported text, style sheet attributes are converted to "hard coded" style attributes. Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
+- *Las hojas de estilo de caracteres de los documentos heredados de 4D Write utilizan un mecanismo propietario que no es compatible con 4D Write Pro. Para obtener el mejor resultado para el texto importado, los atributos de la hoja de estilo se convierten en atributos de estilo "codificados". Las hojas de estilo de caracteres antiguos no son importadas y ya no están referenciadas en el documento.*
- *El soporte para la importación en formato .docx solo está certificado para Microsoft Word 2010 y más recientes. Versiones antiguas, especialmente Microsoft Word 2007, pueden no importar correctamente.*
## Ejemplo 1
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
index 854813d1588a26..d893ec509e6028 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
@@ -78,176 +78,3 @@ El modo de visualización de la página se puede configurar mediante el menú em
Para las áreas anidadas en formularios 4D, el modo de visualización también se puede configurar por defecto utilizando la lista de propiedades. En este caso, el modo de visualización se almacena como una propiedad del objeto de formulario 4D Write Pro (para más información, consulte el párrafo *Configurar propiedades Vista*).
-## Las acciones estandar
-
-La interfaz de usuario de áreas 4D Write Pro se puede manejar a través de un amplio conjunto de **acciones estándar**. Las acciones estándar pueden asignarse a:
-
-* comandos de menú, disponibles a través de la **barra de menú** o del comando [Dynamic pop up menu](../../commands/dynamic-pop-up-menu)
-* elementos de lista, disponibles por medio de listas pop-up/desplegables o menús pop-up jerárquicos,
-* botones, casillas de selección,
-* o ejecutados por el comando [INVOKE ACTION](../../commands/invoke-action).
-
-Cuando se le asignan a los objetos de interfaz, las acciones estándar manejan la activación/desactivación del objeto en función del contexto. Para más información, consulte la sección *Acciones estándar*.
-
-Dos tipos de acciones están disponibles para áreas 4D Write Pro:
-
-* Las acciones específicas 4D Write Pro, que sólo pueden utilizarse con áreas 4D Write Pro,
-* *[Otras acciones](#other-actions)*, incluyendo las fuentes, expresiones, corrector ortográfico y acciones de edición, que se pueden utilizar con las áreas 4D Write Pro y las otras áreas 4D (ver *Acciones estándar*).
-
-### Acciones 4D Write Pro
-
-Las siguientes acciones estándar están disponibles para las áreas 4D Write Pro.
-
-**Notas:**
-
-* Las acciones que muestran un menú/lista automático sólo se pueden asociar a los comandos de menús o a los objetos pop-ups/listas desplegables y menús pop-up jerárquicos (ver *Submenú*).
-* Las casillas de selección y las casillas de selección 3D deben estar asociadas con acciones de estado, tales como "section/differentFirstPage" o "visibleHorizontalRuler". La opción de tres estados sólo se admite con casillas de selección estándar.
-* Un estado de acción de sección siempre es igual al estado actual de la sección seleccionada (estado heredado si el atributo se hereda de la sección principal o del atributo por defecto) ya que debe reflejar el estado de sección seleccionado (el estado que se aplica actualmente a la sección). Sin embargo, la modificación de un atributo de sección con una acción estándar solo anulará el atributo de sección seleccionado.
-* *Submenú*: cuando se utilizan sin parámetros y asociados a un comando de menú, un objeto pop-up/lista desplegable o pop-up menú jerárquico, estas acciones muestran un submenú automático. Por ejemplo, si asigna la acción "backgroundColor" a un comando de menú, la selección de este comando de menú a la ejecución mostrará automáticamente los comandos del submenú "Color de fondo". Si asigna la acción "zoom" a un menú pop-up jerárquico, contendrá automáticamente una lista de valores de zoom predefinidos. Tenga en cuenta que estas acciones no pueden asignarse a botones.
-* *showDialog*: agregar la cadena "/showDialog" al nombre de la acción permite la visualización del diálogo estándar asociado a la acción. Por ejemplo, puede utilizar "paragraph/styleSheet/showDialog" para abrir el diálogo de entrada que permite la entrada de un nuevo nombre de hoja de estilo.
-
-| Acción | Modelo | Disponible con | Descripción |
-|---|---|---|---|
-| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
-| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
-| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
-| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
-| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
-| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
-| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
-| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
-| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
-| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
-| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
-| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
-| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
-| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
-| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
-| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
-| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
-| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
-| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
-| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
-| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
-| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
-| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
-| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
-| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
-| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
-| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
-| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
-| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
-| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
-| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
-| deleteRows | deleteRows | Table | Deletes all selected rows. |
-| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
-| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
-| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
-| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
-| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
-| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
-| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
-| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
-| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
-| footer | footer | Submenu | Displays the Footer submenu. |
-| footer/remove | footer/remove | Footer | Removes the selected footer. |
-| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
-| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
-| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
-| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
-| header | header | Submenu | Displays the Header submenu. |
-| header/remove | header/remove | Header | Removes the selected header. |
-| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
-| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
-| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
-| image | image | Image, Submenu | Displays image layout submenu. |
-| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
-| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
-| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
-| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
-| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
-| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
-| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
-| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
-| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
-| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
-| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
-| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
-| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
-| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
-| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
-| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
-| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
-| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
-| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
-| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
-| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
-| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
-| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
-| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
-| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
-| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
-| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
-| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
-| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
-| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
-| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
-| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
-| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
-| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
-| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
-| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
-| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
-| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
-| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
-| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
-| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
-| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
-| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
-| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
-| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
-| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
-| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
-| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
-| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
-| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
-| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
-| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
-| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
-| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
-| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
-| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
-| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
-| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
-| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
-| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
-| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
-| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
-| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
-| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
-| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
-| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
-| view | view | Submenu | For menu commands only. Default submenu for view settings. |
-| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
-| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
-| visibleFooters | visibleFooters | Document | Shows/hides footers. |
-| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
-| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
-| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
-| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
-| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
-| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
-| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
-| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
-| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
-
-### Otras acciones
-
-Otras acciones estándar están disponibles en los formularios 4D y pueden ser utilizadas en las áreas 4D Write Pro:
-
-* *Acciones de edición*, tales como acciones de copiar/pegar.
-* acciones *Fuente*, tales como FontBold o fontSize.
-* acciones *Expresiones dinámicas*, permitiendo manejar la inserción de expresiones.
-* acciones *Corrector ortográfico*.
\ No newline at end of file
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
new file mode 100644
index 00000000000000..184e18268276ff
--- /dev/null
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
@@ -0,0 +1,180 @@
+---
+id: standard-actions
+title: Las acciones estandar
+displayed_sidebar: docs
+slug: /WritePro/standard-actions
+---
+
+
+
+La interfaz de usuario de áreas 4D Write Pro se puede manejar a través de un amplio conjunto de **acciones estándar**. Las acciones estándar pueden asignarse a:
+
+* comandos de menú, disponibles a través de la **barra de menú** o del comando [Dynamic pop up menu](../../commands/dynamic-pop-up-menu)
+* elementos de lista, disponibles por medio de listas pop-up/desplegables o menús pop-up jerárquicos,
+* botones, casillas de selección,
+* o ejecutados por el comando [INVOKE ACTION](../../commands/invoke-action).
+
+Cuando se le asignan a los objetos de interfaz, las acciones estándar manejan la activación/desactivación del objeto en función del contexto. Para más información, consulte la sección *Acciones estándar*.
+
+Dos tipos de acciones están disponibles para áreas 4D Write Pro:
+
+* Las acciones específicas 4D Write Pro, que sólo pueden utilizarse con áreas 4D Write Pro,
+* *[Otras acciones](#other-actions)*, incluyendo las fuentes, expresiones, corrector ortográfico y acciones de edición, que se pueden utilizar con las áreas 4D Write Pro y las otras áreas 4D (ver *Acciones estándar*).
+
+### Acciones 4D Write Pro
+
+Las siguientes acciones estándar están disponibles para las áreas 4D Write Pro.
+
+**Notas:**
+
+* Las acciones que muestran un menú/lista automático sólo se pueden asociar a los comandos de menús o a los objetos pop-ups/listas desplegables y menús pop-up jerárquicos (ver *Submenú*).
+* Las casillas de selección y las casillas de selección 3D deben estar asociadas con acciones de estado, tales como "section/differentFirstPage" o "visibleHorizontalRuler". La opción de tres estados sólo se admite con casillas de selección estándar.
+* Un estado de acción de sección siempre es igual al estado actual de la sección seleccionada (estado heredado si el atributo se hereda de la sección principal o del atributo por defecto) ya que debe reflejar el estado de sección seleccionado (el estado que se aplica actualmente a la sección). Sin embargo, la modificación de un atributo de sección con una acción estándar solo anulará el atributo de sección seleccionado.
+* *Submenú*: cuando se utilizan sin parámetros y asociados a un comando de menú, un objeto pop-up/lista desplegable o pop-up menú jerárquico, estas acciones muestran un submenú automático. Por ejemplo, si asigna la acción "backgroundColor" a un comando de menú, la selección de este comando de menú a la ejecución mostrará automáticamente los comandos del submenú "Color de fondo". Si asigna la acción "zoom" a un menú pop-up jerárquico, contendrá automáticamente una lista de valores de zoom predefinidos. Tenga en cuenta que estas acciones no pueden asignarse a botones.
+* *showDialog*: agregar la cadena "/showDialog" al nombre de la acción permite la visualización del diálogo estándar asociado a la acción. Por ejemplo, puede utilizar "paragraph/styleSheet/showDialog" para abrir el diálogo de entrada que permite la entrada de un nuevo nombre de hoja de estilo.
+
+| Acción | Modelo | Disponible con | Descripción |
+|---|---|---|---|
+| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
+| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
+| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
+| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
+| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
+| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
+| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
+| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
+| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
+| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
+| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
+| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
+| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
+| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
+| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
+| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
+| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
+| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
+| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
+| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
+| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
+| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
+| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
+| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
+| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
+| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
+| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
+| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
+| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
+| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
+| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
+| deleteRows | deleteRows | Table | Deletes all selected rows. |
+| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
+| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
+| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
+| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
+| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
+| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
+| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
+| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
+| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
+| footer | footer | Submenu | Displays the Footer submenu. |
+| footer/remove | footer/remove | Footer | Removes the selected footer. |
+| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
+| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
+| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
+| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
+| header | header | Submenu | Displays the Header submenu. |
+| header/remove | header/remove | Header | Removes the selected header. |
+| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
+| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
+| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
+| image | image | Image, Submenu | Displays image layout submenu. |
+| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
+| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
+| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
+| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
+| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
+| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
+| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
+| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
+| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
+| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
+| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
+| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
+| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
+| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
+| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
+| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
+| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
+| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
+| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
+| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
+| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
+| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
+| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
+| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
+| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
+| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
+| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
+| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
+| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
+| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
+| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
+| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
+| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
+| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
+| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
+| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
+| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
+| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
+| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
+| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
+| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
+| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
+| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
+| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
+| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
+| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
+| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
+| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
+| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
+| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
+| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
+| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
+| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
+| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
+| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
+| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
+| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
+| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
+| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
+| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
+| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
+| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
+| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
+| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
+| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
+| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
+| view | view | Submenu | For menu commands only. Default submenu for view settings. |
+| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
+| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
+| visibleFooters | visibleFooters | Document | Shows/hides footers. |
+| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
+| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
+| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
+| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
+| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
+| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
+| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
+| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
+| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
+
+### Otras acciones
+
+Otras acciones estándar están disponibles en los formularios 4D y pueden ser utilizadas en las áreas 4D Write Pro:
+
+* *Acciones de edición*, tales como acciones de copiar/pegar.
+* acciones *Fuente*, tales como FontBold o fontSize.
+* acciones *Expresiones dinámicas*, permitiendo manejar la inserción de expresiones.
+* acciones *Corrector ortográfico*.
\ No newline at end of file
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png b/i18n/es/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/es/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png differ
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
index 083f285583c404..a79c331d2e9248 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Desea detener el proceso seleccionado de la colección de procesos que se muestr
| | |
| --- | --- |
| Número de comando | 1634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
index 32446ac6b87fe4..701d41b1b72b10 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Aunque el comando ABORT está destinado a ser utilizado sólo desde un método d
| | |
| --- | --- |
| Número de comando | 156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
index a23d4d3905b254..34f1b4a1c69b6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
@@ -32,6 +32,6 @@ El siguiente ejemplo devuelve el valor absoluto de –10.3, que es 10.3:
| | |
| --- | --- |
| Número de comando | 99 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
index 5178f513d15ee1..000985c7d142c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
@@ -41,7 +41,7 @@ El comando **ACCEPT** se permite en modo sin interfaz, en el contexto de las ár
| | |
| --- | --- |
| Número de comando | 269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
index f1b6627d3fe17d..e41bf255cc4463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [BREAK LEVEL](break-level.md "BREAK LEVEL").
| | |
| --- | --- |
| Número de comando | 303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
index 2dd137a7ee7eb8..6a9c0e4a2735cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
@@ -71,6 +71,6 @@ Desea saber si la acción copiar está disponible (es decir, si se han seleccion
| | |
| --- | --- |
| Número de comando | 1442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
index 2c22f7a84fb979..fd58954a57c380 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 346 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
index 043d3c34977860..f5b6eeeae5b4a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Usted quiere conocer el estado de la transacción actual:
| | |
| --- | --- |
| Número de comando | 1387 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
index 25e0d85be37b35..df3da42d0a8287 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
@@ -111,6 +111,6 @@ Obtiene arrays del tipo:
| | |
| --- | --- |
| Número de comando | 1277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
index ca645f771f905f..65b9dc01a4b537 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 56 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
index 06fd9f8eeb9fb3..abf7290707c987 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Aunque usted puede utilizar los *Operadores de fechas* para añadir días a una
| | |
| --- | --- |
| Número de comando | 393 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
index f72eb1c6f6251b..96ead6846b4f88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 119 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
index 313e8a913dc1d3..c3a9d041c8901c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
@@ -59,6 +59,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos de tex
| | |
| --- | --- |
| Número de comando | 1431 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
index 008eebe78fee8a..2558f14e62ccb4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Usted desea cambiar temporalmente la prioridad de la caché para el índice de c
| | |
| --- | --- |
| Número de comando | 1430 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
index 1f3c021a123044..b93819cf0de0f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
@@ -57,6 +57,6 @@ Usted desea cambiar temporalmente la prioridad de la caché de los campos escala
| | |
| --- | --- |
| Número de comando | 1429 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
index f30a6db793f5a8..83c2307e9d565b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **After** se genere, asegúrese de que la propie
| | |
| --- | --- |
| Número de comando | 31 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
index 1a9f9d9f9885b5..c9236552554b7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Muestra la siguiente caja de diálogo de alerta (en Windows):
| | |
| --- | --- |
| Número de comando | 41 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
index 77f9e2555b5f00..67c733650b36bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra todos los registros de la tabla \[Personas\]:
| | |
| --- | --- |
| Número de comando | 47 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
index b922fcba3f7df8..8d59a6553ca785 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
@@ -221,7 +221,7 @@ Si los datos en el BLOB se añaden correctamente al portapapeles, la variable si
| | |
| --- | --- |
| Número de comando | 403 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
index d4623bc251810d..7a0c7b35cd3920 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ El siguiente ejemplo abre un documento existente llamado Nota, añade la cadena
| | |
| --- | --- |
| Número de comando | 265 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
index a6fd90d2a3e35d..15f9f91f124716 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
@@ -86,7 +86,7 @@ Entonces, en todo método de formulario o de proyecto, puede escribir:
| | |
| --- | --- |
| Número de comando | 411 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
index 11a510b0c75fb7..01621d00a4024f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
@@ -49,6 +49,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 911 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
index 8ecd84d7408873..fa56d858cdd784 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
@@ -159,6 +159,6 @@ Cuando el formulario se ejecuta, la lista se verá de esta forma:
| | |
| --- | --- |
| Número de comando | 376 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
index 108ea98d534949..1930ef48eeb043 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Al iniciar su base de datos en Windows, necesita verificar si una librería DLL
| | |
| --- | --- |
| Número de comando | 491 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
index 097346d79b9acc..c0a6616db0de4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si el código se ejecuta en 4D Server, el objeto contiene (por ejemplo):
| | |
| --- | --- |
| Número de comando | 1599 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
index 615a39003f0278..d8740f0efe0d71 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ En alguna parte de su código, diferente del *Método base On Server Startup*, d
| | |
| --- | --- |
| Número de comando | 494 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
index e92a08015c303b..8f7c7ec15a9d2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
@@ -126,6 +126,6 @@ Usted desea utilizar el valor de la versión corta de la aplicación devuelto po
| | |
| --- | --- |
| Número de comando | 493 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
index fa7871afeadeba..0056dad40531a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ Si el usuario hace clic en el botón Detener en el termómetro de progresión, l
| | |
| --- | --- |
| Número de comando | 70 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
index 5de0eebdf35d02..0cadc6b4013e40 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra el valor de Pi:
| | |
| --- | --- |
| Número de comando | 20 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
index cfb78c24cb3dc0..6ff78e6bdf36f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array local de 100 filas, conteniendo cada una 50 elementos
| | |
| --- | --- |
| Número de comando | 1222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
index c2bdf647763abb..747cd92b6a18ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo [Booleano](# "Ca
| | |
| --- | --- |
| Número de comando | 223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
index 63a9b4bebfe9a9..eba8d5b680d579 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Fecha y asigna a
| | |
| --- | --- |
| Número de comando | 224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
index c0cedcf4ae2054..f7b3f319ad01a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 2 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
index b3073493473c67..c7ae48f162f5b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Este ejemplo crea un array interproceso de 4 bytes de 50 elementos de tipo [Ente
| | |
| --- | --- |
| Número de comando | 221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
index ef7c0499ee5a12..bef7af2e3b5f89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Creación y llenado de un array local de objetos:
| | |
| --- | --- |
| Número de comando | 1221 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
index eefbc04bdac863..c43640f5a720e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Este ejemplo crea un array interpcoceso de elementos de tipo [Imagen](# "Can be
| | |
| --- | --- |
| Número de comando | 279 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
index 37e56d9ab515b3..d388b8a039ca8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Este ejemplo crea un array interproceso de elementos de tipo [Puntero](# "A refe
| | |
| --- | --- |
| Número de comando | 280 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
index 6223715560a47a..7ee475ed2801b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
@@ -65,6 +65,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo Real y asigna a
| | |
| --- | --- |
| Número de comando | 219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
index 4e401069f38ba3..acd74709e633c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
@@ -60,6 +60,6 @@ Este ejemplo crea un array interproceso de 50 elementos de tipo texto y asigna a
| | |
| --- | --- |
| Número de comando | 222 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
index 04b8d0368e2b89..6ba91197b77f79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Como los arrays de horas aceptan valores numéricos, el siguiente código es vá
| | |
| --- | --- |
| Número de comando | 1223 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
index 19ae495f8756bb..bcd9af58eda95f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Desea copiar una array texto en una colección compartida:
| | |
| --- | --- |
| Número de comando | 1563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
index aa3803662dd126..c760ffcf4c9b60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ El comando ARRAY TO LIST genera el error *\-9957* cuando se aplica a una lista q
| | |
| --- | --- |
| Número de comando | 287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
index 26af482b82f022..d23cd484fb71ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ Usted desea copiar una selección de registros a una tabla archivo seleccionando
| | |
| --- | --- |
| Número de comando | 261 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
index 28360ee8227017..c78690f47481d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
@@ -63,7 +63,7 @@ Una aserción permite probar los parámetros pasados a un método de proyecto pa
| | |
| --- | --- |
| Número de comando | 1129 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
index 5d9036366bd4c4..65f871a91fb0f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Inserción de una aserción en la evaluación de una expresión:
| | |
| --- | --- |
| Número de comando | 1132 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
index 781e22682ad63a..70948b70dbdfae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
@@ -95,7 +95,7 @@ Puede hacer los siguientes cálculos:
| | |
| --- | --- |
| Número de comando | 2 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
index 7bd5a7f8c0f5ed..8900cd149fbfe6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Pase el tipo de información a obtener en *selector*. El tipo y el contenido de
| | |
| --- | --- |
| Número de comando | 888 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
index 519f0cef07f742..a9e1b9ef1be180 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En caso de que se presenten incidentes durante el backup, la información relati
| | |
| --- | --- |
| Número de comando | 887 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
index 10626c3002dfd5..1f52d9982ad029 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Este ejemplo le permite transferir una imagen vía un BLOB:
| | |
| --- | --- |
| Número de comando | 896 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
index 50e4d20d9619c4..ad9561c3166a5b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
@@ -44,6 +44,6 @@ Por defecto, si se omite el parámetro *\**, el comando utiliza una codificació
| | |
| --- | --- |
| Número de comando | 895 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
index 5818d9c29b5f34..b80da20d3c9ca7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
@@ -39,6 +39,6 @@ En el siguiente ejemplo, si una búsqueda no encuentra ningún registro, se emit
| | |
| --- | --- |
| Número de comando | 151 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
index ce54385f76defb..e4a1f6cb3a6105 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
@@ -68,6 +68,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Defin
| | |
| --- | --- |
| Número de comando | 198 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
index 85145b461477e4..7fc32c84f4554d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que el ciclo de ejecución **Before** se genere, asegúrese de que la propi
| | |
| --- | --- |
| Número de comando | 29 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
index eb711a06df3a11..45983a8c9534fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que el *Depurador* 4D evaluará el código SQL línea por línea. En alguno
| | |
| --- | --- |
| Número de comando | 948 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
index bd5576c6c8d3b8..15c160271a62c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
@@ -83,6 +83,6 @@ Después de añadir este método a su aplicación, lo puede utilizar de esta man
| | |
| --- | --- |
| Número de comando | 536 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
index ed30045f49ac51..764fc917f4e0af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ La línea de código añade 100 bytes al BLOB *miBlob*:
| | |
| --- | --- |
| Número de comando | 605 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
index 595c8cdd587d75..762e88d69a93e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
index 004d1aaa7c72fb..6eb644c767b4c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores enteros de un BLOB, a partir del offset 0x20
| | |
| --- | --- |
| Número de comando | 549 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
index 439c54cfb120f8..2171210683bf67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ La variable OK toma el valor 1 si la lista se crea correctamente, de lo contrari
| | |
| --- | --- |
| Número de comando | 557 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
index 98b6deb07c5efa..3f9f173c75ee21 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
@@ -64,6 +64,6 @@ El siguiente ejemplo lee 20 valores de tipo entero largo de un BLOB, a partir de
| | |
| --- | --- |
| Número de comando | 551 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
index 2fa328c959a266..00d1529f8be606 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 682 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
index cce5b132486dd4..e2ef5b43c68e12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
@@ -75,4 +75,4 @@ Usted desea aplicar la configuración de impresión guardada en el disco para el
| | |
| --- | --- |
| Número de comando | 1434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
index 140ec85e575fcf..a0ecffd70c8dda 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
@@ -65,6 +65,6 @@ El siguiente ejemplo lee 20 valores reales de un BLOB, a partir del offset 0x200
| | |
| --- | --- |
| Número de comando | 553 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
index 23531095d11c87..ee649d418df86e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
@@ -66,6 +66,6 @@ Después de la ejecución del comando, la variable se incrementa en el número d
| | |
| --- | --- |
| Número de comando | 555 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
index 1921932655a356..7e8903abb1f5e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
@@ -53,7 +53,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 850 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
index 1a031115f36a14..d949e6e6c49785 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ La variable OK toma el valor 1 si la variable ha sido reescrita correctamente, d
| | |
| --- | --- |
| Número de comando | 533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
index 4839abc34bbea4..9e568b4e6fa754 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Selecciona un valor dependiendo del contenido de un atributo de campo de objeto,
| | |
| --- | --- |
| Número de comando | 1537 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
index 130399c9d93c9b..dc8edb8e8b1418 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Si no pasa el parámetro *conjunto*, el comando utilizará UserSet en el proceso
| | |
| --- | --- |
| Número de comando | 646 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
index 7bc9f75cdeedaa..296f97a89a50ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ El siguiente ejemplo imprime un informe con dos niveles de ruptura. La selecció
| | |
| --- | --- |
| Número de comando | 302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
index 367a03b6ad3ad7..4e80aaad333bd7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ El siguiente ejemplo es un método que puede ser ejecutado desde un menú. Él v
| | |
| --- | --- |
| Número de comando | 326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
index 96eae7ad3ab6db..e501fb7bcf0ead 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
@@ -57,7 +57,7 @@ Si el comando falla, se genera un error que puede interceptar con la ayuda del c
| | |
| --- | --- |
| Número de comando | 871 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
index 909a62e277da26..4269c5bc2d73de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Usted quiere obtener información de la caché de la base de datos y todos los c
| | |
| --- | --- |
| Número de comando | 1402 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
index f44b8623f5ae03..80d574c101cd9f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Luego puede añadir otros mensajes ejecutando el comando **CALL FORM** nuevament
| | |
| --- | --- |
| Número de comando | 1391 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
index e30cd744f98fd7..db112868b348a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ En *evento*, puede pasar todo evento de formulario predefinido de 4D (puede util
| | |
| --- | --- |
| Número de comando | 1086 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
index c77c7b12e605da..057ed72fecdc37 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
@@ -83,6 +83,6 @@ El código de *workerMethod* es:
| | |
| --- | --- |
| Número de comando | 1389 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
index d1cbc82a938a5d..6c75b91efd19c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 241 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
index 37fa778d1ceb50..49848762f46597 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Cuando el comando CANCEL se ejecuta (anulación de formulario o de impresión),
| | |
| --- | --- |
| Número de comando | 270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
index 46f1d5c0263d1a..8111e5646c3fd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
index 4d525beb107706..df9a8f3656fe5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
@@ -77,6 +77,6 @@ El siguiente ejemplo muestra la caja de diálogo de conexión:
| | |
| --- | --- |
| Número de comando | 289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
index 173c5382e939cf..a59b375c4949c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ De esta forma un usuario puede activar licencias sin tener que modificar la base
| | |
| --- | --- |
| Número de comando | 637 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
index d5237c86c44489..e6e632d800a41f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ El siguiente ejemplo permite al usuario cambiar su contraseña.
| | |
| --- | --- |
| Número de comando | 186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
index 54a4668fcb961e..56fdaddde187fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ El siguiente ejemplo ilustra el uso de Change string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
index 54ddf3d469b867..6411002ea3d463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
@@ -41,6 +41,6 @@ El siguiente ejemplo utiliza Char para insertar un retorno de carro en el texto
| | |
| --- | --- |
| Número de comando | 90 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
index 09ae8c107ad7a9..451f2dd71fb4e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
@@ -87,6 +87,6 @@ El segundo código se ejecuta más rápido por dos razones: sólo referencia un
| | |
| --- | --- |
| Número de comando | 91 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
index 0ace8440791ec9..6f65b75205672a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Puede interceptar estos errores utilizando un método de manejo de errores insta
| | |
| --- | --- |
| Número de comando | 799 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
index 7c03f9548cb1f7..d19b91c5913915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
@@ -85,6 +85,6 @@ Este código es estrictamente equivalente a:
| | |
| --- | --- |
| Número de comando | 955 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
index daa464de64a5d4..2631c8eb902f0b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
@@ -59,6 +59,6 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 377 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
index 833bb7d8621b0d..c3f5fe18454b13 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Si *temp* fue creado por el comando [CUT NAMED SELECTION](cut-named-selection.md
| | |
| --- | --- |
| Número de comando | 333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
index 60831609750ec5..dd067329568c24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 402 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
index 7eae4829aa6629..42656470d9d5d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ Ver el ejemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número de comando | 144 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
index 2746c118433ad8..943c4341a14048 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Ver el ejemplo del comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número de comando | 117 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
index a138bc30b75b56..eb21f6e2944fc1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ En un formulario, utilice una lista desplegable llamada *asMiListaDesplegable* c
| | |
| --- | --- |
| Número de comando | 89 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
index d1e077e78f948e..3a372552bf716d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Las etiquetas no son editables pero lo son después de un triple-clic. Si desea
| | |
| --- | --- |
| Número de comando | 1332 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
index b2ce697a206236..73ac405de7f6e3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ El siguiente ejemplo permite al usuario crear un nuevo documento, escribe la cad
| | |
| --- | --- |
| Número de comando | 267 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
index bf7ea1f2b5eb4d..8e8aad73dad89e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 996 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
index 611e77c86be2a5..19dbde2668aa79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ Recuerde llamar finalmente **CLOSE RESOURCE FILE** para un archivo de recursos q
| | |
| --- | --- |
| Número de comando | 498 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
index 01e847ea6ddf11..ff05610369037f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
@@ -42,6 +42,6 @@ El siguiente ejemplo abre una ventana formulario y crea nuevos registros con el
| | |
| --- | --- |
| Número de comando | 154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
index 2ad107419956c2..b7d74fa064a436 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Desea copiar diferentes valores de propiedad de una colección de objetos en dif
| | |
| --- | --- |
| Número de comando | 1562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
index f2b564e0ef64e2..22d62bbe7bd451 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 987 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
index 45fb35f7de5bff..7dc0f467659b07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
@@ -76,7 +76,7 @@ Si la operación de compactación se lleva a cabo correctamente, la variable sis
| | |
| --- | --- |
| Número de comando | 937 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
index e6bb6813b83382..b907ce82e6e07c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
@@ -112,6 +112,6 @@ Los siguientes ejemplos ilustran el impacto específico de las opciones en el **
| | |
| --- | --- |
| Número de comando | 1756 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
index 7386bd13a219ed..c65e3f4736c0ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Para mayor información sobre componentes 4D, por favor consulte el *Manual de D
| | |
| --- | --- |
| Número de comando | 1001 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
index 5be2500ed3f130..e36b691efaa3eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
@@ -96,7 +96,7 @@ La variable OK toma el valor 1 si el BLOB se comprime correctamente; de lo contr
| | |
| --- | --- |
| Número de comando | 534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
index 4a02eb065fa519..7cc4a766811644 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
@@ -98,7 +98,7 @@ Mostrará la siguiente caja de diálogo de confirmación (en Windows):
| | |
| --- | --- |
| Número de comando | 162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
index 62b444139c43b9..babc98647d3113 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado con un área desplegable, le permite cambiar el valor de
| | |
| --- | --- |
| Número de comando | 713 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
index d71cea1d532a9c..d6f0a2a7f5d6c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ Usted quiere abrir una ventana emergente en la posición del cursor del ratón.
| | |
| --- | --- |
| Número de comando | 1365 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
index c86a910c489235..3ef3e9d18b1ab9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
@@ -195,7 +195,7 @@ Si el comando ha sido ejecutado correctamente, la variable OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 1011 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
index 2530657efda9e0..98ab9024ee4710 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Ejemplos bajo Windows:
| | |
| --- | --- |
| Número de comando | 1107 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
index efa408ba56db93..8ff269163075a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Ejemplo bajo Windows
| | |
| --- | --- |
| Número de comando | 1106 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
index 4136adf1ab742e..e498efd6c3179f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
@@ -57,6 +57,6 @@ Conversión de una imagen con calidad del 60%:
| | |
| --- | --- |
| Número de comando | 1002 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
index 5b166327b0c5f2..98fed9d8774f1a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. De lo c
| | |
| --- | --- |
| Número de comando | 1012 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
index 9bac13b233760f..4198fc7a5fd8df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ El siguiente ejemplo llena el array C. Luego crea un nuevo array, llamado D, del
| | |
| --- | --- |
| Número de comando | 226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
index ea479a9603c0f1..4c9b15706d73d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ La copia comienza en la posición (expresada con relación al comienzo del BLOB
| | |
| --- | --- |
| Número de comando | 558 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
index df8cd8fc1944d9..37f99bf9ec535d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
@@ -123,7 +123,7 @@ Los siguientes ejemplos crean diferentes archivos y carpetas en la carpeta de la
| | |
| --- | --- |
| Número de comando | 541 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
index 2961318691ca41..37275f037293f0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Una vez hay terminado de utilizar la nueva lista, llame a [CLEAR LIST](clear-lis
| | |
| --- | --- |
| Número de comando | 626 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
index 2ba49e8525faf7..0d3734aa4e4fd2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ El siguiente ejemplo permite verificar si hay otras facturas vencidas en la tabl
| | |
| --- | --- |
| Número de comando | 331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
index d76f0e84dcb218..5f20121c3252b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Como el comando devuelve una colección, se puede utilizar con **.join()** para
| | |
| --- | --- |
| Número de comando | 1790 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
index a00c0b60722746..822d210f810c86 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ El siguiente ejemplo en Cliente/Servidor, copia el conjunto proceso "ConjuntoA",
| | |
| --- | --- |
| Número de comando | 600 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
index ffb2b1ebf99882..73da236254a4e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 18 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
index 9f91b2125df7c5..bef31b703c4068 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Desea contar las referencias a objetos en un array objeto:
| | |
| --- | --- |
| Número de comando | 907 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
index 5660a095ce683d..dbfc2232ca13ed 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
@@ -66,6 +66,6 @@ Acá tenemos una lista llamada *hList* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 380 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
index 567e73212ac25b..d043b21b6f30ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Count menu items se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 405 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
index 6b10c46d042d3f..065194fa388700 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Si omite el parámetro *proceso*, Count menus se aplica a la barra de menús del
| | |
| --- | --- |
| Número de comando | 404 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
index 20e3ff485e06fe..d09a90bde0a728 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ o:
| | |
| --- | --- |
| Número de comando | 259 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
index 530f8f55c36402..9d8f9d4da63c7a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 437 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
index 23829a8f3a522e..fc14c9f916ffef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver el ejemplo para [Process state](process-state.md "Process state") y [On Exit
| | |
| --- | --- |
| Número de comando | 335 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
index 7eeb49d4530a37..9bf34d5577affb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 343 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
index c2127b764d0249..4aaed29592c596 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Cuando se ejecuta en una aplicación 4D monousuario, **Count users** devuelve 1.
| | |
| --- | --- |
| Número de comando | 342 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
index dccf00bd43e899..f88ffa77650010 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, s
| | |
| --- | --- |
| Número de comando | 694 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
index be0289a8df7b59..c216bfe07f22d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Antes de lanzar la operación, el comando verifica que la ruta de acceso no corr
| | |
| --- | --- |
| Número de comando | 313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
index 48602e7687cfa8..5030b5b6c9c567 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
@@ -78,7 +78,7 @@ Si el documento se crea correctamente, la variable sistema OK toma el valor 1 y
| | |
| --- | --- |
| Número de comando | 266 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
index 77b65a02142f92..c8f0d79e252236 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Consulte el ejemplo de la sección *Conjuntos*.
| | |
| --- | --- |
| Número de comando | 140 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
index 5adf465123b816..c649b40badc4ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ Creación de la subcarpeta "\\Febrero\\" en la carpeta existente "C:\\Archives\\
| | |
| --- | --- |
| Número de comando | 475 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
index b7bf33c4ef2fc4..14ff647cab3b8a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Creación de un índice compuesto en los campos “Ciudad” y “CodigoPostal
| | |
| --- | --- |
| Número de comando | 966 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
index 914063e30b6598..b515d1b02f29bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
index 9277786ee6ebe6..b3e649fa89f7a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ El siguiente ejemplo archiva los registros que tienen más de 30 días. Esta ope
| | |
| --- | --- |
| Número de comando | 68 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
index d03f37621102d3..1f5b8adc06ac19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ Si ya existe un registro relacionado, CREATE RELATED ONE actúa como [RELATE ONE
| | |
| --- | --- |
| Número de comando | 65 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
index f67427a197a904..14addd65db0502 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ Si un número de registro no es válido (registro no creado), se genera el error
| | |
| --- | --- |
| Número de comando | 640 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
index 163ea797f27b8a..d11cd222251c35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ En un array de enteros largos, si un número de registro no es válido (registro
| | |
| --- | --- |
| Número de comando | 641 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
index b4729b89a87b0c..c9cfadc41b3e7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ El siguiente ejemplo crea un conjunto después de efectuar una búsqueda, de man
| | |
| --- | --- |
| Número de comando | 116 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
index 7c47d1879e0a3e..46e0c0f264b7eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
@@ -64,6 +64,6 @@ El parámetro opcional *profundidad* define el número de colores bajo Mac OS (e
| | |
| --- | --- |
| Número de comando | 679 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
index ae43fb9b08248f..59cddea2c88459 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
@@ -75,6 +75,6 @@ Con esta configuración, no se muestra un diálogo de contraseña para un 4D rem
| | |
| --- | --- |
| Número de comando | 1355 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
index d660abff0b4637..f69cbce6575301 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ El siguiente método de proyecto permite hacerlo:
| | |
| --- | --- |
| Número de comando | 33 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
index a0d3b008abfbe0..08bef9601e0390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Siempre y cuando se haya definido una tabla por defecto, la siguiente línea de
| | |
| --- | --- |
| Número de comando | 363 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
index 98c3eec980bd4f..843878234a9d0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Usted quiere obtener el formulario actual si éste es un formulario proyecto:
| | |
| --- | --- |
| Número de comando | 1298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
index f4ee0246fe08e7..956fd93951912b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
@@ -69,6 +69,6 @@ Para esto, utilice el método de objeto para crear la variable *vsCurrentRecord*
| | |
| --- | --- |
| Número de comando | 627 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
index d21998b4c000c5..3bb794336f5270 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La ventana del formulario actual puede ser generada automáticamente por un coma
| | |
| --- | --- |
| Número de comando | 827 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
index 2c06f3477c72e9..432c618ccb31e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Incluso si no está corriendo la versión cliente/servidor de 4D, su aplicación
| | |
| --- | --- |
| Número de comando | 483 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
index 21f9b568243ef1..1717c8eb9df455 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Este comando no puede llamarse desde una fórmula 4D.
| | |
| --- | --- |
| Número de comando | 684 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
index 580f7954000da8..5f13043b421c12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1201 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
index 8f2216cd2ec602..b0e2e50f6f45e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Quiere llamar a un proceso worker y pasar el nombre del proceso de llamada como
| | |
| --- | --- |
| Número de comando | 1392 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
index f4186e02e094ef..a5756542bec159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver los ejemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") y [PROCESS
| | |
| --- | --- |
| Número de comando | 322 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
index a33a0654cbb402..72adbd9d118ebf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [Current machine](current-machine.md "Current machine
| | |
| --- | --- |
| Número de comando | 484 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
index adee6ab35e9183..b82ce0cd43c1f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ El siguiente ejemplo extrae las horas, minutos y segundos de la hora actual:
| | |
| --- | --- |
| Número de comando | 178 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
index 3fdc4e55c0300d..f9319133ca04ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [User in group](user-in-group.md "User in group").
| | |
| --- | --- |
| Número de comando | 182 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
index 64fcd0ac9d726a..0ebe7e38246c3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ El método siguiente vacía la selección actual de una tabla *\[Clientes\]*:
| | |
| --- | --- |
| Número de comando | 334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
index a9976e75e3968b..8ea585427a404a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Desea conocer el estado de cifrado de un archivo de datos que corresponde al arc
| | |
| --- | --- |
| Número de comando | 1609 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
index afd6f6e5b42b0c..695968017671aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Si está trabajando por ejemplo con la base en la carpeta Documentos:MisCDsƒ: e
| | |
| --- | --- |
| Número de comando | 490 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
index 251d12c4cf879b..fc93ad71468977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
@@ -337,6 +337,6 @@ Queremos obtener las medidas de bytes de caché en los últimos dos minutos:
| | |
| --- | --- |
| Número de comando | 1314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
index 8868c915b2ef0e..a04dcab1fead17 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
@@ -100,6 +100,6 @@ Usted desea obtener una fecha de un atributo objeto, sea cual sea la opción de
| | |
| --- | --- |
| Número de comando | 102 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
index be7c37e454c480..6adbce66f76462 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ El siguiente ejemplo es una función que devuelve el día actual como una cadena
| | |
| --- | --- |
| Número de comando | 114 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
index 89876a0d2412e9..69ff07f2b772aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Ver el ejemplo para el comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 23 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
index 0392ae896d7ecc..1c567ab9614a61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Deactivated**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 347 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
index 63872453cc4e31..445159f9779db7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
@@ -36,6 +36,6 @@ El siguiente ejemplo utiliza un valor monetario expresado como un número real,
| | |
| --- | --- |
| Número de comando | 9 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
index 967aaba15a72f8..b4b5ad445fb325 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ Consulte los ejemplos dados por el comando [ENCRYPT BLOB](encrypt-blob.md "ENCRY
| | |
| --- | --- |
| Número de comando | 690 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
index d2192d257a7340..7e5d6bb7f050c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
@@ -64,6 +64,6 @@ La *frasePasar* y la *sal* utilizadas para el descifrado son idénticas a la *fr
| | |
| --- | --- |
| Número de comando | 1774 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
index edd5c9f36e2624..9db20be16de02b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
@@ -82,6 +82,6 @@ En este código se especifica el resultado de la tabla por defecto:
| | |
| --- | --- |
| Número de comando | 46 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
index 9ed72c2d3d968a..4146e516c1de46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Process Number](process-number.md "Process Number").
| | |
| --- | --- |
| Número de comando | 323 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
index 4ace745f75d86c..e18087b851f2c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
@@ -53,7 +53,7 @@ La eliminación de un documento hace que la variable sistema tome el valor 1\. S
| | |
| --- | --- |
| Número de comando | 159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
index 3288b0b1fd6f93..733fe98d97d78e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Puede interceptar estos errores utilizando un método instalado por el comando [
| | |
| --- | --- |
| Número de comando | 693 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
index 8cf6610949c949..953b969d813db3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ El siguiente ejemplo borra el último elemento de un array, si existe:
| | |
| --- | --- |
| Número de comando | 228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
index 90ebfb9a136363..b025ce80e028dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 560 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
index 61856026b429ef..cb55b36c597342 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ El siguiente código borra el elemento seleccionado de la lista *hList*. Si el e
| | |
| --- | --- |
| Número de comando | 624 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
index 5ec0d368e4e6ca..6328acd1fb5c40 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
@@ -52,6 +52,6 @@ Este ejemplo ilustra las dos sintaxis del comando:
| | |
| --- | --- |
| Número de comando | 967 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
index 05eb14dfb5eac2..4aa12e4c00609a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
@@ -39,7 +39,7 @@ Si omite el parámetro *proceso*, DELETE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 413 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
index b551f0432c216b..81e7467fc0cb2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ El siguiente ejemplo borra un registro de un empleado. El código pregunta al us
| | |
| --- | --- |
| Número de comando | 58 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
index 1d5854543f6577..bc288954916dc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
@@ -70,7 +70,7 @@ Si se encuentra un registro bloqueado durante la ejecución de DELETE SELECTION,
| | |
| --- | --- |
| Número de comando | 66 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
index 2ab5bae0deb9cc..9371bc60381bdf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
@@ -51,6 +51,6 @@ El siguiente ejemplo ilustra el uso de Delete string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
index f92281488acf5a..d058cb02e1c1a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Si no tiene los privilegios de acceso para llamar DELETE USER o si otro proceso
| | |
| --- | --- |
| Número de comando | 615 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
index fa891e104a0560..e9e3356c1a5058 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Número de comando | 1044 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
index ea641dcc8d892d..0de72de700f9a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
@@ -60,6 +60,6 @@ Al final de la lista de registros hay un botón con un método de objeto. El mé
| | |
| --- | --- |
| Número de comando | 122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
index 9c872f1111c9ba..49ac9d53067ce0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Si el parámetro *menuItem* designa un submenú jerárquico, todos los elementos
| | |
| --- | --- |
| Número de comando | 150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
index fbcb4285279863..2c0ee28e880390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Los archivos llave (archivos de extensión ".4DKeyChain") deben almacenarse en e
| | |
| --- | --- |
| Número de comando | 1639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
index 8e5802219dc098..ee2c3d0c0f876d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Bajo Windows, se muestra la ventana del mensaje si no se detecta actividad en la
| | |
| --- | --- |
| Número de comando | 910 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
index a3d579dc173b80..285599c28238f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ El siguiente ejemplo muestra una serie de registros como una presentación de di
| | |
| --- | --- |
| Número de comando | 105 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
index 97a8e09df01bab..45473304832d6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
@@ -108,7 +108,7 @@ También puede utilizar otros comandos, tales como [PRINT SELECTION](print-selec
| | |
| --- | --- |
| Número de comando | 59 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
index c75a540f34e772..8e922d9cb31fa9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este ejemplo le permite aplicar un color alterno en un formulario listado mostra
| | |
| --- | --- |
| Número de comando | 897 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
index 81e1bbbf0fc2a1..f439c8ff9557c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
@@ -73,6 +73,6 @@ El array *aTPaths* obtiene los siguientes elementos:
| | |
| --- | --- |
| Número de comando | 1395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
index 4ee209e12d7ffd..ad53542c7a2e14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
@@ -70,6 +70,6 @@ El array *aLAges* obtiene los siguientes 9 elementos:
| | |
| --- | --- |
| Número de comando | 1397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
index 3aed9649394b1c..5ae76d2546f906 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
@@ -88,6 +88,6 @@ Para calcular las estadísticas, usted desea ordenar el número de valores disti
| | |
| --- | --- |
| Número de comando | 339 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
index 5c024612f211f4..28677e72ef2db8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
@@ -117,7 +117,7 @@ Lista de todos los documentos en modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número de comando | 474 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
index da8d57b754c745..fe36d2c2eb1fb5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ En todos los casos, puede interceptar el error utilizando un método de interrup
| | |
| --- | --- |
| Número de comando | 525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
index ac519e6af1b47a..c2cdd7ddbe733d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Cuando ejecuta este código:
| | |
| --- | --- |
| Número de comando | 1236 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
index 30c2d03f8b132f..06dbf8e5735cc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Si el contenido de *valorHijo* no es valido, se devuelve un error.
| | |
| --- | --- |
| Número de comando | 1080 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
index b518b106e406fb..34f6279c89a176 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Ver el ejemplo del comando [DOM Insert XML element](dom-insert-xml-element.md "D
| | |
| --- | --- |
| Número de comando | 1082 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
index 643d6d5a117e05..8d30b9ad655ac9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 722 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
index 5dfc853567c287..13a5f901bc59e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 727 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
index 93347a1116139a..1a233d20743a4b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 726 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
index a9e0149e74428d..1c97bf77ef27da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Para esto, es suficiente escribir:
| | |
| --- | --- |
| Número de comando | 1097 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
index e701b76b98c615..6f54e71ad8abbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
@@ -161,7 +161,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 865 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
index 47b8ae1e8027b7..55a7e2abf8459d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
@@ -104,7 +104,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 861 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
index bccb89de9124b5..28d89133f1c893 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
@@ -68,7 +68,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 862 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
index 5ebf10f9fbb649..9dbea5df224dab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
@@ -61,7 +61,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 863 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
index f97bf1adf4412f..fc42faa91c297a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ El comando devuelve en resultado la referencia XML del elemento encontrado.
| | |
| --- | --- |
| Número de comando | 1010 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
index 31f77b1132b510..2044dd16fe94b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
@@ -123,7 +123,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 864 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
index 40421f72d9e076..a78590c3a8de32 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 723 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
index 3e68a68e025438..a625e7df8359ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Si el comando se ejecutó correctamente, la variable sistema OK toma el valor 1\
| | |
| --- | --- |
| Número de comando | 925 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
index 37eb8e2d51affb..8b108d065c6100 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -67,7 +67,7 @@ Si el comando se ha ejecutado correctamente y si el elemento analizado no es el
| | |
| --- | --- |
| Número de comando | 724 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
index 31cbb266c77afa..118d557cf7380c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
@@ -42,7 +42,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 923 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
index 5f29cdf89274ae..d847d89fbbc9b5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente y si el elemento referenciado no es
| | |
| --- | --- |
| Número de comando | 924 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
index 37a013bf9d7a18..e69dd662d9af28 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1053 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
index d0e15060504d2b..7ed7a1d02a49bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 729 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
index b0b4112a373fb4..b989d190251803 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 728 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
index 54d0fe9e1c1153..3fa2b8c806ebc8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ Después de la ejecución de estas instrucciones:
| | |
| --- | --- |
| Número de comando | 1081 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
index 879e43cb3bdfe0..46a3cea5950621 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ En este ejemplo, queremos encontrar la declaración DTD del documento XML:
| | |
| --- | --- |
| Número de comando | 1088 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
index 5787680e625373..dd95bee0877ec1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
index 010479e519ab8f..6828a78eb60977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
index 96f17a85759992..c47ab213bead3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 725 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
index 4531483ba50b4a..ead1c367f5eb79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
@@ -48,6 +48,6 @@ Estas constantes indican la siguiente información:
| | |
| --- | --- |
| Número de comando | 721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
index 1bdc96675400c6..8d16be53fd1367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
@@ -86,6 +86,6 @@ $rootRef:=DOM Parse XML source("") //selección de documento XML
| | |
| --- | --- |
| Número de comando | 1083 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
index 7df2884e616a7b..7b41775271d021 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
@@ -100,7 +100,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 719 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
index aa51e25a052b22..5373244d29867c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
@@ -88,7 +88,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 720 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
index ad01e2d824a27b..ed35fb79efc10d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ El siguiente código permite remover el primer atributo "N=1":
| | |
| --- | --- |
| Número de comando | 1084 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
index f6f96340db6732..92b27bc3e197a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
@@ -33,7 +33,7 @@ Un error se genera cuando la referencia del elemento no es válida.
| | |
| --- | --- |
| Número de comando | 869 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
index 73ed67ad780cf0..d5a4f9f468b155 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
@@ -73,7 +73,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 866 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
index f2886bb0bbaab1..4d87a3a125ec20 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ El siguiente ejemplo define la codificación a utilizar y la opción autónomo d
| | |
| --- | --- |
| Número de comando | 859 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
index 77f6230ca32a17..f06872c871f222 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Se genera un error cuando:
| | |
| --- | --- |
| Número de comando | 867 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
index 8c080ee6f0d34b..4bdc817715a02f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 868 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
index 0486a4ceda2fbe..d5bdf050693158 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Luego puede arrastrar la ventana haciendo clic en cualquiera de los bordes.
| | |
| --- | --- |
| Número de comando | 452 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
index f92dce18090943..bdeab7f69008d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
@@ -99,6 +99,6 @@ El método de objeto list box de la izquierda (destino) contiene el siguiente c
| | |
| --- | --- |
| Número de comando | 608 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
index 4a46c321c35eef..c1b5a3f2fef728 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
@@ -49,6 +49,6 @@ Desea eliminar un usuario remoto específico:
| | |
| --- | --- |
| Número de comando | 1633 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
index 9341d5a91ba973..0895ca552db2c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORD puede ejecutarse durante la entrada de datos. Esto permite dupl
| | |
| --- | --- |
| Número de comando | 225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
index 9e32bccb9a090d..a81fc08491fd88 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ Este código permite crear un menú emergente dinámico jerárquico basado en ac
| | |
| --- | --- |
| Número de comando | 1006 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
index 27074ae4e59309..192141c6baf1c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ El siguiente ejemplo muestra al usuario la ventana de gestión de usuarios y gru
| | |
| --- | --- |
| Número de comando | 281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
index 7309aabade0272..e4dea6b1dd497c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ Si el usuario valida la caja de diálogo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 806 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
index 0a8a1425ff61a7..ba1a22d6436a7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
@@ -77,6 +77,6 @@ Dadas dos columnas de un list box donde los nombres de las variables asociadas s
| | |
| --- | --- |
| Número de comando | 870 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
index 60756e7672fb8c..bbbdb440b28b91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, ENABLE MENU ITEM se aplica a la barra de menú
| | |
| --- | --- |
| Número de comando | 149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
index c3e1dcd51f367d..f65ab5ac6f8609 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
@@ -191,6 +191,6 @@ Una empresa quiere utilizar el Internet para intercambiar información. Cada fil
| | |
| --- | --- |
| Número de comando | 689 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
index 5571638dc7f9b0..8558b832c5bf5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
@@ -66,6 +66,6 @@ Encriptar un archivo de texto ubicado en la carpeta RESOURCES de la base de dato
| | |
| --- | --- |
| Número de comando | 1773 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
index 3c373732d89f95..72373eb51beb0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
@@ -137,6 +137,6 @@ Vuelva a cifrar un archivo de datos encriptados con la llave actual (por ejemplo
| | |
| --- | --- |
| Número de comando | 1610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
index 9f5068dc0172a4..c1d55503224a47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ Este método de formulario se utiliza durante la impresión de un informe. Se de
| | |
| --- | --- |
| Número de comando | 36 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
index 9300f88296e50a..0e4a553d43fab7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Una secuencia de instrucciones SQL debe estar rodeada por las palabras claves [B
| | |
| --- | --- |
| Número de comando | 949 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
index 858734ed060cdc..24facff3a2310a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Este es el código del botón **Compare**:
| | |
| --- | --- |
| Número de comando | 1196 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
index 84e5b30a5bc493..a7fc2b3cc84703 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW, que borra el contenido de una ventana, con [CLOSE WIND
| | |
| --- | --- |
| Número de comando | 160 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
index ec9f0e481818c3..c3ba8068dde17b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
@@ -85,6 +85,6 @@ Estos son algunos ejemplos de conversiones que pueden realizarse con este comand
| | |
| --- | --- |
| Número de comando | 676 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
index 9c9b13f82ead66..222b234843dfd8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
@@ -72,6 +72,6 @@ Usted desea ejecutar una fórmula incluida las llamadas a los comandos y tablas
| | |
| --- | --- |
| Número de comando | 63 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
index 6a35abe960e582..f9217ed5c0b316 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1085 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
index 106be8af82ee37..42ef1ad362922e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Si este comando se ejecuta correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 1007 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
index d84e57f912a39a..77cb9329ffc0ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
@@ -65,7 +65,7 @@ Consulte el ejemplo del comando [REGISTER CLIENT](register-client.md "REGISTER C
| | |
| --- | --- |
| Número de comando | 651 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
index 4e1a991b15ec96..e51b829116f863 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
@@ -192,6 +192,6 @@ Consulte la sección *Servicios basados en los procedimientos almacenados (ejemp
| | |
| --- | --- |
| Número de comando | 373 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
index a857475d2dd4eb..89918c70f37109 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
@@ -37,6 +37,6 @@ El siguiente ejemplo asigna el exponencial de 1 a *vrE* (el log de *vrE* es 1):
| | |
| --- | --- |
| Número de comando | 21 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
index 2a778f4925a3c8..fa3beafd5a412d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ La variable OK toma el valor 1 si el BLOB ha sido descomprimido con éxito, de l
| | |
| --- | --- |
| Número de comando | 535 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
index c5a0cc61fb45b7..aff77e9501264a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de abri
| | |
| --- | --- |
| Número de comando | 666 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
index 83e26d9a533337..7497af6e358c54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 84 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
index 0681a7588af658..4b175daae71183 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
@@ -119,6 +119,6 @@ Desea exportar solo los métodos proyecto y base, y un archivo de registro:
| | |
| --- | --- |
| Número de comando | 1565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
index a9a8fdadf71b19..042fb2e5e87f1f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
@@ -61,6 +61,6 @@ Desea exportar la estructura actual de la base de datos en formato html:
| | |
| --- | --- |
| Número de comando | 1311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
index cf968d56ea9fd8..942843207d8021 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 85 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
index 06624640332f4d..b5f2da11dfb64a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la exportación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
index 5024cdd47e65e5..549772227d8a8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
@@ -35,6 +35,6 @@ El siguiente ejemplo asigna la variable *vbOpciones* a Falso:
| | |
| --- | --- |
| Número de comando | 215 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
index 1ca6a5075f7e1f..f7657f9f780efa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ Este ejemplo muestra una alerta. Este método pasa un puntero a un campo:
| | |
| --- | --- |
| Número de comando | 257 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
index 63f04f9ceb2d0b..98e5c68362307a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
@@ -63,6 +63,6 @@ En el siguiente ejemplo, la variable *campNum* es igual al número del campo de
| | |
| --- | --- |
| Número de comando | 253 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
index 9793abacd97224..3e3b9dd3feb861 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
@@ -46,7 +46,7 @@ Ver el ejemplo del comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número de comando | 321 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
index f9b652c985639d..3d4d2c488b390b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
@@ -247,6 +247,6 @@ El método ObtenerTextoSeleccionado es el siguiente:
| | |
| --- | --- |
| Número de comando | 389 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
index cef68f65eda6c0..508a9cbbdde5d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
@@ -116,6 +116,6 @@ Desea encontrar una referencia a un objeto:
| | |
| --- | --- |
| Número de comando | 230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
index 419fc7a9cb8cca..ecb685e1a49d69 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ Tenga en cuenta >= permite cubrir todos los casos. De hecho, la función devuelv
| | |
| --- | --- |
| Número de comando | 653 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
index 763cd8ddd53d8d..b1948284c6fd0a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Dada la siguiente lista jerárquica:
| | |
| --- | --- |
| Número de comando | 952 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
index 383d063c6fd577..6ecd4796014dd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
@@ -80,6 +80,6 @@ Usted quiere encontrar el número de ocurrencias de las cadenas que comienzan po
| | |
| --- | --- |
| Número de comando | 1333 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
index 7cccb0aa40625d..3a5e7572bcb16d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ El parámetro *parteVentana* devuelve 3 si se toca la ventana, de lo contrario 0
| | |
| --- | --- |
| Número de comando | 449 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
index d3bd23517fd532..ce29bf30d97587 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ El siguiente ejemplo carga el primer registro de la tabla \[Clientes\]:
| | |
| --- | --- |
| Número de comando | 50 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
index 5fed536ffc9045..4eeefc68e67abf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ Normalmente, no es necesario llamar a este comando, ya que 4D guarda las modific
| | |
| --- | --- |
| Número de comando | 297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
index ea9c959ecc25ae..66ab90ee545967 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón. El método de objet
| | |
| --- | --- |
| Número de comando | 278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
index fcc13edc043056..aaeaa0e4c28fe6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ Si no hay carpetas en la ubicación especificada, el comando devuelve un array v
| | |
| --- | --- |
| Número de comando | 473 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
index 2c7d03fc1e3fc2..cef24e6cbfe399 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ Desea asegurarse de que la fuente utilizada en un área de texto esté disponibl
| | |
| --- | --- |
| Número de comando | 1700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
index 167d2cd154d51d..0a30611fa80680 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
@@ -81,6 +81,6 @@ Usted quiere obtener una lista de fuentes recientes:
| | |
| --- | --- |
| Número de comando | 460 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
index e31ab15affe95b..ae80094a0c8d2e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Usted desea seleccionar estilos de la familia de fuentes "Verdana" (si está dis
| | |
| --- | --- |
| Número de comando | 1362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
index 8be3644a61664d..fb88193444f531 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
@@ -63,6 +63,6 @@ Si ejecuta el código:
| | |
| --- | --- |
| Número de comando | 1570 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
index 9ca7971f01e32e..8478c136ea2f16 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
index 7535b0729099a9..6d1206aa4ad766 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Desea cargar una imagen según el esquema actual del formulario:
| | |
| --- | --- |
| Número de comando | 1761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
index 49ea856724f8ed..686ab9653d86ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
@@ -75,6 +75,6 @@ En un formulario, si selecciona un elemento de menú de la barra de menús o si
| | |
| --- | --- |
| Número de comando | 276 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
index da03e08281f5fb..92df2979afb6a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ Puede excluir ciertos objetos del orden de entrada:
| | |
| --- | --- |
| Número de comando | 1469 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
index c0164803b70b51..a3276c2eb4cc91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1077 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
index bc6a29b0d1cf21..1512d0cadb5a7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
@@ -73,6 +73,6 @@ Ejemplos de uso típicos:
| | |
| --- | --- |
| Número de comando | 1167 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
index 055e58a73b46f6..16fc4d8fb819bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
@@ -130,6 +130,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 898 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
index 54bc8fb1fb6d4c..b0c698fd0bfb7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ El parámetro *título* devuelve el título de la ventana del formulario, tal co
| | |
| --- | --- |
| Número de comando | 674 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
index 95e6b158ce147a..5629c0975f6d52 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1078 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
index 89e030c17d907c..7b6074b67a0934 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es un método de objeto para un botón que muestra una pág
| | |
| --- | --- |
| Número de comando | 247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
index b17d552956b1b2..300688beefeb5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
index dd08ba8589ed6e..d90149f85baf5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea, llamado por un comando de men
| | |
| --- | --- |
| Número de comando | 248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
index 949c1511033d33..8702fa4e5d8112 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ El siguiente ejemplo es un método de una línea llamado por un comando de menú
| | |
| --- | --- |
| Número de comando | 249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
index 6a10e509867bca..e6c57d4e10f3e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Por defecto, el comando devuelve una captura de pantalla de la página 1 del for
| | |
| --- | --- |
| Número de comando | 940 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
index 3ed40b05b5fe05..1a34502a2a8374 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ Usted desea definir el orden de entrada de los objetos en el formulario basado e
| | |
| --- | --- |
| Número de comando | 1468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
index ae751cd8c099ba..8ffe1b3a7d05ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 892 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
index 1a981aaff11c75..17684c4f8fc885 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
@@ -112,6 +112,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 55 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
index 4c0f72510cfa6a..2aeb0437f93f08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ Los siguientes ejemplos usan la ruta a un formulario .json para imprimir los reg
| | |
| --- | --- |
| Número de comando | 54 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
index 23230a5dfeed9e..0ec849f1435a39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ El método de objeto asociado con este botón es el siguiente:
| | |
| --- | --- |
| Número de comando | 891 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
index 15afc7138a831d..18c56622c2b5f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Consulte el ejemplo del comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE"
| | |
| --- | --- |
| Número de comando | 893 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
index 782b698a6036ac..b1bdc8fbda2a72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Llamar este comando es necesario cuando se utiliza el comando [FORM LOAD](../com
| | |
| --- | --- |
| Número de comando | 1299 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
index 1590c5d645c10d..9162cb83b9fcf7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Ver el ejemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número de comando | 327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
index 08b8acd5b8ac46..5669c60185f9bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 447 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
index 2849bdbc2ed7b7..f2b98eae176314 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
@@ -93,6 +93,6 @@ Este es el método del botón **Generar**
| | |
| --- | --- |
| Número de comando | 691 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
index 8c31345e7ee6fb..2ccd8c6f967e38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
@@ -90,6 +90,6 @@ Estos ejemplos ilustran cómo recuperar el extracto de un texto:
| | |
| --- | --- |
| Número de comando | 1147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
index d78d0e1625263d..1a990282e20349 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [ENCRYPT BLOB](encrypt-blob.md "ENCRYPT BLOB").
| | |
| --- | --- |
| Número de comando | 688 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
index 4420f1c263f3f7..39c9e234323ea8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Este ejemplo genera un hash de contraseña utilizando bcrypt con un factor de co
| | |
| --- | --- |
| Número de comando | 1533 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
index 1cd8689c10e798..c9ed87f0f2cf79 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Usted quiere obtener la ruta del último archivo de backup:
| | |
| --- | --- |
| Número de comando | 1418 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
index 20a24aab8bc964..e855c0e01dc830 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
@@ -214,7 +214,7 @@ Si el parámetro *carpeta* no es válido o si la ruta de acceso devuelta está v
| | |
| --- | --- |
| Número de comando | 485 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
index d3405f85a59ee9..9eb1adb944e774 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1428 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
index bff993d348a0c3..23ae251409668b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1427 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
index 7045e2c54361e4..bf93c59a51d187 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Los tipos de campos de datos escalares incluyen campos de tipo fecha/hora, numé
| | |
| --- | --- |
| Número de comando | 1426 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
index 1a3adc14f7c827..41583688f8f7c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Este ejemplo autoriza un conjunto de métodos específicos para crear un informe
| | |
| --- | --- |
| Número de comando | 908 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
index dc1bb2046a2696..a4de2996a1b306 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Consulte la descripción del comando [SET APPLICATION COLOR SCHEME](set-applicat
| | |
| --- | --- |
| Número de comando | 1763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
index e988e73d97fca1..51d2b1b4a45a42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Por defecto, las aserciones están activas pero pueden haber sido desactivadas u
| | |
| --- | --- |
| Número de comando | 1130 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
index 30d474a3e685a8..c42c667aa48726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [GET FIELD RELATION](get-field-relation.md "GET
| | |
| --- | --- |
| Número de comando | 899 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
index 4dd9ddc8f7240d..758887c21a3d19 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número de comando | 1432 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
index 9564ffa771afb5..fccc276882bfba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si no hay ninguna impresora instalada, se genera un error.
| | |
| --- | --- |
| Número de comando | 788 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
index f4aad65d31e72b..57a579de7af544 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
@@ -57,6 +57,6 @@ El lenguaje actual de la base permite definir la carpeta .lproj en la que el pro
| | |
| --- | --- |
| Número de comando | 1009 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
index 25ce23a2e861df..bca9c707a754fa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
@@ -1098,4 +1098,4 @@ En el [Método base On Startup](metodo-base-on-startup.md), usted escribe:
| | |
| --- | --- |
| Número de comando | 643 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
index 704874db7845de..537a7c4f02ac07 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si ningún usuario por defecto está definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 826 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
index 7a610d1610aba2..02964311ea22ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ El parámetro opcional *tamaño* permite indicar las dimensiones en píxeles del
| | |
| --- | --- |
| Número de comando | 700 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
index 22725f63ecf88c..d4a856d920ce94 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document position devuelve la posición, a partir del inicio del documento,
| | |
| --- | --- |
| Número de comando | 481 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
index 9c7deec5649764..4d1a7022971915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
@@ -208,7 +208,7 @@ Una vez implementado en la base, tenemos todo lo que necesitamos para escribir e
| | |
| --- | --- |
| Número de comando | 477 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
index 487ec7a1eb9c42..8308723972dca8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ En Macintosh, si no pasa el parámetro opcional *\**, se devuelve el tamaño del
| | |
| --- | --- |
| Número de comando | 479 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
index 9e8ce3b04a106e..45e59a9e221450 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ Este es un ejemplo de cómo procesar inmediatamente los caracteres introducidos
| | |
| --- | --- |
| Número de comando | 655 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
index f1c7c31f42099e..7921ee2bdf0977 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Este comando devuelve una cadena vacía en los siguiente casos:
| | |
| --- | --- |
| Número de comando | 1133 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
index 8fcd596bac1965..722e1b66a60af0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
@@ -50,6 +50,6 @@ Si ninguna lista está asociada al campo o si el tipo del campo no permite la as
| | |
| --- | --- |
| Número de comando | 685 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
index c0673aa60a0bd7..dd1040234a06d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
@@ -81,6 +81,6 @@ Este ejemplo recupera en las variables *vTipo*, *vLong*, *vIndex*, *vUnico* y *v
| | |
| --- | --- |
| Número de comando | 258 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
index 9ad4f1398ab77a..faed0699a9451d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
@@ -89,6 +89,6 @@ El siguiente código ilustra las diferentes posibilidades ofrecidas por los coma
| | |
| --- | --- |
| Número de comando | 920 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
index bdfd3b5ba7b4d3..d271b1db199c43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
@@ -35,6 +35,6 @@ En ambos casos, el comando no devuelve campos invisibles.
| | |
| --- | --- |
| Número de comando | 804 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
index 55b18c2aeacef3..43f8384ab0d729 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ El siguiente ejemplo puede utilizarse para recuperar en un array todas las rutas
| | |
| --- | --- |
| Número de comando | 976 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
index 6753f9b2a883cc..a84ec5b7365b68 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Desea verificar si el usuario actual pertenece al grupo "plugins":
| | |
| --- | --- |
| Número de comando | 1738 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
index 49173acfbf3592..3d6de5d394ed74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP LIST o si otr
| | |
| --- | --- |
| Número de comando | 610 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
index cfa4dd0d41026a..997873dede148e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Si no tiene privilegios de acceso para llamar al comando GET GROUP PROPERTIES o
| | |
| --- | --- |
| Número de comando | 613 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
index 1eea1d0ee8641a..43ace1a7f69e3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
@@ -69,6 +69,6 @@ Modificación del estilo del texto resaltado:
| | |
| --- | --- |
| Número de comando | 209 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
index 3ac6274c9cea50..226ecd57b101aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
@@ -49,7 +49,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 902 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
index debd9bdd67f8dc..0d39f99e4cff4a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
@@ -44,7 +44,7 @@ Si el recurso se encuentra, OK toma el valor 1, de lo contrario toma el valor 0
| | |
| --- | --- |
| Número de comando | 510 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
index 8d9774acc6e210..5f4c9d33fed1b1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
@@ -37,6 +37,6 @@ Finalmente, puede pasar \* en *refElem*: en este caso, el comando se aplicará a
| | |
| --- | --- |
| Número de comando | 954 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
index 7757ab479dd070..6187363b21d5b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
@@ -44,6 +44,6 @@ Si ningún icono está asociado al elemento, la variable icono se devuelve vací
| | |
| --- | --- |
| Número de comando | 951 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
index 9002dc26f7ea20..2f96275ca6e21a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
@@ -81,6 +81,6 @@ Si también quiere obtener los valores de los parámetros, escriba:
| | |
| --- | --- |
| Número de comando | 1195 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
index 59f54367a6b581..cffc373fe723b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
@@ -41,6 +41,6 @@ En *selector*, puede pasar la constante Additional text o Standard action (en el
| | |
| --- | --- |
| Número de comando | 985 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
index d4ed4738478707..148dbadc4f7a30 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
@@ -58,6 +58,6 @@ Para mayor información sobre estas propiedades, consulte la descripción del co
| | |
| --- | --- |
| Número de comando | 631 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
index 02a021cc4d2d10..cd59dc26eced64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ Consulte el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LI
| | |
| --- | --- |
| Número de comando | 378 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
index 8b2052540ef06f..8d454793f302c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Para una completa descripción de la apariencia, iconos de nodos, altura de lín
| | |
| --- | --- |
| Número de comando | 632 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
index 677b3aaafbac35..fdbf7a77d70ecd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Consulte el ejemplo del comando [SET MACRO PARAMETER](set-macro-parameter.md "SE
| | |
| --- | --- |
| Número de comando | 997 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
index de83fcdc16782d..087bb0906df64d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Consulte el ejemplo del comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITE
| | |
| --- | --- |
| Número de comando | 979 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
index 3ec5932573ce40..f88755f3dfc3f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Si ningún icono está asociado a la línea de menú, el comando devuelve un val
| | |
| --- | --- |
| Número de comando | 983 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
index 5a98d01edc1b70..1424a0bc16bf34 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
@@ -54,7 +54,7 @@ Para obtener un atajo asociado con un comando de menú, es útil implementar una
| | |
| --- | --- |
| Número de comando | 424 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
index 2767e4994cba4b..cfa82d0ee81df8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ El siguiente ejemplo invierte la marca de una línea de menú:
| | |
| --- | --- |
| Número de comando | 428 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
index 93daa3f9c4e819..96b878a7074f1b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
@@ -35,6 +35,6 @@ El comando devuelve el nombre del método 4D como una cadena de caracteres (expr
| | |
| --- | --- |
| Número de comando | 981 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
index ae24d13cdabf62..7a2aa13dd373ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
@@ -57,6 +57,6 @@ Consulte el ejemplo del comando [Get menu item key](get-menu-item-key.md "Get me
| | |
| --- | --- |
| Número de comando | 980 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
index 01780b3f0d07a5..ccdcde11838c0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1003 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
index 71091ab8d090fe..e53a5700596d52 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
@@ -38,6 +38,6 @@ En el parámetro *propiedad*, pase la propiedad para la cual quiere obtener el v
| | |
| --- | --- |
| Número de comando | 972 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
index ed0026ce39069a..a77f580cc54771 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Para probar si un elemento de menú se muestra en negrita, escribe:
| | |
| --- | --- |
| Número de comando | 426 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
index 36ddba63423e2f..2cf8936dba524f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Si omite el parámetro *proceso*, Get menu item se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
index aa1c2ac26c0f92..413241641f5bdd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Usted quiere conocer el contenido de la barra de menú del proceso actual:
| | |
| --- | --- |
| Número de comando | 977 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
index bd6722f0d95a67..688b0e43fc25ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Si omite el parámetro *proceso*, Get menu title se aplica a la barra de menús
| | |
| --- | --- |
| Número de comando | 430 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
index 2edfe7a64f60ac..e24cec26260a9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ Una vez haya identificado las tablas faltantes de la base, puede reactivarlas v
| | |
| --- | --- |
| Número de comando | 1125 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
index ea6c0c26213540..b7616803361139 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
@@ -43,6 +43,6 @@ Para mayor información sobre los tipos de datos soportados, consulte la secció
| | |
| --- | --- |
| Número de comando | 958 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
index c9c3737b446e97..d660217cbbf4bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Si los datos se extraen correctamente, la variable OK toma el valor 1; de lo con
| | |
| --- | --- |
| Número de comando | 401 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
index 46cf5ecf53f915..02b36c629f1a2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Si la imagen no tienen un nombre por defecto, el comando devuelve una cadena vac
| | |
| --- | --- |
| Número de comando | 1171 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
index 365640e86bdf39..00e3edeb2c0cb2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
@@ -54,6 +54,6 @@ Usted quiere saber los formatos de imagen almacenados en un campo para el regist
| | |
| --- | --- |
| Número de comando | 1406 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
index 01b5454a60ddcf..48164d938cca2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
@@ -65,7 +65,7 @@ Si no hay suficiente memoria para devolver la imagen, se genera el error -108\.
| | |
| --- | --- |
| Número de comando | 565 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
index 6865a8a05ecb70..eb7ac5f9f2032e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Si la imagen se extrae correctamente, OK toma el valor 1; de lo contrario OK tom
| | |
| --- | --- |
| Número de comando | 522 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
index fff175850de422..69ebae771d8609 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Si la imagen no contiene palabras claves o metadatos IPTC/Keywords, el comando d
| | |
| --- | --- |
| Número de comando | 1142 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
index d85b5545dc4934..8ade4a897bb017 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ La variable sistema *OK* devuelve 1 si la recuperación de los metadatos es corr
| | |
| --- | --- |
| Número de comando | 1122 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
index 4fd1782d9c97f8..25bc2039fdc852 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
index 4510d669e9b83d..39b76576469407 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Pase en el parámetro *plugIn* el número del plug-in del que quiere conocer el
| | |
| --- | --- |
| Número de comando | 846 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
index 7ec4c2356c213d..d8c56a4635d912 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Utilizar punteros a elementos de arrays de dos dimensiones:
| | |
| --- | --- |
| Número de comando | 304 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
index ebeda0baa41565..179cfed2ff851a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
@@ -67,6 +67,6 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 708 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
index 298aa0ea6927da..621ca49cb73d4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 734 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
index 0be6511d5a3d0f..d7b8a1fa650463 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que el usuario puede modificar esta opción antes de validar la caja de di
| | |
| --- | --- |
| Número de comando | 1197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
index b4bd6caeee8623..90c745fe44c4a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Para saber el tamaño total de la página, puede:
| | |
| --- | --- |
| Número de comando | 703 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
index 254f103b0c87ee..1740ff6e1bce0d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
@@ -49,6 +49,6 @@ Es posible basar la impresión de los formularios efectuados utilizando los coma
| | |
| --- | --- |
| Número de comando | 711 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
index 2b079e570bcfd4..65bfa4c43f0224 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ Los márgenes de impresión derecha e izquierda no influyen en el valor devuelto
| | |
| --- | --- |
| Número de comando | 702 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
index ad7e76415a2768..b831a86f6029d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
@@ -123,6 +123,6 @@ Ver el ejemplo del comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número de comando | 371 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
index e00e5a238a457a..424bf570228b9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Queremos modificar temporalmente el destino de búsqueda y restablecer los pará
| | |
| --- | --- |
| Número de comando | 1155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
index 1dd9a73cf9baf9..fb97ae0919f77b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defecto, si ningún límite se ha definido, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1156 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
index d0cf35638e0473..ba698ab3ce1dc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ Si la operación se realiza correctemente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 650 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
index de1cfdaf49e024..b9d6b6113de6ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
@@ -49,6 +49,6 @@ Una se haya ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 686 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
index 60ce924ad18f56..656b911917fdcd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Si el recurso no existe, Get resource name devuelve una cadena vacía.
| | |
| --- | --- |
| Número de comando | 513 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
index 0213194202ca03..acaf44e29d794e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ La variable sistema OK toma el valor 0 si el recurso no existe, de lo contrario
| | |
| --- | --- |
| Número de comando | 515 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
index 2c0fd1ff334666..11020eb996e8ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ Si no hay suficiente memoria para cargar la imagen, se genera un error. Puede in
| | |
| --- | --- |
| Número de comando | 508 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
index c9d1835fd1fa3a..d4cfd9c5af5b4e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si ninguna línea de menú ha sido seleccionada, el comando devuelve una cadena
| | |
| --- | --- |
| Número de comando | 1005 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
index be6f8a487067e2..5296535dfd63cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Este método de proyecto puede utilizarse para direccionar el mismo puerto seria
| | |
| --- | --- |
| Número de comando | 909 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
index d2303e386aa1d3..74d50c87a78a6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ La variable sistema OK toma el valor 1 si se encuentra el recurso, de lo contrar
| | |
| --- | --- |
| Número de comando | 506 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
index c423053a769d1b..5763a3e9ad3b0d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Si quiere conocer la configuración actual de la hoja de estilo "Automatic"
| | |
| --- | --- |
| Número de comando | 1256 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
index 9935beba17af16..402e6d116e4145 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número de comando | 1137 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
index 1d96ff5b6cd069..761d6edae1f5d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ En el parámetro *formato*, pase el tipo del parámetro del que quiere conocer e
| | |
| --- | --- |
| Número de comando | 994 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
index 0e5737c4c416b6..62dd9e6cfdb84f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Una vez ejecutado el comando:
| | |
| --- | --- |
| Número de comando | 687 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
index 95efd40da8b558..defd9c1bd312c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
@@ -34,6 +34,6 @@ En ambos casos, el comando no devuelve las tablas invisibles.
| | |
| --- | --- |
| Número de comando | 803 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
index 739bab1e27f435..4033dc6af85ae8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si el texto se extrae correctamente, OK toma el valor 1; de lo contrario OK toma
| | |
| --- | --- |
| Número de comando | 524 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
index 9bd8c5011d5526..2b672095d86478 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Para contar las palabras de un texto:
| | |
| --- | --- |
| Número de comando | 1141 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
index 048d9464481484..4611b97c68b582 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
@@ -47,7 +47,7 @@ Si se encuentra el recurso, OK toma el valor 1\. De lo contrario, toma el valor
| | |
| --- | --- |
| Número de comando | 504 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
index 3eb6a157dfdb72..041e38e015090d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER LIST o si otro
| | |
| --- | --- |
| Número de comando | 609 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
index c3da97fcd934d7..832d19c5e96719 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ Si no tiene privilegios de acceso para llamar al comando GET USER PROPERTIES o s
| | |
| --- | --- |
| Número de comando | 611 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
index 18e1021888b183..6fad5176ffd6bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 443 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
index 1de30927bb500b..0d076b46194182 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Ver ejemplo del comando [SET WINDOW TITLE](set-window-title.md "SET WINDOW TITLE
| | |
| --- | --- |
| Número de comando | 450 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
index cddcc37d269d00..8e2fd0394cd468 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Ver el ejemplo del comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número de comando | 206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
index 41596500e11c2f..ada1f1b4aa4b81 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ Ver el ejemplo para Record Number.
| | |
| --- | --- |
| Número de comando | 242 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
index 18c9f276485af9..65460e97c023bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ El siguiente método de objeto del área desplegable *atNames* selecciona el reg
| | |
| --- | --- |
| Número de comando | 245 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
index 41fc35326e54e2..6b775c296d862d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ Muestra la siguiente ventana (en Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número de comando | 161 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
index e63bebae5aa7c8..4cd139e417eb37 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número de comando | 298 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
index 6c1bbc35daf6c4..d5d00d47cc369e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
@@ -289,6 +289,6 @@ En este ejemplo, personalizamos algunos parámetros:
| | |
| --- | --- |
| Número de comando | 169 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
index 86f35706b7c44d..391f7dcdbca1f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ El siguiente método muestra un registro en toda la pantalla (Macintosh) hasta q
| | |
| --- | --- |
| Número de comando | 432 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
index ab22cd4f1bd100..59243420eb9836 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ El siguiente ejemplo oculta todas las ventanas que pertenecen al proceso actual:
| | |
| --- | --- |
| Número de comando | 324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
index fa0b3518c30c60..ffb46047b219e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar esto, en el evento formulario On Resize de la ventana estándar, es
| | |
| --- | --- |
| Número de comando | 434 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
index 71a66386e8dc81..cc1f6c7fcf1ec4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Este ejemplo corresponde a un método de un botón ubicado en un formulario de e
| | |
| --- | --- |
| Número de comando | 436 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
index 3a0705f53fc144..b512716d628c2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Cuando el usuario hace clic en el botón, aparece la caja de diálogo estándar
| | |
| --- | --- |
| Número de comando | 656 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
index b1c881efecbea5..87ab8e05975617 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
@@ -67,6 +67,6 @@ Ver el ejemplo del comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTR
| | |
| --- | --- |
| Número de comando | 210 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
index 18431c67fd8839..f274fe8a47094c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
@@ -63,6 +63,6 @@ Ejemplos de peticiones con autenticación:
| | |
| --- | --- |
| Número de comando | 1161 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
index 90007c185caa08..b2c157fe042b72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1307 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
index 855c4bd2f44b4e..fd7a1cb64ef54a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ En el parámetro *valor*, pase una variable para recibir el valor actual de la *
| | |
| --- | --- |
| Número de comando | 1159 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
index 4bf44d430f2926..4621d9da030f54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
@@ -111,7 +111,7 @@ Recuperación de un vídeo:
| | |
| --- | --- |
| Número de comando | 1157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
index b67764145c5974..1737cb87e8865d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
@@ -131,6 +131,6 @@ Petición para añadir un registro en JSON a una base remota:
| | |
| --- | --- |
| Número de comando | 1158 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
index 1c167ae9a687eb..a306a412cf0926 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Usted quiere cambiar temporalmente la carpeta de certificados:
| | |
| --- | --- |
| Número de comando | 1306 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
index 7ffcc7f3cf35fb..7fcc8ac91f7c2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
@@ -51,6 +51,6 @@ El orden de llamada de las opciones no tiene importancia. Si la misma opción se
| | |
| --- | --- |
| Número de comando | 1160 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
index 2e99b408d79c0f..c2645fc9f95c0e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
@@ -57,6 +57,6 @@ con:
| | |
| --- | --- |
| Número de comando | 311 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
index 06585f09eb0d3e..fcb6c59ecc0f9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
@@ -52,7 +52,7 @@ Si el usuario hace clic en **Cancelar** en la caja de diálogo estándar de guar
| | |
| --- | --- |
| Número de comando | 665 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
index 05a9e0ff0d96c2..e2787b9924babb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 86 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
index 69743c67296abe..cf970b4403013a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Usted desea importar una definición de estructura guardada en la base actual:
| | |
| --- | --- |
| Número de comando | 1310 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
index 6f4dc9b514f40f..d04b7456322b77 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 87 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
index d3868d6221c55f..3fd5d4ed8d6e3a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK toma el valor 1 si la importación termina con éxito; de lo contrario, toma
| | |
| --- | --- |
| Número de comando | 168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
index 6bf89eedb62ae5..d3949b8acccc5a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In break** asegúrese de que la prop
| | |
| --- | --- |
| Número de comando | 113 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
index 89e74e06b83b32..2b54285dbef221 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In footer** asegúrese de que la pro
| | |
| --- | --- |
| Número de comando | 191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
index 155531d80ea3d3..15c295e8f094af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **In header**, asegúrese de que la pr
| | |
| --- | --- |
| Número de comando | 112 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
index ce34dac04d8d0c..7cc2c57aeae7ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si efectúa la operación desde un trigger o una subrutina que puede ser llamado
| | |
| --- | --- |
| Número de comando | 397 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
index d27f3162a05220..8a3455a5a7df93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ El siguiente ejemplo añade un elemento a un array:
| | |
| --- | --- |
| Número de comando | 227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
index 8be2d7b4c7dfe4..bcc886805d73ec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Antes de llamar el comando, pase en la variable del parámetro *offset* la posic
| | |
| --- | --- |
| Número de comando | 559 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
index 34fcc800e33a21..7ac71d8107b862 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
@@ -54,6 +54,6 @@ El siguiente código inserta un elemento (sin sublista asociada) justo antes del
| | |
| --- | --- |
| Número de comando | 625 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
index 2a8520991e628b..099a37eada089b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ El siguiente ejemplo crea un menú que consiste en dos comandos los cuales asign
| | |
| --- | --- |
| Número de comando | 412 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
index bde93f8c3fbe9e..995a1988432c42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ El siguiente ejemplo ilustra el uso de Insert string. Los resultados se asignan
| | |
| --- | --- |
| Número de comando | 231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
index 75cc372784af60..d990f9383c2835 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
@@ -36,6 +36,6 @@ El siguiente ejemplo ilustra el funcionamiento de Int para números positivos y
| | |
| --- | --- |
| Número de comando | 8 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
index 805a001feed005..5aa95a5bfd18ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
index 929d503e1bcf9b..cb36faab670604 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
@@ -109,7 +109,7 @@ Si la integración se efectúa correctamente, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 1312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
index 9f6785ff77f24f..0a580041e90de3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ El siguiente ejemplo busca los clientes que son atendidos por dos representantes
| | |
| --- | --- |
| Número de comando | 121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
index 154ccc839bdc1f..406a1766d168e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Usted desea ejecutar una acción estándar **Goto page** (página 3) en el formu
| | |
| --- | --- |
| Número de comando | 1439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
index 6a90bf704da614..1035668929b08d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
@@ -29,6 +29,6 @@ Ver el ejemplo del comando [CLEAR LIST](clear-list.md "CLEAR LIST").
| | |
| --- | --- |
| Número de comando | 621 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
index d1d98a3a09ce73..4b0cf95425f078 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ Si quiere conocer el nombre de la variable que está siendo apuntada o el númer
| | |
| --- | --- |
| Número de comando | 294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
index 51a8933f9f3b95..05af9c9814393c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
@@ -50,6 +50,6 @@ En una de sus rutinas, usted incluyó el código de depuración de la base, úti
| | |
| --- | --- |
| Número de comando | 492 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
index 33efe6db48d895..f5421a1473e76e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método evitará la apertura de la base si el archivo de datos está bloque
| | |
| --- | --- |
| Número de comando | 716 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
index cf6d74e3187443..35f9838a3bcf8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Desea permitir que el usuario seleccione una línea que comience con la letra o
| | |
| --- | --- |
| Número de comando | 1744 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
index aae737881fa012..330986ac1ef0e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Este comando permite detectar las eventuales eliminaciones de campos, que crean
| | |
| --- | --- |
| Número de comando | 1000 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
index 4e07892f5544d2..33ec100b9937ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ El valor devuelto por este comando sólo tiene sentido si la opción "*Mapear va
| | |
| --- | --- |
| Número de comando | 964 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
index 6ccc9b3cf499a4..26f603ea42fa24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este ejemplo permite tener en cuenta todos los tipos de impresiones:
| | |
| --- | --- |
| Número de comando | 1198 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
index c287dbc5f0d82e..ab83e4cb4aadb9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
@@ -40,6 +40,6 @@ El siguiente ejemplo es un método de objeto de un botón que prueba si el regis
| | |
| --- | --- |
| Número de comando | 273 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
index 2426656e3d1036..cef63f7912ce92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
@@ -52,6 +52,6 @@ Is license available devuelve [False](false.md "False") si el plug-in está func
| | |
| --- | --- |
| Número de comando | 714 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
index e3d551a37ee65c..c96e349fe17dd7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Usted desea determinar si el sistema operativo actual es macOS:
| | |
| --- | --- |
| Número de comando | 1572 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
index f4378fbbec9fcc..dd0280b83ef752 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
@@ -44,6 +44,6 @@ Las dos siguientes instrucciones siguientes son idénticas. La segunda se recomi
| | |
| --- | --- |
| Número de comando | 668 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
index a5122dd8ce3b4c..3f1db6a465b24f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Si quiere conocer el nombre de la variable apuntada o el número del campo, pued
| | |
| --- | --- |
| Número de comando | 315 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
index 037dcafa117af9..809a8eb5cfbbb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Si no pasa el parámetro *\**, el comando prueba el archivo buscando su extensi
| | |
| --- | --- |
| Número de comando | 1113 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
index f68fe62c018eda..c25a51bf6ed546 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
@@ -48,6 +48,6 @@ En lugar de utilizar las acciones automáticas “Siguiente registro” o “Reg
| | |
| --- | --- |
| Número de comando | 669 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
index 9d60fb5c158472..0e1eba64577c3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Este comando permite detectar las eventuales eliminaciones de tablas, que crean
| | |
| --- | --- |
| Número de comando | 999 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
index 427dd33d5b6572..546209d560b631 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Si no tiene privilegios de acceso para llamar al comando Is user deleted o si ot
| | |
| --- | --- |
| Número de comando | 616 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
index dc9e58777ecafe..e3b5a189a7ac7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
@@ -67,6 +67,6 @@ End case
| | |
| --- | --- |
| Número de comando | 1422 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
index ec05d73bcfed13..a498cd1e8511c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Quiere cambiar entre el estado maximizado y el anterior:
| | |
| --- | --- |
| Número de comando | 1830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
index 5ec84b7b0d6e6e..3746edc8b7bc1c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
index e363653060051f..8afdc8a69a90f3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Desea determinar si el sistema operativo actual es Windows:
| | |
| --- | --- |
| Número de comando | 1573 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
index 65d61d3469047a..77469c4c3396b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ En este ejemplo, los datos de los campos de los registros de una tabla se extrae
| | |
| --- | --- |
| Número de comando | 1219 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
index 30ceb5d5a8d389..6527da8e51d3e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
@@ -196,6 +196,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número de comando | 1218 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
index 628a55cb311180..5cee5517c2cafe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ Si ejecuta:
| | |
| --- | --- |
| Número de comando | 1478 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
index e297f8838d1777..583abd6c31a7b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversión de una selección 4D en un array objeto:
| | |
| --- | --- |
| Número de comando | 1228 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
index e6343ff8d820b4..914c0efa8986e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
@@ -175,6 +175,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número de comando | 1217 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
index 5b4209b9da78b9..3d21e8ba9eb7f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Uso del comando **JSON TO SELECTION** para añadir los registros a la tabla \[Co
| | |
| --- | --- |
| Número de comando | 1235 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
index f33b802f8385f4..8c8593160874da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Usted desea validar un objeto JSON con un esquema y obtener la lista de errores
| | |
| --- | --- |
| Número de comando | 1456 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
index 74cff74074e34b..1a339b2209100e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ Utilizando las habilidades de la comunicación interproceso de 4D, puede constru
| | |
| --- | --- |
| Número de comando | 390 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
index 4dd4b513362e9c..1709a5a84ff40c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ En el método (*theWorker*), se añade código para manejar esta situación:
| | |
| --- | --- |
| Número de comando | 1390 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
index 0c75a1b112b9ab..671e031aedc5ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ El siguiente método de proyecto crea el array *asCampos*, con los nombres de lo
| | |
| --- | --- |
| Número de comando | 255 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
index e038f158edb251..4e8780a6d7f52e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ La descripción de la ruta de la última búsqueda puede compararse con la descr
| | |
| --- | --- |
| Número de comando | 1045 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
index f63434929c086b..36cfab3d140fa5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ La descripción del plan de la última búsqueda puede compararse con la descrip
| | |
| --- | --- |
| Número de comando | 1046 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
index f916e5a2fde4b3..c0e06445c7b3eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ El siguiente ejemplo designa el último registro de la tabla \[Personas\] como r
| | |
| --- | --- |
| Número de comando | 200 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
index 6fb739a1cc731f..3dfdb8cbbecaf6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ El siguiente ejemplo inicializa los elementos del array *asTablas,* con los nomb
| | |
| --- | --- |
| Número de comando | 254 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
index 3e7e20c6c9ba18..ce51741694b92a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado en un proceso de actualización aut
| | |
| --- | --- |
| Número de comando | 1301 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
index 52ab1a4217b673..dd6a1690ddf37b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
@@ -151,7 +151,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 811 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
index 1e25146ef453fc..9c4ac6d9d0e715 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
@@ -102,6 +102,6 @@ Este ejemplo intenta conectarse a una aplicación:
| | |
| --- | --- |
| Número de comando | 1326 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
index d5b8b891db58bf..18566e4e290c90 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1327 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
index a075666476b1a0..b1f8b884702f58 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Estos ejemplos ilustran el uso del parámetro *atributosEnArray*:
| | |
| --- | --- |
| Número de comando | 1329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
index 6a687668d7ebcd..e823101d030dec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Queremos obtener una array de todas las entradas que se encuentran en el atribut
| | |
| --- | --- |
| Número de comando | 1328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
index a43d1e2dd52e6d..f7eea5ea9bf411 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
@@ -35,6 +35,6 @@ Este ejemplo ilustra el uso de Length. Los resultados, descritos en los comentar
| | |
| --- | --- |
| Número de comando | 16 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
index a0cffdd12ba99d..4dcd7f6c431239 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este ejemplo es una plantilla para un método de formulario. Muestra cada evento
| | |
| --- | --- |
| Número de comando | 101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
index 167f02e795b993..1b0eeb3276d886 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Esta tabla detalla el contenido del objeto de sesión para las sesiones REST:
| | |
| --- | --- |
| Número de comando | 1782 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
index 58b0f80e111359..e2fcbdf8ad6522 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
@@ -77,6 +77,6 @@ Los números de referencia de los elementos son los siguientes:
| | |
| --- | --- |
| Número de comando | 633 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
index c7d02dfbac0f0c..d102803e042534 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Si el elemento no existe, List item position devuelve 0.
| | |
| --- | --- |
| Número de comando | 629 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
index ced18bfe57a558..d1a82f3fb4d8f7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Los números de las listas corresponden a su orden de creación. En el editor de
| | |
| --- | --- |
| Número de comando | 957 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
index f2837b6a8e19f4..dbde4e7c1c54e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Si ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1255 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
index 97234b2e35f795..1828243c968826 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Si ejecuta la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
index 4041047fa24971..cfbcacb3485b6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Ver el ejemplo del comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número de comando | 556 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
index 3d058de0dcbae8..9fc2e7fb2003e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Este ejemplo colapsa el primer nivel de líneas de ruptura de la selección en e
| | |
| --- | --- |
| Número de comando | 1101 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
index e855efb2c1ccf2..f6475c041e5a82 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Si el parámetro *posicionCol* es mayor al número de columnas en el list box, e
| | |
| --- | --- |
| Número de comando | 830 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
index 4b8d7b28cf06a8..6cad0772f49cae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Si el parámetro *posicion* es superior al número de líneas del array del list
| | |
| --- | --- |
| Número de comando | 914 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
index 10b42f36766000..61d503030c4ab5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
@@ -91,6 +91,6 @@ Note que las variables de encabezado y de pie de página siempre se crean con un
| | |
| --- | --- |
| Número de comando | 1273 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
index ea2dc5ba619ecc..4a0f0841882d98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número de comando | 1100 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
index ad59d909743dd3..6b563bd7fb0a05 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Ejemplos típicos de uso:
| | |
| --- | --- |
| Número de comando | 1278 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
index 1e48cc452649a2..a06becde4668da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Para un list box de tipo selección, colección o selección de entidades, *arrE
| | |
| --- | --- |
| Número de comando | 832 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
index 2a7b8294f87022..b5166724d0df60 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ Usted desea obtener el número máximo de líneas para una línea de list box:
| | |
| --- | --- |
| Número de comando | 1502 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
index 9415747ae4694d..c79ae707cb2198 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
@@ -58,6 +58,6 @@ Usted quiere dibujar un rectángulo rojo alrededor de la celda seleccionada de u
| | |
| --- | --- |
| Número de comando | 1330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
index 19d8d2a3b6c5b8..6cf304215674e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
@@ -59,6 +59,6 @@ Este comando tiene en cuenta las acciones de selección o deselección efectuada
| | |
| --- | --- |
| Número de comando | 971 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
index 0a0f993f0d5ca8..fa10bbbdb955e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1202 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
index 44f19f76ad3bc9..586eab7f0fb1bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ Si no se ha definido ningún valor de ancho mínimo y/o máximo para la columna,
| | |
| --- | --- |
| Número de comando | 834 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
index 2a33e87322ef22..584c444aa96a5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
@@ -36,6 +36,6 @@ Puede comparar el valor devuelto con las constantes del tema *List box cálculo
| | |
| --- | --- |
| Número de comando | 1150 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
index 4b804387ca7605..ec5e63237a1a89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1146 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
index 31cb9757b8792c..2a886392758730 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ En *colorH* y *colorV*, el comando devuelve los valores de los colores RGB. El f
| | |
| --- | --- |
| Número de comando | 1200 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
index 4e82a6f473a352..10340c1fe39802 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ El comando devuelve en los parámetros *horizontal* y *vertical*, el valor **Tru
| | |
| --- | --- |
| Número de comando | 1199 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
index 132303c5ef7bae..fb86aca7504791 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
@@ -41,6 +41,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 1144 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
index b124697b2e7759..632c0e26ad4e4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Si el list box está en modo jerárquico, el comando llena el array *jerarquia*
| | |
| --- | --- |
| Número de comando | 1099 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
index c454f6b48dc7ae..259532489198ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
index 7018f2aa3ab121..88909a671d96dc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 831 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
index e9cedcb7e24620..26489d2bc082d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Si pasa el parámetro opcional \*, indica que el parámetro *objeto* es un nombr
| | |
| --- | --- |
| Número de comando | 915 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
index 8c40fcc439296e..399031deb8f32b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1302 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
index 2df241da6b77fb..0d6b5207f3ead2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impresión de al menos 500 líneas del list box, conociendo que algunas líneas
| | |
| --- | --- |
| Número de comando | 1110 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
index fe4d3977dee943..b8d7780b1da90a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
@@ -64,6 +64,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1271 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
index 9e084f7f39886e..65fcbe1b7db22e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1658 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
index 41decbc0cd9674..1e18a396f4f163 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Dado el siguiente list box:
| | |
| --- | --- |
| Número de comando | 1269 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
index 044be8645f215c..e1d0227bb0478b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ El valor de la altura de la línea se expresa:
| | |
| --- | --- |
| Número de comando | 1408 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
index 7c755031dadd18..2cc76fc38feefd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura de línea devuelta se ex
| | |
| --- | --- |
| Número de comando | 836 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
index 5e3f3502b36ac2..def602ba980f99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ Sin embargo, el comando no tiene en cuenta el estado visible/invisible de las co
| | |
| --- | --- |
| Número de comando | 1154 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
index fbc5b90c06b28a..cd9f1407ee90c5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
@@ -38,6 +38,6 @@ Si el list box está asociado con arrays, *numTabla* devuelve -1 y *tempo*, si s
| | |
| --- | --- |
| Número de comando | 1014 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
index 1e355e35acef2d..c02398843f5d83 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
@@ -123,6 +123,6 @@ La columna se añade al list box:
| | |
| --- | --- |
| Número de comando | 970 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
index 23fd5904543e60..887631822ed30f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
@@ -104,6 +104,6 @@ Usted desea insertar una columna de forma dinámica en un array de tipo list box
| | |
| --- | --- |
| Número de comando | 829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
index 0bbc0290f14af1..6bd3e0eb7eb30b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Si el valor de *posicionL* es mayor que el número total de filas en el list box
| | |
| --- | --- |
| Número de comando | 913 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
index 66ebca7f706471..8a39f3f270554e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Usted quiere invertir la segunda y tercera columna del list box:
| | |
| --- | --- |
| Número de comando | 1274 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
index 9dd2391a473aff..a34135e01afb14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Este comando debe utilizarse con el evento de formulario On column moved (ver el
| | |
| --- | --- |
| Número de comando | 844 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
index 8bba122e9b9974..36a0736ac33913 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Este comando debe utilizarse con el evento de formulario On row moved (ver el co
| | |
| --- | --- |
| Número de comando | 837 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
index 828696c1aa92a1..20ca47ebb47b6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Este es el resultado:
| | |
| --- | --- |
| Número de comando | 1117 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
index c4ed2fa1e35fb4..65cbc48092fc7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ Después de la ejecución del método, los arrays son sincronizados: si el array
| | |
| --- | --- |
| Número de comando | 912 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
index 1106809779c181..fc8bb18af4077d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
@@ -90,6 +90,6 @@ Ejemplo con una colección de objetos:
| | |
| --- | --- |
| Número de comando | 1715 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
index 32ce0fc3084902..e06a23064ffa98 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
@@ -71,6 +71,6 @@ Usted desea definir un array de altura de línea para un list box:
| | |
| --- | --- |
| Número de comando | 1279 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
index 12d6b9de5168d5..877b23eeb8a37e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Usted desea definir las alturas mínimas y máximas para un list box con una alt
| | |
| --- | --- |
| Número de comando | 1501 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
index c3f9de859ca7f2..357998805eabe3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ El parámetro *tipoDatos* designa el tipo de datos resultantes de la ejecución
| | |
| --- | --- |
| Número de comando | 1203 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
index 0db02fb18a673c..b07f9001b2bbc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
@@ -38,6 +38,6 @@ Los parámetros opcionales *anchoMin* y *anchoMax* permiten definir los límites
| | |
| --- | --- |
| Número de comando | 833 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
index cea66239478022..bec6cd5e79129d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ Si el tipo de datos de la columna o de al menos una columna del list box (si obj
| | |
| --- | --- |
| Número de comando | 1140 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
index 689014e45f1d35..23d9946eca22c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
@@ -41,6 +41,6 @@ Pase en el parámetro *altura* la altura a definir. Por defecto, si omite el par
| | |
| --- | --- |
| Número de comando | 1145 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
index 6f70602cb24a72..d0cb555cc9fc35 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Los parámetros *horizontal* y *vertical* le permiten especificar las líneas a
| | |
| --- | --- |
| Número de comando | 842 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
index 5822d947fb27a3..df0075ea1dfefc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores booleanos que indi
| | |
| --- | --- |
| Número de comando | 841 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
index a54c12c0feeec3..deddbfeed0c55b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
@@ -45,6 +45,6 @@ Los encabezados deben respetar la altura mínima establecida por el sistema. Est
| | |
| --- | --- |
| Número de comando | 1143 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
index a89b35eb7c91d1..e207d12fa1265a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Definición de los arrays aPais, aRegion y aCiudad como jerarquía de un list bo
| | |
| --- | --- |
| Número de comando | 1098 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
index fc65ccddd1bc52..cc48477caa5fee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Para eliminar el bloqueo de columnas, pase 0 o un valor negativo en *numColumnas
| | |
| --- | --- |
| Número de comando | 1151 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
index 80274f758de49b..b19e852ea527c4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ En un array de tipo list box, queremos establecer los colores de una fila y para
| | |
| --- | --- |
| Número de comando | 1270 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
index 26e7bd4b6cc832..3c14b6454aabf1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
@@ -84,6 +84,6 @@ Después de la segunda declaración, todas las celdas de la tercera fila cambian
| | |
| --- | --- |
| Número de comando | 1268 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
index 2fac6b71698803..96d37c417d2ef1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
@@ -89,6 +89,6 @@ Por otro lado, si el código siguiente se ejecuta posteriormente...
| | |
| --- | --- |
| Número de comando | 1409 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
index 8d31f5ddbc9527..5082e18aead09b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Por defecto, si omite el parámetro *unidad*, la altura se expresa en píxeles.
| | |
| --- | --- |
| Número de comando | 835 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
index 1d56ccb8c13a94..b610fc928e3a50 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ Las columnas estáticas no pueden moverse en el list box.
| | |
| --- | --- |
| Número de comando | 1153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
index 6fe0f215d366c9..bcc63878895090 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ Si el list box ya contiene las columnas, sus contenidos se actualizarán despué
| | |
| --- | --- |
| Número de comando | 1013 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
index 01eb556798bdf9..bb686dc52393ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ Conforme con el principio de funcionamiento del list box, las columnas están si
| | |
| --- | --- |
| Número de comando | 916 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
index f5ba0cfa7f02c6..d811065cdc4e6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Obtendrá el siguiente resultado (objeto stringified):
| | |
| --- | --- |
| Número de comando | 1528 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
index dccd7280f05205..b248cb0f69b5c6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Usted crea una base para el mercado internacional y necesita cambiar a los difer
| | |
| --- | --- |
| Número de comando | 383 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
index dbd6583afb0da0..eb86089311e1a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ En entornos multiusuario y multiprocesos, cuando necesite modificar un registro
| | |
| --- | --- |
| Número de comando | 52 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
index cc474be9bd6c0a..698b7651685d4a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ Si el usuario hace clic en Cancelar en la caja de diálogo de abrir archivos, o
| | |
| --- | --- |
| Número de comando | 185 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
index 5894fa98847e63..cb777126e426c3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ Si las variables se cargan correctamente, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 74 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
index b0820e418afd1e..2473b19b2ea08b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
@@ -71,6 +71,6 @@ Si el lenguaje actual es, por ejemplo, francés canadiense (fr-ca), el comando d
| | |
| --- | --- |
| Número de comando | 1105 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
index 2b18692dfa8bf2..853f1864443daf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Si el comando se ejecuta correctamente, la variable OK toma el valor 1\. Si *res
| | |
| --- | --- |
| Número de comando | 991 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
index 24155b5659184b..657a94783754d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ Si el registro ha sido bloqueado por una *petición $lock REST*:
| | |
| --- | --- |
| Número de comando | 353 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
index 4e5249d5e93a58..13b9fd1851393f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
@@ -96,6 +96,6 @@ Si el código se ejecuta en un 4D Server y el bloqueo es causado por una máquin
| | |
| --- | --- |
| Número de comando | 1316 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
index d9c15785dc8dc2..a10547adb12d8a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Durante una transacción, [LOAD RECORD](load-record.md) y Locked se utilizan con
| | |
| --- | --- |
| Número de comando | 147 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
index 88068cb2596585..fdfc45fa9d0e43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
@@ -70,6 +70,6 @@ Cada vez que se abre la base, esta información se escribirá en el visor de eve
| | |
| --- | --- |
| Número de comando | 667 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
index 3407561c4a25d2..708c19d6ba67b6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ El comando **LOG FILE TO JSON** modifica el valor de las variables sistema OK y
| | |
| --- | --- |
| Número de comando | 1352 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
index 69fb9b810dbf14..bd6c5911c54cdb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
@@ -38,5 +38,5 @@ Si la base funciona con un archivo historial, la variable sistema OK toma el val
| | |
| --- | --- |
| Número de comando | 928 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
index b10d5f21823fb5..1d8b8b01c5f127 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
@@ -37,6 +37,6 @@ La siguiente línea muestra 1:
| | |
| --- | --- |
| Número de comando | 22 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
index da44333afcb99e..28a403b842aa5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Quiere recuperar los números de los registros de la selección actual:
| | |
| --- | --- |
| Número de comando | 647 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
index 2c2fdf4fed8e82..4811e46271ef01 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 550 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
index 21b0967d8aaf90..33ecb91ec65211 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ Este ejemplo compara los resultados obtenidos de acuerdo a si se pasa o no el pa
| | |
| --- | --- |
| Número de comando | 14 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
index ca36388b3b24da..a18468b2d341f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 546 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
index 0bfbb9956b20a8..0b115e1dd6f575 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 544 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
index 95f1ee99f78e67..51cb9d5ee7d54b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 545 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
index f0acaaca069b0c..73d66cf7dcb82f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
@@ -120,7 +120,7 @@ En caso de error, el comando genera un error que puede interceptar vía un méto
| | |
| --- | --- |
| Número de comando | 1019 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
index c4d5ad9f0e608e..e4375b52e1f5a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
@@ -75,7 +75,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 3 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
index dcb9110e2675bb..e183ee048d2541 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
@@ -87,6 +87,6 @@ En este contexto, si el usuario hace clic en el botón:
| | |
| --- | --- |
| Número de comando | 453 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
index 73ddd52f330405..c1d240763e5c2a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ Después de ejecutar el comando, las estadísticas solicitadas se entregan en lo
| | |
| --- | --- |
| Número de comando | 1118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
index e5ea7fd8d792d6..90c64221f5fd73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ El comando devuelve 0:
| | |
| --- | --- |
| Número de comando | 440 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
index 21b38121de9a24..17bd74759d1d93 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 441 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
index 9ec6f6c5954d49..b9fb5699a0859d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ El siguiente método de formulario utiliza Menu selected para proporcionar los a
| | |
| --- | --- |
| Número de comando | 152 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
index fb7aea074e1ac2..6e51dd923bd05b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
@@ -118,6 +118,6 @@ El resultado es el siguiente (en Windows):
| | |
| --- | --- |
| Número de comando | 88 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
index da43d605d62b00..3e10342dba9e51 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ El siguiente ejemplo suprime los termómetros de progreso antes de efectuar una
| | |
| --- | --- |
| Número de comando | 175 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
index 51b5deba618c95..18b9dc387a1c89 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 181 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
index 9e0b8c71837dbd..42e335892b78ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Este comando es particularmente útil en el contexto de componentes porque le pe
| | |
| --- | --- |
| Número de comando | 704 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
index 1c188f4a4a46ef..bda5e440ad9072 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si no se ha instalado un ningún método, se devuelve una cadena vacía ("").
| | |
| --- | --- |
| Número de comando | 705 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
index 760e1d0bf4335b..8d8e3854b7ab2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ El comando devuelve **True** si se selecciona un atributo y **False** si se dese
| | |
| --- | --- |
| Número de comando | 1169 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
index ffa810ef8cc3cd..14ee200f2ebb6b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
@@ -66,6 +66,6 @@ Después de la ejecución, $att contiene, por ejemplo:
| | |
| --- | --- |
| Número de comando | 1334 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
index 8073d4094ab07e..a2bf6776e5bae9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
@@ -127,6 +127,6 @@ El documento resultante contendrá:
| | |
| --- | --- |
| Número de comando | 1190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
index 4fbbea9677946e..598d42671fc3f6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
@@ -61,6 +61,6 @@ Si el comando se ejecuta desde un componente, se aplica por defecto a los métod
| | |
| --- | --- |
| Número de comando | 1189 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
index 3bef8bc94e73b2..bedb1a7ac77d76 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
@@ -35,6 +35,6 @@ Si se ejecuta este comando desde un componente, devuelve por defecto las rutas d
| | |
| --- | --- |
| Número de comando | 1206 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
index 09f8bf13b29e76..5d5b225854a142 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Quiere obtener las fechas de modificación de los métodos de un módulo con el
| | |
| --- | --- |
| Número de comando | 1170 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
index 4e31a29f958b2a..b5e306c6222632 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Ejemplos de uso:
| | |
| --- | --- |
| Número de comando | 1166 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
index eab260fe2cc2bb..11fe9deeec44bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Si el comando se ejecuta desde un componente, devuelve por defecto las rutas de
| | |
| --- | --- |
| Número de comando | 1164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
index 61d4e5993ab697..736af2ca27696e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ Lista de todos los objetos de los formularios "input" de la tabla \[Empleados\]
| | |
| --- | --- |
| Número de comando | 1168 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
index 94a606dbe71a25..0302a8a09bc4ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Consulte el ejemplo del comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número de comando | 1163 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
index f85ca369dd89e3..64bc479c91db29 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Puede ejecutar este comando desde un componente, pero en este caso, debe pasar e
| | |
| --- | --- |
| Número de comando | 1213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
index c37054b7de9324..5d9129d997ce4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ Resolución de una ruta de objeto de método formulario tabla:
| | |
| --- | --- |
| Número de comando | 1165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
index 9b900f473fb3ad..00732e2c05aa26 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ En *modo*, pase una de las siguientes constantes del tema *Acceso objetos diseñ
| | |
| --- | --- |
| Número de comando | 1191 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
index ff0f305cde409e..0ba6d335481c84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Definición de varios pares de atributos/valores:
| | |
| --- | --- |
| Número de comando | 1192 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
index 94692aca1a7b9b..4af94bb976cef7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
@@ -61,6 +61,6 @@ Usted desea modificar un solo atributo:
| | |
| --- | --- |
| Número de comando | 1335 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
index 05fcd4d0aa0799..615f1e97fca25d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
@@ -103,6 +103,6 @@ Este ejemplo exporta e importa la totalidad de los métodos proyecto de una apli
| | |
| --- | --- |
| Número de comando | 1194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
index b62986fd8df96a..94043ed944ca84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
@@ -67,6 +67,6 @@ Añadir una fecha de modificación a un comentario de trigger existente:
| | |
| --- | --- |
| Número de comando | 1193 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
index d9c9ade7dc12bc..edf19a8881d307 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ El siguiente código espera hasta 5 segundos para que un registro bloqueado se d
| | |
| --- | --- |
| Número de comando | 459 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
index fd8f9c60ddd7d8..71eb9663ec286c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
@@ -83,7 +83,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 4 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
index 1d42913d7894a2..74b5e9111e5966 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| Número de comando | 454 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
index b0fc9097495809..39925b42428741 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Usted desea restablecer todas las sesiones actuales para todas las aplicaciones
| | |
| --- | --- |
| Número de comando | 1596 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
index b594365d1ca96e..896f0594c991a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra el funcionamiento de Mod con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 98 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
index 408399306fd464..9a24d6edb04d84 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ El siguiente ejemplo muestra una utilización típica de Modified record:
| | |
| --- | --- |
| Número de comando | 314 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
index 4b6d3b72383869..03fa0c88d35e08 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
@@ -73,6 +73,6 @@ Selecciona un registro para la tabla *\[unaTabla\]*, luego llama múltiples subr
| | |
| --- | --- |
| Número de comando | 32 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
index 0c5912c8378d9b..51bfa6a5cb59d5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si se acepta el registro y 0 si se cancel
| | |
| --- | --- |
| Número de comando | 57 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
index 18f6154e0ac693..666bc896e8aea3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
index f8e24df80b6252..7bbd85faabf97c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Ver el ejemplo de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número de comando | 1713 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
index b96f24f1b1e30c..3d7d50b077dd8c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 24 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
index 903c803d60fcfe..8b9d111c55f7e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ Ver el ejemplo del comando [Pop up menu](pop-up-menu.md "Pop up menu").
| | |
| --- | --- |
| Número de comando | 468 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
index 60b54f4ad00c94..278cb37996f4e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ El siguiente ejemplo mueve el documento DocName:
| | |
| --- | --- |
| Número de comando | 540 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
index 079838ff407365..2851d5d26c1362 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
@@ -114,6 +114,6 @@ Si quiere que el array de nombres se utilice como tercer criterio de ordenación
| | |
| --- | --- |
| Número de comando | 718 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
index cd41f1ba45eeb6..9f1421c3cb136e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Desea guardar una llave de cifrado en un archivo .4DKeyChain:
| | |
| --- | --- |
| Número de comando | 1611 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
index 70320578af2990..7268aa2baf8390 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver el ejemplo del comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número de comando | 375 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
index b93dcd82ba19f5..4a39d3109a753d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ Con este comando, puede fácilmente manejar objetos en bucles:
| | |
| --- | --- |
| Número de comando | 1471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
index 5a7b2d196d4a03..fc705ada548da4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
@@ -121,6 +121,6 @@ En el editor de barras de menús, puede reemplazar ADD CUSTOMERS por el método
| | |
| --- | --- |
| Número de comando | 317 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
index 9eb41d3be2569e..c4d16eb3520028 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Usted desea crear y modificar un objeto compartido. La estructura debe llamarse
| | |
| --- | --- |
| Número de comando | 1526 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
index a85308bfede792..af734ad1bd8eee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Ver el ejemplo del comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número de comando | 51 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
index 6c6ae956628b76..75904c232d9b7b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
@@ -29,6 +29,6 @@ El comando Next window devuelve el número de referencia de la ventana ubicada
| | |
| --- | --- |
| Número de comando | 448 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
index 8f8fb23961e525..44ac2fd7854f8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ En una base que contiene un formulario de proyecto llamado “ElFormulario” y
| | |
| --- | --- |
| Número de comando | 993 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
index 27937427bb1f3b..7769d080b87116 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
@@ -38,6 +38,6 @@ Este ejemplo asigna primero Verdadero a una variable, luego cambia el valor de l
| | |
| --- | --- |
| Número de comando | 34 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
index 464a60656d4027..3a25813d2054b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ El parámetro actual puede estar definido:
| | |
| --- | --- |
| Número de comando | 1052 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
index fbb74ba6ad951a..e36902601a7096 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
@@ -138,6 +138,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 1517 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
index d69935ff8cd687..341f2d0ba080de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Luego, en un método, puedes escribir:
| | |
| --- | --- |
| Número de comando | 1730 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
index f6c13a77c8614f..ff3aceb0f38707 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ Queremos copiar *$sharedObj e*n *$sharedColl* pero dado que pertenecen a diferen
| | |
| --- | --- |
| Número de comando | 1225 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
index f826aca9b53774..d1b941e7d7b5d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ El uso de un objeto como un mapa hash (sistema llave/valor) ofrece un acceso rá
| | |
| --- | --- |
| Número de comando | 1720 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
index aad5ce604777b1..b0f7ebc13991e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ Queremos cambiar un valor en el primer elemento del array:
| | |
| --- | --- |
| Número de comando | 1229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
index e484baf507f34f..86a7792abb4ad3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ Utilizando un elemento de array de objetos:
| | |
| --- | --- |
| Número de comando | 1232 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
index 64e63505493f1f..f2c370b9361b27 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
@@ -58,6 +58,6 @@ Queremos obtener el tipo de valores estándar:
| | |
| --- | --- |
| Número de comando | 1230 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
index 9bac71531b9dfa..ae0ffb1300e3e7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
@@ -226,6 +226,6 @@ Desea conocer el tamaño de una imagen almacenada en un atributo objeto:
| | |
| --- | --- |
| Número de comando | 1224 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
index 29c254f42b6e09..86d56437e1c81b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
@@ -58,6 +58,6 @@ Luego, en un método, puede escribir:
| | |
| --- | --- |
| Número de comando | 1731 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
index c676118c378d0d..1bfe3cc41ecbc9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Esta prueba es equivalente a:
| | |
| --- | --- |
| Número de comando | 1231 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
index 7f25a8acac3626..e4a1a5db31af11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Estos son los diferentes resultados de este comando como también del comando [O
| | |
| --- | --- |
| Número de comando | 1297 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
index 330eeb68f91e88..6e9e220971249c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Este comando devuelve **True** si se pasa una selección de entidades compartibl
| | |
| --- | --- |
| Número de comando | 1759 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
index 6c3027010e9094..f687f8080dcb80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ Quiere una colección con todos los nombres de propiedad de primer nivel de un o
| | |
| --- | --- |
| Número de comando | 1719 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
index df5596a058da97..f363e429a08747 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Usted quiere eliminar la propiedad "edad" de un objeto:
| | |
| --- | --- |
| Número de comando | 1226 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
index db6a1c64af3a5f..64220560af498d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
@@ -136,6 +136,6 @@ Utilizando un array imagen:
| | |
| --- | --- |
| Número de comando | 1227 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
index bec36dcfe235fd..28e84f431828e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Queremos poner el valor nulo en la propiedad "edad" para Lea:
| | |
| --- | --- |
| Número de comando | 1233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
index 33858f14f77466..2dcdca49aa486e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ Usted desea almacenar una imagen en un campo objeto. Puede escribir:
| | |
| --- | --- |
| Número de comando | 1220 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
index 7f66126a238d16..a7897f281f4a73 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Desea una colección con todos los valores de propiedad de un objeto:
| | |
| --- | --- |
| Número de comando | 1718 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
index 3107dd8a82b4ee..6e363447ec734f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
@@ -106,7 +106,7 @@ Creación de un nuevo botón radio "bRadio6" basado en el botón radio existente
| | |
| --- | --- |
| Número de comando | 1111 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
index 735f0f00377eac..b48ab0aad75473 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Usted desea asociar la acción "Cancelar" con todos los objetos en el formulario
| | |
| --- | --- |
| Número de comando | 1457 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
index 66c1a8bf90d501..93935bedc5005c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ El comando devuelve **True** cuando la corrección ortográfica automática est
| | |
| --- | --- |
| Número de comando | 1174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
index bc505f08cf6ec1..a3e435f2013709 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
@@ -57,6 +57,6 @@ Consulte el ejemplo en el comando [SET PRINT MARKER](set-print-marker.md "SET PR
| | |
| --- | --- |
| Número de comando | 717 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
index 72d5324052a3a9..1ec79d8a70de55 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ El comando devuelve un valor que corresponde al estilo de la línea fronteriza.
| | |
| --- | --- |
| Número de comando | 1263 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
index 5c805945910175..bcb34552efcb5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ El comando devuelve **True** si el menú contextual está activo para el objeto
| | |
| --- | --- |
| Número de comando | 1252 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
index 561f519193c12b..f7bb1bac9f78e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ El método devuelve las coordenadas teóricas. Si el listbox es redimensionado,
| | |
| --- | --- |
| Número de comando | 663 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
index 6f11ce744d5aa9..eeb98fa6305d74 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ El siguiente código puede añadirse a un método de un botón:
| | |
| --- | --- |
| Número de comando | 1324 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
index 4b37f70dd6af72..c7b7e3277589a1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
@@ -47,6 +47,6 @@ Ejecuta el siguiente código:
| | |
| --- | --- |
| Número de comando | 1265 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
index 00642f2232efba..1a79536c9acee6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Cada parámetro devuelve True o False dependiendo de si la opción correspondien
| | |
| --- | --- |
| Número de comando | 1184 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
index 79e7b643f20648..76f8db52b14762 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1079 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
index b7a8d2937305cd..92626c3fff1996 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1067 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
index 37e4e626cac5d3..c6f42886d8bde1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Usted quiere activar dos eventos y obtener la lista de eventos para un objeto:
| | |
| --- | --- |
| Número de comando | 1238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
index a3490734b5d8af..b1131e608dc14a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1073 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
index 0289042899fcc9..b4e2c4109a4622 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ El comando devuelve **True** si el rectángulo de foco está oculto y **False**
| | |
| --- | --- |
| Número de comando | 1178 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
index dce839260fb14f..a1ce788542c59f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1070 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
index ee2e86e943193b..86b1bd3bd93f43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Puede comparar el valor devuelto por el comando con el valor de uno o más de la
| | |
| --- | --- |
| Número de comando | 1071 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
index 7fb8d03c0e8812..593fb334eedd75 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1069 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
index ca2a2c98c16c6f..f165470400bb71 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número de comando | 894 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
index cc9edb11aad7cc..edd4fd6adc2696 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ El título de un botón imagen se guarda en forma de mensaje de ayuda. Este tít
| | |
| --- | --- |
| Número de comando | 1182 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
index a95ba6b7965171..555756f8b8bf95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
@@ -64,6 +64,6 @@ Los objetos de formulario a los cuales se puede aplicar alineación son los sigu
| | |
| --- | --- |
| Número de comando | 707 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
index 1992230dcf5740..a20d8a4acf60a0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Puede comparar el valor devuelto por el comando con las siguientes constantes, q
| | |
| --- | --- |
| Número de comando | 1247 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
index be2491187f4da9..71d0c587ef710b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ El comando devuelve una cadena indicando el código del lenguaje utilizado, basa
| | |
| --- | --- |
| Número de comando | 1180 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
index b8102bc66a56ec..87ebd4c4fdb5ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
@@ -43,6 +43,6 @@ Si ninguna lista del tipo definido está asociada al *objeto*, el comando devuel
| | |
| --- | --- |
| Número de comando | 1072 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
index d56349b2afaa0c..083b895e5388d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
@@ -43,6 +43,6 @@ Si no hay una lista jerárquica asociada al objeto para el *tipoLista* definido,
| | |
| --- | --- |
| Número de comando | 1267 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
index 89cc468b189a62..afb61acb3f5169 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
@@ -36,6 +36,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1245 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
index 0de34fb710c275..d0ce9d6170912a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Si pasa el parámetro opcional *\** indica que el parámetro *objeto* es un nomb
| | |
| --- | --- |
| Número de comando | 1243 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
index f1f87128005f8c..b1a2a6f4445a2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
@@ -43,6 +43,6 @@ El valor devuelto corresponde a una de las siguientes constantes del tema "*Prop
| | |
| --- | --- |
| Número de comando | 1254 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
index adda6f81d1182e..3bb5443d459e9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Después de la ejecución de este método objeto, la variable *$btnName* contien
| | |
| --- | --- |
| Número de comando | 1087 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
index d476f7a1f9cf39..6115ac509fac15 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Si quiere recibir el texto del marcador de campo:
| | |
| --- | --- |
| Número de comando | 1296 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
index 00212fb64d7b20..67cba3d9ad780d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
@@ -62,6 +62,6 @@ Dado un formulario "SF" utilizado dos veces como subformulario en el mismo formu
| | |
| --- | --- |
| Número de comando | 1124 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
index 955daeb8b39790..1e540c0cd9839f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
@@ -41,6 +41,6 @@ Si el *objeto* es un subformulario y si la impresión en tamaño variable está
| | |
| --- | --- |
| Número de comando | 1241 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
index e6ca25f57241f0..f225e92b9acf41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ El parámetro *vertical* devuelve un valor indicando la opción de redimensionam
| | |
| --- | --- |
| Número de comando | 1176 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
index e39e9500a5ef9d..e0d65faa4adb97 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Para obtener más información acerca del formato de los parámetros *colorPrime
| | |
| --- | --- |
| Número de comando | 1074 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
index 022c779feb81f7..63a84cbf661f42 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Si *objeto* designa una imagen (variable o campo), *posicionLinea* devuelve el d
| | |
| --- | --- |
| Número de comando | 1114 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
index 1750d06e671243..d65d148fca871f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
@@ -50,6 +50,6 @@ Para obtener más información, consulte la descripción del comando [OBJECT SET
| | |
| --- | --- |
| Número de comando | 1076 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
index 7dbef20af7ea40..8253b8c7dd6705 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
@@ -47,6 +47,6 @@ Si ninguna tecla de modificación se ha definido para el atajo, modificadores de
| | |
| --- | --- |
| Número de comando | 1186 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
index 074760d360758b..8a19266e116545 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
@@ -52,6 +52,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1258 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
index 19b19c961a06e6..b6e0073375310d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
@@ -37,6 +37,6 @@ El evento On Resize se genera en el método formulario del subformulario si el o
| | |
| --- | --- |
| Número de comando | 1148 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
index e94ac70927d9d2..79cd74d6494d43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número de comando | 1785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
index 826956644b369b..f4f558c257a924 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ Si no hay formulario listado, se devuelve una cadena vacía en el parámetro *su
| | |
| --- | --- |
| Número de comando | 1139 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
index 1d672fba5a4b0f..4f310b9989e1fd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Cuando se ejecuta el formulario, si se llama a la siguiente declaración:
| | |
| --- | --- |
| Número de comando | 1283 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
index 14722c591e5f9d..bd0fd162025aad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ La propiedad "Tres estados" se puede definir ya sea usando la lista de propiedad
| | |
| --- | --- |
| Número de comando | 1250 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
index 77fcda9bda7446..ebf16283e25c47 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
@@ -38,6 +38,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro *objeto* es un nom
| | |
| --- | --- |
| Número de comando | 1068 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
index 9a3a6472c8f49c..75d5fb8c4d3597 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Usted quiere cargar un formulario y obtener la lista de todos los objetos de los
| | |
| --- | --- |
| Número de comando | 1300 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
index 7a210925da6ad8..32a3ac505c6915 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Ver el ejemplo para el comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número de comando | 1743 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
index c6da3457ed4866..eef16ea00c79c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
index 24ae0fe7e26e9e..d76712a2ed8f27 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Si pasa el parámetro opcional *\**, indica que el parámetro objeto es un nombr
| | |
| --- | --- |
| Número de comando | 1075 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
index 7cdf5a0ae8d97f..1fcd6d8d8e8d44 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Un formulario contiene un campo representado por dos objetos diferentes, uno de
| | |
| --- | --- |
| Número de comando | 1261 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
index 6dfe46fce21471..404d4d54ff93d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
@@ -72,6 +72,6 @@ La siguiente instrucción mueve el botón “boton\_1” a las siguientes coorde
| | |
| --- | --- |
| Número de comando | 664 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
index 24ab89c17d8bc8..f245960c62cf5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
@@ -46,6 +46,6 @@ Usted desea asociar la acción estándar **Validate** con un botón:
| | |
| --- | --- |
| Número de comando | 1259 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
index c43ae4b4cc8522..7a2809973e8409 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Pase **True** en *correccionAuto* para activar esta función para objeto y **Fal
| | |
| --- | --- |
| Número de comando | 1173 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
index f8c58bc599977b..78bd97c2170bc2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ En el parámetro *estiloBorde*, pase el valor del estilo de la línea fronteriza
| | |
| --- | --- |
| Número de comando | 1262 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
index 25042e8773d618..799ba1691864e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *menuContext* para activar el menú contextual, y
| | |
| --- | --- |
| Número de comando | 1251 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
index 62faf19ebdf850..e9c42f2ec23ae8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ La siguiente declaración ubica el objeto "button\_1" en las coordenadas (10,20)
| | |
| --- | --- |
| Número de comando | 1248 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
index 3ba3020714dc6b..b80c77376b6d72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
@@ -71,6 +71,6 @@ Tenga en cuenta que para las áreas de texto (así como las entradas), a diferen
| | |
| --- | --- |
| Número de comando | 1323 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
index 01e0440c2142e3..9de121ecc24d9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Cambio de la fuente de datos para un área de entrada:
| | |
| --- | --- |
| Número de comando | 1264 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
index 0796a954067b50..33cf8bb5c14e9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Definición de un área de texto en arrastrar y soltar auto:
| | |
| --- | --- |
| Número de comando | 1183 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
index ef34d6cd7f4b63..ca02b7f08e0f05 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Este comando se puede aplicar a los siguientes tipos de objetos:
| | |
| --- | --- |
| Número de comando | 1123 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
index 4a3a2b085bd0fc..72466f7792b22f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Este es el método de objeto de una casilla de selección ubicada en el encabeza
| | |
| --- | --- |
| Número de comando | 238 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
index 54c5fe4ba36c95..c8f8243ba0a35e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
@@ -171,6 +171,6 @@ Desactivación de un solo evento del formulario sin modificar los otros:
| | |
| --- | --- |
| Número de comando | 1239 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
index 8fcedddee2a1a8..03509b9f8df772 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ El siguiente ejemplo permite únicamente la entrada de las letras “a,” “b,
| | |
| --- | --- |
| Número de comando | 235 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
index 1ad9f2a9a4e683..a8ef29d200bc38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ Pase **True** en el parámetro *invisible* para ocultar el rectángulo de foco y
| | |
| --- | --- |
| Número de comando | 1177 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
index 6db156029ec8ac..93962206472b39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ El siguiente ejemplo define el tamaño de fuente para todos los objetos de formu
| | |
| --- | --- |
| Número de comando | 165 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
index 764f9d30224208..247f2f945b14ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
@@ -59,6 +59,6 @@ Este ejemplo define el estilo de fuente Plain para todos los objetos de formular
| | |
| --- | --- |
| Número de comando | 166 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
index 086d202797cdcd..77e4786f088a33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ El siguiente ejemplo utiliza la opción especial *%password*, diseñada para la
| | |
| --- | --- |
| Número de comando | 164 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
index b9bc399019be1f..9913d116473a14 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
@@ -364,6 +364,6 @@ Pase un termómetro a modo "Barber shop"
| | |
| --- | --- |
| Número de comando | 236 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
index 613cb06a6e955e..4e6e5d083a2444 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
@@ -141,6 +141,6 @@ El resultado es...
| | |
| --- | --- |
| Número de comando | 1181 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
index 3b3cb9c746bc35..cd4f433dbcbe31 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
@@ -62,6 +62,6 @@ Los objetos de formulario a los cuales puede aplicar este comando son los siguie
| | |
| --- | --- |
| Número de comando | 706 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
index 69f2186164f207..088d07690e042f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ En el parámetro *indicador*, pase el tipo de indicador a mostrar. Puede utiliza
| | |
| --- | --- |
| Número de comando | 1246 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
index 2eeeaf80ca5cbd..1e64a41834f0bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ En *codigoLeng*, pase una cadena indicando el código del lenguaje a utilizar, b
| | |
| --- | --- |
| Número de comando | 1179 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
index 8c42e8452c3501..570bdd78f2e675 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
@@ -98,6 +98,6 @@ Usted quiere eliminar la lista de asociaciones:
| | |
| --- | --- |
| Número de comando | 237 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
index 7c549f19b3d820..96d3a50c3b1247 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ Con el fin de actualizar la lista asociada al pop-up gestionado por array, es ne
| | |
| --- | --- |
| Número de comando | 1266 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
index 25078981972f9c..32ac545cb2849c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ En *valorMax*, pase el nuevo valor máximo que desea asignar al objeto para el p
| | |
| --- | --- |
| Número de comando | 1244 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
index 17e8f7b48eaf7a..ca0e082eb0e57e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ En *valorMinimo*, pase el nuevo valor mínimo a asignar al objeto para el proces
| | |
| --- | --- |
| Número de comando | 1242 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
index ee9a34e500a17a..ec4aefa530c82e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ Usted quiere prohibir varias líneas en un área de entrada:
| | |
| --- | --- |
| Número de comando | 1253 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
index ad2601b36be307..4c010c88057cc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Usted quiere mostrar el texto "Buscar" un combo box:
| | |
| --- | --- |
| Número de comando | 1295 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
index 2e1605b2759708..ef674fc4cb4f8d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
@@ -47,6 +47,6 @@ El parámetro opcional *subformFijo* le permite configurar una opción adicional
| | |
| --- | --- |
| Número de comando | 1240 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
index 3450d67fe42ea8..a9acda328738f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
@@ -48,6 +48,6 @@ En el parámetro *vertical*, pase un valor que indique la opción de redimension
| | |
| --- | --- |
| Número de comando | 1175 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
index f7fafe23f46046..ee7b657196d875 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
@@ -109,6 +109,6 @@ Cambia a fondo transparente con un color de fuente claro:
| | |
| --- | --- |
| Número de comando | 628 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
index 54ecbea8de6c45..8d2f7d2400c963 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
@@ -95,6 +95,6 @@ Asegúrese de no omitir el segundo parámetro *\** en este caso, de lo contrario
| | |
| --- | --- |
| Número de comando | 906 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
index 6168f42ff9087f..392b4facfb70a4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ Pase en los parámetros *horizontal* y *vertical* los valores indicando si las b
| | |
| --- | --- |
| Número de comando | 843 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
index c7a8f7772c3fb6..3a1e1e8e196ee8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
@@ -94,6 +94,6 @@ Usted quiere asociar un atajo de teclado diferente en función del lenguaje actu
| | |
| --- | --- |
| Número de comando | 1185 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
index 0ba3ae9c89971d..618fc93abe26e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ En la **arquitectura proyecto**, este comando sólo soporta las tres hojas de es
| | |
| --- | --- |
| Número de comando | 1257 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
index e0576e83511f50..aab25f5bafbf72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número de comando | 1784 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
index 656c39b2c2614e..c98d1f4799dc6e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
@@ -49,6 +49,6 @@ Cuando modifica un subformulario página, el comando puede ejecutarse en cualqui
| | |
| --- | --- |
| Número de comando | 1138 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
index 8977dfe1ce4654..083f7c526ecb6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
@@ -55,6 +55,6 @@ Desea aplicar una orientación de 270° a una variable en su formulario:
| | |
| --- | --- |
| Número de comando | 1284 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
index 8869bb9834b631..d399707a5271ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ En el parámetro *tresEst*, pase **True** para activar el modo "tres estados", o
| | |
| --- | --- |
| Número de comando | 1249 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
index 279acbe7ea7c86..f1b6ae18cfffbd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
@@ -73,6 +73,6 @@ Usted quiere insertar los títulos en dos líneas:
| | |
| --- | --- |
| Número de comando | 194 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
index 931507a8928dba..bec887413c777c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Desea obtener el valor de la fuente de datos para un objeto de formulario, obten
| | |
| --- | --- |
| Número de comando | 1742 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
index fb2556a3f91ae5..9c1e1206a3f4d1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ La alineación vertical puede aplicarse a los siguientes tipos de objetos de for
| | |
| --- | --- |
| Número de comando | 1187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
index c2e3b694c77c80..0dc1a5e9664a32 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ o:
| | |
| --- | --- |
| Número de comando | 603 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
index e9f009baf68395..336cdc93c66fc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Queremos duplicar y cambiar el nombre de un archivo en su propia carpeta
| | |
| --- | --- |
| Número de comando | 1548 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
index dc07058e4e8d42..b330db3025a8f8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
@@ -29,7 +29,7 @@ OLD RELATED MANY cambia la selección de la tabla relacionada y selecciona el pr
| | |
| --- | --- |
| Número de comando | 263 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
index 434173cf9bad44..371908c673db61 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 44 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
index f8aa7106c71caf..437a20f793bcc0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
@@ -45,6 +45,6 @@ Para restaurar el valor original de un campo, asígnele el valor devuelto por Ol
| | |
| --- | --- |
| Número de comando | 35 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
index 8c4b874c13dddb..fd62c7e26d9f34 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
@@ -190,6 +190,6 @@ El siguiente método de gestión de errores ignora las interrupciones del usuari
| | |
| --- | --- |
| Número de comando | 155 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
index 404f0293d26024..aafe82289f29cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
@@ -120,7 +120,7 @@ Si imprime un informe utilizando [PRINT SELECTION](print-selection.md "PRINT SEL
| | |
| --- | --- |
| Número de comando | 190 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
index 58e53d3abd0017..02218793d17ed3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ The [Force login authentication](../REST/authUsers.md) is now highly recommended
| | |
| --- | --- |
| Command number | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
index dea6ca45ed567c..7f994f19fa9767 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ Este comando fue útil para “reponer” un registro que había sido apilado y
| | |
| --- | --- |
| Número de comando | 189 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
index 86f28016ec96e7..0559d7a656068d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si el comando ha sido ejecutado correctamente, la variable sistema OK toma el va
| | |
| --- | --- |
| Número de comando | 1047 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
index 7de3420bb63888..560b588a0bc572 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Si el color se ha cambiado, el evento formulario On After Edit se genera para el
| | |
| --- | --- |
| Número de comando | 1304 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
index 07adde52cd74cb..1e5c816e2d67b3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ En el contexto del despliegue de una aplicación fusionada, usted desea abrir o
| | |
| --- | --- |
| Número de comando | 312 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
index 16bef78e87e440..39a57f6ccf2f17 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
@@ -76,6 +76,6 @@ Desea seleccionar un servidor al inicio desde una aplicación mono usuario. Pued
| | |
| --- | --- |
| Número de comando | 1321 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
index 9c8a5a10fa8f18..a161e6d1992ec7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
@@ -93,7 +93,7 @@ Si pasa el valor 3 en *modo*, la función devuelve ?00:00:00? (sin referencia de
| | |
| --- | --- |
| Número de comando | 264 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
index 2606113929ea1d..14eb5c7c3504a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Este es el código del botón:
| | |
| --- | --- |
| Número de comando | 1303 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
index 36e7e53f1533f6..b9e038db3bdd9c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
@@ -143,6 +143,6 @@ que devuelve:
| | |
| --- | --- |
| Número de comando | 675 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
index e7e1a6156a0326..7cb3bd2dc4a348 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable sistema OK toma el valor 1 si el trabajo de impresión se ha abierto
| | |
| --- | --- |
| Número de comando | 995 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
index 49aaed55bb2a6a..ae83f79c1de105 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Si el archivo de recursos no se pudo abrir por un problema del recurso o de E/S,
| | |
| --- | --- |
| Número de comando | 497 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
index d5ec4f733cda62..01a380024fae64 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
index cacc35dea432de..e61d2797dd0b9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependiendo de los privilegios de acceso del usuario actual, ciertas funciones d
| | |
| --- | --- |
| Número de comando | 1018 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
index 514049c798600f..ba811867cc8360 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
@@ -145,7 +145,7 @@ Si la caja de diálogo Preferencias/Propiedades se valida, la variable sistema O
| | |
| --- | --- |
| Número de comando | 903 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
index 51b9c388af03b0..cc27c0138a8ccf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
@@ -87,6 +87,6 @@ Puede abrir un mismo archivo texto con diferentes aplicaciones utilizando el par
| | |
| --- | --- |
| Número de comando | 673 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
index dec072d5bf6ea7..394eee1ec4df43 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
@@ -166,4 +166,4 @@ Este ejemplo ilustra el mecanismo de “retraso” de mostrar ventanas bajo macO
| | |
| --- | --- |
| Número de comando | 153 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
index 91018ab6df3eca..9ba6928018b19d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Los registros están en el siguiente orden:
| | |
| --- | --- |
| Número de comando | 1407 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
index 6bccf423b16004..bd4ed3a2988810 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
@@ -52,7 +52,7 @@ Este ejemplo ordena los registros de la tabla \[Personas\] en orden descendente,
| | |
| --- | --- |
| Número de comando | 300 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
index 20ae99637d1eea..9d5c60c8a29110 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
@@ -206,7 +206,7 @@ Cada botón llama al método de proyecto MULTINIVEL con un puntero al campo de l
| | |
| --- | --- |
| Número de comando | 49 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
index 8acc074f404f9e..6b4244281f3367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que se genere el ciclo de ejecución **Outside call**, asegúrese de que la
| | |
| --- | --- |
| Número de comando | 328 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
index 8900e69d680ce3..c53d721efb1071 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ Consulte el ejemplo del comando [SET PRINT MARKER](set-print-marker.md "SET PRIN
| | |
| --- | --- |
| Número de comando | 6 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
index 73d6fa5e6d1f24..8a9259f85c6b26 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
@@ -111,6 +111,6 @@ Utilizando las tablas del **Ejemplo 1**:
| | |
| --- | --- |
| Número de comando | 1576 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
index 47b59d4fccaf25..4d88a075f8c9af 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
@@ -97,7 +97,7 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 400 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
index fdb0fe50b58ea3..3249696b11956b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
@@ -180,6 +180,6 @@ Desea saber la cantidad de subcarpetas en una ruta:
| | |
| --- | --- |
| Número de comando | 1547 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
index 10452562df2af2..3465b22af93844 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ Ejemplo de método de importación masivo de datos:
| | |
| --- | --- |
| Número de comando | 1293 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
index d22784eaef38a8..ee45536a4dad8b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Cuando se suspende la ejecución de un proceso, las ventanas que pertenecen a es
| | |
| --- | --- |
| Número de comando | 319 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
index 9624ac98b18bd2..c11619490d422b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
@@ -38,6 +38,6 @@ Por defecto, si no pasa el parámetro *\**, el comando devuelve únicamente los
| | |
| --- | --- |
| Número de comando | 992 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
index 586cc3a698c353..895531b000bbea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
@@ -98,6 +98,6 @@ El siguiente ejemplo exporta la librería de imágenes a un documento almacenado
| | |
| --- | --- |
| Número de comando | 564 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
index 54e8765755b661..68caca9ad7937a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Los parámetros *hDesp*, *vDesp*, y *modo* devuelven las posiciones horizontal y
| | |
| --- | --- |
| Número de comando | 457 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
index b2757efdcd8277..7a0333c1e333c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 356 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
index 4cffdc1d32d7b1..8880dddd817de8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
@@ -57,7 +57,7 @@ Desea convertir una imagen de un formato propietario a formato GIF y mostrarlo e
| | |
| --- | --- |
| Número de comando | 692 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
index da3bc37bc153d7..ff021bbcc7ccfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
@@ -61,6 +61,6 @@ El siguiente código de ejemplo reproduce un sonido del sistema en macOS:
| | |
| --- | --- |
| Número de comando | 290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
index 1c0425da03d691..b2bef19d4448c1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LIST tiene en cuenta todos los plug-ins, incluyendo aquellos que están i
| | |
| --- | --- |
| Número de comando | 847 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
index e5298679bfc5f2..f11e5b9e3d2de6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
@@ -39,7 +39,7 @@ El siguiente ejemplo recupera el registro de un cliente en la pila:
| | |
| --- | --- |
| Número de comando | 177 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
index 069b2be565795b..4759205af4ae2d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
@@ -108,6 +108,6 @@ El siguiente es el menú pop-up tal como aparece en Windows (izquierda) y Macint
| | |
| --- | --- |
| Número de comando | 542 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
index d11ead63664d72..bb05f3693d4182 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
@@ -124,6 +124,6 @@ En el siguiente ejemplo, usted quiere encontrar todas las instancias de una cade
| | |
| --- | --- |
| Número de comando | 15 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
index 51221892300875..1c5ca3631797ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Si especifica el parámetro proceso *proceso*, el clic se envía al proceso cuyo
| | |
| --- | --- |
| Número de comando | 466 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
index 589e0b289ff1f0..67ae9a9047337b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
@@ -54,6 +54,6 @@ Si pasa el parámetro *proceso*, el evento se envía al proceso cuyo número se
| | |
| --- | --- |
| Número de comando | 467 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
index 46bd47e2838362..c45cb8759c3d3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ Ver el ejemplo del comando [Process number](process-number.md "Process number").
| | |
| --- | --- |
| Número de comando | 465 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
index a0143e36a33591..4e5e26e916d6f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ Ver el ejemplo de la sección [Semáforo](semaphore.md).
| | |
| --- | --- |
| Número de comando | 329 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
index 94f682e192ad42..619ab8694548ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Si PREVIOUS RECORD mueve el puntero del registro actual antes de la selección a
| | |
| --- | --- |
| Número de comando | 110 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
index 9e28ae5c31666b..2789c5bf2fc560 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
@@ -112,7 +112,7 @@ El siguiente ejemplo le permite al usuario efectuar una búsqueda en la tabla \[
| | |
| --- | --- |
| Número de comando | 39 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
index de0a60612878a6..621196750238e4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
@@ -101,6 +101,6 @@ Ejemplo de impresión de un list box completo:
| | |
| --- | --- |
| Número de comando | 1095 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
index 282c1f9c27d643..2659197dcf597f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ Toda la información devuelta por estos comandos es suministrada por el sistema
| | |
| --- | --- |
| Número de comando | 785 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
index 46aa33d87c33c5..d4d2e9c23f9a7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
@@ -67,6 +67,6 @@ El siguiente ejemplo imprime el mismo registro actual en dos formularios diferen
| | |
| --- | --- |
| Número de comando | 71 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
index ef2b7e723739b6..d195db898ac56a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
@@ -67,7 +67,7 @@ El siguiente ejemplo selecciona todos los registros en la tabla \[Personas\]. El
| | |
| --- | --- |
| Número de comando | 60 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
index 797814d9a69dad..9a9dbf79328736 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
@@ -59,6 +59,6 @@ Usted desea almacenar la configuración de impresión actual en el disco:
| | |
| --- | --- |
| Número de comando | 1433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
index f06bd2d5aec7db..17c364476d90be 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Si el usuario hace clic en OK en ambas cajas de diálogo, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 106 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
index a0d0eaeadc6bf5..63816124ce40fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ La variable sistema OK toma el valor 1 si el comando ha sido ejecutado correctam
| | |
| --- | --- |
| Número de comando | 789 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
index 699713b60bf60f..138b8524234fbb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ El siguiente ejemplo cambia la posición de los números de página en un inform
| | |
| --- | --- |
| Número de comando | 275 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
index 1cf0c6bdc279e4..813dfc4f62246a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número de comando | 816 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
index 7d9c51bca602ef..19269c5d040814 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este estado ocurrirá muy raramente. Los procesos suelen detenerse antes de que
| | |
| --- | --- |
| Número de comando | 672 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
index 80fe394fd82563..580f057b719bfc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ El siguiente ejemplo coloca el nombre y número de referencia para cada proceso
| | |
| --- | --- |
| Número de comando | 330 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
index 81e381022f78ce..bcb9c56fc50da4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ El siguiente ejemplo apila el registro de un cliente:
| | |
| --- | --- |
| Número de comando | 176 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
index f6a247ec470dcc..7258af3b4506b2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ La siguiente instrucción recupera el informe rápido almacenado en Campo4 y lo
| | |
| --- | --- |
| Número de comando | 771 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
index 48f6154be66dbd..130b216b9f73b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ El siguiente código permite añadir una columna adicional a la derecha de la ú
| | |
| --- | --- |
| Número de comando | 764 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
index c247898cef0f9d..ee1a378b6fa828 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ El siguiente ejemplo se asegura de que el informe sea listado y borra la tercera
| | |
| --- | --- |
| Número de comando | 749 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
index f036786d0cfb12..7d7ef0174ac889 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 754 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
index 85118a0076cead..211cde3686b900 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ Si pasa un número de *comando* incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 791 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
index d6eae4422d8fd3..a2145d7c312acf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número de comando | 776 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
index 41ae5b7ea4843b..8ec2c6f62150dd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 795 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
index 4dfe91de063918..851d01a075dfcd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
@@ -75,7 +75,7 @@ Si el parámetro *area* es incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 798 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
index 92c8ac525b7f44..6f7bff9d218454 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
@@ -42,7 +42,7 @@ Si el parámetro *comando* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 792 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
index 348f38e20c6ed3..c5ac94c90b9165 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 756 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
index 56b1b193845993..9897eae0bbeb5d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
@@ -51,6 +51,6 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 773 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
index 743da2a5a97558..504d3e9fb5addf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 747 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
index b003a913e6054c..4e55124b25d255 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ El siguiente código recupera el contenido y la altura del título del encabezad
| | |
| --- | --- |
| Número de comando | 775 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
index 31dbc1b37e2905..02eb6b7b83901a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 751 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
index 3adfe2c827a3fe..12746b089be8e5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
@@ -121,7 +121,7 @@ Puede escribir:
| | |
| --- | --- |
| Número de comando | 766 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
index f31f2aac4b58a9..653afdcd62f341 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
@@ -44,7 +44,7 @@ Si el parámetro *linea* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 769 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
index c11e2eb0688b35..ecde45b3591aef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
@@ -40,7 +40,7 @@ Si pasa un número de *area* incorrecto, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 755 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
index ae64e9927eb56e..9bafb511ac460a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 758 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
index ab32428efac66b..dae8f608448f9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 793 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
index 4f99c3ba33eedb..9fb33614e90eea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ Si pasa un número de area inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 753 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
index b591711f3c9052..c4e1fafac8cfb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
@@ -71,7 +71,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9854
| | |
| --- | --- |
| Número de comando | 760 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
index 6c61d3ba0a5050..214ab3a191300e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
@@ -77,7 +77,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 768 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
index d66f4fe42a4b93..a05d3a4c4ab645 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ Si el parámetro *subtotal* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
index f44e1be7bcf479..e2459f23441aa7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ La siguiente instrucción inserta (o crea) una primera columna en el área MiAre
| | |
| --- | --- |
| Número de comando | 748 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
index c19c9e5982dc5a..16f51ea74e66da 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ El resultado es:
| | |
| --- | --- |
| Número de comando | 1325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
index 91900c6479342b..915cdceec5aec1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1320 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
index baf6bfa22117fd..e4532113a8828a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 735 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
index 8b1c0b2c8cc360..3b73490574082b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
@@ -48,7 +48,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 790 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
index 7b41826d910037..3e1e3b6d5c04d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ La siguiente instrucción asigna el informe rápido almacenado en el área MiAre
| | |
| --- | --- |
| Número de comando | 770 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
index 292230917bef42..647150acb87334 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
@@ -136,7 +136,7 @@ El método myCallbackMeth convierte el informe cuando se genera:
| | |
| --- | --- |
| Número de comando | 197 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
index 7a9a74cb275a9b..571050125db070 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 746 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
index 4a877a4a796768..7d030c4bf35251 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
@@ -39,7 +39,7 @@ Si el parámetro *propiedad* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 796 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
index ed7e7a612f111b..4b0fd686389b56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
@@ -78,7 +78,7 @@ Si el parámetro *ancho* es incorrecto, se genera el error -9855.
| | |
| --- | --- |
| Número de comando | 797 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
index 375724a71abc7e..cca1a4362d0233 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
@@ -55,7 +55,7 @@ El siguiente código define el archivo texto Midoc.txt como tipo de destino del
| | |
| --- | --- |
| Número de comando | 745 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
index a57b3a1a79b3ff..dcd97b4ff5565e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
@@ -51,7 +51,7 @@ Si pasa un valor incorrecto en *propiedad* o *valor*, se genera el error corresp
| | |
| --- | --- |
| Número de comando | 772 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
index 095afa8d53f0e6..4163b7a5f96638 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ La siguiente instrucción coloca el título “Título del centro” en el encab
| | |
| --- | --- |
| Número de comando | 774 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
index d6696d9f932d87..8f1bc612a4f394 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
@@ -79,7 +79,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 750 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
index 4f28a2f9e93a6f..6c96d9d45f048f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
@@ -115,7 +115,7 @@ Si el parámetro *numColumna* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 765 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
index 8a9abcad210a9a..762a86579556ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
@@ -55,7 +55,7 @@ La siguiente instrucción oculta el contenido de la línea detalle:
| | |
| --- | --- |
| Número de comando | 763 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
index 563b9129ba18b6..bc04e0578f3111 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
@@ -44,7 +44,7 @@ Si pasa un valor incorrecto del parámetro *propiedad*, se genera el error -9852
| | |
| --- | --- |
| Número de comando | 738 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
index 63acb11b21c433..314c3e58e6ca7f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ Si el parámetro *tabla* es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 757 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
index 2d9a92c5387780..8d9650ee0fac41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
@@ -41,7 +41,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 794 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
index e151fbbe52e7c4..2dea93f9dc28f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ Si pasa un número de *area* inválido, se genera el error -9850.
| | |
| --- | --- |
| Número de comando | 752 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
index bb3b2ee63d35d8..50d30ed0dedf04 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Este método define varios atributos para el título de la primera columna:
| | |
| --- | --- |
| Número de comando | 759 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
index f34a58e984cd46..b59e0644a9ccb8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
@@ -101,7 +101,7 @@ Si el parámetro *numRuptura* es incorrecto, se genera el error -9853.
| | |
| --- | --- |
| Número de comando | 767 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
index 65273a18c0eb3f..236a19db050771 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ Si el parámetro *subtotal*, es incorrecto, se genera el error -9852.
| | |
| --- | --- |
| Número de comando | 761 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
index b2559925b25235..3673bc7b66c1cd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
@@ -410,7 +410,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 1331 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
index 6e3eaceeeb9a12..cbc6393b2ca81c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ Si el usuario hace clic en el botón Aceptar o presionan la tecla Enter, la vari
| | |
| --- | --- |
| Número de comando | 292 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
index a9bb111578a335..f7ec3027459112 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
@@ -84,7 +84,7 @@ Este ejemplo utiliza una unión para buscar todas las líneas de facturas de cli
| | |
| --- | --- |
| Número de comando | 48 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
index 8acf0c830477a4..fd5aea822992ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
@@ -165,7 +165,7 @@ Si el formato de la condición de búsqueda es correcto, la variable sistema OK
| | |
| --- | --- |
| Número de comando | 942 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
index 9e34f09cbdfff0..089dca308d09f7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
@@ -53,7 +53,7 @@ Usted quiere encontrar personas con una edad entre 20 y 30, entre los registros
| | |
| --- | --- |
| Número de comando | 1424 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
index 1cf4f15c50f59b..ce336fa7245b5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Para mayor información, consulte la descripción del comando [QUERY BY FORMULA]
| | |
| --- | --- |
| Número de comando | 207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
index 61fee85f1955c7..643c1e7fe15b39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Para mayor información, consulte la descripción del comando [QUERY WITH ARRAY]
| | |
| --- | --- |
| Número de comando | 1050 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
index cfc6c5407d12d0..3ea591a2504ae5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Va a encontrar todas las empresas ubicadas en la ciudad de Nueva York, con una a
| | |
| --- | --- |
| Número de comando | 341 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
index e6e01c9f178237..37ee75ee4a04e2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ El siguiente ejemplo le permite recuperar los registros de clientes franceses y
| | |
| --- | --- |
| Número de comando | 644 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
index 80bba79cd84909..273ce679c07d6a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
@@ -315,7 +315,7 @@ La variable OK toma el valor 0 si: - el usuario hace clic en Cancelar en la caja
| | |
| --- | --- |
| Número de comando | 277 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
index f99568751a28d8..6036e07ed5d3ea 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
@@ -72,6 +72,6 @@ El método de proyecto siguiente está asociado al elemento de menú Salir en el
| | |
| --- | --- |
| Número de comando | 291 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
index fa9edd269be71e..1bf0d4698ff1b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
@@ -39,6 +39,6 @@ El siguiente ejemplo asigna un valor aleatorio entre 10 y 30 a la variable *vlRe
| | |
| --- | --- |
| Número de comando | 100 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
index b9bd34998ba2e5..2ee5c8c0ff37c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ El siguiente ejemplo prueba el estado de la tabla \[Facturas\]. Si el estado de
| | |
| --- | --- |
| Número de comando | 362 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
index 31e942d44b0434..c6d476e5a940ae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Utilice READ ONLY cuando no necesite modificar los registros.
| | |
| --- | --- |
| Número de comando | 145 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
index 06ae63dbd6ba8d..51dbf954438175 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
@@ -47,7 +47,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 678 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
index 7e771f2ac345b4..e38f7f1041a56c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilice READ WRITE cuando tenga que modificar un registro y guardar los cambios.
| | |
| --- | --- |
| Número de comando | 146 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
index 0550263a6ec57b..765e9d303b6965 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
@@ -138,6 +138,6 @@ Después de la ejecución de este código:
| | |
| --- | --- |
| Número de comando | 552 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
index ce17a4c435804b..af72698a135f02 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
@@ -69,7 +69,7 @@ Note que el acceso a la variable interproceso *vtBuffer* debe estar protegido po
| | |
| --- | --- |
| Número de comando | 172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
index e132c65f6c45b3..38d4c01361d106 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
@@ -121,7 +121,7 @@ Después de un llamado a RECEIVE PACKET, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 104 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
index 34f9298e768c8a..d28dec038f1fd9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
@@ -157,7 +157,7 @@ La variable sistema OK toma el valor 1 si se recibe el registro. De lo contrario
| | |
| --- | --- |
| Número de comando | 79 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
index b7268e08d5241f..bc02e2bb1c1458 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ La variable sistema OK toma el valor 1 si se recibe la variable. De lo contrario
| | |
| --- | --- |
| Número de comando | 81 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
index a1e195a530c993..7ad02032be4fc7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ El siguiente ejemplo guarda el número del registro actual y luego busca en la t
| | |
| --- | --- |
| Número de comando | 243 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
index 2649f4a9206d9f..a28e344ebe07f4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una técnica de bucle actualmente utilizada para mo
| | |
| --- | --- |
| Número de comando | 76 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
index 7e64708dd86363..d64469c89e5c7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ El siguiente ejemplo muestra una alerta indicando el porcentaje de clientes que
| | |
| --- | --- |
| Número de comando | 195 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
index 3b6c451cb4c9e4..d80499be54f61d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ El siguiente ejemplo muestra una alerta que indica el número de registros en la
| | |
| --- | --- |
| Número de comando | 83 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
index 367205f6ef7a6a..bb4da292ab9337 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Si omite el parámetro *ventana*, REDRAW WINDOW aplica a la ventana del primer p
| | |
| --- | --- |
| Número de comando | 456 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
index 8a8c0a1ea2fa25..af0b78fdda805f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ En el contexto de los list boxes en modo selección, la instrucción REDRAW apli
| | |
| --- | --- |
| Número de comando | 174 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
index 86124243bf98d3..ae44376df8484c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ El comando cambia el estado de la ventana:
| | |
| --- | --- |
| Número de comando | 1829 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
index c6853d693c6b44..5a74254a4bcb4c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
@@ -63,7 +63,7 @@ El siguiente ejemplo busca las estadísticas correctas para una competencia mund
| | |
| --- | --- |
| Número de comando | 351 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
index 0eb12353e7df4b..7c93974a3eeb92 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Desea actualizar su licencia y recibir un mensaje cuando se complete:
| | |
| --- | --- |
| Número de comando | 1336 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
index ff1688af21f2b5..05be2b571556e9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Este método regenera todas las tablas faltantes eventualmente presentes en la b
| | |
| --- | --- |
| Número de comando | 1126 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
index 0fe228cc74d483..f3bed3ebee5a80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
@@ -124,7 +124,7 @@ Si el cliente 4D está registrado correctamente, la variable sistema OK es igual
| | |
| --- | --- |
| Número de comando | 648 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
index a2beaec29e0fa2..d650fb58361489 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ En el primer parámetro, pase *curPassPhrase* o *curDataKey* que define la llave
| | |
| --- | --- |
| Número de comando | 1638 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
index 2e320933713118..ebc8f93c6bb89f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Desea rechazar o aceptar las nuevas conexiones de clientes:
| | |
| --- | --- |
| Número de comando | 1635 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
index 30ca4684392096..85b10c7bc7ccb1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
@@ -68,6 +68,6 @@ El siguiente ejemplo es parte de un método de objeto para un campo *\[Employees
| | |
| --- | --- |
| Número de comando | 38 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
index 6194cfbefd78c6..34f71db8096425 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ Este ejemplo selecciona todas las facturas de clientes con crédito superior o i
| | |
| --- | --- |
| Número de comando | 340 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
index b8ffdf3a1dfe39..e983c6e7453fd4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
@@ -71,7 +71,7 @@ Note que es necesario el comando RELATE MANY, aunque las relaciones sean automá
| | |
| --- | --- |
| Número de comando | 262 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
index 59bfb78d998708..85731c47c6a67e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
@@ -63,7 +63,7 @@ La siguiente técnica utiliza **RELATE ONE SELECTION** para obtener el mismo res
| | |
| --- | --- |
| Número de comando | 349 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
index 0bed30a6aefde1..b979de8e085251 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
@@ -92,7 +92,7 @@ Si el comando se ejecuta correctamente y si los registros relacionados se han ca
| | |
| --- | --- |
| Número de comando | 42 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
index bbde3cbf500963..3cc053aaf0ab2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Este ejemplo muestra las diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número de comando | 978 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
index 43af5b4976d88e..e5639c64c10586 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ A continuación debe recargar los datos utilizando el comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número de comando | 1135 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
index e356404ef616b0..29a2966d976c39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Cuando se llama al comando desde:
| | |
| --- | --- |
| Número de comando | 1739 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
index 4cc1de98e164b9..9c8ec813422bbb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 561 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
index 3cbc5a66f3a861..419bc9d127c849 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
@@ -61,7 +61,7 @@ El siguiente ejemplo borra de la librería de imágenes toda imagen cuyo nombre
| | |
| --- | --- |
| Número de comando | 567 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
index 152787f90771a9..3e3024a7fc8df7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ El siguiente ejemplo ilustra el uso del parámetro \* en el caso de una evaluaci
| | |
| --- | --- |
| Número de comando | 233 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
index a8277dcd8f62f7..d92a28987ea917 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
@@ -84,7 +84,7 @@ Mostrará la siguiente caja de diálogo (en Windows):
| | |
| --- | --- |
| Número de comando | 163 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
index 0d40bec9c68fbb..e9ce2e9ef2f580 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
@@ -52,6 +52,6 @@ Después de la ejecución de esta línea:
| | |
| --- | --- |
| Número de comando | 890 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
index 80067dc8c6cb26..ad7bc594c07591 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
@@ -37,7 +37,7 @@ Si *rutaAlias* especifica un alias/atajo, la variable sistema OK toma el valor 1
| | |
| --- | --- |
| Número de comando | 695 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
index 9a204efecd46b2..b8d6fac0bbeb11 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
@@ -115,6 +115,6 @@ Este es un ejemplo de puntero a un array 2D:
| | |
| --- | --- |
| Número de comando | 394 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
index a33546b0878d8a..9feb62d019a687 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ El siguiente ejemplo copia los recursos imagen presentes en todos los archivos d
| | |
| --- | --- |
| Número de comando | 500 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
index 8ea895e4c77b3b..a3bed5339b1a99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ Una vez este método de proyecto se implementa en una base, puede escribir:
| | |
| --- | --- |
| Número de comando | 499 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
index 50dde9c5536db8..2c43d8567ef9a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1,
| | |
| --- | --- |
| Número de comando | 1292 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
index 1cee75708b043c..ed73909024f900 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
@@ -41,6 +41,6 @@ El tipo y el contenido de los parámetros *info1* e *info2* dependen del valor d
| | |
| --- | --- |
| Número de comando | 889 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
index 8262cb62c653e3..89e92c30ad4e5f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
@@ -39,7 +39,7 @@ El comando RESTORE modifica el valor de las variables *OK* y *Document*: si la r
| | |
| --- | --- |
| Número de comando | 918 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
index 369cd68d14bb24..f5623d26dc89cb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ El comando **RESUME INDEXES** sólo se puede llamar desde 4D Server o un 4D loca
| | |
| --- | --- |
| Número de comando | 1294 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
index 46e684d9426a54..7babf9757ea25f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Si *proceso* ha sido retrasado anteriormente, consulte los comandos [PAUSE PROCE
| | |
| --- | --- |
| Número de comando | 320 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
index d1ead926995b39..40e01e5604dc6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para más información, consulte la sección *Suspender las transacciones*.
| | |
| --- | --- |
| Número de comando | 1386 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
index 7047cb967cda85..58272e330fa10e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando debe utilizarse únicamente en el contexto del evento de formulario
| | |
| --- | --- |
| Número de comando | 712 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
index 2011bfae528025..cedd1cc8a6f625 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
@@ -43,6 +43,6 @@ El siguiente ejemplo ilustra cómo Redondeo funciona con diferentes argumentos.
| | |
| --- | --- |
| Número de comando | 94 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
index a727463b168467..362b5bdb715cde 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Su contenido se reemplazará si ya hay una lista con el mismo nombre.
| | |
| --- | --- |
| Número de comando | 384 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
index d9421938d3702e..c0aea35920e230 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ El siguiente ejemplo es parte de un método que lee registros de un documento. E
| | |
| --- | --- |
| Número de comando | 53 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
index 69bded942e0dc0..1ab969f8dd3a5c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONE no guardará un registro bloqueado. Cuando utilice este comando
| | |
| --- | --- |
| Número de comando | 43 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
index 475932673f38e5..6568eb3cf9f6ca 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ Si el usuario hace clic en el botón Cancelar en la caja de diálogo de guardar
| | |
| --- | --- |
| Número de comando | 184 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
index 338bc328f0270c..90556d2ab031d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Si las variables se guardan correctamente, la variable sistema OK toma el valor
| | |
| --- | --- |
| Número de comando | 75 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
index 3697a4b0dcd83e..8e98ec58f0672d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
@@ -34,8 +34,8 @@ El siguiente código:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -51,7 +51,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 857 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
index 9576ca41a8e6c8..6fc7c9742f3491 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 856 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
index 468909f0d208e5..b3db1902c1ac2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 852 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
index d0c3c79e9c297a..4e12d28f69d573 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
@@ -31,8 +31,8 @@ La siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Variables y conjuntos del sistema
@@ -52,7 +52,7 @@ En caso de error, el comando devuelve un error que puede interceptarse utilizand
| | |
| --- | --- |
| Número de comando | 851 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
index f347673039b33c..57d24fa3b5d41e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
@@ -56,7 +56,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 855 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
index ca8bdfad05dca8..20c473902a22a8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
@@ -29,8 +29,8 @@ Si el último elemento abierto es **, la siguiente instrucción:
... escribirá la siguiente línea en el documento:
-```4d
-
+```xml
+
```
## Ver también
@@ -43,6 +43,6 @@ Si el último elemento abierto es **, la siguiente instrucción:
| | |
| --- | --- |
| Número de comando | 854 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
index 15821b121dccd2..97c971119bb405 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 878 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
index e0d38e575e0749..1ae409abf1c3aa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 874 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
index 68cfa3fd16ac57..de038daaceea99 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 873 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
index 36fde52edc5107..eb025a8795a00d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 877 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
index 82054681aca249..c9367a804d96eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 876 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
index 8fcafb008b1b6b..b8891ee1357cd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 879 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
index 245ea3d0e89c7f..f353c18fe97ade 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 860 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
index ee122e7f879730..d1d6cee22ffda4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ La siguiente instrucción devolverá “PI” en *vNom* y “TextProcess” en *
| | |
| --- | --- |
| Número de comando | 875 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
index 42e686126e2232..01b6c9a6b122fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 921 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
index 03164546003a7b..edd0fae834814e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ Si se pasa en tag un carácter inválido, se genera un error.
| | |
| --- | --- |
| Número de comando | 853 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
index f0a7b2a0ea75a9..90a18d2ec393f1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
@@ -51,6 +51,6 @@ El siguiente código:
| | |
| --- | --- |
| Número de comando | 858 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
index 0ae4c333487e37..8e243cb8f1ace2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
@@ -55,7 +55,7 @@ El siguiente ejemplo envía cartas a los 50 peores clientes y 50 a los mejores c
| | |
| --- | --- |
| Número de comando | 350 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
index 056301297ac3cd..cfa56595426670 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ Las siguientes imágenes demuestran las diferencias entre el tamaño de la panta
| | |
| --- | --- |
| Número de comando | 438 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
index 58db2831001981..36ceb545910ffd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ Su aplicación muestra varios gráficos a color. Puede escribir en alguna parte
| | |
| --- | --- |
| Número de comando | 439 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
index e036599e3a4117..34828becc97d4f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ En Mac OS, Screen height devuelve la altura de la pantalla principal, es decir l
| | |
| --- | --- |
| Número de comando | 188 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
index 66fb27401878f4..84805c1d412280 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ En Macintosh, Screen width devuelve el largo de la pantalla principal, es decir
| | |
| --- | --- |
| Número de comando | 187 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
index 3bbda658e35b82..c5226fc217e82d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
@@ -103,7 +103,7 @@ Si no se seleccionó ningún archivo (por ejemplo, si el usuario hace clic en el
| | |
| --- | --- |
| Número de comando | 905 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
index debad538f280c9..69f1ac57f2397a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
@@ -93,7 +93,7 @@ El siguiente ejemplo le permite seleccionar la carpeta en la cual se almacenará
| | |
| --- | --- |
| Número de comando | 670 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
index 86527c1e15abd7..f14bf4f80126fb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
@@ -78,6 +78,6 @@ Se seleccionan los elementos segundo, tercero y quinto de la lista jerárquica
| | |
| --- | --- |
| Número de comando | 381 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
index 1e1d394cf1839b..dad4756e861992 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ Si trabaja con los números de referencia de los elementos, asegúrese de constr
| | |
| --- | --- |
| Número de comando | 630 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
index 3d785042e34d4b..136698c2c8664f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
@@ -45,7 +45,7 @@ El efecto de la validación de esta caja de diálogo difiere dependiendo de la p
| | |
| --- | --- |
| Número de comando | 956 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
index 34e3907d4f8cfb..8256a2c98716b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
@@ -90,6 +90,6 @@ Esta es una lista llamada *hList,* mostrada en el entorno Aplicación:
| | |
| --- | --- |
| Número de comando | 379 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
index c0dceb38f9427d..dbadd91450b2d2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ El siguiente ejemplo guarda el número del registro actual de la selección en u
| | |
| --- | --- |
| Número de comando | 246 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
index e35573bb9e5828..45aed4ca4ad317 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
@@ -114,6 +114,6 @@ Uso de los 50 primeros registros actuales de la tabla \[Facturas\] para cargar v
| | |
| --- | --- |
| Número de comando | 368 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
index ffdf231f8501dd..21dd2cc253331e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ El mismo ejemplo puede escribirse:
| | |
| --- | --- |
| Número de comando | 260 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
index 184b2460991f43..8c32ef23bbdd94 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
@@ -97,6 +97,6 @@ Puede utilizar la sintaxis *template* para exportar campos de tablas diferentes:
| | |
| --- | --- |
| Número de comando | 1234 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
index 466b820e5e7256..342384da423635 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver el ejemplo del comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER
| | |
| --- | --- |
| Número de comando | 308 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
index 76b5df5d4093e4..0449670b55584f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
@@ -153,6 +153,6 @@ Sintaxis:
| | |
| --- | --- |
| Número de comando | 143 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
index 002e4fa3833976..5d48cba050df33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ Desea enviar un mensaje a todos los usuarios y luego enviar un mensaje a un usua
| | |
| --- | --- |
| Número de comando | 1632 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
index 13d31a6af40e2b..16bfcd9cfe8c41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
@@ -88,6 +88,6 @@ Este ejemplo ilustra el envío y recuperación de caracteres extendidos vía un
| | |
| --- | --- |
| Número de comando | 103 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
index 38c0841399ff6e..fe52389ced0eb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 78 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
index eb195e5c9a3670..2c6caf92132b24 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Ver el ejemplo del comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD").
| | |
| --- | --- |
| Número de comando | 80 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
index e37e038b1e9aa1..9eaa4f7f9d2b3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
@@ -65,6 +65,6 @@ El siguiente ejemplo es parte de un método de formulario. Estas líneas de cód
| | |
| --- | --- |
| Número de comando | 244 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
index 285a6cf2b9ac0a..1779086223c499 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ El siguiente ejemplo reinicializa el comando de menú Acerca de 4D:
| | |
| --- | --- |
| Número de comando | 316 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
index e7e2e378c60c30..f80aadd14167bc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ En el parámetro *esquemaColor*, pase un esquema de color a aplicar:
| | |
| --- | --- |
| Número de comando | 1762 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
index bc82da3dcbc381..7c658868237dc8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Desactivación de aserciones:
| | |
| --- | --- |
| Número de comando | 1131 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
index 2adb391357dd75..fb61032f576166 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ El siguiente ejemplo vuelve automáticas todas las relaciones Muchos a Uno y res
| | |
| --- | --- |
| Número de comando | 310 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
index 9f7f62658c3e43..882ad047ba44d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ El siguiente ejemplo crea un BLOB de 16K lleno de 0xFF:
| | |
| --- | --- |
| Número de comando | 606 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
index 9c3dee9080542c..5b5a40b009f6b4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ En el , usted desea definir una prioridad alta para la tabla \[Customer\]:
| | |
| --- | --- |
| Número de comando | 1425 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
index c9fd2c0b587f0d..3149e2fb0bcfbf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Usted quiere añadir 100 MB al tamaño de la caché de su base actual. Puede esc
| | |
| --- | --- |
| Número de comando | 1399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
index f77211a9a5fca7..b1ad85c61e9e5e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
@@ -174,7 +174,7 @@ Ver los ejemplos de los comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BUF
| | |
| --- | --- |
| Número de comando | 77 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
index 38b2809747d687..7c394d6a717be0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
@@ -58,7 +58,7 @@ Creación de un documento PDF bajo Windows:
| | |
| --- | --- |
| Número de comando | 787 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
index c8ebe64b1e1142..890cdbadbbf3c9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ Usted quiere que se muestre el cursor .
| | |
| --- | --- |
| Número de comando | 385 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
index 164ba7f74b9fc6..1167ae1e5de7ad 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
@@ -71,6 +71,6 @@ Desea rechazar la sublista de expandir/contraer al hacer doble clic. Puede escri
| | |
| --- | --- |
| Número de comando | 387 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
index a0475f56385d47..4628b5e8fdb5a2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
@@ -63,6 +63,6 @@ Esta macro crea un nuevo texto que será devuelto al método llamante:
| | |
| --- | --- |
| Número de comando | 998 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
index 41d61b43bdb04e..f523801a2a1c83 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ En este ejemplo, crearemos por programación, una barra de menús incluyendo los
| | |
| --- | --- |
| Número de comando | 67 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
index 892adf51f69e2a..41032f23fccd9a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
@@ -49,6 +49,6 @@ Uso de una imagen ubicada en la carpeta Resources de la base:
| | |
| --- | --- |
| Número de comando | 984 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
index 5bf2ad21f8d051..46ea5f28e130c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ Ver ejemplo para el comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número de comando | 208 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
index 977386a954147f..38d12df8c20fb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
@@ -41,6 +41,6 @@ Consulte el ejemplo del comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número de comando | 982 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
index 72d9abd70b5fb0..d5a16862510cef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Este código ofrece un menú que incluye los nombres de las ventanas abiertas y
| | |
| --- | --- |
| Número de comando | 1004 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
index af71f8fdfef720..a33f0bed9308f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
@@ -64,6 +64,6 @@ En el caso de la propiedad Associated standard action, puede pasar en el paráme
| | |
| --- | --- |
| Número de comando | 973 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
index 69d5fa66022eb7..d1afc39d30c769 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
@@ -83,7 +83,7 @@ Definición del atajo de teclado F4 para la opción de menú "Cerrar":
| | |
| --- | --- |
| Número de comando | 423 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
index 087cd2e14f65a5..4f77bd605254df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ En el parámetro *itemEstilo* puede definir el estilo del elemento. Pase una com
| | |
| --- | --- |
| Número de comando | 425 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
index 6ff90a0ead4a1f..b10cedc573d8ec 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Si omite el parámetro *proceso*, SET MENU ITEM se aplica a la barra de menús d
| | |
| --- | --- |
| Número de comando | 348 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
index 733edef2423566..356a0c93a25407 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ El nombre por defecto se utiliza como nombre de archivo cuando la imagen se expo
| | |
| --- | --- |
| Número de comando | 1172 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
index a1526318bf385f..57a7f82d965db9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
@@ -88,7 +88,7 @@ Cuanto todos los metadatos se manipulan vía una referencia de elementos DOM, la
| | |
| --- | --- |
| Número de comando | 1121 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
index 0c0fd6da490c96..76b66c13fc2494 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
@@ -104,7 +104,7 @@ Si no hay suficiente memoria para añadir la imagen a la librería de imágenes,
| | |
| --- | --- |
| Número de comando | 566 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | error |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
index 3d7167be7a8e66..85fea9c21f6f8f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
@@ -54,7 +54,7 @@ Si no hay suficiente memoria para colocar una copia de la imagen en el portapape
| | |
| --- | --- |
| Número de comando | 521 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
index 3717b123fa6f50..891f452da23bae 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Pase en el parámetro *grupo* el nombre del grupo cuyos usuarios están autoriza
| | |
| --- | --- |
| Número de comando | 845 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
index f02034014efa78..3ced1ea6d161b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
@@ -187,6 +187,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número de comando | 709 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
index d197dc3cc85acd..d9524cfa82c6eb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
@@ -85,7 +85,7 @@ Si el valor pasado por una *opción* es incorrecto o si no está disponible en l
| | |
| --- | --- |
| Número de comando | 733 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
index f87ee82bfb21d8..2b4242b815b9a3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ El siguiente ejemplo selecciona la opción Previsualización en pantalla para mo
| | |
| --- | --- |
| Número de comando | 364 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
index 09bf34d826a727..ecf7c181bf54df 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ El siguiente ejemplo le permite obtener el tamaño del papel:
| | |
| --- | --- |
| Número de comando | 710 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
index 694be3199704fa..aa36bdbf11fd2f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
@@ -102,6 +102,6 @@ Este ejemplo escribe la instancia de las variables *v1*, *v2* y *v3* utilizando
| | |
| --- | --- |
| Número de comando | 370 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
index 8aa0478dea50ed..27ad7f3c331fb4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Si el comando no se llama en el contexto de una transacción, se genera un error
| | |
| --- | --- |
| Número de comando | 661 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
index d306c4040c36f1..7135c6fc39ad2e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ Después de implementar este método de proyecto en su aplicación, puede escrib
| | |
| --- | --- |
| Número de comando | 396 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
index 2e1137885b98e6..c990880ba5e15a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Ver el segundo ejemplo del comando [SET QUERY DESTINATION](set-query-destination
| | |
| --- | --- |
| Número de comando | 395 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
index 819e9784a46d42..aec92c7dad613d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL**, puede aumentar o reducir el valor epsi
| | |
| --- | --- |
| Número de comando | 623 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
index 996143e64adb0c..996f0f396cadef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Luego el menú contiene:
| | |
| --- | --- |
| Número de comando | 1305 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
index 9580000cd3251f..b921bad451abd5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ En el , usted desea definir una prioridad alta para el dato escalar \[Customer\]
| | |
| --- | --- |
| Número de comando | 1400 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
index 1c966b87ae5be7..8b38229549ffbe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
@@ -185,6 +185,6 @@ Desea eliminar todos los nombres de tablas y campos personalizados definidos:
| | |
| --- | --- |
| Número de comando | 601 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
index 9dcb3b9c08165e..802a6174826422 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Si el texto se coloca correctamente en el portapapeles, la variable OK toma el v
| | |
| --- | --- |
| Número de comando | 523 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
index 550942186efdcc..2c76bc97dc1420 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ El siguiente ejemplo fija el puerto serial para recibir datos y el timeout. Los
| | |
| --- | --- |
| Número de comando | 268 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
index be69e97763f05e..a095e3924dd2c2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Imaginemos que usted quiere, cuando un formulario aparece en pantalla, que el or
| | |
| --- | --- |
| Número de comando | 645 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
index e6348d4875034f..99dc876e4b7440 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
@@ -59,7 +59,7 @@ Usted creó una carpeta "MyUpdates" en su disco, en la cual ubicó una nueva ver
| | |
| --- | --- |
| Número de comando | 1291 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
index 6c0a16ec475159..b73c62d4da40d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Sus usuarios se administran a través de una tabla personalizada y utilizan la m
| | |
| --- | --- |
| Número de comando | 1666 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
index 7e5a9f53324909..44d979eee48697 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
@@ -68,6 +68,6 @@ Si no tiene privilegios de acceso para llamar al comando Set user properties o s
| | |
| --- | --- |
| Número de comando | 612 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
index c714148d836a24..a144fcad112c9d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
@@ -67,6 +67,6 @@ La ventana aparece de esta forma:
| | |
| --- | --- |
| Número de comando | 444 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
index 5d603a7404cc95..80d0fa117204ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Mientras efectúa una entrada de datos en un formulario, usted hace clic en un b
| | |
| --- | --- |
| Número de comando | 213 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
index 0e1fe195f9839d..15c90d8f78fcdd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ El siguiente método de objeto para el botón *bUnBoton* efectúa diferentes acc
| | |
| --- | --- |
| Número de comando | 543 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
index adcc2a91144d23..3a72fda6467652 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver el ejemplo del comando [HIDE MENU BAR](hide-menu-bar.md "HIDE MENU BAR").
| | |
| --- | --- |
| Número de comando | 431 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Prohibido en el servidor ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
index 18bddd33587255..d331cb1e657772 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
@@ -54,7 +54,7 @@ La variable sistema OK toma el valor 1 si el comando se ejecuta correctamente, d
| | |
| --- | --- |
| Número de comando | 922 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
index 30576291c96e22..da4dfebef385d8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ El siguiente ejemplo muestra un proceso llamado Clientes, que se ha ocultado pre
| | |
| --- | --- |
| Número de comando | 325 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
index 7da018c4dc8018..3bd2892bc5998c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte el ejemplo del comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número de comando | 433 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
index 60d7d678c11f5d..961a9e2399e26c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Consulte el ejemplo del comando [HIDE WINDOW](hide-window.md "HIDE WINDOW").
| | |
| --- | --- |
| Número de comando | 435 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
index 6170addc409a60..5d16d845da2100 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 17 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
index 0eb1c738d72eb4..9c7f644fc8fe53 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ El siguiente ejemplo devuelve el número de columnas de una fila en un array bid
| | |
| --- | --- |
| Número de comando | 274 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
index 961997f9981e64..82b953eb0bf5f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
@@ -192,6 +192,6 @@ Este ejemplo illustra los resultados de los diferentes tipos de declaraciones:
| | |
| --- | --- |
| Número de comando | 782 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
index d83b81f4d33ba2..b1c911b9574ef0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ Pase en el parámetro *numInfo* el número del tipo de información SOAP que qui
| | |
| --- | --- |
| Número de comando | 784 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
index 51fa9c3d9ea0fd..fdbc8d2dc17904 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
@@ -44,6 +44,6 @@ Desea rechazar cualquier solicitud nueva a su servidor de servicios web:
| | |
| --- | --- |
| Número de comando | 1636 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
index 99bb25236f8d05..dc882600c3a99b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
@@ -49,6 +49,6 @@ Regresando al ejemplo del servicio Web “Raiz\_cuadrada” de la descripción d
| | |
| --- | --- |
| Número de comando | 781 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
index b55c11724672d0..444fc2e577730e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ Usted visualiza los nombres de una tabla *\[Personas\]* en una ventana flotante.
| | |
| --- | --- |
| Número de comando | 229 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
index dfabfa670d6430..ae304f830af57b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
@@ -62,6 +62,6 @@ La lista se ve de esta forma:
| | |
| --- | --- |
| Número de comando | 391 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
index 483f10ee2e859e..fb2209ea95b031 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Adición de nombres propios al diccionario de usuario:
| | |
| --- | --- |
| Número de comando | 1214 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
index 09e665783e5660..7c5c714b67206d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ Queremos contar el número posible de errores en un texto:
| | |
| --- | --- |
| Número de comando | 1215 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
index 76192f09751c47..a4297f56162f95 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La verificación ortográfica comienza con la primera palabra del campo o variab
| | |
| --- | --- |
| Número de comando | 900 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
index b42d32b12fdd28..f3aada3ccb5d46 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar el lenguaje del diccionario actual:
| | |
| --- | --- |
| Número de comando | 1205 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
index fcbb5bd61f5100..3bcdf958832194 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Usted pone "fr-classic+reform1990.aff" y "fr-classic+reform1990.dic" como tambi
| | |
| --- | --- |
| Número de comando | 1204 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
index 34e6e14e85375a..62704a9608d0ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Carga del diccionario "fr-classic" presente en la carpeta Hunspell:
| | |
| --- | --- |
| Número de comando | 904 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
index cca9970ecd52e4..befc9d8b0ad865 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ El parámetro *separador* puede ser una cadena de múltiples caracteres:
| | |
| --- | --- |
| Número de comando | 1554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
index df2482e375bd3e..f3799933f4e7c7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 824 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
index f9a967d44950d4..aafd8fb8cb89d7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá en la variable 4D *vNombre* los nombres (ename) almacena
| | |
| --- | --- |
| Número de comando | 821 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
index 4bc3db66eeac89..13663217f630e0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
@@ -64,7 +64,7 @@ Si el script se ejecuta correctamente (no se encuentra ningún error), la variab
| | |
| --- | --- |
| Número de comando | 1089 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
index 04d8cc365a31d7..7377762d7963a6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1, de lo
| | |
| --- | --- |
| Número de comando | 820 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
index 3b97c821739965..f7fa704e8dcb6d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ Si la exportación se realiza correctamente, la variable OK toma el valor 1\. De
| | |
| --- | --- |
| Número de comando | 1065 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
index 2d38974b4b98ea..b6692a4a4a2fa6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Si la exportación se lleva a cabo correctamente, la variable *OK* toma el valor
| | |
| --- | --- |
| Número de comando | 1064 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
index 394c5900b76216..80a7b5dd10f67c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar la fuente de datos actual, generalmente antes de
| | |
| --- | --- |
| Número de comando | 990 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
index 56e8663b7e2233..1f6f102e77b65f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 989 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
index f0e0f85824b8fd..fa6550d5f0d69f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ Los dos últimos parámetros sólo se llenan cuando el error viene de la fuente
| | |
| --- | --- |
| Número de comando | 825 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
index 788bde5fc3d167..0e894f67c9775f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 819 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
index 326e636d1f6e7b..db728c9da818b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 822 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
index fbd3908c81102c..9a05a26e220b63 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
@@ -207,7 +207,7 @@ Si la conexión es exitosa, el variable sistema OK toma el valor 1; de lo contra
| | |
| --- | --- |
| Número de comando | 817 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
index 66bfdbb39a2240..a3729cd0514c44 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la conexión se cierra correctamente, la variable sistema OK toma el valor 1;
| | |
| --- | --- |
| Número de comando | 872 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
index 000c7376d75e68..93a69a8480c61f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
@@ -52,7 +52,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK devuelve 1\. De l
| | |
| --- | --- |
| Número de comando | 818 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
index 61429261abb826..78a8f58ee87f39 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
@@ -82,7 +82,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK devuelve 1\.
| | |
| --- | --- |
| Número de comando | 823 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
index 22fff9c966d92b..6f1b10c8dd6422 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Por ejemplo, Hipotenusa (4;3) devuelve 5.
| | |
| --- | --- |
| Número de comando | 539 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
index 77110f0ae12388..edcda33d4ee9ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
@@ -71,7 +71,7 @@ Usted desea actualizar las referencias incluidas en la selección de texto:
| | |
| --- | --- |
| Número de comando | 1285 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
index 570c9e85782c4c..73645e978feefa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
@@ -72,6 +72,6 @@ Usted quiere insertar la hora actual al inicio del texto y luego congelarla ante
| | |
| --- | --- |
| Número de comando | 1282 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
index bb66c7d7961ed2..ec520cd153ecf5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1094 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
index 70fa6f1aa9f96b..2e1317e48d0b3f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
@@ -106,7 +106,7 @@ Usted desea mostrar los comandos de un menú contextual basado en el tipo de con
| | |
| --- | --- |
| Número de comando | 1286 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
index 230c6021aa0293..485b793cb5c0bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ Usted quiere ejecutar un método 4D cuando se hace clic en un enlace de usuario:
| | |
| --- | --- |
| Número de comando | 1287 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
index 0baccc12b5a136..edaf245de61486 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Pase el código de la opción a leer en el parámetro *opcion*. El comando devue
| | |
| --- | --- |
| Número de comando | 1290 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
index 734df0c5353773..b37a826889fc80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
@@ -115,7 +115,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1092 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
index addc4767846508..1cedf5b04729b7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
@@ -66,7 +66,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1116 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
index 7df737d9d234ee..89d2770e27c264 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
@@ -75,6 +75,6 @@ Cuando hay un evento de doble clic, se comprueba que no existe en realidad una U
| | |
| --- | --- |
| Número de comando | 1288 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
index 3bbac0c3483031..79fcbd54a41a49 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
@@ -92,7 +92,7 @@ Desea reemplazar el texto seleccionado con el resultado de un método proyecto:
| | |
| --- | --- |
| Número de comando | 1281 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
index 9d3bd9fcc369db..2e9190f8da4f80 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ Usted desea insertar un enlace al sitio web de 4D para reemplazar el texto selec
| | |
| --- | --- |
| Número de comando | 1280 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
index 246e0b91695f2a..05b2f308c58a7d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
@@ -108,7 +108,7 @@ En caso de error, no cambia la variable. Cuando ocurre un error en una variable
| | |
| --- | --- |
| Número de comando | 1093 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
index e29beb7a8f99e7..9052566f5bcf13 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ El siguiente código permite cambiar el modo de visualización del área:
| | |
| --- | --- |
| Número de comando | 1289 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
index 2c57bdb6745e04..4166015b64f81c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ En caso de un error, la variable no cambia. Cuando se produce un error en una va
| | |
| --- | --- |
| Número de comando | 1136 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
index 0c735699477514..65a3ec38160645 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Consulte el ejemplo del comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número de comando | 1115 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
index 77243cca66b97d..1ddc9b47b7f309 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Desea iniciar/detener la supervisión y revisión de los datos 4D y las activida
| | |
| --- | --- |
| Número de comando | 1712 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
index d39a9af5d1bc54..9925c40d0950b0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si el servidor SQL ha sido lanzado correctamente, la variable sistema OK toma el
| | |
| --- | --- |
| Número de comando | 962 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
index 3be6ad72e16b0b..634d420f770faa 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir de la versión 11 de 4D, puede anidar varias transacciones (subtransacc
| | |
| --- | --- |
| Número de comando | 239 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
index 5d6241742a66c7..15202b25e2e620 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
@@ -66,6 +66,6 @@ Este ejemplo obtiene la desviación estándar de una serie de valores ubicados e
| | |
| --- | --- |
| Número de comando | 26 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
index 10ca06684a1276..49a6812f049ec6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver ejemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número de comando | 1721 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
index 820c6676ac2a52..f25763b8b15e3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Si el servidor SQL ha sido lanzado, todas las conexiones SQL se interrumpen y el
| | |
| --- | --- |
| Número de comando | 963 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
index 846fe60afb5beb..124540d8d51a41 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este ejemplo muestra una forma estándar de establecer valores de **Almacenamien
| | |
| --- | --- |
| Número de comando | 1525 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
index 291d820dcbff3b..3f93cbb2911178 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
@@ -48,7 +48,7 @@ Si se encuentra el recurso, la variable sistema OK toma el valor 1, de lo contra
| | |
| --- | --- |
| Número de comando | 511 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
index b58aaa0fd80ec0..d5d653cd7d73a9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
@@ -73,6 +73,6 @@ El siguiente ejemplo puede utilizarse para saber si el método se llama desde un
| | |
| --- | --- |
| Número de comando | 489 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
index 9bbab6a88d5d13..b836b4caf08b54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
@@ -69,6 +69,6 @@ El siguiente método de proyecto añade los párrafos que se encuentran en el te
| | |
| --- | --- |
| Número de comando | 12 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
index 12d31b843e1e8b..43735782766a0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
@@ -68,6 +68,6 @@ La función Subtotal es necesaria para mostrar valores en un formulario.
| | |
| --- | --- |
| Número de comando | 97 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
index 4b254fda959543..2c23dd908a6f54 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Este ejemplo permite obtener la suma de cuadrados de los valores ubicados en un
| | |
| --- | --- |
| Número de comando | 28 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
index 67ffb1efc875f6..65b089cf3c2cf3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
@@ -78,7 +78,7 @@ Para un ejemplo de cálculo de un atributo campo de objeto, consulte el ejemplo
| | |
| --- | --- |
| Número de comando | 1 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
index 7bae8e486b87df..0949caa52a8a7b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para más información, por favor consulte la sección *Suspender las transaccio
| | |
| --- | --- |
| Número de comando | 1385 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
index 58e9afe1ed483e..0fff40af1fa796 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
@@ -57,6 +57,6 @@ El siguiente ejemplo puede utilizarse para mostrar “Hello World” en una imag
| | |
| --- | --- |
| Número de comando | 1017 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
index a16b72ac2e632a..a450a890bba3fc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -56,7 +56,7 @@ Si *objetoImagen* no contiene una imagen SVG válida, el comando devuelve una ca
| | |
| --- | --- |
| Número de comando | 1054 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
index bb82745010a74a..f422a0701f6013 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ Todos los elementos cuyo rectángulo circundante está en intersección con el r
| | |
| --- | --- |
| Número de comando | 1109 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
index 4fe3929840e502..0032e8a67102ee 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ Para obtener más información acerca de los atributos SVG, consulte la descripc
| | |
| --- | --- |
| Número de comando | 1056 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
index 27ecafb4f61dff..2b1523646f0edf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
@@ -101,7 +101,7 @@ Modificación del contenido de un elemento de tipo texto:
| | |
| --- | --- |
| Número de comando | 1055 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
index bee50479ac19a3..6ef1f779a7e72c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1108 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
index b4e1d0b56e7383..1bdf46f640871f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
@@ -55,6 +55,6 @@ Si omite el parámetro *tipo*, la función devolverá la ruta a la carpeta siste
| | |
| --- | --- |
| Número de comando | 487 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
index 8cb80d2895a3c1..cd908c4de509fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ devuelve un objeto que contiene la siguiente información:
| | |
| --- | --- |
| Número de comando | 1571 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
index 6bfbcec56ce28b..ac4e3f4284a505 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Este método de mantenimiento permite solicitar la compactación del archivo de
| | |
| --- | --- |
| Número de comando | 1127 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
index 913eea47fd94d9..a2f436b5362bb7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ El siguiente es un ejemplo de un método genérico que muestra los registros de
| | |
| --- | --- |
| Número de comando | 256 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
index ed2d74dc40460d..ccde044035fc25 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
@@ -67,6 +67,6 @@ Este ejemplo, la variable *numTabla* es igual al número de la tabla a la cual p
| | |
| --- | --- |
| Número de comando | 252 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
index 88b5290f809172..43b0431c1915e6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 19 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
index 59831890334e8f..46b1189e03d313 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver el ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard
| | |
| --- | --- |
| Número de comando | 486 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
index 47b983c0950a47..f762edfc8e7cb0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ El siguiente ejemplo prueba la presencia del documento “Diario” en la carpet
| | |
| --- | --- |
| Número de comando | 476 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
index 5c352f02e9a98c..e0df78b2ec0673 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
@@ -48,6 +48,6 @@ El siguiente ejemplo le permite conocer el estado de un proceso (en nuestro caso
| | |
| --- | --- |
| Número de comando | 652 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
index 34431ed89f7264..970eac0a679ad2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ Debe imprimir en un área de 400 píxeles de largo un texto de un máximo de 80
| | |
| --- | --- |
| Número de comando | 1149 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
index 7a0d6bfadd727f..d7822a312bc04a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
@@ -112,6 +112,6 @@ Después de la ejecución este código:
| | |
| --- | --- |
| Número de comando | 554 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
index d40093c987bcab..a639d8f5838eb6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ Ejemplo que permite al usuario indicar la ubicación del archivo a crear:
| | |
| --- | --- |
| Número de comando | 1237 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
index bd403da2a0d3a5..084b3549afc3ab 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número de comando | 1805 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
index 88af704b1dd256..60cc927c4ce026 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver el ejemplo del comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número de comando | 458 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
index 26a06d97bf15b1..0b66c6ad0f23ff 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ El siguiente muestra una caja de alerta con el mensaje, “46 800 segundos repre
| | |
| --- | --- |
| Número de comando | 180 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
index f12d4601d9e44a..0bfe08f5b4928b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
@@ -57,6 +57,6 @@ Puede expresar todo valor numérico como una hora:
| | |
| --- | --- |
| Número de comando | 179 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
index abe2b9c01a1188..f08ae115507020 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número de comando | 1445 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
index b4ff4f19a3d7d5..7052c47a9b689b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Si no se muestra ninguna barra de herramientas, el comando devuelve 0.
| | |
| --- | --- |
| Número de comando | 1016 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
index d33797327491ca..2f0664e2f79e3b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
@@ -66,6 +66,6 @@ El método de proyecto DEBUG se lista aquí:
| | |
| --- | --- |
| Número de comando | 157 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
index 341f0664c10fe7..e00b775be2ac22 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 961 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
index dd796725369bf6..1287d6fe05b6db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
@@ -78,6 +78,6 @@ Este es un ejemplo de corte de una imagen (la imagen se muestra en el formulario
| | |
| --- | --- |
| Número de comando | 988 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
index 9dbcd5d1ade2d5..6c4c35f3200770 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
@@ -59,6 +59,6 @@ Utilice el comando **Trigger event** para estructurar sus triggers de esta maner
| | |
| --- | --- |
| Número de comando | 369 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
index c537aea2ad2c6e..57cddda90b1045 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para mayor información sobre niveles de ejecución, consulte el tema *Triggers
| | |
| --- | --- |
| Número de comando | 398 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
index d40264612c8fa6..ac12e054092ee8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
@@ -44,6 +44,6 @@ El número de tabla y de registro para el registro relacionado por el evento de
| | |
| --- | --- |
| Número de comando | 399 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
index 132fbf9ea6cafb..37c1333d0e0137 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 214 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
index af06e993c912f0..dbd23816d557db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ El siguiente ejemplo ilustra la manera cómo Trunc funciona con diferentes argum
| | |
| --- | --- |
| Número de comando | 95 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
index 8ae153457ba3b0..563b5e31d731e1 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
@@ -45,7 +45,7 @@ Si el comando se ha ejecutado correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 1051 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
index f1f68521f81824..6f09059b95d7f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
@@ -146,6 +146,6 @@ Ver ejemplo del comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número de comando | 295 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
index db1570d9e340b3..8381f4e430c52e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
@@ -66,6 +66,6 @@ Aquí están los diferentes resultados del comando [Undefined](undefined.md) as
| | |
| --- | --- |
| Número de comando | 82 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
index f64f042f7f01d7..abf63489f22276 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
@@ -56,6 +56,6 @@ Este ejemplo añade registros al conjunto de mejores clientes. Los registros se
| | |
| --- | --- |
| Número de comando | 120 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
index d521773972d051..7962a54dc030e8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Si un registro tiene una cantidad importante de datos, de campos de imagen, o de
| | |
| --- | --- |
| Número de comando | 212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
index 2479ff7ccfa7ee..1c3626749cb87e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ Si el cliente es dado de baja correctamente, la variable sistema OK toma el valo
| | |
| --- | --- |
| Número de comando | 649 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
index 075fcde1fc7e1e..86cea63b5a1736 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Ver el ejemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número de comando | 13 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
index 41c1c1597dcedb..bf37b378bf5968 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
@@ -57,7 +57,7 @@ La variable sistema OK toma el valor 1 si el mapa se carga correctamente, de lo
| | |
| --- | --- |
| Número de comando | 205 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
index 74e57f4f3589cd..c68c7ec4401df6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ Recuerde que una selección temporal es una representación de una selección de
| | |
| --- | --- |
| Número de comando | 332 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
index fec48dc80420e3..b139afbaecbee7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ El siguiente ejemplo utiliza [LOAD SET](load-set.md "LOAD SET") para cargar un c
| | |
| --- | --- |
| Número de comando | 118 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica el registro actual ||
| Modifica la selección actual ||
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
index c85a8365659435..f1bf6f7a015a4e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
@@ -46,6 +46,6 @@ El siguiente ejemplo busca facturas específicas. Si el usuario actual está en
| | |
| --- | --- |
| Número de comando | 338 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
index 3d8db1ed51c09a..bc1636160d1f15 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ Este concepto permite conservar un backup de usuarios en la base e implementar u
| | |
| --- | --- |
| Número de comando | 849 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
index d1c5f6e83e4afa..4b57212f3153f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ En el [Método base On 4D Mobile Authentication](metodo-base-on-4d-mobile-authen
| | |
| --- | --- |
| Número de comando | 638 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
index 65394261a812eb..259c9a91413159 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Tenga en cuenta que cuando OK toma el valor 0, la transacción automáticamente
| | |
| --- | --- |
| Número de comando | 240 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
index 87966b5a835563..746db1b2d3482a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ Desea obtener la suma de todos los valores numéricos en una colección:
| | |
| --- | --- |
| Número de comando | 1509 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
index 29099182262fb9..38116610f4a6f5 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
@@ -142,7 +142,7 @@ Después de añadir estos métodos a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 532 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
index afbea109c5cd52..a8887174593e9e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
@@ -64,6 +64,6 @@ El siguiente ejemplo lee un array proceso desde el proceso indicado por *$vlProc
| | |
| --- | --- |
| Número de comando | 635 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
index 0e040ac9cd72e7..c9565ece11d2cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Este ejemplo permite obtener la varianza de valores ubicados en un array:
| | |
| --- | --- |
| Número de comando | 27 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
index 505272c4038fe0..192eee9ff2783a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 1008 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
index 251b195c1212ad..8c115f9fefc78a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
@@ -175,5 +175,5 @@ Si el método de retrollamada no existe, la verificación no se efectúa, se gen
| | |
| --- | --- |
| Número de comando | 939 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
index d19802bb6125b7..c31b3b2b951d56 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Este ejemplo verifica un hash de contraseña creado previamente por [Generate pa
| | |
| --- | --- |
| Número de comando | 1534 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
index 1c79b1998b6336..3647b89cab617a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prueba permite ejecutar código diferente dependiendo de que versión es un
| | |
| --- | --- |
| Número de comando | 495 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
index f1fd611a074b5b..35947bd4b0785c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ Una vez se añade este método de proyecto a su aplicación, puede escribir:
| | |
| --- | --- |
| Número de comando | 472 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
index ec91e4644b2365..42597756819530 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ Utilizando un área de desplazamiento llamada *atVolumenes,* usted quiere mostra
| | |
| --- | --- |
| Número de comando | 471 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
index e8423fa3e9c71e..85a1c300c96d38 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1026 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
index dcb8ff465efb3b..5a19d5dbf6cb0f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ El siguiente código puede estar asociado con un botón 3D con menú pop up llam
| | |
| --- | --- |
| Número de comando | 1049 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
index e66d96a9c90dda..088d2ba979584d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
@@ -108,6 +108,6 @@ Luego puede evaluar el código JavaScript desde 4D:
| | |
| --- | --- |
| Número de comando | 1029 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
index 7ff47bcdbbecac..3a16e4e9637350 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ La función JavaScript "getCustomerInfo" recibe un número ID como parámetro y
| | |
| --- | --- |
| Número de comando | 1043 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
index 01a82e9f847648..4e2ba3faf845bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ El comando devuelve [True](true.md "True") si existe un URL y de lo contrario [F
| | |
| --- | --- |
| Número de comando | 1027 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
index a24ef0befa5050..b36c04ce75ee23 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ La página mostrada es el URL "www.apple.com" y la página "www.4dhispano.com" e
| | |
| --- | --- |
| Número de comando | 1025 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
index 9b96ce204634ea..fb276ef6fda5d0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET EXTERNAL LINKS FILTERS](wa-set
| | |
| --- | --- |
| Número de comando | 1033 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
index 1183a1dcd95028..203ea99a6709c0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ Es recomendable llamar este comando en el contexto de los eventos de formulario
| | |
| --- | --- |
| Número de comando | 1035 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
index 27fa68327ed12d..675fb0788f1727 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
@@ -44,6 +44,6 @@ Es recomendable llamar este comando dentro del marco del evento de formulario On
| | |
| --- | --- |
| Número de comando | 1034 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
index c92b8eb32a937f..a1bf223074d66b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si el contenido de la página actual no
| | |
| --- | --- |
| Número de comando | 1038 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
index f60f1029a02a8c..62bdd7032329c8 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Este comando devuelve una cadena vacía si no hay título disponible para el URL
| | |
| --- | --- |
| Número de comando | 1036 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
index bcf2b39022b942..eca215102639ef 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
@@ -39,6 +39,6 @@ Pase en el parámetro *valor* una variable que recibirá el valor actual de la p
| | |
| --- | --- |
| Número de comando | 1042 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
index 5cbc584289205e..daae4cf3b68a72 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Los filtros son instalados por el comando [WA SET URL FILTERS](wa-set-url-filter
| | |
| --- | --- |
| Número de comando | 1031 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
index b68ffc1eb074ea..88f86d793e1cc6 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ Si se pasa, el parámetro *arrTitulos* contiene la lista de los nombres de venta
| | |
| --- | --- |
| Número de comando | 1048 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
index 82c33bf8055884..796bc63776afd0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ Si no hay un URL precedente, el comando no hace nada. Puede probar la disponibil
| | |
| --- | --- |
| Número de comando | 1021 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
index 775aa8d125320f..a1b035e0f3d65a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ Si no hay un URL siguiente (es decir, si el usuario no ha regresado al URL anter
| | |
| --- | --- |
| Número de comando | 1022 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
index e05c9a7e849f25..867332de00a1de 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Es equivalente a:
| | |
| --- | --- |
| Número de comando | 1020 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
index cac340caaf37f9..77596b6e344e7c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1736 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
index 507747793b7dc3..7e88fe4ad9bf3c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1023 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
index 4a48cab2e6e736..aaf83864a4bf91 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
@@ -102,7 +102,7 @@ La variable del sistema OK se define en 0 si se ha alcanzado el tiempo de espera
| | |
| --- | --- |
| Número de comando | 1727 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
index 4cd2c2c30ff879..997f3ae976d222 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
@@ -80,6 +80,6 @@ Este ejemplo combina los filtros de sitios y de enlaces externos:
| | |
| --- | --- |
| Número de comando | 1032 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
index 0dbd5c2b7450c5..14a623d6123415 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
@@ -51,6 +51,6 @@ Mostrar la frase "¡Hola mundo!" y definición de un URL de base "file:///" base
| | |
| --- | --- |
| Número de comando | 1037 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
index 069f5b3cc91edd..6a7e674213a026 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ Para activar la URL suéltela en el área web 'myarea':
| | |
| --- | --- |
| Número de comando | 1041 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
index 301ead144729c9..d9d6961127a731 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
@@ -161,6 +161,6 @@ Usted quiere negar el acceso a direcciones IP específicas:
| | |
| --- | --- |
| Número de comando | 1030 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
index c6c78cf8aeb8bf..972626d84cc959 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número de comando | 1024 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
index a93619b3554cbd..2c9900da9fd662 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1039 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
index b087afb0fefe89..41a5d9418e6af7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Bajo Windows, el alcance de este comando es global: la configuración se conserv
| | |
| --- | --- |
| Número de comando | 1040 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
index 81c86f791d37c5..4cc17822b5a935 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte el ejemplo del comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número de comando | 1211 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
index 0ba030d663fcef..c24430e8ebe84f 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Este es el código del método GetFile:
| | |
| --- | --- |
| Número de comando | 1212 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
index 5cd5f81b7fc506..7b7d416d3e0e3a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si este comando se llama fuera del contexto de una sesión web, devuelve una cad
| | |
| --- | --- |
| Número de comando | 1162 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
index 8abfb6da484aec..7cb8269fd4e4cc 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Cuando el formulario se envia al servidor web, la variable $textoSolicitud recib
| | |
| --- | --- |
| Número de comando | 814 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
index fe5c31dfdcc6cf..491cc17f297710 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
@@ -124,6 +124,6 @@ On Web Connection):
| | |
| --- | --- |
| Número de comando | 697 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
index 8ad5defd352c28..833cd7b2de083c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Cuando utiliza el *selector* Web debug log, puede recibir una de las siguientes
| | |
| --- | --- |
| Número de comando | 1209 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
index d5de85b04ffdd4..c2e695fb2467d3 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
@@ -134,6 +134,6 @@ Después de ejecutar el siguiente código:
| | |
| --- | --- |
| Número de comando | 1531 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
index 0e660647d8dba7..91cf0d48f6570d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
@@ -65,6 +65,6 @@ Puede enviar la página "stats.shtm" utilizando un enlace URL o utilizando el co
| | |
| --- | --- |
| Número de comando | 658 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
index 035f5bcb4ba7fa..61931876a975f9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
@@ -70,6 +70,6 @@ La variable vNOMBRE contiene ROBERTO y vCIUDAD contiene PARIS.
| | |
| --- | --- |
| Número de comando | 683 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
index 1130d0abef850b..0b896843de599c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por ejemplo, rechazar los intentos de conexión en modo no
| | |
| --- | --- |
| Número de comando | 698 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
index 298cd294c4b4f8..2867d8d1f6cadb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Usted quiere verificar que el servidor web se está ejecutando:
| | |
| --- | --- |
| Número de comando | 1313 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
index d27bfb964bd8c2..1a12efddb780cf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Después de la ejecución de este comando, si un cliente web envía una petició
| | |
| --- | --- |
| Número de comando | 1208 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
index e50d714a8e664f..1d8fe87e12fea0 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ El parámetro *fechaVenc* recibe la fecha de vencimiento y el parámetro *horaVe
| | |
| --- | --- |
| Número de comando | 1207 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
index 328aea1c3d3637..2a80d09aa87f12 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
@@ -43,6 +43,6 @@ Consulte el ejemplo de la rutina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número de comando | 654 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
index 670c6171602d73..23fa695975f479 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
@@ -56,7 +56,7 @@ Si el archivo a enviar existe y si el timeout no ha pasado, OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 619 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
index 4ab1872991f1ee..291533f39731fe 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ En el [On Web Connection](./on-web-connection-database-method.md), inserte el si
| | |
| --- | --- |
| Número de comando | 659 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
index 0b0996e4c0207f..f0c55bc8517f0a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
@@ -87,6 +87,6 @@ Este ejemplo ilustra el uso de la opción chunked con el comando **WEB SEND RAW
| | |
| --- | --- |
| Número de comando | 815 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
index f3572dfb85ce77..8264b5c19b2ef9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
@@ -50,6 +50,6 @@ El siguiente método:
| | |
| --- | --- |
| Número de comando | 677 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
index 9b101f70af9f06..a2ba19d81648ce 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ Autenticación con un servicio web ubicado detrás de un proxy:
| | |
| --- | --- |
| Número de comando | 786 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
index 579b0882ccc254..f61b5a418b60d4 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
@@ -167,7 +167,7 @@ Si la petición se enruta correctamente y el servicio web la acepta, la variable
| | |
| --- | --- |
| Número de comando | 778 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
index cd1ffd9db35e5e..fb2635e1cff8f2 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
@@ -36,6 +36,6 @@ Se devuelve una cadena vacía cuando no hay información disponible, en particul
| | |
| --- | --- |
| Número de comando | 780 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
index f0c3ba05cb6e97..cef03e9d4ac8d9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
@@ -53,6 +53,6 @@ Imagine un servicio web que devuelve la hora actual en cualquier ciudad del mund
| | |
| --- | --- |
| Número de comando | 779 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
index a1c472a564463e..116c9504910a67 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
@@ -68,6 +68,6 @@ Utilización de la versión 1.2 del protocolo SOAP:
| | |
| --- | --- |
| Número de comando | 901 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
index 557e0434c1b28c..df6e47c370673d 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
@@ -78,6 +78,6 @@ Este ejemplo define dos parámetros:
| | |
| --- | --- |
| Número de comando | 777 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
index 4fba27a8756267..c390325110e3bd 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Para no enviar *pagInicio* como página de inicio para el proceso web actual, ej
| | |
| --- | --- |
| Número de comando | 639 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
index af1e6776c955e6..fa29a8f8ca7104 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
@@ -71,6 +71,6 @@ Los campos **Date** y **Content-Length** siempre son definidos por defecto por 4
| | |
| --- | --- |
| Número de comando | 660 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
index b6dfff24ec09f3..2d9b336087f0a7 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
@@ -86,6 +86,6 @@ Una entrada registrada se ve así:
| | |
| --- | --- |
| Número de comando | 5 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
index b1b00c69c26f8b..75143692a6a367 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
@@ -44,7 +44,7 @@ Si especifica una ruta de acceso invalida, se generará un error del administrad
| | |
| --- | --- |
| Número de comando | 634 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | error |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
index 9151137c4193ca..de531f67c5c726 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si el servidor web se inicia correctamente, OK toma el valor *1*; de lo contrari
| | |
| --- | --- |
| Número de comando | 617 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
index b5f085b99eaba9..c4715951c1d3db 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si el servidor web no se ha iniciado, el comando no hace nada.
| | |
| --- | --- |
| Número de comando | 618 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
index df247498ec4412..07c5411d3a6c9b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Ejemplo de método de base On Web Authentication en modo Digest:
| | |
| --- | --- |
| Número de comando | 946 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
index 671ac6aa3f3fa8..33b33489cb2050 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [WINDOW LIST](window-list.md "WINDOW LIST").
| | |
| --- | --- |
| Número de comando | 445 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
index 958d3bae9dc56b..cf3d8181d4d1bb 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ El siguiente método de proyecto coloca en mosaico todas las ventanas abiertas a
| | |
| --- | --- |
| Número de comando | 442 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
index 1a34c745ae6c91..69716dc09d0456 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Si omite el parámetro *ventana*, Window process devuelve el número del proceso
| | |
| --- | --- |
| Número de comando | 446 |
-| Hilo seguro | ✗ |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
index 4e9ca076b6daf1..d82095a479721c 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 563 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
index 7ccb9dc3f99fa5..cd0de2e960a0bf 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Ver el ejemplo del comando [Shift down](shift-down.md "Shift down").
| | |
| --- | --- |
| Número de comando | 562 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
index 7e6f4e08db969e..193717f7418f33 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
@@ -56,7 +56,7 @@ Si la ejecución del comando es correcta, la variable sistema Document contiene
| | |
| --- | --- |
| Número de comando | 680 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK, Document |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
index 3ab05a4697429f..c9a68d73dd286b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
@@ -82,6 +82,6 @@ Ejemplo del documento XML:
| | |
| --- | --- |
| Número de comando | 1091 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
index f419f46e4da9d3..4ff38edb074260 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Si el comando se ejecuta correctamente, la variable sistema OK toma el valor 1\.
| | |
| --- | --- |
| Número de comando | 732 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
| Modifica variables | OK |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
index 01d1b65f51bf9c..a0a1addec1989e 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ En *selector*, pase una de las constantes del tema *XML* indicando la opción a
| | |
| --- | --- |
| Número de comando | 1096 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
index 765ce7f7c054a2..0196480abda425 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
@@ -75,6 +75,6 @@ Inserción de una imagen SVG:
| | |
| --- | --- |
| Número de comando | 1090 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
index 5602f35fc14ee8..0f60540e3c81b9 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Ver el ejemplo del comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número de comando | 25 |
-| Hilo seguro | ✓ |
+| Hilo seguro | yes |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/license-info.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/license-info.md
index c0840cd6de402c..eb7f91af01870b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/license-info.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parámetros | Tipo | | Descripción |
| ---------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Información sobre la licencia activa |
+| Resultado | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ Desea obtener información sobre su licencia actual de 4D Server:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
index e0fe65323178a0..2e5319d735ae2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,7 +49,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
+| lk hor scrollbar height | 3 | Altura en píxeles (solo se puede leer)
Aplica a: List box |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ En el parámetro *property*, pase una constante que indique la propiedad cuyo va
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Ancho en píxeles (solo se puede leer)
Aplica a: List box |
\* These properties only apply to list box columns; if you pass a list box as parameter with one of these properties, **LISTBOX Get property** returns -1, or an empty string, depending on the *property* passed.
@@ -105,9 +104,9 @@ Dado un list box "MyListbox", si ejecuta la siguiente instrucción:
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 917 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | --- |
+| Número de comando | 917 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
index 26236b6a1d6836..eb6d6ae50ce942 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk column max width | 26 | Propiedad **[Ancho Máximo](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
Se aplica a: Columna \* |
| lk column min width | 25 | Propiedad **[Ancho mínimo](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
Se aplica a: Columna \* |
| lk column resizable | 15 | Propiedad **[Redimensionable](../FormObjects/properties_ResizingOptions.md#resizable)**
Se aplica a: columna \*
Valores posibles:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | Propiedad **[Nombre formulario detallado](../FormObjects/properties_ListBox.md#detail-form-name)** para list box de tipo selección
Se aplica a: List box |
| lk display footer | 8 | Propiedad **[Mostrar pies de página](../FormObjects/properties_Footers.md#display-footers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
| lk display header | 0 | Propiedad **[Mostrar encabezados](../FormObjects/properties_Headers.md#display-headers)**
Se aplica a: list box
Valores posibles:
lk no (0): oculto
lk yes (1): mostrado |
@@ -47,21 +49,17 @@ En los parámetros *property* y *value*, usted indica, respectivamente, la propi
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura en píxeles |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
| lk named selection | 28 | **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** property for selection type list box
Applies to: List box |
| lk resizing mode | 11 | **[Column Auto-Resizing](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)** property
Applies to: List box
Possible values:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unit of **[Row Height](../FormObjects/properties_CoordinatesAndSizing.md#row-height)** property
Applies to: List box
Possible values:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
| lk selection mode | 10 | **[Selection Mode](../FormObjects/properties_ListBox.md#selection-mode)** property
Applies to: List box
Possible values:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Ancho en píxeles |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
\* These properties can only be applied to list box columns; however, if you pass a list box as parameter, **LISTBOX SET PROPERTY** applies the *property* to each column of the list box.
@@ -90,9 +88,9 @@ Desea definir un ancho máximo para la columna cuyo nombre es "ProductNumber":
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1440 |
-| Hilo seguro | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1440 |
+| Hilo seguro | no |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/session.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/session.md
index c7a55da29c5d8a..52f39a41c501ba 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/session.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## Descripción
-El comando `Session` devuelve el objeto `Session` correspondiente a la sesión usuario actual.
+The `Session` command returns the `Session` object corresponding to the current session.
-Dependiendo del proceso desde el que se llame al comando, la sesión de usuario actual puede ser:
+Dependiendo del proceso desde el que se llame al comando, la sesión actual puede ser:
- una sesión web (cuando las [sesiones escalables están activadas](WebServer/sessions.md#enabling-web-sessions)),
-- una sesión de cliente remoto,
-- la sesión de procedimientos almacenados,
-- la sesión del ***Print form*** en una aplicación independiente.
+- una sesión de cliente remoto (en el servidor),
+- una sesión de procedimientos almacenados,
+- a standalone session.
Para obtener más información, consulte el párrafo [Tipos de sesion](../API/SessionClass.md#session-types).
-Si el comando se llama desde un contexto no soportado (por ejemplo, sesiones escalables desactivadas), devuelve *Null*.
+El comando devuelve *Null* si:
-## Sesiones web
+- se llama en un proceso web y se desactivan las sesiones escalables en el servidor web,
+- se llama en un 4D remoto.
+
+### Sesiones web
El objeto `Session` de las sesiones web está disponible desde cualquier proceso web:
@@ -51,7 +54,7 @@ El objeto `Session` de las sesiones web está disponible desde cualquier proceso
Para más información sobre las sesiones usuario web, consulte la sección [Sesiones web](../WebServer/sessions.md).
-## Sesiones de cliente remoto
+### Sesiones de cliente remoto
El objeto `Session` de las sesiones cliente remotas está disponible desde:
@@ -60,21 +63,48 @@ El objeto `Session` de las sesiones cliente remotas está disponible desde:
- ORDA [funciones del modelo de datos](../ORDA/ordaClasses.md) (excepto las declaradas con la palabra clave [`local`](../ORDA/ordaClasses.md#local-functions),
- Los métodos base `On Server Open Connection` y `On Server Shutdown Connection` de la base de datos.
-Para más información sobre las sesiones usuario remoto, por favor consulte el párrafo [**Sesiones usuario cliente remoto**](../Desktop/clientServer.md#remote-user-sessions).
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## Sesión de procedimientos almacenados
+### Sesión de procedimientos almacenados
Todos los procesos de procedimientos almacenados comparten la misma sesión virtual de usuario. El objeto `Session` de los procedimientos almacenados está disponible desde:
- métodos llamados con el comando [`Execute on server`](../commands-legacy/execute-on-server.md),
- Los métodos base `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown` y `On System event`
-Para obtener información sobre la sesión de usuario virtual de los procedimientos almacenados, consulte la página [4D Server y lenguaje 4D](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html).
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
-## Sesión independiente
+### Sesión independiente
El objeto `Session` está disponible desde cualquier proceso en aplicaciones independientes (monousuario) para que pueda escribir y probar su código cliente/servidor utilizando el objeto `Session` en su entorno de desarrollo 4D.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+### `Session` y componentes
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Ejemplo
Ha definido el método `action_Session` con el atributo "Disponible a través de etiquetas 4D y URLs". Se llama al método introduciendo la siguiente URL en el navegador:
@@ -84,13 +114,13 @@ IP:port/4DACTION/action_Session
```
```4d
- //método action_Session
+ //action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //llamando a la función hasPrivilege
- WEB SEND TEXT("4DACTION --> Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
WEB SEND TEXT("4DACTION --> Session is null")
@@ -100,15 +130,16 @@ IP:port/4DACTION/action_Session
## Ver también
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## Propiedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1714 |
-| Hilo seguro | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1714 |
+| Hilo seguro | sí |
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/theme/Collections.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/theme/Collections.md
index 4f096364d18748..8efa32f280a911 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/theme/Collections.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/theme/Collections.md
@@ -1,7 +1,7 @@
---
id: Collections_theme
-title: Collections
-sidebar_label: Collections
+title: Colecciones
+sidebar_label: Colecciones
slug: /commands/theme/Collections
---
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-event.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-event.md
index d152985e83fc99..c03fa27385aa2b 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-event.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-event.md
@@ -29,9 +29,9 @@ El objeto devuelto contiene las siguientes propiedades:
| caller | | string | [Server-side reference](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview#data-access-category) of the component triggering the event |
| eventType | | string | Type of event:onbluronfocusonclickonauxclickonmouseenteronmouseleaveonkeyuponkeydownonchangeunloadonload - triggered when the `Page` loads |
| data | | object | Información adicional en función del componente implicado |
-| | index | number | Tabs component: index of the tab (indexing starts at 0)Data Table component: column number |
+| | index | number | Componente Pestañas: índice de la pestaña (la indexación comienza en 0)Componente de la tabla de datos: número de columna |
| | row | number | Componente de la tabla de datos: número de línea |
-| | name | string | Data Table component: qodlysource name of the column (e.g. "firstname", "address.city") |
+| | name | string | Componente Data Table: nombre qodlysource de la columna (por ejemplo, "firstname", "address.city") |
#### Ejemplo
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-form.md b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-form.md
index 11a368e5bc0f4d..320e9799280d06 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-form.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/commands/web-form.md
@@ -20,11 +20,11 @@ The `Web Form` command returns a `4D.We
:::info
-Keep in mind that a `4D.WebForm` object is a **proxy object**, and not a direct reference to the web form object itself. As a consequence for example, the `4D.WebForm` object does not expose all Page properties in the Debugger.
+Keep in mind that a `4D.WebForm` object is a **proxy object**, and not a direct reference to the web form object itself. Como consecuencia, por ejemplo, el objeto `4D.WebForm` no expone todas las propiedades de la página en el depurador.
:::
-Each property of the returned object is an object of the [4D.WebFormItem](../API/WebFormItemClass.md) class.
+Cada propiedad del objeto devuelto es un objeto de la clase [4D.WebFormItem](../API/WebFormItemClass.md).
The command returns `null` if it is called in a request that does not originate from Qodly Studio.
diff --git a/i18n/es/docusaurus-plugin-content-docs/version-21/settings/web.md b/i18n/es/docusaurus-plugin-content-docs/version-21/settings/web.md
index 6cea9f5a1781b0..b53f83b2e1384a 100644
--- a/i18n/es/docusaurus-plugin-content-docs/version-21/settings/web.md
+++ b/i18n/es/docusaurus-plugin-content-docs/version-21/settings/web.md
@@ -294,7 +294,7 @@ Inicia y detiene el servidor REST. Ver [Configuración del servidor REST](../RES
:::
-See [Users and sessions](../REST/authUsers.md) to know the recommended way to control and manage REST access in your 4D projects.
+Ver [Usuarios y sesiones](../REST/authUsers.md) para conocer la forma recomendada de controlar y administrar el acceso REST en sus proyectos 4D.
#### Activar la autenticación REST mediante la función ds.authentify()
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/BlobClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/BlobClass.md
index 5293fd8ff2291d..db85206bf4f830 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/BlobClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/BlobClass.md
@@ -27,10 +27,11 @@ La classe Blob vous permet de créer et de manipuler des [objets blob](../Concep
-| Paramètres | Type | | Description |
-| ---------- | ------------------------------- | :-------------------------: | ------------------------------- |
-| blob | Blob ou 4D.Blob | -> | Blob pour copie |
-| Résultat | 4D.Blob | <- | Nouveau 4D.Blob |
+| Paramètres | Type | | Description |
+| ---------- | ----------------------- | :-------------------------: | ------------------------------- |
+| blobScal | Blob | -> | Blob pour copie |
+| blobObj | 4D.Blob | -> | Blob pour copie |
+| Résultat | 4D.Blob | <- | Nouveau 4D.Blob |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/CollectionClass.md
index 5bc241cd9071ec..4d639d4f34ab75 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/CollectionClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/CollectionClass.md
@@ -493,11 +493,11 @@ Si la collection contient des objets, vous pouvez passer le paramètre *property
-| Paramètres | Type | | Description |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------- |
-| value | Text, Number, Boolean, Date, Object, Collection | -> | Valeur à compter |
-| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
-| Résultat | Real | <- | Nombre d'occurrences de la valeur |
+| Paramètres | Type | | Description |
+| ------------ | ---- | :-------------------------: | --------------------------------------------------------------- |
+| value | any | -> | Valeur à compter |
+| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
+| Résultat | Real | <- | Nombre d'occurrences de la valeur |
@@ -859,12 +859,12 @@ $c2:=$c.extract("name";"City";"zc";"Zip") //$c2=[{Zip:35060},{City:null,Zip:3504
-| Paramètres | Type | | Description |
-| ---------- | ----------------------------------------------- | :-------------------------: | ------------------------------------------------------ |
-| value | Number, Text, Object, Collection, Date, Boolean | -> | Valeur de remplissage |
-| startFrom | Integer | -> | Indice l'élément de départ (inclus) |
-| end | Integer | -> | Indice de fin (non inclus) |
-| Résultat | collection | <- | Collection d'origine avec valeurs de remplissage |
+| Paramètres | Type | | Description |
+| ---------- | ---------- | :-------------------------: | ------------------------------------------------------ |
+| value | any | -> | Valeur de remplissage |
+| startFrom | Integer | -> | Indice l'élément de départ (inclus) |
+| end | Integer | -> | Indice de fin (non inclus) |
+| Résultat | Collection | <- | Collection d'origine avec valeurs de remplissage |
@@ -1356,7 +1356,7 @@ $c2:=$c.flatMap($f; $c.sum())
| Paramètres | Type | | Description |
| ---------- | ---------- | :-------------------------: | ----------------------------------------------------- |
-| toSearch | expression | -> | Expression à rechercher dans la collection |
+| toSearch | Expression | -> | Expression à rechercher dans la collection |
| startFrom | Integer | -> | Indice d'élément à partir duquel débuter la recherche |
| Résultat | Boolean | <- | True si *toSearch* est trouvé dans la collection |
@@ -1418,7 +1418,7 @@ Optionnellement, vous pouvez passer l'indice de la collection à partir duquel d
| Paramètres | Type | | Description |
| ---------- | ---------- | :-------------------------: | ---------------------------------------------------------------------------------- |
-| toSearch | expression | -> | Expression à rechercher dans la collection |
+| toSearch | Expression | -> | Expression à rechercher dans la collection |
| startFrom | Integer | -> | Indice d'élément à partir duquel débuter la recherche |
| Résultat | Integer | <- | Indice de la première occurrence de toSearch dans la collection, -1 si non trouvée |
@@ -1674,7 +1674,7 @@ $last:=$emptyCol.last() // retourne Undefined
| Paramètres | Type | | Description |
| ---------- | ---------- | :-------------------------: | --------------------------------------------------------------------------------- |
-| toSearch | expression | -> | Elément à chercher dans la collection |
+| toSearch | Expression | -> | Elément à chercher dans la collection |
| startFrom | Integer | -> | Indice d'élément à partir duquel débuter la recherche |
| Résultat | Integer | <- | Numéro de la dernière occurrence de toSearch dans la collection, -1 si non trouvé |
@@ -1824,10 +1824,10 @@ $c2:=$c.map(Formula(Round(($1.value/$2)*100; 2)); $c.sum())
-| Paramètres | Type | | Description |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------- |
-| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
-| Résultat | Boolean, Text, Number, Collection, Object, Date | <- | Valeur maximum de la collection |
+| Paramètres | Type | | Description |
+| ------------ | ---- | :-------------------------: | --------------------------------------------------------------- |
+| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
+| Résultat | any | <- | Valeur maximum de la collection |
@@ -1874,10 +1874,10 @@ Si la collection est vide, `.max()` retourne *Undefined*.
-| Paramètres | Type | | Description |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------------------------------------------------------- |
-| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
-| Résultat | Boolean, Text, Number, Collection, Object, Date | <- | Valeur minimum de la collection |
+| Paramètres | Type | | Description |
+| ------------ | ---- | :-------------------------: | --------------------------------------------------------------- |
+| propertyPath | Text | -> | Chemin de propriété d'objet à utiliser pour évaluer les valeurs |
+| Résultat | any | <- | Valeur minimum de la collection |
@@ -2705,13 +2705,13 @@ Vous trouverez d'autres exemples de requêtes dans la page `dataClass.query()`.
-| Paramètres | Type | | Description |
-| ---------- | ----------------------------------------------- | :-------------------------: | -------------------------------------------------------------------------------------- |
-| formula | 4D.Function | -> | Objet formule |
-| methodName | Text | -> | Nom de méthode |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valeur à utiliser comme premier argument du premier appel de *formula* ou methodName\* |
-| param | expression | -> | Paramètre(s) à passer |
-| Résultat | Text, Number, Object, Collection, Date, Boolean | <- | Résultat de la valeur de l'accumulateur |
+| Paramètres | Type | | Description |
+| ---------- | --------------------------- | :-------------------------: | -------------------------------------------------------------------------------------- |
+| formula | 4D.Function | -> | Objet formule |
+| methodName | Text | -> | Nom de méthode |
+| initValue | any | -> | Valeur à utiliser comme premier argument du premier appel de *formula* ou methodName\* |
+| param | Expression | -> | Paramètre(s) à passer |
+| Résultat | any | <- | Résultat de la valeur de l'accumulateur |
@@ -2790,13 +2790,13 @@ Avec la méthode ***Flatten*** suivante :
-| Paramètres | Type | | Description |
-| ---------- | ----------------------------------------------- | :-------------------------: | -------------------------------------------------------------------------------------- |
-| formula | 4D.Function | -> | Objet formule |
-| methodName | Text | -> | Nom de méthode |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valeur à utiliser comme premier argument du premier appel de *formula* ou methodName\* |
-| param | expression | -> | Paramètre(s) à passer |
-| Résultat | Text, Number, Object, Collection, Date, Boolean | <- | Résultat de la valeur de l'accumulateur |
+| Paramètres | Type | | Description |
+| ---------- | --------------------------- | :-------------------------: | -------------------------------------------------------------------------------------- |
+| formula | 4D.Function | -> | Objet formule |
+| methodName | Text | -> | Nom de méthode |
+| initValue | any | -> | Valeur à utiliser comme premier argument du premier appel de *formula* ou methodName\* |
+| param | Expression | -> | Paramètre(s) à passer |
+| Résultat | any | <- | Résultat de la valeur de l'accumulateur |
@@ -2932,11 +2932,11 @@ Si vous essayez de supprimer un élément d'une collection vide, la méthode ne
-| Paramètres | Type | | Description |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------------------------------------------- |
-| size | Integer | -> | Nouvelle taille de la collection |
-| defaultValue | Number, Text, Object, Collection, Date, Boolean | -> | Valeur par défaut pour remplir de nouveaux éléments |
-| Résultat | Collection | <- | Collection d'origine redimensionnée |
+| Paramètres | Type | | Description |
+| ------------ | ---------- | :-------------------------: | --------------------------------------------------- |
+| size | Integer | -> | Nouvelle taille de la collection |
+| defaultValue | any | -> | Valeur par défaut pour remplir de nouveaux éléments |
+| Résultat | Collection | <- | Collection d'origine redimensionnée |
@@ -3352,11 +3352,11 @@ Si la collection contient des objets, passez le paramètre *propertyPath* pour i
-| Paramètres | Type | | Description |
-| ---------- | -------------------------------------- | :-------------------------: | ---------------------------------------------------------------- |
-| value | Text, Number, Object, Collection, Date | -> | Valeur(s) à insérer au début de la collection |
-| Résultat | Collection | <- | Collection contenant des éléments ajoutés |
-| | | | |
+| Paramètres | Type | | Description |
+| ---------- | ---------- | :-------------------------: | ---------------------------------------------------------------- |
+| value | any | -> | Valeur(s) à insérer au début de la collection |
+| Résultat | Collection | <- | Collection contenant des éléments ajoutés |
+| | | | |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
index be398e1d451a7a..d4987d0301fe68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
@@ -332,11 +332,11 @@ La valeur retournée est la clé publique.
-| Paramètres | Type | | Description |
-| ---------- | ------------ | --------------------------- | -------------------------------------------------------------------------- |
-| message | Text OU Blob | -> | Message à signer |
-| options | Object | -> | Options de signature |
-| Résultat | Text | <- | Signature en représentation Base64 ou Base64URL, selon l'option "encoding" |
+| Paramètres | Type | | Description |
+| ---------- | ---------- | --------------------------- | -------------------------------------------------------------------------- |
+| message | Text, Blob | -> | Message à signer |
+| options | Object | -> | Options de signature |
+| Résultat | Text | <- | Signature en représentation Base64 ou Base64URL, selon l'option "encoding" |
@@ -416,12 +416,12 @@ Contient le nom du type de clé - "RSA", "EC
-| Paramètres | Type | | Description |
-| ---------- | ------------ | --------------------------- | ----------------------------------------------------------------------------------------------- |
-| message | Text OU Blob | -> | Message qui a été utilisé pour produire la signature |
-| signature | Text | -> | Signature à vérifier, en représentation Base64 ou Base64URL, selon la valeur `options.encoding` |
-| options | Object | -> | Options de signature |
-| Résultat | Object | <- | Statut de la vérification |
+| Paramètres | Type | | Description |
+| ---------- | ---------- | --------------------------- | ----------------------------------------------------------------------------------------------- |
+| message | Text, Blob | -> | Message qui a été utilisé pour produire la signature |
+| signature | Text | -> | Signature à vérifier, en représentation Base64 ou Base64URL, selon la valeur `options.encoding` |
+| options | Object | -> | Options de signature |
+| Résultat | Object | <- | Statut de la vérification |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md
index 3c6426e8d0a674..0319a839fc41fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/DataClassClass.md
@@ -438,7 +438,7 @@ Dans cet exemple, la première entité sera bien créée mais la seconde créati
| Paramètres | Type | | Description |
| ---------- | ------------------------- | :-------------------------: | ------------------------------------------------- |
-| primaryKey | Integer OR Text | -> | Valeur de la clé primaire de l'entité à récupérer |
+| primaryKey | Integer, Text | -> | Valeur de la clé primaire de l'entité à récupérer |
| settings | Object | -> | Option de création : contexte |
| Résultat | 4D.Entity | <- | Entité correspondant à la clé primaire indiquée |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/FileClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/FileClass.md
index 967d3ef6fc34ff..7b47f017f491bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/FileClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/FileClass.md
@@ -713,7 +713,7 @@ $app.setAppInfo($info)
| Paramètres | Type | | Description |
| ---------- | ---- | -- | -------------------------- |
-| content | BLOB | -> | Nouveau contenu du fichier |
+| content | Blob | -> | Nouveau contenu du fichier |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
index 4c864467892c5a..ad8bc643026edb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
@@ -1081,7 +1081,7 @@ Vous souhaitez récupérer les 20 emails les plus récents sans modifier le stat
| msgNumber | Integer | -> | Numéro de séquence du message |
| msgID | Text | -> | ID unique du message |
| updateSeen | Boolean | -> | Si Vrai, le message est marqué comme "seen" (lu) dans la boite de réception. Si Faux, le message demeure inchangé. |
-| Résultat | BLOB | <- | Blob de la chaine MIME retournée par le serveur mail |
+| Résultat | Blob | <- | Blob de la chaine MIME retournée par le serveur mail |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
index 53503a1b88a1d6..35ecd3093c4d16 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
@@ -38,7 +38,7 @@ Les objets Attachment fournissent les propriétés et fonctions suivantes en lec
| ----------- | --------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------------- |
| file | 4D.File | -> | Fichier joint |
| zipFile | 4D.ZipFile | -> | Fichier Zip joint |
-| blob | 4D.Blob | -> | Blob contenant la pièce jointe |
+| blob | 4D.Blob | -> | Blob containing the attachment |
| path | Text | -> | Chemin de la pièce jointe |
| name | Text | -> | Nom + extension utilisés par le client de messagerie pour désigner la pièce jointe |
| cid | Text | -> | ID de la pièce jointe (messages HTML uniquement) ou " " si aucun cid n'est requis |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/SessionClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/SessionClass.md
index 08b7b04f62964d..aef1b74e8bf930 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/SessionClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/SessionClass.md
@@ -17,14 +17,15 @@ Les objets session sont retournés par la commande [`Session`](../commands/sessi
Les types de sessions suivants sont pris en charge par cette classe :
-- [**Session utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web et REST, et peuvent se voir attribuer des privilèges.
-- [**Session utilisateur client distant**](../Desktop/clientServer.md#remote-user-sessions) : Dans les applications client/serveur, les utilisateurs distants ont leurs propres sessions gérées sur le serveur.
-- [**Session des procédures stockées**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html) : Toutes les procédures stockées exécutées sur le serveur partagent la même session utilisateur virtuelle.
-- [**Session autonome**](../Project/overview.md#development) : objet session local retourné dans une application mono-utilisateur (utile dans les phases de développement et de test des applications client/serveur).
+- [**Sessions utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web (y compris les accès REST) et sont contrôlées par les [privilèges](../ORDA/privileges.md) qui leur sont attribués.
+- [**Sessions desktop**](../Desktop/sessions.md), qui comprennent :
+ - [**Sessions utilisateurs distants**](../Desktop/sessions.md#remote-user-sessions) : Dans les applications client/serveur, les utilisateurs distants ont leurs propres sessions gérées sur le serveur.
+ - [**Sessions procédures stockées**](../Desktop/sessions.md#stored-procedure-sessions) : Session utilisateur virtuelle pour toutes les procédures stockées exécutées sur le serveur.
+ - [**Sessions autonomes**](../Desktop/sessions.md#standalone-sessions): Session locale retournée dans une application mono-utilisateur (utile dans les phases de développement et de test des applications client/serveur).
-:::note
+:::warning A propos des privilèges de session
-La disponibilité des propriétés et des fonctions de l'objet `Session` dépend du type de session.
+Tous les types de session peuvent gérer des privilèges, mais seul le code exécuté dans un **contexte web** est réellement contrôlé par les privilèges de la session.
:::
@@ -54,10 +55,10 @@ La disponibilité des propriétés et des fonctions de l'objet `Session` dépend
Historique
-| Release | Modifications |
-| ------- | -------------------------------------- |
-| 21 | Prise en charge des sessions distantes |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 18 R6 | Ajout |
@@ -73,33 +74,26 @@ La disponibilité des propriétés et des fonctions de l'objet `Session` dépend
#### Description
-:::note
-
-Cette fonction ne fait rien et renvoie toujours **True** avec les sessions de procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.clearPrivileges()` supprime tous les privilèges associés à la session (à l'exception des privilèges promus) et renvoie **True** si l'exécution a réussi.
-Hormis si vous êtes en mode ["forceLogin"](../REST/authUsers.md#force-login-mode), la session devient automatiquement une session Guest. En mode "forceLogin", `.clearPrivileges()` ne transforme pas la session en session Invité, elle efface seulement les privilèges de la session.
-
:::note
Cette fonction ne supprime pas les **privilèges promus** du process web, qu'ils aient été ajoutés par le biais du fichier [roles.json](../ORDA/privileges.md#rolesjson-file) ou de la fonction [`promote()`](#promote).
:::
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
```4d
-//Invalider une session utilisateur web
-var $isGuest : Boolean
+//Invalider la session d'un utilisateur web
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest est True
```
@@ -110,10 +104,10 @@ $isGuest:=Session.isGuest() //$isGuest est True
Historique
-| Release | Modifications |
-| ------- | -------------------------------------- |
-| 21 | Prise en charge des sessions distantes |
-| 20 R9 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 20 R9 | Ajout |
@@ -121,33 +115,28 @@ $isGuest:=Session.isGuest() //$isGuest est True
-| Paramètres | Type | | Description |
-| ---------- | ------- | :-------------------------: | -------------------------------------------- |
-| lifespan | Integer | -> | Durée de vie du token de session en secondes |
-| Résultat | Text | <- | UUID du token OTP |
+| Paramètres | Type | | Description |
+| ---------- | ------- | :-------------------------: | ----------------------------------------------------------------------------------------- |
+| lifespan | Integer | -> | Durée de vie du token de session en secondes (sessions web uniquement) |
+| Résultat | Text | <- | UUID du token OTP |
#### Description
-:::note
-
-Cette fonction est disponible pour les sessions utilisateur web et les sessions à distance. Elle renvoie une chaîne vide dans les procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.createOTP()` crée un nouvel OTP (One Time Passcode) pour la session et renvoie son UUID de token. Ce token est propre à la session au cours de laquelle il a été généré.
Pour plus d'informations sur les tokens OTP, veuillez consulter [cette section](../WebServer/sessions.md#session-token-otp).
-Vous pouvez définir un délai personnalisé en passant une valeur en secondes dans *lifespan*. Si un token expiré est utilisé pour restaurer la session, il est ignoré. Par défaut, si le paramètre *lifespan* est omis :
+Si un token expiré est utilisé pour restaurer la session, il est ignoré.
+
+Pour les sessions web, vous pouvez définir un délai personnalisé en passant une valeur en secondes dans *lifespan*. Par défaut, si le paramètre *lifespan* est omis, le token est créé avec la même durée de vie que le [`.idleTimeOut`](#idletimeout) de la session.
-- avec les sessions d'utilisateurs web, le token est créé avec la même durée de vie que le [`.idleTimeOut`](#idletimeout) de la session.
-- avec des sessions distantes, le token est créé avec une durée de vie de 10 secondes.
+Pour les sessions desktop, le token est créé avec une durée de vie de 10 secondes.
-Pour les **sessions utilisateur web**, le token renvoyé peut être utilisé dans les échanges avec des applications ou des sites web tiers pour identifier la session en toute sécurité. Par exemple, le token OTP de session peut être utilisé avec une application de paiement.
+Le token retourné peut être utilisé lors d'échanges avec des applications tierces ou des sites Web pour identifier la session de manière sécurisée. Par exemple, le token OTP de session peut être utilisé avec une application de paiement.
-Pour les **sessions à distance**, le token renvoyé peut être utilisé sur 4D Server pour identifier les requêtes provenant d'un [4D distant exécutant des formulaires Qodly dans une zone Web](../Desktop/clientServer.md#remote-user-sessions).
+Le token renvoyé peut être utilisé par le serveur 4D ou l'application mono-utilisateur 4D pour identifier les requêtes provenant du web qui [partagent la session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Exemple
@@ -182,12 +171,6 @@ $token := Session.createOTP( 60 ) //le token est valable pendant 1 mn
#### Description
-:::note
-
-Cette fonction ne fait rien dans les sessions clients distants, procédures stockées et autonomes.
-
-:::
-
La fonction `.demote()` supprime du process web le privilège promu dont l'identifiant a été passé dans *promoteId*, s'il a été précédemment ajouté par la fonction [`.promote()`](#promote).
Si aucun privilège avec *promoteId* n'a été promu à l'aide de [`.promote()`](#promote) dans le process web, la fonction ne fait rien.
@@ -262,10 +245,10 @@ $expiration:=Session.expirationDate //ex : "2021-11-05T17:10:42Z"
Historique
-| Release | Modifications |
-| ------- | --------------------------------------------- |
-| 21 | Prise en charge des sessions client distantes |
-| 20 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 20 R6 | Ajout |
@@ -289,9 +272,10 @@ Cette fonction renvoie les privilèges attribués à une session en utilisant la
:::
-En ce qui concerne les sessions de clients distants, les privilèges ne concernent que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Avec les sessions de procédures stockées et les sessions autonomes, cette fonction renvoie une collection contenant uniquement "WebAdmin".
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
@@ -360,10 +344,10 @@ $privileges := Session.getPrivileges()
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------------------------ |
-| 21 | Retourne True pour les privilèges promus, Prise en charge des sessions de clients distants |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------------------------------------------------- |
+| 21 | Retourne True pour les privilèges promus, Prise en charge des sessions distantes et autonomes |
+| 18 R6 | Ajout |
@@ -388,26 +372,27 @@ Cette fonction renvoie True pour le *privilège* si elle est appelée depuis une
:::
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Avec les sessions de procédures stockées et les sessions autonomes, cette fonction renvoie toujours True, quel que soit le *privilege*.
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
-Vous voulez vérifier si le privilège "WebAdmin" est associé à la session utilisateur web :
+Vous voulez vérifier si le privilège "CreateInvoices" est associé à la session de l'utilisateur web :
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Accès accordé, ne rien faire
+If (Session.hasPrivilege("CreateInvoices"))
+ //Accès à la fonctionnalité de création de facture
Else
- //Afficher une page d'authentification
+ //Pas d'accès à la fonctionnalité
End if
```
#### Voir également
-[*Articles de blog sur cette fonctionnalité*](https://blog.4d.com/?s=hasPrivilege)
+[*Restreindre les données en fonction des privilèges ou des informations enregistrées dans la mémoire de session* (article de blog)](https://blog.4d.com/?s=hasPrivilege)
@@ -500,26 +485,16 @@ End if
#### Description
-:::note
-
-Cette propriété est uniquement disponible avec les sessions clients distants, procédures stockées et autonomes.
+La propriété `.info` décrit la session desktop ou la session web.
-:::
-
-La propriété `.info` décrit le client distant ou la session de procédure stockée sur le serveur, ou la session autonome.
-
-:::note
-
-- L'objet `.info` est le même objet que celui retourné dans la propriété "session" par la commande [`Process activity`](../commands/process-activity.md) pour les sessions de clients distants et procédures stockées.
-- L'objet `.info` est le même objet que celui retourné par la commande [`Session info`](../commands/session-info.md) pour une session autonome.
-
-:::
+- **Sessions distantes** et **Sessions de procédure stockée** : L'objet `.info` est le même que celui renvoyé dans la propriété "session" par la commande [`Process activity`](../commands/process-activity.md).
+- **Sessions autonomes** : L'objet `.info` est le même que celui retourné par la commande [`Session info`](../commands/session-info.md).
L'objet `.info` contient les propriétés suivantes:
| Propriété | Type | Description |
| ---------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| type | Text | Type de session : "remote", "storedProcedure", "standalone" |
+| type | Text | Type de session : "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nom d'utilisateur 4D (même valeur que [`.userName`](#username)) |
| machineName | Text | Sessions distantes : nom de la machine distante. Session procédures stockées : nom de la machine serveur. Session autonome : nom de la machine |
| systemUserName | Text | Sessions distantes : nom de la session système ouverte sur la machine distante. |
@@ -554,9 +529,9 @@ L'objet `.info` contient les propriétés suivantes:
-| Paramètres | Type | | Description |
-| ---------- | ------- | :-------------------------: | ------------------------------------------------ |
-| Résultat | Boolean | <- | Vrai s'il s'agit d'une session Guest, sinon Faux |
+| Paramètres | Type | | Description |
+| ---------- | ------- | :-------------------------: | -------------------------------------------------------------------------------------------------- |
+| Résultat | Boolean | <- | True si la session est une session Guest, False sinon (sessions web uniquement) |
@@ -564,11 +539,17 @@ L'objet `.info` contient les propriétés suivantes:
:::note
-Cette fonction retourne toujours **False** avec les sessions clients distants, procédures stockées et autonomes.
+Cette fonction renvoie toujours **False** pour les sessions desktop.
:::
-La fonction `.isGuest()` renvoie True si la session est une session Guest (c'est-à-dire qu'elle n'a aucun privilège).
+La fonction `.isGuest()` retourne True tant que `setPrivileges()` n'est pas appelé dans la session ou après qu'un [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) a été exécuté dans la session.
+
+:::note Compatibilité
+
+Avec les anciennes sessions, `.isGuest()` renvoie True si la session n'a pas de privilèges.
+
+:::
#### Exemple
@@ -607,12 +588,6 @@ End if
#### Description
-:::note
-
-Cette fonction ne fait rien dans les sessions clients distants, procédures stockées et autonomes.
-
-:::
-
La fonction `.promote()` ajoute le privilège défini dans le paramètre *privilege* au process courant durant l'exécution de la fonction appelante et renvoie l'identifiant du privilège promu.
L'ajout dynamique de privilèges est utile lorsque les droits d'accès dépendent du contexte d'exécution, qui ne peut pas être entièrement défini dans le fichier "roles.json". Ceci est particulièrement le cas lorsque la même fonction peut être exécutée par des utilisateurs ayant des niveaux d'accès différents. L'utilisation de `.promote()` permet de s'assurer que seul le process en cours bénéficie des privilèges nécessaires, sans affecter les autres.
@@ -628,6 +603,11 @@ L'identifiant renvoyé est incrémenté chaque fois qu'un privilège est ajouté
Pour supprimer un privilège de manière dynamique, appelez la fonction `demote()` avec l'identifiant du privilège.
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
+
#### Exemple
Plusieurs utilisateurs se connectent à un seul point d'accès qui sert différentes applications. Un utilisateur de l'application n°1 n'a pas besoin du privilège "super_admin" car il ne crée pas de "VerySensitiveInfo". Un utilisateur de l'application n° 2 a besoin du privilège "super_admin".
@@ -686,12 +666,6 @@ End if
#### Description
-:::note
-
-Cette fonction est uniquement disponible avec les sessions utilisateur web. Elle renvoie False dans les autres contextes.
-
-:::
-
La fonction `.restore()` remplace la session courante de l'utilisateur Web par sa session originale correspondant à l'UUID *token*. Le storage et les privilèges de la session sont restaurés.
Si la session originale de l'utilisateur a été correctement restaurée, la fonction renvoie `true`.
@@ -730,7 +704,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Release | Modifications |
| ------- | ----------------------------------------------------- |
-| 21 | Prise en charge des sessions client distantes |
+| 21 | Prise en charge des sessions distantes et autonomes |
| 19 R8 | Prise en charge de la propriété "roles" dans settings |
| 18 R6 | Ajout |
@@ -751,12 +725,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Description
-:::note
-
-Cette fonction ne fait rien et renvoie toujours **False** avec les sessions de procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.setPrivileges()` associe le ou les privilège(s) et/ou rôle(s) défini(s) en paramètre à la session et renvoie **True** si l'exécution a réussi.
- Dans le paramètre *privilege*, passez une chaîne contenant un nom de privilège (ou plusieurs noms de privilèges séparés par des virgules).
@@ -781,7 +749,10 @@ Par défaut lorsqu'aucun privilège ou rôle n'est associé à la session, la se
La propriété [`userName`](#username) est accessible au niveau de l'objet session (lecture seulement).
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
@@ -813,10 +784,10 @@ End if
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------- |
-| 20 R5 | Prise en charge des sessions utilisateurs distants et procédures stockées |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | ------------------------------------ |
+| 20 R5 | Prise en charge des sessions desktop |
+| 18 R6 | Ajout |
@@ -838,6 +809,8 @@ Vous pouvez obtenir la propriété `.storage` d'une session en utilisant la comm
:::
+Lorsqu'une session desktop et une session web sont [partagées à l'aide d'un OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), elles partagent également le même objet `.storage`.
+
#### Exemple de session Web
Vous voulez stocker l'adresse IP du client dans la propriété `.storage`. Vous pouvez écrire dans la méthode base `On Web Authentication` :
@@ -868,10 +841,10 @@ End use
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------- |
-| 20 R5 | Prise en charge des sessions utilisateurs distants et procédures stockées |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | ------------------------------------ |
+| 20 R5 | Prise en charge des sessions desktop |
+| 18 R6 | Ajout |
@@ -881,10 +854,10 @@ End use
La propriété `.userName` contient le nom d'utilisateur associé à la session. Vous pouvez vous en servir pour identifier l'utilisateur dans votre code.
-- Avec les sessions web, cette propriété est une chaîne vide par défaut. Elle peut être définie via la propriété `privileges` de la fonction [`setPrivileges()`](#setprivileges).
-- Avec les sessions clients distants et procédures stockées, cette propriété retourne le même nom d'utilisateur que la commande [`Current user`](../commands-legacy/current-user.md).
-- Avec les sessions autonomes, cette propriété contient "designer" ou le nom défini avec la commande [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Sessions web** : Cette propriété est une chaîne vide par défaut. Elle peut être définie via la propriété `privileges` de la fonction [`setPrivileges()`](#setprivileges).
+- **Sessions de procédure stockée/distantes** : Cette propriété retourne le même nom d'utilisateur que la commande [`Current user`](../commands-legacy/current-user.md).
+- **Sessions autonomes** : Cette propriété contient "designer" ou le nom défini avec la commande [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
-Cette propriété est en **lecture seule**.
+Cette propriété est **en lecture seule** pour les sessions desktop.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
index b2356a13098e9c..daa74902d9da79 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
@@ -101,11 +101,11 @@ Dans le paramètre *options*, passez un objet qui peut contenir les propriétés
Toutes les fonctions de callback reçoivent deux paramètres objet. Leur contenu dépend du callback :
-| Paramètres | Type | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
-| ---------------------------- | ------------ | ------------ | -------------- | ---------------- | ------------ | ------------- |
-| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
-| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
-| $param2.data | Text ou Blob | | données reçues | données d'erreur | | |
+| Paramètres | Type | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
+| ---------------------------- | ---------- | ------------ | -------------- | ---------------- | ------------ | ------------- |
+| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
+| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
+| $param2.data | Text, Blob | | données reçues | données d'erreur | | |
Voici la séquence des appels de callbacks :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
index b68530efcb0b30..ecd98e395f62c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
@@ -73,7 +73,7 @@ Les objets TCPListener offrent les propriétés et fonctions suivantes :
| Paramètres | Type | | Description |
| ---------- | ------------------------------ | --------------------------- | ---------------------------------------------------------- |
-| port | Number | -> | Port TCP à écouter |
+| port | Real | -> | Port TCP à écouter |
| options | Object | -> | [options](#options-parameter) de configuration du listener |
| Résultat | 4D.TCPListener | <- | Nouvel objet TCPListener |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
index 78c5d24c6c52ba..6f74a7aa8bfb9f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
@@ -45,11 +45,11 @@ Les objets UDPSocket offrent les propriétés et fonctions suivantes :
-| Paramètres | Type | | Description |
-| ---------- | --------- | --------------------------- | ----------------------------------------------------------------------------------------------------------- |
-| port | Integer | -> | Port local utilisé pour le socket UDP (0 ou omis = trouver un port inutilisé à utiliser) |
-| options | Object | -> | Configuration [options](#options-parameter) pour le socket |
-| Résultat | UDPSocket | <- | Nouvel objet UDPSocket |
+| Paramètres | Type | | Description |
+| ---------- | ---------------------------- | --------------------------- | ----------------------------------------------------------------------------------------------------------- |
+| port | Integer | -> | Port local utilisé pour le socket UDP (0 ou omis = trouver un port inutilisé à utiliser) |
+| options | Object | -> | Configuration [options](#options-parameter) pour le socket |
+| Résultat | 4D.UDPSocket | <- | Nouvel objet UDPSocket |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/VectorClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/VectorClass.md
index af8067f10c36f5..b27d1651f83506 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/VectorClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/VectorClass.md
@@ -47,7 +47,7 @@ Les objets vectoriels sont partagés, immuables et transmissibles.
| Paramètres | Type | | Description |
| ---------- | ------------------------- | --------------------------- | --------------------------------------------------- |
-| paramètres | Collection de réels | -> | Collection de nombres réels représentant un vecteur |
+| paramètres | Collection | -> | Collection de nombres réels représentant un vecteur |
| Résultat | 4D.Vector | <- | Nouvel objet vectoriel |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormClass.md
index 404e64bc1bcbb8..fdc836640acaa1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormClass.md
@@ -60,9 +60,9 @@ Bien que `myForm` n'affiche pas les propriétés typiques de l'objet lorsqu'il e
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | ------------------------------------------- |
-| state | string | -> | Nom de l'état à désactiver dans la page web |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | ------------------------------------------------- |
+| state | Text | -> | Nom de l'état à désactiver dans le formulaire web |
@@ -85,9 +85,9 @@ Pour plus d'informations sur les états des pages web, veuillez vous référer
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | ----------------------------------------- |
-| state | string | -> | Nom de l'état à activer sur les pages web |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | --------------------------------------------- |
+| state | Text | -> | Nom de l'état à activer sur le formulaire web |
@@ -121,9 +121,9 @@ Function authenticationError()
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | -------------------------------------------- |
-| msg | string | -> | Message d'erreur à afficher dans la page web |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | ------------------------------------------- |
+| msg | Text | -> | Message d'erreur à afficher dans le webform |
@@ -156,9 +156,9 @@ Si la fonctionnalité [**Provide feedback**](https://developer.4d.com/qodly/4DQo
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | ------------------------------------------------- |
-| msg | string | -> | Message d'information à afficher dans la page web |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | ------------------------------------------------ |
+| msg | Text | -> | Message d'information à afficher dans le webform |
@@ -191,9 +191,9 @@ Si la fonctionnalité [**Provide feedback**](https://developer.4d.com/qodly/4DQo
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | --------------------------------------------------- |
-| msg | string | -> | Message d'avertissement à afficher dans la page web |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | -------------------------------------------------- |
+| msg | Text | -> | Message d'avertissement à afficher dans le webform |
@@ -224,4 +224,4 @@ Si la fonctionnalité [**Provide feedback**](https://developer.4d.com/qodly/4DQo
[Web Form](../commands/web-form.md)
[Web Event](../commands/web-event.md)
-[WebFormItem class](../API/WebFormItemClass.md)
\ No newline at end of file
+[WebFormItem class](../API/WebFormItemClass.md)
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
index a35d30e6be8215..603b0be3333006 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
@@ -34,9 +34,9 @@ Par exemple, `WebFormObject.myImage` fait référence au composant image avec `m
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | ------------------------------------------- |
-| className | string | -> | Nom de la classe CSS à ajouter au composant |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | ------------------------------------------- |
+| className | Text | -> | Nom de la classe CSS à ajouter au composant |
@@ -86,9 +86,9 @@ exposed Function isHidden()
-| Paramètres | Type | | Description |
-| ---------- | ------ | :-: | --------------------------------------------- |
-| className | string | -> | Nom de la classe CSS à supprimer du composant |
+| Paramètres | Type | | Description |
+| ---------- | ---- | :-: | --------------------------------------------- |
+| className | Text | -> | Nom de la classe CSS à supprimer du composant |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
index eb8c46c5a35aa6..980544cd3d696e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
@@ -68,9 +68,9 @@ Cette propriété est en lecture seule.
-| Paramètres | Type | | Description |
-| ---------- | -------------------- | :-: | -------------------- |
-| message | Text / Blob / Object | -> | Le message à envoyer |
+| Paramètres | Type | | Description |
+| ---------- | ------------------ | :-: | -------------------- |
+| message | Text, Blob, Object | -> | Le message à envoyer |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
index f9e929fbc81107..ee8e5cf3120875 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
@@ -232,7 +232,7 @@ En résultat d'une callback `WSHandler.onConnection`, passez un objet `connectio
| ws | | [`4D.WebSocketConnection`](WebSocketConnectionClass.md) | <- | Objet connexion WebSocket courant |
| event | | Object | <- | Paramètres |
| | type | Text | | "message" |
-| | data | Text / Blob / Object | | données envoyées par le client |
+| | data | Text, Blob, Object | | données envoyées par le client |
Callback pour les données WebSocket. Appelée à chaque fois que le WebSocket reçoit des données.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Admin/cli.md b/i18n/fr/docusaurus-plugin-content-docs/current/Admin/cli.md
index 847cd1279956a7..2c237719afa12b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Admin/cli.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Admin/cli.md
@@ -50,7 +50,7 @@ Syntaxe :
| `--skip-onstartup` | | Lance le projet sans exécuter aucune méthode "automatique", y compris les méthodes base `On Startup` et `On Exit` |
| `--startup-method` | Nom de méthode projet (chaîne) | Méthode projet à exécuter immédiatement après la méthode base `On Startup` (si elle n'est pas ignorée avec `--skip-onstartup`). |
-(\*) Certaines boîtes de dialogue sont affichées avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme. Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
+(\*) Certaines boîtes de dialogue s'affichent avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de conversion, sélection de la base de données, sélection du fichier de données). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
### Exemples
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Admin/webAdmin.md b/i18n/fr/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
index 87bace3ccb1808..6a4e11c0fd1f4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
@@ -1,21 +1,27 @@
---
id: webAdmin
-title: WebAdmin
+title: Serveur d'administration Web
---
-4D et 4D Server ont un composant intégré appelé `WebAdmin` qui permet de lancer un serveur web qui fournit un accès sécurisé à des outils de gestion de données, tel que l'[Explorateur de données Web](dataExplorer.md). Ce serveur est accessible en local ou à distance, depuis un navigateur ou une application web, et permet d'accéder à l'application 4D associée.
+Un serveur web intégré, appelé `WebAdmin`, est utilisé par 4D et 4D Server pour fournir un accès web sécurisé à des fonctions spécifiques :
-Le WebAdmin gère l'authentification des utilisateurs via des privilèges "WebAdmin", leur permettant d'ouvrir des sessions en tant qu'administrateurs et d'accéder à des interfaces dédiées.
+- Les accès REST au projet
+- l'[Explorateur de données](dataExplorer.md)
+- le [rendu de la prévisualisation de Qodly Studio](https://developer.4d.com/qodly/4DQodlyPro/rendering#preview-in-qodly-studio)
+
+Ce serveur est accessible en local ou à distance, depuis un navigateur ou une application web, et permet d'accéder à l'application 4D associée.
+
+Le serveur d'administration Web gère l'authentification des utilisateurs disposant des privilèges `WebAdmin`, afin qu'ils puissent ouvrir des sessions d'administration et accéder à des interfaces dédiées.
Cette fonctionnalité est disponible pour les applications 4D avec ou sans interfaces.
-## Démarrer le serveur web WebAdmin
+## Démarrage du serveur d'administration Web
-Par défaut, le serveur web `WebAdmin` ne démarre pas automatiquement. Il faut configurer son lancement automatique au démarrage, ou (dans les versions avec une interface) le lancer manuellement via un menu.
+Par défaut, le serveur d'administration Web n'est pas lancé. Il faut configurer son lancement automatique au démarrage, ou (dans les versions avec une interface) le lancer manuellement via un menu.
### Lancement au démarrage
-Vous pouvez configurer le server web `WebAdmin` pour qu'il se lance au démarrage de 4D ou 4D Server (avant l'ouverture d'un projet).
+Vous pouvez configurer le serveur d'administration Web pour qu'il soit lancé au démarrage de l'application 4D ou 4D Server (avant le chargement de tout projet).
- Si vous utilisez une application 4D avec une interface, sélectionnez **Fichier > Administration Web > Propriétés...**.
@@ -31,23 +37,23 @@ Cochez l'option **Lancer le serveur WebAdmin au démarrage** dans la boîte de d
open ~/Desktop/4D.app --webadmin-auto-start true
```
-> Si le port TCP utilisé par le serveur web `WebAdmin` ([HTTPS](#https-port) ou [HTTP](#http-port) selon les paramètres) n'est pas disponible au démarrage, 4D essaiera avec les 20 ports suivants et utilisera le premier disponible. Si aucun port n'est disponible, le serveur web ne se lance pas et un message d'erreur s'affiche. Pour les applications sans interface, il apparaît dans la console.
+> Si le port TCP utilisé par le serveur d'administration Web ([HTTPS](#https-port) ou [HTTP](#http-port), selon les paramètres) n'est pas libre au démarrage, 4D essaiera successivement les 20 ports suivants et utilisera le premier qui est disponible. Si aucun port n'est disponible, le serveur web ne se lance pas et un message d'erreur s'affiche. Pour les applications sans interface, il apparaît dans la console.
### Démarrage et arrêt
-Si vous utilisez une application 4D avec une interface, vous pouvez démarrer ou arrêter le serveur web `WebAdmin` de votre projet à tout moment :
+Si vous utilisez une application 4D avec interface, vous pouvez à tout moment démarrer ou arrêter le serveur d'administration Web pour votre projet :
Sélectionnez **Fichier> Administration web > Démarrer le serveur**.

-Le menu affiche **Arrêter le Server** une fois le serveur lancé. Sélectionnez **Arrêter le Server** pour arrêter le serveur web `WebAdmin`.
+La ligne de menu devient **Arrêter le serveur** lorsque le serveur est lancé ; sélectionnez **Arrêter le serveur** pour arrêter le Serveur d'administration Web.
-## Propriétés WebAdmin
+## Propriétés {#settings}
-La configuration du composant `WebAdmin` est obligatoire, en particulier pour définir la [**clé d'accès**](#access-key). Par défaut, quand la clé d'accès n'est pas configurée, les connexions via url ne sont pas autorisées.
+La configuration du serveur d'administration Web est obligatoire, en particulier pour définir la [**clé d'accès**](#access-key). Par défaut, quand la clé d'accès n'est pas configurée, les connexions via url ne sont pas autorisées.
-Vous pouvez configurer le composant `WebAdmin` dans la [fenêtre de configuration](#settings-dialog-box)(voir ci-dessous).
+Vous pouvez configurer le serveur d'administration Web à l'aide de la [boîte de dialogue des Propriétés d'administration Web](#settings-dialog-box) (voir ci-dessous).
> Si vous utilisez une application 4D sans interface, vous pouvez utiliser les [arguments de l'*Interface de ligne de commande*](#webadmin-headless-configuration) pour définir les paramètres de base. La définition de paramètres avancés se fait via le fichier de paramètres.
@@ -63,28 +69,30 @@ La fenêtre suivante s'affiche :
#### Lancer le serveur WebAdmin au démarrage
-Cochez cette option pour lancer le serveur web `WebAdmin` automatiquement au démarrage de 4D ou 4D Server (voir [ci-dessus](#launch-at-startup)). Cette option n'est pas cochée par défaut.
+Cochez cette option si vous souhaitez que le serveur d'administration Web soit automatiquement lancé au démarrage de l'application 4D ou 4D Server ([voir ci-dessus](#launch-at-startup)). Cette option n'est pas cochée par défaut.
#### Connexions HTTP sur localhost acceptées
-Quand cette option est cochée, il est possible de se connecter au serveur `WebAdmin` via HTTP sur la même machine que l'application 4D. Cette option est activée par défaut.
+Lorsque cette option est cochée, vous pourrez vous connecter au serveur d'administration Web via HTTP sur la même machine que l'application 4D. Cette option est activée par défaut.
-**Notes :**
+:::note Notes
-- Les connections HTTP autres que sur localhost ne sont jamais acceptées.
-- Même si cette option est activée, quand [HTTPS Accepté](#accept-https) est activé et que la configuration TLS est valide, les connections sur localhost se font via HTTPS.
+- Les connexions HTTP autres que sur localhost ne sont jamais acceptées.
+- Même si cette option est cochée, lorsque [HTTPS accepté](#accept-https) est coché et que la configuration TLS est valide, les connexions locahost utilisent HTTPS.
+
+:::
#### Port HTTP
-Numéro de port utilisé pour les connexions au serveur web `WebAdmin` via HTTP quand **Connexions HTTP sur localhost acceptées** est activé. La valeur par défaut est 7080.
+Numéro de port à utiliser pour les connexions HTTP au serveur d'administration Web lorsque l'option **Connexions HTTP sur localhost acceptées** est cochée. La valeur par défaut est 7080.
#### HTTPS Accepté
-Lorsque cette option est activé, vous pourrez vous connecter au serveur web `WebAdmin` via HTTPS. Cette option est activée par défaut.
+Lorsque cette option est cochée, vous pouvez vous connecter au serveur d'administration Web via HTTPS. Cette option est activée par défaut.
#### Port HTTPS
-Numéro de port utilisé pour les connexions au serveur web `WebAdmin` via HTTPS quand **HTTPS accepté** est activé. La valeur par défaut est 7443.
+Numéro de port à utiliser pour les connexions par HTTPS au serveur d'administration Web lorsque l'option **HTTPS accepté** est cochée. La valeur par défaut est 7443.
#### Chemin du dossier de certificat
@@ -102,7 +110,7 @@ Statut ou format du fichier de logs des requêtes HTTP (HTTPDebugLog_*nn*.txt, s
#### Clé d'accès
-La configuration d'une clé d'accès est obligatoire pour débloquer l'accès au serveur web `webAdmin` via des URL (l'accès via les menus ne requiert pas de clé d'accès). Lorsque aucune clé d'accès n'est définie, il n'est pas possible pour les clients web d'accéder aux interfaces d'administration web telles que l'[Explorateur de données](dataExplorer.md) via des URL. En cas de requête de connexion, une page d'erreur est retournée:
+La définition d'une clé d'accès est obligatoire pour déverrouiller l'accès au serveur d'administration Web via une URL (l'accès via une commande de menu 4D ne nécessite pas de clé d'accès). Lorsque aucune clé d'accès n'est définie, il n'est pas possible pour les clients web d'accéder aux interfaces d'administration web telles que l'[Explorateur de données](dataExplorer.md) via des URL. En cas de requête de connexion, une page d'erreur est retournée:

@@ -122,17 +130,23 @@ Cette option n'apparaît que si la licence Qodly Studio est activée.
Cette option permet l'accès utilisateur à [Qodly Studio](../WebServer/qodly-studio.md) au niveau de l'application 4D. Notez que vous devez également [activer l'accès au niveau de chaque projet](../settings/web.md#enable-access-to-qodly-studio).
-## Configuration de WebAdmin sans interface
+:::note
+
+Cette option est automatiquement cochée si vous avez utilisé la [Boîte de dialogue de configuration en un clic](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration).
+
+:::
+
+## Configuration sans interface
-Pour gérer le contenu du fichier, vous pouvez utiliser la [fenêtre de paramètres WebAdmin](#settings-dialog-box) de l'application 4D avec une interface, et la lancer sans interface ensuite. Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Toutes les [propriétés du serveur d'administration Web](#settings) sont stockées dans le fichier `WebAdmin.4DSettings`. Il existe un fichier `WebAdmin.4DSettings` par défaut pour chaque application 4D et 4D Server, de sorte qu'il est possible de déployer plusieurs applications sur la même machine hôte.
Dans le cas d'une application 4D ou 4D Server sans interface, vous pouvez configurer et utiliser le fichier `WebAdmin.4DSettings` par défaut, ou désigner un fichier `.4DSettings` personnalisé.
-Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server. Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Pour définir le contenu du fichier, vous pouvez utiliser la [boîte de dialogue des propriétés WebAdmin](#settings-dialog-box) de l'application 4D avec interface et l'exécuter ensuite sans interface. Le fichier par défaut `WebAdmin.4DSettings` est alors utilisé.
Vous pouvez aussi définir un fichier `.4DSettings`. (format XML) et l'utiliser à la place du fichier par défaut. Plusieurs arguments dédiés sont disponibles dans [l'interface de ligne de commande](cli.md) pour prendre en charge cette fonctionnalité.
-> Cette clé d'accès n'est pas stockée de façon transparente dans le fichier `.4DSettings`.
+> La clé d'accès n'est pas stockée en clair dans le fichier `.4DSettings`.
Voici un exemple :
@@ -143,12 +157,19 @@ Voici un exemple :
```
-## Authentification et Session
+## Authentification
-- Lorsqu'on accède à une page de gestion web en entrant une URL et sans identification préalable, une authentification est nécessaire. L'utilisateur doit entrer la [clé d'accès](#access-key) dans une fenêtre d'authentification. Si aucune clé d'accès n'a été définie dans les propriétés `WebAdmin`, aucun accès via URL n'est possible.
+Lorsqu'on accède à une page web contrôlée par le serveur d'administration Web en saisissant une URL et sans identification préalable, une authentification est requise. L'utilisateur doit entrer la [clé d'accès](#access-key) dans une fenêtre d'authentification:
-- Qand une page d'administration web est ouverte directement depuis un menu 4D ou 4D Server, tel que **Enregistrements> Data Explorer**ou**Fenêtre> Explorateur de données**(4D Server), l'accès est autorisé sans authentification.
+
-Une fois l'accès autorisé, une [session web](WebServer/sessions.md) est créée avec les privilèges "WebAdmin" sur l'application 4D. Tant que la session courante a le privilège "WebAdmin", le composant `WebAdmin` sert les pages demandées dans les requêtes.
+Si la clé d'accès n'a pas été définie dans les propriétés du serveur d'administration Web, l'accès par URL n'est pas possible (un message spécifique s'affiche).
+Lorsqu'on accède à une page web contrôlée par la page du serveur d'administration Web directement à partir d'une ligne de menu de 4D ou de 4D Server (tel que **Enregistrements > Explorateur de données** ou **Fenêtre > Explorateur de données** (4D Server)), l'accès est accordé sans authentification, l'utilisateur est automatiquement authentifié.
+
+:::note
+
+Une fois l'accès accordé, une [session web](WebServer/sessions.md) avec un privilège spécifique "WebAdmin" est créée par le serveur d'administration Web. Ce privilège permet d'accéder librement à toutes les données via les process web, dès lors qu'aucune [autorisation spécifique n'est appliquée aux ressources](../ORDA/privileges.md).
+
+:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md b/i18n/fr/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
index ef8af59770420b..61ae5fbb7d749c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
@@ -429,5 +429,6 @@ Dans l'exemple suivant, le caractère **retour chariot** (séquence d'échappeme
Les conventions suivantes sont utilisées dans la documentation du langage 4D :
- les caractères `{ }` (accolades) indiquent des paramètres facultatifs. Par exemple, `.delete( { option : Integer } )` signifie que le paramètre *option* peut être omis lors de l'appel de la fonction.
-- la notation `{ ; ...param }` indique un nombre illimité de paramètres. Par exemple, `.concat( value : any { ;...valueN } ) : Collection` signifie qu'un nombre illimité de valeurs de n'importe quel type peut être passé à la fonction.
+- the `{; ...*param* : Type}` notation indicates an unlimited number of parameters of the same type. For example, `.concat( value : any { ;...valueN : Text } ) : Collection` means that an unlimited number of values of any type can be passed to the function.
+- the `{; ...(*param* : Type ; *param2* : Type) }` notation indicates an unlimited number of groups of parameters. For example, `COLLECTION TO ARRAY ( collection : Collection ; array : Array {; propertyName : Text}{; ...(array : Array ; propertyName : Text) } )` means that an unlimited number of couple values or type array/text can be passed to the command.
- le mot-clé `any` est utilisé pour les paramètres qui peuvent être de n'importe quel type (nombre, texte, booléen, date, heure, objet, collection...).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md
index ab71886bbdfff4..7c0dc8a603808f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Debugging/debugger.md
@@ -42,7 +42,7 @@ La fenêtre du débogueur est généralement affichée sur la machine où le cod
:::note Notes
- Si le serveur fonctionne en mode headless, aucune fenêtre de débogage ne peut être affichée sur le serveur, vous devez utiliser le débogueur distant. Voir [Débogage depuis des machines distantes](./debugging-remote.md).
-- Vous pouvez également [attacher le débogueur Qodly Studio à une application 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) si vous devez déboguer des pages Qodly dans un environnement déployé.
+- Vous pouvez également [attacher le débogueur Qodly Studio à une application 4D Server](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) si vous devez déboguer des pages Qodly dans un environnement déployé.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/building.md b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/building.md
index 1fa977a96c8a2e..300a98597ff1b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/building.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/building.md
@@ -407,8 +407,8 @@ Des éléments doivent être installés :
Pour activer cette fonctionnalité, ajoutez les clés `DatabaseToEmbedInClientWinFolder` et/ou `DatabaseToEmbedInClientMacFolder` dans le fichier de configuration *buildApp*. Lorsque l'une de ces clés est présente, le processus de génération de l'application cliente génère une application monoposte : la structure compilée, au lieu du fichier *EnginedServer.4Dlink*, est placée dans le dossier "Database".
-- Si un dossier "Data" par défaut existe dans l'application monoposte, une licence est intégrée.
-- Si un dossier "Data" par défaut n'existe pas dans l'application monoposte, elle sera exécutée sans le fichier de données et sans licence.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
Le scénario standard est le suivant :
@@ -497,10 +497,11 @@ Les modules optionnels suivants peuvent être désélectionnés :
- **SpellChecker**: Utilisé pour les fonctions intégrées de [vérification orthographique](../FormObjects/properties_Entry.md#auto-spellcheck) et les commandes disponibles pour les zones de saisie et les zones 4D Write Pro.
- **4D Updater**: Contrôle la [mise à jour automatique](#what-is-a-clientserver-application) des parties clientes et est utilisé par la commande `SET UPDATE FOLDER` pour [les mises à jour automatiques du serveur](#automatic-updating-of-server-or-single-user
+- **4D Qodly Pro and Data Explorer**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/) as well as the [Data Explorer](../Admin/dataExplorer.md).
## Page Licences & Certificat
-La page Licences & Certificat vous permet de :
+The Licenses & Certificate page can be used to:
- configurer les [licences de déploiement](../Admin/licenses.md#deployment-licenses) que vous souhaitez intégrer dans votre application [autonome](#application-page) ou [client-serveur](#clientserver-page),
- signer l'application à l'aide d'un certificat sous macOS.
@@ -535,7 +536,7 @@ Une connexion internet est requise sur la machine de l'utilisateur lors du premi
- La commande [`License info`](../commands/license-info.md) vous permet de connaître le type de licence de l'application (collection *.attributes*) et sa date d'expiration (objet *.expirationDate*).
- La clé xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permet de gérer les versions d'évaluation.
-- La commande [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) ne fait rien lorsqu'elle est appelée depuis une version d'évaluation.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/clientServer.md b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
index 430dcb62791647..bd10698d05f3eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
@@ -85,93 +85,3 @@ Veillez cependant aux différences de comportement suivantes, comparées à [l'a
> Il n'est pas recommandé d'installer des plug-ins ou des composants au niveau de l'application 4D ou 4D Server.
-## Sessions utilisateur distant
-
-Sur le serveur, la commande [`Session`](../commands/session.md) renvoie un objet `session` décrivant la session utilisateur courante. Cet objet est géré via les fonctions et les propriétés de la classe [`Session`](../API/SessionClass.md).
-
-:::tip Articles de blog sur le sujet
-
-[Objet session distante 4D avec connexion Client/Serveur et procédure stockée](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
-
-:::
-
-### Utilisation
-
-L'objet `session` vous permet de gérer les informations et les privilèges de la session de l'utilisateur distant.
-
-Vous pouvez partager des données entre tous les process de la session utilisateur en utilisant l'objet partagé [`session.storage`](../API/SessionClass.md#storage). Par exemple, vous pouvez lancer une procédure d'authentification et de vérification de l'utilisateur lorsqu'un client se connecte au serveur, impliquant la saisie d'un code envoyé par e-mail ou SMS dans l'application. Ensuite, vous ajoutez les informations de l'utilisateur au storage de session, ce qui permet au serveur d'identifier l'utilisateur. De cette façon, le serveur 4D peut accéder aux informations de l'utilisateur pour tous les process clients, permettant l'écriture de code personnalisé en fonction du rôle de l'utilisateur.
-
-Vous pouvez également attribuer des privilèges à une session d'utilisateur distant pour contrôler l'accès lorsque la session provient de pages Qodly exécutées dans des zones Web.
-
-### Disponibilité
-
-L'objet `session` de l'utilisateur distant est disponible depuis :
-
-- Les méthodes projet qui ont l'attribut [Exécuter sur serveur](../Project/code-overview.md#execute-on-server) (elles sont exécutées dans le process jumeau du process client),
-- Les Triggers,
-- Les [fonctions du modèle de données](../ORDA/ordaClasses.md) ORDA (sauf celles déclarées avec le mot-clé [`local`](../ORDA/ordaClasses.md#local-functions),
-- Les méthodes base `On Server Open Connection` et `On Server Shutdown Connection`.
-
-:::info
-
-Toutes les procédures stockées sur le serveur partagent la même session utilisateur virtuelle. Pour plus d'informations, consultez [cette page sur doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Partage de la session avec des pages Qodly dans des zones Web
-
-Les sessions d'utilisateurs distant peuvent être utilisées pour gérer des applications client/serveur dans lesquelles des [pages Qodly](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) sont utilisées comme interface, fonctionnant sur des machines distantes. Avec cette configuration, vos applications disposent d'interfaces web modernes basées sur les CSS, tout en bénéficiant de la puissance et de la simplicité du développement intégré client/serveur. Dans ces applications, les pages Qodly sont exécutées dans des [zones Web](../FormObjects/webArea_overview.md) 4D standard.
-
-Pour gérer cette configuration, vous devez utiliser des sessions d'utilisateurs distants. En fait, les requêtes provenant à la fois de l'application 4D distante et de ses pages Qodly chargées dans les zones Web doivent fonctionner dans le cadre d'une session utilisateur unique. Il suffit de partager la même session entre le client distant et ses pages web afin de disposer du même [session storage](../API/SessionClass.md#storage) et de la même licence 4D client, quelle que soit l'origine de la demande.
-
-Notez que les [privilèges](../ORDA/privileges.md) doivent être définis dans la session avant d'exécuter une requête web à partir d'une zone web, afin que l'utilisateur obtienne automatiquement ses privilèges pour l'accès au web (voir l'exemple). N'oubliez pas que les privilèges ne s'appliquent qu'aux requêtes provenant du web, et non au code 4D exécuté dans une session distante standard.
-
-Les sessions partagées sont gérées par des [tokens OTP](../WebServer/sessions.md#session-token-otp). Après avoir créé un token OTP sur le serveur pour la session de l'utilisateur, vous ajoutez le token (via la valeur du paramètre `$4DSID`) aux requêtes web envoyées à partir de zones Web contenant des pages Qodly afin que la session de l'utilisateur sur le serveur soit identifiée et partagée. Du côté du serveur web, si une requête web contient un *id OTP* dans le paramètre $4DSID, la session correspondant à ce token OTP est utilisée.
-
-:::tip Article(s) de blog sur le sujet
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Exemple
-
-```4d
-var $otp : Text
-
-// Certains privilèges sont attribués à la session de l'utilisateur distant sur le serveur pour un accès web ultérieur
-ds.resetPrivileges("basic")
-
-// Un OTP est créé sur le serveur pour cette session client distante
-$otp:=ds.getOTP()
-
-
-// L'utilisateur dispose déjà des privilèges requis pour un accès web
-// et la même session est partagée entre cet utilisateur distant et l'application web Qodly
-WA OPEN URL(* ; "Welcome" ; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-Fonction *resetPrivileges()* dans la classe Datastore :
-
-```4d
-// Cette fonction est exécutée sur le serveur et place des privilèges
-// dans la session pour un accès web ultérieur
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-Fonction *getOTP()* dans la classe Datastore :
-
-```4d
-// Cette fonction est exécutée sur le serveur et génère un OTP
-// capable de récupérer cette session d'utilisateur à distance
-
-Function getOTP() : Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/sessions.md b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/sessions.md
new file mode 100644
index 00000000000000..8dd4b43801fde1
--- /dev/null
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Types de sessions
+
+Desktop sessions include:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sessions utilisateur distant
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Cet objet est géré via les fonctions et les propriétés de la classe [`Session`](../API/SessionClass.md).
+
+:::note
+
+On a remote 4D, the `session` object always returns null.
+
+:::
+
+:::tip Articles de blog sur le sujet
+
+[Objet session distante 4D avec connexion Client/Serveur et procédure stockée](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
+
+:::
+
+### Utilisation
+
+L'objet `session` vous permet de gérer les informations et les privilèges de la session de l'utilisateur distant.
+
+Vous pouvez partager des données entre tous les process de la session utilisateur en utilisant l'objet partagé [`session.storage`](../API/SessionClass.md#storage). Par exemple, vous pouvez lancer une procédure d'authentification et de vérification de l'utilisateur lorsqu'un client se connecte au serveur, impliquant la saisie d'un code envoyé par e-mail ou SMS dans l'application. Ensuite, vous ajoutez les informations de l'utilisateur au storage de session, ce qui permet au serveur d'identifier l'utilisateur. De cette façon, le serveur 4D peut accéder aux informations de l'utilisateur pour tous les process clients, permettant l'écriture de code personnalisé en fonction du rôle de l'utilisateur.
+
+Vous pouvez également attribuer des privilèges à une session d'utilisateur distant pour contrôler l'accès lorsque la session provient de pages Qodly exécutées dans des zones Web.
+
+### Disponibilité
+
+L'objet `session` de l'utilisateur distant est disponible depuis :
+
+- Les méthodes projet qui ont l'attribut [Exécuter sur serveur](../Project/code-overview.md#execute-on-server) (elles sont exécutées dans le process jumeau du process client),
+- Les Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Stored procedure sessions
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilisation
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilité
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### Utilisation
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilité
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. Avec cette configuration, vos applications disposent d'interfaces web modernes basées sur les CSS, tout en bénéficiant de la puissance et de la simplicité du développement intégré client/serveur. Dans ces applications, les pages Qodly sont exécutées dans des [zones Web](../FormObjects/webArea_overview.md) 4D standard.
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Les sessions partagées sont gérées par des [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. Du côté du serveur web, si une requête web contient un *id OTP* dans le paramètre $4DSID, la session correspondant à ce token OTP est utilisée.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Article(s) de blog sur le sujet
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Exemple
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Extensions/develop-components.md b/i18n/fr/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
index 134abd41deac79..3e29a0bb5042c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
@@ -448,6 +448,30 @@ L'exécution du code d'initialisation ou de fermeture se fait au moyen de la mé
> Pour des raisons de sécurité, vous devez autoriser explicitement l'exécution de la méthode base `On Host Database Event` dans la base hôte afin de pouvoir l'appeler. Pour ce faire, vous devez cocher l'option [**Exécuter la méthode "Sur événement base hôte" des composants**](../settings/security.md#options) dans la page Sécurité des Propriétés du projet.
+## Icône personnalisée
+
+You can use a **custom icon** for your dependency, so that it can be visually distinguished from other components in the [Project Dependencies panel](../Project/components.md#monitoring-project-dependencies).
+
+When no custom icon is defined, components use a **default icon**:
+
+
+
+To declare a custom icon for your component:
+
+1. Create a picture file for the icon and name it `logo.svg` or `logo.png`. Note that the picture will be displayed with a square shape (and automatically resized if necessary). The **svg** format is recommended.
+
+2. Copy the icon file in the [**Resources folder**](../Project/architecture.md#resources) of the component.
+
+The logo file will be used in the Project Dependency window for the component, whether it is interpreted or [built](../Desktop/building.md#build-component).
+
+
+
+:::note
+
+If both a `logo.svg` and `logo.png` files are found, the `logo.svg` takes priority.
+
+:::
+
## Info.plist
Les composants peuvent avoir un fichier `Info.plist` dans leur [dossier racine](../Project/architecture.md) pour fournir des informations supplémentaires lisibles par le système (macOS uniquement) et le [Gestionnaire de dépendances](../Project/components.md#loading-components).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md b/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
index 7dc05bdc938a0d..7808c7c9a09363 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ Pour répondre à ces besoins, 4D propose les mécanismes suivants :
> La commande `GOTO OBJECT` peut rechercher l’objet de destination dans le formulaire parent même si elle exécutée depuis un sous-formulaire.
-#### Commande CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
La commande `CALL SUBFORM CONTAINER` permet à une instance de sous-formulaire d'envoyer un [événement](../Events/overview.md) à l'objet conteneur de sous-formulaire, qui peut alors le traiter dans le contexte du formulaire parent. L’événement est reçu dans la méthode de l’objet conteneur. Il peut s’agir à l’origine de tout événement détecté par le sous-formulaire (clic, glisser-déposer, etc.).
Le code de l’événement est libre (par exemple, 20000 ou -100). Vous pouvez soit utiliser un code correspondant à un événement existant (par exemple, 3 pour `Sur validation`), soit utiliser un code personnalisé. Dans le premier cas, seuls les événements présents dans la liste des événements "cochables" des conteneurs de sous-formulaire peuvent être utilisés (cf. Liste des propriétés). Dans le second cas, le code ne doit correspondre à aucun événement formulaire existant. Il est conseillé d’utiliser une valeur négative pour avoir l’assurance que 4D n’utilisera pas ce code dans les versions futures.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Pour plus d'informations, reportez-vous à la description de la commande `CALL SUBFORM CONTAINER`.
#### Commande EXECUTE METHOD IN SUBFORM
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md
index 240518af5c5023..0d2f195467cb86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Notes/updates.md
@@ -9,11 +9,12 @@ Lisez [**Les nouveautés de 4D 21 R2**](https://blog.4d.com/fr-whats-new-in-4d-v
#### Points forts
-- [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) has been enhanced to provide greater precision in error detection (see [this blog post](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) for more information).
-- [4D Write Pro standard actions](../WritePro/user-legacy/standard-actions.md) that apply [lists](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) now automatically adjust paragraph margins to keep markers positioned inside it.
-- Built-in support of `order by` in query strings for AI vector searches using [`query()`](../API/DataClassClass.md#query-by-vector-similarity) functions and the [REST API](../REST/$orderby.md).
-- 4D AIKit component: new [File API](../aikit/Classes/OpenAIFilesAPI.md) class to implement **file upload** features.
-- [**Find in Design**](../Project/search-replace.md#search-in-components) and [**Replace in contents**](../Project/search-replace.md#replace-in-contents) features can now support editable components.
+- Le [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) a été amélioré pour fournir une plus grande précision dans la détection des erreurs (voir [cet article de blog](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) pour plus d'informations).
+- Les [actions standard de 4D Write Pro](../WritePro/user-legacy/standard-actions.md) qui s'appliquent aux [listes](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) ajustent désormais automatiquement les marges des paragraphes pour que les marqueurs restent positionnés à l'intérieur de cette marge.
+- Prise en charge intégrée de `order by` dans les requêtes pour les recherches vectorielles IA en utilisant les fonctions [`query()`](../API/DataClassClass.md#query-by-vector-similarity) et l'[API REST](../REST/$orderby.md).
+- You can [customize the icons of your components](../Extensions/develop-components.md#custom-icon).
+- Composant 4D AIKit : nouvelle classe [File API](../aikit/Classes/OpenAIFilesAPI.md) pour implémenter les fonctionnalités de **téléversement de fichiers**.
+- [**Chercher dans le développement**](../Project/search-replace.md#search-in-components) et [**Remplacer dans le contenu**](../Project/search-replace.md#replace-in-contents) peuvent maintenant inclure les composants modifiables.
- [**Liste des bugs corrigés**](https://bugs.4d.fr/fixedbugslist?version=21_R2) : liste de tous les bugs qui ont été corrigés dans 4D 21 R2.
#### Changements de comportement
@@ -22,7 +23,7 @@ Lisez [**Les nouveautés de 4D 21 R2**](https://blog.4d.com/fr-whats-new-in-4d-v
| Bibliothèque | Version courante | Mise à jour dans 4D | Commentaire |
| ------------ | -------------------------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | 9b86817 | **21 R2** | Utilisé pour QUIC |
+| BoringSSL | 9b86817 | **21** | Utilisé pour QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | Utilisé pour la vérification orthographique dans les formulaires 4D et 4D Write Pro |
| ICU | 77.1 | **21** | Cette mise à jour entraîne une reconstruction automatique des index alphanumériques, textes et objets. |
@@ -32,10 +33,10 @@ Lisez [**Les nouveautés de 4D 21 R2**](https://blog.4d.com/fr-whats-new-in-4d-v
| Libuv | 1.51.0 | **21** | Utilisé pour QUIC |
| libZip | 1.11.4 | **21** | Utilisé par les classes zip, 4D Write Pro, les composants svg et serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.18.0 | **21 R2** | Utilisé pour QUIC |
+| ngtcp2 | 1.18.0 | **21** | Utilisé pour QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Utilisé pour [`WP Export document`](../WritePro/commands/wp-export-document.md) et [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
-| SpreadJS | 17.1.0 | 20 R7 | Voir [ce blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) pour un aperçu des nouvelles fonctionnalités. |
+| SpreadJS | 18.2.0 | 21 R2 | Voir [ce blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-21-r2/) pour un aperçu des nouvelles fonctionnalités. |
| webKit | WKWebView | 19 | |
| Xerces | 3.3.0 | **21** | Utilisé pour les commandes XML |
| Zlib | 1.3.1 | **21** | |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/orda-events.md b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
index ddd14e1fbaa77c..e5234b3922e706 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/orda-events.md
@@ -24,7 +24,7 @@ Vous ne pouvez pas déclencher directement l'exécution d'une fonction d'événe
:::info Note de compatibilité
-Les événements d'entité ORDA dans le magasin de données sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Note also that, unlike triggers, ORDA entity events do not lock the entire underlying table of a dataclass while saving or dropping entities. Several events can run in parallel as long as they involve distinct entities (i.e. records).
+Les événements d'entité ORDA dans le datastore sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Notez également que, contrairement aux triggers, les événements d'entité ORDA ne verrouillent pas l'ensemble de la table sous-jacente d'une dataclass lors de l'enregistrement ou de la suppression d'entités. Plusieurs événements peuvent se dérouler en parallèle tant qu'ils concernent des entités distinctes (c'est-à-dire des enregistrements distincts).
:::
@@ -170,11 +170,11 @@ Function event touched($event : Object)
#### Exemple 2
-The "touched" event is useful when it is not possible to write indexed query code in [`Function query()`](./ordaClasses.md#function-query-attributename) for a [computed attribute](./ordaClasses.md#computed-attributes).
+L'événement "touched" est utile quand il n'est pas possible d'écrire un code de requête indexée dans [`Function query()`](./ordaClasses.md#function-query-attributename) pour un [attribut calculé](./ordaClasses.md#computed-attributes).
-This is the case for example, when your [`query`](./ordaClasses.md#function-query-attributename) function has to compare the value of different attributes from the same entity with each other. You must use formulas in the returned ORDA query -- which triggers sequential queries.
+C'est le cas, par exemple, lorsque votre fonction [`query`](./ordaClasses.md#function-query-attributename) doit comparer la valeur de différents attributs de la même entité. Vous devez utiliser des formules dans la requête ORDA renvoyée, ce qui déclenche des requêtes séquentielles.
-To fully understand this case, let's examine the following two calculated attributes:
+Pour bien comprendre ce cas, examinons les deux attributs calculés suivants :
```4d
Function get onGoing() : Boolean
@@ -184,9 +184,9 @@ Function get sameDay() : Boolean
return (This.departureDate=This.arrivalDate)
```
-Even though they are very similar, these functions cannot be associated with identical queries because they do not compare the same types of values. The first compares attributes to a given value, while the second compares attributes to each other.
+Même si elles sont très similaires, ces fonctions ne peuvent pas être associées à des requêtes identiques car elles ne comparent pas les mêmes types de valeurs. Le premier compare les attributs à une valeur donnée, tandis que le second compare les attributs entre eux.
-- For the *onGoing* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function is simple to write and uses indexed attributes:
+- Pour l'attribut *onGoing*, la fonction [`query`](./ordaClasses.md#function-query-attributename) est simple à écrire et utilise des attributs indexés :
```4d
Function query onGoing($event : Object) : Object
@@ -207,12 +207,12 @@ Function query onGoing($event : Object) : Object
End case
$myQuery:=($onGoingValue) ? "departureDate <= :1 AND arrivalDate >= :1" : "departureDate > :1 OR arrivalDate < :1"
- // the ORDA query string uses indexed attributes, it will be indexed
+ // la chaîne de requête ORDA utilise des attributs indexés, elle sera indexée
$parameters.push(Current date)
return {query: $myQuery; parameters: $parameters}
```
-- For the *sameDay* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function requires an ORDA query based on formulas and will be sequential:
+- Pour l'attribut *sameDay*, la fonction [`query`](./ordaClasses.md#function-query-attributename) requiert une requête ORDA basée sur des formules et sera séquentielle :
```4d
Function query sameDay($event : Object) : Text
@@ -230,11 +230,11 @@ Function query sameDay($event : Object) : Text
End case
return ($sameDayValue) ? "eval(This.departureDate = This.arrivalDate)" : "eval(This.departureDate != This.arrivalDate)"
- // the ORDA query string uses a formula, it will not be indexed
+ // la requête ORDA utilise une formule, elle ne sera pas indexée
```
-- Using a **scalar** *sameDay* attribute updated when other attributes are "touched" will save time:
+- L'utilisation d'un attribut **scalaire** *sameDay* mis à jour lorsque d'autres attributs sont "touched" permet de gagner du temps :
```4d
//BookingEntity class
@@ -250,7 +250,7 @@ Function event touched arrivalDate($event : Object)
```
-#### Example 3 (diagram): Client/server with the `local` keyword:
+#### Exemple 3 (diagramme) : Client/serveur avec le mot-clé `local` :
```mermaid
@@ -265,11 +265,11 @@ Note over Client:$people.lastname is uppercased
Client->>+Server: $people.apply()
- Note over Server: The $people entity is received with the lastname attribute uppercased
+ Note over Server: L'entity $people est reçue avec l'attribut lastname en majuscules
```
-#### Example 4 (diagram): Client/server without the `local` keyword
+#### Exemple 4 (diagramme) : Client/serveur avec le mot-clé `local`
```mermaid
@@ -279,37 +279,37 @@ sequenceDiagram
Client->>+Client: $people.lastname:="Brown"
- Note over Client:$people.lastname is not uppercased
+ Note over Client:$people.lastname n'est pas en majuscules
Client->>+Server: $people.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
- Server-->>-Client: The $people entity is updated
+ Server-->>-Client: L'entité $people est mise à jour
- Note over Client:$people.lastname is uppercased
+ Note over Client:$people.lastname est en majuscules
```
-#### Example 5 (diagram): Qodly application
+#### Exemple 5 (diagramme) : Application Qodly
```mermaid
sequenceDiagram
-Qodly page->>+ Server: Get an entity into the People Qodly source
+Qodly page->>+ Server: Récupérer une entité dans la source Qodly People
-Qodly page->>+Qodly page: The user updates People.lastname
+Qodly page->>+Qodly page: L'utilisateur met à jour People.lastname
-Note over Qodly page: The People Qodly source lastname attribute is not uppercased
+Note over Qodly page: L'attribut lastname de la source Qodly People n'est pas en majuscules
-Qodly page->>+ Server: Function call People.apply()
+Qodly page->>+ Server: Appel de fonction People.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
-Server-->>-Qodly page: The People Qodly source is updated
-Note over Qodly page: The People Qodly source lastname attribute is uppercased
+Server-->>-Qodly page: La source Qodly People est mise à jour
+Note over Qodly page: L'attribut lastname de la source Qodly People est en majuscules
```
@@ -324,41 +324,41 @@ Function event validateSave ($event : Object)
// code
```
-This event is triggered each time an entity is about to be saved.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être sauvegardée.
-- if you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- if you defined the function at the attribute level (second syntax), it is called only for this attribute. This function is **not** executed if the attribute has not been touched in the entity.
+- si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut. Cette fonction n'est **pas** exécutée si l'attribut n'a pas été modifié dans l'entité.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following functions:
+Cet événement est déclenché par les fonctions suivantes :
- [`entity.save()`](../API/EntityClass.md#save)
- [`dataClass.fromCollection()`](../API/DataClassClass.md#fromcollection)
-This event is triggered **before** the entity is actually saved and lets you check data consistency so that you can stop the action if needed. For example, you can check in this event that "departure date" < "arrival date".
+Cet événement est déclenché **avant** que l'entité ne soit réellement sauvegardée et vous permet de vérifier la cohérence des données afin d'interrompre l'action si nécessaire. Par exemple, vous pouvez vérifier dans cet événement que "date de départ" < "date d'arrivée".
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
:::note
-It is not recommended to update the entity within this function (using `This`).
+Il n'est pas recommandé de mettre à jour l'entité dans le cadre de cette fonction (en utilisant `This`).
:::
#### Exemple
-In this example, it is not allowed to save a product with a margin lower than 50%. In case of an invalid price attribute, you return an error object and thus, stop the save action.
+Dans cet exemple, il n'est pas permis de sauvegarder un produit dont la marge est inférieure à 50 %. En cas d'attribut de prix non valide, vous renvoyez un objet erreur et arrêtez ainsi l'action de sauvegarde.
```4d
// ProductsEntity class
//
-// validateSave event at attribute level
+// event validateSave au niveau attribut
Function event validateSave margin($event : Object) : Object
var $result : Object
-//The user can't create a product whose margin is < 50%
+//L'utilisateur ne peut pas créer un produit dont la marge est < 50%
If (This.margin<50)
$result:={errCode: 1; message: "The validation of this product failed"; \
extraDescription: {info: "The margin of this product ("+String(This.margin)+") is lower than 50%"}; seriousError: False}
@@ -377,37 +377,37 @@ Function event saving ($event : Object)
// code
```
-This event is triggered each time an entity is being saved.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être sauvegardée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity. The function is executed even if no attribute has been touched in the entity (e.g. in case of sending data to an external app each time a save is done).
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute. The function is **not** executed if the attribute has not been touched in the entity.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité. La fonction est exécutée même si aucun attribut n'a été touché dans l'entité (par exemple, dans le cas de l'envoi de données à une application externe à chaque fois qu'une sauvegarde est effectuée).
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut. La fonction n'est **pas** exécutée si l'attribut n'a pas été touché dans l'entité.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following functions:
+Cet événement est déclenché par les fonctions suivantes :
- [`entity.save()`](../API/EntityClass.md#save)
- [`dataClass.fromCollection()`](../API/DataClassClass.md#fromcollection)
-This event is triggered **while** the entity is actually saved. If a [`validateSave()`](#function-event-validatesave) event function was defined, the `saving()` event function is called if no error was triggered by `validateSave()`. For example, you can use this event to create a document on a Google Drive account.
+Cet événement est déclenché **pendant que** l'entité est sauvegardée. Si une fonction d'événement [`validateSave()`](#function-event-validatesave) a été définie, la fonction d'événement `saving()` est appelée si aucune erreur n'a été déclenchée par `validateSave()`. Par exemple, vous pouvez utiliser cet événement pour créer un document sur un compte Google Drive.
:::note
-The business logic should raise errors which can't be detected during the `validateSave()` events, e.g. a network error
+La logique applicative doit générer les erreurs qui ne peuvent pas être détectées lors des événements `validateSave()`, par exemple une erreur de réseau.
:::
-During the save action, 4D engine errors can be raised (index, stamp has changed, not enough space on disk).
+Lors de l'action de sauvegarde, des erreurs du moteur 4D peuvent être générées (index, le marqueur stamp a changé, pas assez d'espace sur le disque).
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-When a file is saved on disk, catch errors related to disk space for example.
+Lorsqu'un fichier est sauvegardé sur le disque, intercepter par exemple les erreurs liées à l'espace disque.
```4d
-// ProductsEntity class
-// saving event at attribute level
+// Classe ProductsEntity
+// Evénement save au niveau de l'attribut
Function event saving userManualPath($event : Object) : Object
var $result : Object
@@ -417,17 +417,17 @@ var $fileCreated : Boolean
If (This.userManualPath#"")
$userManualFile:=File(This.userManualPath)
- // The user manual document file is created on the disk
- // This may fail if no more space is available
+ // Le fichier du manuel de l'utilisateur est créé sur le disque
+ // Cela peut échouer s'il n'y a plus d'espace disponible
Try
- // The file content has been generated and stored in a map in Storage.docMap previously
- $docInfo:=Storage.docMap.query("name = :1"; This.name).first()
+ // Le contenu du fichier a été généré et stocké dans une carte dans Storage.docMap précédemment
+ $docInfo:=Storage.docMap.query("name = :1" ; This.name).first()
$userManualFile.setContent($docInfo.content)
Catch
- // No more room on disk for example
+ // Il n'y a plus de place sur le disque par exemple
$result:={/
- errCode: 1; message: "Error during the save action for this product"; /
- extraDescription: {info: "There is no available space on disk to store the user manual"}/
+ errCode : 1 ; message : "Error during the save action for this product" ; /
+ extraDescription : {info : "Il n'y a pas d'espace disponible sur le disque pour stocker le manuel de l'utilisateur"}/
}
End try
End if
@@ -438,7 +438,7 @@ return $result
:::note
-The content of the file is generated outside the `saving` event because it can be time consuming.
+Le contenu du fichier est généré en dehors de l'événement `saving` car cela peut prendre du temps.
:::
@@ -451,30 +451,30 @@ Function event afterSave($event : Object)
// code
```
-This event is triggered just after an entity is saved in the data file, when at least one attribute was modified. It is not executed if no attribute has been touched in the entity.
+Cet événement est déclenché juste après la sauvegarde d'une entité dans le fichier de données, lorsqu'au moins un attribut a été modifié. Elle n'est pas exécutée si aucun attribut n'a été modifié dans l'entité.
-This event is useful after saving data to propagate the save action outside the application or to execute administration tasks. For example, it can be used to send a confirmation email after data have been saved. Or, in case of error while saving data, it can make a rollback to restore a consistent state of data.
+Cet événement est utile après la sauvegarde des données pour propager l'action de sauvegarde en dehors de l'application ou pour exécuter des tâches d'administration. Par exemple, il peut être utilisé pour envoyer un courriel de confirmation après la sauvegarde des données. Ou, en cas d'erreur lors de l'enregistrement des données, il peut effectuer un retour en arrière pour restaurer un état cohérent des données.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-- To avoid infinite loops, calling a [`save()`](../API/EntityClass.md#save) on the current entity (through `This`) in this function is **not allowed**. It will raise an error.
-- Throwing an [error object](#error-object) is **not supported** by this function.
+- Pour éviter les boucles infinies, appeler un [`save()`](../API/EntityClass.md#save) sur l'entité courante (via `This`) dans cette fonction n'est **pas autorisé**. Cela provoquera une erreur.
+- Faire un throw d'un [objet erreur](#error-object) n'est **pas pris en charge** par cette fonction.
#### Exemple
-If an error occurred in the above saving event, the attribute value is reset accordingly in the `afterSave` event:
+Si une erreur s'est produite lors de l'événement de sauvegarder ci-dessus, la valeur de l'attribut est réinitialisée en conséquence dans l'événement `afterSave` :
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event afterSave($event : Object)
If (($event.status.success=False) && ($event.status.errors=Null))
- // $event.status.errors is filled if the error comes from the validateSave event
+ // $event.status.errors est rempli si l'erreur provient de l'événement validateSave
- // The userManualPath attribute has not been properly saved
- // Its value is reset
+ // L'attribut userManualPath n'a pas été correctement sauvegardé
+ // Sa valeur est réinitialisée
If ($event.savedAttributes.indexOf("userManualPath")=-1)
- This.userManualPath:=""
+ This.userManualPath:="
This.status:="KO"
End if
@@ -491,38 +491,38 @@ Function event validateDrop ($event : Object)
// code
```
-This event is triggered each time an entity is about to be dropped.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être supprimée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following features:
+Cet événement est déclenché par les fonctionnalités suivantes :
- [`entity.drop()`](../API/EntityClass.md#drop)
- [`entitySelection.drop()`](../API/DataClassClass.md#fromcollection)
-- [deletion control rules](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) that can be defined at the database structure level.
+- [règles de contrôle de la suppression](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) qui peuvent être définies au niveau de la structure de la base de données.
-This event is triggered **before** the entity is actually dropped, allowing you to check data consistency and if necessary, to stop the drop action.
+Cet événement est déclenché **avant** que l'entité ne soit effectivement supprimée, ce qui permet de vérifier la cohérence des données et, le cas échéant, d'interrompre l'action de suppression.
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-In this example, it is not allowed to drop a product that is not labelled "TO DELETE". In this case, you return an error object and thus, stop the drop action.
+Dans cet exemple, il n'est pas permis de supprimer un produit qui n'est pas libellé "TO DELETE". Dans ce cas, vous renvoyez un objet d'erreur et stoppez ainsi l'action de suppression.
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event validateDrop status($event : Object) : Object
-var $result : Object
+var $result : Objet
-// Products must be marked as TO DELETE to be dropped
+// Les produits doivent être marqués TO DELETE pour être supprimables
If (This.status#"TO DELETE")
- $result:={errCode: 1; message: "You can't drop this product"; \
- extraDescription: {info: "This product must be marked as To Delete"}; seriousError: False}
+ $result:={errCode : 1 ; message : "Vous ne pouvez pas supprimer ce produit" ; \
+ extraDescription : {info : "Ce produit doit être marqué comme à supprimer"} ; seriousError : False}
End if
return $result
@@ -538,35 +538,35 @@ Function event dropping ($event : Object)
// code
```
-This event is triggered each time an entity is being dropped.
+Cet événement est déclenché chaque fois qu'une entité est supprimée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following features:
+Cet événement est déclenché par les fonctionnalités suivantes :
- [`entity.drop()`](../API/EntityClass.md#drop)
- [`entitySelection.drop()`](../API/DataClassClass.md#fromcollection)
-- [deletion control rules](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) that can be defined at the database structure level.
+- [règles de contrôle de la suppression](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) qui peuvent être définies au niveau de la structure de la base de données.
-This event is triggered **while** the entity is actually dropped. If a [`validateDrop()`](#function-event-validatedrop) event function was defined, the `dropping()` event function is called if no error was triggered by `validateDrop()`.
+Cet événement est déclenché **pendant que** l'entité est effectivement supprimée. Si une fonction d'événement [`validateDrop()`](#function-event-validatedrop) a été définie, la fonction d'événement `dropping()` est appelée si aucune erreur n'a été générée par `validateDrop()`.
:::note
-The business logic should raise errors which cannot be detected during the `validateDrop()` events, e.g. a network error.
+La logique applicative doit générer les erreurs qui ne peuvent pas être détectées lors des événements `validateDrop()`, par exemple une erreur de réseau.
:::
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-Here is an example of `dropping` event at entity level:
+Voici un exemple d'événement `dropping` au niveau de l'entité :
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event dropping($event : Object) : Object
var $result : Object
@@ -574,15 +574,15 @@ var $userManualFile : 4D.File
$userManualFile:=File(This.userManualPath)
- // When dropping a product, its user manual is also deleted on the disk
- // This action may fail
+ // Lors de la suppression d'un produit, son manuel d'utilisation est également supprimé sur le disque
+ // Cette action peut échouer
Try
If ($userManualFile.exists)
$userManualFile.delete()
End if
Catch
- // Dropping the user manual failed
- $result:={errCode: 1; message: "Drop failed"; extraDescription: {info: "The user manual can't be dropped"}}
+ // La suppression du manuel d'utilisation a échoué
+ $result:={errCode : 1 ; message : "Drop failed" ; extraDescription : {info : "Le manuel de l'utilisateur ne peut pas être supprimé"}}
End try
return $result
@@ -597,24 +597,24 @@ Function event afterDrop($event : Object)
// code
```
-This event is triggered just after an entity is dropped.
+Cet événement est déclenché juste après la suppression d'une entité.
-This event is useful after dropping data to propagate the drop action outside the application or to execute administration tasks. For example, it can be used to send a cancellation email after data have been dropped. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
+Cet événement est utile après la suppression de données pour propager l'action de suppression en dehors de l'application ou pour exécuter des tâches d'administration. Par exemple, il peut être utilisé pour envoyer un courriel d'annulation après la suppression de données. Ou, en cas d'erreur lors de la suppression des données, il peut enregistrer une information permettant à l'administrateur de vérifier la cohérence des données.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-- To avoid infinite loops, calling a [`drop()`](../API/EntityClass.md#drop) on the current entity (through `This`) in this function is **not allowed**. It will raise an error.
-- Throwing an [error object](#error-object) is **not supported** by this function.
+- Pour éviter les boucles infinies, appeler [`drop()`](../API/EntityClass.md#drop) sur l'entité courante (à travers `This`) dans cette fonction n'est **pas autorisé**. Cela provoquera une erreur.
+- Faire un throw d'un [objet erreur](#error-object) n'est **pas pris en charge** par cette fonction.
:::note
-The dropped entity is referenced by `This` and still exists in memory.
+L'entité supprimée est référencée par `This` et existe toujours en mémoire.
:::
#### Exemple
-If the drop action failed, then the product must be checked manually:
+Si l'action de suppression a échoué, le produit doit être vérifié manuellement :
```4d
Function event afterDrop($event : Object)
@@ -622,8 +622,8 @@ Function event afterDrop($event : Object)
var $status : Object
If (($event.status.success=False) && ($event.status.errors=Null))
- //$event.status.errors is filled
- //if the error comes from the validateDrop event
+ //$event.status.errors est rempli
+ //si l'erreur provient de l'événement validateDrop
This.status:="Check this product - Drop action failed"
$status:=This.save()
End if
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md
index c9fe27abd154c3..159806de4af868 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/ORDA/privileges.md
@@ -27,19 +27,19 @@ Si un utilisateur tente d'exécuter une action et ne dispose pas des droits d'ac
Vous pouvez assigner des actions de permission spécifiques aux ressources suivantes dans votre projet :
-- the [datastore](../ORDA/dsMapping.md#datastore)
-- the [dataclasses](../ORDA/dsMapping.md#dataclass)
-- [attributes](../ORDA/dsMapping.md#attribute) (including [computed](./ordaClasses.md#computed-attributes-1) and [alias](./ordaClasses.md#alias-attributes-1))
-- functions of the [data model classes](../ORDA/ordaClasses.md)
-- [singleton](../REST/$singleton.md) functions
+- le [datastore](../ORDA/dsMapping.md#datastore)
+- les [dataclasses](../ORDA/dsMapping.md#dataclass)
+- les [attributs](../ORDA/dsMapping.md#attribute) (y compris [calculés](./ordaClasses.md#computed-attributes-1) et [alias](./ordaClasses.md#alias-attributes-1))
+- les fonctions des [classes du modèle de données](../ORDA/ordaClasses.md)
+- les fonctions [singleton](../REST/$singleton.md)
Chaque fois qu'on accède à une ressource dans une session (quelle que soit la manière dont on y accède), 4D vérifie que la session dispose des autorisations appropriées et rejette l'accès s'il n'est pas autorisé.
## Permissions
-A permission is the ability to do an action on a resource. For example, *execute the ds.myTable.myFunction()* represents a **permission**. Permissions are defined for the project in the [`roles.json`](#rolesjson-file) file. Each permission can be given to one or more [privileges](#privileges-and-roles).
+Une permission est la possibilité d'effectuer une action sur une ressource. Par exemple, *exécuter la fonction ds.myTable.myFunction()* représente une **permission**. Les permissions sont définies pour le projet dans le fichier [`roles.json`](#rolesjson-file). Chaque permission peut être accordée à un ou plusieurs [privileges](#privileges-and-roles).
-When **no specific permission** has been defined for a resource, access to the resource may be automatically **unrestricted** or **restricted** depending on the [default mode defined for the project](#restriction-modes).
+Quand **aucune permission spécifique** n'a été définie pour une ressource, l'accès à la ressource peut être automatiquement **sans restriction** ou **restreint** selon le [mode par défaut défini pour le projet](#restriction-modes).
### Actions de permission
@@ -67,7 +67,7 @@ Les actions disponibles sont liées à la ressource cible.
Le paramétrage des permissions nécessite d'être cohérent, en particulier les permissions **update** et **drop** ont également besoin d'une permission **read** (mais **create** n'en a pas besoin).
-### Inherited permissions
+### Permissions héritées
Une action de permission définie à un certain niveau est héritée par défaut aux niveaux inférieurs, mais plusieurs niveaux de permissions peuvent être définis :
@@ -164,7 +164,7 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T
## `roles.json`
-The `roles.json` file describes the whole web security settings for the project. La syntaxe du fichier `roles.json` est la suivante:
+Le fichier `roles.json` décrit l'ensemble des paramètres de sécurité du projet. La syntaxe du fichier `roles.json` est la suivante:
| Nom de propriété | | | Type | Obligatoire | Description |
| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- |
@@ -184,19 +184,19 @@ The `roles.json` file describes the whole web security settings for the project.
| | | \[].drop | Collection de chaînes | | Liste de privilèges |
| | | \[].execute | Collection de chaînes | | Liste de privilèges |
| | | \[].promote | Collection de chaînes | | Liste de privilèges |
-| restrictedByDefault | | | Boolean | | If true, access to resources without explicit permissions is denied |
-| forceLogin | | | Boolean | | If true, enables ["forceLogin" mode](../REST/authUsers.md#force-login-mode) |
+| restrictedByDefault | | | Boolean | | Si true, l'accès aux ressources sans permission explicite est refusé |
+| forceLogin | | | Boolean | | Si true, active le mode ["forceLogin"](../REST/authUsers.md#force-login-mode) |
:::caution Rappel
- Le nom de privilège "WebAdmin" est réservé à l'application. Il est déconseillé d'utiliser ce nom pour les privilèges personnalisés.
-- `privileges` and `roles` names are case-insensitive.
+- Les noms de `privileges` et de `roles` ne sont pas sensibles à la casse.
:::
-### Default File Location and Content
+### Emplacement et contenu du fichier par défaut
-When a new project is created, a default `roles.json` file is generated at:
+Lorsqu'un nouveau projet est créé, un fichier `roles.json` par défaut est généré à cet emplacement :
```
/Project/Sources/
@@ -204,7 +204,7 @@ When a new project is created, a default `roles.json` file is generated at:
Voir la section [Architecture](../Project/architecture.md#sources) .
-Default content:
+Contenu par défaut :
```json title="/Project/Sources/roles.json"
@@ -240,30 +240,30 @@ Dans les versions précédentes, le fichier `roles.json` n'était pas créé par
:::note Qodly Studio
-In Qodly Studio for 4D, the login mode can be set using the [**Force login** option](https://developer.4d.com/qodly/4DQodlyPro/force-login) in the Roles and Privileges panel.
+Dans Qodly Studio pour 4D, le mode de connexion peut être réglé en utilisant l'option [**Force login**](https://developer.4d.com/qodly/4DQodlyPro/force-login) dans le panneau Rôles et Privilèges.
:::
-## Restriction Modes
+## Modes de restriction
-The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
+La propriété `restrictedByDefault` configure la manière dont chaque [ressource](#resources) est accessible lorsqu'[aucune permission spécifique n'est définie pour elle](#permission) :
-- **Unrestricted mode** (`restrictedByDefault`: **false**): Resources without defined permissions are accessible to all requests. This mode is suitable for development environments where access can be gradually restricted.
-- **Restricted mode** (`restrictedByDefault`: **true**): Resources without defined permissions are blocked by default. This mode is recommended for production environments where access must be explicitly granted.
+- **Mode sans restriction** (`restrictedByDefault`: **false**) : les ressources sans permissions définies sont accessibles à toutes les requêtes. Ce mode convient aux environnements de développement où l'accès peut être progressivement restreint.
+- **Mode restreint** (`restrictedByDefault` : **true**) : Les ressources qui n'ont pas de permissions définies sont bloquées par défaut. Ce mode est recommandé pour les environnements de production où l'accès doit être explicitement accordé.
:::note Compatibilité
-- When **creating a new project**, the `restrictedByDefault` property is set to **false** in the *roles.json* file (see below). Keep in mind that this configuration is tailored for quick start and smooth development. In production environment, [it is recommended to set the `restrictedByDefault` and `forceLogin` properties to **true**](#configuring-restrictedbydefault-and-forcelogin-properties).
-- In **projects converted from previous releases**; when enabling access to Qodly Studio using the [One-click configuration dialog](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration), the `restrictedByDefault` property is added with value **true** in the *roles.json* file.
+- Lors de la **création d'un projet**, la propriété `restrictedByDefault` est mise à **false** dans le fichier *roles.json* (voir ci-dessous). Gardez à l'esprit que cette configuration est conçue pour un démarrage rapide et un développement fluide. Dans un environnement de production, [il est recommandé de définir les propriétés `restrictedByDefault` et `forceLogin` à **true**](#configuring-restrictedbydefault-and-forcelogin-properties).
+- Dans les **projets convertis à partir de versions précédentes** ; lors de l'activation de l'accès à Qodly Studio en utilisant le [Dialogue de configuration en un clic](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration), la propriété `restrictedByDefault` est ajoutée avec la valeur **true** dans le fichier *roles.json*.
:::
-### Recommended Configuration
+### Configuration recommandée
-Depending on your environment, the recommended settings are:
+En fonction de votre environnement, les paramètres recommandés sont les suivants :
-- **Production**: Set both `restrictedByDefault` and [`forceLogin`](../REST/authUsers.md#force-login-mode) to **true**. This ensures maximum security by requiring user authentication and explicitly defined permissions for resource access.
-- **Development**: Set both `restrictedByDefault` and [`forceLogin`](../REST/authUsers.md#force-login-mode) to **false**. This allows easier access during development and debugging, with the possibility to gradually apply restrictions.
+- **Production** : Configurez les deux options `restrictedByDefault` et [`forceLogin`](../REST/authUsers.md#force-login-mode) à **true**. Cela garantit une sécurité maximale en exigeant l'authentification de l'utilisateur et des permissions explicitement définies pour l'accès aux ressources.
+- **Développement** : Configurez les deux options `restrictedByDefault` et [`forceLogin`](../REST/authUsers.md#force-login-mode) à **false**. Cela permet un accès plus facile pendant le développement et le débogage, avec la possibilité d'appliquer progressivement des restrictions.
### `Roles_Errors.json`
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/overview.md b/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/overview.md
index b007364a8d8a92..6246c59ddbb72c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/overview.md
@@ -5,7 +5,7 @@ title: Préférences
Les préférences utilisateur spécifient divers paramètres associés à votre environnement de travail, tels que les options par défaut, les thèmes d'affichage, les fonctionnalités de l'éditeur de code, les raccourcis, etc. Elles sont appliquées à tous les projets ouverts avec votre application 4D ou 4D Server.
-**4D Server** : Le verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
+**4D Server** : Un verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
> 4D propose un ensemble de paramètres spécifiques pour le projet ouvert : **Paramètres** (disponible dans le menu **Développement**). Pour plus d'informations, reportez-vous au chapitre Paramètres.
@@ -21,7 +21,7 @@ Vous pouvez également afficher la boîte de dialogue Préférences en mode Appl
## Storage
-Settings made in the Preferences dialog box are saved in an XML format preferences file named **4D Preferences vXX.4DPreferences** that is stored in the active 4D folder of the current user, as returned by the [`Get 4D folder`](../commands-legacy/get-4d-folder.md) command:
+Les réglages effectués dans la boîte de dialogue des Préférences sont enregistrés dans un fichier de préférences au format XML nommé **4D Preferences vXX.4DPreferences** qui est stocké dans le dossier 4D actif de l'utilisateur courant, tel qu'il est renvoyé par la commande [`Get 4D folder`](../commands-legacy/get-4d-folder.md) :
- Windows: `{disk}\Users\\{username\}\AppData\Roaming\4D`
- macOS: `{disk}:Users:\{username\}:Library:Application Support:4D`
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/structure.md b/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/structure.md
index e6cc1a71362974..20054782741acc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Preferences/structure.md
@@ -5,7 +5,7 @@ title: Page Structure
## Clé primaire
-These options in the preferences modify the default name and type of the primary key fields that are added automatically by 4D when new tables are created or by means of the [Primary key manager](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
+Ces options des préférences modifient le nom et le type par défaut des champs de clé primaire qui sont ajoutés automatiquement par 4D lors de la création de nouvelles tables ou au moyen du [Gestionnaire de clés primaires](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
Les options suivantes sont disponibles :
@@ -22,5 +22,5 @@ Cette option permet de faire varier le niveau de détail graphique de l’édite
### Quand un dossier est masqué, son contenu est :
-This option sets the appearance of dimmed tables in the Structure editor, when you carry out selections by folder (see [Highlight/dim tables by folder](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
+Cette option définit l'apparence des tables atténuées dans l'éditeur de structure, lorsque vous effectuez des sélections par dossier (voir [Filtrage des tables par dossier](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/REST/authUsers.md b/i18n/fr/docusaurus-plugin-content-docs/current/REST/authUsers.md
index beaaf5033918d5..c43bd9ce86c806 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/REST/authUsers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/REST/authUsers.md
@@ -29,7 +29,7 @@ La séquence de connexion d'un utilisateur est la suivante :
2. `authentify()` doit être une [fonction de datastore class](../ORDA/ordaClasses.md#datastore-class) exposée. Vous appelez votre fonction [`authentify()`](#function-authentify) (créée au préalable), dans laquelle vous vérifiez les informations d'identification de l'utilisateur et appelez [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) avec les privilèges appropriés.
-3. La requête `/rest/$catalog/authentify` est envoyée au serveur avec les informations d'identification de l'utilisateur. Cette étape nécessite seulement un formulaire de connexion basique qui n'accède pas aux données ; cela peut être une [page Qodly](../WebServer/qodly-studio.md) (appelée via la requête `/rest/$getWebForm`).
+3. La requête `/rest/$catalog/authentify` est envoyée au serveur avec les informations d'identification de l'utilisateur. Cette étape nécessite seulement un formulaire de connexion basique qui n'accède pas aux données ; cela peut être une [page Qodly](https://developer.4d.com/qodly/) (appelée via la requête `/rest/$getWebForm`).
4. Si l'utilisateur est authentifié avec succès, une licence 4D est consommée sur le serveur et toutes les requêtes REST sont acceptées.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md b/i18n/fr/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
index 107bd18979cd80..525f17ee6ae0d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ La zone "Vue d’ensemble" fournit diverses informations relatives au système,

-Usually, you will need to check the [**Licences Manager**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Zone Détails
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Tags/transformation-tags.md b/i18n/fr/docusaurus-plugin-content-docs/current/Tags/transformation-tags.md
index 1c69170a4f0670..c8b13d2c202296 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Tags/transformation-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Tags/transformation-tags.md
@@ -167,35 +167,35 @@ Voici les caractéristiques de la balise 4DCODE :
## 4DEACH et 4DENDEACH
-#### Syntax: `` ``
+#### Syntaxe : `` ``
-The `` comment allows iterating a specified item over all values of the *expression*. The item is set to a *variable* whose type depends on the *expression* type.
+Le commentaire `` permet d'itérer un élément spécifié sur toutes les valeurs de l'*expression*. L'élément est défini comme une *variable* dont le type dépend du type de l'*expression*.
-The `` comment can iterate through three expression types:
+Le commentaire `` peut itérer sur trois types d'expression :
-- [collections](#--4deach-item-in-collection--): loop through each element of the collection,
-- [entity selections](#--4deach-entity-in-entityselection--): loop through each entity,
-- [objects](#--4deach-property-in-object--): loop through each object property.
+- les [collections](#--4deach-item-in-collection--) : boucle sur chaque élément de la collection,
+- les [entity selections](#--4deach-entity-in-entityselection--) : boucle sur chaque entité,
+- les [objets](#--4deach-property-in-object--) : boucle sur chaque propriété de l'objet.
Le nombre d'itérations est évalué au démarrage et ne changera pas pendant le traitement. L'ajout ou la suppression d'éléments pendant la boucle est donc déconseillé car il pourra en résulter une redondance ou un manque d'itérations.
### ``
-This syntax iterates on each *item* of the *collection*. The code portion located between `` and `` is repeated for each collection element.
+Cette syntaxe permet d'effectuer une itération sur chaque *item* de la *collection*. La partie du code située entre `` et `` est répétée pour chaque élément de collection.
-The *item* parameter is a variable of the same type as the collection elements.
+Le paramètre *item* est une variable du même type que les éléments de la collection.
-The collection must contain only **elements of the same type**, otherwise an error is returned as soon as the *item* variable is assigned the first mismatched value type.
+La collection ne doit contenir que des **éléments de même type**, sinon une erreur est renvoyée dès que la variable *item* se voit attribuer le premier type de valeur non concordant.
-Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le nombre de boucles est basé sur le nombre d'éléments de la collection. Vous devez tenir compte des points suivants :
+Le nombre de boucles est basé sur le nombre d'éléments de la collection. À chaque itération, la variable *item* est automatiquement remplie avec l'élément correspondant de la collection. Vous devez tenir compte des points suivants :
-- If the *item* variable is of the object type or collection type (i.e. if *expression* is a collection of objects or of collections), modifying this variable will automatically modify the matching element of the collection (because objects and collections share the same references). Si la variable est de type scalaire, seule la variable sera modifiée.
-- The *item* variable gets the same type as the first collection element. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
-- If the collection contains elements with a Null value, an error is generated if the *item* variable type does not support Null values (such as longint variables).
+- Si la variable *item* est de type objet ou collection (c'est-à-dire si *expression* est une collection d'objets ou de collections), la modification de cette variable modifiera automatiquement l'élément correspondant de la collection (car les objets et les collections partagent les mêmes références). Si la variable est de type scalaire, seule la variable sera modifiée.
+- La variable *item* a le même type que le premier élément de la collection. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
+- Si la collection contient des éléments avec une valeur nulle, une erreur est générée si le type de variable *élément* ne prend pas en charge les valeurs nulles (comme les variables integer).
#### Exemple avec une collection de valeurs scalaires
-*getNames* returns a collection of strings. The method has been declared as "[available through 4D tags and URLs](WebServer/allowProject.md)".
+*getNames* renvoie une collection de chaînes de caractères. La méthode a été déclarée comme "[disponible via les balises et les URL 4D](WebServer/allowProject.md)".
```html
@@ -212,7 +212,7 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
#### Exemple avec une collection d'objets
-*getSalesPersons* returns a collection of objects.
+*getSalesPersons* renvoie une collection d'objets.
```html
@@ -233,11 +233,11 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
### ``
-This syntax iterates on each *entity* of the *entitySelection*. The code portion located between `` and `` is repeated for each entity of the entity selection.
+Cette syntaxe itère sur chaque *entité* de l'*entitySelection*. La partie du code située entre `` et `` est répétée pour chaque entité de l'entity selection.
-The *entity* parameter is an object variable of the entity selection class.
+Le paramètre *entity* est une variable objet de la classe entity selection.
-Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. At each iteration, the *entity* object variable is automatically filled with the matching entity of the entity selection.
+Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. À chaque itération, la variable objet *entity* est automatiquement remplie avec l'entité correspondante de l'entity selection.
#### Exemple avec un tableau html
@@ -256,7 +256,7 @@ Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity
```
-#### Example with `PROCESS 4D TAGS`
+#### Exemple avec `PROCESS 4D TAGS`
```4d
var customers : cs.CustomersSelection
@@ -272,15 +272,15 @@ TEXT TO DOCUMENT("customers.txt"; $output)
### ``
-This syntax iterates on each *property* of the *object*. The code portion located between `` and `` is repeated for each property of the object.
+Cette syntaxe itère sur chaque *property* de *object*. La partie du code située entre `` et `` est répétée pour chaque propriété de l'objet.
-The *property* parameter is a text variable automatically filled with the name of the currently processed property.
+Le paramètre *property* est une variable texte automatiquement remplie avec le nom de la propriété en cours de traitement.
Les propriétés de l'objet sont itérées en fonction de leur ordre de création. Pendant la boucle, il est possible d'ajouter ou de supprimer des propriétés dans l'objet, sans pour autant modifier le nombre de boucles qui reste basé sur le nombre de propriétés initial de l'objet.
#### Exemple avec les propriétés d'un objet
-*getGamers* is a project method that returns an object like ("Mary"; 10; "Ann"; 20; "John"; 40) to figure gamer scores.
+*getGamers* est une méthode projet qui renvoie un objet tel que ("Mary" ; 10 ; "Ann" ; 20 ; "John" ; 40) pour calculer les scores des joueurs.
```html
@@ -301,32 +301,32 @@ Les propriétés de l'objet sont itérées en fonction de leur ordre de créatio
## 4DEVAL
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DEVAL(expression)`
+#### Syntaxe alternative : `$4DEVAL(expression)`
-The `4DEVAL` tag allows you to assess a 4D variable or expression. Like the [`4DHTML`](#4dhtml) tag, `4DEVAL` does not escape HTML characters when returning text. However, unlike `4DHTML` or [`4DTEXT`](#4dtext), `4DEVAL` allows you to execute any valid 4D statement, including assignments and expressions that do not return any value.
+La balise `4DEVAL` vous permet d'évaluer une variable ou une expression 4D. Comme la balise [`4DHTML`](#4dhtml), `4DEVAL` n'échappe pas les caractères HTML lorsqu'elle retourne du texte. Cependant, contrairement à `4DHTML` ou [`4DTEXT`](#4dtext), `4DEVAL` vous permet d'exécuter n'importe quelle instruction 4D valide, y compris les assignations et les expressions qui ne renvoient aucune valeur.
Par exemple, vous pouvez exécuter :
```
- $input:="" //assignment
- $input:=$input+"" //calculation
+ $input:="" //assignation
+ $input:=$input+"" //calcul
PROCESS 4D TAGS($input;$output)
//$output = "43"
```
-In case of an error during interpretation, the text inserted will be in the form: `: ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré se présentera sous la forme suivante : `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DHTML
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DHTML(expression)`
+#### Syntaxe alternative : `$4DHTML(expression)`
-Just like the `4DTEXT` tag, this tag lets you assess a 4D variable or expression that returns a value, and insert it as an HTML expression. Unlike the `4DTEXT` tag, this tag does not escape HTML special characters (e.g. ">").
+Tout comme la balise `4DTEXT`, cette balise vous permet d'évaluer une variable 4D ou une expression qui renvoie une valeur, et de l'insérer en tant qu'expression HTML. Contrairement à la balise `4DTEXT`, cette balise n'échappe pas les caractères spéciaux HTML (tels que ">").
Par exemple, voici les résultats du traitement de la variable texte 4D myvar avec les balises disponibles :
@@ -335,9 +335,9 @@ Par exemple, voici les résultats du traitement de la variable texte 4D myvar av
| `myvar:=""` | `` | `<B>` |
| `myvar:=""` | `` | `` |
-In case of an interpretation error, the inserted text will be ` : ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré sera `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DIF, 4DELSE, 4DELSEIF et 4DENDIF
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/Users/overview.md b/i18n/fr/docusaurus-plugin-content-docs/current/Users/overview.md
index 7da231a1733f6c..f1278d6e0a2343 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/Users/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/Users/overview.md
@@ -7,11 +7,11 @@ Si plusieurs personnes utilisent une application, ce qui est souvent le cas dans
La stratégie de contrôle d'accès 4D dépend de la configuration de votre déploiement :
-- in multi-user Web and REST applications, access control is based upon [ORDA's Roles and privileges](../ORDA/privileges.md) features.
-- in multi-user desktop applications, you can rely on 4D users and groups,
-- dans les applications monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
+- dans les applications Web et REST multi-utilisateurs, le contrôle d'accès est basé sur les [rôles et privilèges d'ORDA](../ORDA/privileges.md).
+- dans les applications desktop multi-utilisateurs, vous pouvez vous appuyer sur les utilisateurs et les groupes 4D,
+- dans les applications desktop monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
-:::tip Related Blog post
+:::tip Article de blog lié
Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/) pour une vue d'ensemble des fonctions de sécurité de 4D.
@@ -19,9 +19,9 @@ Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/
## Contrôle des accès dans les applications multi-utilisateurs
-Multi-user desktop applications are deployed with 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
+Les applications desktop multi-utilisateurs sont déployées avec 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
-Initiez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture N'importe quelle partie de l'application peut être ouverte. N'importe quelle partie de l'application peut être ouverte.
+Vous initialisez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture, aucun identifiant n'est requis). N'importe quelle partie de l'application peut être ouverte.
Lorsqu’un mot de passe est affecté au Super_Utilisateur, tous les privilèges d’accès que vous avez affectés prennent effet. Pour se connecter à l'application ou à un [serveur à accès protégé](handling_users_groups.md#assigning-group-access), les utilisateurs distants doivent saisir un login/mot de passe.
@@ -29,11 +29,11 @@ Pour désactiver le système de restriction d’accès, il suffit de supprimer (
## Contrôle d'accès dans les applications monoposte
-Single-user applications are desktop applications, deployed with 4D or merged with 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
+Les applications monoposte sont des applications de bureau, déployées avec 4D ou fusionnées avec 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
### Identification de l'utilisateur
-To identify the current user in a 4D single-user application, you can rely on the [`Current system user`](../commands-legacy/current-system-user.md) command, which returns the user who opened the system session. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
+Pour identifier l'utilisateur courant dans une application mono-utilisateur 4D, vous pouvez vous appuyer sur la commande [`Current system user`](../commands-legacy/current-system-user.md), qui renvoie l'utilisateur qui a ouvert la session système. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
Vous pouvez alors autoriser ou refuser les accès à votre application en utilisant un code suivant :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/authentication.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/authentication.md
index 2c9eab606b7b30..fcd6a0c6843a29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/authentication.md
@@ -119,7 +119,7 @@ Vous devez déclarer ces paramètres de la manière suivante :
:::note
-Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. The information received by the database method depends on the selected [authentication mode](#authentication-modes).
+Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. Les informations reçues par la méthode base dépendent du [mode d'authentification](#authentication-modes) sélectionné.
:::
@@ -127,9 +127,9 @@ Tous les paramètres de la méthode base `On Web Authentication` ne sont pas né
Le premier paramètre (`$url`) est l'URL reçue par le serveur, dont l'adresse de l'hôte a été supprimée.
-Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. The following table shows the values of $url depending on the URL entered in the Web browser:
+Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur Web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.45.67.89 | / |
| http://123.45.67.89 | / |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/http-rules.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
index ebc926199d567c..e0986825220ec1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/http-rules.md
@@ -1,101 +1,101 @@
---
id: http-rules
-title: HTTP Rules
+title: Règles de configuration HTTP
---
-You can define HTTP rules to control HTTP response headers for any requests received by the 4D web server, including REST requests. You can add, modify, or remove HTTP headers, send redirections or set the HTTP status. This feature is useful to implement security policies based upon the handling of headers.
+Vous pouvez définir des règles de configuration HTTP pour contrôler les en-têtes de réponse HTTP pour toutes les requêtes reçues par le serveur web 4D, y compris les requêtes REST. Vous pouvez ajouter, modifier ou supprimer des en-têtes HTTP, envoyer des redirections ou définir le statut HTTP. Cette fonction est utile pour mettre en œuvre des politiques de sécurité basées sur le traitement des en-têtes.
-To define HTTP rules, you just need to write some RegEx to declare the URL patterns you want to control, as well as how to modify response headers. You can set these rules using a `HTTPRules.json` file stored in the project folder, or using the *settings* parameter [`start()`](../API/WebServerClass.md#start) function of the web server object.
+Pour définir des règles de configuration HTTP, il suffit d'écrire quelques RegEx pour déclarer les motifs (*patterns*) d'URL que l'on souhaite contrôler, ainsi que la manière de modifier les en-têtes de réponse. Vous pouvez définir ces règles en utilisant un fichier `HTTPRules.json` stocké dans le dossier du projet, ou en utilisant le paramètre *settings* de la fonction [`start()`](../API/WebServerClass.md#start) de l'objet serveur web.
## Conditions requises
-HTTP rules are supported in the following contexts:
+Les règles de configuration HTTP sont prises en charge dans les contextes suivants :
- les [sessions extensibles](./sessions.md#enabling-web-sessions) ou [pas de sessions](../settings/web.md#no-sessions) sont activées,
- un serveur web exécuté localement par 4D ou 4D Server, y compris ceux [exécutés par des composants](./webServerObject.md).
-## How to set rules
+## Comment déclarer des règles
-You can declare HTTP response rules:
+Vous pouvez déclarer des règles de réponse HTTP :
-- in a configuration file named **HTTPRules.json** stored in the [`Project/Sources`](../Project/architecture.md#sources) folder of the project. Rules are loaded and applied in the main Web server once it is started.
-- using a [`.rules`](../API/WebServerClass.md#rules) property set in the *settings* parameter of the [`start()`](../API/WebServerClass.md#start) function, for any web server object:
+- dans un fichier de configuration nommé **HTTPRules.json** stocké dans le dossier [`Project/Sources`](../Project/architecture.md#sources) du projet. Ces règles sont chargées et appliquées dans le serveur Web principal une fois qu'il a démarré.
+- en utilisant une propriété [`.rules`](../API/WebServerClass.md#rules) définie dans le paramètre *settings* de la fonction [`start()`](../API/WebServerClass.md#start), pour n'importe quel objet serveur web :
```4d
-WEB Server.start($settings.rules) //set rules at web server startup
+WEB Server.start($settings.rules) //règles au démarrage du serveur
```
-If both a **HTTPRules.json** file and a call to the [`WEB Server`](../commands/web-server.md) command with a valid `$settings.rules` are used, the `WEB Server` command has priority.
+Si un fichier **HTTPRules.json** et un appel à la commande [`WEB Server`](../commands/web-server.md) avec un `$settings.rules` valide sont utilisés simultanément, la commande `WEB Server` est prioritaire.
-If the URI of the request does not match any of the RegEx patterns, the web server returns a default response.
+Si l'URI de la requête ne correspond à aucun des *patterns* RegEx, le serveur web renvoie une réponse par défaut.
-## Rules Definition
+## Définition des règles
-The **HTTPRules.json** file or the [`.rules`](../API/WebServerClass.md#rules) property must contain a collection of **rule objects**.
+Le fichier **HTTPRules.json** ou la propriété [`.rules`](../API/WebServerClass.md#rules) doit contenir une collection d'**objets règle**.
-A rule object is defined by:
+Un objet règle est défini par:
-- a RegEx describing a URL pattern, e.g. "^(.\*\\.(jpg|jpeg|png|gif))"
-- the name of the action to execute for the HTTP response, e.g. "removeHeaders"
-- the value of the action, e.g. "X-Unwanted-Header1"
+- un RegEx décrivant un motif d'URL, par exemple "^(.\*\\.(jpg|jpeg|png|gif)"
+- le nom de l'action à exécuter pour la réponse HTTP, par exemple "removeHeaders"
+- la valeur de l'action, par exemple "X-Unwanted-Header1"
-Other properties are ignored.
+Les autres propriétés sont ignorées.
### Motifs d'URL
-URL patterns are given using **regular expressions**. To declare a regular expression pattern, use the "RegExPattern" property name.
+Les motifs d'URL sont donnés en utilisant des **expressions régulières**. Pour déclarer un *pattern* d'expression régulière, utilisez le nom de propriété "RegExPattern".
Ex: `"RegExPattern": "/Test/Authorized/(.*)"`
-When the web server receives a request, **all** URL patterns are triggered sequentially in the given order, and all matching patterns are executed. In case of several actions modifying similar resources, the last executed action is taken into account.
+Lorsque le serveur web reçoit une requête, **tous** les motifs d'URL sont déclenchés séquentiellement dans l'ordre donné, et tous les motifs correspondants sont exécutés. Si plusieurs actions modifient des ressources similaires, la dernière action exécutée est prise en compte.
### Actions
-The following action keywords are supported:
+Les mots-clés d'action suivants sont pris en charge :
-| Mot-clé | Value type | Description |
-| --------------- | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `removeHeaders` | Text or Collection of texts | Header(s) to remove from the HTTP responses. If a header to remove does not exist in the response header, it is ignored. |
-| `addHeaders` | Object | Name (text) and value (text) of header(s) to add to the HTTP responses. |
-| `setHeaders` | Object | Name (text) and value (text) of header(s) to modify in the HTTP responses. If a header to modify does not exist in the response header, it is added. |
-| `denyAccess` | Boolean | true to deny access to the resource, false to allow access. When the access to a resource is denied, the web server returns a 403 status by default |
-| `redirect` | Text | Redirection URL. When a redirection is triggered, the web server returns a 302 status by default |
-| `status` | Number | HTTP status |
+| Mot-clé | Value type | Description |
+| --------------- | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `removeHeaders` | Text ou collection de text | En-tête(s) à supprimer des réponses HTTP. Si un en-tête à supprimer n'existe pas dans l'en-tête de la réponse, il est ignoré. |
+| `addHeaders` | Object | Nom (texte) et valeur (texte) des en-têtes à ajouter aux réponses HTTP. |
+| `setHeaders` | Object | Nom (texte) et valeur (texte) des en-têtes à modifier dans les réponses HTTP. Si l'en-tête à modifier n'existe pas dans l'en-tête de la réponse, il est ajouté. |
+| `denyAccess` | Boolean | true pour refuser l'accès à la ressource, false pour l'autoriser. Lorsque l'accès à une ressource est refusé, le serveur web renvoie un statut 403 par défaut |
+| `redirect` | Text | URL de redirection. Lorsqu'une redirection est déclenchée, le serveur web renvoie par défaut un statut 302 |
+| `status` | Number | Statut HTTP |
-### Non-modifiable headers
+### En-têtes non modifiables
-Some headers could not be added, modified or removed:
+Certains en-têtes ne peuvent pas être ajoutés, modifiés ou supprimés :
-| Header | Ajouter | Set | Remove |
-| ---------------- | ------- | ---------- | ------ |
-| Date | Non | Non | Non |
-| Content-Length | Non | Non | Non |
-| Content-Encoding | Non | Non | Non |
-| Vary | Oui | Non | Non |
-| Set-Cookie | Oui | Add cookie | Non |
+| En-tête | Ajout | Modification | Suppression |
+| ---------------- | ----- | ---------------- | ----------- |
+| Date | Non | Non | Non |
+| Content-Length | Non | Non | Non |
+| Content-Encoding | Non | Non | Non |
+| Vary | Oui | Non | Non |
+| Set-Cookie | Oui | Ajoute un cookie | Non |
-Unauthorized changes on these headers do not generate errors, however modifications will be ignored.
+Les modifications non autorisées de ces en-têtes ne génèrent pas d'erreurs, mais les modifications seront ignorées.
-### Current rules
+### Règles de configuration courantes
-You can know the current rules using the [`.rules` property of the Web Server object](../API/WebServerClass.md#rules):
+Vous pouvez connaître les règles en vigueur en utilisant la [propriété `.rules` de l'objet Serveur Web](../API/WebServerClass.md#rules) :
```
var $rules : Collection
-$rules:=WEB Server.rules //current rules
+$rules:=WEB Server.rules //règles de configuration courantes
```
## Exemples
-Rules can be set using a `HTTPRules.json` file or the *settings* parameter of the [`.start()`](../API/WebServerClass.md#start) web server function.
+Les règles de configuration peuvent être définies en utilisant un fichier `HTTPRules.json` ou le paramètre *settings* de la fonction [`.start()`](../API/WebServerClass.md#start) du serveur web.
-### Using a HTTPRules.json file
+### Utilisation d'un fichier HTTPRules.json
```json
[
{
- "comment": "All requests: allow GET method for, remove 'Server' header and set security headers",
+ "comment": "Toutes requêtes: autoriser méthode GET, supprimer en-tête 'Server' et définir en-têtes de sécurité",
"regexPattern": "/(.*)",
"setHeaders": {
"Allow": "GET",
@@ -107,14 +107,14 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
]
},
{
- "comment": "REST requests: allow POST method",
+ "comment": "requêtes REST: autoriser méthode POST",
"regexPattern": "/rest/(.*)",
"addHeaders": {
"Allow": "POST"
}
},
{
- "comment": "HTML files in 'doc' folder: set cache control",
+ "comment": "Fichiers html dans dossier 'doc' : contrôle du cache",
"regexPattern": "/docs/(.*).html",
"setHeaders": {
"Cache-Control": "max-age=3600"
@@ -124,28 +124,28 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
]
},
{
- "comment": "Status 503 on 'maintenance' page",
+ "comment": "Status 503 sur page 'maintenance'",
"regexPattern": "^/maintenance.html",
"status": 503
},
{
- "comment": "Redirect CSS and JS files",
+ "comment": "Redirection fichiers CSS et JS",
"regexPattern": "^(.*\\\\.(css|js))",
"redirect": "https://cdn.example.com/"
},
{
- "comment": "Redirect images with permanent status code",
+ "comment": "Redirection images avec code de statut permanent",
"regexPattern": "^(.*\\\\.(jpg|jpeg|png|gif))",
"redirect": "https://cdn.example.com/images/",
"status": 301
},
{
- "comment": "Deny access for all resources placed in the 'private' folder",
+ "comment": "Refuser accès à toutes les ressources dans le dossier 'private'",
"regexPattern": "/private/(.*)",
"denyAccess": true
},
{
- "comment": "Allow access to all resources placed in the 'private/allowed' folder",
+ "comment": "Autoriser accès à toutes les ressources dans le dossier 'private/allowed'",
"regexPattern": "/private/allowed/(.*)",
"denyAccess": false
}
@@ -153,7 +153,7 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
```
-### Using a *settings* parameter
+### Utilisation du paramètre *settings*
```4d
var $rule:={}
@@ -163,7 +163,7 @@ var $settings:={}
$settings.rules:=[]
$rule:={}
-$rule.comment:="All requests: allow GET method for, remove 'Server' header and set security headers"
+$rule.comment:="Toutes requêtes: autoriser méthode GET, supprimer en-tête 'Server' et définir en-têtes de sécurité"
$rule.regexPattern:="/(.*)"
$rule.setHeaders:={Allow: "GET"}
$rule.setHeaders["X-Frame-Options"]:="SAMEORIGIN"
@@ -172,13 +172,13 @@ $rule.removeHeaders:=["Server"]
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="REST requests: allow POST method"
+$rule.comment:="requêtes REST: autoriser méthode POST"
$rule.regexPattern:="/rest/(.*)"
$rule.addHeaders:={Allow: "POST"}
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="HTML files in 'doc' folder: set cache control"
+$rule.comment:="Fichiers html dans dossier 'doc' : contrôle du cache"
$rule.regexPattern:="/docs/(.*).html"
$rule.setHeaders:={}
$rule.setHeaders["Cache-Control"]:="max-age=3600"
@@ -186,32 +186,32 @@ $rule.removeHeaders:=["X-Powered-By"]
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Status 503 on 'maintenance' page"
+$rule.comment:="Status 503 sur page 'maintenance'"
$rule.regexPattern:="^/maintenance.html"
$rule.status:=503
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Redirect CSS and JS files"
+$rule.comment:="Redirection fichiers CSS et JS"
$rule.regexPattern:="^(.*\\\\.(css|js))"
$rule.redirect:="https://cdn.example.com/"
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Redirect images with permanent status code"
+$rule.comment:="Redirection images avec code de statut permanent"
$rule.regexPattern:="^(.*\\\\.(jpg|jpeg|png|gif))"
$rule.redirect:="https://cdn.example.com/images/"
$rule.status:=301
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Deny access for all resources placed in the 'private' folder"
+$rule.comment:="Refuser accès à toutes les ressources dans le dossier 'private'"
$rule.regexPattern:="/private/(.*)"
$rule.denyAccess:=True
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Allow access to all resources placed in the 'private/allowed' folder"
+$rule.comment:="Autoriser accès à toutes les ressources dans le dossier 'private/allowed'"
$rule.regexPattern:="/private/allowed/(.*)"
$rule.denyAccess:=False
$settings.rules.push($rule)
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md
index 37c63e39561ba5..d2a2ba7edb4d52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/httpRequests.md
@@ -13,7 +13,7 @@ Le serveur web 4D fournit plusieurs fonctionnalités intégrées pour gérer les
:::info
-You can also implement your own HTTP request handlers for a customized control over incoming requests and outgoing responses. When a custom HTTP request handler is triggered, no database method is called. See [**HTTP Request Handler**](http-request-handler.md) section.
+Vous pouvez également mettre en œuvre vos propres gestionnaires de requêtes HTTP pour un contrôle personnalisé des requêtes entrantes et des réponses sortantes. Lorsqu'un gestionnaire de requête HTTP personnalisé est déclenché, aucune méthode de base de données n'est appelée. Voir la section [**Gestionnaire de requêtes HTTP**](http-request-handler.md).
:::
@@ -23,7 +23,7 @@ La méthode base `On Web Connection` peut être utilisée comme point d'entrée
### Appels des méthodes base
-The `On Web Connection` database method is automatically called when the server receives any URL that is not a valid path to an existing page on the server (and is not a URL with a pattern triggering a [custom HTTP Request Handler](http-request-handler.md)).
+La méthode base `On Web Connection` est automatiquement appelée lorsque le serveur reçoit une URL qui n'est pas un chemin valide vers une page existante sur le serveur (et qui n'est pas une URL avec un motif déclenchant un [gestionnaire de requête HTTP personnalisé](http-request-handler.md)).
La méthode base est appelée avec l'URL.
@@ -56,13 +56,13 @@ Vous devez déclarer ces paramètres :
> Appeler une commande 4D qui affiche un élément d'interface (`DIALOG`, `ALERT`, etc.) n'est pas autorisé et met fin au traitement de la méthode.
-### $url - URL extra data
+### $url - Données supplémentaires de l'URL
-The first parameter ($url) is the URL entered by users in the address area of their web browser, without the host address.
+Le premier paramètre ($url) est l'URL saisi par les utilisateurs dans la zone d'adresse de leur navigateur web, sans l'adresse de l'hôte.
-Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. The following table shows the values of $url depending on the URL entered in the web browser:
+Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.4.567.89 | / |
| http://123.45.67.89 | / |
@@ -72,27 +72,27 @@ Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votr
Notez que vous êtes libre d'utiliser ce paramètre à votre convenance. 4D ignore simplement la valeur passée au-delà de la partie hôte de l'URL. Par exemple, vous pouvez établir une convention où la valeur "*/Customers/Add*" signifie "accès direct pour ajouter un nouvel enregistrement dans la table `[Customers]`". En proposant aux utilisateurs web une liste de valeurs possibles et/ou des signets par défaut, vous pouvez leur fournir des raccourcis vers différentes parties de votre application. De cette façon, les utilisateurs web peuvent accéder rapidement aux ressources de votre site web sans passer par le chemin de navigation complet à chaque nouvelle connexion.
-### $header - Header and Body of the HTTP request
+### $header - En-tête et corps de la requête HTTP
-The second parameter ($header) is the header and the body of the HTTP request sent by the web browser. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
+Le deuxième paramètre ($header) est l'en-tête et le corps (body) de la requête HTTP envoyée par le navigateur web. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
Si votre application utilise ces informations, il vous appartient d'analyser l'en-tête et le corps. Vous pouvez utiliser les commandes `WEB GET HTTP HEADER` et `WEB GET HTTP BODY`.
-> For performance reasons, the size of data passing through the $header parameter must not exceed 32 KB. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
+> Pour des raisons de performance, la taille des données passant par le paramètre $header ne doit pas dépasser 32 Ko. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
-### $BrowserIP - Web client IP address
+### $BrowserIP - Adresse IP du client Web
-The $BrowserIP parameter receives the IP address of the browser’s machine. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
+Le paramètre $BrowserIP reçoit l'adresse IP de la machine du navigateur. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
> 4D renvoie les adresses IPv4 dans un format hybride IPv6/IPv4 écrit avec un préfixe de 96 bits, par exemple ::ffff:192.168.2.34 pour l'adresse IPv4 192.168.2.34. Pour plus d'informations, consultez la section [Support IPv6](webServerConfig.md#about-ipv6-support).
-### $ServerIP - Server IP address
+### $ServerIP - Adresse IP du serveur
-The $ServerIP parameter receives the IP address requested by the 4D Web Server. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
+Le paramètre $ServerIP reçoit l'adresse IP demandée du serveur Web 4D. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
### $user et $password - Nom d'utilisateur et mot de passe
-The $user and $password parameters receive the user name and password entered by the user in the standard identification dialog box displayed by the browser, if applicable (see the [authentication page](authentication.md)).
+Les paramètres $user et $password reçoivent le nom d'utilisateur et le mot de passe saisis par l'utilisateur dans la boîte de dialogue d'identification standard affichée par le navigateur, le cas échéant (voir la [page d'authentification](authentication.md)).
> Si le nom d'utilisateur envoyé par le navigateur existe dans 4D, le paramètre $password (le mot de passe de l'utilisateur) n'est pas renvoyé pour des raisons de sécurité.
@@ -108,7 +108,7 @@ The $user and $password parameters receive the user name and password entered by
**Utilisation :** URL ou action du formulaire.
-Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. The method will receive this parameter.
+Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. La méthode recevra ce paramètre.
- La méthode projet 4D doit avoir été [autorisée pour les requêtes web](allowProject.md) : l'attribut "Disponible via Balises HTML et URLs 4D (4DACTION. .)” doit avoir été coché dans les propriétés de la méthode. Si l'attribut n'est pas coché, la requête web est rejetée.
- Lorsque 4D reçoit une requête `/4DACTION/MethodName/Param`, la méthode base `On Web Authentication` est appelée (si elle existe).
@@ -134,17 +134,17 @@ Cet exemple décrit l'association de l'URL `/4DACTION` avec un objet image HTML
La méthode `getPhoto` est la suivante :
```4d
-#DECLARE ($url : Text) // This parameter must always be declared
+#DECLARE ($url : Text) // Ce paramètre doit toujours être déclaré
var $path : Text
var $PictVar : Picture
var $BlobVar : Blob
- //find the picture in the Images folder within the Resources folder
-$path:=Get 4D folder(Current resources folder)+"Images"+Folder separator+$url+".psd"
+ //trouve l'image dans le dossier Images du dossier Resources
+$path:=Get 4D folder(Current resources folder)+"Images "+Folder separator+$url+".psd"
-READ PICTURE FILE($path;$PictVar) //put the picture in the picture variable
-PICTURE TO BLOB($PictVar;$BLOB;".png") //convert the picture to ".png" format
-WEB SEND BLOB($BLOB;"image/png")
+READ PICTURE FILE($path;$PictVar) //place l'image dans la variable image
+PICTURE TO BLOB($PictVar;$BLOB;".png") //convertit l'image au format ".png"
+WEB SEND BLOB($BLOB; "image/png")
```
### 4DACTION pour poster des formulaires
@@ -191,26 +191,26 @@ OK="Search"
4D appelle la méthode base `On Web Authentication` (si elle existe), puis la méthode de projet `processForm` est appelée, qui est la suivante :
```4d
- #DECLARE ($url : Text) //mandatory for compiled mode
+ #DECLARE ($url : Text)
var $vName : Integer
var vName;vLIST : Text
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrVals;0)
- WEB GET VARIABLES($arrNames;$arrVals) //we retrieve all the variables of the form
- $vName:=Find in array($arrNames;"vName")
- vName:=$arrVals{$vName}
- If(Find in array($arrNames;"vExact")=-1) //If the option has not been checked
- vName:=vName+"@"
+ WEB GET VARIABLES($arrNames;$arrVals) //nous récupérons toutes les variables du formulaire
+ $vName:=Find in array($arrNames; "vName")
+ vName :=$arrVals{$vName}
+ If(Find in array($arrNames; "vExact")=-1) //Si l'option n'a pas été cochée
+ vName :=vName+"@"
End if
- QUERY([Jockeys];[Jockeys]Name=vName)
+ QUERY([Jockeys] ;[Jockeys]Name=vName)
FIRST RECORD([Jockeys])
While(Not(End selection([Jockeys])))
vLIST:=vLIST+[Jockeys]Name+" "+[Jockeys]Tel+"
"
NEXT RECORD([Jockeys])
End while
- WEB SEND FILE("results.htm") //Send the list to the results.htm form
- //which contains a reference to the variable vLIST,
- //for example
+ WEB SEND FILE("results.htm") //Envoie la liste au formulaire results.htm
+ //qui contient une référence à la variable vLIST,
+ //par exemple
//...
End if
```
@@ -219,9 +219,9 @@ End if
Le serveur Web de 4D vous permet de récupérer les données envoyées via des requêtes POST ou GET, en utilisant des formulaires Web ou des URL.
-Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. This principle can be implemented in the case of a Web form, sent for example using [`WEB SEND FILE`](../commands-legacy/web-send-file.md) or [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), where the user enters or modifies values, then clicks on the validation button.
+Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. Ce principe peut être mis en œuvre dans le cas d'un formulaire Web, envoyé par exemple à l'aide de [`WEB SEND FILE`](../commands-legacy/web-send-file.md) ou [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), où l'utilisateur saisit ou modifie des valeurs, puis clique sur le bouton de validation.
-In this case, 4D can retrieve the values of the HTML objects found in the request using the [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md) command. La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
+Dans ce cas, 4D peut récupérer les valeurs des objets HTML trouvés dans la requête en utilisant la commande [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md). La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
Considérons le code source HTML suivant :
@@ -282,7 +282,7 @@ Les principales caractéristiques de cette page sont les suivantes :
Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisateur clique sur l'un des boutons du formulaire HTML.
```4d
- // Retrieval of value of variables
+ // Récupération de la valeur des variables
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrValues;0)
WEB GET VARIABLES($arrNames;$arrValues)
@@ -290,26 +290,26 @@ Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisat
Case of
- // The Log On button was clicked
- :(Find in array($arrNames;"vsbLogOn")#-1)
- $user :=Find in array($arrNames;"vtUserName")
- QUERY([WWW Users];[WWW Users]UserName=$arrValues{$user})
- $0:=(Records in selection([WWW Users])>0)
+ // Le bouton Log On a été cliqué
+ :(Find in array($arrNames; "vsbLogOn")#-1)
+ $user :=Find in array($arrNames; "vtUserName")
+ QUERY([WWW Users] ;[WWW Users]UserName=$arrValues{$user})
+ $0 :=(Records in selection([WWW Users])>0)
If($0)
WWW POST EVENT("Log On";WWW Log information)
- // The WWW POST EVENT method saves the information in a database table
+ // La méthode WWW POST EVENT enregistre les informations dans une table de la base de données
Else
- $0:=WWW Register
- // The WWW Register method lets a new Web user register
+ $0 :=WWW Register
+ // La méthode WWW Register permet à un nouvel utilisateur Web de s'enregistrer
End if
- // The Register button was clicked
- :(Find in array($arrNames;"vsbRegister")#-1)
+ // Le bouton Register a été cliqué
+ :(Find in array($arrNames; "vsbRegister")#-1)
$0:=WWW Register
- // The Information button was clicked
- :(Find in array($arrNames;"vsbInformation")#-1)
+ // Le bouton Information a été cliqué
+ :(Find in array($arrNames; "vsbInformation")#-1)
WEB SEND FILE("userinfos.html")
End case
```
@@ -325,15 +325,15 @@ Gardez à l'esprit qu'en HTML, tous les objets sont des objets de texte. Si vous
Le serveur web 4D fournit plusieurs commandes web de bas niveau vous permettant de développer un traitement personnalisé des requêtes :
-- the [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) command returns the body as raw text, allowing any parsing you may need
-- the [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) command return the headers of the request. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
-- the [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) and [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) commands to parse the body part of a multi-part request and retrieve text values, but also files posted, using BLOBs.
+- la commande [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) renvoie le corps du message sous forme de texte brut, ce qui permet de l'analyser si nécessaire
+- la commande [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) renvoie les en-têtes de la requête. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
+- les commandes [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) et [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) pour analyser la partie body d'une requête multi-part et récupérer des valeurs texte, mais aussi des fichiers postés, en utilisant des BLOB.
Ces commandes sont résumées dans le graphique suivant :

-Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. The 4D Web Server also supports chunked transfer encoding from the server to Web clients (using [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
+Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. Le serveur Web 4D prend également en charge le codage de transfert par morceaux du serveur vers les clients Web (en utilisant [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
## Méthode projet COMPILER_WEB
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
index 7395ed0a06637b..89760d4d57d368 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/preemptiveWeb.md
@@ -5,7 +5,7 @@ title: Utiliser des process web préemptifs
Le Web Server de 4D vous permet de tirer pleinement parti des ordinateurs multi-coeurs en utilisant des process Web préemptifs dans vos applications compilées. Vous pouvez configurer votre code lié au Web, y compris les balises 4D, les méthodes base Web ou les fonctions de classe REST de ORDA, afin qu'il s'exécute simultanément sur le plus grand nombre de coeurs possibles.
-For in-depth information on preemptive process in 4D, please refer to the [Preemptive Processes](../Develop/preemptive.md) section.
+Pour plus d'informations sur les process préemptifs dans 4D, veuillez consulter la section [Process préemptifs](../Develop/preemptive.md).
## Disponibilité du mode préemptif pour les process Web
@@ -26,11 +26,11 @@ Le tableau suivant indique si l'utilisation du mode préemptif pour les process
- Serveur REST : gère les [fonctions de classe du modèle de données ORDA](../REST/ClassFunctions.md)
- Serveur Web : gère les [modèles Web](templates.md), [4DACTION et les méthodes base](httpRequests.md)
- Serveur de services Web : gère les requêtes SOAP
-- ***web setting*** means that the preemptive mode depends on the [**scalable sessions**](sessions.md#enabling-web-sessions) status:
- - if scalable sessions are enabled, the preemptive mode is automatically used for web and web service processes.
- - if scalable sessions are not enabled:
- - for web processes, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account.
- - for web service processes (server or client), preemptive mode is supported at method level.
+- ***paramètres web*** signifie que le mode préemptif dépend du statut [**sessions évolutives**](sessions.md#enabling-web-sessions) :
+ - si les sessions évolutives sont activées, le mode préemptif est automatiquement utilisé pour les process web et web service.
+ - si les sessions évolutives ne sont pas activées :
+ - pour les process web, l'option [**Utiliser des process préemptifs**](webServerConfig.md#use-preemptive-processes) est prise en compte.
+ - pour les process de web services (serveur ou client), le mode préemptif est pris en charge au niveau de la méthode.
## Ecrire du code serveur Web thread-safe
@@ -52,7 +52,7 @@ Tout le code 4D exécuté par le serveur Web doit être thread-safe si vous souh
- [Fonctions de classe du modèle de données ORDA](../REST/ClassFunctions.md) appelées via REST
-For each of these methods and code parts, the compiler will check if the [thread-safety rules are respected](../Develop/preemptive.md#writing-a-thread-safe-method), and will return errors in case of issues.
+Pour chacune de ces parties de méthodes et de code, le compilateur vérifiera si les [règles du thread-safe sont respectées](../Develop/preemptive.md#writing-a-thread-safe-method), et renverra des erreurs en cas de problème.
## Code web 4D thread-safe
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/sessions.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/sessions.md
index 7f76d591b5639f..4fea0fb9a1d746 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/sessions.md
@@ -3,14 +3,14 @@ id: sessions
title: Sessions Web
---
-Le serveur Web de 4D offre des fonctions intégrées pour la gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
+Le serveur Web de 4D offre des fonctions intégrées de gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
Les sessions Web permettent de :
- gérer simultanément plusieurs requêtes depuis le même client web via un nombre illimité de process préemptifs (les sessions web sont **évolutives**),
- gérer la session à travers un objet `Session` et une [API de session](API/SessionClass.md),
- stocker et partager des données entre les process d'un client web en utilisant le [.storage](../API/SessionClass.md#storage) de la session,
-- associer des privilèges à l'utilisateur qui exécute la session.
+- accorder des [privilèges](../ORDA/privileges.md) à l'utilisateur qui exécute la session.
:::tip Article(s) de blog sur le sujet
@@ -18,14 +18,20 @@ Les sessions Web permettent de :
:::
+:::note
+
+Les applications Destkop (client/serveur et mono-utilisateur) fournissent également aux développeurs 4D des [sessions spécifiques](../Desktop/sessions.md).
+
+:::
+
## Utilisations
Les sessions Web sont utilisées par :
- les [applications Web](gettingStarted.md) envoyant des requêtes http (y compris les [Web services SOAP](../commands/theme/Web_Services_Server.md) et les requêtes [/4DACTION](../WebServer/httpRequests.md#4daction)),
-- les appels à l'[API REST](../REST/authUsers.md), qui sont effectués par les [datastores distants](../ORDA/remoteDatastores.md) et les [pages Qodly](qodly-studio.md).
+- les appels à l'[API REST](../REST/authUsers.md), qui sont effectués par les [datastores distants](../ORDA/remoteDatastores.md) et les [pages Qodly](https://developer.4d.com/qodly/).
-## Enabling web sessions {#enabling-web-sessions}
+## Activation des sessions web {#enabling-web-sessions}
La gestion de session peut être activée et désactivée sur votre serveur Web 4D. Il y a différentes façons d'activer la gestion de session :
@@ -63,7 +69,7 @@ Le nom du cookie peut être obtenu en utilisant la propriété [`.sessionCookieN
:::note
-La création d'une session web pour une requête REST peut nécessiter qu'une licence soit disponible, consultez [cette page](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +77,6 @@ L'objet `Session` de la session en cours peut ensuite être manipulé via la com

-:::info
-
-Les process Web ne se terminent généralement pas, ils sont recyclés dans un pool pour des raisons d'optimisation. Lorsqu'un process termine l'exécution d'une requête, il est replacé dans le pool et rendu disponible pour la requête suivante. Comme un process web peut être réutilisé par n'importe quelle session, les [variables process](Concepts/variables.md#process-variables) doivent être effacées par votre code à la fin de son exécution (en utilisant [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) par exemple). Ce nettoyage est nécessaire pour toute information liée au process, comme une référence à un fichier ouvert. C'est la raison pour laquelle **il est recommandé** d'utiliser l'objet [Session](API/SessionClass.md) lorsque vous souhaitez conserver les informations relatives à la session.
-
-:::
-
## Stockage et partage des informations de session
Chaque objet `Session` fournit une propriété [`.storage`](API/SessionClass.md#storage) qui est un [objet partagé](Concepts/shared.md). Cette propriété vous permet de partager des informations entre tous les process gérés par la session.
@@ -100,13 +100,13 @@ Lorsqu'une session web est fermée, si la commande [`Session`](commands/session.
:::info
-Vous pouvez fermer une session à partir d'une page Qodly en utilisant la fonction [**logout**](qodly-studio.md#logout).
+Vous pouvez fermer une session à partir d'une page Qodly en utilisant la fonction [**logout**](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout).
:::
## Privilèges
-Les privilèges sont associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
+Des privilèges peuvent être associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
Vous assignez des privilèges en utilisant la [fonction `.setPrivileges()`](API/SessionClass.md#setprivileges). Dans votre code, vous pouvez vérifier les privilèges de la session pour autoriser ou refuser l'accès à l'aide de la fonction [`.hasPrivilege()`](API/SessionClass.md#hasprivilege). Par défaut, les nouvelles sessions n'ont aucun privilège : ce sont des sessions **Guest** (la fonction [`isGuest()`](API/SessionClass.md#isguest) retourne true).
@@ -219,6 +219,12 @@ Dans 4D, les tokens de session OTP sont utiles pour appeler des URL externes et
:::
+:::note
+
+Les tokens de session peuvent être partagés avec les [sessions desktop](../Desktop/sessions.md) permettant d'implémenter des applications utilisant des sessions hybrides.
+
+:::
+
### Vue d’ensemble
La séquence de base de l'utilisaton d'un token de session OTP dans une application web 4D est la suivante :
@@ -475,7 +481,7 @@ Un nouvel utilisateur est créé et des informations sont stockées dans la sess
- Les schémas HTTP et HTTPS sont tous deux pris en charge.
- Seules des [sessions évolutives](#enabling-web-sessions) peuvent être réutilisées avec des tokens.
- Seules les sessions de la base de données hôte peuvent être réutilisées (les sessions créées dans les serveurs web des composants ne peuvent pas être restaurées).
-- Les tokens ne sont pas pris en charge dans les sessions client/serveur ou les sessions mono-utilisateur.
+- Les tokens peuvent être **partagés** avec des [sessions desktop](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses) pour les accès hybrides (desktop et web).
### Durée de vie
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServer.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServer.md
index 8349889c2b8268..fe189c6c3eddbb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServer.md
@@ -4,11 +4,11 @@ slug: overview
title: Serveur Web
---
-4D in local mode and 4D Server include a web server engine (aka http server) that enables you to design and publish powerful web applications that can make the most of your 4D databases.
+4D en mode local et 4D Server incluent un moteur de serveur web (aussi appelé serveur HTTP) qui vous permet de concevoir et de publier de puissantes applications web qui peuvent tirer le meilleur parti de vos bases de données 4D.
-:::warning Deprecated feature
+:::warning Fonctionnalité obsolète
-Using the web server on a remote 4D is **deprecated** as of 4D 21. It is no longer recommended to use this feature.
+L'utilisation du serveur web sur un 4D distant est **dépréciée** à partir de 4D 21. Il n'est plus recommandé d'utiliser cette fonctionnalité.
:::
@@ -16,7 +16,7 @@ Using the web server on a remote 4D is **deprecated** as of 4D 21. It is no long
Vous pouvez démarrer ou arrêter la publication de l'application web à tout moment. Pour ce faire, il suffit de sélectionner une commande dans un menu ou d'exécuter une ligne de code.
-Monitoring the 4D web server is easy and can be done using the [4D Server administration window](../ServerWindow/http-server.md) or through [special URLs](webServerAdmin.md#administration-urls).
+Le contrôle du serveur web 4D est facile et peut être effectué à l'aide de la [fenêtre d'administration du serveur 4D](../ServerWindow/http-server.md) ou par le biais d'[URL spéciales](webServerAdmin.md#administration-urls).
## Prêt à l'emploi
@@ -47,13 +47,13 @@ Le serveur Web 4D inclut des fonctionnalités automatiques complètes pour une g
## Point d'accès pour requêtes REST
-Le serveur web 4D permet d'accéder aux données stockées dans vos applications 4D via des requêtes REST. REST requests provide direct access to any [ORDA](../ORDA/overview.md) operation such as adding, reading, editing, ordering, or searching data.
+Le serveur web 4D permet d'accéder aux données stockées dans vos applications 4D via des requêtes REST. Les requêtes REST fournissent un accès direct à toute opération [ORDA](../ORDA/overview.md) telle que l'ajout, la lecture, l'édition, la commande ou la recherche de données.
Les requêtes REST sont détaillées dans la section [serveur REST](../REST/gettingStarted.md).
## Extension des paramètres
-The 4D web server configuration is defined through a comprehensive set of application-level settings that can also be customized for the session using the `webServer` object properties or the [`WEB SET OPTION`](../commands-legacy/web-set-option.md) command.
+La configuration du serveur web 4D est définie par un ensemble complet de paramètres au niveau application qui peuvent également être personnalisés pour la session en utilisant les propriétés de l'objet `webServer` ou la commande [`WEB SET OPTION`](../commands-legacy/web-set-option.md).
## Templates et URLs
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md
index 6cddcc5504bfd3..2466c2f8b258d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerConfig.md
@@ -606,9 +606,9 @@ Les paramètres suivants sont toujours pris en charge mais reposent sur des fonc
Statut de validation d'adresse IP pour les cookies de session. Pour des raisons de sécurité, le serveur Web vérifie par défaut l'adresse IP de chaque requête contenant un cookie de session et la rejette si cette adresse ne correspond pas à l'adresse IP utilisée pour créer le cookie. Dans certaines applications spécifiques, vous souhaiterez peut-être désactiver cette validation et accepter les cookies de session, même lorsque leurs adresses IP ne correspondent pas. Par exemple, lorsque les appareils mobiles basculent entre les réseaux Wifi et 4G/5G, leur adresse IP change. Dans ce cas, vous devez passer 0 à cette option pour permettre aux clients de continuer à utiliser leurs sessions Web même lorsque les adresses IP changent. Note : ce paramètre réduit le niveau de sécurité de votre application. Une fois modifiée, cette option prend effet immédiatement (il n'est pas nécessaire de redémarrer le serveur HTTP).
-### Generic Web User
+### Utilisateur Web générique
-This option allows you to designate a user, previously defined in the [4D password table](../Users/handling_users_groups.md), as a "Generic Web User". In this case, each browser allowed to connect to the database gets access authorizations and restrictions associated with this user.
+Cette option vous permet de désigner un utilisateur, précédemment défini dans les [utilisateurs 4D](../Users/handling_users_groups.md), comme "utilisateur Web générique". Dans ce cas, chaque navigateur autorisé à se connecter à la base de données obtient les autorisations et les restrictions d'accès associées à cet utilisateur.
#### Envoyer directement les caractères étendus
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerObject.md b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerObject.md
index 80ee10ccfba2e9..6a03ee09d4103c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerObject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WebServer/webServerObject.md
@@ -1,9 +1,9 @@
---
id: webServerObject
-title: Web Server instances
+title: Instances du serveur Web
---
-A 4D project can start and monitor a web server for the main (host) application as well as each [hosted component](../Concepts/components.md).
+Un projet 4D peut démarrer et contrôler un serveur web pour l'application principale (hôte) ainsi que pour chaque [composant hébergé](../Concepts/components.md).
Par exemple, si vous avez installé deux composants dans votre application principale, vous pouvez démarrer et contrôler jusqu'à trois serveurs Web indépendants à partir de votre application :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
index 440227fc3c501a..18ef6ff5c43f7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-bookmark-range
displayed_sidebar: docs
---
-**WP Bookmark range** ( *docWP* ; *nomSignet* ) -> Résultat
+**WP Bookmark range** ( *docWP* : Object ; *nomSignet* : Text ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
index 7b5c967e43027d..e7ba5f3a01957f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-compute-formulas
displayed_sidebar: docs
---
-**WP COMPUTE FORMULAS** ( *objCible* )
+**WP COMPUTE FORMULAS** ( *objCible* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
index bc6407b081e82c..65ace4d5c155a9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-bookmark
displayed_sidebar: docs
---
-**WP DELETE BOOKMARK** ( *docWP* ; *nomSignet* )
+**WP DELETE BOOKMARK** ( *docWP* : Object ; *nomSignet* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
index 40464e0696cf4b..94b74ae837dfd2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-footer
displayed_sidebar: docs
---
-**WP DELETE FOOTER** ( *wpSection* )
+**WP DELETE FOOTER** ( *wpSection* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
index ba89ab45484b33..d7319c99b671de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-header
displayed_sidebar: docs
---
-**WP DELETE HEADER** ( *wpSection* )
+**WP DELETE HEADER** ( *wpSection* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
index 67a34003365885..5e66019386bfd0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-picture
displayed_sidebar: docs
---
-**WP DELETE PICTURE** ( *objImage* )
+**WP DELETE PICTURE** ( *objImage* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
index 8ec5aa53f9ba14..fc11da46dda116 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-style-sheet
displayed_sidebar: docs
---
-**WP DELETE STYLE SHEET** ( *objFeuilleStyle* ) | (*docWP* ; *nomFeuilleStyle* )
+**WP DELETE STYLE SHEET** ( *objFeuilleStyle* : Object ) | (*docWP* : Object ; *nomFeuilleStyle* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
index 0c2879ceb7853c..6a526470578adc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-text-box
displayed_sidebar: docs
---
-**WP DELETE TEXT BOX** ( *textBox* )
+**WP DELETE TEXT BOX** ( *textBox* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
index 11694efeca78bf..35842c7fcec97e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-all
displayed_sidebar: docs
---
-**WP Find all** ( *objCible* ; *valeurRecherche* ; *conditionRecherche* {; *remplacerValeur*} ) -> Résultat
+**WP Find all** ( *objCible* : Object ; *valeurRecherche* : Text ; *conditionRecherche* : Integer {; *remplacerValeur* : Text} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
index 61e7d296914455..d09fd792bec78c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-next
displayed_sidebar: docs
---
-**WP Find next** ( *objCible* ; *rechercherAprès* ; *rechercherValeur* ; *conditionRecherche* {; *remplacerValeur*} ) -> Résultat
+**WP Find next** ( *objCible* : Object ; *rechercherAprès* : Object ; *rechercherValeur* : Text ; *conditionRecherche* : Integer {; *remplacerValeur* : Text} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
index fccd2fac0fd3ad..7ec1a70167bf1c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-previous
displayed_sidebar: docs
---
-**WP Find previous** ( *objCible* ; *rechercherAprès* ; *rechercherValeur* ; *conditionRecherche* {; *remplacerValeur*} ) -> Résultat
+**WP Find previous** ( *objCible* : Object ; *rechercherAprès* : Object ; *rechercherValeur* : Text ; *conditionRecherche* : Integer {; *remplacerValeur* : Text} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
index 4dd50a70f743f6..aaaaa709cce2be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-freeze-formulas
displayed_sidebar: docs
---
-**WP FREEZE FORMULAS** ( *objCible* {; *recompute*} )
+**WP FREEZE FORMULAS** ( *objCible* : Object {; *recompute* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
index cd68144259ea0e..5c763be8943cee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-body
displayed_sidebar: docs
---
-**WP Get body** ( *docWP* ) -> Résultat
+**WP Get body** ( *docWP* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
index 0d4a5575b6cb13..ea755d323da025 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-bookmarks
displayed_sidebar: docs
---
-**WP GET BOOKMARKS** ( *docWP* ; *tabNomsSignets* )
+**WP GET BOOKMARKS** ( *docWP* : Object ; *tabNomsSignets* : Tableau texte )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
index 2f0ca75eaa2429..f75d4956493eb2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-breaks
displayed_sidebar: docs
---
-**WP Get breaks** ( *objCible* {; *typeSaut*} ) -> Résultat
+**WP Get breaks** ( *objCible* : Object {; *typeSaut* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
index 61714d52c70073..6840ee24cd4a1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-data-context
displayed_sidebar: docs
---
-**WP Get data context** ( *wpDoc* ) -> Résultat
+**WP Get data context** ( *wpDoc* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
index c8bf134fcd1908..40789d948be4d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-element-by-id
displayed_sidebar: docs
---
-**WP Get element by ID** ( *docWP* ; *ID* ) -> Résultat
+**WP Get element by ID** ( *docWP* : Object ; *ID* : Text ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
index d922f0e79b520d..3b10d4dbe6399b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-elements
displayed_sidebar: docs
---
-**WP Get elements** ( *objCible* {; *typeElement*} ) -> Résultat
+**WP Get elements** ( *objCible* : Object {; *typeElement* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
index 6a263ab016a1e6..4346b24932d9bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-footer
displayed_sidebar: docs
---
-**WP Get footer** ( *objCible* ) | (*docWP* ; *indexSection* {; *typeSousSection*} ) -> Résultat
+**WP Get footer** ( *objCible* : Object ) | (*docWP* : Object ; *indexSection* : Integer {; *typeSousSection* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
index a24280bf24d96d..24f79fde645fc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-formulas
displayed_sidebar: docs
---
-**WP Get formulas** ( *objCible* ) -> Résultat
+**WP Get formulas** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
index e1291905fe3a42..d64c5b071c3be4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-frame
displayed_sidebar: docs
---
-**WP Get frame** ( {* ;} *zoneWP* {; *textBoxID*} ) -> Résultat
+**WP Get frame** ( {* ;} *zoneWP* : Text {; *textBoxID* : Chaîne} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
index 866a291e1d64d8..fdf37452cc3c42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-header
displayed_sidebar: docs
---
-**WP Get header** ( *objCible* ) | (*docWP* ; *indexSection* {; *typeSousSection*} ) -> Résultat
+**WP Get header** ( *objCible* : Object ) | (*docWP* : Object ; *indexSection* : Integer {; *typeSousSection* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
index dda17fddeecace..7585fd387e5abe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-links
displayed_sidebar: docs
---
-**WP Get links** ( *objCible* ) -> Résultat
+**WP Get links** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
index 86ffb09f602eeb..29c3793c1cabb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-page-count
displayed_sidebar: docs
---
-**WP Get page count** ( *objCible* ) -> Résultat
+**WP Get page count** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
index 886d46e0036356..91ec66db22b21d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-position
displayed_sidebar: docs
---
-**WP Get position** ( *objCible* {; *presentation*} ) -> Résultat
+**WP Get position** ( *objCible* : Object {; *presentation* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
index 099ea339a52406..ac8cc819261cbe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-section
displayed_sidebar: docs
---
-**WP Get section** ( *objCible* ) | (*docWP* ; *indexSection* ) -> Résultat
+**WP Get section** ( *objCible* : Object ) | (*docWP* : Object ; *indexSection* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
index a0237d686aba58..a7720df5c15de5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-sections
displayed_sidebar: docs
---
-**WP Get sections** ( *objCible* ) -> Résultat
+**WP Get sections** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
index b7f6b10a8b6db3..95a6f6f7d3fc3b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheet
displayed_sidebar: docs
---
-**WP Get style sheet** ( *docWP* ; *nomFeuilleStyle* ) -> Résultat
+**WP Get style sheet** ( *docWP* : Object ; *nomFeuilleStyle* : Text ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
index 10c33e7ae67761..54e8f846f26b27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheets
displayed_sidebar: docs
---
-**WP Get style sheets** ( *docWP* ; *type* ) -> Résultat
+**WP Get style sheets** ( *docWP* : Object ; *type* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
index 33dbe226b82029..5b2fed0e2c1f97 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-subsection
displayed_sidebar: docs
---
-**WP Get subsection** ( *objCible* ) | (*wpSection* ; *typeSousSection* ) -> Résultat
+**WP Get subsection** ( *objCible* : Object ) | (*wpSection* : Object ; *typeSousSection* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
index 1c49eb4070b403..c9ca150cbc8f6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-text
displayed_sidebar: docs
---
-**WP Get text** ( *objCible* {; *expressions*} ) -> Résultat
+**WP Get text** ( *objCible* : Object {; *expressions* : Number} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
index 4fe8f154138aab..53a3e3d001e3b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-view-properties
displayed_sidebar: docs
---
-**WP Get view properties** ( * ; *zoneWP* ) -> Résultat
+**WP Get view properties** ( * ; *zoneWP* : Text, Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
index c4d7921fad179f..ebaf7e91c95677 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-import-style-sheets
displayed_sidebar: docs
---
-**WP IMPORT STYLE SHEETS** ( *docCible* ; *docSource* )
+**WP IMPORT STYLE SHEETS** ( *docCible* : Object ; *docSource* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
index 611a8fc2c2e67b..5ee56470c97a20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-insert-table
displayed_sidebar: docs
---
-**WP Insert table** ( *objCible* ; *mode* {; *miseAJourPlage* {; *nbCols* {; *nbLignes*}}} ) -> Résultat
+**WP Insert table** ( *objCible* : Object ; *mode* : Integer {; *miseAJourPlage* : Integer {; *nbCols* : Integer {; *nbLignes* : Integer}}} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
index 80555247a312a3..44436a40141e79 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-is-font-style-supported
displayed_sidebar: docs
---
-**WP Is font style supported** ( *objCible* ; *stylePoliceWP* ) -> Résultat
+**WP Is font style supported** ( *objCible* : Object ; *stylePoliceWP* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
index 6ade11a7fcfd71..3bdc8c4528333b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-bookmark
displayed_sidebar: docs
---
-**WP NEW BOOKMARK** ( *objCible* ; *nomSignet* )
+**WP NEW BOOKMARK** ( *objCible* : Object ; *nomSignet* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
index 2092cd5d10a35b..b29940aabd4dae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-footer
displayed_sidebar: docs
---
-**WP New footer** ( *wpSection* ) -> Résultat
+**WP New footer** ( *wpSection* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
index da1d7cbccb4fb7..7d73eebfe3d734 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-header
displayed_sidebar: docs
---
-**WP New header** ( *wpSection* ) -> Résultat
+**WP New header** ( *wpSection* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
index a79252e7f703fc..65d42a8cb23e44 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-style-sheet
displayed_sidebar: docs
---
-**WP New style sheet** ( *docWP* ; *typeFeuilleStyle* ; *nomFeuilleStyle* ) -> Résultat
+**WP New style sheet** ( *docWP* : Object ; *typeFeuilleStyle* : Integer ; *nomFeuilleStyle* : Text ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
index a97e54f72b1b2b..aba1dd4452765a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-subsection
displayed_sidebar: docs
---
-**WP New subsection** ( *wpSection* ; *typeSousSection* ) -> Résultat
+**WP New subsection** ( *wpSection* : Object ; *typeSousSection* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
index db79c52cca1c3d..dc3750322d0ef3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-text-box
displayed_sidebar: docs
---
-**WP New text box** ( *wpDoc* ; *pageNum* ) -> Résultat
+**WP New text box** ( *wpDoc* : Object ; *pageNum* : Number ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
index 1d8c769be8b691..852b8349fe8a82 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new
displayed_sidebar: docs
---
-**WP New** {( *source* {; *option*} )} -> Résultat
+**WP New** ( *source* : Text, Blob, Object {; *option* : Integer} )} -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
index 9e58d49cbe50e5..400bb6e2cb12d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-paragraph-range
displayed_sidebar: docs
---
-**WP Paragraph range** ( *objCible* ) -> Résultat
+**WP Paragraph range** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
index 37f3fb7f172b2e..3eccd1851d4ecc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-picture-range
displayed_sidebar: docs
---
-**WP Picture range** ( *objCible* ) -> Résultat
+**WP Picture range** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
index 35f98e473e744d..efb29bac892c3c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-print
displayed_sidebar: docs
---
-**WP PRINT** ( *docWP* {; *optionsImpr*} )
+**WP PRINT** ( *docWP* : Object {; *optionsImpr* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
index e6873193a2f8ea..a011856a628046 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-select
displayed_sidebar: docs
---
-**WP SELECT** ( {{* ;} *zoneWP*;} {*objCible*} {; *débutPlage* ; *finPlage*} )
+**WP SELECT** ( {{* ;} *zoneWP* : Text, Object;} {*objCible* : Object} {; *débutPlage* : Integer ; *finPlage* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
index 77d3ff633d3f28..6a8ffd16ade70e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-selection-range
displayed_sidebar: docs
---
-**WP Selection range** ( {* ;} *zoneWP* ) -> Résultat
+**WP Selection range** ( {* ;} *zoneWP* : Text ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
index c0838c91f9ecfb..6b59dd96ec79d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-data-context
displayed_sidebar: docs
---
-**WP SET DATA CONTEXT** ( *wpDoc* ; *contextData* )
+**WP SET DATA CONTEXT** ( *wpDoc* : Object ; *contextData* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
index e723accb93a9c6..6006b52fb00050 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-frame
displayed_sidebar: docs
---
-**WP SET FRAME** ( {* ;} *zoneWP* ; *sélecteurCadre* {; *textBoxID*} )
+**WP SET FRAME** ( {* ;} *zoneWP* : Text ; *sélecteurCadre* : Integer {; *textBoxID* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
index 82f9f942fad5a1..9ed62308942ecd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-link
displayed_sidebar: docs
---
-**WP SET LINK** ( *objCible* ; *objLien* )
+**WP SET LINK** ( *objCible* : Object ; *objLien* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
index b2fe7e966b734b..7affaccdb1212a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-text
displayed_sidebar: docs
---
-**WP SET TEXT** ( *objCible* ; *nouveauTexte* ; *positionTexte* {; *miseAJourPlage*} )
+**WP SET TEXT** ( *objCible* : Object ; *nouveauTexte* ; *positionTexte* : Number {; *miseAJourPlage* : Number} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
index e3d86f4f77878a..b7fd4d8908c95a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-view-properties
displayed_sidebar: docs
---
-**WP SET VIEW PROPERTIES** ( {* ;} *zoneWP* ; *attributsVueWP* )
+**WP SET VIEW PROPERTIES** ( {* ;} *zoneWP* : Text, Object ; *attributsVueWP* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
index 6d77b7decdcf8c..78d02fa12a9d37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-columns
displayed_sidebar: docs
---
-**WP TABLE DELETE COLUMNS** ( *objCible* ) | ( *refTableau* ; *numCol* {; *nbCols*} )
+**WP TABLE DELETE COLUMNS** ( *objCible* : Object ) | ( *refTableau* : Object ; *numCol* : Integer {; *nbCols* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
index b89d295f9b5020..0508906c25bd41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-rows
displayed_sidebar: docs
---
-**WP TABLE DELETE ROWS** ( *objCible* ) | ( *refTableau* ; *numLigne* {; *nbLignes*} )
+**WP TABLE DELETE ROWS** ( *objCible* : Object ) | ( *refTableau* : Object ; *numLigne* : Integer {; *nbLignes* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
index 8284eca664073d..2ddcd652bf3268 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-cells
displayed_sidebar: docs
---
-**WP Table get cells** ( *objCible* ) | ( *refTableau* ; *debutCol* ; *debutLigne* {; *nbCols*{; *nbLignes*}} ) -> Résultat
+**WP Table get cells** ( *objCible* : Object ) | ( *refTableau* : Object ; *debutCol* : Integer ; *debutLigne* : Integer {; *nbCols* : Integer{; *nbLignes* : Integer}} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
index 32c6c2cea02c7f..544f6b0a71f0d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-columns
displayed_sidebar: docs
---
-**WP Table get columns** ( *objCible* ) | ( *refTableau* ; *debutCol* {; *nbCols*} ) -> Résultat
+**WP Table get columns** ( *objCible* : Object ) | ( *refTableau* : Object ; *debutCol* : Integer {; *nbCols* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
index fa7b60101054ad..bd3341ab9dccb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-rows
displayed_sidebar: docs
---
-**WP Table get rows** ( *objCible* ) | ( *refTableau* ; *debutLigne* {; *nbLignes*} ) -> Résultat
+**WP Table get rows** ( *objCible* : Object ) | ( *refTableau* : Object ; *debutLigne* : Integer, Text {; *nbLignes* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
index 0bfd5f98a2e447..dbb981d93c90ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-columns
displayed_sidebar: docs
---
-**WP Table insert columns** ( objCible | {*refTableau* ; *numCol*} {; *nbCols*} ) -> Résultat
+**WP Table insert columns** ( objCible | {*refTableau* : Object ; *numCol* : Integer} {; *nbCols* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
index 7cb3c810435167..0a53b8ae20fe93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-rows
displayed_sidebar: docs
---
-**WP Table insert rows** ( objCible | {*refTableau* ; *numLigne*} {; *nbLignes*} ) -> Résultat
+**WP Table insert rows** ( objCible | {*refTableau* : Object ; *numLigne* : Integer} {; *nbLignes* : Integer} ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
index e0e11126bfa184..649fc995f40d24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-merge-cells
displayed_sidebar: docs
---
-**WP TABLE MERGE CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE MERGE CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
index 262d3448152b69..c94ff96bb7a70e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-range
displayed_sidebar: docs
---
-**WP Table range** ( *objCible* ) -> Résultat
+**WP Table range** ( *objCible* : Object ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
index e4f8faab1851ed..93de14218b1748 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-split-cells
displayed_sidebar: docs
---
-**WP TABLE SPLIT CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE SPLIT CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
index ae9a4d4d9cf4df..fc32e09bad9ffe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-text-range
displayed_sidebar: docs
---
-**WP Text range** ( *objCible* ; *débutPlage* ; *finPlage* ) -> Résultat
+**WP Text range** ( *objCible* : Object ; *débutPlage* : Integer ; *finPlage* : Integer ) -> Résultat
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
index 88c8a39d2dd7e8..cdc494f713bac1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-use-page-setup
displayed_sidebar: docs
---
-**WP USE PAGE SETUP** ( *docWP* )
+**WP USE PAGE SETUP** ( *docWP* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
index 60400e7ab9ec95..0fbd4d43609b34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
@@ -4,7 +4,7 @@ title: WP Add picture
displayed_sidebar: docs
---
-**WP Add picture** ( *wpDoc* {; *picture*} ) : Object
**WP Add picture** ( *wpDoc* {; *picturePath*} ) : Object
**WP Add picture** ( *wpDoc* {; *pictureFileObj*} ) : Object
+**WP Add picture** ( *wpDoc* : Object {; *picture* : Picture} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *picturePath* : Text} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *pictureFileObj* : 4D.File} ) : Object
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
index 16592ccb9b38ae..7013621bc43707 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-section
displayed_sidebar: docs
---
-**WP DELETE SECTION** ( *section* )
**WP DELETE SECTION** ( *wpDoc* ; *indexNumber* {; *count*} )
+**WP DELETE SECTION** ( *section* : Object )
**WP DELETE SECTION** ( *wpDoc* : Object ; *indexNumber* : Integer {; *count* : Integer} )
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
index eee0baa0647a72..62712ad45a8627 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-subsection
displayed_sidebar: docs
---
-**WP DELETE SUBSECTION** ( *wpSection* ; *subSectionType* )
**WP DELETE SUBSECTION** ( *subSection* )
+**WP DELETE SUBSECTION** ( *wpSection* : Object ; *subSectionType* : Integer )
**WP DELETE SUBSECTION** ( *subSection* : Object )
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
index 719b02d2a551d4..b57de11af79b3c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
@@ -4,7 +4,7 @@ title: WP EXPORT DOCUMENT
displayed_sidebar: docs
---
-**WP EXPORT DOCUMENT** ( *wpDoc* ; *filePath* {; *format* {; *option*}} )
**WP EXPORT DOCUMENT** ( *wpDoc* ; *fileObj* {; *format* {; *option*}} )
+**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *filePath* : Text {; *format* : Integer {; *option* : Object, Integer}} )
**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *fileObj* : 4D.File {; *format* : Integer {; *option* : Object, Integer}} )
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
index 8ab471cf8de5d3..f803c2c20c26ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-export-variable
displayed_sidebar: docs
---
-**WP EXPORT VARIABLE** ( *wpDoc* ; *destination* ; *format* {; *option*} )
+**WP EXPORT VARIABLE** ( *wpDoc* : Object ; *destination* : Text, Blob ; *format* : Integer {; *option* : Object, Integer} )
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
index b4303c7732501e..74df982a11cba7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
@@ -4,17 +4,17 @@ title: WP Get attributes
displayed_sidebar: docs
---
-**WP Get attributes** ( *targetObj* ; *...attribName* ; *...attribValue* ) : Object
**WP Get attributes** ( *targetObj* ; *attribColl* ) : Object
+**WP Get attributes** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any ) : Object
**WP Get attributes** ( *targetObj* : Object ; *attribColl* : Collection ) : Object
-| Paramètres | Type | | Description |
-| ----------- | ---------------------------------------------- | --------------------------- | ----------------------------------------- |
-| targetObj | Object | → | Plage ou élément ou document 4D Write Pro |
-| attribName | Text | → | Name of attribute to get |
-| attribValue | Text, Number, Array, Collection, Picture, Date | ← | Current value of attribute for the target |
-| attribColl | Collection | → | Collection of attribute names to get |
-| Résultat | Object | ← | Attribute names and values |
+| Paramètres | Type | | Description |
+| ----------- | ---------- | --------------------------- | ----------------------------------------- |
+| targetObj | Object | → | Plage ou élément ou document 4D Write Pro |
+| attribName | Text | → | Name of attribute to get |
+| attribValue | any | ← | Current value of attribute for the target |
+| attribColl | Collection | → | Collection of attribute names to get |
+| Résultat | Object | ← | Attribute names and values |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
index 3d8e094f354071..ff52728cb56140 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
@@ -4,7 +4,7 @@ title: WP Import document
displayed_sidebar: docs
---
-**WP Import document** ( *filePath* {; *option*} ) : Object
**WP Import document** ( *fileObj* {; *option*} ) : Object
+**WP Import document** ( *filePath* : Text {; *option* : Integer, Object} ) : Object
**WP Import document** ( *fileObj* : 4D.File {; *option* : Integer, Object} ) : Object
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
index a312698abd737f..b4565e67cec0bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
@@ -4,7 +4,7 @@ title: WP Insert break
displayed_sidebar: docs
---
-**WP Insert break** ( *targetObj* ; *breakType* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert break** ( *targetObj* : Object ; *breakType* : Integer ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
index 46ec6f90585fa9..21dc63a77e6cea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
@@ -4,7 +4,7 @@ title: WP Insert document body
displayed_sidebar: docs
---
-**WP Insert document body** ( *targetObj* ; *wpDoc* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert document body** ( *targetObj* : Object ; *wpDoc* : Object ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
index 9ee8c596329611..021bc7dac1e56d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
@@ -4,7 +4,7 @@ title: WP Insert formula
displayed_sidebar: docs
---
-**WP Insert formula** ( *targetObj* ; *formula* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert formula** ( *targetObj* : Object ; *formula* : Object ; *mode* : Real {; *rangeUpdate* : Real} ) : Object
@@ -12,8 +12,8 @@ displayed_sidebar: docs
| ----------- | ------ | --------------------------- | ------------------------------------------------------------------ |
| targetObj | Object | → | Plage ou élément ou document 4D Write Pro |
| formula | Object | → | Objet de formule OU Objet avec des propriétés de formule et de nom |
-| mode | Number | → | Mode d'insertion |
-| rangeUpdate | Number | → | Inclut ou exclut le contenu inséré dans la plage |
+| mode | Real | → | Mode d'insertion |
+| rangeUpdate | Real | → | Inclut ou exclut le contenu inséré dans la plage |
| Résultat | Object | ← | Objet de plage de texte représentant le résultat de la formule |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
index d0d90de82a5262..d8107a6736d71f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
@@ -4,7 +4,7 @@ title: WP Insert picture
displayed_sidebar: docs
---
-**WP Insert picture** ( *targetObj* ; *picture* ; *mode* {; *rangeUpdate*} ): Object
**WP Insert picture** ( *targetObj* ; *pictureFileObj*; *mode* {; *rangeUpdate*}): Object
+**WP Insert picture** ( *targetObj* : Object ; *picture* : Picture ; *mode* : Integer {; *rangeUpdate* : Integer} ): Object
**WP Insert picture** ( *targetObj* : Object ; *pictureFileObj* : 4D.File; *mode* : Integer {; *rangeUpdate* : Integer}): Object
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
index 20d15f7ddfa274..85d482da68cc57 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
@@ -4,7 +4,7 @@ title: WP RESET ATTRIBUTES
displayed_sidebar: docs
---
-**WP RESET ATTRIBUTES** ( *targetObj* ; *...attribName* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *...attribName* })
**WP RESET ATTRIBUTES** ( *targetObj* ; *attribColl* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *attribColl*})
+**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *...attribName* : Text })
**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *attribColl* : Collection )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *attribColl* : Collection})
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
index a6e8ad5a679a15..908c0f98bd8848 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
@@ -4,16 +4,16 @@ title: WP SET ATTRIBUTES
displayed_sidebar: docs
---
-**WP SET ATTRIBUTES** ( *targetObj* ; *...attribName* ; *...attribValue* )
**WP SET ATTRIBUTES** ( *targetObj* ; *attribObj* )
+**WP SET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any )
**WP SET ATTRIBUTES** ( *targetObj* : Object ; *attribObj* : Object )
-| Paramètres | Type | | Description |
-| ----------- | ----------------------------------------------- | --------------------------- | --------------------------------------------------------------------------------- |
-| targetObj | Object | → | Plage ou élément ou document 4D Write Pro |
-| attribName | Text | → | Nom de l'attribut à définir |
-| attribValue | Text, Number, Object, Collection, Picture, Date | → | Nouvelle valeur d'attribut |
-| attribObj | Object | → | Objet contenant les noms des attributs et leurs valeurs correspondantes à définir |
+| Paramètres | Type | | Description |
+| ----------- | ------ | --------------------------- | --------------------------------------------------------------------------------- |
+| targetObj | Object | → | Plage ou élément ou document 4D Write Pro |
+| attribName | Text | → | Nom de l'attribut à définir |
+| attribValue | any | → | Nouvelle valeur d'attribut |
+| attribObj | Object | → | Objet contenant les noms des attributs et leurs valeurs correspondantes à définir |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
index 74766becce0d1c..ca985a584808d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
@@ -4,16 +4,16 @@ title: WP Table append row
displayed_sidebar: docs
---
-**WP Table append row** ( *tableRef* ; *...value* ) : Object
**WP Table append row** ( *tableRef* ; *valueColl* ) : Object
+**WP Table append row** ( *tableRef* : Object ; *...value* : any ) : Object
**WP Table append row** ( *tableRef* : Object ; *valueColl* : Collection ) : Object
-| Paramètres | Type | | Description |
-| ---------- | ----------------------------------------- | --------------------------- | ---------------------------------------------------- |
-| tableRef | Object | → | Référence du tableau |
-| value | Text, Number, Time, Date, Picture, Object | → | Valeur(s) à définir dans la ligne |
-| valueColl | Collection | → | Collection de valeurs à définir dans la ligne |
-| Résultat | Object | ← | Objet plage ligne |
+| Paramètres | Type | | Description |
+| ---------- | ---------- | --------------------------- | ---------------------------------------------------- |
+| tableRef | Object | → | Référence du tableau |
+| value | any | → | Valeur(s) à définir dans la ligne |
+| valueColl | Collection | → | Collection de valeurs à définir dans la ligne |
+| Résultat | Object | ← | Objet plage ligne |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png
index 293036a14b5daa..50f2d9e129f93a 100644
Binary files a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png
new file mode 100644
index 00000000000000..4c0128bc351b26
Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png
new file mode 100644
index 00000000000000..dc2f7389acf6eb
Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png
new file mode 100644
index 00000000000000..a0b979c2a19216
Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
index 5ef9d24e87eb43..803e586bf222e0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
@@ -5,11 +5,11 @@ slug: /commands/abort-process-by-id
displayed_sidebar: docs
---
-**ABORT PROCESS BY ID** ( *uniqueID* )
+**ABORT PROCESS BY ID** ( *uniqueID* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| uniqueID | Integer | → | ID unique du process |
+| uniqueID | Integer | → | ID unique du process |
@@ -48,6 +48,6 @@ Vous souhaitez stopper le process sélectionné parmi la collection de process a
| | |
| --- | --- |
| Numéro de commande | 1634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
index e22c835878d53d..bd2d5fabbb4bcb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
@@ -39,6 +39,6 @@ Bien que la commande **ABORT** soit destinée à une utilisation au sein d'une m
| | |
| --- | --- |
| Numéro de commande | 156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
index fd4b6c330de88c..9631637f07cf6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
@@ -5,11 +5,11 @@ slug: /commands/abs
displayed_sidebar: docs
---
-**Abs** ( *nombre* ) : Real
+**Abs** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre dont vous voulez obtenir la valeur absolue |
+| nombre | Real | → | Nombre dont vous voulez obtenir la valeur absolue |
| Résultat | Real | ← | Valeur absolue de nombre |
@@ -32,6 +32,6 @@ L'exemple suivant retourne la valeur absolue de -10,3, qui est 10,3 :
| | |
| --- | --- |
| Numéro de commande | 99 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
index 85afe0e9ae95aa..1e0d6b3c78a63c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
@@ -41,7 +41,7 @@ La commande **ACCEPT** est autorisée en mode headless, dans le contexte des zon
| | |
| --- | --- |
| Numéro de commande | 269 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
index 204b12a096c9f2..5c6cf991b5bed5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
@@ -5,11 +5,11 @@ slug: /commands/accumulate
displayed_sidebar: docs
---
-**ACCUMULATE** ( *objet* {; *objet2* ; ... ; *objetN*} )
+**ACCUMULATE** ( *objet* : Field, Variable {; *...objet* : Field, Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Field, Variable | → | Champ ou variable de type numérique à cumuler |
+| objet | Field, Variable | → | Champ ou variable de type numérique à cumuler |
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [BREAK LEVEL](break-level.md).
| | |
| --- | --- |
| Numéro de commande | 303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
index 6bb2a8ec128bfd..541c3f96d9a01f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
@@ -5,12 +5,12 @@ slug: /commands/action-info
displayed_sidebar: docs
---
-**Action info** ( *action* {; *cible*} ) : Object
+**Action info** ( *action* : Text {; *cible* : Integer} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| action | Text | → | Nom de l'action standard ou syntaxe incluant un paramètre si celui-ci est requis |
-| cible | Integer | → | Définit la cible de l'action où lire les informations : formulaire principal ou formulaire courant |
+| action | Text | → | Nom de l'action standard ou syntaxe incluant un paramètre si celui-ci est requis |
+| cible | Integer | → | Définit la cible de l'action où lire les informations : formulaire principal ou formulaire courant |
| Résultat | Object | ← | Objet contenant le statut de l'action sous forme de booléens : isEnabled, isVisible, isChecked, isMixed, isUnknownState |
@@ -71,6 +71,6 @@ Vous voulez savoir si l'action standard **Copier** est disponible (c'est-à-dire
| | |
| --- | --- |
| Numéro de commande | 1442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
index 752ed70b055054..85d36ea12f4188 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 346 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
index e5745c39fc8352..77c1f89a7accf7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
@@ -50,6 +50,6 @@ Vous voulez connaître le statut courant de transaction :
| | |
| --- | --- |
| Numéro de commande | 1387 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
index 5097c6e41a2616..928ea83351cf46 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
@@ -5,7 +5,7 @@ slug: /commands/activity-snapshot
displayed_sidebar: docs
---
-**ACTIVITY SNAPSHOT** (* tabActivités* {; *} )
**ACTIVITY SNAPSHOT** ( *tabUUID* ; *tabDébut* ; *tabDurée* ; *tabInfo* {; *tabDétails*} )
+**ACTIVITY SNAPSHOT** (*tabActivités* : Tableau objet, Tableau texte {; *} )
**ACTIVITY SNAPSHOT** ( *tabUUID* : Tableau objet, Tableau texte ; *tabDébut* : Text array ; *tabDurée* : Integer array ; *tabInfo* : Text array {; *tabDétails* : Object array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| tabDurée | Integer array | ← | Durées des opérations en millisecondes |
| tabInfo | Text array | ← | Description |
| tabDétails | Object array | ← | Détails du contexte et Sous-opérations (le cas échéant) |
-| * | Opérateur | → | Si passé = Lire activité serveur |
+| * | Opérateur | → | Si passé = Lire activité serveur |
@@ -110,6 +110,6 @@ Vous obtenez des tableaux du type :
| | |
| --- | --- |
| Numéro de commande | 1277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
index 546f223ef7a8a5..84af5017aedaff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
@@ -5,12 +5,12 @@ slug: /commands/add-record
displayed_sidebar: docs
---
-**ADD RECORD** ( {*laTable*}{;}{*} )
+**ADD RECORD** ( {*laTable* : Table}{;}{*} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle ajouter des données ou Table par défaut si ce paramètre est omis |
-| * | Operator | → | Cacher les barres de défilement |
+| laTable | Table | → | Table dans laquelle ajouter des données ou Table par défaut si ce paramètre est omis |
+| * | Operator | → | Cacher les barres de défilement |
@@ -95,7 +95,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est validé et 0 s
| | |
| --- | --- |
| Numéro de commande | 56 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
index 50f413c7dde5d9..871c1353cb5e5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
@@ -5,14 +5,14 @@ slug: /commands/add-to-date
displayed_sidebar: docs
---
-**Add to date** ( *date* ; *années* ; *mois* ; *jours* ) : Date
+**Add to date** ( *date* : Date ; *années* : Integer ; *mois* : Integer ; *jours* : Integer ) : Date
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| date | Date | → | Date à laquelle ajouter jours, mois et années |
-| années | Integer | → | Nombre d'années à ajouter à la date |
-| mois | Integer | → | Nombre de mois à ajouter à la date |
-| jours | Integer | → | Nombre de jours à ajouter à la date |
+| date | Date | → | Date à laquelle ajouter jours, mois et années |
+| années | Integer | → | Nombre d'années à ajouter à la date |
+| mois | Integer | → | Nombre de mois à ajouter à la date |
+| jours | Integer | → | Nombre de jours à ajouter à la date |
| Résultat | Date | ← | Date résultante |
@@ -42,6 +42,6 @@ Alors que les [Self](self.md) vous permettent d'ajouter des jours à une date, *
| | |
| --- | --- |
| Numéro de commande | 393 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
index 9a3adfdb36071c..0bebb50624dcae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
@@ -5,12 +5,12 @@ slug: /commands/add-to-set
displayed_sidebar: docs
---
-**ADD TO SET** ( {*laTable* ;} *ensemble* )
+**ADD TO SET** ( {*laTable* : Table ;} *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
-| ensemble | Text | → | Nom de l'ensemble auquel ajouter l'enregistrement courant |
+| laTable | Table | → | Table de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| ensemble | Text | → | Nom de l'ensemble auquel ajouter l'enregistrement courant |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 119 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
index 309fe83c177eb6..5b7ed1e3cb5946 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-blobs-cache-priority
displayed_sidebar: docs
---
-**ADJUST BLOBS CACHE PRIORITY** ( *laTable* ; *priorité* )
+**ADJUST BLOBS CACHE PRIORITY** ( *laTable* : Table ; *priorité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez ajuster la priorité des données "blobs" |
-| priorité | Integer | → | Priorité des données "blobs" de la table dans le cache |
+| laTable | Table | → | Table dont vous souhaitez ajuster la priorité des données "blobs" |
+| priorité | Integer | → | Priorité des données "blobs" de la table dans le cache |
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des champs Texte de la table
| | |
| --- | --- |
| Numéro de commande | 1431 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
index 5cdd98432e301c..04c34d8f319ad3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-index-cache-priority
displayed_sidebar: docs
---
-**ADJUST INDEX CACHE PRIORITY** ( *leChamp* ; *priorité* )
+**ADJUST INDEX CACHE PRIORITY** ( *leChamp* ; *priorité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ dont vous voulez ajuster la priorité du ou des index dans le cache |
-| priorité | Integer | → | Priorité du ou des index du champ dans le cache |
+| leField | Field | → | Champ dont vous voulez ajuster la priorité du ou des index dans le cache |
+| priorité | Integer | → | Priorité du ou des index du champ dans le cache |
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des index du champ \[Docs\]C
| | |
| --- | --- |
| Numéro de commande | 1430 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
index 9c7c55d46e60c5..f57ab7685d7c0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-table-cache-priority
displayed_sidebar: docs
---
-**ADJUST TABLE CACHE PRIORITY** ( *laTable* ; *priority* )
+**ADJUST TABLE CACHE PRIORITY** ( *laTable* : Table ; *priority* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez ajuster la priorité des données scalaires |
-| priority | Integer | → | Priorité des données scalaires de la table dans le cache |
+| laTable | Table | → | Table dont vous souhaitez ajuster la priorité des données scalaires |
+| priority | Integer | → | Priorité des données scalaires de la table dans le cache |
@@ -56,6 +56,6 @@ Vous souhaitez modifier temporairement la priorité des champs scalaires de la t
| | |
| --- | --- |
| Numéro de commande | 1429 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md
index 3d4ecb4c5cad0b..b4834db24f36e1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/after.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **After** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 31 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
index dc2a54be8011c8..7ce60eb580cd24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
@@ -5,12 +5,12 @@ slug: /commands/alert
displayed_sidebar: docs
---
-**ALERT** ( *message* {; *libelléBoutonOK*} )
+**ALERT** ( *message* : Text {; *libelléBoutonOK* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Message à afficher dans la boîte de dialogue d'alerte |
-| libelléBoutonOK | Text | → | Libellé du bouton OK |
+| message | Text | → | Message à afficher dans la boîte de dialogue d'alerte |
+| libelléBoutonOK | Text | → | Libellé du bouton OK |
@@ -73,6 +73,6 @@ Ce code affiche la boîte de dialogue d'alerte suivante :
| | |
| --- | --- |
| Numéro de commande | 41 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
index 8cc26cd141d7fd..92230be74827fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
@@ -5,11 +5,11 @@ slug: /commands/all-records
displayed_sidebar: docs
---
-**ALL RECORDS** {( *laTable* )}
+**ALL RECORDS** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle vous voulez sélectionner tous les enregistrements ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle vous voulez sélectionner tous les enregistrements ou Table par défaut si ce paramètre est omis |
@@ -40,7 +40,7 @@ L'exemple suivant affiche tous les enregistrements de la table \[Personnes\] :
| | |
| --- | --- |
| Numéro de commande | 47 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
index c735d2cbee3efe..8c488b1a90b8f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/append-data-to-pasteboard
displayed_sidebar: docs
---
-**APPEND DATA TO PASTEBOARD** ( *typeDonnées* ; *données* )
+**APPEND DATA TO PASTEBOARD** ( *typeDonnées* : Text ; *données* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeDonnées | Text | → | Type des données à ajouter |
-| données | Blob | → | Données à ajouter au conteneur |
+| typeDonnées | Text | → | Type des données à ajouter |
+| données | Blob | → | Données à ajouter au conteneur |
@@ -215,7 +215,7 @@ Si les données dans le BLOB sont correctement ajoutées au conteneur, la variab
| | |
| --- | --- |
| Numéro de commande | 403 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
index a4ee7bb3345ca3..a59a102cf643fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
@@ -5,12 +5,12 @@ slug: /commands/append-document
displayed_sidebar: docs
---
-**Append document** ( *nomFichier* {; *typeFichier*} ) : Time
+**Append document** ( *nomFichier* : Text {; *typeFichier* : Text} ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document ou Chaîne vide pour afficher la boîte de dialogue standard d'ouverture de fichiers |
-| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
+| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document ou Chaîne vide pour afficher la boîte de dialogue standard d'ouverture de fichiers |
+| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
| Résultat | Time | ← | Numéro de référence du document |
@@ -44,7 +44,7 @@ L'exemple suivant ouvre un document existant qui s'appelle “Note”, ajoute à
| | |
| --- | --- |
| Numéro de commande | 265 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
index c5a0d2036a93a7..f33e36ded861d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/append-menu-item
displayed_sidebar: docs
---
-**APPEND MENU ITEM** ( *menu* ; *libelléLigne* {; *sousMenu* {; *process* {; *}}} )
+**APPEND MENU ITEM** ( *menu* : Integer ; *libelléLigne* : Text {; *sousMenu* : Text {; *process* : Integer {; *}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer | → | Numéro de menu ou Référence de menu |
-| libelléLigne | Text | → | Libellé du ou des nouvelle(s) ligne(s) de menu |
-| sousMenu | Text | → | Référence du sous-menu associé à la ligne |
-| process | Integer | → | Numéro de référence du process |
-| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
+| menu | Integer | → | Numéro de menu ou Référence de menu |
+| libelléLigne | Text | → | Libellé du ou des nouvelle(s) ligne(s) de menu |
+| sousMenu | Text | → | Référence du sous-menu associé à la ligne |
+| process | Integer | → | Numéro de référence du process |
+| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
@@ -82,7 +82,7 @@ Ensuite, dans toute méthode formulaire ou projet, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 411 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
index 0c1d523b50daa6..567e0350fcfab0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
@@ -5,12 +5,12 @@ slug: /commands/append-to-array
displayed_sidebar: docs
---
-**APPEND TO ARRAY** ( *tableau* ; *valeur* )
+**APPEND TO ARRAY** ( *tableau* : Array ; *valeur* : Expression )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau auquel ajouter une valeur |
-| valeur | Expression | → | Valeur à ajouter au tableau |
+| tableau | Array | → | Tableau auquel ajouter une valeur |
+| valeur | Expression | → | Valeur à ajouter au tableau |
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 911 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
index 81927b76c5901c..6e31be871e9374 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
@@ -5,15 +5,15 @@ slug: /commands/append-to-list
displayed_sidebar: docs
---
-**APPEND TO LIST** ( *liste* ; *libelléElément* ; *réfElément* {; sous_Liste ; *déployée*} )
+**APPEND TO LIST** ( *liste* : Integer ; *libelléElément* : Text ; *réfElément* : Integer {; sous_Liste ; *déployée* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de liste |
-| libelléElément | Text | → | Libellé du nouvel élément |
-| réfElément | Integer | → | Numéro de référence unique du nouvel élément |
-| sous_Liste | Integer | → | Sous-liste optionnelle à rattacher au nouvel élément |
-| déployée | Boolean | → | Indique si la sous-liste doit être déployée ou non |
+| liste | Integer | → | Numéro de référence de liste |
+| libelléElément | Text | → | Libellé du nouvel élément |
+| réfElément | Integer | → | Numéro de référence unique du nouvel élément |
+| sous_Liste | Integer | → | Sous-liste optionnelle à rattacher au nouvel élément |
+| déployée | Boolean | → | Indique si la sous-liste doit être déployée ou non |
@@ -153,6 +153,6 @@ Dans le formulaire en exécution, la liste apparaîtra ainsi :
| | |
| --- | --- |
| Numéro de commande | 376 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
index 21b80abb05444a..9c09410d970e93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
@@ -45,6 +45,6 @@ Lorsque vous démarrez votre base sous Windows, vous souhaitez vérifier qu'une
| | |
| --- | --- |
| Numéro de commande | 491 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
index a37afd9ae915a7..8aa569855b6f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si le code est exécuté sur 4D Server, l'objet contient (par exemple) :
| | |
| --- | --- |
| Numéro de commande | 1599 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
index df868d9b292db7..da50b56934d411 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Quelque part dans votre code, ailleurs que dans la *On Server Startup Database M
| | |
| --- | --- |
| Numéro de commande | 494 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
index 8a0ff339b18462..a0a06acb6305bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
@@ -5,12 +5,12 @@ slug: /commands/application-version
displayed_sidebar: docs
---
-**Application version** {( *numBuild* {; *} )} : Text
+**Application version** ( *numBuild* : Integer {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| numBuild | Integer | ← | Numéro de build |
-| * | Opérateur | → | Si passé = numéro de version long Si omis = numéro de version court |
+| * | Opérateur | → | Si passé = numéro de version long Si omis = numéro de version court |
| Résultat | Text | ← | Numéro de version dans une chaîne encodée |
@@ -124,6 +124,6 @@ Le code suivant reconstitue le numéro de version de l'application et permet de
| | |
| --- | --- |
| Numéro de commande | 493 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
index 8be08cbd3ab1b6..b4e7beb11f7ec5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/apply-to-selection
displayed_sidebar: docs
---
-**APPLY TO SELECTION** ( *laTable* ; *formule* )
+**APPLY TO SELECTION** ( *laTable* : Table ; *formule* : Expression )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle appliquer la formule |
-| formule | Expression | → | Ligne de code ou méthode |
+| laTable | Table | → | Table dans laquelle appliquer la formule |
+| formule | Expression | → | Ligne de code ou méthode |
@@ -69,7 +69,7 @@ Si l'utilisateur clique sur le bouton Stop dans le thermomètre de progression,
| | |
| --- | --- |
| Numéro de commande | 70 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
index 7e1f3d45d9eb8d..13c0cc5c53d67f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
@@ -5,11 +5,11 @@ slug: /commands/arctan
displayed_sidebar: docs
---
-**Arctan** ( *nombre* ) : Real
+**Arctan** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Tangente pour laquelle vous souhaitez calculer l'angle en radians |
+| nombre | Real | → | Tangente pour laquelle vous souhaitez calculer l'angle en radians |
| Résultat | Real | ← | Angle en radians |
@@ -37,6 +37,6 @@ Cet exemple permet d'afficher la valeur de Pi :
| | |
| --- | --- |
| Numéro de commande | 20 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
index b29552c6d890a4..89e74a59aae592 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
@@ -5,13 +5,13 @@ slug: /commands/array-blob
displayed_sidebar: docs
---
-**ARRAY BLOB** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY BLOB** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -66,6 +66,6 @@ Cet exemple crée un tableau local de 100 lignes contenant chacune 50 éléments
| | |
| --- | --- |
| Numéro de commande | 1222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
index cc3f82c411b907..374d65e948f4e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
@@ -5,13 +5,13 @@ slug: /commands/array-boolean
displayed_sidebar: docs
---
-**ARRAY BOOLEAN** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY BOOLEAN** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -64,6 +64,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Booléen et a
| | |
| --- | --- |
| Numéro de commande | 223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
index c2bb86df48b40f..8e710a16fedc41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
@@ -5,13 +5,13 @@ slug: /commands/array-date
displayed_sidebar: docs
---
-**ARRAY DATE** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY DATE** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Date et affec
| | |
| --- | --- |
| Numéro de commande | 224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
index f5163b8a64723a..fbfc03543e388d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
@@ -5,13 +5,13 @@ slug: /commands/array-integer
displayed_sidebar: docs
---
-**ARRAY INTEGER** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY INTEGER** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier](# "N
| | |
| --- | --- |
| Numéro de commande | 220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
index 3e048c37c41151..e03a3426899ec2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
@@ -5,13 +5,13 @@ slug: /commands/array-longint
displayed_sidebar: docs
---
-**ARRAY LONGINT** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY LONGINT** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier long]
| | |
| --- | --- |
| Numéro de commande | 221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
index 5136db0e686f5c..c1357f7e72b795 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
@@ -5,13 +5,13 @@ slug: /commands/array-object
displayed_sidebar: docs
---
-**ARRAY OBJECT** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY OBJECT** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -75,6 +75,6 @@ Création et remplissage d’un tableau local d’objets :
| | |
| --- | --- |
| Numéro de commande | 1221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
index 7f9c64916f9869..3e41db96789465 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
@@ -5,13 +5,13 @@ slug: /commands/array-picture
displayed_sidebar: docs
---
-**ARRAY PICTURE** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY PICTURE** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -66,6 +66,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Image](# "Can be
| | |
| --- | --- |
| Numéro de commande | 279 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
index a5b1c2b53eb675..ed7ecc0e8c7540 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/array-pointer
displayed_sidebar: docs
---
-**ARRAY POINTER** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY POINTER** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -61,6 +61,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Pointeur](# "A r
| | |
| --- | --- |
| Numéro de commande | 280 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
index c055689aba3c5e..d4e403683c8b99 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
@@ -5,13 +5,13 @@ slug: /commands/array-real
displayed_sidebar: docs
---
-**ARRAY REAL** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY REAL** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Réel](# "Nu
| | |
| --- | --- |
| Numéro de commande | 219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
index 5d83acc4ad6f95..89b8c9df70866d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
@@ -5,13 +5,13 @@ slug: /commands/array-text
displayed_sidebar: docs
---
-**ARRAY TEXT** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY TEXT** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Texte](# "Un
| | |
| --- | --- |
| Numéro de commande | 222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
index 1a290fc5566653..c82afdd038682a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
@@ -5,13 +5,13 @@ slug: /commands/array-time
displayed_sidebar: docs
---
-**ARRAY TIME** ( *nomTableau* ; *taille* {; *taille2*} )
+**ARRAY TIME** ( *nomTableau* ; *taille* : Integer {; *taille2* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nom du tableau |
-| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
-| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
+| nomArray | Array | → | Nom du tableau |
+| taille | Integer | → | Nombre d'éléments du tableau ou Nombre de tableaux si taille2 est spécifié |
+| taille2 | Integer | → | Nombre d'éléments des tableaux à deux dimensions |
@@ -69,6 +69,6 @@ Comme les tableaux d’heures acceptent des valeurs numériques, le code suivant
| | |
| --- | --- |
| Numéro de commande | 1223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
index 46d5e34f5443ae..50c17d2ccef8b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-collection
displayed_sidebar: docs
---
-**ARRAY TO COLLECTION** ( *collection* ; *tableau* {; *nomPropriété*}{; *tableau2* ; *nomPropriété2* ; ... ; *tableauN* ; *nomPropriétéN*} )
+**ARRAY TO COLLECTION** ( *collection* : Collection ; *tableau* : Array {; *nomPropriété* : Text}{; *tableau2* ; *nomPropriété2* ; ... ; *tableauN* ; *nomPropriétéN*} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| collection | Collection | ← | Collection qui reçoit les données du tableau |
-| tableau | Array | → | Tableau à copier vers la collection ; si le paramètre nomPropriété est passé, sont copiées les valeurs correspondantes à la propriété dans la collection |
-| nomPropriété | Text | → | Nom de propriété Objet dont les valeurs remplissent les éléments du tableau |
+| tableau | Array | → | Tableau à copier vers la collection ; si le paramètre nomPropriété est passé, sont copiées les valeurs correspondantes à la propriété dans la collection |
+| nomPropriété | Text | → | Nom de propriété Objet dont les valeurs remplissent les éléments du tableau |
@@ -88,6 +88,6 @@ Vous souhaiter copier un tableau texte dans une collection partagée :
| | |
| --- | --- |
| Numéro de commande | 1563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
index b6a4665ff008d2..dd330c7106d6ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-list
displayed_sidebar: docs
---
-**ARRAY TO LIST** ( *tableau* ; *liste* {; *réfEléments*} )
+**ARRAY TO LIST** ( *tableau* : Array ; *liste* : Text, Integer {; *réfEléments* : Array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau duquel copier les éléments |
-| liste | Text, Integer | → | Nom ou référence de la liste dans laquelle copier les éléments du tableau |
-| réfEléments | Array | → | Tableau numérique des numéros de référence des éléments |
+| tableau | Array | → | Tableau duquel copier les éléments |
+| liste | Text, Integer | → | Nom ou référence de la liste dans laquelle copier les éléments du tableau |
+| réfEléments | Array | → | Tableau numérique des numéros de référence des éléments |
@@ -66,7 +66,7 @@ La commande **ARRAY TO LIST** génère l'erreur *\-9957* lorsqu'elle est appliqu
| | |
| --- | --- |
| Numéro de commande | 287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
index 1ed798cee62a5d..887d748802050a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-selection
displayed_sidebar: docs
---
-**ARRAY TO SELECTION** {( *tableau* ; *leChamp* {; *tableau2* ; *leChamp2* ; ... ; *tableauN* ; *leChampN*}{; *} )}
+**ARRAY TO SELECTION** ({ *tableau* : Array ; *leChamp* {; ...(*tableau* : Array, *leChamp*)}{; *} })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau à copier dans la sélection |
+| tableau | Array | → | Tableau à copier dans la sélection |
| leField | Field | ← | Champ recevant les valeurs du tableau |
-| * | Opérateur | → | Attente d’exécution |
+| * | Opérateur | → | Attente d’exécution |
@@ -84,7 +84,7 @@ Vous souhaitez recopier la sélection d'enregistrements vers une table d'archive
| | |
| --- | --- |
| Numéro de commande | 261 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
index 99920d7917e046..8ab5c5e1b8ee5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
@@ -5,12 +5,12 @@ slug: /commands/assert
displayed_sidebar: docs
---
-**ASSERT** ( *expressionBool* {; *texteMessage*} )
+**ASSERT** ( *expressionBool* : Boolean {; *texteMessage* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expressionBool | Boolean | → | Expression booléenne |
-| texteMessage | Text | → | Texte du message d’erreur |
+| expressionBool | Boolean | → | Expression booléenne |
+| texteMessage | Text | → | Texte du message d’erreur |
@@ -58,7 +58,7 @@ Une assertion peut permettre de tester les paramètres passés à une méthode p
| | |
| --- | --- |
| Numéro de commande | 1129 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
index acb68671753940..a3b8b77b3cd431 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
@@ -5,12 +5,12 @@ slug: /commands/asserted
displayed_sidebar: docs
---
-**Asserted** ( *expressionBool* {; *texteMessage*} ) : Boolean
+**Asserted** ( *expressionBool* : Boolean {; *texteMessage* : Text} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expressionBool | Boolean | → | Expression booléenne |
-| texteMessage | Text | → | Texte du message d’erreur |
+| expressionBool | Boolean | → | Expression booléenne |
+| texteMessage | Text | → | Texte du message d’erreur |
| Résultat | Boolean | ← | Résultat de l’évaluation d’expressionBool |
@@ -47,7 +47,7 @@ Insertion d’une assertion dans l’évaluation d’une expression :
| | |
| --- | --- |
| Numéro de commande | 1132 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md
index e87efb85327fc0..a8db1e60a0dd3e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/average.md
@@ -5,12 +5,12 @@ slug: /commands/average
displayed_sidebar: docs
---
-**Average** ( *séries* {; *cheminAttribut*} ) : Real
+**Average** ( *séries* : Field, Array {; *cheminAttribut* : Text} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs dont vous voulez calculer la moyenne |
-| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la moyenne |
+| séries | Field, Array | → | Valeurs dont vous voulez calculer la moyenne |
+| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la moyenne |
| Résultat | Real | ← | Moyenne arithmétique de séries |
@@ -95,7 +95,7 @@ Vous pouvez effectuer les calculs suivants :
| | |
| --- | --- |
| Numéro de commande | 2 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
index cb52f277dcd4cf..e87e0924bccdaf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
@@ -5,11 +5,11 @@ slug: /commands/backup-info
displayed_sidebar: docs
---
-**BACKUP INFO** ( *sélecteur* ; *info1* ; *info2* )
+**BACKUP INFO** ( *sélecteur* : Integer ; *info1* : Integer, Date ; *info2* : Time, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Type d’information à récupérer |
+| sélecteur | Integer | → | Type d’information à récupérer |
| info1 | Integer, Date | ← | Valeur 1 du sélecteur |
| info2 | Time, Text | ← | Valeur 2 du sélecteur |
@@ -37,6 +37,6 @@ Passez dans le paramètre *sélecteur* le type d’information à récupérer. L
| | |
| --- | --- |
| Numéro de commande | 888 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
index 38d48150acfa80..dc0fb8fa856924 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En cas d’incident au cours de la sauvegarde, les informations relatives à l'i
| | |
| --- | --- |
| Numéro de commande | 887 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
index 58564ea6dade50..363478caf454f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-decode
displayed_sidebar: docs
---
-**BASE64 DECODE** ( àDécoder {; *décodé*}{; *} )
+**BASE64 DECODE** ( àDécoder {; *décodé* : Text, Blob}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| àDécoder | Text, Blob | → | Valeur encodée à décoder |
-| ← | Valeur décodée (si le paramètre décodé est omis) |
+| àDécoder | Text, Blob | ↔ | *in:* Encoded value to decode
*out:* Decoded value (if decoded parameter omitted) |
| décodé | Text, Blob | ← | Valeur décodée |
-| * | Opérateur | → | Décoder au format Base64URL |
+| * | Opérateur | → | Décoder au format Base64URL |
@@ -61,6 +60,6 @@ Cet exemple permet de transférer une image via un BLOB :
| | |
| --- | --- |
| Numéro de commande | 896 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
index f8aa37dc866617..14e2af8e96f5d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-encode
displayed_sidebar: docs
---
-**BASE64 ENCODE** ( àEncoder {; *encodé*}{; *} )
+**BASE64 ENCODE** ( àEncoder {; *encodé* : Blob, Text}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| àEncoder | Blob, Text | → | Valeur à encoder |
-| ← | Valeur encodée (si le paramètre encodé est omis) |
+| àEncoder | Blob, Text | ↔ | *in:* Value to encode
*out:* Encoded value (if encoded parameter omitted) |
| encodé | Blob, Text | ← | Valeur encodée |
-| * | Opérateur | → | Encoder au format Base64URL |
+| * | Opérateur | → | Encoder au format Base64URL |
@@ -45,6 +44,6 @@ Par défaut, si le paramètre *\** est omis, la commande utilise un encodage Bas
| | |
| --- | --- |
| Numéro de commande | 895 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
index 79604ef5cb55bd..0155883d60495a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
@@ -39,6 +39,6 @@ Dans l'exemple suivant, un bip est émis et une alerte affichée lorsqu'aucun en
| | |
| --- | --- |
| Numéro de commande | 151 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
index d452fc2c9c818f..a5b0c7b1d055a8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
@@ -5,11 +5,11 @@ slug: /commands/before-selection
displayed_sidebar: docs
---
-**Before selection** {( *laTable* )} : Boolean
+**Before selection** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle vous testez si le pointeur se trouve avant la sélection |
+| laTable | Table | → | Table pour laquelle vous testez si le pointeur se trouve avant la sélection |
| Résultat | Boolean | ← | Avant sélection (Vrai) sinon (Faux) |
@@ -69,6 +69,6 @@ La méthode formulaire suivante est utilisée pendant l'impression d'un état. E
| | |
| --- | --- |
| Numéro de commande | 198 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md
index 0d33ab47f687d6..60d2dab6a97432 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/before.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **Before** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 29 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
index 9c63700e8f9daf..c04d03b842953e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
@@ -49,6 +49,6 @@ A noter que le *Débogueur* de 4D évaluera le code SQL ligne par ligne. Dans ce
| | |
| --- | --- |
| Numéro de commande | 948 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
index 24e34db69789c8..6ff4ee6f1f9cf1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
@@ -5,11 +5,11 @@ slug: /commands/blob-properties
displayed_sidebar: docs
---
-**BLOB PROPERTIES** ( *blob* ; *compressé* {; *tailleDécompressée* {; *tailleCourante*}} )
+**BLOB PROPERTIES** ( *blob* : Blob ; *compressé* : Integer {; *tailleDécompressée* : Integer {; *tailleCourante* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB sur lequel vous voulez obtenir des informations |
+| Blob | Blob | → | BLOB sur lequel vous voulez obtenir des informations |
| compressé | Integer | ← | 0 = pas de compression, 1 = interne compact, 2 = interne rapide, -1 = GZIP compact, -2 = GZIP rapide |
| tailleDécompressée | Integer | ← | Taille du BLOB décompressé en octets |
| tailleCourante | Integer | ← | Taille courante du BLOB en octets |
@@ -83,6 +83,6 @@ Lorsque cette méthode est placée dans votre application, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 536 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
index 406f9bf2d30dd6..0a5028bed6571f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/blob-size
displayed_sidebar: docs
---
-**BLOB size** ( *blob* ) : Integer
+**BLOB size** ( *blob* : Blob ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | Champ ou variable de type BLOB |
+| Blob | Blob | → | Champ ou variable de type BLOB |
| Résultat | Integer | ← | Taille en octets du BLOB |
@@ -35,6 +35,6 @@ La ligne de code suivante ajoute 100 octets au BLOB *monBlob* :
| | |
| --- | --- |
| Numéro de commande | 605 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
index 4dec390e2c2495..013448f00f2486 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-document
displayed_sidebar: docs
---
-**BLOB TO DOCUMENT** ( *document* ; *blob* )
+**BLOB TO DOCUMENT** ( *document* : Text ; *blob* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Text | → | Nom du document |
-| blob | Blob | → | Nouveau contenu du document |
+| document | Text | → | Nom du document |
+| Blob | Blob | → | Nouveau contenu du document |
@@ -57,7 +57,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
index e7849064cea1d6..a939b6cb21a196 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-integer
displayed_sidebar: docs
---
-**BLOB to integer** ( *blob* ; *ordreOctet* {; *offset*} ) : Integer
+**BLOB to integer** ( *blob* : Blob ; *ordreOctet* : Integer {; *offset* : Variable} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB duquel obtenir la valeur entière |
-| ordreOctet | Integer | → | 0 Ordre d'octets mode natif 1 Ordre d'octets Macintosh 2 Ordre d'octets PC |
-| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
-| || | Nouvel offset après la lecture |
+| Blob | Blob | → | BLOB duquel obtenir la valeur entière |
+| ordreOctet | Integer | → | 0 Ordre d'octets mode natif 1 Ordre d'octets Macintosh 2 Ordre d'octets PC |
+| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
+| | | | Nouvel offset après la lecture |
| Résultat | Integer | ← | Valeur entière (2 octets) |
@@ -84,6 +84,6 @@ L'exemple suivant lit 20 valeurs entières d'un BLOB à partir de l'offset 0x200
| | |
| --- | --- |
| Numéro de commande | 549 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
index 601cab16ca93f5..fe17b00d89c25c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-list
displayed_sidebar: docs
---
-**BLOB to list** ( *blob* {; *offset*} ) : Integer
+**BLOB to list** ( *blob* : Blob {; *offset* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB contenant la liste hiérarchique |
-| offset | Integer | ↔ | Offset (en octets) dans le BLOB |
-| ||| Nouvel offset après la lecture |
+| Blob | Blob | → | BLOB contenant la liste hiérarchique |
+| offset | Integer | ↔ | Offset (en octets) dans le BLOB |
+| | | | Nouvel offset après la lecture |
| Résultat | Integer | ← | Référence de la liste nouvellement créée |
@@ -65,7 +65,7 @@ La variable OK prend la valeur 1 si la liste a été correctement créée, sinon
| | |
| --- | --- |
| Numéro de commande | 557 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
index e112f07a60fc94..453e98b80c1bb2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-longint
displayed_sidebar: docs
---
-**BLOB to longint** ( *blob* ; *ordreOctet* {; *offset*} ) : Integer
+**BLOB to longint** ( *blob* : Blob ; *ordreOctet* : Integer {; *offset* : Variable} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB duquel extraire la valeur de type Entier long |
-| ordreOctet | Integer | → | 0 = Ordre d'octets natif 1 = Ordre d'octets Macintosh 2 = Ordre d'octets PC |
-| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
-| ||| Nouvel offset après lecture |
+| Blob | Blob | → | BLOB duquel extraire la valeur de type Entier long |
+| ordreOctet | Integer | → | 0 = Ordre d'octets natif 1 = Ordre d'octets Macintosh 2 = Ordre d'octets PC |
+| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
+| | | | Nouvel offset après lecture |
| Résultat | Integer | ← | Valeur de type Entier long (4 octets) |
@@ -66,6 +66,6 @@ L'exemple suivant lit 20 valeurs de type Entier long dans un BLOB, à partir de
| | |
| --- | --- |
| Numéro de commande | 551 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
index 9ca12877f3da52..7aebd155283d28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-picture
displayed_sidebar: docs
---
-**BLOB TO PICTURE** ( *blobImage* ; *image* {; *codec*} )
+**BLOB TO PICTURE** ( *blobImage* : Blob ; *image* : Picture {; *codec* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blobImage | Blob | → | BLOB contenant une image |
+| blobImage | Blob | → | BLOB contenant une image |
| image | Picture | ← | Champ ou variable image 4D |
-| codec | Text | → | Identifiant de codec d’image |
+| codec | Text | → | Identifiant de codec d’image |
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 682 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
index b53c30a3c066d3..bc4fa99ec80821 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-print-settings
displayed_sidebar: docs
---
-**BLOB to print settings** ( *paramImpression* {; *param*} ) : Integer
+**BLOB to print settings** ( *paramImpression* : Blob {; *param* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| paramImpression | Blob | → | BLOB contenant les paramètres d’impression |
-| param | Integer | → | 0=Utilise les valeurs sauvegardées pour le nombre de copies et la plage d'impression, 1=Réinitialise aux valeurs par défaut |
+| paramImpression | Blob | → | BLOB contenant les paramètres d’impression |
+| param | Integer | → | 0=Utilise les valeurs sauvegardées pour le nombre de copies et la plage d'impression, 1=Réinitialise aux valeurs par défaut |
| Résultat | Integer | ← | Code d'état : 1=Opération réussie, 0=Pas d'imprimante courante, -1=Paramètres incorrects, 2=L'imprimante a changé |
@@ -77,6 +77,6 @@ Vous voulez appliquer des paramètres d'impression précédemment stockés sur d
| | |
| --- | --- |
| Numéro de commande | 1434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
index c46ae52d5a8dfe..35f59b705b9885 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-real
displayed_sidebar: docs
---
-**BLOB to real** ( *blob* ; *formatRéel* {; *offset*} ) : Real
+**BLOB to real** ( *blob* : Blob ; *formatRéel* : Integer {; *offset* : Variable} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB duquel extraire la valeur de type Réel |
-| formatRéel | Integer | → | 0 Format réel natif 1 Format réel étendu 2 Format réel double Macintosh 3 Format réel double Windows |
-| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
-| ||| Nouvel offset après lecture |
+| Blob | Blob | → | BLOB duquel extraire la valeur de type Réel |
+| formatRéel | Integer | → | 0 Format réel natif 1 Format réel étendu 2 Format réel double Macintosh 3 Format réel double Windows |
+| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
+| | | | Nouvel offset après lecture |
| Résultat | Real | ← | Valeur de type Réel |
@@ -68,6 +68,6 @@ L'exemple suivant lit 20 valeurs réelles dans un BLOB à partir de l'offset 0x2
| | |
| --- | --- |
| Numéro de commande | 553 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
index 50f4a77b8af6f5..ba8666a2eed2bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
@@ -5,15 +5,15 @@ slug: /commands/blob-to-text
displayed_sidebar: docs
---
-**BLOB to text** ( *blob* ; *formatTexte* {; *offset* {; *longueurTexte*}} ) : Text
+**BLOB to text** ( *blob* : Blob ; *formatTexte* : Integer {; *offset* : Variable {; *longueurTexte* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB duquel extraire le texte |
-| formatTexte | Integer | → | Format et jeu de caractères du texte |
-| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
-| ||| Nouvel offset après la lecture |
-| longueurTexte | Integer | → | Nombre de caractères à lire |
+| Blob | Blob | → | BLOB duquel extraire le texte |
+| formatTexte | Integer | → | Format et jeu de caractères du texte |
+| offset | Variable | ↔ | Offset (en octets) dans le BLOB |
+| | | | Nouvel offset après la lecture |
+| longueurTexte | Integer | → | Nombre de caractères à lire |
| Résultat | Text | ← | Texte extrait |
@@ -67,6 +67,6 @@ Après l'exécution de la commande, la variable *offset* est incrémentée du no
| | |
| --- | --- |
| Numéro de commande | 555 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
index e5d02455b9412d..8c2bdd1126aa37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-users
displayed_sidebar: docs
---
-**BLOB TO USERS** ( *utilisateurs* )
+**BLOB TO USERS** ( *utilisateurs* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| utilisateurs | Blob | → | BLOB (crypté) contenant des comptes utilisateurs créés et sauvegardés par l'Administrateur |
+| utilisateurs | Blob | → | BLOB (crypté) contenant des comptes utilisateurs créés et sauvegardés par l'Administrateur |
@@ -52,7 +52,7 @@ Si la commande est exécutée correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 850 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
index 296a0e6dd4a2d8..eaeb26b291d8ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-variable
displayed_sidebar: docs
---
-**BLOB TO VARIABLE** ( *blob* ; *variable* {; *offset*} )
+**BLOB TO VARIABLE** ( *blob* : Blob ; *variable* : Variable {; *offset* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB contenant une ou plusieurs variable(s) 4D |
+| Blob | Blob | → | BLOB contenant une ou plusieurs variable(s) 4D |
| variable | Variable | ← | Variable à écrire avec le contenu de BLOB |
-| offset | Integer | ↔ | Position de la variable dans BLOB |
-|||| Position de la variable suivante dans BLOB |
+| offset | Integer | ↔ | Position de la variable dans BLOB |
+| | | | Position de la variable suivante dans BLOB |
@@ -47,7 +47,7 @@ La variable OK prend la valeur 1 si la variable a été correctement réécrite,
| | |
| --- | --- |
| Numéro de commande | 533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
index 4c2aebc8c32c4b..6c7f9dac9c354e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
@@ -5,11 +5,11 @@ slug: /commands/bool
displayed_sidebar: docs
---
-**Bool** ( *expression* ) : Boolean
+**Bool** ( *expression* : Expression ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expression | Expression | → | Expression à retourner sous forme de booléen |
+| expression | Expression | → | Expression à retourner sous forme de booléen |
| Résultat | Boolean | ← | Expression sous forme booléenne |
@@ -53,6 +53,6 @@ Vous sélectionnez une valeur en fonction d'un attribut de champ objet, en antic
| | |
| --- | --- |
| Numéro de commande | 1537 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
index 38c2adcae4ac81..6dc92f571817e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/boolean-array-from-set
displayed_sidebar: docs
---
-**BOOLEAN ARRAY FROM SET** ( *tabBooléen* {; *ensemble*} )
+**BOOLEAN ARRAY FROM SET** ( *tabBooléen* : Boolean array {; *ensemble* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| tabBooléen | Boolean array | ← | Tableau d'appartenance des enregistrements à l’ensemble |
-| ensemble | Text | → | Nom de l’ensemble ou Ensemble UserSet si ce paramètre est omis |
+| ensemble | Text | → | Nom de l’ensemble ou Ensemble UserSet si ce paramètre est omis |
@@ -38,6 +38,6 @@ Si vous ne passez pas le paramètre *ensemble*, la commande utilisera l’ensemb
| | |
| --- | --- |
| Numéro de commande | 646 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
index cd623a921164a1..81b75f182c1031 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
@@ -5,12 +5,12 @@ slug: /commands/break-level
displayed_sidebar: docs
---
-**BREAK LEVEL** ( *niveau* {; *sautPage*} )
+**BREAK LEVEL** ( *niveau* : Integer {; *sautPage* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| niveau | Integer | → | Nombre de niveaux de rupture |
-| sautPage | Integer | → | Niveau de saut de page |
+| niveau | Integer | → | Nombre de niveaux de rupture |
+| sautPage | Integer | → | Niveau de saut de page |
@@ -50,6 +50,6 @@ L'exemple suivant imprime un état avec deux niveaux de rupture. La sélection e
| | |
| --- | --- |
| Numéro de commande | 302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
index c2419a29535807..3f52a70aa27bf8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
@@ -5,11 +5,11 @@ slug: /commands/bring-to-front
displayed_sidebar: docs
---
-**BRING TO FRONT** ( *process* )
+**BRING TO FRONT** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process à passer au premier plan |
+| process | Integer | → | Numéro du process à passer au premier plan |
@@ -42,6 +42,6 @@ L'exemple suivant est une méthode qui peut être exécutée à partir d'une com
| | |
| --- | --- |
| Numéro de commande | 326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
index 999d7d84563bf1..b47a8a26a8a04b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
@@ -5,11 +5,11 @@ slug: /commands/build-application
displayed_sidebar: docs
---
-**BUILD APPLICATION** {( *nomProjet* )}
+**BUILD APPLICATION** ({ *nomProjet* : Text })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomProjet | Text | → | Chemin d’accès complet du projet à utiliser |
+| nomProjet | Text | → | Chemin d’accès complet du projet à utiliser |
@@ -55,7 +55,7 @@ Si la commande échoue, une erreur est générée, que vous pouvez intercepter
| | |
| --- | --- |
| Numéro de commande | 871 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
index b8f14de06574a4..5f73e84b03347a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
@@ -5,11 +5,11 @@ slug: /commands/cache-info
displayed_sidebar: docs
---
-**Cache info** {( *dbFilter* )} : Object
+**Cache info** ( *dbFilter* : Object ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dbFilter | Object | → | définit la liste des attributs à retourner (filtrés par DB) |
+| dbFilter | Object | → | définit la liste des attributs à retourner (filtrés par DB) |
| Résultat | Object | ← | Informations à propos du cache |
@@ -59,6 +59,6 @@ Vous souhaitez obtenir des informations sur la base courante et tous les composa
| | |
| --- | --- |
| Numéro de commande | 1402 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
index 97c0402a34f905..8e9d1128a89cae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
@@ -5,13 +5,13 @@ slug: /commands/call-form
displayed_sidebar: docs
---
-**CALL FORM** ( *fenêtre* ; *formule* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL FORM** ( *fenêtre* : Integer ; *formule* : Object, Text {; *...param* : Expression} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre |
-| formule | Object, Text | → | Objet Formula ou Nom de la méthode projet |
-| param | Expression | → | Paramètre(s) passé(s) à la méthode |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre |
+| formule | Object, Text | → | Objet Formula ou Nom de la méthode projet |
+| param | Expression | → | Paramètre(s) passé(s) à la méthode |
@@ -107,6 +107,6 @@ Vous pouvez alors ajouter d'autres messages en exécutant à nouveau la commande
| | |
| --- | --- |
| Numéro de commande | 1391 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
index e439c1622d02a5..f6b135a22e162a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| événement | Integer | → | Evénement à transmettre |
+| événement | Integer | → | Evénement à transmettre |
@@ -19,7 +19,7 @@ displayed_sidebar: docs
Cette commande doit être placée dans la méthode formulaire du sous-formulaire ou dans la méthode objet d’un des objets du sous-formulaire. L’événement sera reçu uniquement dans la méthode objet du conteneur du sous-formulaire.
-Vous pouvez passer dans *événement* tout événement formulaire prédéfini de 4D (vous pouvez utiliser les constantes du thème *Evénements formulaire*) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
+Vous pouvez passer dans *événement* un des [événements formulaire 4D pris en charge par les sous-formulaires](../FormObjects/subform_overview.md#call-subform-container-command) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
*Principe d’exécution de la commande* **CALL SUBFORM CONTAINER** *:*
@@ -35,6 +35,6 @@ Vous pouvez passer dans *événement* tout événement formulaire prédéfini de
| | |
| --- | --- |
| Numéro de commande | 1086 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
index 5032c1e1a18a4e..ce6c489d6f03aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
@@ -5,13 +5,13 @@ slug: /commands/call-worker
displayed_sidebar: docs
---
-**CALL WORKER** ( *process* ; *formule* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL WORKER** ( *process* : Text, Integer ; *formule* : Object, Text {; *...param* : Expression} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Text, Integer | → | Nom ou numéro du process worker |
-| formule | Object, Text | → | Objet Formula ou Nom de la méthode projet |
-| param | Expression | → | Paramètre(s) passé(s) à la méthode |
+| process | Text, Integer | → | Nom ou numéro du process worker |
+| formule | Object, Text | → | Objet Formula ou Nom de la méthode projet |
+| param | Expression | → | Paramètre(s) passé(s) à la méthode |
@@ -82,6 +82,6 @@ Voici le code de *méthodeWorker* :
| | |
| --- | --- |
| Numéro de commande | 1389 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
index 2039b8690d4de8..629bfedfc31ff5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 241 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
index 6c04499adc0520..9a135870415ea4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
@@ -54,7 +54,7 @@ Lorsque la commande [CANCEL](cancel.md) est exécutée (formulaire annulé ou an
| | |
| --- | --- |
| Numéro de commande | 270 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
index c15403d494a97c..6238badc01747f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
index 996d07dfe9841e..0a9ad94419c784 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
@@ -5,12 +5,12 @@ slug: /commands/change-current-user
displayed_sidebar: docs
---
-**CHANGE CURRENT USER** {( *utilisateur* ; *motDePasse* )}
+**CHANGE CURRENT USER** ({ *utilisateur* : Text, Integer ; *motDePasse* : Text })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| utilisateur | Text, Integer | → | Nom ou Numéro de référence unique de l’utilisateur |
-| motDePasse | Text | → | Mot de passe (non crypté) |
+| utilisateur | Text, Integer | → | Nom ou Numéro de référence unique de l’utilisateur |
+| motDePasse | Text | → | Mot de passe (non crypté) |
@@ -72,6 +72,6 @@ L'exemple suivant affiche simplement la boîte de dialogue de connexion :
| | |
| --- | --- |
| Numéro de commande | 289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
index bff4debb28c81e..7a0c3306647354 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ Vous permettrez ainsi à un utilisateur d‘activer des licences sans avoir à m
| | |
| --- | --- |
| Numéro de commande | 637 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
index 397a6109b576a4..e12846dee70ac2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
@@ -5,11 +5,11 @@ slug: /commands/change-password
displayed_sidebar: docs
---
-**CHANGE PASSWORD** ( *motDePasse* )
+**CHANGE PASSWORD** ( *motDePasse* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| motDePasse | Text | → | Nouveau mot de passe |
+| motDePasse | Text | → | Nouveau mot de passe |
@@ -48,6 +48,6 @@ L'exemple suivant permet à l'utilisateur de modifier son mot de passe :
| | |
| --- | --- |
| Numéro de commande | 186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
index 521f92522c659e..609d0b2eda69aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
@@ -5,13 +5,13 @@ slug: /commands/change-string
displayed_sidebar: docs
---
-**Change string** ( *source* ; *nouveau* ; *positionDépart* ) : Text
+**Change string** ( *source* : Text ; *nouveau* : Text ; *positionDépart* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Chaîne de départ |
-| nouveau | Text | → | Nouveaux caractères |
-| positionDépart | Integer | → | Position de départ du remplacement |
+| source | Text | → | Chaîne de départ |
+| nouveau | Text | → | Nouveaux caractères |
+| positionDépart | Integer | → | Position de départ du remplacement |
| Résultat | Text | ← | Chaîne résultante |
@@ -44,6 +44,6 @@ L'exemple suivant illustre l'utilisation de **Change string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md
index feb8d6871f845d..08dccb44aa06b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/char.md
@@ -5,11 +5,11 @@ slug: /commands/char
displayed_sidebar: docs
---
-**Char** ( *codeCaractère* ) : Text
+**Char** ( *codeCaractère* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| codeCaractère | Integer | → | Code de caractère |
+| codeCaractère | Integer | → | Code de caractère |
| Résultat | Text | ← | Caractère représenté par codeCaractère |
@@ -41,6 +41,6 @@ L'exemple suivant utilise la fonction **Char** pour insérer un retour chariot d
| | |
| --- | --- |
| Numéro de commande | 90 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
index f91068c46800c8..9fa5d7e5fb94de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
@@ -5,11 +5,11 @@ slug: /commands/character-code
displayed_sidebar: docs
---
-**Character code** ( *unCaractère* ) : Integer
+**Character code** ( *unCaractère* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| unCaractère | Text | → | Caractère dont vous voulez obtenir le code |
+| unCaractère | Text | → | Caractère dont vous voulez obtenir le code |
| Résultat | Integer | ← | Code du caractère |
@@ -90,6 +90,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 91 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
index cb24931df030a5..8236366a3a1b27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode de gestion d’
| | |
| --- | --- |
| Numéro de commande | 799 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
index eecdfb02642775..8028e98645185f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
@@ -5,12 +5,12 @@ slug: /commands/choose
displayed_sidebar: docs
---
-**Choose** ( *critère* ; *valeur* {; *valeur2* ; ... ; *valeurN*} ) : any
+**Choose** ( *critère* : Boolean, Integer ; *valeur* : Expression {; *...valeur* : Expression} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| critère | Boolean, Integer | → | Valeur à tester |
-| valeur | Expression | → | Valeurs possibles |
+| critère | Boolean, Integer | → | Valeur à tester |
+| valeur | Expression | → | Valeurs possibles |
| Résultat | any | ← | Valeur de critère |
@@ -85,6 +85,6 @@ Ce code est strictement équivalent à :
| | |
| --- | --- |
| Numéro de commande | 955 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
index 3ed92afb4760f5..27534889eba0c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
@@ -5,12 +5,12 @@ slug: /commands/clear-list
displayed_sidebar: docs
---
-**CLEAR LIST** ( *liste* {; *} )
+**CLEAR LIST** ( *liste* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de liste |
-| * | Operator | → | Si spécifié, effacer les sous-listes de la mémoire (s'il existe des sous-listes) Si omis, ne pas effacer les sous-listes |
+| liste | Integer | → | Numéro de référence de liste |
+| * | Operator | → | Si spécifié, effacer les sous-listes de la mémoire (s'il existe des sous-listes) Si omis, ne pas effacer les sous-listes |
@@ -57,6 +57,6 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 377 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
index 3413b884a08a57..a77651dc397f26 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/clear-named-selection
displayed_sidebar: docs
---
-**CLEAR NAMED SELECTION** ( *nom* )
+**CLEAR NAMED SELECTION** ( *nom* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nom | Text | → | Nom de la sélection temporaire à effacer |
+| nom | Text | → | Nom de la sélection temporaire à effacer |
@@ -30,6 +30,6 @@ Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selecti
| | |
| --- | --- |
| Numéro de commande | 333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
index e764f4d94af88e..3f6cf5c3dfa439 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 402 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
index 708686b746c5ff..46c06cc840a0cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/clear-semaphore
displayed_sidebar: docs
---
-**CLEAR SEMAPHORE** ( *sémaphore* )
+**CLEAR SEMAPHORE** ( *sémaphore* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sémaphore | Text | → | Sémaphore à effacer |
+| sémaphore | Text | → | Sémaphore à effacer |
@@ -37,6 +37,6 @@ Reportez-vous à l'exemple de la fonction [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Numéro de commande | 144 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
index bede235b79222c..44db760c2502e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
@@ -5,11 +5,11 @@ slug: /commands/clear-set
displayed_sidebar: docs
---
-**CLEAR SET** ( *ensemble* )
+**CLEAR SET** ( *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble | Text | → | Nom de l'ensemble à effacer de la mémoire |
+| ensemble | Text | → | Nom de l'ensemble à effacer de la mémoire |
@@ -32,6 +32,6 @@ Reportez-vous à l'exemple de la commande [USE SET](use-set.md).
| | |
| --- | --- |
| Numéro de commande | 117 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
index c679b316462062..94d1b106081d4a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
@@ -5,11 +5,11 @@ slug: /commands/clear-variable
displayed_sidebar: docs
---
-**CLEAR VARIABLE** ( *variable* )
+**CLEAR VARIABLE** ( *variable* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| variable | Variable | → | Nom de la variable à effacer |
+| variable | Variable | → | Nom de la variable à effacer |
@@ -50,6 +50,6 @@ Dans un formulaire, vous utilisez une liste déroulante appelée *asMalListeD* n
| | |
| --- | --- |
| Numéro de commande | 89 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
index ec50384484c898..8dc1fd64b1d739 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Les libellés ne sont pas saisissables mais ils peuvent le devenir après un tri
| | |
| --- | --- |
| Numéro de commande | 1332 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
index 80717132cc66c6..19d4d9145925bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
@@ -5,11 +5,11 @@ slug: /commands/close-document
displayed_sidebar: docs
---
-**CLOSE DOCUMENT** ( *docRef* )
+**CLOSE DOCUMENT** ( *docRef* : Time )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Numéro de référence du document |
+| docRef | Time | → | Numéro de référence du document |
@@ -43,6 +43,6 @@ L'exemple suivant permet à l'utilisateur de créer un nouveau document, écrit
| | |
| --- | --- |
| Numéro de commande | 267 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
index 516a0b1ac2795c..eb16556030fa66 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 996 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
index 3422ba4323454f..8cbb5bc6396bc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
@@ -5,11 +5,11 @@ slug: /commands/close-resource-file
displayed_sidebar: docs
---
-**CLOSE RESOURCE FILE** ( *resFichier* )
+**CLOSE RESOURCE FILE** ( *resFichier* : Time )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resFichier | Time | → | Numéro de référence de fichier de ressources |
+| resFichier | Time | → | Numéro de référence de fichier de ressources |
@@ -34,6 +34,6 @@ N'oubliez pas d'appeler finalement **CLOSE RESOURCE FILE** pour un fichier de re
| | |
| --- | --- |
| Numéro de commande | 498 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
index 1838bf3beef1af..c104433125c8ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
@@ -5,11 +5,11 @@ slug: /commands/close-window
displayed_sidebar: docs
---
-**CLOSE WINDOW** {( *fenêtre* )}
+**CLOSE WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre externe ou Fenêtre de premier plan du process si ce paramètre est omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre externe ou Fenêtre de premier plan du process si ce paramètre est omis |
@@ -44,6 +44,6 @@ L'exemple suivant ouvre une fenêtre formulaire et crée des enregistrements à
| | |
| --- | --- |
| Numéro de commande | 154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
index 68679f047af2b7..907741923ef2a8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/collection-to-array
displayed_sidebar: docs
---
-**COLLECTION TO ARRAY** ( *collection* ; *tableau* {; *nomPropriété*}{; *tableau2* ; *nomPropriété2* ; ... ; *tableauN* ; *nomPropriétéN*} )
+**COLLECTION TO ARRAY** ( *collection* : Collection ; *tableau* : Array {; *nomPropriété* : Text}{; ...(*tableau* : Array ; *nomPropriété* : Text) } )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| collection | Collection | → | Collection à copier dans un ou des tableau(x) |
+| collection | Collection | → | Collection à copier dans un ou des tableau(x) |
| tableau | Array | ← | Tableau reçevant les éléments de la collection ; si le paramètre nomPropriété est passé, le tableau reçoit les valeurs correspondantes à nomPropriété dans la collection. |
-| nomPropriété | Text | → | Nom de la propriété de l'objet dont les valeurs sont à copier dans le tableau ("" pour tous les éléments) |
+| nomPropriété | Text | → | Nom de la propriété de l'objet dont les valeurs sont à copier dans le tableau ("" pour tous les éléments) |
@@ -71,6 +71,6 @@ Vous voulez copier différentes valeurs de propriété d'une collection d'objets
| | |
| --- | --- |
| Numéro de commande | 1562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
index 42894544f00556..dd7a367e166db9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
@@ -5,16 +5,16 @@ slug: /commands/combine-pictures
displayed_sidebar: docs
---
-**COMBINE PICTURES** ( *imageRésultat* ; *image1* ; *opérateur* ; *image2* {; *décalHoriz* ; *décalVert*} )
+**COMBINE PICTURES** ( *imageRésultat* : Picture ; *image1* : Picture ; *opérateur* : Integer ; *image2* : Picture {; *décalHoriz* : Integer ; *décalVert* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| imageRésultat | Picture | ← | Image résultant de la combinaison |
-| image1 | Picture | → | Première image à combiner |
-| opérateur | Integer | → | Type de combinaison à effectuer |
-| image2 | Picture | → | Seconde image à combiner |
-| décalHoriz | Integer | → | Décalage horizontal pour la superposition |
-| décalVert | Integer | → | Décalage vertical pour la superposition |
+| image1 | Picture | → | Première image à combiner |
+| opérateur | Integer | → | Type de combinaison à effectuer |
+| image2 | Picture | → | Seconde image à combiner |
+| décalHoriz | Integer | → | Décalage horizontal pour la superposition |
+| décalVert | Integer | → | Décalage vertical pour la superposition |
@@ -56,6 +56,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 987 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
index f08b09c19c5819..d0717e12957a01 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/compact-data-file
displayed_sidebar: docs
---
-**Compact data file** ( *cheminStructure* ; *cheminDonnées* {; *dossierArchive* {; *options* {; *méthode*}}} ) : Text
+**Compact data file** ( *cheminStructure* : Text ; *cheminDonnées* : Text {; *dossierArchive* : Text {; *options* : Integer {; *méthode* : Text}}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminStructure | Text | → | Chemin d’accès du fichier de structure |
-| cheminDonnées | Text | → | Chemin d’accès du fichier de données |
-| dossierArchive | Text | → | Chemin d’accès du dossier dans lequel placer le fichier de données original |
-| options | Integer | → | Options de compactage |
-| méthode | Text | → | Nom de la méthode 4D de rétro-appel |
+| cheminStructure | Text | → | Chemin d’accès du fichier de structure |
+| cheminDonnées | Text | → | Chemin d’accès du fichier de données |
+| dossierArchive | Text | → | Chemin d’accès du dossier dans lequel placer le fichier de données original |
+| options | Integer | → | Options de compactage |
+| méthode | Text | → | Nom de la méthode 4D de rétro-appel |
| Résultat | Text | ← | Chemin d’accès complet du dossier contenant le fichier de données original |
@@ -74,7 +74,7 @@ Si l’opération de compactage s’est déroulée correctement, la variable sys
| | |
| --- | --- |
| Numéro de commande | 937 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
index ba26e4c0b61ceb..e057bf404cbaff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
@@ -5,13 +5,13 @@ slug: /commands/compare-strings
displayed_sidebar: docs
---
-**Compare strings** ( *aString* ; *bString* {; *options*} ) : Integer
+**Compare strings** ( *aString* : Text ; *bString* : Text {; *options* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| aString | Text | → | Chaîne à comparer |
-| bString | Text | → | Chaîne à comparer |
-| options | Integer | → | Règle(s) de comparaison |
+| aString | Text | → | Chaîne à comparer |
+| bString | Text | → | Chaîne à comparer |
+| options | Integer | → | Règle(s) de comparaison |
| Résultat | Integer | ← | Résultat de la comparaison de chaînes |
@@ -111,6 +111,6 @@ Les exemples suivants illustrent l'incidence des options dans le **contexte de l
| | |
| --- | --- |
| Numéro de commande | 1756 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
index bd6d6f70d99e0f..1672b521a364a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
@@ -5,7 +5,7 @@ slug: /commands/component-list
displayed_sidebar: docs
---
-**COMPONENT LIST** ( *tabComposants* )
+**COMPONENT LIST** ( *tabComposants* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Pour plus d'informations sur les composants 4D, reportez-vous au manuel *Mode D
| | |
| --- | --- |
| Numéro de commande | 1001 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
index db31e327c94b84..bf56fb61072adc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
@@ -5,12 +5,12 @@ slug: /commands/compress-blob
displayed_sidebar: docs
---
-**COMPRESS BLOB** ( *blob* {; *compression*} )
+**COMPRESS BLOB** ( *blob* : Blob {; *compression* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB à compresser |
-| compression | Integer | → | Si ce paramètre est passé : 1= taux de compression maximum 2 = vitesse de compression maximum |
+| Blob | Blob | → | BLOB à compresser |
+| compression | Integer | → | Si ce paramètre est passé : 1= taux de compression maximum 2 = vitesse de compression maximum |
@@ -99,7 +99,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement compressé, sin
| | |
| --- | --- |
| Numéro de commande | 534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
index b089c98dafb223..6d5fb61297fa5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
@@ -5,13 +5,13 @@ slug: /commands/confirm
displayed_sidebar: docs
---
-**CONFIRM** ( *message* {; *libelléBoutonOK* {; *libelléBoutonAnn*}} )
+**CONFIRM** ( *message* : Text {; *libelléBoutonOK* : Text {; *libelléBoutonAnn* : Text}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Message à afficher dans la boîte de dialogue de confirmation |
-| libelléBoutonOK | Text | → | Libellé du bouton OK |
-| libelléBoutonAnn | Text | → | Libellé du bouton Annuler |
+| message | Text | → | Message à afficher dans la boîte de dialogue de confirmation |
+| libelléBoutonOK | Text | → | Libellé du bouton OK |
+| libelléBoutonAnn | Text | → | Libellé du bouton Annuler |
@@ -97,7 +97,7 @@ La ligne :
| | |
| --- | --- |
| Numéro de commande | 162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
index e084653f085616..b3fa3450e550d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Cette méthode, associée à une zone de défilement, permet de changer la valeu
| | |
| --- | --- |
| Numéro de commande | 713 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
index a0749d976fd3ab..2c52ec10aa3558 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
@@ -5,16 +5,14 @@ slug: /commands/convert-coordinates
displayed_sidebar: docs
---
-**CONVERT COORDINATES** ( *coordX* ; *coordY* ; *depuis* ; *vers* )
+**CONVERT COORDINATES** ( *coordX* : Integer ; *coordY* : Integer ; *depuis* : Integer ; *vers* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| coordX | Integer | → | Coordonnée horizontale d'un point (initiale) |
-| ← | Coordonnée horizontale d'un point (convertie) |
-| coordY | Integer | → | Coordonnée verticale d'un point (initiale) |
-| ← | Coordonnée verticale d'un point (convertie) |
-| depuis | Integer | → | Système de coordonnées d'origine |
-| vers | Integer | → | Système de coordonnées dans lequel convertir le point |
+| coordX | Integer | ↔ | *in:* Horizontal coordinate of a point (initial)
*out:* Horizontal coordinate of a point (converted) |
+| coordY | Integer | ↔ | *in:* Vertical coordinate of a point (initial)
*out:* Vertical coordinate of a point (converted) |
+| depuis | Integer | → | Système de coordonnées d'origine |
+| vers | Integer | → | Système de coordonnées dans lequel convertir le point |
@@ -92,6 +90,6 @@ Vous souhaitez créer une fenêtre pop up à l'emplacement du curseur de la sour
| | |
| --- | --- |
| Numéro de commande | 1365 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
index 3805c0dd7c414f..a025635a5e4ad0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-from-text
displayed_sidebar: docs
---
-**CONVERT FROM TEXT** ( *texte4D* ; *jeuCaractères* ; *blobConverti* )
+**CONVERT FROM TEXT** ( *texte4D* : Text ; *jeuCaractères* : Text, Integer ; *blobConverti* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texte4D | Text | → | Texte exprimé dans le jeu de caractères courant de 4D |
-| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
+| texte4D | Text | → | Texte exprimé dans le jeu de caractères courant de 4D |
+| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
| blobConverti | Blob | ← | BLOB contenant le texte converti |
@@ -191,7 +191,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1011 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
index fc246ebb5ee70b..49bb7623a796fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-posix-to-system
displayed_sidebar: docs
---
-**Convert path POSIX to system** ( *cheminPosix* {; *} ) : Text
+**Convert path POSIX to system** ( *cheminPosix* : Text {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminPosix | Text | → | Chemin d’accès POSIX |
-| * | Opérateur | → | Option d’encodage |
+| cheminPosix | Text | → | Chemin d’accès POSIX |
+| * | Opérateur | → | Option d’encodage |
| Résultat | Text | ← | Chemin d’accès exprimé en syntaxe système |
@@ -55,6 +55,6 @@ Exemples sous Windows :
| | |
| --- | --- |
| Numéro de commande | 1107 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
index 88fa6781f43873..7459e86a45e722 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-system-to-posix
displayed_sidebar: docs
---
-**Convert path system to POSIX** ( *cheminSystème* {; *} ) : Text
+**Convert path system to POSIX** ( *cheminSystème* : Text {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminSystème | Text | → | Chemin d’accès relatif ou absolu exprimé en syntaxe système |
-| * | Opérateur | → | Option d’encodage |
+| cheminSystème | Text | → | Chemin d’accès relatif ou absolu exprimé en syntaxe système |
+| * | Opérateur | → | Option d’encodage |
| Résultat | Text | ← | Chemin d’accès absolu exprimé en syntaxe POSIX |
@@ -67,6 +67,6 @@ Exemple sous Windows
| | |
| --- | --- |
| Numéro de commande | 1106 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
index 339982d630da27..be501d9b7620b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
@@ -5,14 +5,13 @@ slug: /commands/convert-picture
displayed_sidebar: docs
---
-**CONVERT PICTURE** ( *image* ; *codec* {; *compression*} )
+**CONVERT PICTURE** ( *image* : Picture ; *codec* : Text {; *compression* : Real} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image à convertir |
-| ← | Image convertie |
-| codec | Text | → | Identifiant de codec d'image |
-| compression | Real | → | Qualité de compression |
+| image | Picture | ↔ | *in:* Picture to be converted
*out:* Converted picture |
+| codec | Text | → | Identifiant de codec d'image |
+| compression | Real | → | Qualité de compression |
@@ -55,6 +54,6 @@ Conversion d’une image avec une qualité de 60 % :
| | |
| --- | --- |
| Numéro de commande | 1002 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
index 0487bbc5e02e79..d3edb5e15a8ea1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-to-text
displayed_sidebar: docs
---
-**Convert to text** ( *blob* ; *jeuCaractères* ) : Text
+**Convert to text** ( *blob* : Blob ; *jeuCaractères* : Text, Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB contenant un texte exprimé dans un jeu de caractères spécifique |
-| jeuCaractères | Text, Integer | → | Nom ou Numéro du jeu de caractères de blob |
+| Blob | Blob | → | BLOB contenant un texte exprimé dans un jeu de caractères spécifique |
+| jeuCaractères | Text, Integer | → | Nom ou Numéro du jeu de caractères de blob |
| Résultat | Text | ← | Contenu de blob exprimé dans le jeu de caractères 4D |
@@ -36,7 +36,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1012 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
index 09c73ebef6fc6e..d267e8019576d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
@@ -5,11 +5,11 @@ slug: /commands/copy-array
displayed_sidebar: docs
---
-**COPY ARRAY** ( *source* ; *destination* )
+**COPY ARRAY** ( *source* : Array ; *destination* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Array | → | Tableau à recopier |
+| source | Array | → | Tableau à recopier |
| destination | Array | ← | Tableau de destination |
@@ -41,6 +41,6 @@ L'exemple suivant remplit un tableau C. Un nouveau tableau, "D", est ensuite cr
| | |
| --- | --- |
| Numéro de commande | 226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
index 765e09fc4c421a..7e6cc2c29cf8a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
@@ -5,15 +5,15 @@ slug: /commands/copy-blob
displayed_sidebar: docs
---
-**COPY BLOB** ( *srcBLOB* ; *dstBLOB* ; *srcOffset* ; *dstOffset* ; *nombre* )
+**COPY BLOB** ( *srcBLOB* : Blob ; *dstBLOB* : Blob ; *srcOffset* : Integer ; *dstOffset* : Integer ; *nombre* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| srcBlob | Blob | → | BLOB source |
-| dstBlob | Blob | → | BLOB de destination |
-| srcOffset | Integer | → | Position dans la source pour la copie |
-| dstOffset | Integer | → | Position dans la destination pour la copie |
-| nombre | Integer | → | Nombre d'octets à copier |
+| srcBlob | Blob | → | BLOB source |
+| dstBlob | Blob | → | BLOB de destination |
+| srcOffset | Integer | → | Position dans la source pour la copie |
+| dstOffset | Integer | → | Position dans la destination pour la copie |
+| nombre | Integer | → | Nombre d'octets à copier |
@@ -35,6 +35,6 @@ Notez que le BLOB de destination peut être redimensionné si nécessaire.
| | |
| --- | --- |
| Numéro de commande | 558 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
index e0e4a89d50ed2f..d859b9145a20a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
@@ -5,14 +5,14 @@ slug: /commands/copy-document
displayed_sidebar: docs
---
-**COPY DOCUMENT** ( *nomSource* ; *nomDest* {; *nouvNom*} {; *} )
+**COPY DOCUMENT** ( *nomSource* : Text ; *nomDest* : Text {; *nouvNom* : Text} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomSource | Text | → | Chemin d’accès du fichier ou du dossier à copier |
-| nomDest | Text | → | Nom ou chemin d’accès du fichier ou du dossier copié |
-| nouvNom | Text | → | Nouveau nom du fichier ou du dossier copié |
-| * | Opérateur | → | Remplacer le document existant le cas échéant |
+| nomSource | Text | → | Chemin d’accès du fichier ou du dossier à copier |
+| nomDest | Text | → | Nom ou chemin d’accès du fichier ou du dossier copié |
+| nouvNom | Text | → | Nouveau nom du fichier ou du dossier copié |
+| * | Opérateur | → | Remplacer le document existant le cas échéant |
@@ -127,7 +127,7 @@ Les exemples suivants créent différents fichiers et dossiers dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 541 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
index 61536768333afd..1c97e5c421e012 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
@@ -5,11 +5,11 @@ slug: /commands/copy-list
displayed_sidebar: docs
---
-**Copy list** ( *liste* ) : Integer
+**Copy list** ( *liste* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de la liste à copier |
+| liste | Integer | → | Numéro de référence de la liste à copier |
| Résultat | Integer | ← | Numéro de référence de la nouvelle liste |
@@ -31,6 +31,6 @@ Le contenu de la liste copiée est entièrement dupliqué. Une fois que vous en
| | |
| --- | --- |
| Numéro de commande | 626 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
index 77e94ff8ca4b8d..5abf21c77b82a2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/copy-named-selection
displayed_sidebar: docs
---
-**COPY NAMED SELECTION** ( {*laTable* ;} *nom* )
+**COPY NAMED SELECTION** ( {*laTable* : Table ;} *nom* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle il faut copier la sélection ou Table par défaut si ce paramètre est omis |
-| nom | Text | → | Nom de la sélection temporaire à créer |
+| laTable | Table | → | Table de laquelle il faut copier la sélection ou Table par défaut si ce paramètre est omis |
+| nom | Text | → | Nom de la sélection temporaire à créer |
@@ -58,6 +58,6 @@ L'exemple suivant permet de vérifier s'il y a des factures impayées dans la ta
| | |
| --- | --- |
| Numéro de commande | 331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
index 7c201ea4b6ab1c..463e6989a54d29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
@@ -5,11 +5,11 @@ slug: /commands/copy-parameters
displayed_sidebar: docs
---
-**Copy parameters** {( *startFrom* )} : Collection
+**Copy parameters** ( *startFrom* : Integer ) : Collection
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| startFrom | Integer | → | Starting index (included) |
+| startFrom | Integer | → | Starting index (included) |
| Résultat | Collection | ← | New collection containing parameters actually passed |
@@ -86,6 +86,6 @@ Puisque la commande retourne une collection, elle peut être utilisée avec **.j
| | |
| --- | --- |
| Numéro de commande | 1790 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
index 06b5128d50a91f..0901a7cc5c7200 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
@@ -5,12 +5,12 @@ slug: /commands/copy-set
displayed_sidebar: docs
---
-**COPY SET** ( *srcEns* ; *dstEns* )
+**COPY SET** ( *srcEns* : Text ; *dstEns* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| srcEns | Text | → | Nom de l'ensemble source |
-| dstEns | Text | → | Nom de l'ensemble de destination |
+| srcEns | Text | → | Nom de l'ensemble source |
+| dstEns | Text | → | Nom de l'ensemble de destination |
@@ -45,6 +45,6 @@ L'exemple suivant, en client/serveur, copie l'ensemble process "*SetA*", conserv
| | |
| --- | --- |
| Numéro de commande | 600 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
index b6f11190894dec..0fa46284eafc2e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
@@ -5,11 +5,11 @@ slug: /commands/cos
displayed_sidebar: docs
---
-**Cos** ( *nombre* ) : Real
+**Cos** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître le cosinus |
+| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître le cosinus |
| Résultat | Real | ← | Cosinus de nombre |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 18 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
index 988fb27f846736..f05f8314fd03e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
@@ -5,12 +5,12 @@ slug: /commands/count-in-array
displayed_sidebar: docs
---
-**Count in array** ( *tableau* ; *valeur* ) : Integer
+**Count in array** ( *tableau* : Array ; *valeur* : Expression ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau dans lequel effectuer le comptage |
-| valeur | Expression | → | Valeur à compter |
+| tableau | Array | → | Tableau dans lequel effectuer le comptage |
+| valeur | Expression | → | Valeur à compter |
| Résultat | Integer | ← | Nombre d’occurrences trouvées |
@@ -63,6 +63,6 @@ Vous voulez compter les références d'objets dans un tableau d'objets :
| | |
| --- | --- |
| Numéro de commande | 907 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
index 394466a3626a17..a56b63eaa13c38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
@@ -5,13 +5,13 @@ slug: /commands/count-list-items
displayed_sidebar: docs
---
-**Count list items** ( {* ;} *liste* {; *} ) : Integer
+**Count list items** ( {* ;} *liste* : Integer, Text {; *} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| * | Opérateur | → | Si omis (défaut) : Retourner les éléments visibles (déployés) dans la ou les liste(s) Si spécifié : Retourner tous les éléments |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| * | Opérateur | → | Si omis (défaut) : Retourner les éléments visibles (déployés) dans la ou les liste(s) Si spécifié : Retourner tous les éléments |
| Résultat | Integer | ← | Nombre d'éléments visibles (déployés) si 2e * omis ou Nombre total d’éléments si 2e * passé |
@@ -64,6 +64,6 @@ Voici la liste *hList* affichée en mode Application :
| | |
| --- | --- |
| Numéro de commande | 380 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
index 568064c1409308..2f07a28457435c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
@@ -5,12 +5,12 @@ slug: /commands/count-menu-items
displayed_sidebar: docs
---
-**Count menu items** ( *menu* {; *process*} ) : Integer
+**Count menu items** ( *menu* : Integer, Text {; *process* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Integer | ← | Nombre de lignes du menu |
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Count menu items** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 405 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
index ee18b18db95c24..3d0608113fd636 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
@@ -5,11 +5,11 @@ slug: /commands/count-menus
displayed_sidebar: docs
---
-**Count menus** {( *process* )} : Integer
+**Count menus** ( *process* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de référence de process |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Integer | ← | Nombre de menus de la barre de menus courante |
@@ -29,7 +29,7 @@ Si vous omettez le paramètre *process*, **Count menus** s'applique à la barre
| | |
| --- | --- |
| Numéro de commande | 404 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
index 6dcade77a26b90..c0f992d9906986 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
@@ -96,6 +96,6 @@ ou :
| | |
| --- | --- |
| Numéro de commande | 259 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
index cb878ae7891271..2b21ee5fd6b83f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 437 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
index b4092cc6131554..2676ee0fd467f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Référez-vous à l'exemple de [Process state](process-state.md) et [Semaphore](
| | |
| --- | --- |
| Numéro de commande | 335 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
index 5ad1d8ff21453a..2f742b65d301ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 343 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
index 9c09a2de1c2a8c..a481d3142626be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Dans le cas d'une version monoposte de 4D, **Count users** retourne 1.
| | |
| --- | --- |
| Numéro de commande | 342 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
index f8e140a4cc2fa4..913272581576c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
@@ -5,12 +5,12 @@ slug: /commands/create-alias
displayed_sidebar: docs
---
-**CREATE ALIAS** ( *cheminCible* ; *cheminAlias* )
+**CREATE ALIAS** ( *cheminCible* : Text ; *cheminAlias* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminCible | Text | → | Nom ou chemin d’accès de la cible de l’alias/du raccourci |
-| cheminAlias | Text | → | Nom ou chemin d’accès complet de l’alias/du raccourci à créer |
+| cheminCible | Text | → | Nom ou chemin d’accès de la cible de l’alias/du raccourci |
+| cheminAlias | Text | → | Nom ou chemin d’accès complet de l’alias/du raccourci à créer |
@@ -73,7 +73,7 @@ La variable système OK prend la valeur 1 si la commande a été correctement ex
| | |
| --- | --- |
| Numéro de commande | 694 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
index b3dd2f75719fed..69a49aa6ddee91 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/create-data-file
displayed_sidebar: docs
---
-**CREATE DATA FILE** ( *cheminAccès* )
+**CREATE DATA FILE** ( *cheminAccès* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Nom ou chemin d’accès complet du fichier de données à créer |
+| cheminAccès | Text | → | Nom ou chemin d’accès complet du fichier de données à créer |
@@ -32,6 +32,6 @@ Avant de lancer l’opération, la commande vérifie que le chemin spécifié ne
| | |
| --- | --- |
| Numéro de commande | 313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
index be0c72ce9e9755..d1e658b37953d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
@@ -5,12 +5,12 @@ slug: /commands/create-document
displayed_sidebar: docs
---
-**Create document** ( *nomFichier* {; *typeFichier*} ) : Time
+**Create document** ( *nomFichier* : Text {; *typeFichier* : Text} ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom de document ou Chemin d'accès complet de document ou Chaîne vide pour afficher la boîte de dialogue standard d'enregistrement de fichiers |
-| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
+| nomFichier | Text | → | Nom de document ou Chemin d'accès complet de document ou Chaîne vide pour afficher la boîte de dialogue standard d'enregistrement de fichiers |
+| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
| Résultat | Time | ← | Numéro de référence du document |
@@ -74,7 +74,7 @@ Si le document est correctement créé, la variable système OK prend la valeur
| | |
| --- | --- |
| Numéro de commande | 266 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
index babc548f082caf..bc4b441d0224a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-empty-set
displayed_sidebar: docs
---
-**CREATE EMPTY SET** ( {*laTable* ;} *ensemble* )
+**CREATE EMPTY SET** ( {*laTable* : Table ;} *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle créer un ensemble vide ou Table par défaut si ce paramètre est omis |
-| ensemble | Text | → | Nom du nouvel ensemble vide |
+| laTable | Table | → | Table pour laquelle créer un ensemble vide ou Table par défaut si ce paramètre est omis |
+| ensemble | Text | → | Nom du nouvel ensemble vide |
@@ -34,6 +34,6 @@ Reportez-vous à l'exemple proposé dans la section *Présentation des ensembles
| | |
| --- | --- |
| Numéro de commande | 140 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
index 866a40b6a88ed0..2b8b36cb045843 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
@@ -5,12 +5,12 @@ slug: /commands/create-folder
displayed_sidebar: docs
---
-**CREATE FOLDER** ( *cheminAccès* {; *} )
+**CREATE FOLDER** ( *cheminAccès* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Chemin d'accès au nouveau dossier à créer |
-| * | Opérateur | → | Créer la hiérarchie du dossier |
+| cheminAccès | Text | → | Chemin d'accès au nouveau dossier à créer |
+| * | Opérateur | → | Créer la hiérarchie du dossier |
@@ -77,7 +77,7 @@ Création du sous-dossier "\\February\\" dans le dossier existant "C:\\Archives\
| | |
| --- | --- |
| Numéro de commande | 475 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
index 37274def5f72a2..9766becbc6d277 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
@@ -5,15 +5,15 @@ slug: /commands/create-index
displayed_sidebar: docs
---
-**CREATE INDEX** ( *laTable* ; *tabChamps* ; *typeIndex* ; *nomIndex* {; *} )
+**CREATE INDEX** ( *laTable* : Table ; *tabChamps* : Pointer array ; *typeIndex* : Integer ; *nomIndex* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle créer un index |
-| tabChamps | Pointer array | → | Pointeur(s) vers le(s) champ(s) à indexer |
-| typeIndex | Integer | → | Type d’index à créer : -1 = Mots-clés, 0 = par défaut, 1 = B-Tree standard, 3 = BTree cluster |
-| nomIndex | Text | → | Nom de l'index à créer |
-| * | Opérateur | → | Si passé = indexation asynchrone |
+| laTable | Table | → | Table pour laquelle créer un index |
+| tabChamps | Pointer array | → | Pointeur(s) vers le(s) champ(s) à indexer |
+| typeIndex | Integer | → | Type d’index à créer : -1 = Mots-clés, 0 = par défaut, 1 = B-Tree standard, 3 = BTree cluster |
+| nomIndex | Text | → | Nom de l'index à créer |
+| * | Opérateur | → | Si passé = indexation asynchrone |
@@ -93,6 +93,6 @@ Création d’un index composite sur les champs “CodePostal” et “Ville”
| | |
| --- | --- |
| Numéro de commande | 966 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
index 16b27c59308757..17dc7b9fd3a66a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
@@ -5,11 +5,11 @@ slug: /commands/create-menu
displayed_sidebar: docs
---
-**Create menu** {( *menu* )} : Text
+**Create menu** ( *menu* : Text, Integer, Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Text, Integer, Text | → | Référence de menu ou Numéro ou Nom de barre de menus |
+| menu | Text, Integer, Text | → | Référence de menu ou Numéro ou Nom de barre de menus |
| Résultat | Text | ← | Référence du menu |
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
index 61ff42c37d8d5e..16194d44b29d43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
@@ -5,11 +5,11 @@ slug: /commands/create-record
displayed_sidebar: docs
---
-**CREATE RECORD** {( *laTable* )}
+**CREATE RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle créer un enregistrement ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table dans laquelle créer un enregistrement ou Table par défaut si ce paramètre est omis |
@@ -52,7 +52,7 @@ L'exemple suivant archive les enregistrements datant de plus de 30 jours. Cette
| | |
| --- | --- |
| Numéro de commande | 68 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
index cbffa2d80aa586..768ee45bc1b215 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ N (champ d'où part le lien) |
+| leField | Field | → | Champ N (champ d'où part le lien) |
@@ -28,6 +28,6 @@ Si un enregistrement lié existe déjà, la commande **CREATE RELATED ONE** a al
| | |
| --- | --- |
| Numéro de commande | 65 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
index 9d2588e029d12a..49a93e0baa1dea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-selection-from-array
displayed_sidebar: docs
---
-**CREATE SELECTION FROM ARRAY** ( *laTable* ; *tabEnrg* {; *nom*} )
+**CREATE SELECTION FROM ARRAY** ( *laTable* : Table ; *tabEnrg* : Integer, Boolean array {; *nom* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de la sélection |
-| tabEnrg | Integer, Boolean array | → | Tableau de n° d’enregistrements, ou Tableau de booléens (Vrai = l’enregistrement est dans la sélection, Faux = il n’est pas dans la sélection) |
-| nom | Text | → | Nom de la sélection temporaire à créer, ou Appliquer la commande à la sélection courante si ce paramètre est omis ou vide |
+| laTable | Table | → | Table de la sélection |
+| tabEnrg | Integer, Boolean array | → | Tableau de n° d’enregistrements, ou Tableau de booléens (Vrai = l’enregistrement est dans la sélection, Faux = il n’est pas dans la sélection) |
+| nom | Text | → | Nom de la sélection temporaire à créer, ou Appliquer la commande à la sélection courante si ce paramètre est omis ou vide |
@@ -52,7 +52,7 @@ Si un numéro d'enregistrement est invalide (enregistrement non créé), l’err
| | |
| --- | --- |
| Numéro de commande | 640 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
index cfecc74907514c..de45965b0729d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-set-from-array
displayed_sidebar: docs
---
-**CREATE SET FROM ARRAY** ( *laTable* ; *tabEnrg* {; *nomEnsemble*} )
+**CREATE SET FROM ARRAY** ( *laTable* : Table ; *tabEnrg* : Integer, Boolean array {; *nomEnsemble* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l’ensemble |
-| tabEnrg | Integer, Boolean array | → | Tableau de n° d’enregistrements, ou Tableau de booléens (Vrai = l’enregistrement est dans l’ensemble, Faux = il n’est pas dans l’ensemble) |
-| nomEnsemble | Text | → | Nom de l’ensemble à créer, ou Appliquer la commande à l’ensemble Userset si ce paramètre est omis ou vide |
+| laTable | Table | → | Table de l’ensemble |
+| tabEnrg | Integer, Boolean array | → | Tableau de n° d’enregistrements, ou Tableau de booléens (Vrai = l’enregistrement est dans l’ensemble, Faux = il n’est pas dans l’ensemble) |
+| nomEnsemble | Text | → | Nom de l’ensemble à créer, ou Appliquer la commande à l’ensemble Userset si ce paramètre est omis ou vide |
@@ -44,7 +44,7 @@ Dans un tableau d'entier longs, si un numéro d'enregistrement est invalide (enr
| | |
| --- | --- |
| Numéro de commande | 641 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
index aaba30d60c69cd..1fb3a917244990 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-set
displayed_sidebar: docs
---
-**CREATE SET** ( {*laTable* ;} *ensemble* )
+**CREATE SET** ( {*laTable* : Table ;} *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle vous voulez créer un ensemble à partir de la sélection courante ou Table par défaut si ce paramètre est omis |
-| ensemble | Text | → | Nom du nouvel ensemble |
+| laTable | Table | → | Table pour laquelle vous voulez créer un ensemble à partir de la sélection courante ou Table par défaut si ce paramètre est omis |
+| ensemble | Text | → | Nom du nouvel ensemble |
@@ -38,6 +38,6 @@ L'exemple suivant crée un ensemble après qu'une recherche ait été effectuée
| | |
| --- | --- |
| Numéro de commande | 116 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
index 27c267c7696b54..a7d99504a6751e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
@@ -5,16 +5,16 @@ slug: /commands/create-thumbnail
displayed_sidebar: docs
---
-**CREATE THUMBNAIL** ( *source* ; *dest* {; *largeur* {; *hauteur* {; *mode* {; *profondeur*}}}} )
+**CREATE THUMBNAIL** ( *source* : Picture ; *dest* : Picture {; *largeur* : Integer {; *hauteur* : Integer {; *mode* : Integer {; *profondeur* : Integer}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Picture | → | Champ ou variable image 4D à passer en imagette |
+| source | Picture | → | Champ ou variable image 4D à passer en imagette |
| dest | Picture | ← | Imagette résultante |
-| largeur | Integer | → | Largeur de l’imagette en pixels, Par défaut = 48 |
-| hauteur | Integer | → | Hauteur de l’imagette en pixels, Par défaut = 48 |
-| mode | Integer | → | Mode de création de l’imagette Par défaut = proportionnelle centrée (6) |
-| profondeur | Integer | → | Obsolète, ne pas utiliser |
+| largeur | Integer | → | Largeur de l’imagette en pixels, Par défaut = 48 |
+| hauteur | Integer | → | Hauteur de l’imagette en pixels, Par défaut = 48 |
+| mode | Integer | → | Mode de création de l’imagette Par défaut = proportionnelle centrée (6) |
+| profondeur | Integer | → | Obsolète, ne pas utiliser |
@@ -60,6 +60,6 @@ Le paramètre *profondeur* est ignoré et doit être omis. La commande utilise t
| | |
| --- | --- |
| Numéro de commande | 679 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
index c259c040131506..4d10835c593435 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
@@ -5,7 +5,7 @@ slug: /commands/current-client-authentication
displayed_sidebar: docs
---
-**Current client authentication** {( *domaine* ; *protocole* )} : Text
+**Current client authentication** ( *domaine* : Text ; *protocole* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -79,6 +79,6 @@ Avec ce paramétrage, aucune boîte de dialogue d'identification n'est affichée
| | |
| --- | --- |
| Numéro de commande | 1355 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
index 914d279497e406..737c7905917819 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
@@ -5,11 +5,11 @@ slug: /commands/current-date
displayed_sidebar: docs
---
-**Current date** {( * )} : Date
+**Current date** ( * ) : Date
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourne la date du jour du serveur |
+| * | Opérateur | → | Retourne la date du jour du serveur |
| Résultat | Date | ← | Date du jour |
@@ -103,6 +103,6 @@ La méthode projet suivante vous permet de traiter cette question :
| | |
| --- | --- |
| Numéro de commande | 33 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
index 11c774d02e3c52..ca2607cc143c10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ La ligne de code suivante inscrit le nom de la table courante par défaut dans l
| | |
| --- | --- |
| Numéro de commande | 363 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
index 615d995fda5c27..c3bf1dd03e082e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Vous souhaitez obtenir le formulaire courant si c’est un formulaire projet :
| | |
| --- | --- |
| Numéro de commande | 1298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
index 002efac3080757..ef9b9e19de9c30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
@@ -65,6 +65,6 @@ Dans votre application, vous utilisez la convention suivante : au moment de l'af
| | |
| --- | --- |
| Numéro de commande | 627 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
index 88c8de0e80f619..3512d449e6aa7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La fenêtre du formulaire courant peut avoir été générée automatiquement pa
| | |
| --- | --- |
| Numéro de commande | 827 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
index a4f7be8a2fea42..ed7670eee422d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Même si vous n'utilisez pas la version client/serveur de 4D, votre application
| | |
| --- | --- |
| Numéro de commande | 483 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
index 8c36ae9f4a60f1..a49f817b3bfc8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Cette commande ne doit pas être appelée depuis une formule 4D.
| | |
| --- | --- |
| Numéro de commande | 684 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
index 8badc5e15ed9bd..97c3de87e6ccb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1201 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
index 769f628c132d7b..b6a78c43da2d38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Vous voulez appeler un process worker et lui passer comme paramètre le nom du p
| | |
| --- | --- |
| Numéro de commande | 1392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
index 9d45cdb8e72a92..3b6c51df228a12 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Référez-vous aux exemples de [DELAY PROCESS](delay-process.md) et [Process inf
| | |
| --- | --- |
| Numéro de commande | 322 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
index 97a88388162b82..e79db5b4020770 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [Current machine](current-machine.md).
| | |
| --- | --- |
| Numéro de commande | 484 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
index 807ec9df6950eb..af083857112f37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
@@ -5,11 +5,11 @@ slug: /commands/current-time
displayed_sidebar: docs
---
-**Current time** {( * )} : Time
+**Current time** ( * ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourne l'heure courante sur le poste serveur |
+| * | Opérateur | → | Retourne l'heure courante sur le poste serveur |
| Résultat | Time | ← | Heure courante |
@@ -55,6 +55,6 @@ L'exemple suivant extrait les heures, minutes et secondes de l'heure courante :
| | |
| --- | --- |
| Numéro de commande | 178 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
index 6a2d7c183860b8..ebdfefcb1f514b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
@@ -5,11 +5,11 @@ slug: /commands/current-user
displayed_sidebar: docs
---
-**Current user** {( *utilisateur* )} : Text
+**Current user** ( *utilisateur* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| utilisateur | Integer | → | Alias utilisateur ou compte utilisateur 4D |
+| utilisateur | Integer | → | Alias utilisateur ou compte utilisateur 4D |
| Résultat | Text | ← | Nom de l'utilisateur courant |
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [User in group](user-in-group.md).
| | |
| --- | --- |
| Numéro de commande | 182 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
index 42763fdcef575f..266b2c9a3ca07b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/cut-named-selection
displayed_sidebar: docs
---
-**CUT NAMED SELECTION** ( {*laTable* ;} *nom* )
+**CUT NAMED SELECTION** ( {*laTable* : Table ;} *nom* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de la sélection ou Table par défaut si ce paramètre est omis |
-| nom | Text | → | Nom de la sélection temporaire à créer |
+| laTable | Table | → | Table de la sélection ou Table par défaut si ce paramètre est omis |
+| nom | Text | → | Nom de la sélection temporaire à créer |
@@ -42,7 +42,7 @@ La méthode suivante vide la sélection courante de la table *\[Clients\]* :
| | |
| --- | --- |
| Numéro de commande | 334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
index 18b603ef6d1f5e..929b247523580d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminStructure | Text | → | Chemin d'accès du fichier de structure à vérifier |
-| cheminDonnées | Text | → | Chemin d'accès du fichier de données 4D à vérifier |
+| cheminStructure | Text | → | Chemin d'accès du fichier de structure à vérifier |
+| cheminDonnées | Text | → | Chemin d'accès du fichier de données 4D à vérifier |
| Résultat | Object | ← | Informations sur le chiffrement du fichier de données et de chaque table |
@@ -74,6 +74,6 @@ Vous souhaitez connaitre le statut de chiffrement d'un fichier de données corre
| | |
| --- | --- |
| Numéro de commande | 1609 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
index f9775d2b54919f..a05ca754a22f4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
@@ -5,11 +5,11 @@ slug: /commands/data-file
displayed_sidebar: docs
---
-**Data file** {( *segment* )} : Text
+**Data file** ( *segment* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| segment | Integer | → | Obsolète, ne pas utiliser |
+| segment | Integer | → | Obsolète, ne pas utiliser |
| Résultat | Text | ← | Nom long du fichier de données de la base |
@@ -38,6 +38,6 @@ Si, par exemple, vous travaillez avec la base MesCDs qui se trouve dans le dossi
| | |
| --- | --- |
| Numéro de commande | 490 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
index 4c52ea04e3f935..92436bbd5a24d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
@@ -5,11 +5,11 @@ slug: /commands/database-measures
displayed_sidebar: docs
---
-**Database measures** {( *options* )} : Object
+**Database measures** ( *options* : Object ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| options | Object | → | Options de retour |
+| options | Object | → | Options de retour |
| Résultat | Object | ← | Objet contenant des mesures sur la base |
@@ -333,6 +333,6 @@ Vous souhaitez obtenir les mesures d'octets lus dans le cache au cours des deux
| | |
| --- | --- |
| Numéro de commande | 1314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md
index 395231cef38115..5b7a0d9ce4d5dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/date.md
@@ -5,11 +5,11 @@ slug: /commands/date
displayed_sidebar: docs
---
-**Date** ( *expression* ) : Date
+**Date** ( *expression* : Text, Date ) : Date
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expression | Text, Date | → | Chaîne contenant la date à retourner ou expression de type Date |
+| expression | Text, Date | → | Chaîne contenant la date à retourner ou expression de type Date |
| Résultat | Date | ← | Expression de type Date |
@@ -100,6 +100,6 @@ Vous souhaitez lire une date depuis un attribut d'objet, quelle que soit l'optio
| | |
| --- | --- |
| Numéro de commande | 102 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
index 5e94d1f189a4e7..65a3feabe73580 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
@@ -5,11 +5,11 @@ slug: /commands/day-number
displayed_sidebar: docs
---
-**Day number** ( *laDate* ) : Integer
+**Day number** ( *laDate* : Date ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laDate | Date | → | Date dont vous souhaitez connaître le numéro du jour |
+| laDate | Date | → | Date dont vous souhaitez connaître le numéro du jour |
| Résultat | Integer | ← | Numéro représentant le jour de la semaine auquel date correspond |
@@ -65,6 +65,6 @@ L'exemple suivant est une fonction qui retourne le jour d'aujourd'hui sous forme
| | |
| --- | --- |
| Numéro de commande | 114 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
index 2fcefed57bcda5..65883e7a753073 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
@@ -5,11 +5,11 @@ slug: /commands/day-of
displayed_sidebar: docs
---
-**Day of** ( *date* ) : Integer
+**Day of** ( *date* : Date ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| date | Date | → | Date dont vous voulez extraire le jour |
+| date | Date | → | Date dont vous voulez extraire le jour |
| Résultat | Integer | ← | Jour du mois de date |
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 23 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
index 266ccb2c6a0c7c..4348f457429cf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Deactivated** soit généré, vérifi
| | |
| --- | --- |
| Numéro de commande | 347 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
index b613b04df4b264..5f639320dd2c27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
@@ -5,11 +5,11 @@ slug: /commands/dec
displayed_sidebar: docs
---
-**Dec** ( *nombre* ) : Real
+**Dec** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Valeur dont voulez obtenir la partie décimale |
+| nombre | Real | → | Valeur dont voulez obtenir la partie décimale |
| Résultat | Real | ← | Partie décimale de nombre |
@@ -36,6 +36,6 @@ L'exemple suivant utilise une valeur monétaire exprimée sous forme numérique
| | |
| --- | --- |
| Numéro de commande | 9 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
index 4b71230e5574c2..41230d08a93d68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/decrypt-blob
displayed_sidebar: docs
---
-**DECRYPT BLOB** ( *aDécrypter* ; *cléPubEmetteur* {; *cléPrivRécepteur*} )
+**DECRYPT BLOB** ( *aDécrypter* : Blob ; *cléPubEmetteur* : Blob {; *cléPrivRécepteur* : Blob} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| aDécrypter | Blob | ↔ | Données à décrypter |
-| ||| Données décryptées |
-| cléPubEmetteur | Blob | → | Clé publique de l’émetteur |
-| cléPrivRécepteur | Blob | → | Clé privée du récepteur |
+| aDécrypter | Blob | ↔ | Données à décrypter |
+| | | | Données décryptées |
+| cléPubEmetteur | Blob | → | Clé publique de l’émetteur |
+| cléPrivRécepteur | Blob | → | Clé privée du récepteur |
@@ -41,6 +41,6 @@ Reportez-vous aux exemples de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 690 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
index 5275312b53f791..12722f60b1cc76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/decrypt-data-blob
displayed_sidebar: docs
---
-**Decrypt data BLOB** ( *blobToDecrypt* ; *keyObject* ; *salt* ; *decryptedBLOB* ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* ; *passPhrase* ; *salt* ; *decryptedBLOB* ) : Boolean
+**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *keyObject* : Objet, Texte ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *passPhrase* : Objet, Texte ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blobToDecrypt | Blob | → | BLOB à décrypter |
-| keyObject | passPhrase | Objet, Texte | → | Objet JSON contenant la clé de chiffrement ou le mot de passe pour générer directement une clé de chiffrement (texte) |
-| salt | Integer | → | Additional salt for algorithm |
+| blobToDecrypt | Blob | → | BLOB à décrypter |
+| keyObject | passPhrase | Objet, Texte | → | Objet JSON contenant la clé de chiffrement ou le mot de passe pour générer directement une clé de chiffrement (texte) |
+| salt | Integer | → | Additional salt for algorithm |
| decryptedBlob | Blob | ← | BLOB décrypté |
| Résultat | Boolean | ← | True si le déchiffrement a été effectué correctement. Sinon False |
@@ -64,6 +64,6 @@ Les paramètres *passPhrase* et le *salt* utilisés pour le déchiffrement sont
| | |
| --- | --- |
| Numéro de commande | 1774 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
index 65de92bcf7bb5e..103f04fd0664d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
@@ -5,11 +5,11 @@ slug: /commands/default-table
displayed_sidebar: docs
---
-**DEFAULT TABLE** ( *laTable* )
+**DEFAULT TABLE** ( *laTable* : Table )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à définir comme table par défaut |
+| laTable | Table | → | Table à définir comme table par défaut |
@@ -83,6 +83,6 @@ Voici le résultat lorsqu'une table par défaut est définie :
| | |
| --- | --- |
| Numéro de commande | 46 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
index 539e2862d395b3..b522cce5c8230e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
@@ -5,12 +5,12 @@ slug: /commands/delay-process
displayed_sidebar: docs
---
-**DELAY PROCESS** ( *process* ; *durée* )
+**DELAY PROCESS** ( *process* : Integer ; *durée* : Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de process |
-| durée | Real | → | Durée exprimée en ticks |
+| process | Integer | → | Numéro de process |
+| durée | Real | → | Durée exprimée en ticks |
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 323 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
index c264727a3649ce..5f73d6d85a1e24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
@@ -5,11 +5,11 @@ slug: /commands/delete-document
displayed_sidebar: docs
---
-**DELETE DOCUMENT** ( *nomFichier* )
+**DELETE DOCUMENT** ( *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom de document ou Chemin d'accès complet au document |
+| nomFichier | Text | → | Nom de document ou Chemin d'accès complet au document |
@@ -53,7 +53,7 @@ La suppression d'un document met la variable système OK à 1\. Si **DELETE DOCU
| | |
| --- | --- |
| Numéro de commande | 159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
index adc143df4615f9..2b772cd97cd7f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
@@ -5,12 +5,12 @@ slug: /commands/delete-folder
displayed_sidebar: docs
---
-**DELETE FOLDER** ( *dossier* {; *optionSuppression*} )
+**DELETE FOLDER** ( *dossier* : Text {; *optionSuppression* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dossier | Text | → | Nom ou chemin d’accès complet du dossier à supprimer |
-| optionSuppression | Integer | → | Option de suppression du dossier |
+| dossier | Text | → | Nom ou chemin d’accès complet du dossier à supprimer |
+| optionSuppression | Integer | → | Option de suppression du dossier |
@@ -48,7 +48,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode installée par
| | |
| --- | --- |
| Numéro de commande | 693 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
index fe2e8de7327560..74de907091bedf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-array
displayed_sidebar: docs
---
-**DELETE FROM ARRAY** ( *tableau* ; *positionDépart* {; *combien*} )
+**DELETE FROM ARRAY** ( *tableau* : Array ; *positionDépart* : Integer {; *combien* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau dans lequel supprimer des lignes |
-| positionDépart | Integer | → | Elément de départ de la suppression |
-| combien | Integer | → | Nombre d'éléments à supprimer ou 1 élément si ce paramètre est omis |
+| tableau | Array | → | Tableau dans lequel supprimer des lignes |
+| positionDépart | Integer | → | Elément de départ de la suppression |
+| combien | Integer | → | Nombre d'éléments à supprimer ou 1 élément si ce paramètre est omis |
@@ -50,6 +50,6 @@ L'exemple suivant supprime le dernier élément d'un tableau, s'il existe :
| | |
| --- | --- |
| Numéro de commande | 228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
index 31fe0d9adb1dbf..8d9a1f52a4f1ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-blob
displayed_sidebar: docs
---
-**DELETE FROM BLOB** ( *blob* ; *offset* ; *nombre* )
+**DELETE FROM BLOB** ( *blob* : Blob ; *offset* : Integer ; *nombre* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB duquel supprimer des octets |
-| offset | Integer | → | Offset à partir duquel supprimer les octets |
-| nombre | Integer | → | Nombre d'octets à supprimer |
+| Blob | Blob | → | BLOB duquel supprimer des octets |
+| offset | Integer | → | Offset à partir duquel supprimer les octets |
+| nombre | Integer | → | Nombre d'octets à supprimer |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 560 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
index 1ac23bda142378..4096bd9d68ee40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
@@ -5,14 +5,14 @@ slug: /commands/delete-from-list
displayed_sidebar: docs
---
-**DELETE FROM LIST** ( {* ;} *liste* ; réfElément {; *} )
**DELETE FROM LIST** ( * ; *liste* ; * {; *} )
+**DELETE FROM LIST** ( * ; *liste* : Text ; *réfElément* : Integer, Operator {; *} )
**DELETE FROM LIST** ( *liste* : Integer ; *réfElément* : Integer, Operator {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| réfElément | * | Entier long, Opérateur | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément de la liste actuellement sélectionné |
-| * | Operator | → | Si spécifié, effacer les sous-listes de la mémoire (le cas échéant) Si omis, ne pas effacer les sous-listes |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| réfElément | * | Entier long, Opérateur | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément de la liste actuellement sélectionné |
+| * | Operator | → | Si spécifié, effacer les sous-listes de la mémoire (le cas échéant) Si omis, ne pas effacer les sous-listes |
@@ -47,6 +47,6 @@ L'exemple suivant supprime l'élément sélectionné de la liste *hList*. Si une
| | |
| --- | --- |
| Numéro de commande | 624 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
index 7cfdc5338092c8..bdc2fd1cc88970 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
@@ -5,12 +5,12 @@ slug: /commands/delete-index
displayed_sidebar: docs
---
-**DELETE INDEX** ( *ptrChp* {; *} )
**DELETE INDEX** ( *nomIndex* {; *} )
+**DELETE INDEX** ( *ptrChp* : Pointeur, Chaîne {; *} )
**DELETE INDEX** ( *nomIndex* : Pointeur, Chaîne {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrChp | nomIndex | Pointeur, Chaîne | → | Pointeur vers le champ duquel supprimer les index ou Nom de l’index à supprimer |
-| * | Opérateur | → | Si passé = opération asynchrone |
+| ptrChp | nomIndex | Pointeur, Chaîne | → | Pointeur vers le champ duquel supprimer les index ou Nom de l’index à supprimer |
+| * | Opérateur | → | Si passé = opération asynchrone |
@@ -51,6 +51,6 @@ Cet exemple illustre les deux syntaxes de la commande :
| | |
| --- | --- |
| Numéro de commande | 967 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
index 19f32460d06af9..71c4b234615cec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/delete-menu-item
displayed_sidebar: docs
---
-**DELETE MENU ITEM** ( *menu* ; *ligneMenu* {; *process*} )
+**DELETE MENU ITEM** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence de process |
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **DELETE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 413 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
index 674594c4d72423..3e0b8e58a5c22e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
@@ -5,11 +5,11 @@ slug: /commands/delete-record
displayed_sidebar: docs
---
-**DELETE RECORD** {( *laTable* )}
+**DELETE RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle supprimer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle supprimer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -48,7 +48,7 @@ L'exemple suivant permet de supprimer l'enregistrement d'un employé. La méthod
| | |
| --- | --- |
| Numéro de commande | 58 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
index 289fb8c8b7dcbc..104d64a1bc4548 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
@@ -5,11 +5,11 @@ slug: /commands/delete-selection
displayed_sidebar: docs
---
-**DELETE SELECTION** {( *laTable* )}
+**DELETE SELECTION** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle supprimer la sélection courante ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle supprimer la sélection courante ou Table par défaut si ce paramètre est omis |
@@ -70,7 +70,7 @@ Lorsqu'un **DELETE SELECTION** rencontre un enregistrement verrouillé, celui-ci
| | |
| --- | --- |
| Numéro de commande | 66 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
index d8e4338ba407ab..e221315295a7c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
@@ -5,13 +5,13 @@ slug: /commands/delete-string
displayed_sidebar: docs
---
-**Delete string** ( *source* ; *positionDépart* ; *nbCars* ) : Text
+**Delete string** ( *source* : Text ; *positionDépart* : Integer ; *nbCars* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Chaîne de départ |
-| positionDépart | Integer | → | Premier caractère à supprimer |
-| nbCars | Integer | → | Nombre de caractères à supprimer |
+| source | Text | → | Chaîne de départ |
+| positionDépart | Integer | → | Premier caractère à supprimer |
+| nbCars | Integer | → | Nombre de caractères à supprimer |
| Résultat | Text | ← | Chaîne résultante |
@@ -49,6 +49,6 @@ L'exemple suivant illustre l'utilisation de **Delete string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
index 227e3966bc571a..431fe243abd10c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
@@ -5,11 +5,11 @@ slug: /commands/delete-user
displayed_sidebar: docs
---
-**DELETE USER** ( *réfUtilisateur* )
+**DELETE USER** ( *réfUtilisateur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfUtilisateur | Integer | → | Numéro d'identification de l'utilisateur à supprimer |
+| réfUtilisateur | Integer | → | Numéro d'identification de l'utilisateur à supprimer |
@@ -39,7 +39,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **DELETE USER** ou si u
| | |
| --- | --- |
| Numéro de commande | 615 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
index 5e898e1ce5c2a1..856b1922126666 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
@@ -5,11 +5,11 @@ slug: /commands/describe-query-execution
displayed_sidebar: docs
---
-**DESCRIBE QUERY EXECUTION** ( *statut* )
+**DESCRIBE QUERY EXECUTION** ( *statut* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| statut | Boolean | → | Vrai=Enregistrer la description des requêtes, Faux=Stopper l'enregistrement |
+| statut | Boolean | → | Vrai=Enregistrer la description des requêtes, Faux=Stopper l'enregistrement |
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Numéro de commande | 1044 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
index 8c45b00f8d9c51..e7287b42a44dd0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
@@ -5,13 +5,13 @@ slug: /commands/difference
displayed_sidebar: docs
---
-**DIFFERENCE** ( *ensemble1* ; *ensemble2* ; *résultat* )
+**DIFFERENCE** ( *ensemble1* : Text ; *ensemble2* : Text ; *résultat* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble1 | Text | → | Ensemble initial |
-| ensemble2 | Text | → | Ensemble à exclure |
-| résultat | Text | → | Ensemble résultant |
+| ensemble1 | Text | → | Ensemble initial |
+| ensemble2 | Text | → | Ensemble à exclure |
+| résultat | Text | → | Ensemble résultant |
@@ -61,6 +61,6 @@ Un bouton associé à une méthode objet est placé en bas de la liste. La méth
| | |
| --- | --- |
| Numéro de commande | 122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
index fa48c5b1cd63f4..08f762d4f652ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/disable-menu-item
displayed_sidebar: docs
---
-**DISABLE MENU ITEM** ( *menu* ; *ligneMenu* {; *process*} )
+**DISABLE MENU ITEM** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence du process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence du process |
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **DISABLE MENU ITEM** s'applique à la
| | |
| --- | --- |
| Numéro de commande | 150 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
index 5fea37fdb8f54e..6d28df1c5d9735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Les fichiers de clés (fichiers d'extension ".4DKeyChain") doivent être stocké
| | |
| --- | --- |
| Numéro de commande | 1639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
index 8ad4bae75caa5b..fb7f58af24f34c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
@@ -5,13 +5,13 @@ slug: /commands/display-notification
displayed_sidebar: docs
---
-**DISPLAY NOTIFICATION** ( *titre* ; *contenu* {; *durée*} )
+**DISPLAY NOTIFICATION** ( *titre* : Text ; *contenu* : Text {; *durée* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| titre | Text | → | Titre de la notification |
-| contenu | Text | → | Texte de la notification |
-| durée | Integer | → | Délai d’affichage en secondes |
+| titre | Text | → | Titre de la notification |
+| contenu | Text | → | Texte de la notification |
+| durée | Integer | → | Délai d’affichage en secondes |
@@ -46,6 +46,6 @@ Sous Windows, la fenêtre du message reste affichée tant qu'aucune activité n'
| | |
| --- | --- |
| Numéro de commande | 910 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
index c72733373efb24..c70fd842236396 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
@@ -5,11 +5,11 @@ slug: /commands/display-record
displayed_sidebar: docs
---
-**DISPLAY RECORD** {( *laTable* )}
+**DISPLAY RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle afficher l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle afficher l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -44,6 +44,6 @@ L'exemple suivant affiche une série d'enregistrements sous forme de slide show
| | |
| --- | --- |
| Numéro de commande | 105 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
index 57f3d4a194ebf5..1ba3904150edfe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
@@ -5,15 +5,16 @@ slug: /commands/display-selection
displayed_sidebar: docs
---
-**DISPLAY SELECTION** ( {*laTable*}{; *modeSélection*}{; *saisieListe*}{; *}{; *} )
+**DISPLAY SELECTION** ( {*laTable* : Table}{; *modeSélection* : Integer}{; *saisieListe* : Boolean}{; *})
**DISPLAY SELECTION** ( {*laTable* : Table}{; *modeSélection* : Integer}{; *saisieListe* : Boolean} ; * {; *} )
+
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à laquelle appartient la sélection ou Table par défaut si ce paramètre est omis |
-| modeSélection | Integer | → | Mode de sélection |
-| saisieListe | Boolean | → | Autoriser saisie en liste |
-| * | Operator | → | Utiliser le formulaire sortie en cas de sélection d'un seul enregistrement et masquer les barres de défilement dans le formulaire entrée |
-| * | Operator | → | Afficher les barres de défilement dans le formulaire entrée (= annuler le second effet du premier paramètre *) |
+| laTable | Table | → | Table à laquelle appartient la sélection ou Table par défaut si ce paramètre est omis |
+| modeSélection | Integer | → | Mode de sélection |
+| saisieListe | Boolean | → | Autoriser saisie en liste |
+| * | Operator | → | Utiliser le formulaire sortie en cas de sélection d'un seul enregistrement et masquer les barres de défilement dans le formulaire entrée |
+| * | Operator | → | Afficher les barres de défilement dans le formulaire entrée (= annuler le second effet du premier paramètre *) |
@@ -98,7 +99,7 @@ Vous pouvez aussi utiliser d'autres commandes telles que [PRINT SELECTION](print
| | |
| --- | --- |
| Numéro de commande | 59 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
index c83de8de70d376..154355999bb484 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Cet exemple permet d’appliquer une couleur alternée à un formulaire liste af
| | |
| --- | --- |
| Numéro de commande | 897 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
index 46bf8a6a0e9170..8092314cdc8122 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
@@ -5,11 +5,11 @@ slug: /commands/distinct-attribute-paths
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE PATHS** ( *champObjet* ; *tabChemins* )
+**DISTINCT ATTRIBUTE PATHS** ( *champObjet* : Field ; *tabChemins* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champObjet | Field | → | Champ objet indexé |
+| champObjet | Field | → | Champ objet indexé |
| tabChemins | Text array | ← | Tableau devant recevoir les chemins d'attributs du champ |
@@ -75,6 +75,6 @@ Le tableau *aTPaths* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
index e3af90c11f1e1c..ab3110fe475cc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-attribute-values
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE VALUES** ( *champObjet* ; *cheminAttribut* ; *tabValeurs* )
+**DISTINCT ATTRIBUTE VALUES** ( *champObjet* : Field ; *cheminAttribut* : Text ; *tabValeurs* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champObjet | Field | → | Champ objet à utiliser |
-| cheminAttribut | Text | → | Nom ou chemin de l'attribut dont vous voulez obtenir les valeurs distinctes |
-| tabValeurs | Text array, Integer array, Boolean array, Date array, Time array | ← | Tableau des valeurs distinctes dans l'attribut |
+| champObjet | Field | → | Champ objet à utiliser |
+| cheminAttribut | Text | → | Nom ou chemin de l'attribut dont vous voulez obtenir les valeurs distinctes |
+| tabValeurs | Array | ← | Tableau des valeurs distinctes dans l'attribut |
@@ -101,6 +101,6 @@ Le tableau *aLChildNum* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
index f3a65ed11e8cbe..105fd6ba611d16 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-values
displayed_sidebar: docs
---
-**DISTINCT VALUES** ( *leChamp* ; *tableau* {; *tabNbVal*} )
+**DISTINCT VALUES** ( *leChamp* ; *tableau* : Array {; *tabNbVal* : Integer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ à utiliser |
+| leField | Field | → | Champ à utiliser |
| tableau | Array | ← | Tableau devant recevoir les données du champ indexable |
-| tabNbVal | Integer array, Real array | ← | Tableau devant recevoir le nombre d'occurrences de chaque valeur |
+| tabNbVal | Integer array | ← | Tableau devant recevoir le nombre d'occurrences de chaque valeur |
@@ -86,6 +86,6 @@ Pour calculer des statistiques, vous voulez trier le nombre de valeurs distincte
| | |
| --- | --- |
| Numéro de commande | 339 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
index a731f34d2bb7fa..fbd17b1431314e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
@@ -5,13 +5,13 @@ slug: /commands/document-list
displayed_sidebar: docs
---
-**DOCUMENT LIST** ( *cheminAccès* ; *documents* {; *options*} )
+**DOCUMENT LIST** ( *cheminAccès* : Text ; *documents* : Text array {; *options* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Chemin d'accès de volume ou de dossier |
+| cheminAccès | Text | → | Chemin d'accès de volume ou de dossier |
| documents | Text array | ← | Nom des documents situés à cet endroit |
-| options | Integer | → | Options de construction de la liste |
+| options | Integer | → | Options de construction de la liste |
@@ -119,7 +119,7 @@ Liste de tous les documents en mode récursif POSIX (relatif) :
| | |
| --- | --- |
| Numéro de commande | 474 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
index c5b15bc3ac8037..dd59b4485516fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-blob
displayed_sidebar: docs
---
-**DOCUMENT TO BLOB** ( *document* ; *blob* )
+**DOCUMENT TO BLOB** ( *document* : Text ; *blob* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Text | → | Nom du document |
-| blob | Blob | ↔ | Champ ou variable de type BLOB devant recevoir le document |
-||| | Contenu du document |
+| document | Text | → | Nom du document |
+| Blob | Blob | ↔ | Champ ou variable de type BLOB devant recevoir le document |
+| | | | Contenu du document |
@@ -56,7 +56,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
index a950413ef1d6a8..ff658666b94c4a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-text
displayed_sidebar: docs
---
-**Document to text** ( *nomFichier* {; *jeuCaractères* {; *modeRetour*}} ) : Text
+**Document to text** ( *nomFichier* : Text {; *jeuCaractères* : Text, Integer {; *modeRetour* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom de document ou Chemin d'accès à un document |
-| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
-| modeRetour | Integer | → | Mode de traitement des retours à la ligne |
+| nomFichier | Text | → | Nom de document ou Chemin d'accès à un document |
+| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
+| modeRetour | Integer | → | Mode de traitement des retours à la ligne |
| Résultat | Text | ← | Texte issu du document |
@@ -83,6 +83,6 @@ Si vous exécutez ce code :
| | |
| --- | --- |
| Numéro de commande | 1236 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
index fe25a3271196bd..4270011cca9d54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
@@ -5,13 +5,13 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---
-**DOM Append XML child node** ( *refElément* ; *typeEnfant* ; *valeurEnfant* ) : Text
+**DOM Append XML child node** ( *refElément* : Text ; *typeEnfant* : Integer ; *valeurEnfant* : Text, Blob ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| typeEnfant | Integer | → | Type d’enfant à ajouter |
-| valeurEnfant | Text, Blob | → | Texte ou variable (Texte ou BLOB) dont la valeur doit être insérée en tant que noeud enfant |
+| refElément | Text | → | Référence d’élément XML |
+| typeEnfant | Integer | → | Type d’enfant à ajouter |
+| valeurEnfant | Text, Blob | → | Texte ou variable (Texte ou BLOB) dont la valeur doit être insérée en tant que noeud enfant |
| Résultat | Text | ← | Référence de l’élément XML enfant |
@@ -151,6 +151,6 @@ Si le contenu de *valeurEnfant* est invalide, une erreur est retournée.
| | |
| --- | --- |
| Numéro de commande | 1080 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
index 907889822ff242..816b26d0d520ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-append-xml-element
displayed_sidebar: docs
---
-**DOM Append XML element** ( *refElémentCible* ; *refElémentSource* ) : Text
+**DOM Append XML element** ( *refElémentCible* : Text ; *refElémentSource* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElémentCible | Text | → | Référence de l’élément XML parent |
-| refElémentSource | Text | → | Référence de l’élément XML à ajouter |
+| refElémentCible | Text | → | Référence de l’élément XML parent |
+| refElémentSource | Text | → | Référence de l’élément XML à ajouter |
| Résultat | Text | ← | Référence du nouvel élément XML |
@@ -34,6 +34,6 @@ Voir l’exemple de la commande [DOM Insert XML element](dom-insert-xml-element.
| | |
| --- | --- |
| Numéro de commande | 1082 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
index 25f8a09d6eff57..5cb31d7f398d64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
@@ -5,11 +5,11 @@ slug: /commands/dom-close-xml
displayed_sidebar: docs
---
-**DOM CLOSE XML** ( *refElément* )
+**DOM CLOSE XML** ( *refElément* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
+| refElément | Text | → | Référence d’élément XML racine |
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 722 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
index 18cee9814b3916..efa6caf74bfa83 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-count-xml-attributes
displayed_sidebar: docs
---
-**DOM Count XML attributes** ( *refElément* ) : Integer
+**DOM Count XML attributes** ( *refElément* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| Résultat | Integer | ← | Nombre d’attributs |
@@ -58,7 +58,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 727 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
index 53c391c6324675..977178d3c471eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
@@ -5,12 +5,12 @@ slug: /commands/dom-count-xml-elements
displayed_sidebar: docs
---
-**DOM Count XML elements** ( *refElément* ; *nomElément* ) : Integer
+**DOM Count XML elements** ( *refElément* : Text ; *nomElément* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomElément | Text | → | Nom d'éléments XML à compter |
+| refElément | Text | → | Référence d’élément XML |
+| nomElément | Text | → | Nom d'éléments XML à compter |
| Résultat | Integer | ← | Nombre d’éléments |
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 726 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
index cbb7908d560773..e8196d1b715dcd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element-arrays
displayed_sidebar: docs
---
-**DOM Create XML element arrays** ( *refElément* ; *xChemin* {; *tabNomsAttributs* ; *tabValeursAttributs*} {; *tabNomsAttributs2* ; *tabValeursAttributs2* ; ... ; *tabNomsAttributsN* ; *tabValeursAttributsN*} ) : Text
+**DOM Create XML element arrays** ( *refElément* : Text ; *xChemin* : Text {; *tabNomsAttributs* : Text array ; *tabValeursAttributs* : Text array} {; ...(*tabNomsAttributs* : Text array, *tabValeursAttributs* : Text array)} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
-| xChemin | Text | → | Chemin XPath de l’élément XML à créer |
-| tabNomsAttributs | Text array | → | Tableau de noms d’attributs |
-| tabValeursAttributs | Text array | → | Tableau de valeurs d’attributs |
+| refElément | Text | → | Référence d’élément XML racine |
+| xChemin | Text | → | Chemin XPath de l’élément XML à créer |
+| tabNomsAttributs | Text array | → | Tableau de noms d’attributs |
+| tabValeursAttributs | Text array | → | Tableau de valeurs d’attributs |
| Résultat | Text | ← | Référence de l'élément XML créé |
@@ -67,6 +67,6 @@ Pour cela, il suffit d'écrire :
| | |
| --- | --- |
| Numéro de commande | 1097 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
index 22ba096c5d5f99..54d5c122ace2fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element
displayed_sidebar: docs
---
-**DOM Create XML element** ( *refElément* ; *xPath* {; *nomAttribut* ; *valeurAttribut*} {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} ) : Text
+**DOM Create XML element** ( *refElément* : Text ; *xPath* : Text {; *nomAttribut* : Text ; *valeurAttribut* : Text, Boolean, Integer, Real, Time, Date} {; ...(*nomAttribut* : Text, *valeurAttribut* : Text, Boolean, Integer, Real, Time, Date)} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
-| xPath | Text | → | Chemin XPath de l’élément XML à créer |
-| nomAttribut | Text | → | Attribut à définir |
-| valeurAttribut | Text, Boolean, Integer, Real, Time, Date | → | Nouvelle valeur d’attribut |
+| refElément | Text | → | Référence d’élément XML racine |
+| xPath | Text | → | Chemin XPath de l’élément XML à créer |
+| nomAttribut | Text | → | Attribut à définir |
+| valeurAttribut | Text, Boolean, Integer, Real, Time, Date | → | Nouvelle valeur d’attribut |
| Résultat | Text | ← | Référence de l’élément XML créé |
@@ -157,7 +157,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 865 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
index 7daa0a35ad1f25..464250bfd6cf74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-ref
displayed_sidebar: docs
---
-**DOM Create XML Ref** ( *racine* {; *nameSpace*} {; *nSNom* ; *nSValeur*} {; *nSNom2* ; *nSValeur2* ; ... ; *nSNomN* ; *nSValeurN*} ) : Text
+**DOM Create XML Ref** ( *racine* : Text {; *nameSpace* : Text} {; *nSNom* : Text ; *nSValeur* : Text} {; ...(*nSNom* : Text, *nSValeur* : Text)} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| racine | Text | → | Nom de l’élément racine |
-| nameSpace | Text | → | Valeur de l’espace de nommage (Namespace) |
-| nSNom | Text | → | Nom d’espace de nommage |
-| nSValeur | Text | → | Valeur d’espace de nommage |
+| racine | Text | → | Nom de l’élément racine |
+| nameSpace | Text | → | Valeur de l’espace de nommage (Namespace) |
+| nSNom | Text | → | Nom d’espace de nommage |
+| nSValeur | Text | → | Valeur d’espace de nommage |
| Résultat | Text | ← | Référence de l’élément XML racine |
@@ -103,7 +103,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 861 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
index b012ac2039f92d..bb224b300f49ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
@@ -5,12 +5,12 @@ slug: /commands/dom-export-to-file
displayed_sidebar: docs
---
-**DOM EXPORT TO FILE** ( *refElément* ; *cheminFichier* )
+**DOM EXPORT TO FILE** ( *refElément* : Text ; *cheminFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
-| cheminFichier | Text | → | Chemin d’accès complet du fichier |
+| refElément | Text | → | Référence d’élément XML racine |
+| cheminFichier | Text | → | Chemin d’accès complet du fichier |
@@ -67,7 +67,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 862 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
index d8c701c3595602..fea932448071e1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
@@ -5,11 +5,11 @@ slug: /commands/dom-export-to-var
displayed_sidebar: docs
---
-**DOM EXPORT TO VAR** ( *refElément* ; *vVarXml* )
+**DOM EXPORT TO VAR** ( *refElément* : Text ; *vVarXml* : Text, Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
+| refElément | Text | → | Référence d’élément XML racine |
| vVarXml | Text, Blob | ← | Variable devant recevoir l’arbre XML |
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 863 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
index ea9a0b9d4b083f..0e4bcdc005ef0c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element-by-id
displayed_sidebar: docs
---
-**DOM Find XML element by ID** ( *refElément* ; *id* ) : Text
+**DOM Find XML element by ID** ( *refElément* : Text ; *id* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| id | Text | → | Valeur de l’attribut ID de l’élément à chercher |
+| refElément | Text | → | Référence d’élément XML |
+| id | Text | → | Valeur de l’attribut ID de l’élément à chercher |
| Résultat | Text | ← | Référence de l’élément trouvé (le cas échéant) |
@@ -34,7 +34,7 @@ La commande retourne en résultat la référence XML de l’élément trouvé.
| | |
| --- | --- |
| Numéro de commande | 1010 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
index 8c8f1083a572f9..1c4e1a06fc81be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element
displayed_sidebar: docs
---
-**DOM Find XML element** ( *refElément* ; *xPath* {; *tabRefEléments*} ) : Text
+**DOM Find XML element** ( *refElément* : Text ; *xPath* : Text {; *tabRefEléments* : Text array} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| xPath | Text | → | Chemin XPath de l’élément à chercher |
+| refElément | Text | → | Référence d’élément XML |
+| xPath | Text | → | Chemin XPath de l’élément à chercher |
| tabRefEléments | Text array | ← | Liste des références d’éléments trouvés (le cas échéant) |
| Résultat | Text | ← | Référence de l’élément trouvé (le cas échéant) |
@@ -122,7 +122,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 864 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
index 46e5d9edd08eb8..e16588fabc8d6c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-first-child-xml-element
displayed_sidebar: docs
---
-**DOM Get first child XML element** ( *refElément* {; *nomElémentEnf* {; *valeurElémentEnf*}} ) : Text
+**DOM Get first child XML element** ( *refElément* : Text {; *nomElémentEnf* : Text {; *valeurElémentEnf* : Text}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElémentEnf | Text | ← | Nom de l'élément XML enfant |
| valeurElémentEnf | Text | ← | Valeur de l'élément XML enfant |
| Résultat | Text | ← | Référence de l’élément XML enfant |
@@ -64,7 +64,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 723 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
index 8aac12202e8e70..aaf0b072cc8cfc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-last-child-xml-element
displayed_sidebar: docs
---
-**DOM Get last child XML element** ( *refElément* {; *nomElémentEnf* {; *valeurElémentEnf*}} ) : Text
+**DOM Get last child XML element** ( *refElément* : Text {; *nomElémentEnf* : Text {; *valeurElémentEnf* : Text}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElémentEnf | Text | ← | Nom de l’élément enfant |
| valeurElémentEnf | Text | ← | Valeur de l’élément enfant |
| Résultat | Text | ← | Référence de l’élément XML |
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 925 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
index 4f87db782b2006..e9720c3724e10d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-next-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get next sibling XML element** ( *refElément* {; *nomElémentFrère* {; *valeurElémentFrère*}} ) : Text
+**DOM Get next sibling XML element** ( *refElément* : Text {; *nomElémentFrère* : Text {; *valeurElémentFrère* : Text}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElémentFrère | Text | ← | Nom de l'élément XML frère |
| valeurElémentFrère | Text | ← | Valeur de l'élément XML frère |
| Résultat | Text | ← | Référence de l’élément XML frère |
@@ -67,7 +67,7 @@ Si la commande a été correctement exécutée et si l’élément analysé n’
| | |
| --- | --- |
| Numéro de commande | 724 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
index ac0f44c96e7e61..89343270c958ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-parent-xml-element
displayed_sidebar: docs
---
-**DOM Get parent XML element** ( *refElément* {; *nomElémentPar* {; *valeurElémentPar*}} ) : Text
+**DOM Get parent XML element** ( *refElément* : Text {; *nomElémentPar* : Text {; *valeurElémentPar* : Text}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElémentPar | Text | ← | Nom de l’élément XML parent |
| valeurElémentPar | Text | ← | Valeur de l’élément XML parent |
| Résultat | Text | ← | Référence de l’élément XML parent |
@@ -40,7 +40,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 923 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
index 0e141f2cf57f4b..c0d27128425864 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-previous-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get previous sibling XML element** ( *refElément* {; *nomElémentFrère* {; *valeurElémentFrère*}} ) : Text
+**DOM Get previous sibling XML element** ( *refElément* : Text {; *nomElémentFrère* : Text {; *valeurElémentFrère* : Text}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElémentFrère | Text | ← | Nom de l’élément XML frère |
| valeurElémentFrère | Text | ← | Valeur de l’élément XML frère |
| Résultat | Text | ← | Référence de l’élément XML frère |
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée et si l’élément référencé
| | |
| --- | --- |
| Numéro de commande | 924 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
index a517534eae92ec..90411d8fce1613 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-root-xml-element
displayed_sidebar: docs
---
-**DOM Get root XML element** ( *refElément* ) : Text
+**DOM Get root XML element** ( *refElément* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| Résultat | Text | ← | Référence de l’élément racine ou "" en cas d’erreur |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1053 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
index 36532cdd394fe7..788f96082b5c5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-index
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY INDEX** ( *refElément* ; *indexAttribut* ; *nomAttribut* ; *valeurAttribut* )
+**DOM GET XML ATTRIBUTE BY INDEX** ( *refElément* : Text ; *indexAttribut* : Integer ; *nomAttribut* : Variable ; *valeurAttribut* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| indexAttribut | Integer | → | Numéro d’indice de l’attribut |
+| refElément | Text | → | Référence d’élément XML |
+| indexAttribut | Integer | → | Numéro d’indice de l’attribut |
| nomAttribut | Variable | ← | Nom de l’attribut |
| valeurAttribut | Variable | ← | Valeur de l’attribut |
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 729 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
index ac58cfb820b7af..389888ea6bc6b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-name
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY NAME** ( *refElément* ; *nomAttribut* ; *valeurAttribut* )
+**DOM GET XML ATTRIBUTE BY NAME** ( *refElément* : Text ; *nomAttribut* : Text ; *valeurAttribut* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomAttribut | Text | → | Nom d’attribut |
+| refElément | Text | → | Référence d’élément XML |
+| nomAttribut | Text | → | Nom d’attribut |
| valeurAttribut | Variable | ← | Valeur de l’attribut |
@@ -55,7 +55,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 728 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
index 7101b4091f05bb..f9cdd958d09f8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-child-nodes
displayed_sidebar: docs
---
-**DOM GET XML CHILD NODES** ( *refElément* ; *tabTypesEnfants* ; *tabRefsNoeuds* )
+**DOM GET XML CHILD NODES** ( *refElément* : Text ; *tabTypesEnfants* : Integer array ; *tabRefsNoeuds* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| tabTypesEnfants | Integer array | ← | Types des noeuds enfants |
| tabRefsNoeuds | Text array | ← | Références ou Valeurs des noeuds enfants |
@@ -68,6 +68,6 @@ Après l’exécution de ces instructions :
| | |
| --- | --- |
| Numéro de commande | 1081 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
index e4cb3ba66043b9..60790c557ce8ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-document-ref
displayed_sidebar: docs
---
-**DOM Get XML document ref** ( *refElément* ) : Text
+**DOM Get XML document ref** ( *refElément* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’un élément existant dans un arbre DOM |
+| refElément | Text | → | Référence d’un élément existant dans un arbre DOM |
| Résultat | Text | ← | Référence du premier élément de l'arbre DOM (noeud document) |
@@ -59,6 +59,6 @@ Dans cet exemple nous cherchons à retrouver la déclaration de DTD du document
| | |
| --- | --- |
| Numéro de commande | 1088 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
index a35de86e71ac7d..22e4d494c51548 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-name
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT NAME** ( *refElément* ; *nomElément* )
+**DOM GET XML ELEMENT NAME** ( *refElément* : Text ; *nomElément* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| nomElément | Variable | ← | Nom de l’élément |
@@ -46,7 +46,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
index b20df8c88c7d70..592dffbd6bcf4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-value
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT VALUE** ( *refElément* ; *valeurElément* {; *cDATA*} )
+**DOM GET XML ELEMENT VALUE** ( *refElément* : Text ; *valeurElément* : Variable {; *cDATA* : Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| valeurElément | Variable | ← | Valeur de l’élément |
| cDATA | Variable | ← | Contenu de la section CDATA |
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
index d7619b9e3801f3..ee49259904b06c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-get-xml-element
displayed_sidebar: docs
---
-**DOM Get XML element** ( *refElément* ; *nomElément* ; *indice* ; *valeurElément* ) : Text
+**DOM Get XML element** ( *refElément* : Text ; *nomElément* : Text ; *indice* : Integer ; *valeurElément* : Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomElément | Text | → | Nom de l’élément à lire |
-| indice | Integer | → | Numéro d’indice de l’élément à lire |
+| refElément | Text | → | Référence d’élément XML |
+| nomElément | Text | → | Nom de l’élément à lire |
+| indice | Integer | → | Numéro d’indice de l’élément à lire |
| valeurElément | Variable | ← | Valeur de l’élément |
| Résultat | Text | ← | Référence de l’élément XML (16 caractères) |
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 725 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
index 2de51fe7e5692f..34ee42bd16f264 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-information
displayed_sidebar: docs
---
-**DOM Get XML information** ( *refElément* ; *infoXML* ) : Text
+**DOM Get XML information** ( *refElément* : Text ; *infoXML* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
-| infoXML | Integer | → | Type d’information à lire |
+| refElément | Text | → | Référence d’élément XML racine |
+| infoXML | Integer | → | Type d’information à lire |
| Résultat | Text | ← | Valeur de l’information XML |
@@ -39,6 +39,6 @@ Passez dans *infoXML* un code indiquant le type d’information à récupérer.
| | |
| --- | --- |
| Numéro de commande | 721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
index 47d7d131785673..e2a8a9d23c0cf3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-insert-xml-element
displayed_sidebar: docs
---
-**DOM Insert XML element** ( *refElémentCible* ; *refElémentSource* ; *indexEnfant* ) : Text
+**DOM Insert XML element** ( *refElémentCible* : Text ; *refElémentSource* : Text ; *indexEnfant* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElémentCible | Text | → | Référence de l’élément XML parent |
-| refElémentSource | Text | → | Référence de l’élément XML à insérer |
-| indexEnfant | Integer | → | Index de l’enfant de l’élément cible avant lequel le nouvel élément doit être inséré |
+| refElémentCible | Text | → | Référence de l’élément XML parent |
+| refElémentSource | Text | → | Référence de l’élément XML à insérer |
+| indexEnfant | Integer | → | Index de l’enfant de l’élément cible avant lequel le nouvel élément doit être inséré |
| Résultat | Text | ← | Référence du nouvel élément XML |
@@ -80,6 +80,6 @@ Pour cela, il suffit d’exécuter le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1083 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
index 253891753b2910..ad7c50edf4f3a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-source
displayed_sidebar: docs
---
-**DOM Parse XML source** ( *nomFichier* {; *validation* {; *dtd* }} ) : Text
**DOM Parse XML source** ( *nomFichier* {; *validation* {; *schéma* }} ) : Text
+**DOM Parse XML source** ( *nomFichier* : Text {; *validation* : Boolean {; *dtd* : Chaîne }} ) : Text
**DOM Parse XML source** ( *nomFichier* : Text {; *validation* : Boolean {; *schéma* : Chaîne }} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Chemin d’accès du document |
-| validation | Boolean | → | Vrai = Validation, Faux = Pas de validation |
-| dtd | schéma | Chaîne | → | Emplacement de la DTD ou du schéma XML |
+| nomFichier | Text | → | Chemin d’accès du document |
+| validation | Boolean | → | Vrai = Validation, Faux = Pas de validation |
+| dtd | schéma | Chaîne | → | Emplacement de la DTD ou du schéma XML |
| Résultat | Text | ← | Référence de l’élément XML |
@@ -99,7 +99,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 719 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
index a73fcee004e9f4..bede40d9b031df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-variable
displayed_sidebar: docs
---
-**DOM Parse XML variable** ( *variable* {; *validation* {; *dtd* } ) : Text
**DOM Parse XML variable** ( *variable* {; *validation* {; *schéma* }} ) : Text
+**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *dtd* : Chaîne } ) : Text
**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *schéma* : Chaîne }} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| variable | Blob, Text | → | Nom de la variable |
-| validation | Boolean | → | Vrai = Validation, Faux = Pas de validation |
-| dtd | schéma | Chaîne | → | Emplacement de la DTD ou du schéma XML |
+| variable | Blob, Text | → | Nom de la variable |
+| validation | Boolean | → | Vrai = Validation, Faux = Pas de validation |
+| dtd | schéma | Chaîne | → | Emplacement de la DTD ou du schéma XML |
| Résultat | Text | ← | Référence de l’élément XML |
@@ -89,7 +89,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 720 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
index af088c5cd9bca7..1f9e30388de0ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
@@ -5,12 +5,12 @@ slug: /commands/dom-remove-xml-attribute
displayed_sidebar: docs
---
-**DOM REMOVE XML ATTRIBUTE** ( *refElément* ; *nomAttribut* )
+**DOM REMOVE XML ATTRIBUTE** ( *refElément* : Text ; *nomAttribut* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomAttribut | Text | → | Attribut à supprimer |
+| refElément | Text | → | Référence d’élément XML |
+| nomAttribut | Text | → | Attribut à supprimer |
@@ -50,7 +50,7 @@ Le code suivant permet de supprimer le premier attribut "N=1" :
| | |
| --- | --- |
| Numéro de commande | 1084 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
index e692974c001833..bfe49d07bfe9ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-remove-xml-element
displayed_sidebar: docs
---
-**DOM REMOVE XML ELEMENT** ( *refElément* )
+**DOM REMOVE XML ELEMENT** ( *refElément* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
@@ -32,7 +32,7 @@ Une erreur est générée lorsque la référence de l’élément n’est pas va
| | |
| --- | --- |
| Numéro de commande | 869 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
index 199a00722e4a44..a601025f3e0727 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/dom-set-xml-attribute
displayed_sidebar: docs
---
-**DOM SET XML ATTRIBUTE** ( *refElément* ; *nomAttribut* ; *valeurAttribut* {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} )
+**DOM SET XML ATTRIBUTE** ( *refElément* : Text ; *nomAttribut* : Text ; *valeurAttribut* : Text, Boolean, Integer, Real, Time, Date {; ...(*nomAttribut* : Text, *valeurAttribut* : Text, Boolean, Integer, Real, Time, Date)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomAttribut | Text | → | Attribut à définir |
-| valeurAttribut | Text, Boolean, Integer, Real, Time, Date | → | Nouvelle valeur d’attribut |
+| refElément | Text | → | Référence d’élément XML |
+| nomAttribut | Text | → | Attribut à définir |
+| valeurAttribut | Text, Boolean, Integer, Real, Time, Date | → | Nouvelle valeur d’attribut |
@@ -72,7 +72,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 866 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
index 1fb54af71f93f8..483d24f9ded743 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-declaration
displayed_sidebar: docs
---
-**DOM SET XML DECLARATION** ( *refElément* ; *encodage* {; *autonome* {; *indentation*}} )
+**DOM SET XML DECLARATION** ( *refElément* : Text ; *encodage* : Text {; *autonome* : Boolean {; *indentation* : Boolean}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| encodage | Text | → | Jeu de caractères du document XML |
-| autonome | Boolean | → | Vrai=le document est autonome Faux (défaut)=le document n’est pas autonome |
-| indentation | Boolean | → | *** Obsolète, ne plus utiliser *** |
+| refElément | Text | → | Référence d’élément XML |
+| encodage | Text | → | Jeu de caractères du document XML |
+| autonome | Boolean | → | Vrai=le document est autonome Faux (défaut)=le document n’est pas autonome |
+| indentation | Boolean | → | *** Obsolète, ne plus utiliser *** |
@@ -44,6 +44,6 @@ Cet exemple définit l’encodage et l’option standalone de l’élément *ref
| | |
| --- | --- |
| Numéro de commande | 859 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
index 34602d8ff16db4..0f0529f0dad6c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-set-xml-element-name
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT NAME** ( *refElément* ; *nomElément* )
+**DOM SET XML ELEMENT NAME** ( *refElément* : Text ; *nomElément* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| nomElément | Text | → | Nouveau nom de l’élément |
+| refElément | Text | → | Référence d’élément XML |
+| nomElément | Text | → | Nouveau nom de l’élément |
@@ -64,7 +64,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 867 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
index a64d1ddb7c3a21..8cf754739c0ab0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-element-value
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT VALUE** ( *refElément* {; *xPath*}; *valeurElément* {; *} )
+**DOM SET XML ELEMENT VALUE** ( *refElément* : Text {; *xPath* : Text}; *valeurElément* : Text, Variable {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
-| xPath | Text | → | Chemin XPath de l’élément XML |
-| valeurElément | Text, Variable | → | Nouvelle valeur de l’élément |
-| * | Opérateur | → | Si passé : définir la valeur en CDATA |
+| refElément | Text | → | Référence d’élément XML |
+| xPath | Text | → | Chemin XPath de l’élément XML |
+| valeurElément | Text, Variable | → | Nouvelle valeur de l’élément |
+| * | Opérateur | → | Si passé : définir la valeur en CDATA |
@@ -122,7 +122,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 868 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
index 5d5417e83c3433..71cbacad9137f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Vous pouvez la déplacer en cliquant sur les bordures.
| | |
| --- | --- |
| Numéro de commande | 452 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
index 115e95f47559a1..3aad7443939a4e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
@@ -5,7 +5,7 @@ slug: /commands/drop-position
displayed_sidebar: docs
---
-**Drop position** {( *numColonne* )} : Integer
**Drop position** {( *posYImage* )} : Integer
+**Drop position** ( *numColonne* : Integer ) : Integer
**Drop position** ( *posYImage* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -97,6 +97,6 @@ La méthode objet de la list box de gauche (destination) contient le code suivan
| | |
| --- | --- |
| Numéro de commande | 608 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
index 1c48ddd739a18f..8d0f8b50595cf5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
@@ -5,11 +5,11 @@ slug: /commands/drop-remote-user
displayed_sidebar: docs
---
-**DROP REMOTE USER** ( *sessionUtilisateur* )
+**DROP REMOTE USER** ( *sessionUtilisateur* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sessionUtilisateur | Text | → | ID de la session de l'utilisateur |
+| sessionUtilisateur | Text | → | ID de la session de l'utilisateur |
@@ -47,6 +47,6 @@ Vous souhaitez supprimer un utilisateur distant spécifique :
| | |
| --- | --- |
| Numéro de commande | 1633 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
index af912ec4ecaf9f..d341fa491ca52e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
@@ -5,11 +5,11 @@ slug: /commands/duplicate-record
displayed_sidebar: docs
---
-**DUPLICATE RECORD** {( *laTable* )}
+**DUPLICATE RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement à dupliquer ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l'enregistrement à dupliquer ou Table par défaut si ce paramètre est omis |
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
index 58c88a92187dc8..8f77fd7f93eee1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/dynamic-pop-up-menu
displayed_sidebar: docs
---
-**Dynamic pop up menu** ( *menu* {; *parDéfaut* {; *coordX* ; *coordY*}} ) : Text
+**Dynamic pop up menu** ( *menu* : Text {; *parDéfaut* : Text {; *coordX* : Integer ; *coordY* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Text | → | Référence de menu |
-| parDéfaut | Text | → | Paramètre de l'élément sélectionné par défaut |
-| coordX | Integer | → | Coordonnée X du coin supérieur gauche |
-| coordY | Integer | → | Coordonnée Y du coin supérieur gauche |
+| menu | Text | → | Référence de menu |
+| parDéfaut | Text | → | Paramètre de l'élément sélectionné par défaut |
+| coordX | Integer | → | Coordonnée X du coin supérieur gauche |
+| coordY | Integer | → | Coordonnée Y du coin supérieur gauche |
| Résultat | Text | ← | Paramètre de l'élément de menu sélectionné |
@@ -96,6 +96,6 @@ paramRef:=Dynamic pop up menu($refMainContextMenu)
| | |
| --- | --- |
| Numéro de commande | 1006 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
index c8b611d414f11f..ecec1d1d7467d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ L'exemple suivant affiche la fenêtre de gestion des utilisateur et des groupes
| | |
| --- | --- |
| Numéro de commande | 281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
index a317d522237d0e..907ba192746726 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
@@ -5,13 +5,12 @@ slug: /commands/edit-formula
displayed_sidebar: docs
---
-**EDIT FORMULA** ( *laTable* ; *formule* )
+**EDIT FORMULA** ( *laTable* : Table ; *formule* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à afficher par défaut dans l’éditeur de formules |
-| formule | Text | → | Variable contenant la formule à afficher dans l’éditeur de formules ou "" pour uniquement afficher l’éditeur |
-| ← | Formule validée par l’utilisateur |
+| laTable | Table | → | Table à afficher par défaut dans l’éditeur de formules |
+| formule | Text | ↔ | *in:* Variable containing the formula to display in the Formula editor or "" to display editor only
*out:* Formula validated by the user |
@@ -60,7 +59,7 @@ Si l’utilisateur valide la boîte de dialogue, la variable système OK prend l
| | |
| --- | --- |
| Numéro de commande | 806 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
index a82c431e0d5de3..ccb8ca04cce0a0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
@@ -5,13 +5,13 @@ slug: /commands/edit-item
displayed_sidebar: docs
---
-**EDIT ITEM** ( {* ;} *objet* {; élément} )
+**EDIT ITEM** ( * ; *objet* : Text {; élément} )
**EDIT ITEM** ( *objet* : Field, Variable {; élément} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un table ou une variable |
-| objet | any | → | Nom d’objet (si * spécifié) ou Table ou variable (si * omis) |
-| élément | Integer | → | Numéro d’élément |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un table ou une variable |
+| objet | any | → | Nom d’objet (si * spécifié) ou Table ou variable (si * omis) |
+| élément | Integer | → | Numéro d’élément |
@@ -78,6 +78,6 @@ Soient deux colonnes d’une list box dont les noms de variables associées sont
| | |
| --- | --- |
| Numéro de commande | 870 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
index 5978b8ecea5a30..7af5e037f52339 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/enable-menu-item
displayed_sidebar: docs
---
-**ENABLE MENU ITEM** ( *menu* ; *ligneMenu* {; *process*} )
+**ENABLE MENU ITEM** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence du process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence du process |
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **ENABLE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 149 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
index 2766f3b31a17f0..b5aca54d902698 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/encrypt-blob
displayed_sidebar: docs
---
-**ENCRYPT BLOB** ( *aCrypter* ; *cléPrivEmetteur* {; *cléPubRécepteur*} )
+**ENCRYPT BLOB** ( *aCrypter* : Blob ; *cléPrivEmetteur* : Blob {; *cléPubRécepteur* : Blob} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| aCrypter | Blob | ↔ | Données à crypter |
-| || | Données cryptées |
-| cléPrivEmetteur | Blob | → | Clé privée de l’émetteur |
-| cléPubRécepteur | Blob | → | Clé publique du récepteur |
+| | | | Données cryptées |
+| cléPrivEmetteur | Blob | → | Clé privée de l’émetteur |
+| cléPubRécepteur | Blob | → | Clé publique du récepteur |
@@ -195,6 +195,6 @@ Dans le cas contraire, pour des raisons de sécurité, le mode synchrone est uti
| | |
| --- | --- |
| Numéro de commande | 689 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
index 21efbf6d59004a..36e6f9652e5ade 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/encrypt-data-blob
displayed_sidebar: docs
---
-**Encrypt data BLOB** ( *blobToEncrypt* ; *keyObject* ; *salt* ; *encryptedBLOB* ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* ; *passPhrase* ; *salt* ; *encryptedBLOB* ) : Boolean
+**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *keyObject* : Objet, Texte ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *passPhrase* : Objet, Texte ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blobToEncrypt | Blob | → | BLOB à encrypter |
-| keyObject | passPhrase | Objet, Texte | → | Objet JSON contenant la clé de chiffrement ou le mot de passe pour une génération directe de clé de chiffrement (texte) |
-| salt | Integer | → | Additional salt for algorithm |
+| blobToEncrypt | Blob | → | BLOB à encrypter |
+| keyObject | passPhrase | Objet, Texte | → | Objet JSON contenant la clé de chiffrement ou le mot de passe pour une génération directe de clé de chiffrement (texte) |
+| salt | Integer | → | Additional salt for algorithm |
| encryptedBlob | Blob | ← | BLOB encrypté |
| Résultat | Boolean | ← | True si le chiffrement a été effectué correctement. Sinon False |
@@ -65,6 +65,6 @@ Cryptez un fichier texte situé dans le dossier RESSOURCES de la base de donnée
| | |
| --- | --- |
| Numéro de commande | 1773 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
index fe30b8a2277273..fa74db6d686761 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
@@ -5,16 +5,16 @@ slug: /commands/encrypt-data-file
displayed_sidebar: docs
---
-**Encrypt data file** ( *cheminStructure* ; *cheminDonnées* {; *nouvellePhraseSecrète* {; *dossierArchive* {; *phraseSecrèteCour* {; *nomMéthode*}}}} ) : Text
**Encrypt data file** ( *cheminStructure* ; *cheminDonnées* {; *nouvelleCléDonnées* {; *dossierArchive* {; *cléDonnéesCour* {; *nomMéthode*}}}} ) : Text
+**Encrypt data file** ( *cheminStructure* : Text ; *cheminDonnées* : Text {; *nouvellePhraseSecrète* : Texte, Objet {; *dossierArchive* : Text {; *phraseSecrèteCour* : Texte, Objet {; *nomMéthode* : Text}}}} ) : Text
**Encrypt data file** ( *cheminStructure* : Text ; *cheminDonnées* : Text {; *nouvelleCléDonnées* : Texte, Objet {; *dossierArchive* : Text {; *cléDonnéesCour* : Texte, Objet {; *nomMéthode* : Text}}}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminStructure | Text | → | Chemin d'accès du fichier de structure |
-| cheminDonnées | Text | → | Chemin d'accès du fichier de données |
-| nouvellePhraseSecrète | nouvelleCléDonnées | Texte, Objet | → | En cas de remplacement : nouvelle phrase secrète (texte) ou nouvelle clé de chiffrement (objet) |
-| dossierArchive | Text | → | Chemin d'accès du dossier dans lequel placer le fichier de données original |
-| phraseSecrèteCour | cléDonnéesCour | Texte, Objet | → | Phrase secrète courante (texte) ou clé de chiffrement courante (objet) |
-| nomMéthode | Text | → | Nom de la méthode 4D de rétro-appel |
+| cheminStructure | Text | → | Chemin d'accès du fichier de structure |
+| cheminDonnées | Text | → | Chemin d'accès du fichier de données |
+| nouvellePhraseSecrète | nouvelleCléDonnées | Texte, Objet | → | En cas de remplacement : nouvelle phrase secrète (texte) ou nouvelle clé de chiffrement (objet) |
+| dossierArchive | Text | → | Chemin d'accès du dossier dans lequel placer le fichier de données original |
+| phraseSecrèteCour | cléDonnéesCour | Texte, Objet | → | Phrase secrète courante (texte) ou clé de chiffrement courante (objet) |
+| nomMéthode | Text | → | Nom de la méthode 4D de rétro-appel |
| Résultat | Text | ← | Nom de chemin d'accès complet au dossier dans lequel les fichiers originaux ont été stockés |
@@ -142,6 +142,6 @@ $folder:=Encrypt data file(Structure file;"myData.4DD")
| | |
| --- | --- |
| Numéro de commande | 1610 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
index edd9f3b6174d68..083f16838449aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
@@ -5,11 +5,11 @@ slug: /commands/end-selection
displayed_sidebar: docs
---
-**End selection** {( *laTable* )} : Boolean
+**End selection** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle tester si le pointeur d'enregistrement courant est au-delà du dernier enregistrement de la sélection courante ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table pour laquelle tester si le pointeur d'enregistrement courant est au-delà du dernier enregistrement de la sélection courante ou Table par défaut si ce paramètre est omis |
| Résultat | Boolean | ← | Oui (Vrai), Non (Faux) |
@@ -67,6 +67,6 @@ La méthode formulaire de l'exemple suivant est utilisée lors de l'impression d
| | |
| --- | --- |
| Numéro de commande | 36 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
index 6950f429ef92fa..ee856725193c40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Une séquence d'instructions SQL doit être encadrée par les mot-clés [Begin S
| | |
| --- | --- |
| Numéro de commande | 949 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
index 5e9b4dbc25d998..247925e628c7af 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
@@ -5,12 +5,12 @@ slug: /commands/equal-pictures
displayed_sidebar: docs
---
-**Equal pictures** ( *image1* ; *image2* ; *masque* ) : Boolean
+**Equal pictures** ( *image1* : Picture, Picture ; *image2* : Picture, Picture ; *masque* : Picture, Picture ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image1 | Picture, Picture | → | Image source originale |
-| image2 | Picture, Picture | → | Image à comparer |
+| image1 | Picture, Picture | → | Image source originale |
+| image2 | Picture, Picture | → | Image à comparer |
| masque | Picture, Picture | ← | Masque résultant |
| Résultat | Boolean | ← | Vrai si les deux images sont identiques, sinon Faux |
@@ -48,7 +48,7 @@ Le code du bouton **Compare** est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1196 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
index ffafbd5b0a87a5..351e8e6886bd47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
@@ -5,11 +5,11 @@ slug: /commands/erase-window
displayed_sidebar: docs
---
-**ERASE WINDOW** {( *fenêtre* )}
+**ERASE WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de fenêtre ou Fenêtre au premier plan du process courant si ce paramètre est omis |
+| fenêtre | Integer | → | Numéro de référence de fenêtre ou Fenêtre au premier plan du process courant si ce paramètre est omis |
@@ -33,6 +33,6 @@ Ne confondez pas **ERASE WINDOW**, qui efface le contenu d'une fenêtre, et [GOT
| | |
| --- | --- |
| Numéro de commande | 160 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
index 45366b59790b3b..61002309530550 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
@@ -5,13 +5,13 @@ slug: /commands/euro-converter
displayed_sidebar: docs
---
-**Euro converter** ( *valeur* ; *deMonnaie* ; *versMonnaie* ) : Real
+**Euro converter** ( *valeur* : Real ; *deMonnaie* : Text ; *versMonnaie* : Text ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| valeur | Real | → | Valeur à convertir |
-| deMonnaie | Text | → | Code ISO de la monnaie dans laquelle la valeur est exprimée |
-| versMonnaie | Text | → | Code ISO de la monnaie dans laquelle la valeur doit être convertie |
+| valeur | Real | → | Valeur à convertir |
+| deMonnaie | Text | → | Code ISO de la monnaie dans laquelle la valeur est exprimée |
+| versMonnaie | Text | → | Code ISO de la monnaie dans laquelle la valeur doit être convertie |
| Résultat | Real | ← | Valeur convertie |
@@ -121,6 +121,6 @@ Voici différents types de conversion pouvant être obtenus à l’aide de cette
| | |
| --- | --- |
| Numéro de commande | 676 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
index 640f1470828bfa..4d4623ad566be1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
@@ -5,11 +5,11 @@ slug: /commands/execute-formula
displayed_sidebar: docs
---
-**EXECUTE FORMULA** ( *instruction* )
+**EXECUTE FORMULA** ( *instruction* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| instruction | Text | → | Code à exécuter |
+| instruction | Text | → | Code à exécuter |
@@ -68,6 +68,6 @@ Vous voulez exécuter une formule incluant des appels à des commandes et des ta
| | |
| --- | --- |
| Numéro de commande | 63 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
index 379af07fb34e1c..9783e8f925669e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
@@ -5,15 +5,15 @@ slug: /commands/execute-method-in-subform
displayed_sidebar: docs
---
-**EXECUTE METHOD IN SUBFORM** ( *objetSousForm* ; *nomMéthode* {; *retour* {; *param*} {; *param2* ; ... ; *paramN*}} )
+**EXECUTE METHOD IN SUBFORM** ( *objetSousForm* : Text ; *nomMéthode* : Object, Text ; *retour* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD IN SUBFORM** ( *objetSousForm* : Text ; *nomMéthode* : Object, Text ; * {; ...*param* : Expression} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objetSousForm | Text | → | Nom de l’objet sous-formulaire |
-| nomMéthode | Object, Text | → | Nom de la méthode projet à exécuter |
-| retour | *, Variable | → | * si la méthode ne retourne pas de valeur |
-| ← | Valeur retournée par la méthode |
-| param | Expression | → | Paramètre(s) à passer à la méthode |
+| objetSousForm | Text | → | Nom de l’objet sous-formulaire |
+| nomMéthode | Object, Text | → | Nom de la méthode projet à exécuter |
+| retour | Variable | ← | Value returned by formula (if any) |
+| \* | Operator | → | Formula does not return a value |
+| param | Expression | → | Paramètre(s) à passer à la méthode |
@@ -79,7 +79,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1085 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
index dc445f43b9f49e..c784092d4edb21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
@@ -5,13 +5,13 @@ slug: /commands/execute-method
displayed_sidebar: docs
---
-**EXECUTE METHOD** ( *nomMéthode* {; *résultat* {; *param*}}{; *param2* ; ... ; *paramN*} )
+**EXECUTE METHOD** ( *nomMéthode* : Text ; *résultat* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD** ( *nomMéthode* : Text ; * {; ...*param* : Expression} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomMéthode | Text | → | Nom de méthode projet à exécuter |
-| résultat | Variable, * | ← | Variable recevant le résultat de la méthode ou * pour une méthode ne retournant pas de résultat |
-| param | Expression | → | Paramètre(s) de la méthode |
+| nomMéthode | Text | → | Nom de méthode projet à exécuter |
+| résultat | Variable, Operator | ← | Variable recevant le résultat de la méthode ou * pour une méthode ne retournant pas de résultat |
+| param | Expression | → | Paramètre(s) de la méthode |
@@ -38,7 +38,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1007 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
index 85df3888da893b..2a02bf30b404dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
@@ -5,13 +5,13 @@ slug: /commands/execute-on-client
displayed_sidebar: docs
---
-**EXECUTE ON CLIENT** ( *nomClient* ; *nomMéthode* {; *param*}{; *param2* ; ... ; *paramN*} )
+**EXECUTE ON CLIENT** ( *nomClient* : Text ; *nomMéthode* : Text {; *...param* : any} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomClient | Text | → | Nom d’inscription du 4D Client |
-| nomMéthode | Text | → | Nom de la méthode à exécuter |
-| param | → | Paramètre(s) de la méthode |
+| nomClient | Text | → | Nom d’inscription du 4D Client |
+| nomMéthode | Text | → | Nom de la méthode à exécuter |
+| param | any | → | Method’s parameter(s) |
@@ -66,7 +66,7 @@ La variable système OK prend la valeur 1 si 4D Server a correctement reçu la r
| | |
| --- | --- |
| Numéro de commande | 651 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
index a288c1633d5e2c..bb41ff60368851 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
@@ -5,15 +5,15 @@ slug: /commands/execute-on-server
displayed_sidebar: docs
---
-**Execute on server** ( *procédure* ; *pile* {; *nom* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**Execute on server** ( *procédure* : Text ; *pile* : Integer {; *nom* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| procédure | Text | → | Procédure à exécuter dans le process |
-| pile | Integer | → | Taille de la pile en octets (0 = taille par défaut) |
-| nom | Text | → | Nom du process créé |
-| param | Expression | → | Paramètre(s) de la procédure |
-| * | Opérateur | → | Process unique |
+| procédure | Text | → | Procédure à exécuter dans le process |
+| pile | Integer | → | Taille de la pile en octets (0 = taille par défaut) |
+| nom | Text | → | Nom du process créé |
+| param | Expression | → | Paramètre(s) de la procédure |
+| * | Opérateur | → | Process unique |
| Résultat | Integer | ← | Numéro du process pour un process nouvellement créé ou un process déjà en cours d'exécution |
@@ -191,6 +191,6 @@ Reportez-vous à la section *Services basés sur les procédures stockées (exem
| | |
| --- | --- |
| Numéro de commande | 373 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
index b424273f6c399b..03d7d9a4aca437 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
@@ -5,11 +5,11 @@ slug: /commands/exp
displayed_sidebar: docs
---
-**Exp** ( *nombre* ) : Real
+**Exp** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre à évaluer |
+| nombre | Real | → | Nombre à évaluer |
| Résultat | Real | ← | Exponentielle de nombre |
@@ -37,6 +37,6 @@ L'exemple suivant assigne l'exponentielle de 1 à *vrE* (le logarithme de *vrE*
| | |
| --- | --- |
| Numéro de commande | 21 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
index 8d9e6f21ed0674..2711ded077d5ed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
@@ -5,11 +5,11 @@ slug: /commands/expand-blob
displayed_sidebar: docs
---
-**EXPAND BLOB** ( *blob* )
+**EXPAND BLOB** ( *blob* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB à décompresser |
+| Blob | Blob | → | BLOB à décompresser |
@@ -71,7 +71,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement décompressé,
| | |
| --- | --- |
| Numéro de commande | 535 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
index 7da12ff0f049c8..258cec93ca2977 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
@@ -5,14 +5,13 @@ slug: /commands/export-data
displayed_sidebar: docs
---
-**EXPORT DATA** ( *nomFichier* {; *projet* {; *}} )
+**EXPORT DATA** ( *nomFichier* : Text {; *projet* : Text, Blob {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Chemin d’accès et nom du fichier d’export |
-| projet | Text, Blob | → | Contenu du projet d’export (XML ou référence d'élément DOM ou BLOB) |
-| ← | Nouveau contenu du projet d’export (si le paramètre * a été passé) |
-| * | Opérateur | → | Affichage de la boîte de dialogue d’export et mise à jour du projet |
+| nomFichier | Text | → | Chemin d’accès et nom du fichier d’export |
+| projet | Text, Blob | ↔ | *in:* Contents of the export project
*out:* New contents of the export project (if the * parameter has been passed) |
+| * | Opérateur | → | Affichage de la boîte de dialogue d’export et mise à jour du projet |
@@ -103,7 +102,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (d'enre
| | |
| --- | --- |
| Numéro de commande | 666 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
index 6f5c1053d8c20e..1a06149952a9dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
@@ -5,12 +5,12 @@ slug: /commands/export-dif
displayed_sidebar: docs
---
-**EXPORT DIF** ( {*laTable* ;} *nomFichier* )
+**EXPORT DIF** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle effectuer l'export ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document DIF à exporter |
+| laTable | Table | → | Table de laquelle effectuer l'export ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document DIF à exporter |
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 84 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
index 7bf913003bb49b..d5370fac831170 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure-file
displayed_sidebar: docs
---
-**Export structure file** ( *cheminDossier* {; *options*} ) : Object
+**Export structure file** ( *cheminDossier* : Text {; *options* : Object} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminDossier | Text | → | Chemin du dossier de destination pour les fichiers projets |
-| options | Object | → | Options d'export |
+| cheminDossier | Text | → | Chemin du dossier de destination pour les fichiers projets |
+| options | Object | → | Options d'export |
| Résultat | Object | ← | Statuts et messages de validation (le cas échéant) |
@@ -120,6 +120,6 @@ Vous souhaitez exporter uniquement les méthodes projet et les méthodes base, a
| | |
| --- | --- |
| Numéro de commande | 1565 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
index 949ce03b822419..2d1cea1f884855 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure
displayed_sidebar: docs
---
-**EXPORT STRUCTURE** ( *structureXML* {; *format*} )
+**EXPORT STRUCTURE** ( *structureXML* : Text {; *format* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| structureXML | Text | ← | Export de la définition XML de la structure de la base 4D |
-| format | Text | → | Export format: xml format (default) or html format |
+| format | Text | → | Export format: xml format (default) or html format |
@@ -62,6 +62,6 @@ Vous voulez exporter la structure de la base courante au format html :
| | |
| --- | --- |
| Numéro de commande | 1311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
index 394929b1ef3251..e293a5847fd9f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/export-sylk
displayed_sidebar: docs
---
-**EXPORT SYLK** ( {*laTable* ;} *nomFichier* )
+**EXPORT SYLK** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle effectuer l'export ou Table par défaut si ce paramètres est omis |
-| nomFichier | Text | → | Document SYLK à exporter |
+| laTable | Table | → | Table de laquelle effectuer l'export ou Table par défaut si ce paramètres est omis |
+| nomFichier | Text | → | Document SYLK à exporter |
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 85 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
index 4535347a31c366..33afc6d81f1a25 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
@@ -5,12 +5,12 @@ slug: /commands/export-text
displayed_sidebar: docs
---
-**EXPORT TEXT** ( {*laTable* ;} *nomFichier* )
+**EXPORT TEXT** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table depuis laquelle effectuer l'export ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document texte à exporter |
+| laTable | Table | → | Table depuis laquelle effectuer l'export ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document texte à exporter |
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 167 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md
index bab46c01487b88..d2319000e6b2f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/false.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Faux :
| | |
| --- | --- |
| Numéro de commande | 215 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
index 1272508877d466..dccdfdc882d10c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
@@ -5,12 +5,12 @@ slug: /commands/field-name
displayed_sidebar: docs
---
-**Field name** ( *numTable* ; *numChamp* ) : Text
**Field name** ( *ptrChamp* ) : Text
+**Field name** ( *numTable* : Pointeur, Entier long ; *numChamp* : Integer ) : Text
**Field name** ( *ptrChamp* : Pointeur, Entier long ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrChamp | numTable | Pointeur, Entier long | → | Pointeur vers un champ ou Numéro de table |
-| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
+| ptrChamp | numTable | Pointeur, Entier long | → | Pointeur vers un champ ou Numéro de table |
+| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
| Résultat | Text | ← | Nom du champ |
@@ -54,6 +54,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte. Nous passons à cette
| | |
| --- | --- |
| Numéro de commande | 257 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md
index ac5f0a3d69f808..c05e75ad64dab2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/field.md
@@ -10,21 +10,19 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | Integer | → | Numéro de table |
-| numChamp | Integer | → | Numéro de champ |
-| ptrChamp | Pointer | ← | Pointeur de champ |
-| Field ( ptrChamp ) -> numChamp |
-| Paramètre | Type | Description |
-| ptrChamp | Pointer | → | Pointeur de champ |
-| numChamp | Integer | ← | Numéro de champ |
+| numTable | Integer | → | Numéro de table |
+| numChamp | Integer | → | Numéro de champ |
+| ptrChamp | Pointer | → | Pointeur de champ |
+| Résultat | Pointer, Integer | ← | Pointeur de champ ou Numéro de champ |
## Description
-La commande **Field** a deux syntaxes :
+La commande **Field** a deux syntaxes :
-* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ.retourne le numéro du champ.
+* Si vous passez un numéro de table dans *numTable* et un numéro de champ dans *numChamp*, **Field** retourne un pointeur vers le champ.
+* Si vous passez un pointeur vers un champ dans *ptrChamp*, **Field** retourne le numéro du champ.
## Exemple 1
@@ -62,6 +60,6 @@ Dans l'exemple, la variable *champNum* est égale au numéro de champ de \[Table
| | |
| --- | --- |
| Numéro de commande | 253 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
index 35999a55736c66..3d6ca9239ed234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Référez-vous à l'exemple d'[ON EVENT CALL](on-event-call.md).
| | |
| --- | --- |
| Numéro de commande | 321 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
index abbbd24de00e92..c654fcead14756 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
@@ -5,11 +5,11 @@ slug: /commands/filter-keystroke
displayed_sidebar: docs
---
-**FILTER KEYSTROKE** ( *carFiltré* )
+**FILTER KEYSTROKE** ( *carFiltré* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| carFiltré | Text | → | Caractère(s) de remplacement ou Chaîne vide pour annuler le filtrage clavier |
+| carFiltré | Text | → | Caractère(s) de remplacement ou Chaîne vide pour annuler le filtrage clavier |
@@ -246,6 +246,6 @@ La méthode obtenirTexteSelectionne est la suivante :
| | |
| --- | --- |
| Numéro de commande | 389 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
index 2271330d135789..e7b573dedec5da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-array
displayed_sidebar: docs
---
-**Find in array** ( *tableau* ; *valeur* {; *départ*} ) : Integer
+**Find in array** ( *tableau* : Array ; *valeur* : Expression {; *départ* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau dans lequel effectuer la recherche |
-| valeur | Expression | → | Valeur de même type à rechercher dans le tableau |
-| départ | Integer | → | Elément à partir duquel commencer la recherche |
+| tableau | Array | → | Tableau dans lequel effectuer la recherche |
+| valeur | Expression | → | Valeur de même type à rechercher dans le tableau |
+| départ | Integer | → | Elément à partir duquel commencer la recherche |
| Résultat | Integer | ← | Numéro du premier élément trouvé correspondant à valeur |
@@ -113,6 +113,6 @@ Vous voulez trouver une référence d'objet :
| | |
| --- | --- |
| Numéro de commande | 230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
index 06683930be7511..39350ec001380d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
@@ -5,13 +5,12 @@ slug: /commands/find-in-field
displayed_sidebar: docs
---
-**Find in field** ( *champCible* ; *valeur* ) : Integer
+**Find in field** ( *champCible* : Field ; *valeur* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champCible | Field | → | Champ sur lequel effectuer la recherche |
-| valeur | Field, Variable | → | Valeur à rechercher |
-| ← | Valeur trouvée |
+| champCible | Field | → | Champ sur lequel effectuer la recherche |
+| valeur | Field, Variable | ↔ | *in:* Value to search
*out:* Value found |
| Résultat | Integer | ← | Numéro de l’enregistrement trouvé ou -1 si pas d’enregistrement trouvé |
@@ -69,6 +68,6 @@ Remarquez le >= qui permet de couvrir tous les cas. En effet, la fonction retour
| | |
| --- | --- |
| Numéro de commande | 653 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
index 414d2d2585d386..684a015d835de2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
@@ -5,16 +5,16 @@ slug: /commands/find-in-list
displayed_sidebar: docs
---
-**Find in list** ( {* ;} *liste* ; *valeur* ; *portée* {; *tabEléments* {; *}} ) : Integer
+**Find in list** ( {* ;} *liste* : Integer, Text ; *valeur* : Text ; *portée* : Integer {; *tabEléments* : Integer array {; *}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| valeur | Text | → | Valeur à rechercher |
-| portée | Integer | → | 0=Liste principale, 1=Sous-listes |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| valeur | Text | → | Valeur à rechercher |
+| portée | Integer | → | 0=Liste principale, 1=Sous-listes |
| tabEléments | Integer array | ← | - Si 2e * omis : tableau des positions des éléments trouvés - Si 2e * passé : tableau des numéros de référence des éléments trouvés |
-| * | Opérateur | → | - Si omis : utiliser la position des éléments - Si passé : utiliser le numéro de référence des éléments |
+| * | Opérateur | → | - Si omis : utiliser la position des éléments - Si passé : utiliser le numéro de référence des éléments |
| Résultat | Integer | ← | - Si 2e * omis : position de l’élément trouvé - Si 2e * passé : numéro de référence de l’élément trouvé |
@@ -68,6 +68,6 @@ Soit la liste hiérarchique suivante :
| | |
| --- | --- |
| Numéro de commande | 952 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
index 9928f8c649f948..3b0ff1d80e981e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-sorted-array
displayed_sidebar: docs
---
-**Find in sorted array** ( *tableau* ; *valeur* ; > ou < {; *posDébut* {; *posFin*}} ) : Boolean
+**Find in sorted array** ( *tableau* : Array ; *valeur* : Expression ; > ou < {; *posDébut* : Integer {; *posFin* : Integer}} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau dans lequel effectuer la recherche |
-| valeur | Expression | → | Valeur (de même type que le tableau) à rechercher dans le tableau |
-| > ou < | Opérateur | → | > si le tableau est trié par ordre croissant, < s'il est trié par ordre décroissant |
+| tableau | Array | → | Tableau dans lequel effectuer la recherche |
+| valeur | Expression | → | Valeur (de même type que le tableau) à rechercher dans le tableau |
+| > ou < | Opérateur | → | > si le tableau est trié par ordre croissant, < s'il est trié par ordre décroissant |
| posDébut | Integer | ← | Si la valeur est trouvée, position de sa première occurrence ; sinon, position où la valeur devrait être insérée |
| posFin | Integer | ← | Si la valeur est trouvée, position de sa dernière occurrence ; sinon, identique à posDébut |
| Résultat | Boolean | ← | Vrai si au moins un élément du tableau correspond à la valeur recherchée, sinon Faux |
@@ -77,6 +77,6 @@ Vous souhaitez trouver le nombre d'occurrences de chaînes débutant par "test"
| | |
| --- | --- |
| Numéro de commande | 1333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
index 8139bf20c036a7..1a83ae8e6acebd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
@@ -5,12 +5,12 @@ slug: /commands/find-window
displayed_sidebar: docs
---
-**Find window** ( *gauche* ; *haut* {; *partieFenêtre*} ) : Integer
+**Find window** ( *gauche* : Integer ; *haut* : Integer {; *partieFenêtre* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| gauche | Integer | → | Coordonnée globale gauche |
-| haut | Integer | → | Coordonnée globale supérieure |
+| gauche | Integer | → | Coordonnée globale gauche |
+| haut | Integer | → | Coordonnée globale supérieure |
| partieFenêtre | Integer | ← | 3 si une fenêtre est "touchée", 0 sinon |
| Résultat | Integer | ← | Numéro de référence de fenêtre |
@@ -34,6 +34,6 @@ Le paramètre *partieFenêtre* retourne 3 si une fenêtre est touchée, et 0 sin
| | |
| --- | --- |
| Numéro de commande | 449 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
index 4995f30c72ba3e..8e3f4495aaac76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
@@ -5,11 +5,11 @@ slug: /commands/first-record
displayed_sidebar: docs
---
-**FIRST RECORD** {( *laTable* )}
+**FIRST RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle charger le premier enregistrement de la sélection courantes ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle charger le premier enregistrement de la sélection courantes ou Table par défaut si ce paramètre est omis |
@@ -40,7 +40,7 @@ L'exemple suivant charge le premier enregistrement de la table \[Clients\] :
| | |
| --- | --- |
| Numéro de commande | 50 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
index ed741567b813e8..72d21a970d5d2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
@@ -5,11 +5,11 @@ slug: /commands/flush-cache
displayed_sidebar: docs
---
-**FLUSH CACHE** {( taille )}
**FLUSH CACHE** {( * )}
+**FLUSH CACHE** ({ taille })
**FLUSH CACHE** ({ * })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| taille | * | Réel, Opérateur | → | * pour vider le cache, ou nombre d'octets minimum de libération du cache |
+| taille | * | Réel, Opérateur | → | * pour vider le cache, ou nombre d'octets minimum de libération du cache |
@@ -36,6 +36,6 @@ En temps normal, vous n'avez pas à appeler cette commande, car 4D sauvegarde r
| | |
| --- | --- |
| Numéro de commande | 297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
index 5152ec32beec86..54fd5e649037b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ L'exemple suivant est une méthode objet pour un bouton. Cette méthode passe le
| | |
| --- | --- |
| Numéro de commande | 278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
index d2fbbeb80a46d8..e7539c5fe3e6cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
@@ -5,11 +5,11 @@ slug: /commands/folder-list
displayed_sidebar: docs
---
-**FOLDER LIST** ( *cheminAccès* ; *dossiers* )
+**FOLDER LIST** ( *cheminAccès* : Text ; *dossiers* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Chemin d'accès de volume, répertoire ou dossier |
+| cheminAccès | Text | → | Chemin d'accès de volume, répertoire ou dossier |
| dossiers | Text array | ← | Noms des dossiers situés à cet endroit |
@@ -30,7 +30,7 @@ S'il n'y pas de dossier à cet endroit, la commande retourne un tableau vide. Si
| | |
| --- | --- |
| Numéro de commande | 473 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
index f0d97b3c2bd55a..a6f806753b5510 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
@@ -5,12 +5,12 @@ slug: /commands/font-file
displayed_sidebar: docs
---
-**Font file** ( *famillePolice* {; *stylePolice*} ) : any
+**Font file** ( *famillePolice* : Text {; *stylePolice* : Integer} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| famillePolice | Text | → | Nom de la famille de police |
-| stylePolice | Integer | → | Style de police : 0=normale (par défaut), 1=gras, 2=italique |
+| famillePolice | Text | → | Nom de la famille de police |
+| stylePolice | Integer | → | Style de police : 0=normale (par défaut), 1=gras, 2=italique |
| Résultat | Null, Object | ← | Objet fichier police |
@@ -55,6 +55,6 @@ Vous souhaitez vérifier que la police utilisée dans une zone de texte est int
| | |
| --- | --- |
| Numéro de commande | 1700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
index 969146904d6be2..67cb3d43e857ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
@@ -5,12 +5,12 @@ slug: /commands/font-list
displayed_sidebar: docs
---
-**FONT LIST** ( *polices* {; *typeListe* } )
**FONT LIST** ( *polices* {; *} )
+**FONT LIST** ( *polices* : Text array {; *typeListe* : Entier long, Opérateur } )
**FONT LIST** ( *polices* : Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| polices | Text array | ← | Tableau des noms des polices vectorielles disponibles |
-| typeListe | * | Entier long, Opérateur | → | Type de liste de police à retourner ou * pour retourner des noms de police sous macOS |
+| typeListe | * | Entier long, Opérateur | → | Type de liste de police à retourner ou * pour retourner des noms de police sous macOS |
@@ -78,6 +78,6 @@ Vous souhaitez obtenir la liste des polices récentes :
| | |
| --- | --- |
| Numéro de commande | 460 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
index 3ce2d6facad1c7..d36f27cebf6aad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
@@ -5,11 +5,11 @@ slug: /commands/font-style-list
displayed_sidebar: docs
---
-**FONT STYLE LIST** ( *famillePolice* ; *listeStylesPolice* ; *listeNomsPolice* )
+**FONT STYLE LIST** ( *famillePolice* : Text ; *listeStylesPolice* : Text array ; *listeNomsPolice* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| famillePolice | Text | → | Nom de la famille de police |
+| famillePolice | Text | → | Nom de la famille de police |
| listeStylesPolice | Text array | ← | Liste des styles pris en charge par la famille de police |
| listeNomsPolice | Text array | ← | Liste des noms complets pris en charge par la famille de police |
@@ -64,6 +64,6 @@ Vous voulez sélectionner les styles de la famille de police "Verdana" (si elle
| | |
| --- | --- |
| Numéro de commande | 1362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
index 5129600e662aa7..9c8e4ca6a66e20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
@@ -5,12 +5,12 @@ slug: /commands/form-convert-to-dynamic
displayed_sidebar: docs
---
-**FORM Convert to dynamic** ( {*uneTable* ;} *nomFormulaire* ) : Object
+**FORM Convert to dynamic** ( {*uneTable* : Table ;} *nomFormulaire* : Text ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| uneTable | Table | → | Table du formulaire |
-| nomFormulaire | Text | → | Nom d'un formulaire projet ou d'un formulaire table "classique" |
+| uneTable | Table | → | Table du formulaire |
+| nomFormulaire | Text | → | Nom d'un formulaire projet ou d'un formulaire table "classique" |
| Résultat | Object | ← | formName converti en formulaire dynamique |
@@ -66,6 +66,6 @@ Si vous exécutez le code :
| | |
| --- | --- |
| Numéro de commande | 1570 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
index b8b538a6549ad0..ed570be1fa62fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
index 0c12ed9e9896fe..a49fc1a06a12b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Vous souhaitez charger une image en fonction du schéma courant du formulaire :
| | |
| --- | --- |
| Numéro de commande | 1761 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
index 1aa1414c31e9bf..3a4d2fb3293777 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
@@ -5,11 +5,11 @@ slug: /commands/form-get-current-page
displayed_sidebar: docs
---
-**FORM Get current page** {( * )} : Integer
+**FORM Get current page** ( * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourner le numéro de la page du sous-formulaire courant |
+| * | Opérateur | → | Retourner le numéro de la page du sous-formulaire courant |
| Résultat | Integer | ← | Numéro de la page courante du formulaire courant |
@@ -73,6 +73,6 @@ Alors que vous êtes en train d'utiliser un formulaire, si vous choisissez une c
| | |
| --- | --- |
| Numéro de commande | 276 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
index 24e7f9ddaa0482..58d632eb2350b2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-entry-order
displayed_sidebar: docs
---
-**FORM GET ENTRY ORDER** ( *nomsObjets* {; *numPage* }
*FORM GET ENTRY ORDER** ( *nomsObjets* {; *} )
+**FORM GET ENTRY ORDER** ( *nomsObjets* : Text array {; *numPage* : Entier long, Opérateur }
*FORM GET ENTRY ORDER** ( *nomsObjets* {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| nomsObjets | Text array | ← | Noms des objets triés par ordre de saisie |
-| numPage | * | Entier long, Opérateur | → | Numéro de la page dont vous voulez lire l'ordre de saisie défini (page courante si omis), ou * pour obtenir l'ordre de saisie actuel de la page courante |
+| numPage | * | Entier long, Opérateur | → | Numéro de la page dont vous voulez lire l'ordre de saisie défini (page courante si omis), ou * pour obtenir l'ordre de saisie actuel de la page courante |
@@ -56,6 +56,6 @@ Vous voulez exclure certains objets de l'ordre de saisie :
| | |
| --- | --- |
| Numéro de commande | 1469 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
index 59c47b12568ba5..ad1845dbadda42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-horizontal-resizing
displayed_sidebar: docs
---
-**FORM GET HORIZONTAL RESIZING** ( *redimension* {; *largeurMini* {; *largeurMaxi*}} )
+**FORM GET HORIZONTAL RESIZING** ( *redimension* : Boolean {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1077 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
index 0754015f9f7422..a479c6246588c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
@@ -5,16 +5,15 @@ slug: /commands/form-get-names
displayed_sidebar: docs
---
-**FORM GET NAMES** ( {*laTable* ;} *tabNoms* {; *filtre* {; *marqueur*}}{; *} )
+**FORM GET NAMES** ( {*laTable* : Table ;} *tabNoms* : Text array {; *filtre* : Text {; *marqueur* : Real}}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Référence de table |
+| laTable | Table | → | Référence de table |
| tabNoms | Text array | ← | Tableau des noms de formulaires |
-| filtre | Text | → | Filtrage des noms |
-| marqueur | Real | → | Marqueur de version minimale à retourner |
-| ← | Nouvelle valeur |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| filtre | Text | → | Filtrage des noms |
+| marqueur | Real | ↔ | *in:* Marker for minimum version to return
*out:* New value |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -69,6 +68,6 @@ Exemples d’utilisations type :
| | |
| --- | --- |
| Numéro de commande | 1167 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
index 0e60ccf82c75a4..b60aae7288327d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
@@ -5,14 +5,14 @@ slug: /commands/form-get-objects
displayed_sidebar: docs
---
-**FORM GET OBJECTS** ( *tabObjets* {; *tabVariables* {; *tabPages*}} {; *optionPage* } )
**FORM GET OBJECTS** ( *tabObjets* {; *tabVariables* {; *tabPages*}} {; *} )
+**FORM GET OBJECTS** ( *tabObjets* : Text array {; *tabVariables* : Pointer array {; *tabPages* : Integer array}} {; *optionPage* : Entier long, Opérateur } )
**FORM GET OBJECTS** ( *tabObjets* : Text array {; *tabVariables* : Pointer array {; *tabPages* : Integer array}} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| tabObjets | Text array | ← | Noms des objets du formulaire |
| tabVariables | Pointer array | ← | Pointeurs sur les variables ou champs associés aux objets |
-| tabPages | Array integer | ← | Numéro de page de chaque objet |
-| optionPage | * | Entier long, Opérateur | → | 1=Page courante du formulaire, 2=Toutes les pages, 4=Pages héritées
Si * passé (obsolète) = page courante avec objets hérités |
+| tabPages | Integer array | ← | Numéro de page de chaque objet |
+| optionPage | * | Entier long, Opérateur | → | 1=Page courante du formulaire, 2=Toutes les pages, 4=Pages héritées
Si * passé (obsolète) = page courante avec objets hérités |
@@ -125,6 +125,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 898 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
index f66a4252f1ae7c..3a4ff1454bc27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-properties
displayed_sidebar: docs
---
-**FORM GET PROPERTIES** ( {*laTable* ;} *nomForm* ; *largeur* ; *hauteur* {; *nbPages* {; *largeurFixe* {; *hauteurFixe* {; *titre*}}}} )
+**FORM GET PROPERTIES** ( {*laTable* : Table ;} *nomForm* : Text ; *largeur* : Integer ; *hauteur* : Integer {; *nbPages* : Integer {; *largeurFixe* : Boolean {; *hauteurFixe* : Boolean {; *titre* : Text}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table du formulaire ou Table par défaut si ce paramètre est omis |
-| nomForm | Text | → | Nom du formulaire |
+| laTable | Table | → | Table du formulaire ou Table par défaut si ce paramètre est omis |
+| nomForm | Text | → | Nom du formulaire |
| largeur | Integer | ← | Largeur du formulaire (en pixels) |
| hauteur | Integer | ← | Hauteur du formulaire (en pixels) |
| nbPages | Integer | ← | Nombre de pages du formulaire |
@@ -47,6 +47,6 @@ Le paramètre *titre* retourne le nom de la fenêtre du formulaire, tel qu’il
| | |
| --- | --- |
| Numéro de commande | 674 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
index d491d7fd2ffed9..d5b7a28dfc4272 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-vertical-resizing
displayed_sidebar: docs
---
-**FORM GET VERTICAL RESIZING** ( *redimension* {; *hauteurMini* {; *hauteurMaxi*}} )
+**FORM GET VERTICAL RESIZING** ( *redimension* : Boolean {; *hauteurMini* : Integer {; *hauteurMaxi* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1078 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
index f5c4954ffd4e9b..fdfc815b79d21f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
@@ -5,12 +5,12 @@ slug: /commands/form-goto-page
displayed_sidebar: docs
---
-**FORM GOTO PAGE** ( *numéroPage* {; *} )
+**FORM GOTO PAGE** ( *numéroPage* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numéroPage | Integer | → | Numéro de la page à afficher |
-| * | Opérateur | → | Changer la page du sous-formulaire courant |
+| numéroPage | Integer | → | Numéro de la page à afficher |
+| * | Opérateur | → | Changer la page du sous-formulaire courant |
@@ -53,6 +53,6 @@ L'exemple suivant est la méthode objet d'un bouton affichant la page 3 du formu
| | |
| --- | --- |
| Numéro de commande | 247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
index ceeb9e9f85950b..a37d7d0ff3795d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
index db5719936f13c8..07b1c0ae6570b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
index 7e8be749e1858b..7f51fccc7026dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
index 4d96ee1f08d09c..8361b07e4d635d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
@@ -5,14 +5,14 @@ slug: /commands/form-screenshot
displayed_sidebar: docs
---
-**FORM SCREENSHOT** ( {{*laTable* ;} *nomFormulaire* ;} *imageForm* {; *pageNum*} )
+**FORM SCREENSHOT** ( {{*laTable* : Table ;} *nomFormulaire* : Text ;} *imageForm* : Picture {; *pageNum* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table du formulaire |
-| nomFormulaire | Text | → | Nom du formulaire |
+| laTable | Table | → | Table du formulaire |
+| nomFormulaire | Text | → | Nom du formulaire |
| imageForm | Picture | ← | Image du formulaire en exécution si premier(s) paramètre(s) omis, ou
Image du formulaire dans l'éditeur de formulaires si un nom de formulaire est passé |
-| pageNum | Integer | → | Numéro de page du formulaire |
+| pageNum | Integer | → | Numéro de page du formulaire |
@@ -42,6 +42,6 @@ Par défaut, la commande capture la page 1 du formulaire. Si vous souhaitez capt
| | |
| --- | --- |
| Numéro de commande | 940 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
index 2849949943587e..c880e8f192d5ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-set-entry-order
displayed_sidebar: docs
---
-**FORM SET ENTRY ORDER** ( *nomsObjets* {; *numPage*} )
+**FORM SET ENTRY ORDER** ( *nomsObjets* : Text array {; *numPage* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomsObjets | Text array | → | Tableau des noms d'objets dans l'ordre de saisie souhaité |
-| numPage | Integer | → | Numéro de la page dont vous voulez fixer l'ordre de saisie (page courante si omis) |
+| nomsObjets | Text array | → | Tableau des noms d'objets dans l'ordre de saisie souhaité |
+| numPage | Integer | → | Numéro de la page dont vous voulez fixer l'ordre de saisie (page courante si omis) |
@@ -58,6 +58,6 @@ Vous souhaitez fixer l'ordre de saisie des objets du formulaire en vous basant s
| | |
| --- | --- |
| Numéro de commande | 1468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
index 4cb11a633766ee..93cfcadad2a1cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-horizontal-resizing
displayed_sidebar: docs
---
-**FORM SET HORIZONTAL RESIZING** ( *redimension* {; *largeurMini* {; *largeurMaxi*}} )
+**FORM SET HORIZONTAL RESIZING** ( *redimension* : Boolean {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| redimension | Boolean | → | Vrai : le formulaire est redimensionnable horizontalement Faux : le formulaire n’est pas redimensionnable horizontalement |
-| largeurMini | Integer | → | Largeur minimale du formulaire (pixels) |
-| largeurMaxi | Integer | → | Largeur maximale du formulaire (pixels) |
+| redimension | Boolean | → | Vrai : le formulaire est redimensionnable horizontalement Faux : le formulaire n’est pas redimensionnable horizontalement |
+| largeurMini | Integer | → | Largeur minimale du formulaire (pixels) |
+| largeurMaxi | Integer | → | Largeur maximale du formulaire (pixels) |
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 892 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
index 72bddd33fa5e48..68bb1a7b4403d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-input
displayed_sidebar: docs
---
-**FORM SET INPUT** ( {*laTable* ;} *formulaire* {; *formUtilisateur* {; *}} )
+**FORM SET INPUT** ( {*laTable* : Table ;} *formulaire* : Text, Object {; *formUtilisateur* : Text {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle définir le formulaire entrée ou Table par défaut si ce paramètre est omis |
-| formulaire | Text, Object | → | Nom du formulaire table (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
-| formUtilisateur | Text | → | Nom du formulaire utilisateur à utiliser |
-| * | Operator | → | Taille de fenêtre automatique |
+| laTable | Table | → | Table pour laquelle définir le formulaire entrée ou Table par défaut si ce paramètre est omis |
+| formulaire | Text, Object | → | Nom du formulaire table (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
+| formUtilisateur | Text | → | Nom du formulaire utilisateur à utiliser |
+| * | Operator | → | Taille de fenêtre automatique |
@@ -108,6 +108,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 55 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
index d2578b637511ef..525753a92ec9b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-output
displayed_sidebar: docs
---
-**FORM SET OUTPUT** ( {*laTable* ;} *formulaire* {; *formUtilisateur*} )
+**FORM SET OUTPUT** ( {*laTable* : Table ;} *formulaire* : Text, Object {; *formUtilisateur* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle définir le formulaire sortie ou Table par défaut si ce paramètre est omis |
-| formulaire | Text, Object | → | Nom du formulaire table (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
-| formUtilisateur | Text | → | Nom du formulaire utilisateur à utiliser |
+| laTable | Table | → | Table pour laquelle définir le formulaire sortie ou Table par défaut si ce paramètre est omis |
+| formulaire | Text, Object | → | Nom du formulaire table (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
+| formUtilisateur | Text | → | Nom du formulaire utilisateur à utiliser |
@@ -91,6 +91,6 @@ L'exemple suivant utilise un formulaire décrit dans un fichier .json :
| | |
| --- | --- |
| Numéro de commande | 54 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
index 8fc94789f55e0d..c0a7d01ef81b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-size
displayed_sidebar: docs
---
-**FORM SET SIZE** ( {*objet* ;} *horizontal* ; *vertical* {; *} )
+**FORM SET SIZE** ( {*objet* : Text ;} *horizontal* : Integer ; *vertical* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Text | → | Nom d’objet indiquant les limites du formulaire |
-| horizontal | Integer | → | Si * passé : marge horizontale (pixels)Si * omis : largeur (pixels) |
-| vertical | Integer | → | Si * passé : marge verticale (pixels)Si * omis : hauteur (pixels) |
-| * | Opérateur | → | • Si passé, utiliser horizontal et vertical comme marges du formulaire• Si omis, utiliser horizontal et vertical comme largeur et hauteur du formulaireCe paramètre ne peut pas être passé si objet est passé |
+| objet | Text | → | Nom d’objet indiquant les limites du formulaire |
+| horizontal | Integer | → | Si * passé : marge horizontale (pixels)Si * omis : largeur (pixels) |
+| vertical | Integer | → | Si * passé : marge verticale (pixels)Si * omis : hauteur (pixels) |
+| * | Opérateur | → | • Si passé, utiliser horizontal et vertical comme marges du formulaire• Si omis, utiliser horizontal et vertical comme largeur et hauteur du formulaireCe paramètre ne peut pas être passé si objet est passé |
@@ -130,6 +130,6 @@ La méthode objet associée à ce bouton est la suivante :
| | |
| --- | --- |
| Numéro de commande | 891 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
index c6c883aefd273c..f609b8efdd6329 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-vertical-resizing
displayed_sidebar: docs
---
-**FORM SET VERTICAL RESIZING** ( *redimension* {; *hauteurMini* {; *hauteurMaxi*}} )
+**FORM SET VERTICAL RESIZING** ( *redimension* : Boolean {; *hauteurMini* : Integer {; *hauteurMaxi* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| redimension | Boolean | → | Vrai : le formulaire est redimensionnable verticalement Faux : le formulaire n’est pas redimensionnable verticalement |
-| hauteurMini | Integer | → | Hauteur minimale du formulaire (pixels) |
-| hauteurMaxi | Integer | → | Hauteur maximale du formulaire (pixels) |
+| redimension | Boolean | → | Vrai : le formulaire est redimensionnable verticalement Faux : le formulaire n’est pas redimensionnable verticalement |
+| hauteurMini | Integer | → | Hauteur minimale du formulaire (pixels) |
+| hauteurMaxi | Integer | → | Hauteur maximale du formulaire (pixels) |
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 893 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
index 92b40b1cd2852e..bfb9aa191436e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ L’appel de cette commande est nécessaire lors de l’utilisation de la comman
| | |
| --- | --- |
| Numéro de commande | 1299 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
index 4393fd022c3d9f..31aa205426b781 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-process
displayed_sidebar: docs
---
-**Frontmost process** {( * )} : Integer
+**Frontmost process** ( * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Numéro du process de la première fenêtre non-flottante |
+| * | Opérateur | → | Numéro du process de la première fenêtre non-flottante |
| Résultat | Integer | ← | Numéro du process dont la ou les fenêtre(s) est (sont) au premier plan |
@@ -39,6 +39,6 @@ Référez-vous à l'exemple de [BRING TO FRONT](bring-to-front.md).
| | |
| --- | --- |
| Numéro de commande | 327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
index 8e29ca4c2dd125..f5dd1ed1ff039f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-window
displayed_sidebar: docs
---
-**Frontmost window** {( * )} : Integer
+**Frontmost window** ( * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si omis = ignorer les fenêtres flottantes, Si spécifié = prendre en compte les fenêtres flottantes |
+| * | Opérateur | → | Si omis = ignorer les fenêtres flottantes, Si spécifié = prendre en compte les fenêtres flottantes |
| Résultat | Integer | ← | Numéro de référence de fenêtre |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 447 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
index 8903348da0e2ea..a651a83c616dcf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
@@ -5,14 +5,14 @@ slug: /commands/generate-certificate-request
displayed_sidebar: docs
---
-**GENERATE CERTIFICATE REQUEST** ( *cléPrivée* ; *demCertif* ; *tabCodes* ; *tabLibellés* )
+**GENERATE CERTIFICATE REQUEST** ( *cléPrivée* : Blob ; *demCertif* : Blob ; *tabCodes* : Integer array ; *tabLibellés* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cléPrivée | Blob | → | BLOB contenant la clé privée |
+| cléPrivée | Blob | → | BLOB contenant la clé privée |
| demCertif | Blob | ← | BLOB devant recevoir la demande de certificat |
-| tabCodes | Integer array | → | Liste des codes d’informations |
-| tabLibellés | Text array | → | Liste des libellés d’informations |
+| tabCodes | Integer array | → | Liste des codes d’informations |
+| tabLibellés | Text array | → | Liste des libellés d’informations |
@@ -88,6 +88,6 @@ Un formulaire “Demande de certificat” comporte les six champs nécessaires
| | |
| --- | --- |
| Numéro de commande | 691 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
index c6bf2ff6534d21..e444a5d84400e0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
@@ -5,13 +5,13 @@ slug: /commands/generate-digest
displayed_sidebar: docs
---
-**Generate digest** ( *param* ; *algorithme* {; *} ) : Text
+**Generate digest** ( *param* : Blob, Text ; *algorithme* : Integer {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| param | Blob, Text | → | Blob ou texte pour lequel obtenir une clé digest |
-| algorithme | Integer | → | Algorithme utilisé pour retourner la clé : 0 = Digest MD5, 1 = Digest SHA1, 2 = Digest 4D, 3 = Digest SHA-256, 4 = Digest SHA-512 |
-| * | Opérateur | → | Crypter digest en Base64URL |
+| param | Blob, Text | → | Blob ou texte pour lequel obtenir une clé digest |
+| algorithme | Integer | → | Algorithme utilisé pour retourner la clé : 0 = Digest MD5, 1 = Digest SHA1, 2 = Digest 4D, 3 = Digest SHA-256, 4 = Digest SHA-512 |
+| * | Opérateur | → | Crypter digest en Base64URL |
| Résultat | Text | ← | Valeur de la clé digest |
@@ -88,6 +88,6 @@ Ces exemples illustrent comment récupérer la clé digest d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
index 1f679529637855..7886862aff555e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
@@ -5,13 +5,13 @@ slug: /commands/generate-encryption-keypair
displayed_sidebar: docs
---
-**GENERATE ENCRYPTION KEYPAIR** ( *cléPrivée* ; *cléPublique* {; *longueur*} )
+**GENERATE ENCRYPTION KEYPAIR** ( *cléPrivée* : Blob ; *cléPublique* : Blob {; *longueur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| cléPrivée | Blob | ← | BLOB devant recevoir la clé privée |
| cléPublique | Blob | ← | BLOB devant recevoir la clé publique |
-| longueur | Integer | → | Longueur des clés en bits [512...2048] Par défaut = 512 |
+| longueur | Integer | → | Longueur des clés en bits [512...2048] Par défaut = 512 |
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 688 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
index f0c5bf5865287e..77c322ada01487 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/generate-password-hash
displayed_sidebar: docs
---
-**Generate password hash** ( *motDePasse* {; *options*} ) : Text
+**Generate password hash** ( *motDePasse* : Text {; *options* : Object} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| motDePasse | Text | → | Mot de passe utilisateur (seuls les 72 premiers caractères sont utilisés) |
-| options | Object | → | Objet contenant des options |
+| motDePasse | Text | → | Mot de passe utilisateur (seuls les 72 premiers caractères sont utilisés) |
+| options | Object | → | Objet contenant des options |
| Résultat | Text | ← | Hash du mot de passe |
@@ -73,6 +73,6 @@ Cet exemple génère un hash de mot de passe à l'aide de bcrypt avec un coût d
| | |
| --- | --- |
| Numéro de commande | 1533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
index 18707d564fd389..ebeb708af2a021 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
@@ -5,12 +5,12 @@ slug: /commands/get-4d-file
displayed_sidebar: docs
---
-**Get 4D file** ( *fichier* {; *} ) : Text
+**Get 4D file** ( *fichier* : Integer {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fichier | Integer | → | Type de fichier |
-| * | Opérateur | → | Retourne le chemin d'accès du fichier de la base hôte |
+| fichier | Integer | → | Type de fichier |
+| * | Opérateur | → | Retourne le chemin d'accès du fichier de la base hôte |
| Résultat | Text | ← | Chemin d'accès du fichier 4D désigné |
@@ -75,6 +75,6 @@ Vous voulez obtenir le chemin d'accès du fichier de sauvegarde le plus récent
| | |
| --- | --- |
| Numéro de commande | 1418 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
index 40d5c663a4f4d0..3cdebfbd8625a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
@@ -5,13 +5,13 @@ slug: /commands/get-4d-folder
displayed_sidebar: docs
---
-**Get 4D folder** {( *dossier* {; *options*} {; *})} : Text
+**Get 4D folder** ( *dossier* : Integer {; *options* : Object} {; *}) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dossier | Integer | → | Type de dossier (si omis=dossier 4D actif) |
-| options | Object | → | Configuration du chemin du dossier base 4D Client |
-| * | Opérateur | → | Retourne le dossier de la base hôte |
+| dossier | Integer | → | Type de dossier (si omis=dossier 4D actif) |
+| options | Object | → | Configuration du chemin du dossier base 4D Client |
+| * | Opérateur | → | Retourne le dossier de la base hôte |
| Résultat | Text | ← | Chemin d'accès du dossier désigné |
@@ -213,7 +213,7 @@ Si le paramètre *dossier* est invalide ou si le chemin d'accès retourné est v
| | |
| --- | --- |
| Numéro de commande | 485 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
index 237067df5b2530..0a19b46ccfa4d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-blobs-cache-priority
displayed_sidebar: docs
---
-**Get adjusted blobs cache priority** ( *laTable* ) : Integer
+**Get adjusted blobs cache priority** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle connaître la valeur de priorité des "blobs" |
+| laTable | Table | → | Table pour laquelle connaître la valeur de priorité des "blobs" |
| Résultat | Integer | ← | Valeur de priorité courante pour les champs "blobs" |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1428 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
index dbd931dfa9d987..0d5bc5e46dd491 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ pour lequel connaître la valeur de priorité des index |
+| leField | Field | → | Champ pour lequel connaître la valeur de priorité des index |
| Résultat | Integer | ← | Valeur de priorité courante des index du champ |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1427 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
index 3eae6f2edf9cb2..8c712d55cf74a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-table-cache-priority
displayed_sidebar: docs
---
-**Get adjusted table cache priority** ( *laTable* ) : Integer
+**Get adjusted table cache priority** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle connaître la valeur de priorité des données scalaires |
+| laTable | Table | → | Table pour laquelle connaître la valeur de priorité des données scalaires |
| Résultat | Integer | ← | Valeur de priorité courante pour les champs scalaires |
@@ -33,6 +33,6 @@ Les types de données scalaires incluent les types date/heure, numériques et al
| | |
| --- | --- |
| Numéro de commande | 1426 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
index 0472c5a3bb13f0..a4b5b9b8dd7262 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/get-allowed-methods
displayed_sidebar: docs
---
-**GET ALLOWED METHODS** ( *tabMéthodes* )
+**GET ALLOWED METHODS** ( *tabMéthodes* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Cet exemple permet d’autoriser ponctuellement un ensemble de méthodes spécif
| | |
| --- | --- |
| Numéro de commande | 908 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
index 2a5e60b352080a..96fc6d4e6b00ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/get-application-color-scheme
displayed_sidebar: docs
---
-**Get Application color scheme** {( * )} : Text
+**Get Application color scheme** ( * ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourne le schéma couleur de la base hôte |
+| * | Opérateur | → | Retourne le schéma couleur de la base hôte |
| Résultat | Text | ← | Schéma de couleur de l'application courante |
@@ -49,6 +49,6 @@ Pour plus de détails sur les noms des schémas de couleur, veuillez vous report
| | |
| --- | --- |
| Numéro de commande | 1763 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
index 1b75828279d157..85cdebcb41b58b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Par défaut, les assertions sont actives mais elles peuvent avoir été désacti
| | |
| --- | --- |
| Numéro de commande | 1130 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
index 99234b71886b86..49027a8b9672df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/get-automatic-relations
displayed_sidebar: docs
---
-**GET AUTOMATIC RELATIONS** ( *aller* ; *retour* )
+**GET AUTOMATIC RELATIONS** ( *aller* : Boolean ; *retour* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -36,6 +36,6 @@ Reportez-vous à l'exemple de la commande [GET FIELD RELATION](get-field-relatio
| | |
| --- | --- |
| Numéro de commande | 899 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
index c4c05dbcdf5593..d4536fc92254f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Voir l'exemple de la commande [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Numéro de commande | 1432 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
index bff1642a2fd494..e7e95dc98c85d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si aucune imprimante n'est installée, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 788 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
index 586b032a58929d..3eb5e414a3b367 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-localization
displayed_sidebar: docs
---
-**Get database localization** {( {*typeLangue*}{;}{*} )} : Text
+**Get database localization** ( {*typeLangue* : Integer}{;}{*} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeLangue | Integer | → | Type de langue |
-| * | Opérateur | → | Return information about host database |
+| typeLangue | Integer | → | Type de langue |
+| * | Opérateur | → | Return information about host database |
| Résultat | Text | ← | Code de la langue utilisée |
@@ -56,6 +56,6 @@ La langue courante de la base définit le dossier .lproj dans lequel le programm
| | |
| --- | --- |
| Numéro de commande | 1009 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
index e8375316d3a77b..37f5416c1fc15e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-parameter
displayed_sidebar: docs
---
-**Get database parameter** ( {*laTable* ;} *sélecteur* {; *valeurAlpha*} ) : Real
+**Get database parameter** ( {*laTable* : Table ;} *sélecteur* : Integer {; *valeurAlpha* : Text} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table du paramètre ou Table par défaut si ce paramètre est omis |
-| sélecteur | Integer | → | Code du paramètre de la base |
+| laTable | Table | → | Table du paramètre ou Table par défaut si ce paramètre est omis |
+| sélecteur | Integer | → | Code du paramètre de la base |
| valeurAlpha | Text | ← | Valeur alpha du paramètre |
| Résultat | Real | ← | Valeur du paramètre |
@@ -826,6 +826,6 @@ Dans la [On Startup database method](on-startup-database-method.md), vous pouvez
| | |
| --- | --- |
| Numéro de commande | 643 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
index 7d48ef3a6e8c48..15195c017c492d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si aucun utilisateur par défaut n’est défini, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 826 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
index 299758d2e14b50..3970d923741d9e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-document-icon
displayed_sidebar: docs
---
-**GET DOCUMENT ICON** ( *cheminDoc* ; *icône* {; *taille*} )
+**GET DOCUMENT ICON** ( *cheminDoc* : Text ; *icône* : Picture, Picture {; *taille* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminDoc | Text | → | Nom ou chemin d’accès du fichier duquel obtenir l’icône ou chaîne vide pour afficher la boîte de dialogue d’ouverture de fichiers |
+| cheminDoc | Text | → | Nom ou chemin d’accès du fichier duquel obtenir l’icône ou chaîne vide pour afficher la boîte de dialogue d’ouverture de fichiers |
| icône | Picture, Picture | ← | Icône du document |
-| taille | Integer | → | Taille de l’icône (en pixels) |
+| taille | Integer | → | Taille de l’icône (en pixels) |
@@ -32,7 +32,7 @@ Le paramètre optionnel *taille* vous permet d’indiquer les dimensions de l’
| | |
| --- | --- |
| Numéro de commande | 700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
index 2fbe3a891b4ccb..3ea995cf039c07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-position
displayed_sidebar: docs
---
-**Get document position** ( *docRef* ) : Real
+**Get document position** ( *docRef* : Time ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Numéro de référence de document |
+| docRef | Time | → | Numéro de référence de document |
| Résultat | Real | ← | Position dans le fichier (exprimée en octets) à partir du début du fichier |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 481 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
index c30916308c4756..97e026d846c19e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-properties
displayed_sidebar: docs
---
-**GET DOCUMENT PROPERTIES** ( *nomFichier* ; *verrouillé* ; *invisible* ; créé le ; créé à ; modifié le ; modifié à )
+**GET DOCUMENT PROPERTIES** ( *nomFichier* : Text ; *verrouillé* : Boolean ; *invisible* : Boolean ; créé le ; créé à ; modifié le ; modifié à )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom du document |
+| nomFichier | Text | → | Nom du document |
| verrouillé | Boolean | ← | Verrouillé (Vrai) ou non verrouillé (Faux) |
| invisible | Boolean | ← | Invisible (Vrai) ou visible (Faux) |
| créé le | Date | ← | Date de création |
@@ -208,7 +208,7 @@ Une fois que cela est implémenté dans votre base, il suffit d'écrire la méth
| | |
| --- | --- |
| Numéro de commande | 477 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
index a5fe0bfcc74b05..d4423b67741fdb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/get-document-size
displayed_sidebar: docs
---
-**Get document size** ( *document* {; *} ) : Real
+**Get document size** ( *document* : Text, Time {; *} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Text, Time | → | Numéro de référence de document ou Nom de document |
-| * | Opérateur | → | (Mac OS uniquement) Si omis : taille de la data fork, si passé : taille de la resource fork |
+| document | Text, Time | → | Numéro de référence de document ou Nom de document |
+| * | Opérateur | → | (Mac OS uniquement) Si omis : taille de la data fork, si passé : taille de la resource fork |
| Résultat | Real | ← | Taille (en octets) de document |
@@ -35,7 +35,7 @@ Sous Mac OS, si vous ne passez pas le paramètre optionnel *\**, la taille de la
| | |
| --- | --- |
| Numéro de commande | 479 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
index 47ad0663aa0b28..dc2b006940b62c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ Voici un exemple de traitement à la volée des caractères saisis dans un champ
| | |
| --- | --- |
| Numéro de commande | 655 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
index c1ace322e3b603..61513df851ff20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
@@ -5,11 +5,11 @@ slug: /commands/get-external-data-path
displayed_sidebar: docs
---
-**Get external data path** ( *leChamp* ) : Text
+**Get external data path** ( *leChamp* : Text, Blob, Picture ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leChamp | Text, Blob, Picture | → | Champ dont vous souhaitez obtenir le lieu de stockage |
+| leChamp | Text, Blob, Picture | → | Champ dont vous souhaitez obtenir le lieu de stockage |
| Résultat | Text | ← | Chemin d’accès complet du fichier de stockage externe |
@@ -37,6 +37,6 @@ Cette commande vous permet notamment de recopier le fichier externe.
| | |
| --- | --- |
| Numéro de commande | 1133 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
index da70f7453fab11..1134df80af9a98 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-entry-properties
displayed_sidebar: docs
---
-**GET FIELD ENTRY PROPERTIES** ( *ptrChp* ; *énumération* ; *obligatoire* ; *nonSaisissable* ; *nonModifiable* )
**GET FIELD ENTRY PROPERTIES** ( *numTable* ; *numChamp* ; *énumération* ; *obligatoire* ; *nonSaisissable* ; *nonModifiable* )
+**GET FIELD ENTRY PROPERTIES** ( *ptrChp* : Pointeur, Entier long ; *énumération* : Text ; *obligatoire* : Boolean ; *nonSaisissable* : Boolean ; *nonModifiable* : Boolean )
**GET FIELD ENTRY PROPERTIES** ( *numTable* : Pointeur, Entier long ; *numChamp* : Integer ; *énumération* : Text ; *obligatoire* : Boolean ; *nonSaisissable* : Boolean ; *nonModifiable* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
-| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
+| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
+| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
| énumération | Text | ← | Nom de l’énumération associée ou Chaîne vide |
| obligatoire | Boolean | ← | Vrai = Obligatoire, Faux = Facultatif |
| nonSaisissable | Boolean | ← | Vrai = Non saisissable, Faux = Saisissable |
@@ -47,6 +47,6 @@ Si aucune énumération n’est associée au champ, ou si son type n’admet pas
| | |
| --- | --- |
| Numéro de commande | 685 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
index 8d8e9306c87c3a..5d9bebe3b9286d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-properties
displayed_sidebar: docs
---
-**GET FIELD PROPERTIES** ( *ptrChp* |; *champType* {; *champLong* {; *indexé* {; *unique* {; *invisible*}}}} )
**GET FIELD PROPERTIES** ( *numTable* ; *numChamp* ; *champType* {; *champLong* {; *indexé* {; *unique* {; *invisible*}}}} )
+**GET FIELD PROPERTIES** ( *ptrChp* : Pointeur, Entier long |; *champType* : Integer {; *champLong* : Integer {; *indexé* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
**GET FIELD PROPERTIES** ( *numTable* : Pointeur, Entier long ; *numChamp* : Integer ; *champType* : Integer {; *champLong* : Integer {; *indexé* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
-| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
+| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
+| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
| champType | Integer | ← | Type de champ |
| champLong | Integer | ← | Longueur du champ (si alphanumérique) |
| indexé | Boolean | ← | Vrai = Indexé, Faux = Non indexé |
@@ -80,6 +80,6 @@ L'exemple suivant récupère dans les variables *vType*, *vLong*, *vIndex*, *vUn
| | |
| --- | --- |
| Numéro de commande | 258 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
index 623deb5ebe8155..a618ac32ac38b6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
@@ -5,14 +5,14 @@ slug: /commands/get-field-relation
displayed_sidebar: docs
---
-**GET FIELD RELATION** ( *champN* ; *aller* ; *retour* {; *} )
+**GET FIELD RELATION** ( *champN* : Field ; *aller* : Integer ; *retour* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champN | Field | → | Champ de départ du lien |
+| champN | Field | → | Champ de départ du lien |
| aller | Integer | ← | Statut du lien aller |
| retour | Integer | ← | Statut du lien retour |
-| * | Opérateur | → | • Si passé : aller et retour retournent le statut courant effectif du lien (valeurs 2 ou 3 uniquement)• Si omis (défaut) : aller et retour peuvent retourner la valeur 1 si le lien n’a pas été modifié par programmation |
+| * | Opérateur | → | • Si passé : aller et retour retournent le statut courant effectif du lien (valeurs 2 ou 3 uniquement)• Si omis (défaut) : aller et retour peuvent retourner la valeur 1 si le lien n’a pas été modifié par programmation |
@@ -90,6 +90,6 @@ Le code ci-dessous illustre les différentes possibilités offertes par les comm
| | |
| --- | --- |
| Numéro de commande | 920 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
index f7d32d58d2ab1a..0ff45abeb860c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
@@ -5,11 +5,11 @@ slug: /commands/get-field-titles
displayed_sidebar: docs
---
-**GET FIELD TITLES** ( *laTable* ; *titresChamps* ; *numChamps* )
+**GET FIELD TITLES** ( *laTable* : Table ; *titresChamps* : Text array ; *numChamps* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez connaître les noms des champs |
+| laTable | Table | → | Table dont vous souhaitez connaître les noms des champs |
| titresChamps | Text array | ← | Noms courants des champs |
| numChamps | Integer array | ← | Numéros des champs |
@@ -33,6 +33,6 @@ Dans les deux cas, la commande ne retourne pas les champs déclarés invisibles.
| | |
| --- | --- |
| Numéro de commande | 804 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
index 8d69d1e4ea8fef..d03071984be3f6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/get-file-from-pasteboard
displayed_sidebar: docs
---
-**Get file from pasteboard** ( *indiceN* ) : Text
+**Get file from pasteboard** ( *indiceN* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| indiceN | Integer | → | Nième fichier inclus dans le glisser |
+| indiceN | Integer | → | Nième fichier inclus dans le glisser |
| Résultat | Text | ← | Chemin d'accès de fichier extrait du conteneur de données |
@@ -47,6 +47,6 @@ L’exemple suivant permet de récupérer dans un tableau tous les chemins d’a
| | |
| --- | --- |
| Numéro de commande | 976 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
index 98a74eec9369f9..01701add364892 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Vous souhaitez vérifier si l'utilisateur courant appartient au groupe "plugins"
| | |
| --- | --- |
| Numéro de commande | 1738 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
index b572da2b48801c..f2adf36427d63b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-group-list
displayed_sidebar: docs
---
-**GET GROUP LIST** ( *nomsGroupes* ; *numérosGroupes* )
+**GET GROUP LIST** ( *nomsGroupes* : Text array ; *numérosGroupes* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 610 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
index 96a8d4c8166d88..d65aa303ed5c16 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-group-properties
displayed_sidebar: docs
---
-**GET GROUP PROPERTIES** ( *réfGroupe* ; *nom* ; *propriétaire* {; *membres*} )
+**GET GROUP PROPERTIES** ( *réfGroupe* : Integer ; *nom* : Text ; *propriétaire* : Integer {; *membres* : Integer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfGroupe | Integer | → | Numéro de référence du groupe |
+| réfGroupe | Integer | → | Numéro de référence du groupe |
| nom | Text | ← | Nom du groupe |
| propriétaire | Integer | ← | Numéro de référence du propriétaire du groupe |
| membres | Integer array | ← | Membres du groupe |
@@ -45,7 +45,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 613 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
index b777c2ff41e0db..a39cc16c274a9d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlight
displayed_sidebar: docs
---
-**GET HIGHLIGHT** ( {* ;} *objet* ; *débutSél* ; *finSél* )
+**GET HIGHLIGHT** ( {* ;} *objet* : Field, Variable, any ; *débutSél* : Integer ; *finSél* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | Field, Variable, any | → | Nom d’objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | Field, Variable, any | → | Nom d’objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| débutSél | Integer | ← | Position du début de la sélection de texte |
| finSél | Integer | ← | Position de la fin de la sélection de texte |
@@ -68,6 +68,6 @@ Modification du style du texte sélectionné :
| | |
| --- | --- |
| Numéro de commande | 209 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
index db6b9661494894..1549da6939747a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlighted-records
displayed_sidebar: docs
---
-**GET HIGHLIGHTED RECORDS** ( {*laTable* ;} *nomEnsemble* )
+**GET HIGHLIGHTED RECORDS** ( {*laTable* : Table ;} *nomEnsemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle lire les enregistrements marqués Si omis, table du formulaire courant |
-| nomEnsemble | Text | → | Ensemble dans lequel stocker les enregistrements marqués |
+| laTable | Table | → | Table de laquelle lire les enregistrements marqués Si omis, table du formulaire courant |
+| nomEnsemble | Text | → | Ensemble dans lequel stocker les enregistrements marqués |
@@ -48,7 +48,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 902 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
index 09f9ad917ee0e6..68593a53c39622 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
@@ -5,13 +5,13 @@ slug: /commands/get-indexed-string
displayed_sidebar: docs
---
-**Get indexed string** ( *resNum* ; *strNum* {; *resFichier*} ) : Text
+**Get indexed string** ( *resNum* : Integer ; *strNum* : Integer {; *resFichier* : Time} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNum | Integer | → | Numéro de ressource ou Attribut 'id' de l'élément 'group' (XLIFF) |
-| strNum | Integer | → | Numéro de chaîne ou Attribut 'id' de l'élément 'trans-unit' (XLIFF) |
-| resFichier | Time | → | Numéro de référence de fichier de ressources Si omis : tous les fichiers XLIFF ou les fichiers de ressources ouverts |
+| resNum | Integer | → | Numéro de ressource ou Attribut 'id' de l'élément 'group' (XLIFF) |
+| strNum | Integer | → | Numéro de chaîne ou Attribut 'id' de l'élément 'trans-unit' (XLIFF) |
+| resFichier | Time | → | Numéro de référence de fichier de ressources Si omis : tous les fichiers XLIFF ou les fichiers de ressources ouverts |
| Résultat | Text | ← | Valeur de la chaîne indexée |
@@ -50,7 +50,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 510 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
index abdb45a34deae5..5a473e26a793c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-font
displayed_sidebar: docs
---
-**Get list item font** ( {* ;} *liste* ; *refElément* ) : Text
**Get list item font** ( * ; *liste* ; * ) : Text
+**Get list item font** ( {* ;} *liste* : Integer, Text ; *refElément* : Entier long, Opérateur ) : Text
**Get list item font** ( * ; *liste* : Integer, Text ; * ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
| Résultat | Text | ← | Nom de police |
@@ -36,6 +36,6 @@ Vous pouvez enfin passer *\** dans *réfElément* : dans ce cas, la commande s
| | |
| --- | --- |
| Numéro de commande | 954 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
index b2c20a27d3f1cf..1b170ad78a18ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-icon
displayed_sidebar: docs
---
-**GET LIST ITEM ICON** ( {* ;} *liste* ; *refElément* ; *icône* )
**GET LIST ITEM ICON** ( {* ;} *liste* ; * ; *icône* )
+**GET LIST ITEM ICON** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ; *icône* : Picture )
**GET LIST ITEM ICON** ( {* ;} *liste* : Integer, Text ; * ; *icône* : Picture )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
| icône | Picture | ← | Icône associée à l'élément |
@@ -43,6 +43,6 @@ Si aucune icône n’est associée à l’élément, la variable icône est reto
| | |
| --- | --- |
| Numéro de commande | 951 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
index 91f79de933c0ae..69357b5db828ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-parameter-arrays
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *liste* ; *refElément* ; *tabSélecteurs* {; *tabValeurs*} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *liste* ; * ; *tabSélecteurs* {; *tabValeurs*} )
+**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *liste* : Integer, Text ; *refElément* : Entier long, Opérateur ; *tabSélecteurs* : Text array {; *tabValeurs* : Text array} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *liste* : Integer, Text ; * ; *tabSélecteurs* : Text array {; *tabValeurs* : Text array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne)Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ouNom d'objet de type liste (si * passé) |
-| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou0 pour le dernier élément ajouté à la liste ou* pour l’élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne)Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ouNom d'objet de type liste (si * passé) |
+| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou0 pour le dernier élément ajouté à la liste ou* pour l’élément courant de la liste |
| tabSélecteurs | Text array | ← | Tableau des noms de paramètres |
| tabValeurs | Text array | ← | Tableau des valeurs de paramètres |
@@ -80,6 +80,6 @@ Si on souhaite récupérer également les valeurs des paramètres, on peut écri
| | |
| --- | --- |
| Numéro de commande | 1195 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
index d6fac1c1e8ea15..85c7dcfce894e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
@@ -5,14 +5,14 @@ slug: /commands/get-list-item-parameter
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER** ( {* ;} *liste* ; *refElément* ; *sélecteur* ; *valeur* )
**GET LIST ITEM PARAMETER** ( * ; *liste* ; * ; *sélecteur* ; *valeur* )
+**GET LIST ITEM PARAMETER** ( {* ;} *liste* : Integer, Text ; *refElément* : Entier long, Opérateur ; *sélecteur* : Text ; *valeur* : Text, Boolean, Real )
**GET LIST ITEM PARAMETER** ( * ; *liste* : Integer, Text ; * ; *sélecteur* : Text ; *valeur* : Text, Boolean, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| sélecteur | Text | → | Constante de paramètre |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| sélecteur | Text | → | Constante de paramètre |
| valeur | Text, Boolean, Real | ← | Valeur courante du paramètre |
@@ -40,6 +40,6 @@ Vous pouvez passer dans *sélecteur* la constante Additional text ou Associated
| | |
| --- | --- |
| Numéro de commande | 985 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
index 7a6475eef9731d..503a124977dd67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-properties
displayed_sidebar: docs
---
-**GET LIST ITEM PROPERTIES** ( {* ;} *liste* ; *refElément* ; *saisissable* {; *style* {; *icône* {; *couleur*}}} )
**GET LIST ITEM PROPERTIES** ( * ; *liste* ; * ; *saisissable* {; *style* {; *icône* {; *couleur*}}} )
+**GET LIST ITEM PROPERTIES** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ; *saisissable* : Boolean {; *style* : Integer {; *icône* : Text, Integer {; *couleur* : Integer}}} )
**GET LIST ITEM PROPERTIES** ( * ; *liste* : Integer, Text ; * ; *saisissable* : Boolean {; *style* : Integer {; *icône* : Text, Integer {; *couleur* : Integer}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
| saisissable | Boolean | ← | Vrai = Saisissable, Faux = Non-saisissable |
| style | Integer | ← | Style de police de l'élément |
| icône | Text, Integer | ← | 131072 + numéro de référence d'image |
@@ -57,6 +57,6 @@ Pour plus d'informations sur ces propriétés, reportez-vous à la description d
| | |
| --- | --- |
| Numéro de commande | 631 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
index eeb956fa4697d3..912815dd454fe7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item
displayed_sidebar: docs
---
-**GET LIST ITEM** ( {* ;} *liste* ; positionElém ; *réfElément* ; *libelléElément* {; sous_Liste ; *déployée*} )
**GET LIST ITEM** ( {* ;} *liste* ; * ; *réfElément* ; *libelléElément* {; sous_Liste ; *déployée*} )
+**GET LIST ITEM** ( {* ;} *liste* : Integer, Text ; positionElém ; *réfElément* : Integer ; *libelléElément* : Text {; sous_Liste ; *déployée* : Boolean} )
**GET LIST ITEM** ( {* ;} *liste* : Integer, Text ; * ; *réfElément* : Integer ; *libelléElément* : Text {; sous_Liste ; *déployée* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| positionElém | * | Opérateur, Entier long | → | Position de l'élément dans la ou les liste(s) déployée(s)/contractée(s) ou * pour l‘élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| positionElém | * | Opérateur, Entier long | → | Position de l'élément dans la ou les liste(s) déployée(s)/contractée(s) ou * pour l‘élément courant de la liste |
| réfElément | Integer | ← | Numéro de référence de l'élément |
| libelléElément | Text | ← | Libellé de l'élément |
| sous_Liste | Integer | ← | Numéro de référence de sous-liste (s'il y en a) |
@@ -77,6 +77,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 378 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
index 1c2e04b5e08d1c..28c6f52200c1e0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-list-properties
displayed_sidebar: docs
---
-**GET LIST PROPERTIES** ( *liste* ; *apparence* {; *icône* {; *hauteurLigne* {; *doubleClic* {; *multiSélection* {; *modifiable*}}}}} )
+**GET LIST PROPERTIES** ( *liste* : Integer ; *apparence* : Integer {; *icône* : Integer {; *hauteurLigne* : Integer {; *doubleClic* : Integer {; *multiSélection* : Integer {; *modifiable* : Integer}}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de la liste |
+| liste | Integer | → | Numéro de référence de la liste |
| apparence | Integer | ← | Style graphique de la liste 1 = Liste hiérarchique à la Macintosh 2 = Liste hiérarchique à la Windows |
| icône | Integer | ← | *** Paramètre obsolète, retourne 0 *** |
| hauteurLigne | Integer | ← | Hauteur minimale de la ligne (pixels) |
@@ -43,6 +43,6 @@ Pour une description complète de ces propriétés d'apparence et de comportemen
| | |
| --- | --- |
| Numéro de commande | 632 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
index 63a95febf3822a..cce8d09be4ddc8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
@@ -5,11 +5,11 @@ slug: /commands/get-macro-parameter
displayed_sidebar: docs
---
-**GET MACRO PARAMETER** ( *sélecteur* ; *paramTexte* )
+**GET MACRO PARAMETER** ( *sélecteur* : Integer ; *paramTexte* )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Sélection à utiliser |
+| sélecteur | Integer | → | Sélection à utiliser |
| paramText | Text | ← | Texte récupéré |
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de [SET MACRO PARAMETER](set-macro-parameter.md).
| | |
| --- | --- |
| Numéro de commande | 997 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
index aac1cc56143e1c..5ab0fd3871109f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-bar-reference
displayed_sidebar: docs
---
-**Get menu bar reference** {( *process* )} : Text
+**Get menu bar reference** ( *process* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de référence du process |
+| process | Integer | → | Numéro de référence du process |
| Résultat | Text | ← | Identifiant de la barre de menus |
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [GET MENU ITEMS](get-menu-items.md).
| | |
| --- | --- |
| Numéro de commande | 979 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
index 0f96efaf6814c1..51402e85e64674 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/get-menu-item-icon
displayed_sidebar: docs
---
-**GET MENU ITEM ICON** ( *menu* ; *ligneMenu* ; *refIcône* {; *process*} )
+**GET MENU ITEM ICON** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *refIcône* : Text, Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
| refIcône | Text, Integer | ← | Nom ou numéro de l’image associée à la ligne de menu |
-| process | Integer | → | Numéro de process |
+| process | Integer | → | Numéro de process |
@@ -39,6 +39,6 @@ Si aucune icône n’est associée à la ligne, la commande retourne une valeur
| | |
| --- | --- |
| Numéro de commande | 983 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
index e047bab4dd8837..b50ec75d8c9694 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-key
displayed_sidebar: docs
---
-**Get menu item key** ( *menu* ; *ligneMenu* {; *process*} ) : Integer
+**Get menu item key** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de la ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de la ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Integer | ← | Code de caractère de de la touche de raccourci standard associée à la ligne de menu |
@@ -54,7 +54,7 @@ Pour obtenir le raccourci clavier associé à une ligne de menu, il est utile de
| | |
| --- | --- |
| Numéro de commande | 424 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
index 4dd4a1c3df7564..e1466503f49d69 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-mark
displayed_sidebar: docs
---
-**Get menu item mark** ( *menu* ; *ligneMenu* {; *process*} ) : Text
+**Get menu item mark** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Text | ← | Marque de ligne de menu courante |
@@ -45,7 +45,7 @@ L'exemple suivant inverse l'état marqué d'une ligne de menu :
| | |
| --- | --- |
| Numéro de commande | 428 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
index f62e1a71d8d606..171e947d6cf09e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-method
displayed_sidebar: docs
---
-**Get menu item method** ( *menu* ; *ligneMenu* {; *process*} ) : Text
+**Get menu item method** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| process | Integer | → | Numéro de process |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| process | Integer | → | Numéro de process |
| Résultat | Text | ← | Nom de la méthode |
@@ -34,6 +34,6 @@ La commande retourne le nom de la méthode 4D sous la forme d’une chaîne de c
| | |
| --- | --- |
| Numéro de commande | 981 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
index c171de7640db7f..990dfa04e39186 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-modifiers
displayed_sidebar: docs
---
-**Get menu item modifiers** ( *menu* ; *ligneMenu* {; *process*} ) : Integer
+**Get menu item modifiers** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ouNuméro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| process | Integer | → | Numéro de process |
+| menu | Integer, Text | → | Référence de menu ouNuméro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| process | Integer | → | Numéro de process |
| Résultat | Integer | ← | Touche(s) de modification associée(s) à la ligne de menu |
@@ -52,6 +52,6 @@ Reportez-vous à l'exemple de la commande [Get menu item key](get-menu-item-key.
| | |
| --- | --- |
| Numéro de commande | 980 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
index 30f676513b634f..0f7bf26ad911ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-item-parameter
displayed_sidebar: docs
---
-**Get menu item parameter** ( *menu* ; *ligneMenu* ) : Text
+**Get menu item parameter** ( *menu* : Integer, Text ; *ligneMenu* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
| Résultat | Text | ← | Paramètre personnalisé de la ligne de menu |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1003 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
index d89b118978f3cc..081387b33895d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/get-menu-item-property
displayed_sidebar: docs
---
-**GET MENU ITEM PROPERTY** ( *menu* ; *ligneMenu* ; *propriété* ; *valeur* {; *process*} )
+**GET MENU ITEM PROPERTY** ( *menu* : Integer ; *ligneMenu* : Integer ; *propriété* : Text ; *valeur* : any {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| propriété | Text | → | Type de propriété |
+| menu | Integer | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| propriété | Text | → | Type de propriété |
| valeur | any | ← | Valeur de la propriété |
-| process | Integer | → | Numéro de process |
+| process | Integer | → | Numéro de process |
@@ -37,6 +37,6 @@ Passez dans le paramètre *propriété* la propriété dont vous souhaitez obten
| | |
| --- | --- |
| Numéro de commande | 972 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
index ee454fdc90081e..2767a9c42620eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-style
displayed_sidebar: docs
---
-**Get menu item style** ( *menu* ; *ligneMenu* {; *process*} ) : Integer
+**Get menu item style** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Integer | ← | Style courant de la ligne de menu |
@@ -52,7 +52,7 @@ Si, par exemple, vous voulez tester si une ligne de menu est affichée en gras,
| | |
| --- | --- |
| Numéro de commande | 426 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
index e826af4b094d7a..f09faecb256fe8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item
displayed_sidebar: docs
---
-**Get menu item** ( *menu* ; *ligneMenu* {; *process*} ) : Text
+**Get menu item** ( *menu* : Integer, Text ; *ligneMenu* : Integer {; *process* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Text | ← | Libellé de la ligne de menu |
@@ -34,7 +34,7 @@ Si vous ne passez pas le paramètre *process*, **Get menu item** est appliquée
| | |
| --- | --- |
| Numéro de commande | 422 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
index a931e88ae3b3e4..a1ae73c24a607d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-items
displayed_sidebar: docs
---
-**GET MENU ITEMS** ( *menu* ; *tabTitresMenus* ; *tabRefsMenus* )
+**GET MENU ITEMS** ( *menu* : Integer, Text ; *tabTitresMenus* : Text array ; *tabRefsMenus* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
| tabTitresMenus | Text array | ← | Tableau des libellés du menu |
| tabRefsMenus | Text array | ← | Tableau des références du menu |
@@ -40,6 +40,6 @@ Vous souhaitez connaître le contenu de la barre de menus du process courant :
| | |
| --- | --- |
| Numéro de commande | 977 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
index 4628cbdb88a840..b235eb29c119f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-title
displayed_sidebar: docs
---
-**Get menu title** ( *menu* {; *process*} ) : Text
+**Get menu title** ( *menu* : Integer, Text {; *process* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| process | Integer | → | Numéro de référence de process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| process | Integer | → | Numéro de référence de process |
| Résultat | Text | ← | Titre du menu |
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Get menu title** s'applique à la bar
| | |
| --- | --- |
| Numéro de commande | 430 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
index 5919dc6699573f..1582cd69415b4e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
@@ -5,7 +5,7 @@ slug: /commands/get-missing-table-names
displayed_sidebar: docs
---
-**GET MISSING TABLE NAMES** ( *tabManquantes* )
+**GET MISSING TABLE NAMES** ( *tabManquantes* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Une fois que vous avez identifié les tables manquantes de la base, vous pouvez
| | |
| --- | --- |
| Numéro de commande | 1125 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
index 2789c61dbcae3c..ec652abc452fbc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
@@ -5,13 +5,13 @@ slug: /commands/get-pasteboard-data-type
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA TYPE** ( *signatures4D* ; *typesNatifs* {; *nomsFormats*} )
+**GET PASTEBOARD DATA TYPE** ( *signatures4D* : Text array ; *typesNatifs* : Text array {; *nomsFormats* : Text array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| signatures4D | Text array | ← | Signatures 4D des types de données |
| typesNatifs | Text array | ← | Types de données natifs |
-| nomsFormats | Text array | ← | Noms ou descriptions des formats|
+| nomsFormats | Text array | ← | Noms ou descriptions des formats |
@@ -39,6 +39,6 @@ Pour plus d’informations sur les types de données pris en charge, reportez-vo
| | |
| --- | --- |
| Numéro de commande | 958 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
index 5c5585a2148647..1a4c6cd3fe1f7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
@@ -5,11 +5,11 @@ slug: /commands/get-pasteboard-data
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA** ( *typeDonnées* ; *données* )
+**GET PASTEBOARD DATA** ( *typeDonnées* : Text ; *données* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeDonnées | Text | → | Type de données à extraire du conteneur |
+| typeDonnées | Text | → | Type de données à extraire du conteneur |
| données | Blob | ← | Données extraites du conteneur |
@@ -59,7 +59,7 @@ Si les données sont extraites correctement, la variable OK prend la valeur 1\.
| | |
| --- | --- |
| Numéro de commande | 401 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
index 0bde7f2b2da6fd..06d208a7345043 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-file-name
displayed_sidebar: docs
---
-**Get picture file name** ( *image* ) : Text
+**Get picture file name** ( *image* : Picture, Picture ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture, Picture | → | Image dont vous souhaitez obtenir le nom par défaut |
+| image | Picture, Picture | → | Image dont vous souhaitez obtenir le nom par défaut |
| Résultat | Text | ← | Nom par défaut du fichier image |
@@ -31,6 +31,6 @@ Si l’image n’a pas de nom par défaut, la commande retourne une chaîne vide
| | |
| --- | --- |
| Numéro de commande | 1171 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
index 51964ab8e4ac6b..d452615475c3b6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-formats
displayed_sidebar: docs
---
-**GET PICTURE FORMATS** ( *image* ; *tabCodecs* )
+**GET PICTURE FORMATS** ( *image* : Picture ; *tabCodecs* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | champ ou variable Image à analyser |
+| image | Picture | → | champ ou variable Image à analyser |
| tabCodecs | Text array | ← | Liste des codecs de l'image |
@@ -52,6 +52,6 @@ Vous souhaitez connaître les formats de l'image stockée dans un champ Image de
| | |
| --- | --- |
| Numéro de commande | 1406 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
index 225b082ede5b1e..9a96c6baac934c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-from-library
displayed_sidebar: docs
---
-**GET PICTURE FROM LIBRARY** ( *refImage * ; *image* )
**GET PICTURE FROM LIBRARY** ( *nomImage* ; *image* )
+**GET PICTURE FROM LIBRARY** ( *refImage* : Entier long, Chaîne ; *image* : Picture )
**GET PICTURE FROM LIBRARY** ( *nomImage* : Entier long, Chaîne ; *image* : Picture )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refImage | nomImage | Entier long, Chaîne | → | Numéro de référence ou Nom d'une image de la bibliothèque d’images |
+| refImage | nomImage | Entier long, Chaîne | → | Numéro de référence ou Nom d'une image de la bibliothèque d’images |
| image | Picture | ← | Image de la bibliothèque d'images |
@@ -67,7 +67,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 565 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
index 604ea7e164e67c..74403853763520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-pasteboard
displayed_sidebar: docs
---
-**GET PICTURE FROM PASTEBOARD** ( *image* )
+**GET PICTURE FROM PASTEBOARD** ( *image* : Picture )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ Si l'image est correctement extraite, OK prend la valeur 1\. Sinon, OK prend la
| | |
| --- | --- |
| Numéro de commande | 522 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
index c94e86b7d1dacb..c9f818e1f3fdd8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-picture-keywords
displayed_sidebar: docs
---
-**GET PICTURE KEYWORDS** ( *image* ; *tabMotsclés* {; *} )
+**GET PICTURE KEYWORDS** ( *image* : Picture, Picture ; *tabMotsclés* : Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture, Picture | → | Image dont vous souhaitez lire les mots-clés associés |
+| image | Picture, Picture | → | Image dont vous souhaitez lire les mots-clés associés |
| tabMotsclés | Text array | ← | Tableau contenant les mots-clés extraits |
-| * | Opérateur | → | Si passé = utiliser les valeurs distinctes |
+| * | Opérateur | → | Si passé = utiliser les valeurs distinctes |
@@ -39,6 +39,6 @@ Si l’image ne contient pas de mots-clés ou de métadonnées IPTC/Keywords, la
| | |
| --- | --- |
| Numéro de commande | 1142 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
index 73bd17d4cfd4b7..846b5c7e67dca8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
@@ -5,12 +5,12 @@ slug: /commands/get-picture-metadata
displayed_sidebar: docs
---
-**GET PICTURE METADATA** ( *image* ; *nomMeta* ; *contenuMeta* {; *nomMeta2* ; *contenuMeta2* ; ... ; *nomMetaN* ; *contenuMetaN*} )
+**GET PICTURE METADATA** ( *image* : Picture ; *nomMeta* : Text ; *contenuMeta* : Variable {; ...(*nomMeta* : Text, *contenuMeta* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image dont vous souhaitez lire les métadonnées |
-| nomMeta | Text | → | Nom ou chemin du bloc à lire |
+| image | Picture | → | Image dont vous souhaitez lire les métadonnées |
+| nomMeta | Text | → | Nom ou chemin du bloc à lire |
| contenuMeta | Variable | ← | Contenu de la métadonnée |
@@ -104,7 +104,7 @@ La variable système OK retourne 1 si la récupération des métadonnées s’es
| | |
| --- | --- |
| Numéro de commande | 1122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
index 8b28785ec91faf..270cc0fa2f76f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
@@ -5,14 +5,13 @@ slug: /commands/get-picture-resource
displayed_sidebar: docs
---
-**GET PICTURE RESOURCE** ( *resNum* ; *resDonnées* {; *resFichier*} )
+**GET PICTURE RESOURCE** ( *resNum* : Integer ; *resDonnées* : Field, Variable {; *resFichier* : Time} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNum | Integer | → | Numéro de ressource |
-| resDonnées | Field, Variable | → | Champ ou variable image devant recevoir l'image |
-| ← | Contenu de la ressource PICT |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
+| resNum | Integer | → | Numéro de ressource |
+| resDonnées | Field, Variable | ↔ | *in:* Picture field or variable to receive the picture
*out:* Contents of the PICT resource |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
@@ -47,7 +46,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 502 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
index c18ec13149c8e2..a2ea6fd526937a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
@@ -5,11 +5,11 @@ slug: /commands/get-plugin-access
displayed_sidebar: docs
---
-**Get plugin access** ( *plugIn* ) : Text
+**Get plugin access** ( *plugIn* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Numéro du plug-in |
+| plugIn | Integer | → | Numéro du plug-in |
| Résultat | Text | ← | Nom du groupe associé au plug-in |
@@ -39,6 +39,6 @@ Passez dans le paramètre *plugIn* le numéro du plug-in duquel vous souhaitez c
| | |
| --- | --- |
| Numéro de commande | 846 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
index f41cf82103e712..159c0300f81461 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/get-pointer
displayed_sidebar: docs
---
-**Get pointer** ( *nomVar* ) : Pointer
+**Get pointer** ( *nomVar* : Text ) : Pointer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomVar | Text | → | Nom d'une variable process ou interprocess |
+| nomVar | Text | → | Nom d'une variable process ou interprocess |
| Résultat | Pointer | ← | Pointeur vers une variable process ou interprocess |
@@ -56,6 +56,6 @@ Utilisation de pointeurs vers des éléments de tableaux à deux dimensions :
| | |
| --- | --- |
| Numéro de commande | 304 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
index fb01769d833437..ab0b349f867b23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-marker
displayed_sidebar: docs
---
-**Get print marker** ( *numTaquet* ) : Integer
+**Get print marker** ( *numTaquet* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTaquet | Integer | → | Numéro de taquet |
+| numTaquet | Integer | → | Numéro de taquet |
| Résultat | Integer | ← | Position du taquet |
@@ -65,6 +65,6 @@ Reportez-vous à l’exemple de la commande [SET PRINT MARKER](set-print-marker.
| | |
| --- | --- |
| Numéro de commande | 708 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
index a6d9710780c56d..0631860621aa5e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-option
displayed_sidebar: docs
---
-**GET PRINT OPTION** ( *option* ; *valeur1* {; *valeur2*} )
+**GET PRINT OPTION** ( *option* : Integer ; *valeur1* : Integer, Text {; *valeur2* : Integer, Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Numéro d’option ou Code d'option PDF |
+| option | Integer | → | Numéro d’option ou Code d'option PDF |
| valeur1 | Integer, Text | ← | Valeur 1 de l’option |
| valeur2 | Integer, Text | ← | Valeur 2 de l’option |
@@ -72,7 +72,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 734 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
index f3029fa8be96cd..ef19ade4b41a87 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ A noter que l’utilisateur peut modifier cette option avant de valider la boît
| | |
| --- | --- |
| Numéro de commande | 1197 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
index 53f433d74cd1c6..caf0db16058cc9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-area
displayed_sidebar: docs
---
-**GET PRINTABLE AREA** ( *hauteur* {; *largeur*} )
+**GET PRINTABLE AREA** ( *hauteur* : Integer {; *largeur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ Pour connaître la taille totale de la page, vous pouvez :
| | |
| --- | --- |
| Numéro de commande | 703 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
index b9b0519874d51b..0fcccee120ed51 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-margin
displayed_sidebar: docs
---
-**GET PRINTABLE MARGIN** ( *gauche* ; *haut* ; *droite* ; *bas* )
+**GET PRINTABLE MARGIN** ( *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -48,6 +48,6 @@ Il est possible de baser l’impression des formulaires effectuée à l’aide d
| | |
| --- | --- |
| Numéro de commande | 711 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
index 71f635149b3a79..699dfc0eba18d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
@@ -34,6 +34,6 @@ Les marges d’impression gauche et droite n’influent pas sur la valeur retour
| | |
| --- | --- |
| Numéro de commande | 702 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
index 93c7e47e357022..10cc912370b507 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
@@ -5,12 +5,12 @@ slug: /commands/get-process-variable
displayed_sidebar: docs
---
-**GET PROCESS VARIABLE** ( *process* ; *varSource* ; *varDestination* {; *varSource2* ; *varDestination2* ; ... ; *varSourceN* ; *varDestinationN*} )
+**GET PROCESS VARIABLE** ( *process* : Integer ; *varSource* : Variable ; *varDestination* : Variable {; ...(*varSource* : Variable, *varDestination* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de process source |
-| varSource | Variable | → | Variable source |
+| process | Integer | → | Numéro de process source |
+| varSource | Variable | → | Variable source |
| varDestination | Variable | ← | Variable de destination |
@@ -122,6 +122,6 @@ Reportez-vous à l'exemple de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 371 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
index fc13146fa741d5..cff199197c1d26 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/get-query-destination
displayed_sidebar: docs
---
-**GET QUERY DESTINATION** ( *destinationType* ; *destinationObjet* ; *destinationPtr* )
+**GET QUERY DESTINATION** ( *destinationType* : Integer ; *destinationObjet* : Text ; *destinationPtr* : Pointer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ Nous souhaitons modifier temporairement la destination de recherche, et rétabli
| | |
| --- | --- |
| Numéro de commande | 1155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
index 671c4cb8a25df1..4b573db0babc78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Par défaut, si aucune limite n’a été définie, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 1156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
index e22ea4e4de42cc..599629f77f36ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
@@ -5,7 +5,7 @@ slug: /commands/get-registered-clients
displayed_sidebar: docs
---
-**GET REGISTERED CLIENTS** ( *listeClients* ; *nbMéthodes* )
+**GET REGISTERED CLIENTS** ( *listeClients* : Text array ; *nbMéthodes* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ Si l’opération se déroule correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 650 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
index 1eb252f089cd78..7df27f23908ac6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-relation-properties
displayed_sidebar: docs
---
-**GET RELATION PROPERTIES** ( *ptrChp* ; *tableDest* ; *champDest* {; *discriminant* {; *allerAuto* {; *retourAuto*}}} )
**GET RELATION PROPERTIES** ( *numTable* ; *numChamp* ; *tableDest* ; *champDest* {; *discriminant* {; *allerAuto* {; *retourAuto*}}} )
+**GET RELATION PROPERTIES** ( *ptrChp* : Pointeur, Entier long ; *tableDest* : Integer ; *champDest* : Integer {; *discriminant* : Integer {; *allerAuto* : Boolean {; *retourAuto* : Boolean}}} )
**GET RELATION PROPERTIES** ( *numTable* : Pointeur, Entier long ; *numChamp* : Integer ; *tableDest* : Integer ; *champDest* : Integer {; *discriminant* : Integer {; *allerAuto* : Boolean {; *retourAuto* : Boolean}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
-| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
+| ptrChp | numTable | Pointeur, Entier long | → | Pointeur de champ ou Numéro de table |
+| numChamp | Integer | → | Numéro de champ si un numéro de table est passé en premier paramètre |
| tableDest | Integer | ← | Numéro de la table cible ou 0 si aucun lien ne part du champ |
| champDest | Integer | ← | Numéro du champ cible ou 0 si aucun lien ne part du champ |
| discriminant | Integer | ← | Numéro du champ discriminant ou 0 si aucun champ discriminant |
@@ -48,6 +48,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 686 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
index fd1a04cfc6ede7..354759e9ffdfac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-name
displayed_sidebar: docs
---
-**Get resource name** ( *resType* ; *resNum* {; *resFichier*} ) : Text
+**Get resource name** ( *resType* : Text ; *resNum* : Integer {; *resFichier* : Time} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resType | Text | → | Type de ressource (4 caractères) |
-| resNum | Integer | → | Numéro de référence de ressource (ID) |
-| resFichier | Time | → | Numéro de référence du fichier de ressource ou Tous les fichiers de ressources ouverts si omis |
+| resType | Text | → | Type de ressource (4 caractères) |
+| resNum | Integer | → | Numéro de référence de ressource (ID) |
+| resFichier | Time | → | Numéro de référence du fichier de ressource ou Tous les fichiers de ressources ouverts si omis |
| Résultat | Text | ← | Nom de la ressource |
@@ -30,6 +30,6 @@ Si la ressource n'existe pas, **Get resource name** retourne une chaîne vide.
| | |
| --- | --- |
| Numéro de commande | 513 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
index e5a97653305ba5..e3dd36c05aa3c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-properties
displayed_sidebar: docs
---
-**Get resource properties** ( *resType* ; *resNum* {; *resFichier*} ) : Integer
+**Get resource properties** ( *resType* : Text ; *resNum* : Integer {; *resFichier* : Time} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resType | Text | → | Type de ressource (4 caractères) |
-| resNum | Integer | → | Numéro de référence de ressource (ID) |
-| resFichier | Time | → | Numéro de référence du fichier de ressource ou Tous les fichiers de ressources ouverts si omis |
+| resType | Text | → | Type de ressource (4 caractères) |
+| resNum | Integer | → | Numéro de référence de ressource (ID) |
+| resFichier | Time | → | Numéro de référence du fichier de ressource ou Tous les fichiers de ressources ouverts si omis |
| Résultat | Integer | ← | Attributs de la ressource |
@@ -40,7 +40,7 @@ La variable OK prend la valeur 0 si la ressource n'existe pas, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 515 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
index 88e55928361598..5d190d2bd23d0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
@@ -5,15 +5,14 @@ slug: /commands/get-resource
displayed_sidebar: docs
---
-**GET RESOURCE** ( *resType* ; *resNum* ; *resDonnées* {; *resFichier*} )
+**GET RESOURCE** ( *resType* : Text ; *resNum* : Integer ; *resDonnées* : Blob {; *resFichier* : Time} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resType | Text | → | Type de ressource (4 caractères) |
-| resNum | Integer | → | Numéro de ressource |
-| resDonnées | Blob | → | Champ ou variable BLOB devant recevoir les données |
-| ← | Contenu de la ressource |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou Tous les fichiers de ressources ouverts si omis |
+| resType | Text | → | Type de ressource (4 caractères) |
+| resNum | Integer | → | Numéro de ressource |
+| resDonnées | Blob | ↔ | *in:* BLOB field or variable to receive the data
*out:* Contents of the resource |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou Tous les fichiers de ressources ouverts si omis |
@@ -33,9 +32,6 @@ Si vous passez un numéro de référence de fichier de ressources valide dans *r
Rappelez-vous que vous travaillez avec des ressources issues de Mac OS. Quelle que soit la plate-forme utilisée, les valeurs internes des ressources comme des entiers longs sont stockées avec l'ordre d'octets ("byte ordering") Mac OS. Sous Windows, pour les données des ressources standard (telles que les ressources listes de chaînes et les ressources images) l'ordre des octets est automatiquement inversé ("byte swapping") si nécessaire. D'un autre côté, si vous créez et utilisez vos propres structures internes de données, c'est à vous d'effectuer l'inversion d'octets des données lorsque vous les extrayez d'un BLOB (par exemple en passant Macintosh byte ordering à une commande telle que [BLOB to longint](blob-to-longint.md)).
-## Exemple
-
-Reportez-vous à l'exemple de la commande .
## Variables et ensembles système
@@ -54,7 +50,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 508 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
index b24352bd7357ec..9a8e4987359c3d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si aucune ligne de menu n’a été sélectionnée, la commande retourne une cha
| | |
| --- | --- |
| Numéro de commande | 1005 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
index 3fba0cffb27edb..8fe5bed5f8ad2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
@@ -5,7 +5,7 @@ slug: /commands/get-serial-port-mapping
displayed_sidebar: docs
---
-**GET SERIAL PORT MAPPING** ( *tabNums* ; *tabLibellés* )
+**GET SERIAL PORT MAPPING** ( *tabNums* : Integer array ; *tabLibellés* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Cette méthode projet permet d'adresser le même port série (sans protocole), q
| | |
| --- | --- |
| Numéro de commande | 909 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
index 40fd34b4e9adc1..afe49ddee67970 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-string-resource
displayed_sidebar: docs
---
-**Get string resource** ( *resNum* {; *resFichier*} ) : Text
+**Get string resource** ( *resNum* : Integer {; *resFichier* : Time} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNum | Integer | → | Numéro de ressource |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
+| resNum | Integer | → | Numéro de ressource |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
| Résultat | Text | ← | Contenu de la ressource STR |
@@ -48,7 +48,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 506 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
index 0ee0bc5636ac65..42e583f0d810e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
@@ -5,11 +5,11 @@ slug: /commands/get-style-sheet-info
displayed_sidebar: docs
---
-**GET STYLE SHEET INFO** ( *nomFeuilleStyle* ; *police* ; *taille* ; *styles* )
+**GET STYLE SHEET INFO** ( *nomFeuilleStyle* : Text ; *police* : Text ; *taille* : Integer ; *styles* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFeuilleStyle | Text | → | Nom de la feuille de style |
+| nomFeuilleStyle | Text | → | Nom de la feuille de style |
| police | Text | ← | Police de caractères |
| taille | Integer | ← | Taille de police |
| styles | Integer | ← | Valeur de style |
@@ -70,7 +70,7 @@ Vous souhaitez connaître la configuration actuelle de la feuille de style "Auto
| | |
| --- | --- |
| Numéro de commande | 1256 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
index 8351679d4cbc8b..37d07234b78e86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
@@ -5,11 +5,11 @@ slug: /commands/get-subrecord-key
displayed_sidebar: docs
---
-**Get subrecord key** ( *champID* ) : Integer
+**Get subrecord key** ( *champID* : Field ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champID | Field | → | Champ de type "Lien sous-table" ou de type "Entier long" d’une ancienne relation sous-table |
+| champID | Field | → | Champ de type "Lien sous-table" ou de type "Entier long" d’une ancienne relation sous-table |
| Entier long | Integer | ← | Clé interne du lien |
@@ -85,6 +85,6 @@ Ce code fonctionnera indifféremment avec un lien spécial ou standard.
| | |
| --- | --- |
| Numéro de commande | 1137 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
index 59f95c473c5e43..6853b147c5d41d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
@@ -5,11 +5,11 @@ slug: /commands/get-system-format
displayed_sidebar: docs
---
-**GET SYSTEM FORMAT** ( *format* ; *valeur* )
+**GET SYSTEM FORMAT** ( *format* : Integer ; *valeur* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| format | Integer | → | Formatage système à lire |
+| format | Integer | → | Formatage système à lire |
| valeur | Text | ← | Valeur de formatage définie dans le système |
@@ -48,6 +48,6 @@ Passez dans le paramètre *format* le type de paramètre dont vous souhaitez con
| | |
| --- | --- |
| Numéro de commande | 994 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
index 8f703f569bc458..ca3cc47e33d16a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-table-properties
displayed_sidebar: docs
---
-**GET TABLE PROPERTIES** ( *ptrTable* ; *invisible* {; *trigSvgdeNouv* {; *trigSvgdeEnr* {; *trigSupprEnr* {; *trigChargEnr*}}}} )
**GET TABLE PROPERTIES** ( *numTable* ; *invisible* {; *trigSvgdeNouv* {; *trigSvgdeEnr* {; *trigSupprEnr* {; *trigChargEnr*}}}} )
+**GET TABLE PROPERTIES** ( *ptrTable* : Pointeur, Entier long ; *invisible* : Boolean {; *trigSvgdeNouv* : Boolean {; *trigSvgdeEnr* : Boolean {; *trigSupprEnr* : Boolean {; *trigChargEnr* : Boolean}}}} )
**GET TABLE PROPERTIES** ( *numTable* : Pointeur, Entier long ; *invisible* : Boolean {; *trigSvgdeNouv* : Boolean {; *trigSvgdeEnr* : Boolean {; *trigSupprEnr* : Boolean {; *trigChargEnr* : Boolean}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptrTable | numTable | Pointeur, Entier long | → | Pointeur de table ou Numéro de table |
+| ptrTable | numTable | Pointeur, Entier long | → | Pointeur de table ou Numéro de table |
| invisible | Boolean | ← | Vrai = Invisible, Faux = Visible |
| trigSvgdeNouv | Boolean | ← | Vrai = Trigger “Sur sauvegarde nouvel enreg” activé, sinon Faux |
| trigSvgdeEnr | Boolean | ← | Vrai = Trigger “Sur sauvegarde enregistrement” activé, sinon Faux |
@@ -40,6 +40,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 687 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
index cab426824cf6f9..22b9dac9ae1756 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
@@ -5,7 +5,7 @@ slug: /commands/get-table-titles
displayed_sidebar: docs
---
-**GET TABLE TITLES** ( *titresTables* ; *numTables* )
+**GET TABLE TITLES** ( *titresTables* : Text array ; *numTables* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -32,6 +32,6 @@ Dans les deux cas, la commande ne retourne pas les tables déclarées invisibles
| | |
| --- | --- |
| Numéro de commande | 803 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
index 8c3a0d6ac37bca..512788666ef0ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si le texte est correctement extrait, la variable système OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 524 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
index 7e4640a4bcdb39..7d04cfe6ec1470 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-text-keywords
displayed_sidebar: docs
---
-**GET TEXT KEYWORDS** ( *texte* ; *tabMotsClés* {; *} )
+**GET TEXT KEYWORDS** ( *texte* : Text ; *tabMotsClés* : Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texte | Text | → | Texte original |
+| texte | Text | → | Texte original |
| tabMotsClés | Text array | ← | Tableau contenant les mots-clés |
-| * | Opérateur | → | Si passé = mots uniques |
+| * | Opérateur | → | Si passé = mots uniques |
@@ -89,6 +89,6 @@ Pour compter les mots d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1141 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
index 043642f5694fd8..c009c1e34b9342 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-text-resource
displayed_sidebar: docs
---
-**Get text resource** ( *resNum* {; *resFichier*} ) : Text
+**Get text resource** ( *resNum* : Integer {; *resFichier* : Time} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNum | Integer | → | Numéro de ressource |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
+| resNum | Integer | → | Numéro de ressource |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
| Résultat | Text | ← | Contenu de la ressource TEXT |
@@ -48,7 +48,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 504 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
index 2d685e95ba29f1..a855a616a8e446 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-user-list
displayed_sidebar: docs
---
-**GET USER LIST** ( *nomsUtil* ; *réfUtil* )
+**GET USER LIST** ( *nomsUtil* : Text array ; *réfUtil* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 609 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
index 8b589a059f011c..d6fa973ff8b618 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-user-properties
displayed_sidebar: docs
---
-**GET USER PROPERTIES** ( *réfUtilisateur* ; *nom* ; *démarrage* ; *motDePasse* ; *nbUtilisations* ; *dernièreUtilisation* {; *adhésions* {; *groupePropriétaire*}} )
+**GET USER PROPERTIES** ( *réfUtilisateur* : Integer ; *nom* : Text ; *démarrage* : Text ; *motDePasse* : Text ; *nbUtilisations* : Integer ; *dernièreUtilisation* : Date {; *adhésions* : Integer array {; *groupePropriétaire* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfUtilisateur | Integer | → | Numéro de référence unique de l'utilisateur |
+| réfUtilisateur | Integer | → | Numéro de référence unique de l'utilisateur |
| nom | Text | ← | Nom de l'utilisateur |
| démarrage | Text | ← | Nom de la méthode de démarrage |
| motDePasse | Text | ← | *** obsolète (chaîne vide) *** |
@@ -58,7 +58,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 611 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
index 270e80490c7a68..bd2e4a53447f67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-rect
displayed_sidebar: docs
---
-**GET WINDOW RECT** ( *gauche* ; *haut* ; *droite* ; *bas* {; *fenêtre*} )
+**GET WINDOW RECT** ( *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer {; *fenêtre* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| haut | Integer | ← | Coordonnée supérieure de l'intérieur de la fenêtre |
| droite | Integer | ← | Coordonnée droite de l'intérieur de la fenêtre |
| bas | Integer | ← | Coordonnée inférieure de l'intérieur de la fenêtre |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process si omis ou Fenêtre MDI si -1 (Windows) |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process si omis ou Fenêtre MDI si -1 (Windows) |
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 443 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
index 5feeef383b47c7..cd8c294de22478 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
@@ -5,11 +5,11 @@ slug: /commands/get-window-title
displayed_sidebar: docs
---
-**Get window title** {( *fenêtre* )} : Text
+**Get window title** ( *fenêtre* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
| Résultat | Text | ← | Titre de la fenêtre |
@@ -33,6 +33,6 @@ Reportez-vous à l'exemple de la commande [SET WINDOW TITLE](set-window-title.md
| | |
| --- | --- |
| Numéro de commande | 450 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
index 8662d1f45094e7..2865fd39fc46f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
@@ -5,12 +5,12 @@ slug: /commands/goto-object
displayed_sidebar: docs
---
-**GOTO OBJECT** ( {* ;} *objet* )
+**GOTO OBJECT** ( {* ;} *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est un champ ou une variable |
-| objet | Field, Variable | → | Nom d’objet (si * spécifié) sinon Variable ou champ saisissable à sélectionner |
+| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est un champ ou une variable |
+| objet | Field, Variable | → | Nom d’objet (si * spécifié) sinon Variable ou champ saisissable à sélectionner |
@@ -55,6 +55,6 @@ Reportez-vous à l'exemple de la commande [REJECT](reject.md).
| | |
| --- | --- |
| Numéro de commande | 206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
index 0f2f789fbf1a50..879e601f824735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-record
displayed_sidebar: docs
---
-**GOTO RECORD** ( {*laTable* ;} *enregistrement* )
+**GOTO RECORD** ( {*laTable* : Table ;} *enregistrement* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement de destination ou Table par défaut si ce paramètre est omis |
-| enregistrement | Integer | → | Numéro renvoyé par Numero enregistrement |
+| laTable | Table | → | Table de l'enregistrement de destination ou Table par défaut si ce paramètre est omis |
+| enregistrement | Integer | → | Numéro renvoyé par Numero enregistrement |
@@ -34,7 +34,7 @@ Référez-vous à l'exemple de la commande [Record number](record-number.md).
| | |
| --- | --- |
| Numéro de commande | 242 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
index 8d57774d14eadf..2a50e0984ccfaf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-selected-record
displayed_sidebar: docs
---
-**GOTO SELECTED RECORD** ( {*laTable* ;} *enregistrement* )
+**GOTO SELECTED RECORD** ( {*laTable* : Table ;} *enregistrement* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle aller à l'enregistrement spécifié ou Table par défaut si ce paramètre est omis |
-| enregistrement | Integer | → | Position de l'enregistrement dans la sélection |
+| laTable | Table | → | Table dans laquelle aller à l'enregistrement spécifié ou Table par défaut si ce paramètre est omis |
+| enregistrement | Integer | → | Position de l'enregistrement dans la sélection |
@@ -67,7 +67,7 @@ La méthode objet de la zone de défilement *taNoms* suivante sélectionne le bo
| | |
| --- | --- |
| Numéro de commande | 245 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
index 4d6b36cb77b21b..8e82b5eb0b6181 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
@@ -5,12 +5,12 @@ slug: /commands/goto-xy
displayed_sidebar: docs
---
-**GOTO XY** ( *x* ; *y* )
+**GOTO XY** ( *x* : Integer ; *y* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| x | Integer | → | Coordonnée x (horizontale) du curseur |
-| y | Integer | → | Coordonnée y (verticale) du curseur |
+| x | Integer | → | Coordonnée x (horizontale) du curseur |
+| y | Integer | → | Coordonnée y (verticale) du curseur |
@@ -64,6 +64,6 @@ L'exemple ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 161 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
index 6233ed8dfdc1f9..88e928604f1bcc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
@@ -5,19 +5,19 @@ slug: /commands/graph-settings
displayed_sidebar: docs
---
-**GRAPH SETTINGS** ( *graphImage* ; *xmin* ; *xmax* ; *ymin* ; *ymax* ; *xprop* ; *grilleX* ; *grilleY* ; *titre* {; *titre2* ; ... ; *titreN*} )
+**GRAPH SETTINGS** ( *graphImage* : Picture ; *xmin* : Integer, Date, Time ; *xmax* : Integer, Date, Time ; *ymin* : Integer ; *ymax* : Integer ; *xprop* : Boolean ; *grilleX* : Boolean ; *grilleY* : Boolean ; *titre* : Text {; *...titre* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| graphImage | Picture | → | Variable image |
-| xmin | Integer, Date, Time | → | Valeur minimale de l'échelle des X pour graphe proportionnel (lignes ou points) |
-| xmax | Integer, Date, Time | → | Valeur maximale de l'échelle des X pour graphe proportionnel (lignes ou points) |
-| ymin | Integer | → | Valeur minimale de l'échelle des Y |
-| ymax | Integer | → | Valeur maximale de l'échelle des Y |
-| xprop | Boolean | → | VRAI pour l'échelle des X proportionnelle ; FAUX pour l'échelle des X normale (lignes ou points) |
-| grilleX | Boolean | → | VRAI pour la grille sur l'axe des X ; FAUX pour pas de grille sur l'axe des X (seulement si xprop est VRAI) |
-| grilleY | Boolean | → | VRAI pour la grille sur l'axe des Y; FAUX pour pas de grille sur l'axe des Y |
-| titre | Text | → | Titre(s) pour les titre(s) des série(s) |
+| graphImage | Picture | → | Variable image |
+| xmin | Integer, Date, Time | → | Valeur minimale de l'échelle des X pour graphe proportionnel (lignes ou points) |
+| xmax | Integer, Date, Time | → | Valeur maximale de l'échelle des X pour graphe proportionnel (lignes ou points) |
+| ymin | Integer | → | Valeur minimale de l'échelle des Y |
+| ymax | Integer | → | Valeur maximale de l'échelle des Y |
+| xprop | Boolean | → | VRAI pour l'échelle des X proportionnelle ; FAUX pour l'échelle des X normale (lignes ou points) |
+| grilleX | Boolean | → | VRAI pour la grille sur l'axe des X ; FAUX pour pas de grille sur l'axe des X (seulement si xprop est VRAI) |
+| grilleY | Boolean | → | VRAI pour la grille sur l'axe des Y; FAUX pour pas de grille sur l'axe des Y |
+| titre | Text | → | Titre(s) pour les titre(s) des série(s) |
@@ -47,6 +47,6 @@ Reportez-vous à l'exemple de la commande GRAPHE.
| | |
| --- | --- |
| Numéro de commande | 298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
index fcf52a5edf9ce6..b5b9213187d68e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
@@ -5,14 +5,14 @@ slug: /commands/graph
displayed_sidebar: docs
---
-**GRAPH** ( *graphImage* ; *graphNum* ; *xCatégories* {; *zValeurs*} {; *zValeurs2* ; ... ; *zValeursN*} )
**GRAPH** ( *graphImage* ; *graphParams* ; *xCatégories* {; *zValeurs*} {; *zValeurs2* ; ... ; *zValeursN*} )
+**GRAPH** ( *graphImage* : Picture ; *graphNum* : Entier long, Objet ; *xCatégories* : Array {; *...zValeurs* : Array} )
**GRAPH** ( *graphImage* : Picture ; *graphParams* : Entier long, Objet ; *xCatégories* : Array {; *...zValeurs* : Array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| graphImage | Picture | → | Variable image |
-| graphNum | graphParams | Entier long, Objet | → | Entier long : Numéro de type de graphe, Objet (64 bits uniquement) : Paramètres du graphe |
-| xCatégories | Array | → | Catégories sur l'axe des x |
-| zValeurs | Array | → | Valeurs à représenter graphiquement (jusqu'à 8 valeurs) |
+| graphImage | Picture | → | Variable image |
+| graphNum | graphParams | Entier long, Objet | → | Entier long : Numéro de type de graphe, Objet (64 bits uniquement) : Paramètres du graphe |
+| xCatégories | Array | → | Catégories sur l'axe des x |
+| zValeurs | Array | → | Valeurs à représenter graphiquement (jusqu'à 8 valeurs) |
@@ -282,6 +282,6 @@ Dans cet exemple, on personnalise divers paramètres :
| | |
| --- | --- |
| Numéro de commande | 169 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
index e3802e23d90990..172af73f1b741d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ La méthode suivante passe un enregistrement en plein écran (sous Mac OS) jusqu
| | |
| --- | --- |
| Numéro de commande | 432 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
index 8753399d99532a..2414ed1b8d72ed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
@@ -5,11 +5,11 @@ slug: /commands/hide-process
displayed_sidebar: docs
---
-**HIDE PROCESS** ( *process* )
+**HIDE PROCESS** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process à cacher |
+| process | Integer | → | Numéro du process à cacher |
@@ -43,6 +43,6 @@ L'exemple suivant cachera toutes les fenêtres appartenant au process courant :
| | |
| --- | --- |
| Numéro de commande | 324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
index 4e9317bcd6f089..5a56a2f1dde77a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Pour cela, dans l'événement On Resize du formulaire de la fenêtre standard, i
| | |
| --- | --- |
| Numéro de commande | 434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
index 93fd3f98df1e60..663a429c429598 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
@@ -5,11 +5,11 @@ slug: /commands/hide-window
displayed_sidebar: docs
---
-**HIDE WINDOW** {( *fenêtre* )}
+**HIDE WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
@@ -51,6 +51,6 @@ Cet exemple est la méthode d'un bouton placé dans un formulaire entrée. Ce bo
| | |
| --- | --- |
| Numéro de commande | 436 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
index aaaca6ed6ff38e..d70a966f3822d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
@@ -5,13 +5,13 @@ slug: /commands/highlight-records
displayed_sidebar: docs
---
-**HIGHLIGHT RECORDS** ( {*laTable* }{;}{ *nomEnsemble* {; *}} )
+**HIGHLIGHT RECORDS** ( {*laTable* : Table }{;}{ *nomEnsemble* : Text {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle marquer les enregistrements Si omis, table du formulaire courant |
-| nomEnsemble | Text | → | Ensemble d’enregistrements à marquer ou Ensemble Userset si ce paramètre est omis |
-| * | Opérateur | → | Inactiver le défilement automatique de la liste |
+| laTable | Table | → | Table de laquelle marquer les enregistrements Si omis, table du formulaire courant |
+| nomEnsemble | Text | → | Ensemble d’enregistrements à marquer ou Ensemble Userset si ce paramètre est omis |
+| * | Opérateur | → | Inactiver le défilement automatique de la liste |
@@ -53,6 +53,6 @@ Lorsque l’utilisateur clique sur le bouton, la boîte de dialogue standard de
| | |
| --- | --- |
| Numéro de commande | 656 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
index edb52e8066c201..ee962704c60b8c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
@@ -5,14 +5,14 @@ slug: /commands/highlight-text
displayed_sidebar: docs
---
-**HIGHLIGHT TEXT** ( {* ;} *objet* ; *débutSél* ; *finSél* )
+**HIGHLIGHT TEXT** ( {* ;} *objet* : Field, Variable, any ; *débutSél* : Integer ; *finSél* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | Field, Variable, any | → | Nom d'objet (si * est spécifié) ou Champ ou variable saisissable (si * est omis) |
-| débutSél | Integer | → | Nouvelle position de début de sélection de texte |
-| finSél | Integer | → | Nouvelle position de fin de sélection de texte |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | Field, Variable, any | → | Nom d'objet (si * est spécifié) ou Champ ou variable saisissable (si * est omis) |
+| débutSél | Integer | → | Nouvelle position de début de sélection de texte |
+| finSél | Integer | → | Nouvelle position de fin de sélection de texte |
@@ -68,6 +68,6 @@ Reportez-vous à l'exemple de la commande [FILTER KEYSTROKE](filter-keystroke.md
| | |
| --- | --- |
| Numéro de commande | 210 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
index 1b07a1a8627772..904242afaff1eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/http-authenticate
displayed_sidebar: docs
---
-**HTTP AUTHENTICATE** ( *nom* ; *motDePasse* {; *méthodeAuth*} {; *} )
+**HTTP AUTHENTICATE** ( *nom* : Text ; *motDePasse* : Text {; *méthodeAuth* : Integer} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nom | Text | → | Nom de l’utilisateur |
-| motDePasse | Text | → | Mot de passe de l’utilisateur |
-| méthodeAuth | Integer | → | Méthode d’authentification : 0 ou omis=non définie, 1=BASIC, 2=DIGEST |
-| * | Opérateur | → | Si passé : authentification par proxy |
+| nom | Text | → | Nom de l’utilisateur |
+| motDePasse | Text | → | Mot de passe de l’utilisateur |
+| méthodeAuth | Integer | → | Méthode d’authentification : 0 ou omis=non définie, 1=BASIC, 2=DIGEST |
+| * | Opérateur | → | Si passé : authentification par proxy |
@@ -62,6 +62,6 @@ Exemples de requêtes avec authentification :
| | |
| --- | --- |
| Numéro de commande | 1161 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
index 6027a2c1f056a2..fd0b12c29bea04 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
@@ -46,6 +46,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1307 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
index 1c579ec9fa2ac9..28f913f16194e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/http-get-option
displayed_sidebar: docs
---
-**HTTP GET OPTION** ( *option* ; *valeur* )
+**HTTP GET OPTION** ( *option* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Code de l’option à lire |
+| option | Integer | → | Code de l’option à lire |
| valeur | Integer | ← | Valeur courante de l’option |
@@ -49,6 +49,6 @@ Passez dans le paramètre *valeur* une variable qui recevra la valeur courante d
| | |
| --- | --- |
| Numéro de commande | 1159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
index 1868e05d81aa77..a6485faa65b6e7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
@@ -5,17 +5,15 @@ slug: /commands/http-get
displayed_sidebar: docs
---
-**HTTP Get** ( *url* ; *réponse* {; *nomsEnTêtes* ; *valeursEnTêtes*}{; *} ) : Integer
+**HTTP Get** ( *url* : Text ; *réponse* : Text, Blob, Picture, Object {; *nomsEnTêtes* : Text array ; *valeursEnTêtes* : Text array}{; *} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| url | Text | → | URL auquel envoyer la requête |
+| url | Text | → | URL auquel envoyer la requête |
| réponse | Text, Blob, Picture, Object | ← | Résultat de la requête |
-| nomsEnTêtes | Text array | → | Noms des en-têtes de la requête |
-| ← | Noms d’en-têtes retournés |
-| valeursEnTêtes | Text array | → | Valeurs d’en-têtes de la requête |
-| ← | Valeurs d’en-têtes retournées |
-| * | Opérateur | → | Si passé, la connexion est maintenue (keep-alive)
Si omis, la connexion est automatiquement refermée |
+| nomsEnTêtes | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valeursEnTêtes | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Opérateur | → | Si passé, la connexion est maintenue (keep-alive)
Si omis, la connexion est automatiquement refermée |
| Résultat | Integer | ← | Code de statut HTTP |
@@ -110,7 +108,7 @@ Récupération d’une vidéo :
| | |
| --- | --- |
| Numéro de commande | 1157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
index c73b3807ca1d3a..a560686b96a527 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
@@ -5,19 +5,17 @@ slug: /commands/http-request
displayed_sidebar: docs
---
-**HTTP Request** ( *méthodeHTTP* ; *url* ; *contenu* ; *réponse* {; *nomsEnTêtes* ; *valeursEnTêtes*}{; *} ) : Integer
+**HTTP Request** ( *méthodeHTTP* : Text ; *url* : Text ; *contenu* : Text, Blob, Picture, Object ; *réponse* : Text, Blob, Picture, Object {; *nomsEnTêtes* : Text array ; *valeursEnTêtes* : Text array}{; *} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| méthodeHTTP | Text | → | Méthode HTTP pour la requête |
-| url | Text | → | URL auquel envoyer la requête |
-| contenu | Text, Blob, Picture, Object | → | Contenu du corps (body) de la requête |
+| méthodeHTTP | Text | → | Méthode HTTP pour la requête |
+| url | Text | → | URL auquel envoyer la requête |
+| contenu | Text, Blob, Picture, Object | → | Contenu du corps (body) de la requête |
| réponse | Text, Blob, Picture, Object | ← | Résultat de la requête |
-| nomsEnTêtes | Text array | → | Noms des en-têtes de la requête |
-| ← | Noms d’en-têtes retournés |
-| valeursEnTêtes | Text array | → | Valeurs d’en-têtes de la requête |
-| ← | Valeurs d’en-têtes retournées |
-| * | Opérateur | → | Si passé, la connexion est maintenue (keep-alive)
Si omis, la connexion est automatiquement refermée |
+| nomsEnTêtes | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valeursEnTêtes | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Opérateur | → | Si passé, la connexion est maintenue (keep-alive)
Si omis, la connexion est automatiquement refermée |
| Résultat | Integer | ← | Code de statut HTTP |
@@ -131,6 +129,6 @@ Demande d’ajout d’enregistrement en JSON dans une base distante :
| | |
| --- | --- |
| Numéro de commande | 1158 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
index 1215163309613a..4cc767a193369e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
@@ -5,11 +5,11 @@ slug: /commands/http-set-certificates-folder
displayed_sidebar: docs
---
-**HTTP SET CERTIFICATES FOLDER** ( *dossierCertificats* )
+**HTTP SET CERTIFICATES FOLDER** ( *dossierCertificats* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dossierCertificats | Text | → | Chemin d’accès et nom du dossier des certificats du client |
+| dossierCertificats | Text | → | Chemin d’accès et nom du dossier des certificats du client |
@@ -62,6 +62,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1306 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
index 001f2e74f5e91a..97e68060a1250f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/http-set-option
displayed_sidebar: docs
---
-**HTTP SET OPTION** ( *option* ; *valeur* )
+**HTTP SET OPTION** ( *option* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Code de l’option à fixer |
-| valeur | Integer | → | Valeur de l’option |
+| option | Integer | → | Code de l’option à fixer |
+| valeur | Integer | → | Valeur de l’option |
@@ -50,6 +50,6 @@ L’ordre d’appel des options n’a pas d’importance. Si une même option es
| | |
| --- | --- |
| Numéro de commande | 1160 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
index a759a24719a009..7729fe09fb0c85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
@@ -58,6 +58,6 @@ La méthode METHODE EVENEMENT :
| | |
| --- | --- |
| Numéro de commande | 311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
index 89663ebf9b3e82..e4ccd6b0c4bc39 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
@@ -5,14 +5,13 @@ slug: /commands/import-data
displayed_sidebar: docs
---
-**IMPORT DATA** ( *nomFichier* {; *projet* {; *}} )
+**IMPORT DATA** ( *nomFichier* : Text {; *projet* : Text, Blob {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Chemin d’accès et nom du fichier à importer |
-| projet | Text, Blob | → | Contenu du projet d’import (XML ou référence d'élément DOM ou BLOB) |
-| ← | Nouveau contenu du projet d’import (si le paramètre * a été passé) |
-| * | Opérateur | → | Affichage de la boîte de dialogue d’import et mise à jour du projet |
+| nomFichier | Text | → | Chemin d’accès et nom du fichier à importer |
+| projet | Text, Blob | ↔ | *in:* Contents of the import project
*out:* New contents of the import project (if the * parameter has been passed) |
+| * | Opérateur | → | Affichage de la boîte de dialogue d’import et mise à jour du projet |
@@ -51,7 +50,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (de sé
| | |
| --- | --- |
| Numéro de commande | 665 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
index 48da56ba220984..ca8edc6ad592ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
@@ -5,12 +5,12 @@ slug: /commands/import-dif
displayed_sidebar: docs
---
-**IMPORT DIF** ( {*laTable* ;} *nomFichier* )
+**IMPORT DIF** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document DIF à importer |
+| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document DIF à importer |
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 86 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
index 464601871443fe..ead1fd92281f21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
@@ -5,11 +5,11 @@ slug: /commands/import-structure
displayed_sidebar: docs
---
-**IMPORT STRUCTURE** ( *structureXML* )
+**IMPORT STRUCTURE** ( *structureXML* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| structureXML | Text | → | Définition XML de la structure de la base 4D |
+| structureXML | Text | → | Définition XML de la structure de la base 4D |
@@ -53,6 +53,6 @@ Vous souhaitez importer une définiton de structure stockée sur disque dans la
| | |
| --- | --- |
| Numéro de commande | 1310 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
index 14abed30fcdd19..c6b12f477de482 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/import-sylk
displayed_sidebar: docs
---
-**IMPORT SYLK** ( {*laTable* ;} *nomFichier* )
+**IMPORT SYLK** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document SYLK à importer |
+| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document SYLK à importer |
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 87 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
index e593c5531c4353..b85edf81297f22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
@@ -5,12 +5,12 @@ slug: /commands/import-text
displayed_sidebar: docs
---
-**IMPORT TEXT** ( {*laTable* ;} *nomFichier* )
+**IMPORT TEXT** ( {*laTable* : Table ;} *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document texte à importer |
+| laTable | Table | → | Table dans laquelle effectuer l'import ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document texte à importer |
@@ -59,7 +59,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 168 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
index 6f3ee1b05bb928..f6031aea000f9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In break** soit généré, assurez
| | |
| --- | --- |
| Numéro de commande | 113 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
index dfad4fde421994..f1870b203068f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **In footer** soit généré, vérifiez
| | |
| --- | --- |
| Numéro de commande | 191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
index c15d27738d47f7..d8c271d69cb61d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In header** soit généré, assure
| | |
| --- | --- |
| Numéro de commande | 112 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
index 1f8f1f47e22ff2..ad4217d23eb2a9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si vous effectuez l'opération depuis un trigger ou une sous-routine pouvant êt
| | |
| --- | --- |
| Numéro de commande | 397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
index 5c77735ae9b1c1..e06cb435298d74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/insert-in-array
displayed_sidebar: docs
---
-**INSERT IN ARRAY** ( *tableau* ; *positionDépart* {; *combien*} )
+**INSERT IN ARRAY** ( *tableau* : Array ; *positionDépart* : Integer {; *combien* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Nom du tableau dans lequel insérer des éléments |
-| positionDépart | Integer | → | Position de départ du ou des élément(s) à insérer |
-| combien | Integer | → | Nombre d'éléments à insérer ou 1 élément si ce paramètre est omis |
+| tableau | Array | → | Nom du tableau dans lequel insérer des éléments |
+| positionDépart | Integer | → | Position de départ du ou des élément(s) à insérer |
+| combien | Integer | → | Nombre d'éléments à insérer ou 1 élément si ce paramètre est omis |
@@ -51,6 +51,6 @@ L'exemple suivant ajoute un élément à un tableau :
| | |
| --- | --- |
| Numéro de commande | 227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
index 4d8465c791acc7..32412ed00c6331 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
@@ -5,14 +5,14 @@ slug: /commands/insert-in-blob
displayed_sidebar: docs
---
-**INSERT IN BLOB** ( *blob* ; *décalage* ; *nombre* {; *remplisseur*} )
+**INSERT IN BLOB** ( *blob* : Blob ; *décalage* : Integer ; *nombre* : Integer {; *remplisseur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB dans lequel insérer les octets |
-| décalage | Integer | → | Position de début d'insertion des octets |
-| nombre | Integer | → | Nombre d'octets à insérer |
-| remplisseur | Integer | → | Valeur d'octet par défaut (0x00..0xFF) 0x00 si ce paramètre est omis |
+| Blob | Blob | → | BLOB dans lequel insérer les octets |
+| décalage | Integer | → | Position de début d'insertion des octets |
+| nombre | Integer | → | Nombre d'octets à insérer |
+| remplisseur | Integer | → | Valeur d'octet par défaut (0x00..0xFF) 0x00 si ce paramètre est omis |
@@ -37,6 +37,6 @@ Vous passez dans le paramètre *décalage* la position (relative à l'origine du
| | |
| --- | --- |
| Numéro de commande | 559 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
index 28794e6a04ad0f..d13d67e24108c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
@@ -5,17 +5,17 @@ slug: /commands/insert-in-list
displayed_sidebar: docs
---
-**INSERT IN LIST** ( {* ;} *liste* ; *avantElément* ; *libelléElément* ; *réfElément* {; sous_Liste ; *déployée*} )
**INSERT IN LIST** ( * ; *liste* ; * ; *libelléElément* ; *réfElément* {; sous_Liste ; *déployée*} )
+**INSERT IN LIST** ( {* ;} *liste* : Integer, Text ; *avantElément* : Entier long, Opérateur ; *libelléElément* : Text ; *réfElément* : Integer {; sous_Liste ; *déployée* : Boolean} )
**INSERT IN LIST** ( * ; *liste* : Integer, Text ; * ; *libelléElément* : Text ; *réfElément* : Integer {; sous_Liste ; *déployée* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| avantElément | * | Entier long, Opérateur | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément de la liste actuellement sélectionné |
-| libelléElément | Text | → | Libellé du nouvel élément |
-| réfElément | Integer | → | Numéro de référence unique du nouvel élément |
-| sous_Liste | Integer | → | Sous-liste optionnelle rattachée au nouvel élément |
-| déployée | Boolean | → | Indique si la sous-liste doit être déployée ou non |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| avantElément | * | Entier long, Opérateur | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément de la liste actuellement sélectionné |
+| libelléElément | Text | → | Libellé du nouvel élément |
+| réfElément | Integer | → | Numéro de référence unique du nouvel élément |
+| sous_Liste | Integer | → | Sous-liste optionnelle rattachée au nouvel élément |
+| déployée | Boolean | → | Indique si la sous-liste doit être déployée ou non |
@@ -56,6 +56,6 @@ L'exemple suivant insère un élément (associé à aucune sous-liste) juste dev
| | |
| --- | --- |
| Numéro de commande | 625 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
index e6ca020a94eed8..3b3cd6c825691a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
@@ -5,16 +5,16 @@ slug: /commands/insert-menu-item
displayed_sidebar: docs
---
-**INSERT MENU ITEM** ( *menu* ; *aprèsLigne* ; *libelléElément* {; *sousMenu* {; *process*}}{; *} )
+**INSERT MENU ITEM** ( *menu* : Integer ; *aprèsLigne* : Integer ; *libelléElément* : Text {; *sousMenu* : Text {; *process* : Integer}}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer | → | Numéro de menu ou Référence de menu |
-| aprèsLigne | Integer | → | Numéro de commande de menu |
-| libelléElément | Text | → | Libellé de la ligne de menu à insérer |
-| sousMenu | Text | → | Référence du sous-menu associé à la ligne |
-| process | Integer | → | Numéro de référence de process |
-| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
+| menu | Integer | → | Numéro de menu ou Référence de menu |
+| aprèsLigne | Integer | → | Numéro de commande de menu |
+| libelléElément | Text | → | Libellé de la ligne de menu à insérer |
+| sousMenu | Text | → | Référence du sous-menu associé à la ligne |
+| process | Integer | → | Numéro de référence de process |
+| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
@@ -60,7 +60,7 @@ L’exemple suivant crée un menu constitué de deux commandes auxquelles il aff
| | |
| --- | --- |
| Numéro de commande | 412 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
index f44f47e0080b0f..17e1b601ccd9ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
@@ -5,13 +5,13 @@ slug: /commands/insert-string
displayed_sidebar: docs
---
-**Insert string** ( *source* ; *insertion* ; *positionDépart* ) : Text
+**Insert string** ( *source* : Text ; *insertion* : Text ; *positionDépart* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Chaîne dans laquelle effectuer l'insertion |
-| insertion | Text | → | Chaîne à insérer dans source |
-| positionDépart | Integer | → | Position de l'insertion |
+| source | Text | → | Chaîne dans laquelle effectuer l'insertion |
+| insertion | Text | → | Chaîne à insérer dans source |
+| positionDépart | Integer | → | Position de l'insertion |
| Résultat | Text | ← | Chaîne résultante |
@@ -47,6 +47,6 @@ L'exemple suivant illustre l'utilisation de **Insert string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md
index 7ad86579f11969..5219230240ad4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/int.md
@@ -5,11 +5,11 @@ slug: /commands/int
displayed_sidebar: docs
---
-**Int** ( *nombre* ) : Real
+**Int** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Valeur dont vous voulez obtenir la partie entière |
+| nombre | Real | → | Valeur dont vous voulez obtenir la partie entière |
| Résultat | Real | ← | Partie entière de nombre |
@@ -36,6 +36,6 @@ L'exemple suivant illustre le fonctionnement de **Int** pour les nombres positif
| | |
| --- | --- |
| Numéro de commande | 8 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
index 2c4032fbf72f9b..1f47de5666ea9d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/integer-to-blob
displayed_sidebar: docs
---
-**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; offset} )
**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; *} )
+**INTEGER TO BLOB** ( *integer* ; *blob* : Blob ; *byteOrder* {; offset} )
**INTEGER TO BLOB** ( *integer* ; *blob* : Blob ; *byteOrder* {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| entier | Integer | → | Valeur entière à écrire dans le BLOB |
-| blob | Blob | → | BLOB devant recevoir la valeur entière |
-| ordreOctet | Integer | → | 0=Ordre des octets en mode natif, 1=Ordre des octets Macintosh, 2=Ordre des octets PC |
-| offset | * | Variable, Opérateur | ↔ | Offset (en octets) de l'entier dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
-| ||| Nouvel offset après écriture si * omis |
+| entier | Integer | → | Valeur entière à écrire dans le BLOB |
+| Blob | Blob | → | BLOB devant recevoir la valeur entière |
+| ordreOctet | Integer | → | 0=Ordre des octets en mode natif, 1=Ordre des octets Macintosh, 2=Ordre des octets PC |
+| offset | * | Variable, Opérateur | ↔ | Offset (en octets) de l'entier dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
+| | | | Nouvel offset après écriture si * omis |
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
index 932538ab482504..341fff263ca418 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
@@ -5,14 +5,13 @@ slug: /commands/integrate-mirror-log-file
displayed_sidebar: docs
---
-**INTEGRATE MIRROR LOG FILE** ( *cheminAccès* ; *numOpération* {; *mode* {; *objErreur*}} )
+**INTEGRATE MIRROR LOG FILE** ( *cheminAccès* : Text ; *numOpération* : Real {; *mode* : Integer {; *objErreur* : Object}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Nom ou chemin d’accès du fichier d’historique à intégrer |
-| numOpération | Real | → | Numéro de la dernière opération intégrée ou -2 pour tout intégrer |
-| ← | Nouveau numéro de la dernière opération intégrée |
-| mode | Integer | → | 0=mode strict (mode par défaut), 1=mode réparation auto |
+| cheminAccès | Text | → | Nom ou chemin d’accès du fichier d’historique à intégrer |
+| numOpération | Real | ↔ | *in:* Number of last operation integrated or -2 to integrate the whole file
*out:* New number of last operation integrated |
+| mode | Integer | → | 0=mode strict (mode par défaut), 1=mode réparation auto |
| objErreur | Object | ← | Opération(s) manquante(s) |
@@ -105,7 +104,7 @@ Si l'intégration s'effectue correctement, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 1312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
index d03df6e04c1a43..39e600af59014a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
@@ -5,13 +5,13 @@ slug: /commands/intersection
displayed_sidebar: docs
---
-**INTERSECTION** ( *ensemble1* ; *ensemble2* ; *résultat* )
+**INTERSECTION** ( *ensemble1* : Text ; *ensemble2* : Text ; *résultat* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble1 | Text | → | Premier ensemble |
-| ensemble2 | Text | → | Second ensemble |
-| résultat | Text | → | Ensemble résultant |
+| ensemble1 | Text | → | Premier ensemble |
+| ensemble2 | Text | → | Second ensemble |
+| résultat | Text | → | Ensemble résultant |
@@ -55,6 +55,6 @@ L'exemple suivant recherche les clients en contact avec deux représentants, Jea
| | |
| --- | --- |
| Numéro de commande | 121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
index 6b50873e725b83..41168ec91311cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
@@ -5,12 +5,12 @@ slug: /commands/invoke-action
displayed_sidebar: docs
---
-**INVOKE ACTION** ( *action* {; *cible*} )
+**INVOKE ACTION** ( *action* : Text {; *cible* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| action | Text | → | Nom de l'action standard ou syntaxe avec paramètre si celui-ci est requis |
-| cible | Integer | → | Définit le lieu d'exécution de l'action : le formulaire courant (par défaut) ou le formulaire principal |
+| action | Text | → | Nom de l'action standard ou syntaxe avec paramètre si celui-ci est requis |
+| cible | Integer | → | Définit le lieu d'exécution de l'action : le formulaire courant (par défaut) ou le formulaire principal |
@@ -69,6 +69,6 @@ Vous souhaitez exécuter l'action standard **Aller a page** (page 3) dans le for
| | |
| --- | --- |
| Numéro de commande | 1439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
index 1962697ce814cf..4c868ac9be7573 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-list
displayed_sidebar: docs
---
-**Is a list** ( *liste* ) : Boolean
+**Is a list** ( *liste* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Référence de la liste à tester |
+| liste | Integer | → | Référence de la liste à tester |
| Résultat | Boolean | ← | Vrai si liste est une liste hiérarchique Faux si liste n'est pas une liste hiérarchique |
@@ -35,6 +35,6 @@ Reportez-vous aux exemples de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 621 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
index 0f35fdd13c76cd..f9f777b4144f6f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-variable
displayed_sidebar: docs
---
-**Is a variable** ( *pointeur* ) : Boolean
+**Is a variable** ( *pointeur* : Pointer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| pointeur | Pointer | → | Pointeur à tester |
+| pointeur | Pointer | → | Pointeur à tester |
| Résultat | Boolean | ← | VRAI = Pointeur pointe vers une variable FAUX = Pointeur ne pointe pas vers une variable |
@@ -30,6 +30,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
index 019958a188ce2f..2bb6cf0e06b104 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
@@ -5,11 +5,11 @@ slug: /commands/is-compiled-mode
displayed_sidebar: docs
---
-**Is compiled mode** {( * )} : Boolean
+**Is compiled mode** ( * ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourner l'information de la base hôte |
+| * | Opérateur | → | Retourner l'information de la base hôte |
| Résultat | Boolean | ← | Mode compilé (Vrai), mode interprété (Faux) |
@@ -47,6 +47,6 @@ Dans une de vos méthodes, vous avez placé du code pour déboguer la base lorsq
| | |
| --- | --- |
| Numéro de commande | 492 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
index 71e31515d91bac..d834beb1387d9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Cette méthode empêchera l’ouverture de la base si le fichier de données est
| | |
| --- | --- |
| Numéro de commande | 716 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
index 9c20991fa65a96..ca49ebf932372f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Pour permettre à l'utilisateur de sélectionner une ligne commençant par la le
| | |
| --- | --- |
| Numéro de commande | 1744 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
index 14c8662b81e6d4..fd319225528d9e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
@@ -5,12 +5,12 @@ slug: /commands/is-field-number-valid
displayed_sidebar: docs
---
-**Is field number valid** ( *ptrTable* ; *numChamp* ) : Boolean
**Is field number valid** ( *numTable* ; *numChamp* ) : Boolean
+**Is field number valid** ( *ptrTable* : Entier long, Pointeur ; *numChamp* : Integer ) : Boolean
**Is field number valid** ( *numTable* : Entier long, Pointeur ; *numChamp* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou Pointeur vers une table |
-| numChamp | Integer | → | Numéro de champ |
+| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou Pointeur vers une table |
+| numChamp | Integer | → | Numéro de champ |
| Résultat | Boolean | ← | Vrai = le champ existe dans la table, Faux = le champ n’existe pas dans la table |
@@ -31,6 +31,6 @@ Cette commande permet de détecter d’éventuelles suppressions de champs, ce q
| | |
| --- | --- |
| Numéro de commande | 1000 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
index d762353ea5a6d9..43ead1fea51507 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ à évaluer |
+| leField | Field | → | Champ à évaluer |
| Résultat | Boolean | ← | Vrai = le champ est NULL, Faux = le champ n'est pas NULL |
@@ -34,6 +34,6 @@ La valeur retournée par cette commande n'a de sens que si l'option "*Traduire l
| | |
| --- | --- |
| Numéro de commande | 964 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
index 8407c63d47a661..699d1080c3587a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Cet exemple permet de prendre en compte tous les types d’impressions :
| | |
| --- | --- |
| Numéro de commande | 1198 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
index eb8007687bd37b..1ee96d84ff1a4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/is-in-set
displayed_sidebar: docs
---
-**Is in set** ( *ensemble* ) : Boolean
+**Is in set** ( *ensemble* : Text ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble | Text | → | Nom de l'ensemble à tester |
+| ensemble | Text | → | Nom de l'ensemble à tester |
| Résultat | Boolean | ← | L'enregistrement courant est dans l'ensemble (Vrai) ou l'enregistrement courant n'est pas dans l'ensemble (Faux) |
@@ -40,6 +40,6 @@ L'exemple suivant est la méthode objet d'un bouton testant si l'enregistrement
| | |
| --- | --- |
| Numéro de commande | 273 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
index 83840d8852c758..c448ce2feba318 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
@@ -5,11 +5,11 @@ slug: /commands/is-license-available
displayed_sidebar: docs
---
-**Is license available** {( *licence* )} : Boolean
+**Is license available** ( *licence* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| licence | Integer | → | Plug-in duquel tester la validité de la licence |
+| licence | Integer | → | Plug-in duquel tester la validité de la licence |
| Résultat | Boolean | ← | Vrai si le plug-in est disponible, sinon Faux |
@@ -52,6 +52,6 @@ Dans ce cas, la commande retourne Vrai si le plug-in correspondant dispose d’u
| | |
| --- | --- |
| Numéro de commande | 714 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
index ae4566dabbb8c6..eed83a0c77bea9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Vous voulez déterminer si le système d'exploitation courant est macOS :
| | |
| --- | --- |
| Numéro de commande | 1572 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
index e38a3a6ec9a211..530db71418a78d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
@@ -5,11 +5,11 @@ slug: /commands/is-new-record
displayed_sidebar: docs
---
-**Is new record** {( *laTable* )} : Boolean
+**Is new record** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l’enregistrement à examiner ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l’enregistrement à examiner ou Table par défaut si ce paramètre est omis |
| Résultat | Boolean | ← | Vrai si l’enregistrement est en cours de création, Faux sinon |
@@ -44,6 +44,6 @@ Les deux instructions suivantes sont identiques, la seconde est conseillée pour
| | |
| --- | --- |
| Numéro de commande | 668 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
index 6506a7f51795a8..b4ef39bf285d96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/is-nil-pointer
displayed_sidebar: docs
---
-**Is nil pointer** ( *pointeur* ) : Boolean
+**Is nil pointer** ( *pointeur* : Pointer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| pointeur | Pointer | → | Pointeur à tester |
+| pointeur | Pointer | → | Pointeur à tester |
| Résultat | Boolean | ← | VRAI = Pointeur Nil (->[]) FAUX = Pointeur valide vers un objet existant |
@@ -42,6 +42,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 315 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
index a2fef6f4142b3e..d4990b6db6a7f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
@@ -5,12 +5,12 @@ slug: /commands/is-picture-file
displayed_sidebar: docs
---
-**Is picture file** ( *cheminFichier* {; *} ) : Boolean
+**Is picture file** ( *cheminFichier* : Text {; *} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminFichier | Text | → | Chemin d’accès de fichier |
-| * | Opérateur | → | Valider les données |
+| cheminFichier | Text | → | Chemin d’accès de fichier |
+| * | Opérateur | → | Valider les données |
| Résultat | Boolean | ← | Vrai = cheminFichier désigne un fichier image, sinon Faux |
@@ -34,6 +34,6 @@ Si vous ne passez pas le paramètre *\**, la commande teste le fichier en recher
| | |
| --- | --- |
| Numéro de commande | 1113 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
index fca9f29fe61b00..3b6f4c6bf0a044 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
@@ -5,11 +5,11 @@ slug: /commands/is-record-loaded
displayed_sidebar: docs
---
-**Is record loaded** {( *laTable* )} : Boolean
+**Is record loaded** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l’enregistrement à examiner ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l’enregistrement à examiner ou Table par défaut si ce paramètre est omis |
| Résultat | Boolean | ← | Vrai si l’enregistrement est chargé, Faux sinon |
@@ -47,6 +47,6 @@ Au lieu d’utiliser les actions automatiques “Enregistrement suivant” ou
| | |
| --- | --- |
| Numéro de commande | 669 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
index c9ac9b1fcaecf9..96f7c75fe39111 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
@@ -5,11 +5,11 @@ slug: /commands/is-table-number-valid
displayed_sidebar: docs
---
-**Is table number valid** ( *numTable* ) : Boolean
+**Is table number valid** ( *numTable* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | Integer | → | Numéro de table |
+| numTable | Integer | → | Numéro de table |
| Résultat | Boolean | ← | Vrai = la table existe dans la base, Faux = la table n’existe pas dans la base |
@@ -30,6 +30,6 @@ Cette commande permet de détecter d’éventuelles suppressions de tables, ce q
| | |
| --- | --- |
| Numéro de commande | 999 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
index 8973a9ef6ecdf6..610023a9e4feaa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
@@ -5,11 +5,11 @@ slug: /commands/is-user-deleted
displayed_sidebar: docs
---
-**Is user deleted** ( *réfUtilisateur* ) : Boolean
+**Is user deleted** ( *réfUtilisateur* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfUtilisateur | Integer | → | Numéro d'identification de l'utilisateur |
+| réfUtilisateur | Integer | → | Numéro d'identification de l'utilisateur |
| Résultat | Boolean | ← | Vrai = le compte de l'utilisateur est supprimé ou n'existe pas Faux = le compte de l'utilisateur est actif |
@@ -35,7 +35,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Is user deleted** ou
| | |
| --- | --- |
| Numéro de commande | 616 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
index 4858bd6f76e541..52e53a93d7defc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ Le code suivant peut être utilisé pour gérer le suivi de la souris dans un ob
| | |
| --- | --- |
| Numéro de commande | 1422 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
index 867f042a6cde23..9596272431a250 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-maximized
displayed_sidebar: docs
---
-**Is window maximized** ( *window* ) : Boolean
+**Is window maximized** ( *window* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| window | Integer | → | Numéro de référence de la fenêtre |
+| window | Integer | → | Numéro de référence de la fenêtre |
| Résultat | Boolean | ← | Vrai si la fenêtre est maximisée, sinon Faux |
@@ -40,6 +40,6 @@ Vous souhaitez passer entre l'état maximisé et l'état précédent :
| | |
| --- | --- |
| Numéro de commande | 1830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
index 8102088f688e27..d078e95670d219 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-reduced
displayed_sidebar: docs
---
-**Is window reduced** ( *window* ) : Boolean
+**Is window reduced** ( *window* : Integer ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| window | Integer | → | Numéro de référence de la fenêtre |
+| window | Integer | → | Numéro de référence de la fenêtre |
| Résultat | Boolean | ← | Vrai si la fenêtre est réduite dans la barre des tâches ou dans le dock, sinon Faux |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
index 451a216b852f64..9830e741adf6ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Vous voulez savoir si le système d'exploitation courant est Windows :
| | |
| --- | --- |
| Numéro de commande | 1573 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
index c1a51982b67c0b..f4f610d94bdee8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse-array
displayed_sidebar: docs
---
-**JSON PARSE ARRAY** ( *chaîneJSON* ; *tab* )
+**JSON PARSE ARRAY** ( *chaîneJSON* : Text ; *tab* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chaîneJSON | Text | → | Chaîne en JSON à analyser |
+| chaîneJSON | Text | → | Chaîne en JSON à analyser |
| tab | Array | ← | Tableau contenant le résultat de l’analyse de la chaîne JSON |
@@ -64,6 +64,6 @@ Dans cet exemple, les données des champs des enregistrements d’une table sont
| | |
| --- | --- |
| Numéro de commande | 1219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
index 17607574080d82..a0defac8e46acc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
@@ -5,13 +5,13 @@ slug: /commands/json-parse
displayed_sidebar: docs
---
-**JSON Parse** ( *chaîneJSON* {; *type*}{; *} ) : any
+**JSON Parse** ( *chaîneJSON* : Text {; *type* : Integer}{; *} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chaîneJSON | Text | → | Chaîne en JSON à analyser |
-| type | Integer | → | Type dans lequel convertir les valeurs |
-| * | Opérateur | → | Ajouter la ligne et la position de chaque propriété si la valeur retournée est un objet |
+| chaîneJSON | Text | → | Chaîne en JSON à analyser |
+| type | Integer | → | Type dans lequel convertir les valeurs |
+| * | Opérateur | → | Ajouter la ligne et la position de chaque propriété si la valeur retournée est un objet |
| Résultat | Object, any | ← | Valeurs extraites de la chaîne JSON |
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Numéro de commande | 1218 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
index 4763694a224fef..3286244c207068 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
@@ -5,13 +5,12 @@ slug: /commands/json-resolve-pointers
displayed_sidebar: docs
---
-**JSON Resolve pointers** ( *objet* {; *options*} ) : Object
+**JSON Resolve pointers** ( *objet* : Object {; *options* : Object} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet contenant des pointeurs JSON à résoudre |
-| ← | Objet avec pointeurs JSON résolus (uniquement si Résultat est un objet) |
-| options | Object | → | Options pour la résolution des pointeurs |
+| objet | Object | ↔ | *in:* Object containing JSON pointers to resolve
*out:* Object with JSON pointers resolved (only if result is an object) |
+| options | Object | → | Options pour la résolution des pointeurs |
| Résultat | Object | ← | Objet contenant le résultat du traitement |
@@ -237,6 +236,6 @@ Si vous exécutez :
| | |
| --- | --- |
| Numéro de commande | 1478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
index 276c0750bca293..e352ab49f8ac1e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify-array
displayed_sidebar: docs
---
-**JSON Stringify array** ( *tab* {; *} ) : Text
+**JSON Stringify array** ( *tab* : Text array, Real array, Boolean array, Pointer array, Object array {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tab | Text array, Real array, Boolean array, Pointer array, Object array | → | Tableau dont le contenu doit être sérialisé |
-| * | Opérateur | → | Améliorer le formatage |
+| tab | Text array, Real array, Boolean array, Pointer array, Object array | → | Tableau dont le contenu doit être sérialisé |
+| * | Opérateur | → | Améliorer le formatage |
| Résultat | Text | ← | Chaîne contenant le tableau JSON sérialisé |
@@ -114,6 +114,6 @@ Conversion d’une sélection 4D dans un tableau objet :
| | |
| --- | --- |
| Numéro de commande | 1228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
index e3b46e174991ef..4af213c9118c20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify
displayed_sidebar: docs
---
-**JSON Stringify** ( *valeur* {; *} ) : Text
+**JSON Stringify** ( *valeur* : Object, any {; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| valeur | Object, any | → | Données à convertir en chaîne JSON |
-| * | Opérateur | → | Améliorer la présentation |
+| valeur | Object, any | → | Données à convertir en chaîne JSON |
+| * | Opérateur | → | Améliorer la présentation |
| Résultat | Text | ← | Chaîne contenant le texte JSON sérialisé |
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Numéro de commande | 1217 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
index 49c21725246b29..eff6f7d021331e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/json-to-selection
displayed_sidebar: docs
---
-**JSON TO SELECTION** ( *laTable* ; *jsonTab* )
+**JSON TO SELECTION** ( *laTable* : Table ; *jsonTab* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table 4D dans laquelle copier les éléments |
-| jsonTab | Text | → | Tableau d'objets en JSON |
+| laTable | Table | → | Table 4D dans laquelle copier les éléments |
+| jsonTab | Text | → | Tableau d'objets en JSON |
@@ -74,6 +74,6 @@ Utilisation de la commande **JSON TO SELECTION** pour ajouter des enregistrement
| | |
| --- | --- |
| Numéro de commande | 1235 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
index cc53aca078fa69..ac354ba157ce23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
@@ -5,12 +5,12 @@ slug: /commands/json-validate
displayed_sidebar: docs
---
-**JSON Validate** ( *vJson* ; *vSchema* ) : Object
+**JSON Validate** ( *vJson* : Object ; *vSchema* : Object ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| vJson | Object | → | Objet JSON à valider |
-| vSchema | Object | → | Schéma JSON utilisé pour valider les objets JSON |
+| vJson | Object | → | Objet JSON à valider |
+| vSchema | Object | → | Schéma JSON utilisé pour valider les objets JSON |
| Résultat | Object | ← | Statut de la validation et erreurs (éventuellement) |
@@ -110,6 +110,6 @@ Vous souhaitez valider un objet JSON avec un schéma et obtenir la liste des err
| | |
| --- | --- |
| Numéro de commande | 1456 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
index 48ba1fee0e3b8a..a9d728afbc9bda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
@@ -170,6 +170,6 @@ A l'aide des possibilités de communication interprocess de 4D, vous pouvez cons
| | |
| --- | --- |
| Numéro de commande | 390 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
index d62c70f3f6e033..9b488f8b42d55a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
@@ -5,11 +5,11 @@ slug: /commands/kill-worker
displayed_sidebar: docs
---
-**KILL WORKER** {( *process* )}
+**KILL WORKER** ({ *process* : Text, Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Text, Integer | → | Nom ou numéro du process worker à tuer (process courant si omis) |
+| process | Text, Integer | → | Nom ou numéro du process worker à tuer (process courant si omis) |
@@ -59,6 +59,6 @@ Dans la méthode du process worker (*leWorker*), vous ajoutez du code pour gére
| | |
| --- | --- |
| Numéro de commande | 1390 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
index 183ad02fdc40cb..7b740bd6b0dcdd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou Pointeur vers une table |
+| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou Pointeur vers une table |
| Résultat | Integer | ← | Numéro de champ le plus élevé dans la table |
@@ -48,6 +48,6 @@ La méthode projet suivante crée le tableau *taChamps* avec les noms des champs
| | |
| --- | --- |
| Numéro de commande | 255 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
index 95fa73a2e074c7..e5f733a6486756 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-path
displayed_sidebar: docs
---
-**Last query path** ( *formatDesc* ) : Text
+**Last query path** ( *formatDesc* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| formatDesc | Integer | → | Format de description (Texte ou XML) |
+| formatDesc | Integer | → | Format de description (Texte ou XML) |
| Résultat | Text | ← | Description du chemin de la dernière recherche exécutée |
@@ -39,6 +39,6 @@ La description du chemin de la dernière recherche peut être comparée à la de
| | |
| --- | --- |
| Numéro de commande | 1045 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
index 153169db7ce973..0b73877d7c1750 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-plan
displayed_sidebar: docs
---
-**Last query plan** ( *formatDesc* ) : Text
+**Last query plan** ( *formatDesc* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| formatDesc | Integer | → | Format de description (Texte ou XML) |
+| formatDesc | Integer | → | Format de description (Texte ou XML) |
| Résultat | Text | ← | Description du plan de la dernière recherche exécutée |
@@ -38,6 +38,6 @@ La description du plan de la dernière recherche peut être comparée à la desc
| | |
| --- | --- |
| Numéro de commande | 1046 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
index e4d5ef62dc8933..71449d6de42723 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
@@ -5,11 +5,11 @@ slug: /commands/last-record
displayed_sidebar: docs
---
-**LAST RECORD** {( *laTable* )}
+**LAST RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle vous voulez aller au dernier enregistrement ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle vous voulez aller au dernier enregistrement ou Table par défaut si ce paramètre est omis |
@@ -38,7 +38,7 @@ L'exemple suivant désigne le dernier enregistrement de la table \[Contacts\] co
| | |
| --- | --- |
| Numéro de commande | 200 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
index e8dad352aebf31..5b6ce73bfe1cac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
@@ -46,6 +46,6 @@ L’exemple suivant initialise les éléments du tableau tabTables. Ce tableau p
| | |
| --- | --- |
| Numéro de commande | 254 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
index 2701cd457b96a5..6f968b18e612a2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Cette commande est destinée à être utilisée dans un processus de mise à jou
| | |
| --- | --- |
| Numéro de commande | 1301 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
index eaa1a041100e6a..071667de0d9aab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
@@ -5,12 +5,12 @@ slug: /commands/launch-external-process
displayed_sidebar: docs
---
-**LAUNCH EXTERNAL PROCESS** ( *nomFichier* {; *fluxEntrée* {; *fluxSortie* {; *fluxErreur*}}}{; *pid*} )
+**LAUNCH EXTERNAL PROCESS** ( *nomFichier* : Text {; *fluxEntrée* : Text, Blob {; *fluxSortie* : Text, Blob {; *fluxErreur* : Text, Blob}}}{; *pid* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Chemin d’accès et arguments du fichier à lancer |
-| fluxEntrée | Text, Blob | → | Flux d’entrée (stdin) |
+| nomFichier | Text | → | Chemin d’accès et arguments du fichier à lancer |
+| fluxEntrée | Text, Blob | → | Flux d’entrée (stdin) |
| fluxSortie | Text, Blob | ← | Flux de sortie (stdout) |
| fluxErreur | Text, Blob | ← | Flux d’erreur (stderr) |
| pid | Integer | ← | Identifiant unique du process externe |
@@ -154,7 +154,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 811 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
index 5b2c89e18f0b10..a7e6ae1e3942bd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
@@ -5,14 +5,14 @@ slug: /commands/ldap-login
displayed_sidebar: docs
---
-**LDAP LOGIN** ( *url* ; *login* ; *motDePasse* {; *digest*} )
+**LDAP LOGIN** ( *url* : Text ; *login* : Text ; *motDePasse* : Text {; *digest* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| url | Text | → | URL du serveur LDAP auquel se connecter |
-| login | Text | → | Compte de l'utilisateur |
-| motDePasse | Text | → | Mot de passe de l’utilisateur |
-| digest | Integer | → | 0 = envoyer mot de passe en digest MD5 (défaut), 1 = envoyer mot de passe sans encryptage |
+| url | Text | → | URL du serveur LDAP auquel se connecter |
+| login | Text | → | Compte de l'utilisateur |
+| motDePasse | Text | → | Mot de passe de l’utilisateur |
+| digest | Integer | → | 0 = envoyer mot de passe en digest MD5 (défaut), 1 = envoyer mot de passe sans encryptage |
@@ -101,6 +101,6 @@ Cet exemple tente de se connecter à une application :
| | |
| --- | --- |
| Numéro de commande | 1326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
index 9895f765cf4a17..f37fe3b05fe217 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
index 4254cba4f46e5a..a3679d9d54b085 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
@@ -5,16 +5,16 @@ slug: /commands/ldap-search-all
displayed_sidebar: docs
---
-**LDAP SEARCH ALL** ( *dnRootEntry* ; *tabRésultat* ; *filtre* {; *scope* {; *attributs* {; *attributsEnTableau*}}} )
+**LDAP SEARCH ALL** ( *dnRootEntry* : Text ; *tabRésultat* : Object array ; *filtre* : Text {; *scope* : Text {; *attributs* : Text array {; *attributsEnTableau* : Boolean array}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | Distinguished Name de l'élément racine où démarrer la recherche |
+| dnRootEntry | Text | → | Distinguished Name de l'élément racine où démarrer la recherche |
| tabRésultat | Object array | ← | Résultat de la recherche |
-| filtre | Text | → | Filtre de recherche LDAP |
-| scope | Text | → | Champ d'action de la recherche : "base" (défaut), "one" ou "sub" |
-| attributs | Text array | → | Attribut(s) à récupérer |
-| attributsEnTableau | Boolean array | → | Vrai = forcer le retour des attributs en tableaux, Faux = forcer le retour des attributs en variables simples |
+| filtre | Text | → | Filtre de recherche LDAP |
+| scope | Text | → | Champ d'action de la recherche : "base" (défaut), "one" ou "sub" |
+| attributs | Text array | → | Attribut(s) à récupérer |
+| attributsEnTableau | Boolean array | → | Vrai = forcer le retour des attributs en tableaux, Faux = forcer le retour des attributs en variables simples |
@@ -121,6 +121,6 @@ Ces exemples illustrent plus particulièrement l'utilisation du paramètre *attr
| | |
| --- | --- |
| Numéro de commande | 1329 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
index 7d91cacccaf9a8..65754dea9a6d71 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
@@ -5,15 +5,15 @@ slug: /commands/ldap-search
displayed_sidebar: docs
---
-**LDAP Search** ( *dnRootEntry* ; *filtre* {; *scope* {; *attributs* {; *attributsEnTableau*}}} ) : Object
+**LDAP Search** ( *dnRootEntry* : Text ; *filtre* : Text {; *scope* : Text {; *attributs* : Text array {; *attributsEnTableau* : Boolean array}}} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | Distinguished Name de l'élément racine où démarrer la recherche |
-| filtre | Text | → | Filtre de recherche LDAP |
-| scope | Text | → | Champ d'action de la recherche : "base" (défaut), "one" ou "sub" |
-| attributs | Text array | → | Attribut(s) à récupérer |
-| attributsEnTableau | Boolean array | → | Vrai = forcer le retour des attributs en tableaux, Faux = forcer le retour des attributs en variables simples |
+| dnRootEntry | Text | → | Distinguished Name de l'élément racine où démarrer la recherche |
+| filtre | Text | → | Filtre de recherche LDAP |
+| scope | Text | → | Champ d'action de la recherche : "base" (défaut), "one" ou "sub" |
+| attributs | Text array | → | Attribut(s) à récupérer |
+| attributsEnTableau | Boolean array | → | Vrai = forcer le retour des attributs en tableaux, Faux = forcer le retour des attributs en variables simples |
| Résultat | Object | ← | Attributs clé/valeur |
@@ -89,6 +89,6 @@ Vous voulez obtenir un tableau de toutes les entrées trouvées pour l'attribut
| | |
| --- | --- |
| Numéro de commande | 1328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md
index 3d2cf99a15b183..ccad1c33a3ec44 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/length.md
@@ -5,11 +5,11 @@ slug: /commands/length
displayed_sidebar: docs
---
-**Length** ( *chaîne* ) : Integer
+**Length** ( *chaîne* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chaîne | Text | → | Chaîne dont vous voulez connaître la longueur |
+| chaîne | Text | → | Chaîne dont vous voulez connaître la longueur |
| Résultat | Integer | ← | Nombre de caractères de chaîne |
@@ -35,6 +35,6 @@ L'exemple suivant illustre l'utilisation de **Length**. Les valeurs retournées
| | |
| --- | --- |
| Numéro de commande | 16 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md
index e22dbb0b9d8df3..84bf068892708e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/level.md
@@ -72,6 +72,6 @@ Cet exemple est une maquette de méthode formulaire. Il traite chaque événemen
| | |
| --- | --- |
| Numéro de commande | 101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
index 8c46f2cc56dc7d..29eb1cc760f726 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Ce tableau détaille le contenu de l'objet session des sessions REST :
| | |
| --- | --- |
| Numéro de commande | 1782 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
index f6dfec80699f59..37796183a68b55 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-parent
displayed_sidebar: docs
---
-**List item parent** ( {* ;} *liste* ; *refElément* ) : Integer
**List item parent** ( * ; *liste* ; * ) : Integer
+**List item parent** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ) : Integer
**List item parent** ( * ; *liste* : Integer, Text ; * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément courant de la liste |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l'élément courant de la liste |
| Résultat | Integer | ← | Numéro de référence de l'élément parent ou 0 s'il n'y en a pas |
@@ -75,6 +75,6 @@ Voici les numéros de référence des éléments de cette liste :
| | |
| --- | --- |
| Numéro de commande | 633 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
index cd6fbdb6dea9b5..c8d902729be011 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-position
displayed_sidebar: docs
---
-**List item position** ( {* ;} *liste* ; *réfElément* ) : Integer
+**List item position** ( {* ;} *liste* : Integer, Text ; *réfElément* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| réfElément | Integer | → | Numéro de référence d'élément |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| réfElément | Integer | → | Numéro de référence d'élément |
| Résultat | Integer | ← | Position de l'élément parmi la ou les liste(s) déployée(s)/contractée(s) |
@@ -44,6 +44,6 @@ Si l'élément n'existe pas, **List item position** retourne *0*.
| | |
| --- | --- |
| Numéro de commande | 629 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
index 76a9258b5793dd..df1a3ff2d60adb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-choice-lists
displayed_sidebar: docs
---
-**LIST OF CHOICE LISTS** ( *tabNums* ; *tabNoms* )
+**LIST OF CHOICE LISTS** ( *tabNums* : Integer array ; *tabNoms* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ Les numéros des énumérations correspondent à leur ordre de création. Dans l
| | |
| --- | --- |
| Numéro de commande | 957 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
index 4fc69dc0f02ce4..25973fb5fd3594 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-style-sheets
displayed_sidebar: docs
---
-**LIST OF STYLE SHEETS** ( *tabFeuillesStyle* )
+**LIST OF STYLE SHEETS** ( *tabFeuillesStyle* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Si vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1255 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
index aa191062e88767..81ab7b3da09595 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
@@ -5,11 +5,11 @@ slug: /commands/list-to-array
displayed_sidebar: docs
---
-**LIST TO ARRAY** ( *liste* ; *tableau* {; *réfEléments*} )
+**LIST TO ARRAY** ( *liste* : Text, Integer ; *tableau* : Array {; *réfEléments* : Array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Text, Integer | → | Nom ou référence de la liste de laquelle copier les éléments du premier niveau |
+| liste | Text, Integer | → | Nom ou référence de la liste de laquelle copier les éléments du premier niveau |
| tableau | Array | ← | Tableau dans lequel copier les éléments de la liste |
| réfEléments | Array | ← | Numéros de référence des éléments de la liste |
@@ -90,6 +90,6 @@ Si vous exécutez l’instruction :
| | |
| --- | --- |
| Numéro de commande | 288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
index 829fc89cfdd868..3d1354c677e689 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/list-to-blob
displayed_sidebar: docs
---
-**LIST TO BLOB** ( *liste* ; *blob* {; *blob*} )
+**LIST TO BLOB** ( *liste* : Integer ; *blob* : * {; *blob* : *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Liste hiérarchique à stocker dans le BLOB |
-| blob | Blob | → | BLOB devant recevoir la liste hiérarchique |
-| blob | * | → | Ajouter la liste à la fin du BLOB |
+| liste | Integer | → | Liste hiérarchique à stocker dans le BLOB |
+| Blob | Blob | → | BLOB devant recevoir la liste hiérarchique |
+| blob | * | → | Ajouter la liste à la fin du BLOB |
@@ -51,7 +51,7 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 556 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
index a7ac698779dffe..7c0feb53fb6df3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-collapse
displayed_sidebar: docs
---
-**LISTBOX COLLAPSE** ( {* ;} *objet* {; *récursive* {; *sélecteur* {; *ligne* {; *colonne*}}}} )
+**LISTBOX COLLAPSE** ( * ; *objet* : Text {; *récursive* : Boolean {; *sélecteur* : Integer {; *ligne* : Integer {; *colonne* : Integer}}}} )
**LISTBOX COLLAPSE** ( *objet* : Field, Variable {; *récursive* : Boolean {; *sélecteur* : Integer {; *ligne* : Integer {; *colonne* : Integer}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
-| récursive | Boolean | → | Vrai = contracter les sous-niveaux, Faux = ne pas contracter les sous-niveaux |
-| sélecteur | Integer | → | Partie de la list box à contracter |
-| ligne | Integer | → | Numéro de ligne de la rupture à contracter ou Numéro de niveau de la list box à contracter |
-| colonne | Integer | → | Numéro de colonne de la rupture à contracter |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
+| récursive | Boolean | → | Vrai = contracter les sous-niveaux, Faux = ne pas contracter les sous-niveaux |
+| sélecteur | Integer | → | Partie de la list box à contracter |
+| ligne | Integer | → | Numéro de ligne de la rupture à contracter ou Numéro de niveau de la list box à contracter |
+| colonne | Integer | → | Numéro de colonne de la rupture à contracter |
@@ -56,6 +56,6 @@ Cet exemple contracte le premier niveau de lignes de rupture de la sélection de
| | |
| --- | --- |
| Numéro de commande | 1101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
index 04809fb056b679..65246a554e5a57 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-column
displayed_sidebar: docs
---
-**LISTBOX DELETE COLUMN** ( {* ;} *objet* ; *positionCol* {; *nombre*} )
+**LISTBOX DELETE COLUMN** ( * ; *objet* : Text ; *positionCol* : Integer {; *nombre* : Integer} )
**LISTBOX DELETE COLUMN** ( *objet* : Field, Variable ; *positionCol* : Integer {; *nombre* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| positionCol | Integer | → | Numéro courant de la colonne à supprimer |
-| nombre | Integer | → | Nombre de colonnes à supprimer |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| positionCol | Integer | → | Numéro courant de la colonne à supprimer |
+| nombre | Integer | → | Nombre de colonnes à supprimer |
@@ -39,6 +39,6 @@ Si le paramètre *positionCol* est supérieur au nombre de colonnes de la list b
| | |
| --- | --- |
| Numéro de commande | 830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
index 0c1727aaef6c72..47579649c267c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-rows
displayed_sidebar: docs
---
-**LISTBOX DELETE ROWS** ( {* ;} *objet* ; *positionLigne* {; *nbLignes*} )
+**LISTBOX DELETE ROWS** ( * ; *objet* : Text ; *positionLigne* : Integer {; *nbLignes* : Integer} )
**LISTBOX DELETE ROWS** ( *objet* : Field, Variable ; *positionLigne* : Integer {; *nbLignes* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| positionLigne | Integer | → | Numéro de la première ligne à supprimer |
-| nbLignes | Integer | → | Nombre de lignes à supprimer |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| positionLigne | Integer | → | Numéro de la première ligne à supprimer |
+| nbLignes | Integer | → | Nombre de lignes à supprimer |
@@ -41,7 +41,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 914 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
index fffc445355c5a7..8048dd4e715b09 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-duplicate-column
displayed_sidebar: docs
---
-**LISTBOX DUPLICATE COLUMN** ( {* ;} *objet* ; *positionCol* ; *nomCol* ; *variableCol* ; *nomEntête* ; *varEntête* {; *nomPied* ; *variablePied*} )
+**LISTBOX DUPLICATE COLUMN** ( * ; *objet* : Text ; *positionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEntête* : Text ; *varEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
**LISTBOX DUPLICATE COLUMN** ( *objet* : Field, Variable ; *positionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEntête* : Text ; *varEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) de la colonne à dupliquer |
-| positionCol | Integer | → | Emplacement de la nouvelle colonne dupliquée |
-| nomCol | Text | → | Nom de la nouvelle colonne |
-| variableCol | Array, Field, Variable, Pointer | → | Nom de la variable tableau de la colonne ou champ ou variable |
-| nomEntête | Text | → | Nom d’objet de l’en-tête de la colonne |
-| varEntête | Integer, Pointer | → | Variable d’en-tête de la colonne |
-| nomPied | Text | → | Nom d’objet du pied de la colonne |
-| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) de la colonne à dupliquer |
+| positionCol | Integer | → | Emplacement de la nouvelle colonne dupliquée |
+| nomCol | Text | → | Nom de la nouvelle colonne |
+| variableCol | Array, Field, Variable, Pointer | → | Nom de la variable tableau de la colonne ou champ ou variable |
+| nomEntête | Text | → | Nom d’objet de l’en-tête de la colonne |
+| varEntête | Integer, Pointer | → | Variable d’en-tête de la colonne |
+| nomPied | Text | → | Nom d’objet du pied de la colonne |
+| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
@@ -98,6 +98,6 @@ Vous souhaitez dupliquer dynamiquement une colonne booléenne et modifier son ti
| | |
| --- | --- |
| Numéro de commande | 1273 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
index e8444babd31e1c..7dee6728263f19 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-expand
displayed_sidebar: docs
---
-**LISTBOX EXPAND** ( {* ;} *objet* {; *récursive* {; *sélecteur* {; *ligne* {; *colonne*}}}} )
+**LISTBOX EXPAND** ( * ; *objet* : Text {; *récursive* : Boolean {; *sélecteur* : Integer {; *ligne* : Integer {; *colonne* : Integer}}}} )
**LISTBOX EXPAND** ( *objet* : Field, Variable {; *récursive* : Boolean {; *sélecteur* : Integer {; *ligne* : Integer {; *colonne* : Integer}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| récursive | Boolean | → | Vrai = déployer les sous-niveaux, Faux = ne pas déployer les sous-niveaux |
-| sélecteur | Integer | → | Partie de la list box à déployer |
-| ligne | Integer | → | Numéro de ligne de la rupture à déployer ou Numéro de niveau de la list box à déployer |
-| colonne | Integer | → | Numéro de colonne de la rupture à déployer |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| récursive | Boolean | → | Vrai = déployer les sous-niveaux, Faux = ne pas déployer les sous-niveaux |
+| sélecteur | Integer | → | Partie de la list box à déployer |
+| ligne | Integer | → | Numéro de ligne de la rupture à déployer ou Numéro de niveau de la list box à déployer |
+| colonne | Integer | → | Numéro de colonne de la rupture à déployer |
@@ -85,6 +85,6 @@ Cet exemple illustre différents modes d’utilisation de la commande. Soient le
| | |
| --- | --- |
| Numéro de commande | 1100 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
index 17a39f11de3931..6019c933a1c9a8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-array
displayed_sidebar: docs
---
-**LISTBOX Get array** ( {* ;} *objet* ; *typeTab* ) : Pointer
+**LISTBOX Get array** ( * ; *objet* : Text ; *typeTab* : Integer ) : Pointer
**LISTBOX Get array** ( *objet* : Field, Variable ; *typeTab* : Integer ) : Pointer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| typeTab | Integer | → | Type de tableau |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| typeTab | Integer | → | Type de tableau |
| Résultat | Pointer | ← | Pointeur vers le tableau associé à la propriété |
@@ -66,6 +66,6 @@ Exemples type d’utilisation :
| | |
| --- | --- |
| Numéro de commande | 1278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
index df3454aa1bb0d6..eaa44a72de4c73 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-arrays
displayed_sidebar: docs
---
-**LISTBOX GET ARRAYS** ( {* ;} *objet* ; *tabNomsCols* ; *tabNomsEntêtes* ; *tabVarCols* ; *tabVarEntêtes* ; *tabColsVisibles* ; *tabStyles* {; *tabNomsPieds* ; *tabVarPieds*} )
+**LISTBOX GET ARRAYS** ( * ; *objet* : Text ; *tabNomsCols* : Text array ; *tabNomsEntêtes* : Text array ; *tabVarCols* : Pointer array ; *tabVarEntêtes* : Pointer array ; *tabColsVisibles* : Boolean array ; *tabStyles* : Pointer array {; *tabNomsPieds* : Text array ; *tabVarPieds* : Pointer array} )
**LISTBOX GET ARRAYS** ( *objet* : Field, Variable ; *tabNomsCols* : Text array ; *tabNomsEntêtes* : Text array ; *tabVarCols* : Pointer array ; *tabVarEntêtes* : Pointer array ; *tabColsVisibles* : Boolean array ; *tabStyles* : Pointer array {; *tabNomsPieds* : Text array ; *tabVarPieds* : Pointer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| tabNomsCols | Text array | ← | Noms d’objet des colonnes |
| tabNomsEntêtes | Text array | ← | Noms d’objet des en-têtes |
| tabVarCols | Pointer array | ← | Pointeurs vers les variables des colonnes ou Pointeurs vers les champs des colonnes ou Nil |
@@ -55,6 +55,6 @@ Pour une list box de type sélection, collection ou entity selection, *tabStyles
| | |
| --- | --- |
| Numéro de commande | 832 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
index 4265422979591d..3ebdba956be5a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX Get auto row height** ( {* ;} *objet* ; *sélecteur* {; *unité*} ) : Integer
+**LISTBOX Get auto row height** ( * ; *objet* : Text ; *sélecteur* : Integer {; *unité* : Integer} ) : Integer
**LISTBOX Get auto row height** ( *objet* : Field, Variable ; *sélecteur* : Integer {; *unité* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (une chaîne). Si omis, objet est une variable. |
-| objet | any | → | Nom de l'objet (si * est spécifié) ou variable (si * est omis) |
-| sélecteur | Integer | → | Valeur de hauteur à lire : lk hauteur ligne min ou lk hauteur ligne max |
-| unité | Integer | → | Valeur d'unité de hauteur : 0 = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (une chaîne). Si omis, objet est une variable. |
+| objet | any | → | Nom de l'objet (si * est spécifié) ou variable (si * est omis) |
+| sélecteur | Integer | → | Valeur de hauteur à lire : lk hauteur ligne min ou lk hauteur ligne max |
+| unité | Integer | → | Valeur d'unité de hauteur : 0 = pixels, 1 = lignes |
| Résultat | Integer | ← | Valeur de la limite de hauteur de ligne sélectionnée |
@@ -61,6 +61,6 @@ Vous voulez connaître le nombre de lignes maximum pouvant être affichées dans
| | |
| --- | --- |
| Numéro de commande | 1502 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
index b03717f989ea61..40305946b7067f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-coordinates
displayed_sidebar: docs
---
-**LISTBOX GET CELL COORDINATES** ( {* ;} *objet* ; *colonne* ; *ligne* ; *gauche* ; *haut* ; *droite* ; *bas* )
+**LISTBOX GET CELL COORDINATES** ( * ; *objet* : Text ; *colonne* : Integer ; *ligne* : Integer ; *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer )
**LISTBOX GET CELL COORDINATES** ( *objet* : Field, Variable ; *colonne* : Integer ; *ligne* : Integer ; *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| colonne | Integer | → | Numéro de colonne |
-| ligne | Integer | → | Numéro de ligne |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| colonne | Integer | → | Numéro de colonne |
+| ligne | Integer | → | Numéro de ligne |
| gauche | Integer | ← | Coordonnée gauche de l'objet |
| haut | Integer | ← | Coordonnée supérieure de l’objet |
| droite | Integer | ← | Coordonnée droite de l’objet |
@@ -59,6 +59,6 @@ Vous souhaitez afficher un rectangle rouge autour de la cellule sélectionnée d
| | |
| --- | --- |
| Numéro de commande | 1330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
index c14ab2f077ee9a..2415944546f29b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-position
displayed_sidebar: docs
---
-**LISTBOX GET CELL POSITION** ( {* ;} *objet* {; *x* ; *y* }; *colonne* ; *ligne* {; *varCol*} )
+**LISTBOX GET CELL POSITION** ( * ; *objet* : Text {; *x* : Real ; *y* : Real }; *colonne* : Integer ; *ligne* : Integer {; *varCol* : Pointer} )
**LISTBOX GET CELL POSITION** ( *objet* : Field, Variable {; *x* : Real ; *y* : Real }; *colonne* : Integer ; *ligne* : Integer {; *varCol* : Pointer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| x | Real | → | Coordonnée horizontale de la souris |
-| y | Real | → | Coordonnée verticale de la souris |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| x | Real | → | Coordonnée horizontale de la souris |
+| y | Real | → | Coordonnée verticale de la souris |
| colonne | Integer | ← | Numéro de colonne |
| ligne | Integer | ← | Numéro de ligne |
| varCol | Pointer | ← | Pointeur sur la variable de colonne |
@@ -61,6 +61,6 @@ Si la sélection est modifiée via les touches fléchées du clavier, *colonne*
| | |
| --- | --- |
| Numéro de commande | 971 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
index e970834fdc80de..2cd26375b568fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-formula
displayed_sidebar: docs
---
-**LISTBOX Get column formula** ( {* ;} *objet* ) : Text
+**LISTBOX Get column formula** ( * ; *objet* : Text ) : Text
**LISTBOX Get column formula** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| Résultat | Text | ← | Formule associée à la colonne |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1202 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
index d6a076f5fa883f..ddb86e0b6af183 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-width
displayed_sidebar: docs
---
-**LISTBOX Get column width** ( {* ;} *objet* {; *largeurMini* {; *largeurMaxi*}} ) : Integer
+**LISTBOX Get column width** ( * ; *objet* : Text {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} ) : Integer
**LISTBOX Get column width** ( *objet* : Field, Variable {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| largeurMini | Integer | ← | Largeur minimale de la colonne (en pixels) |
| largeurMaxi | Integer | ← | Largeur maximale de la colonne (en pixels) |
| Résultat | Integer | ← | Largeur de colonne en pixels |
@@ -34,6 +34,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 834 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
index fe52e83a07af8c..2a0629c068cc57 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX Get footer calculation** ( {* ;} *objet* ) : Integer
+**LISTBOX Get footer calculation** ( * ; *objet* : Text ) : Integer
**LISTBOX Get footer calculation** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Integer | ← | Type de calcul |
@@ -37,6 +37,6 @@ Vous pouvez comparer la valeur retournée aux constantes du thème *List box pie
| | |
| --- | --- |
| Numéro de commande | 1150 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
index ab1693603c3ae3..750b4f037e3012 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-footers-height
displayed_sidebar: docs
---
-**LISTBOX Get footers height** ( {* ;} *objet* {; *unité*} ) : Integer
+**LISTBOX Get footers height** ( * ; *objet* : Text {; *unité* : Integer} ) : Integer
**LISTBOX Get footers height** ( *objet* : Field, Variable {; *unité* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
| Résultat | Integer | ← | Hauteur de la ligne |
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1146 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
index d70bfe615a265b..74d922d5abcbc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid-colors
displayed_sidebar: docs
---
-**LISTBOX GET GRID COLORS** ( {* ;} *objet* ; *couleurH* ; *couleurV* )
+**LISTBOX GET GRID COLORS** ( * ; *objet* : Text ; *couleurH* : Text, Integer ; *couleurV* : Text, Integer )
**LISTBOX GET GRID COLORS** ( *objet* : Field, Variable ; *couleurH* : Text, Integer ; *couleurV* : Text, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| couleurH | Text, Integer | ← | Valeur de couleur RVB pour les traits horizontaux |
| couleurV | Text, Integer | ← | Valeur de couleur RVB pour les traits verticaux |
@@ -36,6 +36,6 @@ La commande retourne dans les paramètres *couleurH* et *couleurV* des valeurs d
| | |
| --- | --- |
| Numéro de commande | 1200 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
index 5b1f7873241717..3b691092dbe8b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid
displayed_sidebar: docs
---
-**LISTBOX GET GRID** ( {* ;} *objet* ; *horizontal* ; *vertical* )
+**LISTBOX GET GRID** ( * ; *objet* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX GET GRID** ( *objet* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| horizontal | Boolean | ← | Vrai = affichée, Faux = cachée |
| vertical | Boolean | ← | Vrai = affichée, Faux = cachée |
@@ -33,6 +33,6 @@ La commande retourne dans les paramètres *horizontal* et *vertical* la valeur *
| | |
| --- | --- |
| Numéro de commande | 1199 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
index 94a366ce37aed6..8cbc433484d3e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-headers-height
displayed_sidebar: docs
---
-**LISTBOX Get headers height** ( {* ;} *objet* {; *unité*} ) : Integer
+**LISTBOX Get headers height** ( * ; *objet* : Text {; *unité* : Integer} ) : Integer
**LISTBOX Get headers height** ( *objet* : Field, Variable {; *unité* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
| Résultat | Integer | ← | Hauteur de la ligne |
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1144 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
index 1908bf7e8c995d..152805d5b87950 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-hierarchy
displayed_sidebar: docs
---
-**LISTBOX GET HIERARCHY** ( {* ;} *objet* ; *hiérarchique* {; *hiérarchie*} )
+**LISTBOX GET HIERARCHY** ( * ; *objet* : Text ; *hiérarchique* : Boolean {; *hiérarchie* : Pointer array} )
**LISTBOX GET HIERARCHY** ( *objet* : Field, Variable ; *hiérarchique* : Boolean {; *hiérarchie* : Pointer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| hiérarchique | Boolean | ← | Vrai = list box hiérarchique, Faux = list box non hiérarchique |
| hiérarchie | Pointer array | ← | Tableau de pointeurs |
@@ -40,6 +40,6 @@ Si la list box est en mode hiérarchique, la commande remplit le tableau *hiéra
| | |
| --- | --- |
| Numéro de commande | 1099 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
index 3866ec8ae587ac..0a52f4b6af4cc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-locked-columns
displayed_sidebar: docs
---
-**LISTBOX Get locked columns** ( {* ;} *objet* ) : Integer
+**LISTBOX Get locked columns** ( * ; *objet* : Text ) : Integer
**LISTBOX Get locked columns** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| Résultat | Integer | ← | Nombre de colonnes verrouillées |
@@ -36,6 +36,6 @@ En revanche, la commande ne tient pas compte du statut visible/invisible des col
| | |
| --- | --- |
| Numéro de commande | 1152 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
index 11c4deb2a6c933..9f4d9524d56b23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-columns
displayed_sidebar: docs
---
-**LISTBOX Get number of columns** ( {* ;} *objet* ) : Integer
+**LISTBOX Get number of columns** ( * ; *objet* : Text ) : Integer
**LISTBOX Get number of columns** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Integer | ← | Nombre de colonnes |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
index a69d807ea146fa..c85de9e9aa48f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-rows
displayed_sidebar: docs
---
-**LISTBOX Get number of rows** ( {* ;} *objet* ) : Integer
+**LISTBOX Get number of rows** ( * ; *objet* : Text ) : Integer
**LISTBOX Get number of rows** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Integer | ← | Nombre de lignes |
@@ -35,6 +35,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 915 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
index eaf1a211e28fc6..238c87970ad1df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-objects
displayed_sidebar: docs
---
-**LISTBOX GET OBJECTS** ( {* ;} *objet* ; *tabNomsObj* )
+**LISTBOX GET OBJECTS** ( * ; *objet* : Text ; *tabNomsObj* : Text array )
**LISTBOX GET OBJECTS** ( *objet* : Field, Variable ; *tabNomsObj* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| tabNomsObj | Text array | ← | Noms des sous-objets de la list box (en-têtes, colonnes, pieds) |
@@ -65,6 +65,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
index 13cff053c8975d..98d4be3421ea54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-print-information
displayed_sidebar: docs
---
-**LISTBOX GET PRINT INFORMATION** ( {* ;} *objet* ; *sélecteur* ; *info* )
+**LISTBOX GET PRINT INFORMATION** ( * ; *objet* : Text ; *sélecteur* : Integer ; *info* : Integer )
**LISTBOX GET PRINT INFORMATION** ( *objet* : Field, Variable ; *sélecteur* : Integer ; *info* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
-| sélecteur | Integer | → | Information à obtenir |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
+| sélecteur | Integer | → | Information à obtenir |
| info | Integer | ← | Valeur courante |
@@ -73,6 +73,6 @@ Impression d’au moins 500 lignes de la list box, sachant que certaines lignes
| | |
| --- | --- |
| Numéro de commande | 1110 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
index f0609fc3e2db32..7ea8bdc6af2d67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color-as-number
displayed_sidebar: docs
---
-**LISTBOX Get row color as number** ( {* ;} *objet* ; *ligne* {; *typeCouleur*} ) : Integer
+**LISTBOX Get row color as number** ( * ; *objet* : Text ; *ligne* : Integer {; *typeCouleur* : Integer} ) : Integer
**LISTBOX Get row color as number** ( *objet* : Field, Variable ; *ligne* : Integer {; *typeCouleur* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Numéro de ligne |
-| typeCouleur | Integer | → | lk couleur de police (défaut) ou lk couleur de fond |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Numéro de ligne |
+| typeCouleur | Integer | → | lk couleur de police (défaut) ou lk couleur de fond |
| Résultat | Integer | ← | Valeur de couleur |
@@ -62,6 +62,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1271 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
index 3826aad228ed01..75d5d0f2ffc5b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color
displayed_sidebar: docs
---
-**LISTBOX Get row color** ( {* ;} *objet* ; *ligne* {; *typeCouleur*} ) : Text
+**LISTBOX Get row color** ( * ; *objet* : Text ; *ligne* : Integer {; *typeCouleur* : Integer} ) : Text
**LISTBOX Get row color** ( *objet* : Field, Variable ; *ligne* : Integer {; *typeCouleur* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, l'objet est un nom d'objet (chaîne). Si omis, l'objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Numéro de ligne |
-| typeCouleur | Integer | → | Couleur de police de la listbox (par défaut) ou couleur de fond de la listbox |
+| * | Opérateur | → | Si spécifié, l'objet est un nom d'objet (chaîne). Si omis, l'objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Numéro de ligne |
+| typeCouleur | Integer | → | Couleur de police de la listbox (par défaut) ou couleur de fond de la listbox |
| Résultat | Text | ← | Valeur de la couleur |
@@ -63,6 +63,6 @@ Considérons la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1658 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
index fe6019112a1c91..e1a24c9b5c383d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-font-style
displayed_sidebar: docs
---
-**LISTBOX Get row font style** ( {* ;} *objet* ; *ligne* ) : Integer
+**LISTBOX Get row font style** ( * ; *objet* : Text ; *ligne* : Integer ) : Integer
**LISTBOX Get row font style** ( *objet* : Field, Variable ; *ligne* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| ligne | Integer | → | Numéro de ligne |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| ligne | Integer | → | Numéro de ligne |
| Résultat | Integer | ← | Valeur de style |
@@ -55,6 +55,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1269 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
index c69509e75989d3..81169d919155ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-height
displayed_sidebar: docs
---
-**LISTBOX Get row height** ( {* ;} *objet* ; *ligne* ) : Integer
+**LISTBOX Get row height** ( * ; *objet* : Text ; *ligne* : Integer ) : Integer
**LISTBOX Get row height** ( *objet* : Field, Variable ; *ligne* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Ligne de la List box dont on veut récupérer la hauteur |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Ligne de la List box dont on veut récupérer la hauteur |
| Résultat | Integer | ← | Hauteur de la ligne |
@@ -40,6 +40,6 @@ La hauteur de ligne retournée est exprimée:
| | |
| --- | --- |
| Numéro de commande | 1408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
index 28115376fa7c7c..b5ab50fc5355a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-rows-height
displayed_sidebar: docs
---
-**LISTBOX Get rows height** ( {* ;} *objet* {; *unité*} ) : Integer
+**LISTBOX Get rows height** ( * ; *objet* : Text {; *unité* : Integer} ) : Integer
**LISTBOX Get rows height** ( *objet* : Field, Variable {; *unité* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
| Résultat | Integer | ← | Hauteur de ligne en pixels |
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 836 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
index 1d426be5abd890..846ea18e4fc0a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-static-columns
displayed_sidebar: docs
---
-**LISTBOX Get static columns** ( {* ;} *objet* ) : Integer
+**LISTBOX Get static columns** ( * ; *objet* : Text ) : Integer
**LISTBOX Get static columns** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| Résultat | Integer | ← | Nombre de colonnes statiques |
@@ -36,6 +36,6 @@ Si une colonne a été insérée ou supprimée par programmation à l’intérie
| | |
| --- | --- |
| Numéro de commande | 1154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
index f39d858a1d96cf..08336a44af5681 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-table-source
displayed_sidebar: docs
---
-**LISTBOX GET TABLE SOURCE** ( {* ;} *objet* ; *numTable* {; *nom* {; *nomSurlignage*}} )
+**LISTBOX GET TABLE SOURCE** ( * ; *objet* : Text ; *numTable* : Integer {; *nom* : Text {; *nomSurlignage* : Text}} )
**LISTBOX GET TABLE SOURCE** ( *objet* : Field, Variable ; *numTable* : Integer {; *nom* : Text {; *nomSurlignage* : Text}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| numTable | Integer | ← | Numéro de la table de la sélection |
| nom | Text | ← | Nom de la sélection temporaire ou "" pour la sélection courante |
| nomSurlignage | Text | ← | Nom de l’ensemble de surlignage |
@@ -37,6 +37,6 @@ Si la list box est associée à des tableaux, *numTable* retourne -1 et *nom*, s
| | |
| --- | --- |
| Numéro de commande | 1014 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
index c50a3a5e9707cd..b854c1908500a1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
@@ -5,20 +5,20 @@ slug: /commands/listbox-insert-column-formula
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN FORMULA** ( {* ;} *objet* ; *positionCol* ; *nomCol* ; *formule* ; *typeDonnées* ; *nomEnTête* ; *variableEntête* {; *nomPied* ; *variablePied*} )
+**LISTBOX INSERT COLUMN FORMULA** ( * ; *objet* : Text ; *positionCol* : Integer ; *nomCol* : Text ; *formule* : Text ; *typeDonnées* : Integer ; *nomEnTête* : Text ; *variableEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
**LISTBOX INSERT COLUMN FORMULA** ( *objet* : Field, Variable ; *positionCol* : Integer ; *nomCol* : Text ; *formule* : Text ; *typeDonnées* : Integer ; *nomEnTête* : Text ; *variableEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| positionCol | Integer | → | Emplacement de la colonne à insérer |
-| nomCol | Text | → | Nom d’objet de la colonne |
-| formule | Text | → | Formule 4D associée à la colonne |
-| typeDonnées | Integer | → | Type de résultat de la formule |
-| nomEnTête | Text | → | Nom d'objet de l'en-tête de la colonne |
-| variableEntête | Integer, Pointer | → | Variable d'en-tête de la colonne |
-| nomPied | Text | → | Nom d’objet du pied de la colonne |
-| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| positionCol | Integer | → | Emplacement de la colonne à insérer |
+| nomCol | Text | → | Nom d’objet de la colonne |
+| formule | Text | → | Formule 4D associée à la colonne |
+| typeDonnées | Integer | → | Type de résultat de la formule |
+| nomEnTête | Text | → | Nom d'objet de l'en-tête de la colonne |
+| variableEntête | Integer, Pointer | → | Variable d'en-tête de la colonne |
+| nomPied | Text | → | Nom d’objet du pied de la colonne |
+| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
@@ -122,6 +122,6 @@ La colonne est ajoutée à la list box :
| | |
| --- | --- |
| Numéro de commande | 970 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
index 609a139f307b5c..769ab065ef06e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-insert-column
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN** ( {* ;} *objet* ; *positionCol* ; *nomCol* ; *variableCol* ; *nomEnTête* ; *variableEntête* {; *nomPied* ; *variablePied*} )
+**LISTBOX INSERT COLUMN** ( * ; *objet* : Text ; *positionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEnTête* : Text ; *variableEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
**LISTBOX INSERT COLUMN** ( *objet* : Field, Variable ; *positionCol* : Integer ; *nomCol* : Text ; *variableCol* : Array, Field, Variable, Pointer ; *nomEnTête* : Text ; *variableEntête* : Integer, Pointer {; *nomPied* : Text ; *variablePied* : Variable, Pointer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| positionCol | Integer | → | Emplacement de la colonne à insérer |
-| nomCol | Text | → | Nom d’objet de la colonne |
-| variableCol | Array, Field, Variable, Pointer | → | Nom de la variable tableau de la colonne ou champ ou variable |
-| nomEnTête | Text | → | Nom d’objet de l’en-tête de la colonne |
-| variableEntête | Integer, Pointer | → | Variable d’en-tête de la colonne |
-| nomPied | Text | → | Nom d’objet du pied de la colonne |
-| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| positionCol | Integer | → | Emplacement de la colonne à insérer |
+| nomCol | Text | → | Nom d’objet de la colonne |
+| variableCol | Array, Field, Variable, Pointer | → | Nom de la variable tableau de la colonne ou champ ou variable |
+| nomEnTête | Text | → | Nom d’objet de l’en-tête de la colonne |
+| variableEntête | Integer, Pointer | → | Variable d’en-tête de la colonne |
+| nomPied | Text | → | Nom d’objet du pied de la colonne |
+| variablePied | Variable, Pointer | → | Variable du pied de la colonne |
@@ -102,6 +102,6 @@ Vous souhaitez insérer dynamiquement une colonne dans une list box de type tabl
| | |
| --- | --- |
| Numéro de commande | 829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
index 3ddc3599ef397b..7f66624d3df617 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-insert-rows
displayed_sidebar: docs
---
-**LISTBOX INSERT ROWS** ( {* ;} *objet* ; *positionLigne* {; *nbLignes*} )
+**LISTBOX INSERT ROWS** ( * ; *objet* : Text ; *positionLigne* : Integer {; *nbLignes* : Integer} )
**LISTBOX INSERT ROWS** ( *objet* : Field, Variable ; *positionLigne* : Integer {; *nbLignes* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| positionLigne | Integer | → | Emplacement de la ligne à insérer |
-| nbLignes | Integer | → | Nombre de lignes à insérer |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| positionLigne | Integer | → | Emplacement de la ligne à insérer |
+| nbLignes | Integer | → | Nombre de lignes à insérer |
@@ -39,7 +39,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 913 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
index bb9ba2ea13d9f9..9ea31bd3898b63 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-move-column
displayed_sidebar: docs
---
-**LISTBOX MOVE COLUMN** ( {* ;} *objet* ; *positionCol* )
+**LISTBOX MOVE COLUMN** ( * ; *objet* : Text ; *positionCol* : Integer )
**LISTBOX MOVE COLUMN** ( *objet* : Field, Variable ; *positionCol* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) de la colonne à déplacer |
-| positionCol | Integer | → | Nouvel emplacement de la colonne |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) de la colonne à déplacer |
+| positionCol | Integer | → | Nouvel emplacement de la colonne |
@@ -46,6 +46,6 @@ Vous souhaitez intervertir les 2e et 3e colonnes de la list box :
| | |
| --- | --- |
| Numéro de commande | 1274 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
index f54fd5b65166ed..aba1dec7fcb55b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-column-number
displayed_sidebar: docs
---
-**LISTBOX MOVED COLUMN NUMBER** ( {* ;} *objet* ; *ancPosition* ; *nouvPosition* )
+**LISTBOX MOVED COLUMN NUMBER** ( * ; *objet* : Text ; *ancPosition* : Integer ; *nouvPosition* : Integer )
**LISTBOX MOVED COLUMN NUMBER** ( *objet* : Field, Variable ; *ancPosition* : Integer ; *nouvPosition* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| ancPosition | Integer | ← | Ancienne position de la colonne déplacée |
| nouvPosition | Integer | ← | Nouvelle position de la colonne déplacée |
@@ -36,6 +36,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 844 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
index ba2a170568be6c..02a766f51cc46e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-row-number
displayed_sidebar: docs
---
-**LISTBOX MOVED ROW NUMBER** ( {* ;} *objet* ; *ancPosition* ; *nouvPosition* )
+**LISTBOX MOVED ROW NUMBER** ( * ; *objet* : Text ; *ancPosition* : Integer ; *nouvPosition* : Integer )
**LISTBOX MOVED ROW NUMBER** ( *objet* : Field, Variable ; *ancPosition* : Integer ; *nouvPosition* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| ancPosition | Integer | ← | Précédente position de la ligne déplacée |
| nouvPosition | Integer | ← | Nouvelle position de la ligne déplacée |
@@ -38,6 +38,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 837 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
index b87028e4e3ab7c..82325dbb97f6f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-select-break
displayed_sidebar: docs
---
-**LISTBOX SELECT BREAK** ( {* ;} *objet* ; *ligne* ; *colonne* {; *action*} )
+**LISTBOX SELECT BREAK** ( * ; *objet* : Text ; *ligne* : Integer ; *colonne* : Integer {; *action* : Integer} )
**LISTBOX SELECT BREAK** ( *objet* : Field, Variable ; *ligne* : Integer ; *colonne* : Integer {; *action* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
-| ligne | Integer | → | Numéro de ligne de la rupture |
-| colonne | Integer | → | Numéro de colonne de la rupture |
-| action | Integer | → | Action de sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
+| ligne | Integer | → | Numéro de ligne de la rupture |
+| colonne | Integer | → | Numéro de colonne de la rupture |
+| action | Integer | → | Action de sélection |
@@ -67,6 +67,6 @@ Voici le résultat :
| | |
| --- | --- |
| Numéro de commande | 1117 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
index df10eebcbdc281..305ea06e191f5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-row
displayed_sidebar: docs
---
-**LISTBOX SELECT ROW** ( {* ;} *objet* ; *positionLigne* {; *action*} )
+**LISTBOX SELECT ROW** ( * ; *objet* : Text ; *positionLigne* : Integer {; *action* : Integer} )
**LISTBOX SELECT ROW** ( *objet* : Field, Variable ; *positionLigne* : Integer {; *action* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| positionLigne | Integer | → | Numéro de la ligne à sélectionner |
-| action | Integer | → | Action de sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| positionLigne | Integer | → | Numéro de la ligne à sélectionner |
+| action | Integer | → | Action de sélection |
@@ -58,6 +58,6 @@ A l’issue de l’exécution de la méthode, les tableaux sont synchronisés :
| | |
| --- | --- |
| Numéro de commande | 912 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
index 473b8fa7e4604d..e3ee75aa85322f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-rows
displayed_sidebar: docs
---
-**LISTBOX SELECT ROWS** ( {* ;} *objet* ; *sélection* {; *action*} )
+**LISTBOX SELECT ROWS** ( * ; *objet* : Text ; *sélection* : Object, Collection {; *action* : Integer} )
**LISTBOX SELECT ROWS** ( *objet* : Field, Variable ; *sélection* : Object, Collection {; *action* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, l'objet est un nom d'objet (chaîne). Si omis, l'objet est une variable. |
-| objet | any | → | Nom de l'objet (si * est spécifié) ou Variable (si * est spécifié) |
-| sélection | Object, Collection | → | Objet ou collection décrivant les lignes à sélectionner |
-| action | Integer | → | lk remplacer sélection (omis par défaut), lk ajouter à sélection, lk supprimer de sélection |
+| * | Opérateur | → | Si spécifié, l'objet est un nom d'objet (chaîne). Si omis, l'objet est une variable. |
+| objet | any | → | Nom de l'objet (si * est spécifié) ou Variable (si * est spécifié) |
+| sélection | Object, Collection | → | Objet ou collection décrivant les lignes à sélectionner |
+| action | Integer | → | lk remplacer sélection (omis par défaut), lk ajouter à sélection, lk supprimer de sélection |
@@ -90,6 +90,6 @@ Exemple avec une collection d'objets :
| | |
| --- | --- |
| Numéro de commande | 1715 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
index 3eccde3a5aba91..7d94daf68c4375 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-array
displayed_sidebar: docs
---
-**LISTBOX SET ARRAY** ( {* ;} *objet* ; *typeTab* ; *ptrTab* )
+**LISTBOX SET ARRAY** ( * ; *objet* : Text ; *typeTab* : Integer ; *ptrTab* : Pointer )
**LISTBOX SET ARRAY** ( *objet* : Field, Variable ; *typeTab* : Integer ; *ptrTab* : Pointer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| typeTab | Integer | → | Type de tableau |
-| ptrTab | Pointer | → | Tableau à associer à la propriété |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| typeTab | Integer | → | Type de tableau |
+| ptrTab | Pointer | → | Tableau à associer à la propriété |
@@ -72,6 +72,6 @@ Vous voulez associer un tableau de hauteurs de ligne à une list box :
| | |
| --- | --- |
| Numéro de commande | 1279 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
index 4434f5058949ee..4e26ecbefef51b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX SET AUTO ROW HEIGHT** ( {* ;} *objet* ; *sélecteur* ; *valeur* ; *unité* )
+**LISTBOX SET AUTO ROW HEIGHT** ( * ; *objet* : Text ; *sélecteur* : Integer ; *valeur* : Integer ; *unité* : Integer )
**LISTBOX SET AUTO ROW HEIGHT** ( *objet* : Field, Variable ; *sélecteur* : Integer ; *valeur* : Integer ; *unité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| sélecteur | Integer | → | Limite de hauteur à définir : lk hauteur ligne min ou lk hauteur ligne max |
-| valeur | Integer | → | Hauteur de ligne minimum ou maximum |
-| unité | Integer | → | Valeur d'unité de hauteur : 0 = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| sélecteur | Integer | → | Limite de hauteur à définir : lk hauteur ligne min ou lk hauteur ligne max |
+| valeur | Integer | → | Hauteur de ligne minimum ou maximum |
+| unité | Integer | → | Valeur d'unité de hauteur : 0 = pixels, 1 = lignes |
@@ -63,6 +63,6 @@ Dans une list box où les hauteurs de lignes sont automatiques, vous voulez déf
| | |
| --- | --- |
| Numéro de commande | 1501 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
index 85f53c13f582f4..b39bdaec956314 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-column-formula
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN FORMULA** ( {* ;} *objet* ; *formule* ; *typeDonnées* )
+**LISTBOX SET COLUMN FORMULA** ( * ; *objet* : Text ; *formule* : Text ; *typeDonnées* : Integer )
**LISTBOX SET COLUMN FORMULA** ( *objet* : Field, Variable ; *formule* : Text ; *typeDonnées* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| formule | Text | → | Formule 4D associée à la colonne |
-| typeDonnées | Integer | → | Type de résultat de la formule |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| formule | Text | → | Formule 4D associée à la colonne |
+| typeDonnées | Integer | → | Type de résultat de la formule |
@@ -47,6 +47,6 @@ Le paramètre *typeDonnées* permet de désigner le type des données issues de
| | |
| --- | --- |
| Numéro de commande | 1203 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
index e32bdd0a04d08a..a39a1bd558dd67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-column-width
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN WIDTH** ( {* ;} *objet* ; *largeur* {; *largeurMini* {; *largeurMaxi*}} )
+**LISTBOX SET COLUMN WIDTH** ( * ; *objet* : Text ; *largeur* : Integer {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} )
**LISTBOX SET COLUMN WIDTH** ( *objet* : Field, Variable ; *largeur* : Integer {; *largeurMini* : Integer {; *largeurMaxi* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| largeur | Integer | → | Largeur de colonne (en pixels) |
-| largeurMini | Integer | → | Largeur minimale de colonne (en pixels) |
-| largeurMaxi | Integer | → | Largeur maximale de colonne (en pixels) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| largeur | Integer | → | Largeur de colonne (en pixels) |
+| largeurMini | Integer | → | Largeur minimale de colonne (en pixels) |
+| largeurMaxi | Integer | → | Largeur maximale de colonne (en pixels) |
@@ -39,6 +39,6 @@ Les paramètres optionnels *largeurMini* et *largeurMaxi* permettent de fixer de
| | |
| --- | --- |
| Numéro de commande | 833 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
index 60c775fa87d69a..5931ba287a62dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX SET FOOTER CALCULATION** ( {* ;} *objet* ; *calcul* )
+**LISTBOX SET FOOTER CALCULATION** ( * ; *objet* : Text ; *calcul* : Integer )
**LISTBOX SET FOOTER CALCULATION** ( *objet* : Field, Variable ; *calcul* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| calcul | Integer | → | Calcul pour la zone de pied |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| calcul | Integer | → | Calcul pour la zone de pied |
@@ -55,6 +55,6 @@ Si le type de données de la colonne ou d’au moins une colonne de la list box
| | |
| --- | --- |
| Numéro de commande | 1140 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
index 06e8ee561db2b1..65554af22a7b30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-footers-height
displayed_sidebar: docs
---
-**LISTBOX SET FOOTERS HEIGHT** ( {* ;} *objet* ; *hauteur* {; *unité*} )
+**LISTBOX SET FOOTERS HEIGHT** ( * ; *objet* : Text ; *hauteur* : Integer {; *unité* : Integer} )
**LISTBOX SET FOOTERS HEIGHT** ( *objet* : Field, Variable ; *hauteur* : Integer {; *unité* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| hauteur | Integer | → | Hauteur de la ligne |
-| unité | Integer | → | Unité de la valeur de hauteur : 0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| hauteur | Integer | → | Hauteur de la ligne |
+| unité | Integer | → | Unité de la valeur de hauteur : 0 ou omis = pixels, 1 = lignes |
@@ -40,6 +40,6 @@ Passez dans le paramètre *hauteur* la hauteur à définir. Par défaut, si vous
| | |
| --- | --- |
| Numéro de commande | 1145 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
index ecf137dc4a2e90..4175cf4fb0844b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-grid-color
displayed_sidebar: docs
---
-**LISTBOX SET GRID COLOR** ( {* ;} *objet* ; *couleur* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID COLOR** ( * ; *objet* : Text ; *couleur* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID COLOR** ( *objet* : Field, Variable ; *couleur* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| couleur | Text, Integer | → | Valeur de couleur RVB |
-| horizontal | Boolean | → | Utiliser la couleur pour les traits horizontaux |
-| vertical | Boolean | → | Utiliser la couleur pour les traits verticaux |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| couleur | Text, Integer | → | Valeur de couleur RVB |
+| horizontal | Boolean | → | Utiliser la couleur pour les traits horizontaux |
+| vertical | Boolean | → | Utiliser la couleur pour les traits verticaux |
@@ -41,6 +41,6 @@ Les paramètres *horizontal* et *vertical* vous permettent de spécifier les tra
| | |
| --- | --- |
| Numéro de commande | 842 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
index 26e2ba80358ddb..7eefcdb6ddd6f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-grid
displayed_sidebar: docs
---
-**LISTBOX SET GRID** ( {* ;} *objet* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID** ( * ; *objet* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID** ( *objet* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| horizontal | Boolean | → | Vrai=montrer, Faux=cacher |
-| vertical | Boolean | → | Vrai=montrer, Faux=cacher |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| horizontal | Boolean | → | Vrai=montrer, Faux=cacher |
+| vertical | Boolean | → | Vrai=montrer, Faux=cacher |
@@ -35,6 +35,6 @@ Passez dans les paramètres *horizontal* et *vertical* des valeurs booléennes i
| | |
| --- | --- |
| Numéro de commande | 841 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
index 6c103cbdbf207d..4b3281a1abe38c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-headers-height
displayed_sidebar: docs
---
-**LISTBOX SET HEADERS HEIGHT** ( {* ;} *objet* ; *hauteur* {; *unité*} )
+**LISTBOX SET HEADERS HEIGHT** ( * ; *objet* : Text ; *hauteur* : Integer {; *unité* : Integer} )
**LISTBOX SET HEADERS HEIGHT** ( *objet* : Field, Variable ; *hauteur* : Integer {; *unité* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis |
-| hauteur | Integer | → | Hauteur de la ligne |
-| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis |
+| hauteur | Integer | → | Hauteur de la ligne |
+| unité | Integer | → | Unité de la valeur de hauteur :
0 ou omis = pixels, 1 = lignes |
@@ -44,6 +44,6 @@ Les en-têtes doivent respecter une hauteur minimale, définie par le système d
| | |
| --- | --- |
| Numéro de commande | 1143 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
index a12e2eb3db054f..40c4abcd0891da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-hierarchy
displayed_sidebar: docs
---
-**LISTBOX SET HIERARCHY** ( {* ;} *objet* ; *hiérarchique* {; *hiérarchie*} )
+**LISTBOX SET HIERARCHY** ( * ; *objet* : Text ; *hiérarchique* : Boolean {; *hiérarchie* : Pointer array} )
**LISTBOX SET HIERARCHY** ( *objet* : Field, Variable ; *hiérarchique* : Boolean {; *hiérarchie* : Pointer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| hiérarchique | Boolean | → | Vrai = list box hiérarchique, Faux = list box non hiérarchique |
-| hiérarchie | Pointer array | → | Tableau de pointeurs |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| hiérarchique | Boolean | → | Vrai = list box hiérarchique, Faux = list box non hiérarchique |
+| hiérarchie | Pointer array | → | Tableau de pointeurs |
@@ -59,6 +59,6 @@ Définition des tableaux tPays, tRegion et tVille comme hiérarchie d’une list
| | |
| --- | --- |
| Numéro de commande | 1098 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
index 53464dd656d43c..b160c159afe2d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-locked-columns
displayed_sidebar: docs
---
-**LISTBOX SET LOCKED COLUMNS** ( {* ;} *objet* ; *nbColonnes* )
+**LISTBOX SET LOCKED COLUMNS** ( * ; *objet* : Text ; *nbColonnes* : Integer )
**LISTBOX SET LOCKED COLUMNS** ( *objet* : Field, Variable ; *nbColonnes* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| nbColonnes | Integer | → | Nombre de colonnes à verrouiller |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| nbColonnes | Integer | → | Nombre de colonnes à verrouiller |
@@ -37,6 +37,6 @@ Si vous passez 0 ou une valeur négative dans *nbColonnes*, le verrouillage des
| | |
| --- | --- |
| Numéro de commande | 1151 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
index 9f5ec044c17234..d83cd873d9c78f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-row-color
displayed_sidebar: docs
---
-**LISTBOX SET ROW COLOR** ( {* ;} *objet* ; *ligne* ; *couleur* {; *typeCouleur*} )
+**LISTBOX SET ROW COLOR** ( * ; *objet* : Text ; *ligne* : Integer ; *couleur* : Text, Integer {; *typeCouleur* : Integer} )
**LISTBOX SET ROW COLOR** ( *objet* : Field, Variable ; *ligne* : Integer ; *couleur* : Text, Integer {; *typeCouleur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Numéro de ligne |
-| couleur | Text, Integer | → | Valeur de couleur RVB |
-| typeCouleur | Integer | → | Listbox couleur de police (défaut) ou Listbox couleur de fond |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Numéro de ligne |
+| couleur | Text, Integer | → | Valeur de couleur RVB |
+| typeCouleur | Integer | → | Listbox couleur de police (défaut) ou Listbox couleur de fond |
@@ -69,6 +69,6 @@ Dans une list box tableau, on souhaite définir des paramétrages de couleur pou
| | |
| --- | --- |
| Numéro de commande | 1270 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
index a1ae07cfb5cc34..35c92283af24cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-font-style
displayed_sidebar: docs
---
-**LISTBOX SET ROW FONT STYLE** ( {* ;} *objet* ; *ligne* ; *style* )
+**LISTBOX SET ROW FONT STYLE** ( * ; *objet* : Text ; *ligne* : Integer ; *style* : Integer )
**LISTBOX SET ROW FONT STYLE** ( *objet* : Field, Variable ; *ligne* : Integer ; *style* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Numéro de ligne |
-| style | Integer | → | Style de police |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Numéro de ligne |
+| style | Integer | → | Style de police |
@@ -83,6 +83,6 @@ Après la deuxième instruction, toutes les cellules de la troisième ligne pass
| | |
| --- | --- |
| Numéro de commande | 1268 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
index 3790659aa7165b..d9e4aa9e4c8344 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-height
displayed_sidebar: docs
---
-**LISTBOX SET ROW HEIGHT** ( {* ;} *objet* ; *ligne* ; *hauteur* )
+**LISTBOX SET ROW HEIGHT** ( * ; *objet* : Text ; *ligne* : Integer ; *hauteur* : Integer )
**LISTBOX SET ROW HEIGHT** ( *objet* : Field, Variable ; *ligne* : Integer ; *hauteur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| ligne | Integer | → | Ligne de la List box dont la hauteur doit être fixée. |
-| hauteur | Integer | → | Hauteur de la ligne de la List box |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| ligne | Integer | → | Ligne de la List box dont la hauteur doit être fixée. |
+| hauteur | Integer | → | Hauteur de la ligne de la List box |
@@ -88,6 +88,6 @@ En revanche, si le code suivant est exécuté :
| | |
| --- | --- |
| Numéro de commande | 1409 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
index c599ef294c7f9b..b49ecd323841f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-rows-height
displayed_sidebar: docs
---
-**LISTBOX SET ROWS HEIGHT** ( {* ;} *objet* ; *hauteur* {; *unité*} )
+**LISTBOX SET ROWS HEIGHT** ( * ; *objet* : Text ; *hauteur* : Integer {; *unité* : Integer} )
**LISTBOX SET ROWS HEIGHT** ( *objet* : Field, Variable ; *hauteur* : Integer {; *unité* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| hauteur | Integer | → | Hauteur de ligne |
-| unité | Integer | → | Unité de la valeur de hauteur : 0 ou omis = pixels, 1 = lignes |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| hauteur | Integer | → | Hauteur de ligne |
+| unité | Integer | → | Unité de la valeur de hauteur : 0 ou omis = pixels, 1 = lignes |
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur est exprimée en
| | |
| --- | --- |
| Numéro de commande | 835 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
index df63a096a58bbb..9c20a5c754a539 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-static-columns
displayed_sidebar: docs
---
-**LISTBOX SET STATIC COLUMNS** ( {* ;} *objet* ; *nbColonnes* )
+**LISTBOX SET STATIC COLUMNS** ( * ; *objet* : Text ; *nbColonnes* : Integer )
**LISTBOX SET STATIC COLUMNS** ( *objet* : Field, Variable ; *nbColonnes* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| nbColonnes | Integer | → | Nombre de colonnes à rendre statiques |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| nbColonnes | Integer | → | Nombre de colonnes à rendre statiques |
@@ -33,6 +33,6 @@ Les colonnes statiques (ou colonnes fixes) ne peuvent pas être déplacées dans
| | |
| --- | --- |
| Numéro de commande | 1153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
index 103e163ca1a057..9a8fbb03b3ecc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-table-source
displayed_sidebar: docs
---
-**LISTBOX SET TABLE SOURCE** ( {* ;} *objet* ; *numTable* {; *nomSurlignage*} )
**LISTBOX SET TABLE SOURCE** ( {* ;} *objet* ; *tempo* {; *nomSurlignage*} )
+**LISTBOX SET TABLE SOURCE** ( * ; *objet* : Text ; *numTable* : Entier long, Chaîne {; *nomSurlignage* : Text} )
**LISTBOX SET TABLE SOURCE** ( *objet* : Field, Variable ; *numTable* : Entier long, Chaîne {; *nomSurlignage* : Text} )
**LISTBOX SET TABLE SOURCE** ( * ; *objet* : Text ; *tempo* : Entier long, Chaîne {; *nomSurlignage* : Text} )
**LISTBOX SET TABLE SOURCE** ( *objet* : Field, Variable ; *tempo* : Entier long, Chaîne {; *nomSurlignage* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| numTable | tempo | Entier long, Chaîne | → | Numéro de la table de laquelle utiliser la sélection courante ou Nom de la sélection temporaire à utiliser |
-| nomSurlignage | Text | → | Nom de l’ensemble de surlignage |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| numTable | tempo | Entier long, Chaîne | → | Numéro de la table de laquelle utiliser la sélection courante ou Nom de la sélection temporaire à utiliser |
+| nomSurlignage | Text | → | Nom de l’ensemble de surlignage |
@@ -42,6 +42,6 @@ Si la list box contenait déjà des colonnes, leur contenu est mis à jour à l
| | |
| --- | --- |
| Numéro de commande | 1013 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
index b0225ba0586595..b16384aca9d3c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-sort-columns
displayed_sidebar: docs
---
-**LISTBOX SORT COLUMNS** ( {* ;} *objet* ; *numColonne* ; *sensDuTri* {; *numColonne2* ; *sensDuTri2* ; ... ; *numColonneN* ; *sensDuTriN*} )
+**LISTBOX SORT COLUMNS** ( * ; *objet* : Text ; *numColonne* : Integer ; *sensDuTri* : Operator {; ...(*numColonne* : Integer, *sensDuTri* : Operator)} )
**LISTBOX SORT COLUMNS** ( *objet* : Field, Variable ; *numColonne* : Integer ; *sensDuTri* : Operator {; ...(*numColonne* : Integer, *sensDuTri* : Operator)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| numColonne | Integer | → | Numéro(s) de colonne(s) à trier |
-| sensDuTri | * | → | ">"pour effectuer un tri croissant ou "<" pour effectuer un tri décroissant |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| numColonne | Integer | → | Numéro(s) de colonne(s) à trier |
+| sensDuTri | Operator | → | `>` to sort in ascending order or `<` to sort in descending order |
@@ -38,6 +38,6 @@ Conformément au principe de fonctionnement des list box, les colonnes sont sync
| | |
| --- | --- |
| Numéro de commande | 916 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
index 75ea701ae1d4ce..57859bab137560 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
@@ -5,11 +5,11 @@ slug: /commands/load-4d-view-document
displayed_sidebar: docs
---
-**Load 4D View document** ( *document4DView* ) : Object
+**Load 4D View document** ( *document4DView* : Blob ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document4DView | Blob | → | Document du plug-in 4D View |
+| document4DView | Blob | → | Document du plug-in 4D View |
| Résultat | Object | ← | Représentation du document 4D View sous forme d'objet |
@@ -201,6 +201,6 @@ Vous obtenez le résultat suivant (objet stringifié) :
| | |
| --- | --- |
| Numéro de commande | 1528 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
index 462ccc841917de..3bc96c358059ad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
@@ -5,11 +5,11 @@ slug: /commands/load-list
displayed_sidebar: docs
---
-**Load list** ( *nomListe* ) : Integer
+**Load list** ( *nomListe* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomListe | Text | → | Nom de liste créée dans l'éditeur d'énumérations |
+| nomListe | Text | → | Nom de liste créée dans l'éditeur d'énumérations |
| Résultat | Integer | ← | Numéro de référence de la liste nouvellement créée |
@@ -54,6 +54,6 @@ Imaginons que vous créez une base pour le marché international. Vous voulez po
| | |
| --- | --- |
| Numéro de commande | 383 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
index 6207ade31e8aa2..d41531d30a5c29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
@@ -5,11 +5,11 @@ slug: /commands/load-record
displayed_sidebar: docs
---
-**LOAD RECORD** {( *laTable* )}
+**LOAD RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle charger l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle charger l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -42,6 +42,6 @@ En environnements multi-utilisateurs et multi-process, lorsque vous devez modifi
| | |
| --- | --- |
| Numéro de commande | 52 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
index d4c95c0328904a..8901df5aa86032 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
@@ -5,13 +5,13 @@ slug: /commands/load-set
displayed_sidebar: docs
---
-**LOAD SET** ( {*laTable* ;} *ensemble* ; *nomFichier* )
+**LOAD SET** ( {*laTable* : Table ;} *ensemble* : Text ; *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à laquelle appartient l'ensemble ou Table par défaut si ce paramètre est omis |
-| ensemble | Text | → | Nom de l'ensemble à créer en mémoire |
-| nomFichier | Text | → | Document disque contenant l'ensemble |
+| laTable | Table | → | Table à laquelle appartient l'ensemble ou Table par défaut si ce paramètre est omis |
+| ensemble | Text | → | Nom de l'ensemble à créer en mémoire |
+| nomFichier | Text | → | Document disque contenant l'ensemble |
@@ -49,7 +49,7 @@ Si l'utilisateur clique sur Annuler dans la boîte de dialogue d'ouverture de fi
| | |
| --- | --- |
| Numéro de commande | 185 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
index 997545351322d1..73852103860521 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
@@ -5,11 +5,11 @@ slug: /commands/load-variables
displayed_sidebar: docs
---
-**LOAD VARIABLES** ( *nomFichier* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**LOAD VARIABLES** ( *nomFichier* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Document contenant la ou les variable(s) à lire |
+| nomFichier | Text | → | Document contenant la ou les variable(s) à lire |
| variable | Variable | ← | Nom de(s) variable(s) devant recevoir les valeurs |
@@ -51,7 +51,7 @@ La variable système OK prend la valeur 1 si les variables ont été correctemen
| | |
| --- | --- |
| Numéro de commande | 74 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
index 45cb0946c9dbe4..9d770075c7ea01 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
@@ -5,11 +5,11 @@ slug: /commands/localized-document-path
displayed_sidebar: docs
---
-**Localized document path** ( *cheminRelatif* ) : Text
+**Localized document path** ( *cheminRelatif* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminRelatif | Text | → | Chemin d’accès relatif du document dont on veut obtenir la version localisée |
+| cheminRelatif | Text | → | Chemin d’accès relatif du document dont on veut obtenir la version localisée |
| Résultat | Text | ← | Chemin d’accès absolu du document localisé |
@@ -72,6 +72,6 @@ Si la langue courante est, par exemple, le français canadien (fr-ca), la comman
| | |
| --- | --- |
| Numéro de commande | 1105 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
index f12783fa9f1265..97105d6cd02f85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
@@ -5,11 +5,11 @@ slug: /commands/localized-string
displayed_sidebar: docs
---
-**Localized string** ( *resName* ) : Text
+**Localized string** ( *resName* : Text ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resName | Text | → | Nom d’attribut resname |
+| resName | Text | → | Nom d’attribut resname |
| Résultat | Text | ← | Valeur de la chaîne désignée par resName dans le langage courant |
@@ -60,7 +60,7 @@ Si la commande a été exécutée correctement, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 991 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
index c37dd5f7fc1c5d..3d9b36e6888ed4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
@@ -5,11 +5,11 @@ slug: /commands/locked-by
displayed_sidebar: docs
---
-**LOCKED BY** ( {*laTable* ;} *process* ; *utilisateur4D* ; *utilisateurSession* ; *nomProcess* )
+**LOCKED BY** ( {*laTable* : Table ;} *process* : Integer ; *utilisateur4D* : Text ; *utilisateurSession* : Text ; *nomProcess* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement verrouillé ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l'enregistrement verrouillé ou Table par défaut si ce paramètre est omis |
| process | Integer | ← | Numéro du process |
| utilisateur4D | Text | ← | Nom de l'utilisateur 4D |
| utilisateurSession | Text | ← | Nom de l'utilisateur ayant ouvert la session de travail |
@@ -46,6 +46,6 @@ Si l'enregistrement a été verrouillé par une *requête REST $lock*:
| | |
| --- | --- |
| Numéro de commande | 353 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
index afd0a2452275c4..54616c7294b2c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
@@ -5,11 +5,11 @@ slug: /commands/locked-records-info
displayed_sidebar: docs
---
-**Locked records info** ( *laTable* ) : Object
+**Locked records info** ( *laTable* : Table ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle vous souhaitez connaître les enregistrements verrouillés |
+| laTable | Table | → | Table de laquelle vous souhaitez connaître les enregistrements verrouillés |
| Résultat | Object | ← | Description des enregistrements verrouillés (le cas échéant) |
@@ -94,6 +94,6 @@ Si le code est exécuté sur 4D Server et que le verrouillage est causé par un
| | |
| --- | --- |
| Numéro de commande | 1316 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
index 65e18d4c53e712..076dbd59cc048e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
@@ -5,11 +5,11 @@ slug: /commands/locked
displayed_sidebar: docs
---
-**Locked** {( *laTable* )} : Boolean
+**Locked** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement dont vous voulez tester le verrouillage ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l'enregistrement dont vous voulez tester le verrouillage ou Table par défaut si ce paramètre est omis |
| Résultat | Boolean | ← | L'enregistrement est verrouillé (Vrai) ou L'enregistrement n'est pas verrouillé (Faux) |
@@ -40,6 +40,6 @@ Au cours d'une transaction, [LOAD RECORD](load-record.md) et **Locked** sont sou
| | |
| --- | --- |
| Numéro de commande | 147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
index 7f9bec9d207125..e18f7bea2f3f97 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
@@ -5,13 +5,13 @@ slug: /commands/log-event
displayed_sidebar: docs
---
-**LOG EVENT** ( {*typeSortie* ;} *message* {; *importance*} )
+**LOG EVENT** ( {*typeSortie* : Integer ;} *message* : Text {; *importance* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeSortie | Integer | → | Type de sortie du message |
-| message | Text | → | Contenu du message |
-| importance | Integer | → | Niveau d’importance du message (Windows uniquement) |
+| typeSortie | Integer | → | Type de sortie du message |
+| message | Text | → | Contenu du message |
+| importance | Integer | → | Niveau d’importance du message (Windows uniquement) |
@@ -69,6 +69,6 @@ A chaque ouverture de la base, cette information sera inscrite dans l’Observat
| | |
| --- | --- |
| Numéro de commande | 667 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
index eb93adbdf0a992..6733e9dc69cd13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
@@ -5,14 +5,14 @@ slug: /commands/log-file-to-json
displayed_sidebar: docs
---
-**LOG FILE TO JSON** ( *cheminDossierDest* {; *tailleMax* {; *cheminHistorique* {; *attribChamp*}}} )
+**LOG FILE TO JSON** ( *cheminDossierDest* : Text {; *tailleMax* : Integer {; *cheminHistorique* : Text {; *attribChamp* : Integer}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminDossierDest | Text | → | Chemin d'accès du dossier de destination du fichier sauvegardé |
-| tailleMax | Integer | → | Taille maximale du fichier JSON à créer (octets) |
-| cheminHistorique | Text | → | Chemin d'accès du fichier d'historique à exporter ; utiliser l'historique courant si omis |
-| attribChamp | Integer | → | Attribut de description du champ : 1 = utiliser numéro (défaut), 2 = utiliser nom |
+| cheminDossierDest | Text | → | Chemin d'accès du dossier de destination du fichier sauvegardé |
+| tailleMax | Integer | → | Taille maximale du fichier JSON à créer (octets) |
+| cheminHistorique | Text | → | Chemin d'accès du fichier d'historique à exporter ; utiliser l'historique courant si omis |
+| attribChamp | Integer | → | Attribut de description du champ : 1 = utiliser numéro (défaut), 2 = utiliser nom |
@@ -101,7 +101,7 @@ La commande **LOG FILE TO JSON** modifie la valeur des variables système OK et
| | |
| --- | --- |
| Numéro de commande | 1352 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
index 0d5a85cfe5eae1..9b2ddf234362ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Si la base fonctionne avec un fichier d’historique, la variable système OK pr
| | |
| --- | --- |
| Numéro de commande | 928 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md
index 522c47017141f1..154e02e53159a9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/log.md
@@ -5,11 +5,11 @@ slug: /commands/log
displayed_sidebar: docs
---
-**Log** ( *nombre* ) : Real
+**Log** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre dont vous voulez obtenir le logarithme népérien |
+| nombre | Real | → | Nombre dont vous voulez obtenir le logarithme népérien |
| Résultat | Real | ← | Logarithme népérien de nombre |
@@ -37,6 +37,6 @@ L'exemple suivant affiche 1 :
| | |
| --- | --- |
| Numéro de commande | 22 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
index 3f602bf4e3e191..9c967e5515f48d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
@@ -5,13 +5,13 @@ slug: /commands/longint-array-from-selection
displayed_sidebar: docs
---
-**LONGINT ARRAY FROM SELECTION** ( *laTable* ; *tabEnrg* {; *tempo*} )
+**LONGINT ARRAY FROM SELECTION** ( *laTable* : Table ; *tabEnrg* : Integer array {; *tempo* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de la sélection courante |
+| laTable | Table | → | Table de la sélection courante |
| tabEnrg | Integer array | ← | Tableau de numéros d’enregistrements |
-| tempo | Text | → | Nom de la sélection temporaire ou Sélection courante si ce paramètre est omis |
+| tempo | Text | → | Nom de la sélection temporaire ou Sélection courante si ce paramètre est omis |
@@ -41,6 +41,6 @@ Vous voulez récupérer les numéros des enregistrements de la sélection couran
| | |
| --- | --- |
| Numéro de commande | 647 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
index 701267ffd5bd20..6b250227df50f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/longint-to-blob
displayed_sidebar: docs
---
-**LONGINT TO BLOB** ( *entierLong* ; *blob* ; *ordreOctet* {; offset } )
**LONGINT TO BLOB** ( *entierLong* ; *blob* ; *ordreOctet* {; *} )
+**LONGINT TO BLOB** ( *entierLong* : Integer ; *blob* : Blob ; *ordreOctet* : Integer {; offset } )
**LONGINT TO BLOB** ( *entierLong* : Integer ; *blob* : Blob ; *ordreOctet* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| entierLong | Integer | → | Valeur de type Entier long à écrire dans BLOB |
-| blob | Blob | → | BLOB devant recevoir l'entier long |
-| ordreOctet | Integer | → | 0=Ordre d'octets natif, 1=Ordre d'octets Macintosh, 2=Ordre d'octets PC |
-| offset | * | Variable, Opérateur |↔ | Offset (en octets) dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
-| || | Nouvel offset après l'écriture si * omis |
+| entierLong | Integer | → | Valeur de type Entier long à écrire dans BLOB |
+| Blob | Blob | → | BLOB devant recevoir l'entier long |
+| ordreOctet | Integer | → | 0=Ordre d'octets natif, 1=Ordre d'octets Macintosh, 2=Ordre d'octets PC |
+| offset | * | Variable, Opérateur | ↔ | Offset (en octets) dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
+| | | | Nouvel offset après l'écriture si * omis |
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 550 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
index 54baf844ad520b..3c4f081197c36e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laText | Text | → | Chaîne à convertir en minuscules |
-| * | Opérateur | → | Si passé : conserver les accents Si omis : supprimer les accents |
+| laText | Text | → | Chaîne à convertir en minuscules |
+| * | Opérateur | → | Si passé : conserver les accents Si omis : supprimer les accents |
| Résultat | Text | ← | chaîne en minuscules |
@@ -54,6 +54,6 @@ Cet exemple compare les résultats obtenus suivant que le paramètre *\** a ét
| | |
| --- | --- |
| Numéro de commande | 14 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
index 9e9743d7020943..4af7cb945056dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 546 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
index 79632f5d2ea8f1..c9945c214906b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 544 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
index 7b6df32341d1cf..5214d6f76d3edf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 545 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
index 828f240fcdb82a..22da14119e5d0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
@@ -10,17 +10,12 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| motif | Text | → | Expression régulière |
-| laChaîne | Text | → | Chaîne dans laquelle s’effectue la recherche |
-| début | Integer | → | Position dans laChaîne où doit débuter la recherche |
-| pos_trouvée | Integer array, Integer | ← | Position de l’occurence |
-| long_trouvée | Integer array, Integer | ← | Longueur de l’occurence |
-| * | Opérateur | → | Si passé : rechercher uniquement à la position indiquée |
-| Résultat | Boolean | ← | Vrai = la recherche a trouvé une occurrence, Faux sinon |
-| Match regex ( motif ; laChaîne ) -> Résultat |
-| Paramètre | Type | Description |
-| motif | Text | → | Expression régulière (égalité complète) |
-| laChaîne | Text | → | Chaîne dans laquelle s'effectue la recherche |
+| motif | Text | → | Regular expression (complete equality with two-parameters syntax) |
+| laChaîne | Text | → | Chaîne dans laquelle s’effectue la recherche |
+| début | Integer | → | Position dans laChaîne où doit débuter la recherche |
+| pos_trouvée | Integer, Integer array | ← | Position de l’occurence |
+| long_trouvée | Integer, Integer array | ← | Longueur de l’occurence |
+| * | Opérateur | → | Si passé : rechercher uniquement à la position indiquée |
| Résultat | Boolean | ← | Vrai = la recherche a trouvé une occurrence, Faux sinon |
@@ -114,7 +109,7 @@ En cas d’erreur, la commande génère une erreur que vous pouvez intercepter v
| | |
| --- | --- |
| Numéro de commande | 1019 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md
index 902beeb3572e7b..72041556c52f2b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/max.md
@@ -5,13 +5,13 @@ slug: /commands/max
displayed_sidebar: docs
---
-**Max** ( *séries* {; *cheminAttribut*} ) : any
+**Max** ( *séries* : Field, Array {; *cheminAttribut* : Text} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs desquelles dont vous voulez obtenir la plus élevée |
-| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la valeur maximale |
-| Résultat | Date, Number | ← | Valeur la plus élevée de séries |
+| séries | Field, Array | → | Valeurs desquelles dont vous voulez obtenir la plus élevée |
+| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la valeur maximale |
+| Résultat | Date, Real | ← | Valeur la plus élevée de séries |
@@ -77,7 +77,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 3 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
index 8f65b61616b4ee..d58a69a45a3559 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
@@ -5,11 +5,11 @@ slug: /commands/maximize-window
displayed_sidebar: docs
---
-**MAXIMIZE WINDOW** {( *fenêtre* )}
+**MAXIMIZE WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre Si omis = Toutes les fenêtres (Windows) ou Fenêtre de premier plan du process courant (macOS) |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre Si omis = Toutes les fenêtres (Windows) ou Fenêtre de premier plan du process courant (macOS) |
@@ -86,6 +86,6 @@ Dans le contexte suivant, si l'utilisateur clique sur le bouton :
| | |
| --- | --- |
| Numéro de commande | 453 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
index 3c03ebf9ebe93b..406d682918a742 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
@@ -5,11 +5,11 @@ slug: /commands/memory-statistics
displayed_sidebar: docs
---
-**MEMORY STATISTICS** ( *typeInfo* ; *tabNoms* ; *tabValeurs* ; *tabNombre* )
+**MEMORY STATISTICS** ( *typeInfo* : Integer ; *tabNoms* : Text array ; *tabValeurs* : Real array ; *tabNombre* : Real array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeInfo | Integer | → | Sélecteur d’information à obtenir |
+| typeInfo | Integer | → | Sélecteur d’information à obtenir |
| tabNoms | Text array | ← | Libellés des informations |
| tabValeurs | Real array | ← | Valeurs des informations |
| tabNombre | Real array | ← | Nombre d’objets concernés (si disponible) |
@@ -33,6 +33,6 @@ A l’issue de l’exécution de la commande, les statistiques demandées sont f
| | |
| --- | --- |
| Numéro de commande | 1118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
index f91b987f62a62a..0bf91ac9790520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ La commande retourne 0 :
| | |
| --- | --- |
| Numéro de commande | 440 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
index 9dd3a19f0bdce5..20a081382184c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 441 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
index 90b078aaef14ba..8f3f7fde126716 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
@@ -5,7 +5,7 @@ slug: /commands/menu-selected
displayed_sidebar: docs
---
-**Menu selected** {( *sousMenu* )} : Integer
+**Menu selected** ( *sousMenu* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -65,7 +65,7 @@ La méthode formulaire suivante utilise la fonction **Menu selected** pour fourn
| | |
| --- | --- |
| Numéro de commande | 152 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md
index f71753173a5486..e2e6651d34c886 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/message.md
@@ -5,11 +5,11 @@ slug: /commands/message
displayed_sidebar: docs
---
-**MESSAGE** ( *message* )
+**MESSAGE** ( *message* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Message à afficher |
+| message | Text | → | Message à afficher |
@@ -120,6 +120,6 @@ Voici le résultat (sous Windows) :
| | |
| --- | --- |
| Numéro de commande | 88 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
index ad9b3401384eb6..7cf31e428b9143 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ L'exemple suivant supprime les thermomètres de progression avant d'effectuer un
| | |
| --- | --- |
| Numéro de commande | 175 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
index c5a692fc128445..63f79df5ffaa14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 181 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
index 969c4d086ed0df..b4fa60d37b2c93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
@@ -5,11 +5,11 @@ slug: /commands/method-called-on-error
displayed_sidebar: docs
---
-**Method called on error** {( *portée* )} : Text
+**Method called on error** ( *portée* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| portée | Integer | → | Portée de la méthode de gestion d'erreur |
+| portée | Integer | → | Portée de la méthode de gestion d'erreur |
| Résultat | Text | ← | Nom de la méthode d’appel sur erreur |
@@ -51,6 +51,6 @@ Cette commande est particulièrement utile dans le cadre des composants, car ell
| | |
| --- | --- |
| Numéro de commande | 704 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
index 10be1759ab6b6d..924cf2ad3b83c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si aucune méthode d’appel sur événement n’a été installée, une chaîne
| | |
| --- | --- |
| Numéro de commande | 705 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
index bdb1bd8e23461b..c5812ecf7cad43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attribute
displayed_sidebar: docs
---
-**METHOD Get attribute** ( *chemin* ; *typeAttribut* {; *} ) : Boolean
+**METHOD Get attribute** ( *chemin* : Text ; *typeAttribut* : Integer {; *} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin de méthode projet |
-| typeAttribut | Integer | → | Type d’attribut à obtenir |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text | → | Chemin de méthode projet |
+| typeAttribut | Integer | → | Type d’attribut à obtenir |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
| Résultat | Boolean | ← | Vrai = attribut sélectionné, sinon Faux |
@@ -45,6 +45,6 @@ La commande retourne **Vrai** si un attribut est sélectionné et **Faux** s’i
| | |
| --- | --- |
| Numéro de commande | 1169 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
index 1089d203a46a6e..dd4d5f52f0e3b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attributes
displayed_sidebar: docs
---
-**METHOD GET ATTRIBUTES** ( *chemin* ; *attributs* {; *} )
+**METHOD GET ATTRIBUTES** ( *chemin* : Text, Text array ; *attributs* : Object, Object array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Chemin(s) de méthode(s) |
+| chemin | Text, Text array | → | Chemin(s) de méthode(s) |
| attributs | Object, Object array | ← | Attribut(s) de méthode(s) |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -66,6 +66,6 @@ A l'issue de l'exécution, $att contient, par exemple :
| | |
| --- | --- |
| Numéro de commande | 1334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
index 0011a72e23711d..239ab62a1422df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-code
displayed_sidebar: docs
---
-**METHOD GET CODE** ( *chemin* ; *code* {; *option*} {; *} )
+**METHOD GET CODE** ( *chemin* : Text, Text array ; *code* : Text, Text array {; *option* : Integer} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
+| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
| code | Text, Text array | ← | Code de(s) méthode(s) désignée(s) |
-| option | Integer | → | 0 ou omis = export simple (sans tokens), 1 = export avec tokens |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| option | Integer | → | 0 ou omis = export simple (sans tokens), 1 = export avec tokens |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -124,6 +124,6 @@ Le document résultant contient alors :
| | |
| --- | --- |
| Numéro de commande | 1190 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
index 0bc1314a0d5a4e..14cc2de8a55e5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-comments
displayed_sidebar: docs
---
-**METHOD GET COMMENTS** ( *chemin* ; *commentaires* {; *} )
+**METHOD GET COMMENTS** ( *chemin* : Text, Text array ; *commentaires* : Text, Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
+| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
| commentaires | Text, Text array | ← | Documentation de la ou des méthode(s) désignée(s) |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -59,6 +59,6 @@ Si la commande est exécutée depuis un composant, elle s’applique par défaut
| | |
| --- | --- |
| Numéro de commande | 1189 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
index 4685d3114acf80..2e928d84e0e11f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-folders
displayed_sidebar: docs
---
-**METHOD GET FOLDERS** ( *tabNoms* {; *filtre*}{; *} )
+**METHOD GET FOLDERS** ( *tabNoms* : Text array {; *filtre* : Text}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| tabNoms | Text array | ← | Tableau des noms de dossiers de la page Démarrage |
-| filtre | Text | → | Filtrage des noms |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| filtre | Text | → | Filtrage des noms |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -36,6 +36,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
index 5e1caaa319ebb0..f9a41267ca2dcc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-modification-date
displayed_sidebar: docs
---
-**METHOD GET MODIFICATION DATE** ( *chemin* ; *dateMod* ; *heureMod* {; *} )
+**METHOD GET MODIFICATION DATE** ( *chemin* : Text, Text array ; *dateMod* : Date, Date array ; *heureMod* : Time, Integer array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
+| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
| dateMod | Date, Date array | ← | Date(s) de modification de méthode(s) |
| heureMod | Time, Integer array | ← | Heure(s) de modification de méthode(s) |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -74,6 +74,6 @@ Vous souhaitez obtenir les dates de modification des méthodes d'un module, pré
| | |
| --- | --- |
| Numéro de commande | 1170 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
index 7854759562d94a..0ecc0ac498ceda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-names
displayed_sidebar: docs
---
-**METHOD GET NAMES** ( *tabNoms* {; *filtre*}{; *} )
+**METHOD GET NAMES** ( *tabNoms* : Text array {; *filtre* : Text}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| tabNoms | Text array | ← | Tableau des noms de méthodes projet |
-| filtre | Text | → | Filtrage des noms |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| filtre | Text | → | Filtrage des noms |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -46,6 +46,6 @@ Exemples d’utilisations types :
| | |
| --- | --- |
| Numéro de commande | 1166 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
index e6f59262707ec0..1085a7e661a118 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
@@ -5,15 +5,15 @@ slug: /commands/method-get-path
displayed_sidebar: docs
---
-**METHOD Get path** ( *typeMéthode* {; *laTable*}{; *nomObjet*{; *nomObjetForm*}}{; *} ) : Text
+**METHOD Get path** ( *typeMéthode* : Integer {; *laTable* : Table}{; *nomObjet* : Text{; *nomObjetForm* : Text}}{; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeMéthode | Integer | → | Sélecteur de type d’objet du développement |
-| laTable | Table | → | Référence de table |
-| nomObjet | Text | → | Nom de formulaire ou de méthode |
+| typeMéthode | Integer | → | Sélecteur de type d’objet du développement |
+| laTable | Table | → | Référence de table |
+| nomObjet | Text | → | Nom de formulaire ou de méthode |
| nomObjetForm | Text | ← | Nom d’objet du formulaire |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
| Résultat | Text | ← | Chemin complet de l’objet |
@@ -70,6 +70,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
index c11ca8528f70e1..e03753e85053d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths-form
displayed_sidebar: docs
---
-**METHOD GET PATHS FORM** ( {*laTable* ;} *tabChemins* {; *filtre*}{; *marqueur*}{; *} )
+**METHOD GET PATHS FORM** ( {*laTable* : Table ;} *tabChemins* : Text array {; *filtre* : Text}{; *marqueur* : Real}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Référence de table |
+| laTable | Table | → | Référence de table |
| tabChemins | Text array | ← | Tableau des chemins et noms des méthodes |
-| filtre | Text | → | Filtrage des noms |
-| marqueur | Real | → | Valeur minimum de marqueur |
-| ← | Nouvelle valeur courante |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| filtre | Text | → | Filtrage des noms |
+| marqueur | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -74,6 +73,6 @@ Liste de tous les objets des formulaires "input" de la table \[Emp\] à partir d
| | |
| --- | --- |
| Numéro de commande | 1168 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
index 7edaee0f55ffd0..9ae7b8a9107107 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths
displayed_sidebar: docs
---
-**METHOD GET PATHS** ( {*nomDossier* ;} *typeMéthode* ; *tabChemins* {; *marqueur*}{; *} )
+**METHOD GET PATHS** ( {*nomDossier* : Text ;} *typeMéthode* : Integer ; *tabChemins* : Text array {; *marqueur* : Real}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomDossier | Text | → | Nom de dossier de la page Démarrage |
-| typeMéthode | Integer | → | Sélecteur de type de méthode à récupérer |
+| nomDossier | Text | → | Nom de dossier de la page Démarrage |
+| typeMéthode | Integer | → | Sélecteur de type de méthode à récupérer |
| tabChemins | Text array | ← | Tableau des chemins et noms des méthodes |
-| marqueur | Real | → | Valeur minimum de marqueur |
-| ← | Nouvelle valeur courante |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| marqueur | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -90,6 +89,6 @@ Reportez-vous à l'exemple de la commande [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Numéro de commande | 1163 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
index ce39b8088a62b0..695dda4df279fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
@@ -5,13 +5,13 @@ slug: /commands/method-open-path
displayed_sidebar: docs
---
-**METHOD OPEN PATH** ( *chemin* {; *line*}{; *} )
+**METHOD OPEN PATH** ( *chemin* : Text {; *line* : Real}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin de la méthode à ouvrir |
-| line | Number | → | Line number |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text | → | Chemin de la méthode à ouvrir |
+| line | Real | → | Line number |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -35,6 +35,6 @@ Vous pouvez exécuter cette commande depuis un composant, mais dans ce cas vous
| | |
| --- | --- |
| Numéro de commande | 1213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
index 0f58430c2209da..4f3c408f7f7d9f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
@@ -5,16 +5,16 @@ slug: /commands/method-resolve-path
displayed_sidebar: docs
---
-**METHOD RESOLVE PATH** ( *chemin* ; *typeMéthode* ; *ptrTable* ; *nomObjet* ; *nomObjetForm* {; *} )
+**METHOD RESOLVE PATH** ( *chemin* : Text ; *typeMéthode* : Integer ; *ptrTable* : Pointer ; *nomObjet* : Text ; *nomObjetForm* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin à résoudre |
+| chemin | Text | → | Chemin à résoudre |
| typeMéthode | Integer | ← | Sélecteur de type d’objet |
| ptrTable | Pointer | ← | Référence de table |
| nomObjet | Text | ← | Nom de formulaire ou de méthode base |
| nomObjetForm | Text | ← | Nom d’objet du formulaire |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -88,6 +88,6 @@ Résolution d’un chemin d’objet de méthode formulaire table :
| | |
| --- | --- |
| Numéro de commande | 1165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
index bd088c7dbc74b8..8c2a39ab80309c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
@@ -5,11 +5,11 @@ slug: /commands/method-set-access-mode
displayed_sidebar: docs
---
-**METHOD SET ACCESS MODE** ( *mode* )
+**METHOD SET ACCESS MODE** ( *mode* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| mode | Integer | → | Mode d’accès aux objets verrouillés |
+| mode | Integer | → | Mode d’accès aux objets verrouillés |
@@ -31,6 +31,6 @@ Passez dans *mode* une des constantes suivantes du thème *Accès objets dévelo
| | |
| --- | --- |
| Numéro de commande | 1191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
index e11f06339e3104..a8cd1d4a451389 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/method-set-attribute
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTE** ( *chemin* ; *typeAttribut* ; *valeurAttribut* {; *typeAttribut2* ; *valeurAttribut2* ; ... ; *typeAttributN* ; *valeurAttributN*}{; *} )
+**METHOD SET ATTRIBUTE** ( *chemin* : Text ; *typeAttribut* : Integer ; *valeurAttribut* : Boolean, Text {; ...(*typeAttribut* : Integer, *valeurAttribut* : Boolean, Text)}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin de méthode projet |
-| typeAttribut | Integer | → | Type d’attribut |
-| valeurAttribut | Boolean, Text | → | Vrai = sélectionner l’attribut, Faux = désélectionner l’attribut ou Nom du dossier |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text | → | Chemin de méthode projet |
+| typeAttribut | Integer | → | Type d’attribut |
+| valeurAttribut | Boolean, Text | → | Vrai = sélectionner l’attribut, Faux = désélectionner l’attribut ou Nom du dossier |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -73,6 +73,6 @@ Définition de plusieurs paires attribut/valeur :
| | |
| --- | --- |
| Numéro de commande | 1192 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
index 036276eb1d91a3..32626d5671a488 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-attributes
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTES** ( *chemin* ; *attributs* {; *} )
+**METHOD SET ATTRIBUTES** ( *chemin* : Text, Text array ; *attributs* : Object, Object array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Chemin(s) de méthode(s) |
-| attributs | Object, Object array | → | Attribut(s) de méthode(s) à définir |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text, Text array | → | Chemin(s) de méthode(s) |
+| attributs | Object, Object array | → | Attribut(s) de méthode(s) à définir |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -68,6 +68,6 @@ Vous souhaiter modifier un seul attribut :
| | |
| --- | --- |
| Numéro de commande | 1335 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
index 387c73a6b8363a..9e6be0747128f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-code
displayed_sidebar: docs
---
-**METHOD SET CODE** ( *chemin* ; *code* {; *} )
+**METHOD SET CODE** ( *chemin* : Text, Text array ; *code* : Text, Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
-| code | Text, Text array | → | Code de(s) méthode(s) désignée(s) |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
+| code | Text, Text array | → | Code de(s) méthode(s) désignée(s) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -103,6 +103,6 @@ Cet exemple permet d’exporter et d’importer la totalité des méthodes proje
| | |
| --- | --- |
| Numéro de commande | 1194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
index 140f20e706fb91..1d074e252202fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-comments
displayed_sidebar: docs
---
-**METHOD SET COMMENTS** ( *chemin* ; *commentaires* {; *} )
+**METHOD SET COMMENTS** ( *chemin* : Text, Text array ; *commentaires* : Text, Text array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
-| commentaires | Text, Text array | → | Documentation de(s) méthode(s) désignée(s) |
-| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
+| chemin | Text, Text array | → | Texte ou Tableau texte contenant un ou plusieurs chemin(s) de méthode(s) |
+| commentaires | Text, Text array | → | Documentation de(s) méthode(s) désignée(s) |
+| * | Opérateur | → | Si passé = la commande s’applique à la base hôte lorsqu’elle est exécutée depuis un composant (paramètre ignoré hors de ce contexte) |
@@ -67,6 +67,6 @@ Ajout d’une date de modification à une documentation de trigger existante :
| | |
| --- | --- |
| Numéro de commande | 1193 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
index d2967c54b170c2..ee9f70dfb882ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ Le code suivant attend jusqu'à 5 secondes qu'un enregistrement soit déverrouil
| | |
| --- | --- |
| Numéro de commande | 459 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md
index b991511083ef55..43126cf33cced1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/min.md
@@ -5,13 +5,13 @@ slug: /commands/min
displayed_sidebar: docs
---
-**Min** ( *séries* {; *cheminAttribut*} ) : any
+**Min** ( *séries* : Field, Array {; *cheminAttribut* : Text} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs desquelles vous voulez obtenir la plus basse |
-| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la valeur minimale |
-| Résultat | Date, Number | ← | Valeur la plus basse de séries |
+| séries | Field, Array | → | Valeurs desquelles vous voulez obtenir la plus basse |
+| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la valeur minimale |
+| Résultat | Date, Real | ← | Valeur la plus basse de séries |
@@ -83,7 +83,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 4 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
index 3a85daeb9e12ff..cca5055d7d5c74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
@@ -5,11 +5,11 @@ slug: /commands/minimize-window
displayed_sidebar: docs
---
-**MINIMIZE WINDOW** {( *fenêtre* )}
+**MINIMIZE WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre Si omis = Toutes les fenêtres (Windows) ou Fenêtre de premier plan du process courant (macOS) |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre Si omis = Toutes les fenêtres (Windows) ou Fenêtre de premier plan du process courant (macOS) |
@@ -53,6 +53,6 @@ Mac OS
| | |
| --- | --- |
| Numéro de commande | 454 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
index 242bb34916ac18..3df04fe57de018 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Vous souhaitez réinitialiser toutes les sessions en cours pour toutes les appli
| | |
| --- | --- |
| Numéro de commande | 1596 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
index 90826141b44966..e7b9d0c2cbac87 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
@@ -5,12 +5,12 @@ slug: /commands/mod
displayed_sidebar: docs
---
-**Mod** ( *nombre1* ; *nombre2* ) : Real
+**Mod** ( *nombre1* : Integer ; *nombre2* : Integer ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre1 | Integer | → | Nombre à diviser (numérateur) |
-| nombre2 | Integer | → | Nombre diviseur (dénominateur) |
+| nombre1 | Integer | → | Nombre à diviser (numérateur) |
+| nombre2 | Integer | → | Nombre diviseur (dénominateur) |
| Résultat | Real | ← | Reste de la division entière de nombre1 par nombre2 |
@@ -39,6 +39,6 @@ L'exemple suivant illustre le fonctionnement de **Mod** dans différents cas de
| | |
| --- | --- |
| Numéro de commande | 98 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
index 9ba3da7c6cffa8..5d3c2e3c6f2287 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
@@ -5,11 +5,11 @@ slug: /commands/modified-record
displayed_sidebar: docs
---
-**Modified record** {( *laTable* )} : Boolean
+**Modified record** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle tester si l'enregistrement courant a été modifié ou Table par défaut si paramètre omis |
+| laTable | Table | → | Table de laquelle tester si l'enregistrement courant a été modifié ou Table par défaut si paramètre omis |
| Résultat | Boolean | ← | L'enregistrement a été modifié (Vrai) ou L'enregistrement n'a pas été modifié (Faux) |
@@ -48,6 +48,6 @@ L'exemple suivant montre une utilisation typique de **Modified record** :
| | |
| --- | --- |
| Numéro de commande | 314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
index c29301e5423621..e43acda3765f5e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ dont vous voulez tester la modification |
+| leField | Field | → | Champ dont vous voulez tester la modification |
| Résultat | Boolean | ← | Vrai si une nouvelle valeur a été assignée au champ, sinon Faux |
@@ -71,6 +71,6 @@ Vous sélectionnez un enregistrement de la table *\[uneTable\]*, puis vous appel
| | |
| --- | --- |
| Numéro de commande | 32 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
index 8701bea1374810..b687fc9bc9b2ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
@@ -5,12 +5,12 @@ slug: /commands/modify-record
displayed_sidebar: docs
---
-**MODIFY RECORD** ( {*laTable*}{;}{*} )
+**MODIFY RECORD** ( {*laTable* : Table}{;}{*} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle modifier des données ou Table par défaut si ce paramètre est omis |
-| * | Operator | → | Cacher les barres de défilement |
+| laTable | Table | → | Table dans laquelle modifier des données ou Table par défaut si ce paramètre est omis |
+| * | Operator | → | Cacher les barres de défilement |
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 lorsque l'enregistrement est validé e
| | |
| --- | --- |
| Numéro de commande | 57 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
index 04ba86505554f3..b74f47e360113a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
@@ -5,15 +5,15 @@ slug: /commands/modify-selection
displayed_sidebar: docs
---
-**MODIFY SELECTION** ( {*laTable*}{; *modeSélection*}{; *saisieListe*}{; *}{; *} )
+**MODIFY SELECTION** ( {*laTable* : Table}{; *modeSélection* : Integer}{; *saisieListe* : Boolean}{; *} )
**MODIFY SELECTION** ( {*laTable* : Table}{; *modeSélection* : Integer}{; *saisieListe* : Boolean}; * {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à afficher et modifier ou Table par défaut si ce paramètre est omis |
-| modeSélection | Integer | → | Mode de sélection |
-| saisieListe | Boolean | → | Autoriser saisie en liste |
-| * | Operator | → | Utiliser formulaire sortie pour un seul enregistrement et cacher les barres de défilement dans le formulaire entrée |
-| * | Operator | → | Afficher les barres de défilement dans le formulaire entrée (= annuler le second effet du premier paramètre *) |
+| laTable | Table | → | Table à afficher et modifier ou Table par défaut si ce paramètre est omis |
+| modeSélection | Integer | → | Mode de sélection |
+| saisieListe | Boolean | → | Autoriser saisie en liste |
+| * | Operator | → | Utiliser formulaire sortie pour un seul enregistrement et cacher les barres de défilement dans le formulaire entrée |
+| * | Operator | → | Afficher les barres de défilement dans le formulaire entrée (= annuler le second effet du premier paramètre *) |
@@ -37,7 +37,7 @@ Les seules différences entre ces deux commandes sont les suivantes :
| | |
| --- | --- |
| Numéro de commande | 204 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
index d583b59f5e5e66..b0e3545af7cda7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md).**
| | |
| --- | --- |
| Numéro de commande | 1713 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
index 52883c72a0e452..a97fb27e085068 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
@@ -5,11 +5,11 @@ slug: /commands/month-of
displayed_sidebar: docs
---
-**Month of** ( *laDate* ) : Integer
+**Month of** ( *laDate* : Date ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laDate | Date | → | Date dont vous voulez extraire le mois |
+| laDate | Date | → | Date dont vous voulez extraire le mois |
| Résultat | Integer | ← | Nombre indiquant le mois de date |
@@ -58,6 +58,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 24 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
index c4687af10bee43..c0a2dd669c5b8a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
@@ -5,14 +5,14 @@ slug: /commands/mouse-position
displayed_sidebar: docs
---
-**MOUSE POSITION** ( *sourisX* ; *sourisY* ; *boutonSouris* {; *} )
+**MOUSE POSITION** ( *sourisX* : Real ; *sourisY* : Real ; *boutonSouris* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| sourisX | Real | ← | Coordonnée horizontale de la souris |
| sourisY | Real | ← | Coordonnée verticale de la souris |
| boutonSouris | Integer | ← | Etat du bouton de la souris : 0 = Bouton relâché 1 = Bouton enfoncé 2 = Bouton droit enfoncé 3 = Les deux boutons enfoncés |
-| * | Opérateur | → | Si spécifié, utiliser le système de coordonnées globales Si omis, utiliser le système de coordonnées locales |
+| * | Opérateur | → | Si spécifié, utiliser le système de coordonnées globales Si omis, utiliser le système de coordonnées locales |
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Numéro de commande | 468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
index 72ec0b244fe9c3..deb02ff7126599 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
@@ -5,12 +5,12 @@ slug: /commands/move-document
displayed_sidebar: docs
---
-**MOVE DOCUMENT** ( *cheminSource* ; *cheminDest* )
+**MOVE DOCUMENT** ( *cheminSource* : Text ; *cheminDest* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminSource | Text | → | Chemin d'accès complet au document existant |
-| cheminDest | Text | → | Chemin d'accès de destination |
+| cheminSource | Text | → | Chemin d'accès complet au document existant |
+| cheminDest | Text | → | Chemin d'accès de destination |
@@ -57,7 +57,7 @@ L'exemple suivant déplace le document DocNom :
| | |
| --- | --- |
| Numéro de commande | 540 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
index befde686e8e4b9..0f00f7b1251cda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
@@ -5,15 +5,14 @@ slug: /commands/multi-sort-array
displayed_sidebar: docs
---
-**MULTI SORT ARRAY** ( *tableau* {; *sensDuTri*}{; *tableau2* ; *sensDuTri2* ; ... ; *tableauN* ; *sensDuTriN*} )
-**MULTI SORT ARRAY** ( *tabPointeurs* ; *tabTris* )
+**MULTI SORT ARRAY** ( *tableau* : Array {; *sensDuTri* : Operator}{; ...*tableau* : Array ; ...*sensDuTri* : Operator} )
**MULTI SORT ARRAY** ( *tabPointeurs* : Pointer array ; *tabTris* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau(x) à trier |
-| sensDuTri | * | → | ">" pour effectuer un tri croissant ou "<" pour effectuer un tri décroissant Si omis = pas de tri |
-| tabPointeurs | Pointer array | → | Tableau de pointeurs de tableaux |
-| tabTris | Integer array | → | Tableau d’ordres de tri (1 = tri par ordre croissant, -1 = tri par ordre décroissant, 0 = synchronisation avec des tris précédents) |
+| tableau | Array | → | Tableau(x) à trier |
+| sensDuTri | Operator | → | `>` to sort by increasing order or `<` to sort by decreasing order; if omitted no sort |
+| tabPointeurs | Pointer array | → | Tableau de pointeurs de tableaux |
+| tabTris | Integer array | → | Tableau d’ordres de tri (1 = tri par ordre croissant, -1 = tri par ordre décroissant, 0 = synchronisation avec des tris précédents) |
@@ -113,6 +112,6 @@ Si vous souhaitez que le tableau des noms soit utilisé comme troisième critèr
| | |
| --- | --- |
| Numéro de commande | 718 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
index bba76f3ebf0543..554b68570e1213 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/new-data-key
displayed_sidebar: docs
---
-**New data key** ( *phraseSecrète* ) : Object
+**New data key** ( *phraseSecrète* : Text ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| phraseSecrète | Text | → | Phrase secrète à utiliser pour générer la clé de chiffrement des données AES |
+| phraseSecrète | Text | → | Phrase secrète à utiliser pour générer la clé de chiffrement des données AES |
| Résultat | Object | ← | Objet contenant la clé (propriété encodedKey) |
@@ -61,6 +61,6 @@ Vous souhaitez sauvegarder une clé de chiffrement dans un fichier .4DKeyChain :
| | |
| --- | --- |
| Numéro de commande | 1611 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
index f4cffe8bfea72d..7198994a958af1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 375 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
index dab4be473e8c35..bb5cf3cddbea22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-object
displayed_sidebar: docs
---
-**New object** {( *propriété* ; *valeur* {; *propriété2* ; *valeur2* ; ... ; *propriétéN* ; *valeurN*} )} : Object
+**New object** ( *propriété* : Text ; *valeur* : any {; ...(*propriété* : Text, *valeur* : any)} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| propriété | Text | → | Nom de la propriété à créer |
-| valeur | any | → | Valeur de la propriété |
+| propriété | Text | → | Nom de la propriété à créer |
+| valeur | any | → | Valeur de la propriété |
| Résultat | Object | ← | Nouvel objet structuré |
@@ -112,6 +112,6 @@ Avec cette commande, vous pouvez aisément gérer des objets en boucle :
| | |
| --- | --- |
| Numéro de commande | 1471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
index d43a34a3a7f85a..3fa6b39935939a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
@@ -14,15 +14,15 @@ displayed_sidebar: docs
-**New process** ( *méthode* ; *pile* {; *nom* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**New process** ( *méthode* : Text ; *pile* : Integer {; *nom* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| méthode | Text | → | Méthode à exécuter dans le process |
-| pile | Integer | → | Taille de la pile en octets (0 = taille par défaut) |
-| nom | Text | → | Nom du process créé |
-| param | Expression | → | Paramètre(s) de la méthode |
-| * | Opérateur | → | Process unique |
+| méthode | Text | → | Méthode à exécuter dans le process |
+| pile | Integer | → | Taille de la pile en octets (0 = taille par défaut) |
+| nom | Text | → | Nom du process créé |
+| param | Expression | → | Paramètre(s) de la méthode |
+| * | Opérateur | → | Process unique |
| Résultat | Integer | ← | Numéro du process nouvellement créé ou du process déjà en cours d'exécution |
@@ -119,6 +119,6 @@ Dans l'éditeur de barres de menus, vous remplacez AJOUT CLIENTS par la méthode
| | |
| --- | --- |
| Numéro de commande | 317 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
index 99bfe1cf5ed8fa..f4f1c64216a6d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-shared-object
displayed_sidebar: docs
---
-**New shared object** {( *propriété* ; *valeur* {; *propriété2* ; *valeur2* ; ... ; *propriétéN* ; *valeurN*} )} : Object
+**New shared object** ( *propriété* : Text ; *valeur* : any {; ...(*propriété* : Text, *valeur* : any)} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| propriété | Text | → | Nom de propriété à créer |
-| valeur | Text, Date, Boolean, Pointer, Number, Object | → | Valeur de propriété |
+| propriété | Text | → | Nom de propriété à créer |
+| valeur | any | → | Valeur de propriété |
| Résultat | Object | ← | Nouvel objet partagé |
@@ -73,6 +73,6 @@ Vous souhaitez créer et modifier un objet partagé. La structure *Utiliser...Fi
| | |
| --- | --- |
| Numéro de commande | 1526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
index 4aae8b21cf880a..06a72094ab3baa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
@@ -5,11 +5,11 @@ slug: /commands/next-record
displayed_sidebar: docs
---
-**NEXT RECORD** {( *laTable* )}
+**NEXT RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle se placer sur l'enregistrement suivant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table dans laquelle se placer sur l'enregistrement suivant ou Table par défaut si ce paramètre est omis |
@@ -36,7 +36,7 @@ Reportez-vous à l'exemple de la commande [DISPLAY RECORD](display-record.md).
| | |
| --- | --- |
| Numéro de commande | 51 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
index cd659cc164a355..2483110baf55df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
@@ -5,11 +5,11 @@ slug: /commands/next-window
displayed_sidebar: docs
---
-**Next window** ( *fenêtre* ) : Integer
+**Next window** ( *fenêtre* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre |
| Résultat | Integer | ← | Numéro de référence de fenêtre |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 448 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
index cdb0832da2fe65..62894fbaa565f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
@@ -47,6 +47,6 @@ Dans une base contenant un formulaire projet nommé “LeForm” et un formulair
| | |
| --- | --- |
| Numéro de commande | 993 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md
index 04b2c2bbef0db6..fedd215b72325a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/not.md
@@ -5,11 +5,11 @@ slug: /commands/not
displayed_sidebar: docs
---
-**Not** ( *booléen* ) : Boolean
+**Not** ( *booléen* : Boolean ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| booléen | Boolean | → | Valeur booléenne à inverser |
+| booléen | Boolean | → | Valeur booléenne à inverser |
| Résultat | Boolean | ← | Inverse de booléen |
@@ -38,6 +38,6 @@ Dans l'exemple suivant, la valeur [True](true.md) est assignée à une variable.
| | |
| --- | --- |
| Numéro de commande | 34 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
index c910f66046dd45..0ceafbae19af0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
@@ -37,6 +37,6 @@ Le paramétrage courant peut être défini soit :
| | |
| --- | --- |
| Numéro de commande | 1052 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md
index 1fe8c683cee21a..d1de72899b5dd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/null.md
@@ -138,6 +138,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 1517 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
index e4acc435074e59..551e70bb206823 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
@@ -5,11 +5,11 @@ slug: /commands/ob-class
displayed_sidebar: docs
---
-**OB Class** ( *objet* ) : any
+**OB Class** ( *objet* : Object ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet dont la classe doit être retournée |
+| objet | Object | → | Objet dont la classe doit être retournée |
| Résultat | Null, Object | ← | Classe de l'objet |
@@ -45,6 +45,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
index 9df2d6c03c36ae..b1c817ca774186 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
@@ -5,14 +5,14 @@ slug: /commands/ob-copy
displayed_sidebar: docs
---
-**OB Copy** ( *objet* {; *résoudrePtrs* } ) : Object
**OB Copy** ( *objet* {; *option* {; *grouperAvec*}} ) : Object
+**OB Copy** ( *objet* : Object, Object {; *résoudrePtrs* : Boolean } ) : Object
**OB Copy** ( *objet* : Object, Object {; *option* : Integer {; *grouperAvec* : Collection, Object}} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| résoudrePtrs | Boolean | → | Vrai = résoudre les pointeurs, Faux ou omis = ne pas les résoudre |
-| option | Integer | → | ck shared: return a shared object,ck resolve pointers: resolve pointers before copying |
-| grouperAvec | Collection, Object | → | Collection ou objet partagé(e) à grouper avec l'objet résultant |
+| objet | Object, Object | → | Objet structuré |
+| résoudrePtrs | Boolean | → | Vrai = résoudre les pointeurs, Faux ou omis = ne pas les résoudre |
+| option | Integer | → | ck shared: return a shared object,ck resolve pointers: resolve pointers before copying |
+| grouperAvec | Collection, Object | → | Collection ou objet partagé(e) à grouper avec l'objet résultant |
| Résultat | Object | ← | Copie de objet |
@@ -170,6 +170,6 @@ Nous souhaitons copier *$sharedObj* dans *$sharedColl.* Etant donné qu'ils appa
| | |
| --- | --- |
| Numéro de commande | 1225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
index d6c07dafc9af59..a392684fd1a564 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
@@ -5,11 +5,11 @@ slug: /commands/ob-entries
displayed_sidebar: docs
---
-**OB Entries** ( *objet* ) : Collection
+**OB Entries** ( *objet* : Object ) : Collection
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet retournant le contenu |
+| objet | Object | → | Objet retournant le contenu |
| Résultat | Collection | ← | Collection d'objets avec les propriétés key/value |
@@ -60,6 +60,6 @@ L'utilisation d'un objet comme une hashmap (système clé/valeur) permet d'accé
| | |
| --- | --- |
| Numéro de commande | 1720 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
index cd33a2d41c89ee..2b36c514c504fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-array
displayed_sidebar: docs
---
-**OB GET ARRAY** ( *objet* ; *propriété* ; *tableau* )
+**OB GET ARRAY** ( *objet* : Object ; *propriété* : Text ; *tableau* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à lire |
-| tableau | Text array, Real array, Boolean array, Object array, Pointer array, Integer array | ← | Tableau valeur de la propriété |
+| objet | Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à lire |
+| tableau | Array | ← | Tableau valeur de la propriété |
@@ -57,6 +57,6 @@ On souhaite changer une valeur dans le premier élément du tableau :
| | |
| --- | --- |
| Numéro de commande | 1229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
index 638d4aa2918b81..e7c35034ec43fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
@@ -5,11 +5,11 @@ slug: /commands/ob-get-property-names
displayed_sidebar: docs
---
-**OB GET PROPERTY NAMES** ( *objet* ; *tabPropriétés* {; *tabTypes*} )
+**OB GET PROPERTY NAMES** ( *objet* : Object ; *tabPropriétés* : Text array {; *tabTypes* : Integer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet structuré |
+| objet | Object | → | Objet structuré |
| tabPropriétés | Text array | ← | Noms des propriétés |
| tabTypes | Integer array | ← | Types des propriétés |
@@ -102,6 +102,6 @@ Utilisation d’un élément de tableau d’objets :
| | |
| --- | --- |
| Numéro de commande | 1232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
index 58a513a3f2ddf4..41507f510664ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/ob-get-type
displayed_sidebar: docs
---
-**OB Get type** ( *objet* ; *propriété* ) : Integer
+**OB Get type** ( *objet* : Object ; *propriété* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété |
+| objet | Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété |
| Résultat | Integer | ← | Type de valeur de la propriété |
@@ -57,6 +57,6 @@ On souhaite obtenir le type de valeurs standard :
| | |
| --- | --- |
| Numéro de commande | 1230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
index 703e49229cdf22..8aae2b97a03004 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get
displayed_sidebar: docs
---
-**OB Get** ( *objet* ; *propriété* {; *type*} ) : any
+**OB Get** ( *objet* : Object, Object ; *propriété* : Text {; *type* : Integer} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à lire |
-| type | Integer | → | Type dans lequel convertir la valeur |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à lire |
+| type | Integer | → | Type dans lequel convertir la valeur |
| Résultat | any | ← | Valeur courante de la propriété |
@@ -217,6 +217,6 @@ Vous voulez connaître la taille d'une image stockée dans un objet :
| | |
| --- | --- |
| Numéro de commande | 1224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
index fe91fbf3f9531b..db1ca13294ed6f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
@@ -5,12 +5,12 @@ slug: /commands/ob-instance-of
displayed_sidebar: docs
---
-**OB Instance of** ( *objet* ; *classe* ) : Boolean
+**OB Instance of** ( *objet* : Object ; *classe* : Object ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet dont la classe doit être identifiée |
-| classe | Object | → | Classe dont l'appartenance est à identifier |
+| objet | Object | → | Objet dont la classe doit être identifiée |
+| classe | Object | → | Classe dont l'appartenance est à identifier |
| Résultat | Boolean | ← | Vrai si l'objet appartient à la classe ou classe enfant indiquée, sinon faux |
@@ -51,6 +51,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
index 988e1e4a6fe425..ad930afaad1c7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
@@ -5,12 +5,12 @@ slug: /commands/ob-is-defined
displayed_sidebar: docs
---
-**OB Is defined** ( *objet* {; *propriété*} ) : Boolean
+**OB Is defined** ( *objet* : Object, Object {; *propriété* : Text} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Si passé = propriété à vérifier, si omis = vérifier l’objet |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Si passé = propriété à vérifier, si omis = vérifier l’objet |
| Résultat | Boolean | ← | Si propriété omis : Vrai si objet est défini, sinon Faux.
Si propriété passé : Vrai si propriété est définie, sinon Faux |
@@ -66,6 +66,6 @@ Ce test équivaut à :
| | |
| --- | --- |
| Numéro de commande | 1231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
index 4ec730c916f725..fb94686acfa432 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-empty
displayed_sidebar: docs
---
-**OB Is empty** ( *objet* ) : Boolean
+**OB Is empty** ( *objet* : Object, Object ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
+| objet | Object, Object | → | Objet structuré |
| Résultat | Boolean | ← | Vrai si objet est vide ou indéfini, sinon Faux |
@@ -47,6 +47,6 @@ Voici les différents résultats de la commande ainsi que de la commande [OB Is
| | |
| --- | --- |
| Numéro de commande | 1297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
index 80d15443db8caa..f41c0c41ef7aa5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-shared
displayed_sidebar: docs
---
-**OB Is shared** ( *toCheck* ) : Boolean
+**OB Is shared** ( *toCheck* : Object, Collection ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| toCheck | Object, Collection | → | Object or collection or to check |
+| toCheck | Object, Collection | → | Object or collection or to check |
| Résultat | Boolean | ← | True if the object or collection is shareable, False if it is alterable |
@@ -26,6 +26,6 @@ Cette commande retourne **Vrai** si vous passez une sélection d'entité partage
| | |
| --- | --- |
| Numéro de commande | 1759 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
index 010f705d45bc8d..7dadddcce375fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
@@ -5,11 +5,11 @@ slug: /commands/ob-keys
displayed_sidebar: docs
---
-**OB Keys** ( *objet* ) : Collection
+**OB Keys** ( *objet* : Object ) : Collection
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet dont on veut obtenir les noms des propriétés |
+| objet | Object | → | Objet dont on veut obtenir les noms des propriétés |
| Résultat | Collection | ← | Collection de noms de propriété (chaines) |
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec tous les noms de propriétés de premier nive
| | |
| --- | --- |
| Numéro de commande | 1719 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
index 7c11f045fe974c..64d4644ee27420 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
@@ -5,12 +5,12 @@ slug: /commands/ob-remove
displayed_sidebar: docs
---
-**OB REMOVE** ( *objet* ; *propriété* )
+**OB REMOVE** ( *objet* : Object, Object ; *propriété* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à supprimer |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à supprimer |
@@ -43,6 +43,6 @@ Vous souhaitez supprimer la propriété "age" d’un objet :
| | |
| --- | --- |
| Numéro de commande | 1226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
index 87a72632d786f7..6ea7bd9373c3c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set-array
displayed_sidebar: docs
---
-**OB SET ARRAY** ( *objet* ; *propriété* ; *tableau* )
+**OB SET ARRAY** ( *objet* : Object, Object ; *propriété* : Text ; *tableau* : Array, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à définir |
-| tableau | Array, Variable | → | Tableau à stocker dans la propriété |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à définir |
+| tableau | Array, Variable | → | Tableau à stocker dans la propriété |
@@ -126,6 +126,6 @@ Utilisation d'un champ objet :
| | |
| --- | --- |
| Numéro de commande | 1227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
index b4170c146c9061..dbf0dfed262e91 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
@@ -5,12 +5,12 @@ slug: /commands/ob-set-null
displayed_sidebar: docs
---
-**OB SET NULL** ( *objet* ; *propriété* )
+**OB SET NULL** ( *objet* : Object, Object ; *propriété* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à laquelle appliquer la valeur null |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à laquelle appliquer la valeur null |
@@ -44,6 +44,6 @@ On souhaite mettre la valeur null dans la propriété "âge" de Léa :
| | |
| --- | --- |
| Numéro de commande | 1233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
index cee377cce0b77b..0fa208911c00dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set
displayed_sidebar: docs
---
-**OB SET** ( *objet* ; *propriété* ; *valeur* {; *propriété2* ; *valeur2* ; ... ; *propriétéN* ; *valeurN*} )
+**OB SET** ( *objet* : Object, Object ; *propriété* : Text ; *valeur* : Expression {; ...(*propriété* : Text, *valeur* : Expression)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object, Object | → | Objet structuré |
-| propriété | Text | → | Nom de la propriété à définir |
-| valeur | Expression | → | Nouvelle valeur de la propriété |
+| objet | Object, Object | → | Objet structuré |
+| propriété | Text | → | Nom de la propriété à définir |
+| valeur | Expression | → | Nouvelle valeur de la propriété |
@@ -202,6 +202,6 @@ Vous souhaitez stocker une image dans un champ objet. Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 1220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
index 47d3b667be20e1..778226f19763f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
@@ -5,11 +5,11 @@ slug: /commands/ob-values
displayed_sidebar: docs
---
-**OB Values** ( *objet* ) : Collection
+**OB Values** ( *objet* : Object ) : Collection
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet retournant les valeurs des propriétés |
+| objet | Object | → | Objet retournant les valeurs des propriétés |
| Résultat | Collection | ← | Collection de valeurs des propriétés (variant) |
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec toutes les valeurs des propriétés d'un obje
| | |
| --- | --- |
| Numéro de commande | 1718 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
index a86a7c0a43930b..b0921da9913077 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
@@ -5,20 +5,20 @@ slug: /commands/object-duplicate
displayed_sidebar: docs
---
-**OBJECT DUPLICATE** ( {* ;} *objet* {; *nouvNom* {; *nouvVar* {; *reliéA* {; *dépH* {; *dépV* {; *redimH* {; *redimV*}}}}}}} {; *} )
+**OBJECT DUPLICATE** ( * ; *objet* : Text {; *nouvNom* : Text {; *nouvVar* : Pointer {; *reliéA* : Text {; *dépH* : Integer {; *dépV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
**OBJECT DUPLICATE** ( *objet* : Field, Variable {; *nouvNom* : Text {; *nouvVar* : Pointer {; *reliéA* : Text {; *dépH* : Integer {; *dépV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| nouvNom | Text | → | Nom du nouvel objet |
-| nouvVar | Pointer | → | Pointeur vers la variable du nouvel objet |
-| reliéA | Text | → | Nom de l’objet saisissable (ou du bouton radio) précédent |
-| dépH | Integer | → | Décalage horizontal du nouvel objet
(>0 = vers la droite, <0 = vers la gauche) |
-| dépV | Integer | → | Décalage vertical du nouvel objet
(>0 = vers le bas, <0 = vers le haut) |
-| redimH | Integer | → | Valeur de redimensionnement horizontal du nouvel objet |
-| redimV | Integer | → | Valeur de redimensionnement vertical du nouvel objet |
-| * | Opérateur | → | Si spécifié = coordonnées absolues
Si omis = coordonnées relatives |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| nouvNom | Text | → | Nom du nouvel objet |
+| nouvVar | Pointer | → | Pointeur vers la variable du nouvel objet |
+| reliéA | Text | → | Nom de l’objet saisissable (ou du bouton radio) précédent |
+| dépH | Integer | → | Décalage horizontal du nouvel objet
(>0 = vers la droite, <0 = vers la gauche) |
+| dépV | Integer | → | Décalage vertical du nouvel objet
(>0 = vers le bas, <0 = vers le haut) |
+| redimH | Integer | → | Valeur de redimensionnement horizontal du nouvel objet |
+| redimV | Integer | → | Valeur de redimensionnement vertical du nouvel objet |
+| * | Opérateur | → | Si spécifié = coordonnées absolues
Si omis = coordonnées relatives |
@@ -108,7 +108,7 @@ Création d’un nouveau bouton radio "bRadio6" basé sur le bouton radio exista
| | |
| --- | --- |
| Numéro de commande | 1111 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
index fcb0143b7d60dd..60fe9cbfff7442 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-action
displayed_sidebar: docs
---
-**OBJECT Get action** ( {* ;} *objet* ) : Text
+**OBJECT Get action** ( * ; *objet* : Text ) : Text
**OBJECT Get action** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne). Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom de l'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne). Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom de l'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Text | ← | Nom de l'action standard associée et (s'il existe) son paramètre chaîne. |
@@ -49,6 +49,6 @@ Vous souhaitez associer l'action "Annuler" à tous les objets du formulaire qui
| | |
| --- | --- |
| Numéro de commande | 1457 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
index 3b5e376210f320..8d29ddaed6cdbe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT Get auto spellcheck** ( {* ;} *objet* ) : Boolean
+**OBJECT Get auto spellcheck** ( * ; *objet* : Text ) : Boolean
**OBJECT Get auto spellcheck** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Boolean | ← | Vrai = correction automatique,
Faux = pas de correction automatique |
@@ -37,6 +37,6 @@ La commande retourne **Vrai** si la correction automatique est activée pour l
| | |
| --- | --- |
| Numéro de commande | 1174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
index 10ab69b5daf29f..c9d85765ab76b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
@@ -5,15 +5,15 @@ slug: /commands/object-get-best-size
displayed_sidebar: docs
---
-**OBJECT GET BEST SIZE** ( {* ;} *objet* ; *largeurOpti* ; *hauteurOpti* {; *largeurMaxi*} )
+**OBJECT GET BEST SIZE** ( * ; *objet* : Text ; *largeurOpti* : Integer ; *hauteurOpti* : Integer {; *largeurMaxi* : Integer} )
**OBJECT GET BEST SIZE** ( *objet* : Field, Variable ; *largeurOpti* : Integer ; *hauteurOpti* : Integer {; *largeurMaxi* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis |
+| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis |
| largeurOpti | Integer | ← | Largeur optimale de l’objet |
| hauteurOpti | Integer | ← | Hauteur optimale de l’objet |
-| largeurMaxi | Integer | → | Largeur maximum de l’objet |
+| largeurMaxi | Integer | → | Largeur maximum de l’objet |
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la routine [SET PRINT MARKER](set-print-marker.m
| | |
| --- | --- |
| Numéro de commande | 717 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
index a30a426366c346..013ad541226057 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-border-style
displayed_sidebar: docs
---
-**OBJECT Get border style** ( {* ;} *objet* ) : Integer
+**OBJECT Get border style** ( * ; *objet* : Text ) : Integer
**OBJECT Get border style** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Integer | ← | Style de la ligne de bordure |
@@ -44,6 +44,6 @@ La commande retourne une valeur correspondant au style de la bordure. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 1263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
index 23669de56e9cff..0b6f3179300768 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-context-menu
displayed_sidebar: docs
---
-**OBJECT Get context menu** ( {* ;} *objet* ) : Boolean
+**OBJECT Get context menu** ( * ; *objet* : Text ) : Boolean
**OBJECT Get context menu** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Boolean | ← | Vrai = menu contextuel activé,
Faux = menu contextuel désactivé |
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le menu contextuel est activé pour l’objet e
| | |
| --- | --- |
| Numéro de commande | 1252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
index 372b9332a1f5a2..c6bfac037dba2b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-coordinates
displayed_sidebar: docs
---
-**OBJECT GET COORDINATES** ( {* ;} *objet* ; *gauche* ; *haut* ; *droite* ; *bas* )
+**OBJECT GET COORDINATES** ( * ; *objet* : Text ; *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer )
**OBJECT GET COORDINATES** ( *objet* : Field, Variable ; *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis) |
| gauche | Integer | ← | Coordonnée gauche de l’objet |
| haut | Integer | ← | Coordonnée supérieure de l’objet |
| droite | Integer | ← | Coordonnée droite de l’objet |
@@ -90,6 +90,6 @@ La méthode retourne les coordonnées théoriques. Si la list box est redimensio
| | |
| --- | --- |
| Numéro de commande | 663 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
index b80b4c45d349f7..fc088b1e669687 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-corner-radius
displayed_sidebar: docs
---
-**OBJECT Get corner radius** ( {* ;} *objet* ) : Integer
+**OBJECT Get corner radius** ( * ; *objet* : Text ) : Integer
**OBJECT Get corner radius** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
| Résultat | Integer | ← | Rayon des angles arrondis (en pixels) |
@@ -52,6 +52,6 @@ Le code suivant peut être associé à la méthode d'un bouton :
| | |
| --- | --- |
| Numéro de commande | 1324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
index 50cdf04f9740bb..4db6144565d60d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-data-source
displayed_sidebar: docs
---
-**OBJECT Get data source** ( {* ;} *objet* ) : Pointer
+**OBJECT Get data source** ( * ; *objet* : Text ) : Pointer
**OBJECT Get data source** ( *objet* : Field, Variable ) : Pointer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Pointer | ← | Pointeur vers la source de données courante de l’objet |
@@ -45,6 +45,6 @@ Vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1265 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
index 2c8db68d3a4505..2db30c14459765 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT GET DRAG AND DROP OPTIONS** ( {* ;} *objet* ; *glissable* ; *glissableAuto* ; *déposable* ; *déposableAuto* )
+**OBJECT GET DRAG AND DROP OPTIONS** ( * ; *objet* : Text ; *glissable* : Boolean ; *glissableAuto* : Boolean ; *déposable* : Boolean ; *déposableAuto* : Boolean )
**OBJECT GET DRAG AND DROP OPTIONS** ( *objet* : Field, Variable ; *glissable* : Boolean ; *glissableAuto* : Boolean ; *déposable* : Boolean ; *déposableAuto* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| glissable | Boolean | ← | Glissable = Vrai, sinon Faux |
| glissableAuto | Boolean | ← | Glisser automatique = Vrai, sinon Faux |
| déposable | Boolean | ← | Déposable = Vrai, sinon Faux |
@@ -42,6 +42,6 @@ Chaque paramètre retourne Vrai ou Faux suivant que l’option correspondante es
| | |
| --- | --- |
| Numéro de commande | 1184 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
index c4d0b458356f16..a81e8705da5ab0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enabled
displayed_sidebar: docs
---
-**OBJECT Get enabled** ( {* ;} *objet* ) : Boolean
+**OBJECT Get enabled** ( * ; *objet* : Text ) : Boolean
**OBJECT Get enabled** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
| Résultat | Boolean | ← | Vrai = objet(s) activé(s), Faux sinon |
@@ -40,6 +40,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1079 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
index 56316f93cb1d5d..f0520ada3f6d21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enterable
displayed_sidebar: docs
---
-**OBJECT Get enterable** ( {* ;} *objet* ) : Boolean
+**OBJECT Get enterable** ( * ; *objet* : Text ) : Boolean
**OBJECT Get enterable** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Boolean | ← | Vrai = objet(s) saisissable(s), Faux sinon |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1067 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
index d15d095446d4f1..0fd67d9e1330df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-events
displayed_sidebar: docs
---
-**OBJECT GET EVENTS** ( {* ;} *objet* ; *tabEvénements* )
+**OBJECT GET EVENTS** ( * ; *objet* : Text ; *tabEvénements* : Integer array )
**OBJECT GET EVENTS** ( *objet* : Field, Variable ; *tabEvénements* : Integer array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet ou "" pour désigner le formulaire (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet ou "" pour désigner le formulaire (si * est spécifié) ou
Champ ou variable (si * est omis) |
| tabEvénements | Integer array | ← | Tableau des événements activés |
@@ -52,6 +52,6 @@ Vous souhaitez activer deux événements et obtenir la liste des événements po
| | |
| --- | --- |
| Numéro de commande | 1238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
index 1dba0fb8f3eac1..7b9a94d05efb7b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-filter
displayed_sidebar: docs
---
-**OBJECT Get filter** ( {* ;} *objet* ) : Text
+**OBJECT Get filter** ( * ; *objet* : Text ) : Text
**OBJECT Get filter** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable ou champ (si * omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable ou champ (si * omis) |
| Résultat | Text | ← | Nom du filtre de saisie |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel \*, vous indiquez que le paramètre *obje
| | |
| --- | --- |
| Numéro de commande | 1073 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
index 774305b33cab6c..754167cef1f81e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT Get focus rectangle invisible** ( {* ;} *objet* ) : Boolean
+**OBJECT Get focus rectangle invisible** ( * ; *objet* : Text ) : Boolean
**OBJECT Get focus rectangle invisible** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Boolean | ← | Vrai = rectangle focus caché, Faux = rectangle focus visible |
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le rectangle de focus est masqué et **Faux** s
| | |
| --- | --- |
| Numéro de commande | 1178 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
index b9af6fd13257b5..e2a847a6817dd9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-size
displayed_sidebar: docs
---
-**OBJECT Get font size** ( {* ;} *objet* ) : Integer
+**OBJECT Get font size** ( * ; *objet* : Text ) : Integer
**OBJECT Get font size** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Integer | ← | Taille de la police en points |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1070 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
index 8e366263a0d4f1..9e3a4876ba9300 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-style
displayed_sidebar: docs
---
-**OBJECT Get font style** ( * ; *objet* ) : Integer
+**OBJECT Get font style** ( * ; *objet* : any ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Integer | ← | Style de police |
@@ -39,6 +39,6 @@ Vous pouvez comparer la valeur retournée par la commande à la valeur d’une o
| | |
| --- | --- |
| Numéro de commande | 1071 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
index b99822d5197d01..812619102ef0c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font
displayed_sidebar: docs
---
-**OBJECT Get font** ( {* ;} *objet* ) : Text
+**OBJECT Get font** ( * ; *objet* : Text ) : Text
**OBJECT Get font** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Text | ← | Nom de la police |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1069 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
index 5b2ae29c19280a..4af12363fc5d76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-format
displayed_sidebar: docs
---
-**OBJECT Get format** ( {* ;} *objet* ) : Text
+**OBJECT Get format** ( * ; *objet* : Text ) : Text
**OBJECT Get format** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d’objet (si * spécifié) ou Champ ou variable (si * omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d’objet (si * spécifié) ou Champ ou variable (si * omis) |
| Résultat | Text | ← | Format d’affichage de l’objet |
@@ -69,6 +69,6 @@ Les formats personnalisés sont retournés inchangés :
| | |
| --- | --- |
| Numéro de commande | 894 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
index 2c86f0641c30a6..8baad01744860c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-help-tip
displayed_sidebar: docs
---
-**OBJECT Get help tip** ( {* ;} *objet* ) : Text
+**OBJECT Get help tip** ( * ; *objet* : Text ) : Text
**OBJECT Get help tip** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Text | ← | Message d’aide de l’objet |
@@ -42,6 +42,6 @@ Le libellé d’un bouton image est stocké sous forme de message d’aide. Ce l
| | |
| --- | --- |
| Numéro de commande | 1182 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
index 4a68a3f2e72c09..8ec3e991a09cfc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT Get horizontal alignment** ( {* ;} *objet* ) : Integer
+**OBJECT Get horizontal alignment** ( * ; *objet* : Text ) : Integer
**OBJECT Get horizontal alignment** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d’objet (si * est passé) ou Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d’objet (si * est passé) ou Champ ou variable (si * est omis) |
| Résultat | Integer | ← | Code d’alignement |
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels un alignement peut être appliqué sont les su
| | |
| --- | --- |
| Numéro de commande | 707 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
index 88e80f1c8f228c..04596c84c5ed61 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-indicator-type
displayed_sidebar: docs
---
-**OBJECT Get indicator type** ( {* ;} *objet* ) : Integer
+**OBJECT Get indicator type** ( * ; *objet* : Text ) : Integer
**OBJECT Get indicator type** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Integer | ← | Type d’indicateur |
@@ -40,6 +40,6 @@ Vous pouvez comparer la valeur retournée par la commande aux constantes suivant
| | |
| --- | --- |
| Numéro de commande | 1247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
index 6696dca8a74f3d..436dba4e825bc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT Get keyboard layout** ( {* ;} *objet* ) : Text
+**OBJECT Get keyboard layout** ( * ; *objet* : Text ) : Text
**OBJECT Get keyboard layout** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Text | ← | Code de la langue de configuration , "" = pas de configuration |
@@ -32,6 +32,6 @@ La commande retourne une chaîne indiquant le code de langue utilisé, basé sur
| | |
| --- | --- |
| Numéro de commande | 1180 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
index 6f32b46d047294..849f246b18d715 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-name
displayed_sidebar: docs
---
-**OBJECT Get list name** ( {* ;} *objet* {; *typeListe*} ) : Text
+**OBJECT Get list name** ( * ; *objet* : Text {; *typeListe* : Integer} ) : Text
**OBJECT Get list name** ( *objet* : Field, Variable {; *typeListe* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
| Résultat | Text | ← | Nom de l’énumération (définie en mode Développement) |
@@ -42,6 +42,6 @@ Si aucune liste du type défini n’est associée à l’*objet*, la commande re
| | |
| --- | --- |
| Numéro de commande | 1072 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
index 89277de4cd0159..47e740f385a66f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-reference
displayed_sidebar: docs
---
-**OBJECT Get list reference** ( {* ;} *objet* {; *typeListe*} ) : Integer
+**OBJECT Get list reference** ( * ; *objet* : Text {; *typeListe* : Integer} ) : Integer
**OBJECT Get list reference** ( *objet* : Field, Variable {; *typeListe* : Integer} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
| Résultat | Integer | ← | Numéro de référence de la liste |
@@ -42,6 +42,6 @@ Si aucune liste hiérarchique n’est associée à l’objet pour le *typeListe*
| | |
| --- | --- |
| Numéro de commande | 1267 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
index b6582037e63aca..0eba91bfeaa3e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-maximum-value
displayed_sidebar: docs
---
-**OBJECT GET MAXIMUM VALUE** ( {* ;} *objet* ; *valeurMaxi* )
+**OBJECT GET MAXIMUM VALUE** ( * ; *objet* : Text ; *valeurMaxi* : Date, Time, Real )
**OBJECT GET MAXIMUM VALUE** ( *objet* : Field, Variable ; *valeurMaxi* : Date, Time, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| valeurMaxi | Date, Time, Number | ← | Valeur maximale actuelle de l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| valeurMaxi | Date, Time, Real | ← | Valeur maximale actuelle de l’objet |
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1245 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
index a2b378e95a7250..482c4c3a840b13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-minimum-value
displayed_sidebar: docs
---
-**OBJECT GET MINIMUM VALUE** ( {* ;} *objet* ; *valeurMini* )
+**OBJECT GET MINIMUM VALUE** ( * ; *objet* : Text ; *valeurMini* : Date, Time, Real )
**OBJECT GET MINIMUM VALUE** ( *objet* : Field, Variable ; *valeurMini* : Date, Time, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| valeurMini | Date, Time, Number | ← | Valeur minimale actuelle de l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| valeurMini | Date, Time, Real | ← | Valeur minimale actuelle de l’objet |
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1243 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
index 12ab1f52932063..7668f39a4895ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-multiline
displayed_sidebar: docs
---
-**OBJECT Get multiline** ( {* ;} *objet* ) : Integer
+**OBJECT Get multiline** ( * ; *objet* : Text ) : Integer
**OBJECT Get multiline** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Integer | ← | Statut multiligne de l’objet |
@@ -42,6 +42,6 @@ La valeur retournée correspond à l’une des constantes suivantes du thème "*
| | |
| --- | --- |
| Numéro de commande | 1254 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
index 8c8806ae1ce87f..4c8eba5174dc02 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-name
displayed_sidebar: docs
---
-**OBJECT Get name** {( *sélecteur* )} : Text
+**OBJECT Get name** ( *sélecteur* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Catégorie d’objet |
+| sélecteur | Integer | → | Catégorie d’objet |
| Résultat | Text | ← | Nom de l’objet |
@@ -44,6 +44,6 @@ Après l’exécution de cette méthode objet, la variable *$nomBtn* contient la
| | |
| --- | --- |
| Numéro de commande | 1087 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
index ae637c0b138483..c0b39e7b99f94b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-placeholder
displayed_sidebar: docs
---
-**OBJECT Get placeholder** ( {* ;} *objet* ) : Text
+**OBJECT Get placeholder** ( * ; *objet* : Text ) : Text
**OBJECT Get placeholder** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Text | ← | Texte d’exemple associé à l’objet |
@@ -42,6 +42,6 @@ Vous souhaitez lire le texte exemple d’un champ :
| | |
| --- | --- |
| Numéro de commande | 1296 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
index 05eb9ebbf9387d..dcb12559ab4b59 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-pointer
displayed_sidebar: docs
---
-**OBJECT Get pointer** {( *sélecteur* {; *nomObjet* {; *nomSousFormulaire*}})} : Pointer
+**OBJECT Get pointer** ( *sélecteur* : Integer {; *nomObjet* : Text {; *nomSousFormulaire* : Text}}) : Pointer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Catégorie d’objet |
-| nomObjet | Text | → | Nom d'objet |
-| nomSousFormulaire | Text | → | Nom d'objet sous-formulaire |
+| sélecteur | Integer | → | Catégorie d’objet |
+| nomObjet | Text | → | Nom d'objet |
+| nomSousFormulaire | Text | → | Nom d'objet sous-formulaire |
| Résultat | Pointer | ← | Pointeur sur la variable de l’objet |
@@ -59,6 +59,6 @@ Soit un formulaire "SF" utilisé deux fois comme sous-formulaire dans le même f
| | |
| --- | --- |
| Numéro de commande | 1124 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
index d5e4577b193bbe..626815e8a8c8df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT GET PRINT VARIABLE FRAME** ( {* ;} *objet* ; *tailleVariable* {; *fixeSousForm*} )
+**OBJECT GET PRINT VARIABLE FRAME** ( * ; *objet* : Text ; *tailleVariable* : Boolean {; *fixeSousForm* : Integer} )
**OBJECT GET PRINT VARIABLE FRAME** ( *objet* : Field, Variable ; *tailleVariable* : Boolean {; *fixeSousForm* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| tailleVariable | Boolean | ← | Vrai = Impression taille variable, Faux = Impression taille fixe |
| fixeSousForm | Integer | ← | Option d’impression en taille fixe des sous-formulaires |
@@ -42,6 +42,6 @@ Si l’*objet* est un sous-formulaire et si l’impression en taille variable es
| | |
| --- | --- |
| Numéro de commande | 1241 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
index 32a062a10dd553..853a7d40c69201 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-resizing-options
displayed_sidebar: docs
---
-**OBJECT GET RESIZING OPTIONS** ( {* ;} *objet* ; *horizontal* ; *vertical* )
+**OBJECT GET RESIZING OPTIONS** ( * ; *objet* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT GET RESIZING OPTIONS** ( *objet* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| horizontal | Integer | ← | Option de redimensionnement horizontal |
| vertical | Integer | ← | Option de redimensionnement vertical |
@@ -49,6 +49,6 @@ Le paramètre *vertical* retourne une valeur indiquant l’option de redimension
| | |
| --- | --- |
| Numéro de commande | 1176 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
index 860314fdb94667..334af0eb435eb4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-rgb-colors
displayed_sidebar: docs
---
-**OBJECT GET RGB COLORS** ( {* ;} *objet* ; *couleurAvantPlan* {; *couleurArrièrePlan* {; *couleurArrièrePlanAlt*}} )
+**OBJECT GET RGB COLORS** ( * ; *objet* : Text ; *couleurAvantPlan* : Text, Integer {; *couleurArrièrePlan* : Text, Integer {; *couleurArrièrePlanAlt* : Text, Integer}} )
**OBJECT GET RGB COLORS** ( *objet* : Field, Variable ; *couleurAvantPlan* : Text, Integer {; *couleurArrièrePlan* : Text, Integer {; *couleurArrièrePlanAlt* : Text, Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| couleurAvantPlan | Text, Integer | ← | Valeur de la couleur RVB d'avant-plan |
| couleurArrièrePlan | Text, Integer | ← | Valeur de la couleur RVB d'arrière-plan |
| couleurArrièrePlanAlt | Text, Integer | ← | Valeur de la couleur RVB d'arrière-plan alternée |
@@ -41,6 +41,6 @@ Pour plus d’informations sur le format des paramètres *couleurAvantPlan*, *co
| | |
| --- | --- |
| Numéro de commande | 1074 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
index 04479e9ea8aede..e6f0b034195615 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scroll-position
displayed_sidebar: docs
---
-**OBJECT GET SCROLL POSITION** ( {* ;} *objet* ; *positionLigne* {; *positionH*} )
+**OBJECT GET SCROLL POSITION** ( * ; *objet* : Text ; *positionLigne* : Integer {; *positionH* : Integer} )
**OBJECT GET SCROLL POSITION** ( *objet* : Field, Variable ; *positionLigne* : Integer {; *positionH* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| positionLigne | Integer | ← | Numéro de la première ligne affichée ou Défilement vertical en pixels (images) |
| positionH | Integer | ← | Numéro de la première colonne affichée (list box) ou
Défilement horizontal en pixels (images) |
@@ -37,6 +37,6 @@ Si *objet* désigne une image (variable ou champ), *positionLigne* retourne le d
| | |
| --- | --- |
| Numéro de commande | 1114 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
index 5066db6efc2b16..0246a780382caf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scrollbar
displayed_sidebar: docs
---
-**OBJECT GET SCROLLBAR** ( {* ;} *objet* ; *horizontale* ; *verticale* )
+**OBJECT GET SCROLLBAR** ( * ; *objet* : Text ; *horizontale* : Boolean, Integer ; *verticale* : Boolean, Integer )
**OBJECT GET SCROLLBAR** ( *objet* : Field, Variable ; *horizontale* : Boolean, Integer ; *verticale* : Boolean, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable ou champ (si * omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable ou champ (si * omis) |
| horizontale | Boolean, Integer | ← | Visibilité de la barre horizontale |
| verticale | Boolean, Integer | ← | Visibilité de la barre verticale |
@@ -51,6 +51,6 @@ Pour plus d'informations, reportez-vous à la description de la commande [OBJECT
| | |
| --- | --- |
| Numéro de commande | 1076 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
index 25378d2f397e6a..c0a61698750afa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-shortcut
displayed_sidebar: docs
---
-**OBJECT GET SHORTCUT** ( {* ;} *objet* ; *touche* ; *modifiers* )
+**OBJECT GET SHORTCUT** ( * ; *objet* : Text ; *touche* : Text ; *modifiers* : Integer )
**OBJECT GET SHORTCUT** ( *objet* : Field, Variable ; *touche* : Text ; *modifiers* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou
Variable (si * est omis) |
| touche | Text | ← | Touche associée à l’objet |
| modifiers | Integer | ← | Masque ou combinaison de masques de touche(s) de modification |
@@ -46,6 +46,6 @@ Si aucune touche de modification n’a été définie dans l’équivalent clavi
| | |
| --- | --- |
| Numéro de commande | 1186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
index 036ae0b3bdea23..471ec077e68370 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-style-sheet
displayed_sidebar: docs
---
-**OBJECT Get style sheet** ( {* ;} *objet* ) : Text
+**OBJECT Get style sheet** ( * ; *objet* : Text ) : Text
**OBJECT Get style sheet** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Text | ← | Nom de la feuille de style |
@@ -51,6 +51,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1258 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
index a388ec946860b8..e60c0079ec5b18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform-container-size
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM CONTAINER SIZE** ( *largeur* ; *hauteur* )
+**OBJECT GET SUBFORM CONTAINER SIZE** ( *largeur* : Integer ; *hauteur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -35,6 +35,6 @@ Cette commande est utile par exemple dans le cas où des objets du sous-formulai
| | |
| --- | --- |
| Numéro de commande | 1148 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
index c0783cc7c5a98b..7fa5547f1fc1d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
index 9c5e0b5d158ced..75c7ab465bf078 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-subform
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM** ( {* ;} *objet* ; *ptrTable* ; *sousFormDetail* {; *sousFormListe*} )
+**OBJECT GET SUBFORM** ( * ; *objet* : Text ; *ptrTable* : Table ; *sousFormDetail* : Text {; *sousFormListe* : Text} )
**OBJECT GET SUBFORM** ( *objet* : Field, Variable ; *ptrTable* : Table ; *sousFormDetail* : Text {; *sousFormListe* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| ptrTable | Table | ← | Pointeur vers la table du formulaire |
| sousFormDetail | Text | ← | Nom du formulaire détail du sous-formulaire |
| sousFormListe | Text | ← | Nom du formulaire liste du sous-formulaire (formulaire table) |
@@ -45,6 +45,6 @@ S’il n’y a pas de formulaire liste, une chaîne vide est retournée dans le
| | |
| --- | --- |
| Numéro de commande | 1139 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
index ce2eac4fd518c8..26a0f5b7304496 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-text-orientation
displayed_sidebar: docs
---
-**OBJECT Get text orientation** ( {* ;} *objet* ) : Integer
+**OBJECT Get text orientation** ( * ; *objet* : Text ) : Integer
**OBJECT Get text orientation** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Integer | ← | Angle de rotation du texte |
@@ -61,6 +61,6 @@ Si, à l’exécution du formulaire, vous appelez l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 1283 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
index 29a40e183cf999..c1653863bc7533 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT Get three states checkbox** ( {* ;} *objet* ) : Boolean
+**OBJECT Get three states checkbox** ( * ; *objet* : Text ) : Boolean
**OBJECT Get three states checkbox** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Boolean | ← | Vrai = case à cocher à trois états, Faux = case à cocher standard |
@@ -30,6 +30,6 @@ La propriété "Trois états" peut avoir été définie soit via la Liste des pr
| | |
| --- | --- |
| Numéro de commande | 1250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
index 12ec6756ece943..0e6d6de521a77c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-title
displayed_sidebar: docs
---
-**OBJECT Get title** ( {* ;} *objet* ) : Text
+**OBJECT Get title** ( * ; *objet* : Text ) : Text
**OBJECT Get title** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Text | ← | Libellé de l'objet |
@@ -38,6 +38,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1068 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
index 90d62431b522d8..68f78abfdcac45 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-type
displayed_sidebar: docs
---
-**OBJECT Get type** ( {* ;} *objet* ) : Integer
+**OBJECT Get type** ( * ; *objet* : Text ) : Integer
**OBJECT Get type** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Integer | ← | Type d’objet |
@@ -101,6 +101,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1300 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
index 7d1f720b76142c..08b99d9b7ee666 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-value
displayed_sidebar: docs
---
-**OBJECT Get value** ( *nomObjet* ) : any
+**OBJECT Get value** ( *nomObjet* : Text ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomObjet | Text | → | Nom de l'objet |
+| nomObjet | Text | → | Nom de l'objet |
| Résultat | any | ← | Valeur courante des sources de données de l'objet de formulaire |
@@ -44,6 +44,6 @@ Voir l'exemple de la commande [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Numéro de commande | 1743 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
index 73eb9c4ec91b8f..9c3bfca0c5b1b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT Get vertical alignment** ( {* ;} *objet* ) : Integer
+**OBJECT Get vertical alignment** ( * ; *objet* : Text ) : Integer
**OBJECT Get vertical alignment** ( *objet* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
| Résultat | Integer | ← | Type d’alignement |
@@ -48,6 +48,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
index 9572558049accc..f791aee8f42a5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-visible
displayed_sidebar: docs
---
-**OBJECT Get visible** ( {* ;} *objet* ) : Boolean
+**OBJECT Get visible** ( * ; *objet* : Text ) : Boolean
**OBJECT Get visible** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
| Résultat | Boolean | ← | Vrai = objet(s) visible(s), Faux sinon |
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1075 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
index 79163446a27c0c..276b80fbf0ed61 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
@@ -5,12 +5,12 @@ slug: /commands/object-is-styled-text
displayed_sidebar: docs
---
-**OBJECT Is styled text** ( {* ;} *objet* ) : Boolean
+**OBJECT Is styled text** ( * ; *objet* : Text ) : Boolean
**OBJECT Is styled text** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| Résultat | Boolean | ← | Vrai si l’objet est un texte en multistyle, Faux sinon |
@@ -48,6 +48,6 @@ Un formulaire comporte un champ représenté par deux objets différents, l’un
| | |
| --- | --- |
| Numéro de commande | 1261 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
index 37bcf365304c54..7125eab704ac35 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
@@ -5,17 +5,17 @@ slug: /commands/object-move
displayed_sidebar: docs
---
-**OBJECT MOVE** ( {* ;} *objet* ; *dépH* ; *dépV* {; *redimH* {; *redimV* {; *}}} )
+**OBJECT MOVE** ( * ; *objet* : Text ; *dépH* : Integer ; *dépV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
**OBJECT MOVE** ( *objet* : Field, Variable ; *dépH* : Integer ; *dépV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis) |
-| dépH | Integer | → | Valeur de déplacement horizontal de l’objet (>0 = vers la droite, <0 = vers la gauche) |
-| dépV | Integer | → | Valeur de déplacement vertical de l’objet (>0 = vers le bas, <0 = vers le haut) |
-| redimH | Integer | → | Valeur de redimensionnement horizontal de l’objet |
-| redimV | Integer | → | Valeur de redimensionnement vertical de l’objet |
-| * | Opérateur | → | Si spécifié = coordonnées absolues Si omis = coordonnées relatives |
+| * | Opérateur | → | Si spécifié = objet est un nom d’objet (chaîne) Si omis = objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| dépH | Integer | → | Valeur de déplacement horizontal de l’objet (>0 = vers la droite, <0 = vers la gauche) |
+| dépV | Integer | → | Valeur de déplacement vertical de l’objet (>0 = vers le bas, <0 = vers le haut) |
+| redimH | Integer | → | Valeur de redimensionnement horizontal de l’objet |
+| redimV | Integer | → | Valeur de redimensionnement vertical de l’objet |
+| * | Opérateur | → | Si spécifié = coordonnées absolues Si omis = coordonnées relatives |
@@ -67,6 +67,6 @@ L’instruction suivante place le bouton “Bouton\_1” aux coordonnées (10;20
| | |
| --- | --- |
| Numéro de commande | 664 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
index 8a213b0bf2095e..4bc3c34757745a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-action
displayed_sidebar: docs
---
-**OBJECT SET ACTION** ( {* ;} *objet* ; *action* )
+**OBJECT SET ACTION** ( * ; *objet* : Text ; *action* : Text )
**OBJECT SET ACTION** ( *objet* : Field, Variable ; *action* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| action | Text | → | Nom d'action à associer (avec paramètre si nécessaire) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| action | Text | → | Nom d'action à associer (avec paramètre si nécessaire) |
@@ -44,6 +44,6 @@ Vous souhaitez associer l’action standard de validation à un bouton :
| | |
| --- | --- |
| Numéro de commande | 1259 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
index 8dd024d7d9222c..67d7d62e8a71fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT SET AUTO SPELLCHECK** ( {* ;} *objet* ; *correctionAuto* )
+**OBJECT SET AUTO SPELLCHECK** ( * ; *objet* : Text ; *correctionAuto* : Boolean )
**OBJECT SET AUTO SPELLCHECK** ( *objet* : Field, Variable ; *correctionAuto* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| correctionAuto | Boolean | → | Vrai = correction automatique, Faux = pas de correction automatique |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| correctionAuto | Boolean | → | Vrai = correction automatique, Faux = pas de correction automatique |
@@ -37,6 +37,6 @@ Passez **Vrai** dans *correctionAuto* pour activer la correction automatique pou
| | |
| --- | --- |
| Numéro de commande | 1173 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
index 59cda836623b7f..3a100a49a1cc32 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-border-style
displayed_sidebar: docs
---
-**OBJECT SET BORDER STYLE** ( {* ;} *objet* ; *styleBordure* )
+**OBJECT SET BORDER STYLE** ( * ; *objet* : Text ; *styleBordure* : Integer )
**OBJECT SET BORDER STYLE** ( *objet* : Field, Variable ; *styleBordure* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| styleBordure | Integer | → | Style de la ligne de bordure |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| styleBordure | Integer | → | Style de la ligne de bordure |
@@ -44,6 +44,6 @@ Passez dans le paramètre *styleBordure* la valeur de style de ligne que vous so
| | |
| --- | --- |
| Numéro de commande | 1262 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
index 80a6af669b987c..6c5fcbe0058691 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-context-menu
displayed_sidebar: docs
---
-**OBJECT SET CONTEXT MENU** ( {* ;} *objet* ; *menuContext* )
+**OBJECT SET CONTEXT MENU** ( * ; *objet* : Text ; *menuContext* : Boolean )
**OBJECT SET CONTEXT MENU** ( *objet* : Field, Variable ; *menuContext* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| menuContext | Boolean | → | Vrai = activer menu contextuel, Faux = désactiver menu contextuel |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| menuContext | Boolean | → | Vrai = activer menu contextuel, Faux = désactiver menu contextuel |
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *menuContext* pour activer le menu contextuel
| | |
| --- | --- |
| Numéro de commande | 1251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
index ec071fd1c5dd2d..bf182df5877377 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-coordinates
displayed_sidebar: docs
---
-**OBJECT SET COORDINATES** ( {* ;} *objet* ; *gauche* ; *haut* {; *droite* ; *bas*} )
+**OBJECT SET COORDINATES** ( {* ;} *objet* : Integer ; *gauche* : Integer ; *haut* : Integer {; *droite* : Integer ; *bas* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | Integer | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| gauche | Integer | → | Coordonnée gauche de l’objet en pixels |
-| haut | Integer | → | Coordonnée supérieure de l’objet en pixels |
-| droite | Integer | → | Coordonnée droite de l’objet en pixels |
-| bas | Integer | → | Coordonnée inférieure de l’objet en pixels |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | Integer | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| gauche | Integer | → | Coordonnée gauche de l’objet en pixels |
+| haut | Integer | → | Coordonnée supérieure de l’objet en pixels |
+| droite | Integer | → | Coordonnée droite de l’objet en pixels |
+| bas | Integer | → | Coordonnée inférieure de l’objet en pixels |
@@ -60,6 +60,6 @@ L’instruction suivante place l’objet "bouton\_1" aux coordonnées (10,20) (3
| | |
| --- | --- |
| Numéro de commande | 1248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
index fb1da3dff2e33b..0a28cb4fdf0b83 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-corner-radius
displayed_sidebar: docs
---
-**OBJECT SET CORNER RADIUS** ( {* ;} *objet* ; *rayon* )
+**OBJECT SET CORNER RADIUS** ( * ; *objet* : Text ; *rayon* : Integer )
**OBJECT SET CORNER RADIUS** ( *objet* : Field, Variable ; *rayon* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
-| rayon | Integer | → | Nouveau rayon des angles arrondis (en pixels) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| rayon | Integer | → | Nouveau rayon des angles arrondis (en pixels) |
@@ -72,6 +72,6 @@ Notez que pour les zones de texte (ainsi que pour les zones de saisie), contrair
| | |
| --- | --- |
| Numéro de commande | 1323 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
index 2e6352559ec654..27da8e6356976a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-data-source
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE** ( {* ;} *objet* ; *sourceDonnées* )
+**OBJECT SET DATA SOURCE** ( * ; *objet* : Text ; *sourceDonnées* : Pointer )
**OBJECT SET DATA SOURCE** ( *objet* : Field, Variable ; *sourceDonnées* : Pointer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| sourceDonnées | Pointer | → | Pointeur vers la nouvelle source de données de l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| sourceDonnées | Pointer | → | Pointeur vers la nouvelle source de données de l’objet |
@@ -55,6 +55,6 @@ Modification de la source de données d’une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1264 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
index 110e884e71381e..89bb622e881d41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT SET DRAG AND DROP OPTIONS** ( {* ;} *objet* ; *glissable* ; *glissableAuto* ; *déposable* ; *déposableAuto* )
+**OBJECT SET DRAG AND DROP OPTIONS** ( * ; *objet* : Text ; *glissable* : Boolean ; *glissableAuto* : Boolean ; *déposable* : Boolean ; *déposableAuto* : Boolean )
**OBJECT SET DRAG AND DROP OPTIONS** ( *objet* : Field, Variable ; *glissable* : Boolean ; *glissableAuto* : Boolean ; *déposable* : Boolean ; *déposableAuto* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| glissable | Boolean | → | Glissable = Vrai, sinon Faux |
-| glissableAuto | Boolean | → | Glisser automatique = Vrai, sinon Faux |
-| déposable | Boolean | → | Déposable = Vrai, sinon Faux |
-| déposableAuto | Boolean | → | Déposer automatique = Vrai, sinon Faux |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| glissable | Boolean | → | Glissable = Vrai, sinon Faux |
+| glissableAuto | Boolean | → | Glisser automatique = Vrai, sinon Faux |
+| déposable | Boolean | → | Déposable = Vrai, sinon Faux |
+| déposableAuto | Boolean | → | Déposer automatique = Vrai, sinon Faux |
@@ -48,6 +48,6 @@ Définition d’une zone de texte en glisser-déposer auto :
| | |
| --- | --- |
| Numéro de commande | 1183 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
index a49a2968dee763..34afbfeca29bd1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enabled
displayed_sidebar: docs
---
-**OBJECT SET ENABLED** ( {* ;} *objet* ; *actif* )
+**OBJECT SET ENABLED** ( * ; *objet* : Text ; *actif* : Boolean )
**OBJECT SET ENABLED** ( *objet* : Field, Variable ; *actif* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| actif | Boolean | → | Vrai = objet(s) activé(s), Faux sinon |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| actif | Boolean | → | Vrai = objet(s) activé(s), Faux sinon |
@@ -44,6 +44,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1123 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
index bcf496faf1f5d8..5fef5469681e74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enterable
displayed_sidebar: docs
---
-**OBJECT SET ENTERABLE** ( {* ;} *objet* ; *saisissable* )
+**OBJECT SET ENTERABLE** ( * ; *objet* : Text ; *saisissable* : Boolean, Integer )
**OBJECT SET ENTERABLE** ( *objet* : Field, Variable ; *saisissable* : Boolean, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une table, un champ ou une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Table ou Champ ou Variable (si * omis) |
-| saisissable | Boolean, Integer | → | Booléen : Vrai=saisissable, Faux=non saisissable
Entier long : 0=non saisissable, 1=saisissable, 2=non saisissable non focusable |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une table, un champ ou une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Table ou Champ ou Variable (si * omis) |
+| saisissable | Boolean, Integer | → | Booléen : Vrai=saisissable, Faux=non saisissable
Entier long : 0=non saisissable, 1=saisissable, 2=non saisissable non focusable |
@@ -78,6 +78,6 @@ Voici la méthode objet d’une case à cocher placée dans l’en-tête d’une
| | |
| --- | --- |
| Numéro de commande | 238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
index 002594cc9af2cb..a1a708d36eed93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-events
displayed_sidebar: docs
---
-**OBJECT SET EVENTS** ( {* ;} *objet* ; *tabEvénements* ; *mode* )
+**OBJECT SET EVENTS** ( * ; *objet* : Text ; *tabEvénements* : Integer array ; *mode* : Integer )
**OBJECT SET EVENTS** ( *objet* : Field, Variable ; *tabEvénements* : Integer array ; *mode* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet ou "" pour désigner le formulaire (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| tabEvénements | Integer array | → | Tableau d’événements à définir |
-| mode | Integer | → | Mode d’activation des événements définis dans tabEvénements |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet ou "" pour désigner le formulaire (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| tabEvénements | Integer array | → | Tableau d’événements à définir |
+| mode | Integer | → | Mode d’activation des événements définis dans tabEvénements |
@@ -169,6 +169,6 @@ Désactivation d’un seul événement du formulaire sans modifier les autres :
| | |
| --- | --- |
| Numéro de commande | 1239 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
index bd1dc626e9151e..d9868e188e34de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-filter
displayed_sidebar: docs
---
-**OBJECT SET FILTER** ( {* ;} *objet* ; *filtreSaisie* )
+**OBJECT SET FILTER** ( * ; *objet* : Text ; *filtreSaisie* : Text )
**OBJECT SET FILTER** ( *objet* : Field, Variable ; *filtreSaisie* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| filtreSaisie | Text | → | Nouveau filtre de saisie pour la zone saisissable |
+| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| filtreSaisie | Text | → | Nouveau filtre de saisie pour la zone saisissable |
@@ -61,6 +61,6 @@ L'exemple suivant autorise uniquement la saisie des lettres “a”, “b”,
| | |
| --- | --- |
| Numéro de commande | 235 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
index bc15fa50714db4..9dd7c35c6d77b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( {* ;} *objet* ; *invisible* )
+**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( * ; *objet* : Text ; *invisible* : Boolean )
**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( *objet* : Field, Variable ; *invisible* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| invisible | Boolean | → | Vrai = rectangle focus caché, Faux = rectangle focus visible |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| invisible | Boolean | → | Vrai = rectangle focus caché, Faux = rectangle focus visible |
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *invisible* pour cacher le rectangle de focus
| | |
| --- | --- |
| Numéro de commande | 1177 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
index 3d9b9442988132..253bf5802a3efa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-size
displayed_sidebar: docs
---
-**OBJECT SET FONT SIZE** ( {* ;} *objet* ; *taille* )
+**OBJECT SET FONT SIZE** ( * ; *objet* : Text ; *taille* : Integer )
**OBJECT SET FONT SIZE** ( *objet* : Field, Variable ; *taille* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
-| taille | Integer | → | Taille de police en points |
+| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| taille | Integer | → | Taille de police en points |
@@ -55,6 +55,6 @@ L'exemple suivant définit la taille de police de tous les objets de formulaire
| | |
| --- | --- |
| Numéro de commande | 165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
index 4a727c03fe9957..a3c828d9c617fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-style
displayed_sidebar: docs
---
-**OBJECT SET FONT STYLE** ( {* ;} *objet* ; *style* )
+**OBJECT SET FONT STYLE** ( * ; *objet* : Text ; *style* : Integer )
**OBJECT SET FONT STYLE** ( *objet* : Field, Variable ; *style* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
-| style | Integer | → | Style de police |
+| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou variable (si * est omis) |
+| style | Integer | → | Style de police |
@@ -61,6 +61,6 @@ L'exemple suivant définit le style de police Normal pour tous les objets de for
| | |
| --- | --- |
| Numéro de commande | 166 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
index 49af2ace0a04e9..53dc0cd68bc246 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font
displayed_sidebar: docs
---
-**OBJECT SET FONT** ( {* ;} *objet* ; *police* )
+**OBJECT SET FONT** ( * ; *objet* : Text ; *police* : Text )
**OBJECT SET FONT** ( *objet* : Field, Variable ; *police* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| police | Text | → | Nom de police de caractères |
+| * | Opérateur | → | Si spécifié = objet est un nom d'objet (chaîne) Si omis = objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| police | Text | → | Nom de police de caractères |
@@ -66,6 +66,6 @@ L'exemple suivant utilise l'option spéciale *%password*, destinée à la saisie
| | |
| --- | --- |
| Numéro de commande | 164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
index 0b1a8753852cf7..e3a961c91cf17b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-format
displayed_sidebar: docs
---
-**OBJECT SET FORMAT** ( {* ;} *objet* ; *formatAffich* )
+**OBJECT SET FORMAT** ( * ; *objet* : Text ; *formatAffich* : Text )
**OBJECT SET FORMAT** ( *objet* : Field, Variable ; *formatAffich* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| formatAffich | Text | → | Nouveau format d'affichage de l'objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| formatAffich | Text | → | Nouveau format d'affichage de l'objet |
@@ -364,6 +364,6 @@ Passage d'un thermomètre en mode "Barber shop" :
| | |
| --- | --- |
| Numéro de commande | 236 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
index 322341d9b9367e..36c5f3da672c27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-help-tip
displayed_sidebar: docs
---
-**OBJECT SET HELP TIP** ( {* ;} *objet* ; *messageAide* )
+**OBJECT SET HELP TIP** ( * ; *objet* : Text ; *messageAide* : Text )
**OBJECT SET HELP TIP** ( *objet* : Field, Variable ; *messageAide* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| messageAide | Text | → | Contenu du message d’aide |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| messageAide | Text | → | Contenu du message d’aide |
@@ -129,6 +129,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1181 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
index 5d0cb042cc7ea7..77779a7811e668 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT SET HORIZONTAL ALIGNMENT** ( {* ;} *objet* ; *alignement* )
+**OBJECT SET HORIZONTAL ALIGNMENT** ( * ; *objet* : Text ; *alignement* : Integer )
**OBJECT SET HORIZONTAL ALIGNMENT** ( *objet* : Field, Variable ; *alignement* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d’objet (si * est passé) ou Champ ou variable (si * est omis) |
-| alignement | Integer | → | Code d’alignement |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d’objet (si * est passé) ou Champ ou variable (si * est omis) |
+| alignement | Integer | → | Code d’alignement |
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels vous pouvez appliquer cette commande sont les
| | |
| --- | --- |
| Numéro de commande | 706 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
index 546803e762f527..095d8ff1edf5b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-indicator-type
displayed_sidebar: docs
---
-**OBJECT SET INDICATOR TYPE** ( {* ;} *objet* ; *indicateur* )
+**OBJECT SET INDICATOR TYPE** ( * ; *objet* : Text ; *indicateur* : Integer )
**OBJECT SET INDICATOR TYPE** ( *objet* : Field, Variable ; *indicateur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| indicateur | Integer | → | Type d’indicateur |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| indicateur | Integer | → | Type d’indicateur |
@@ -40,6 +40,6 @@ Passez dans le paramètre *indicateur* le type d’indicateur à afficher. Vous
| | |
| --- | --- |
| Numéro de commande | 1246 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
index 8b0e51adefe820..512ce10a33d438 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT SET KEYBOARD LAYOUT** ( {* ;} *objet* ; *codeLangue* )
+**OBJECT SET KEYBOARD LAYOUT** ( * ; *objet* : Text ; *codeLangue* : Text )
**OBJECT SET KEYBOARD LAYOUT** ( *objet* : Field, Variable ; *codeLangue* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable ou champ (si * est omis) |
-| codeLangue | Text | → | Code de langue RFC3066 ISO639 et ISO3166, "" = pas de changement |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable ou champ (si * est omis) |
+| codeLangue | Text | → | Code de langue RFC3066 ISO639 et ISO3166, "" = pas de changement |
@@ -32,6 +32,6 @@ Passez dans le paramètre *codeLangue* une chaîne indiquant le code de langue
| | |
| --- | --- |
| Numéro de commande | 1179 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
index 9788207d368883..2e48e66b1c40f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-name
displayed_sidebar: docs
---
-**OBJECT SET LIST BY NAME** ( {* ;} *objet* {; *typeListe*}; énumération )
+**OBJECT SET LIST BY NAME** ( * ; *objet* : Text {; *typeListe* : Integer}; énumération )
**OBJECT SET LIST BY NAME** ( *objet* : Field, Variable {; *typeListe* : Integer}; énumération )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
-| énumération | Text | → | Nom de l'énumération (définie en mode Développement) ou "" pour dissocier l’énumération |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
+| énumération | Text | → | Nom de l'énumération (définie en mode Développement) ou "" pour dissocier l’énumération |
@@ -95,6 +95,6 @@ Vous souhaitez supprimer des associations de listes :
| | |
| --- | --- |
| Numéro de commande | 237 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
index f70fd6b911825a..18cf3b79de115d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-reference
displayed_sidebar: docs
---
-**OBJECT SET LIST BY REFERENCE** ( {* ;} *objet* {; *typeListe*}; *liste* )
+**OBJECT SET LIST BY REFERENCE** ( * ; *objet* : Text {; *typeListe* : Integer}; *liste* : Integer )
**OBJECT SET LIST BY REFERENCE** ( *objet* : Field, Variable {; *typeListe* : Integer}; *liste* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
-| liste | Integer | → | Numéro de référence de liste |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| typeListe | Integer | → | Type de liste : Liste énumération, Liste obligations ou Liste exclusions |
+| liste | Integer | → | Numéro de référence de liste |
@@ -133,6 +133,6 @@ Pour pouvoir mettre à jour la liste associée au pop up géré par tableau, il
| | |
| --- | --- |
| Numéro de commande | 1266 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
index 1f0c58d2ad8e60..3e352c66e1d203 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-maximum-value
displayed_sidebar: docs
---
-**OBJECT SET MAXIMUM VALUE** ( {* ;} *objet* ; *valeurMaxi* )
+**OBJECT SET MAXIMUM VALUE** ( * ; *objet* : Text ; *valeurMaxi* : Date, Time, Real )
**OBJECT SET MAXIMUM VALUE** ( *objet* : Field, Variable ; *valeurMaxi* : Date, Time, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| valeurMaxi | Date, Time, Number | → | Valeur maximale pour l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| valeurMaxi | Date, Time, Real | → | Valeur maximale pour l’objet |
@@ -35,6 +35,6 @@ Passez dans *valeurMaxi* la nouvelle valeur maximum à affecter à l’*objet* p
| | |
| --- | --- |
| Numéro de commande | 1244 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
index 74ca19d0e21425..120ad22de65b42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-minimum-value
displayed_sidebar: docs
---
-**OBJECT SET MINIMUM VALUE** ( {* ;} *objet* ; *valeurMini* )
+**OBJECT SET MINIMUM VALUE** ( * ; *objet* : Text ; *valeurMini* : Date, Time, Real )
**OBJECT SET MINIMUM VALUE** ( *objet* : Field, Variable ; *valeurMini* : Date, Time, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| valeurMini | Date, Time, Number | → | Valeur minimale pour l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| valeurMini | Date, Time, Real | → | Valeur minimale pour l’objet |
@@ -35,6 +35,6 @@ Passez dans *valeurMini* la nouvelle valeur minimum à affecter à l’objet pou
| | |
| --- | --- |
| Numéro de commande | 1242 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
index 2d5502be59915f..64219e68ad1d07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-multiline
displayed_sidebar: docs
---
-**OBJECT SET MULTILINE** ( {* ;} *objet* ; *multiLigne* )
+**OBJECT SET MULTILINE** ( * ; *objet* : Text ; *multiLigne* : Integer )
**OBJECT SET MULTILINE** ( *objet* : Field, Variable ; *multiLigne* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| multiLigne | Integer | → | Statut de la propriété multiligne |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| multiLigne | Integer | → | Statut de la propriété multiligne |
@@ -49,6 +49,6 @@ Vous souhaitez interdire le multiligne dans une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1253 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
index 6bb9e852657c39..ac3614dae01d68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-placeholder
displayed_sidebar: docs
---
-**OBJECT SET PLACEHOLDER** ( {* ;} *objet* ; *texteExemple* )
+**OBJECT SET PLACEHOLDER** ( * ; *objet* : Text ; *texteExemple* : Text )
**OBJECT SET PLACEHOLDER** ( *objet* : Field, Variable ; *texteExemple* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| texteExemple | Text | → | Texte d’exemple associé à l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| texteExemple | Text | → | Texte d’exemple associé à l’objet |
@@ -50,6 +50,6 @@ Vous souhaitez afficher le texte exemple "Recherche" dans une combo box :
| | |
| --- | --- |
| Numéro de commande | 1295 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
index dc0c457307c089..eb7003c73ba08f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT SET PRINT VARIABLE FRAME** ( {* ;} *objet* ; *tailleVariable* {; *fixeSousForm*} )
+**OBJECT SET PRINT VARIABLE FRAME** ( * ; *objet* : Text ; *tailleVariable* : Boolean {; *fixeSousForm* : Integer} )
**OBJECT SET PRINT VARIABLE FRAME** ( *objet* : Field, Variable ; *tailleVariable* : Boolean {; *fixeSousForm* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| tailleVariable | Boolean | → | Vrai = Impression taille variable, Faux = Impression taille fixe |
-| fixeSousForm | Integer | → | Options d’impression en taille fixe des sous-formulaires |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| tailleVariable | Boolean | → | Vrai = Impression taille variable, Faux = Impression taille fixe |
+| fixeSousForm | Integer | → | Options d’impression en taille fixe des sous-formulaires |
@@ -48,6 +48,6 @@ Le paramètre optionnel *fixeSousForm* vous permet de définir une option suppl
| | |
| --- | --- |
| Numéro de commande | 1240 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
index 2d81f4aa0bca76..78368f5ebd127c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-resizing-options
displayed_sidebar: docs
---
-**OBJECT SET RESIZING OPTIONS** ( {* ;} *objet* ; *horizontal* ; *vertical* )
+**OBJECT SET RESIZING OPTIONS** ( * ; *objet* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT SET RESIZING OPTIONS** ( *objet* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| horizontal | Integer | → | Option de redimensionnement horizontal |
-| vertical | Integer | → | Option de redimensionnement vertical |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| horizontal | Integer | → | Option de redimensionnement horizontal |
+| vertical | Integer | → | Option de redimensionnement vertical |
@@ -47,6 +47,6 @@ Passez dans le paramètre *vertical* une valeur indiquant l’option de redimens
| | |
| --- | --- |
| Numéro de commande | 1175 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
index de02e7279f9372..b390ed6b2e5d7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-rgb-colors
displayed_sidebar: docs
---
-**OBJECT SET RGB COLORS** ( {* ;} *objet* ; *couleurAvantPlan* {; *couleurArrièrePlan* {; *couleurArrièrePlanAlt*}} )
+**OBJECT SET RGB COLORS** ( * ; *objet* : Text ; *couleurAvantPlan* : Text, Integer {; *couleurArrièrePlan* : Text, Integer {; *couleurArrièrePlanAlt* : Text, Integer}} )
**OBJECT SET RGB COLORS** ( *objet* : Field, Variable ; *couleurAvantPlan* : Text, Integer {; *couleurArrièrePlan* : Text, Integer {; *couleurArrièrePlanAlt* : Text, Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou Variable (si * est omis) |
-| couleurAvantPlan | Text, Integer | → | Valeur de la couleur RVB d'avant-plan |
-| couleurArrièrePlan | Text, Integer | → | Valeur de la couleur RVB d'arrière-plan |
-| couleurArrièrePlanAlt | Text, Integer | → | Valeur de la couleur RVB d'arrière-plan alternée |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Champ ou Variable (si * est omis) |
+| couleurAvantPlan | Text, Integer | → | Valeur de la couleur RVB d'avant-plan |
+| couleurArrièrePlan | Text, Integer | → | Valeur de la couleur RVB d'arrière-plan |
+| couleurArrièrePlanAlt | Text, Integer | → | Valeur de la couleur RVB d'arrière-plan alternée |
@@ -110,6 +110,6 @@ Passage du fond en transparent avec couleur de police claire :
| | |
| --- | --- |
| Numéro de commande | 628 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
index 07056c0204523c..67c2e20e6e4802 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-scroll-position
displayed_sidebar: docs
---
-**OBJECT SET SCROLL POSITION** ( * ; *objet* {; *positionLigne* {; *positionH*}}{; *} )
+**OBJECT SET SCROLL POSITION** ( * ; *objet* : any {; *positionLigne* : Integer {; *positionH* : Integer}}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)Si omis, objet est une table, un champ ou une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Table, champ ou variable (si * est omis) |
-| positionLigne | Integer | → | Numéro de ligne à afficher ou Défilement vertical en pixels (images) |
-| positionH | Integer | → | Numéro de colonne à afficher (list box) ou
Défilement horizontal en pixels (images) |
-| * | Opérateur | → | Afficher la ligne (et la colonne si le paramètre positionH est passé) en première position après défilement (listes)Appliquer un défilement relatif (images) |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne)Si omis, objet est une table, un champ ou une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Table, champ ou variable (si * est omis) |
+| positionLigne | Integer | → | Numéro de ligne à afficher ou Défilement vertical en pixels (images) |
+| positionH | Integer | → | Numéro de colonne à afficher (list box) ou
Défilement horizontal en pixels (images) |
+| * | Opérateur | → | Afficher la ligne (et la colonne si le paramètre positionH est passé) en première position après défilement (listes)Appliquer un défilement relatif (images) |
@@ -96,6 +96,6 @@ Attention dans ce cas, si vous omettez le second paramètre \*, l'image ne défi
| | |
| --- | --- |
| Numéro de commande | 906 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
index b67c15b44ff6ee..f4fe643039f001 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-scrollbar
displayed_sidebar: docs
---
-**OBJECT SET SCROLLBAR** ( {* ;} *objet* ; *horizontal* ; *vertical* )
+**OBJECT SET SCROLLBAR** ( * ; *objet* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT SET SCROLLBAR** ( *objet* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
-| horizontal | Boolean, Integer | → | Visibilité de la barre horizontale |
-| vertical | Boolean, Integer | → | Visibilité de la barre verticale |
+| * | Opérateur | → | Si spécifié, objet est un nom d’objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d’objet (si * est spécifié) ou Variable (si * est omis) |
+| horizontal | Boolean, Integer | → | Visibilité de la barre horizontale |
+| vertical | Boolean, Integer | → | Visibilité de la barre verticale |
@@ -50,6 +50,6 @@ Le tableau suivant indique les valeurs que vous pouvez passer dans les paramètr
| | |
| --- | --- |
| Numéro de commande | 843 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
index e8ed210fee2b98..63116d8011124c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-shortcut
displayed_sidebar: docs
---
-**OBJECT SET SHORTCUT** ( {* ;} *objet* ; *touche* {; *modifiers*} )
+**OBJECT SET SHORTCUT** ( * ; *objet* : Text ; *touche* : Text {; *modifiers* : Integer} )
**OBJECT SET SHORTCUT** ( *objet* : Field, Variable ; *touche* : Text {; *modifiers* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| touche | Text | → | Touche à associer à l’objet |
-| modifiers | Integer | → | Masque ou combinaison de masques de touche(s) de modification |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| touche | Text | → | Touche à associer à l’objet |
+| modifiers | Integer | → | Masque ou combinaison de masques de touche(s) de modification |
@@ -95,6 +95,6 @@ Vous voulez associer un équivalent clavier différent en fonction de la langue
| | |
| --- | --- |
| Numéro de commande | 1185 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
index 869b0f72104320..02fd3587100c73 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-style-sheet
displayed_sidebar: docs
---
-**OBJECT SET STYLE SHEET** ( {* ;} *objet* ; *nomFeuilleStyle* )
+**OBJECT SET STYLE SHEET** ( * ; *objet* : Text ; *nomFeuilleStyle* : Text )
**OBJECT SET STYLE SHEET** ( *objet* : Field, Variable ; *nomFeuilleStyle* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| nomFeuilleStyle | Text | → | Nom de la feuille de style |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| nomFeuilleStyle | Text | → | Nom de la feuille de style |
@@ -53,6 +53,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1257 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
index dc9587f6e3f548..5ddbfdc19aa2f6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-set-subform-container-value
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* )
+**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* : any )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| value | any | → | New value for the data source |
+| value | any | → | New value for the data source |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1784 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
index 9c9f77ec8f026b..eb4f7309237ebf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-subform
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM** ( {* ;} *objet* {; *laTable*}; *sousFormDetail* {; *sousFormListe*} )
+**OBJECT SET SUBFORM** ( * ; *objet* : Text {; *laTable* : Table}; *sousFormDetail* : Text, Object {; *sousFormListe* : Text, Object} )
**OBJECT SET SUBFORM** ( *objet* : Field, Variable {; *laTable* : Table}; *sousFormDetail* : Text, Object {; *sousFormListe* : Text, Object} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| laTable | Table | → | Table du formulaire (si formulaire table) |
-| sousFormDetail | Text, Object | → | Nom (chaîne) du formulaire détail du sous-formulaire, ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire détail, ouObjet décrivant le formulaire détail |
-| sousFormListe | Text, Object | → | Nom (chaîne) du formulaire liste du sous-formulaire, ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire liste, ouObjet décrivant le formulaire liste (formulaire table) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| laTable | Table | → | Table du formulaire (si formulaire table) |
+| sousFormDetail | Text, Object | → | Nom (chaîne) du formulaire détail du sous-formulaire, ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire détail, ouObjet décrivant le formulaire détail |
+| sousFormListe | Text, Object | → | Nom (chaîne) du formulaire liste du sous-formulaire, ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire liste, ouObjet décrivant le formulaire liste (formulaire table) |
@@ -49,6 +49,6 @@ Lorsque vous modifiez un sous-formulaire en page, la commande peut être exécut
| | |
| --- | --- |
| Numéro de commande | 1138 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
index 103079391710ab..b45b0dfdd64ebb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-text-orientation
displayed_sidebar: docs
---
-**OBJECT SET TEXT ORIENTATION** ( {* ;} *objet* ; *orientation* )
+**OBJECT SET TEXT ORIENTATION** ( * ; *objet* : Text ; *orientation* : Integer )
**OBJECT SET TEXT ORIENTATION** ( *objet* : Field, Variable ; *orientation* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| orientation | Integer | → | Valeur d’orientation de l’objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| orientation | Integer | → | Valeur d’orientation de l’objet |
@@ -54,6 +54,6 @@ Vous souhaitez appliquer une orientation de 270° à une variable de votre formu
| | |
| --- | --- |
| Numéro de commande | 1284 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
index 51dfe5c02c6f8b..a8396d8d60d09c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT SET THREE STATES CHECKBOX** ( {* ;} *objet* ; *troisEtats* )
+**OBJECT SET THREE STATES CHECKBOX** ( * ; *objet* : Text ; *troisEtats* : Boolean )
**OBJECT SET THREE STATES CHECKBOX** ( *objet* : Field, Variable ; *troisEtats* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| troisEtats | Boolean | → | Vrai = case à cocher à trois états, Faux = case à cocher standard |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| troisEtats | Boolean | → | Vrai = case à cocher à trois états, Faux = case à cocher standard |
@@ -36,6 +36,6 @@ Passez **Vrai** dans le paramètre *troisEtat* pour activer le mode "trois état
| | |
| --- | --- |
| Numéro de commande | 1249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
index e43ed15404e243..64664b0ba86a90 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-title
displayed_sidebar: docs
---
-**OBJECT SET TITLE** ( {* ;} *objet* ; *libellé* )
+**OBJECT SET TITLE** ( * ; *objet* : Text ; *libellé* : Text )
**OBJECT SET TITLE** ( *objet* : Field, Variable ; *libellé* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| libellé | Text | → | Nouveau libellé de l'objet |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| libellé | Text | → | Nouveau libellé de l'objet |
@@ -77,6 +77,6 @@ Vous souhaitez insérer des libellés sur deux lignes :
| | |
| --- | --- |
| Numéro de commande | 194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
index d6f382847bf887..67532edbf14e56 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
@@ -5,12 +5,12 @@ slug: /commands/object-set-value
displayed_sidebar: docs
---
-**OBJECT SET VALUE** ( *nomObjet* ; *valeur* )
+**OBJECT SET VALUE** ( *nomObjet* : Text ; *valeur* : any )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomObjet | Text | → | Nom de l'objet |
-| valeur | any | → | Nouvelle valeur des sources de données de l'objet de formulaire |
+| nomObjet | Text | → | Nom de l'objet |
+| valeur | any | → | Nouvelle valeur des sources de données de l'objet de formulaire |
@@ -45,6 +45,6 @@ Vous souhaitez lire la valeur des sources de données d'un objet formulaire, lir
| | |
| --- | --- |
| Numéro de commande | 1742 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
index 670adbabc2b155..7ef11a44ff7682 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT SET VERTICAL ALIGNMENT** ( {* ;} *objet* ; *alignement* )
+**OBJECT SET VERTICAL ALIGNMENT** ( * ; *objet* : Text ; *alignement* : Integer )
**OBJECT SET VERTICAL ALIGNMENT** ( *objet* : Field, Variable ; *alignement* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
-| alignement | Integer | → | Code d’alignement |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable (si * est omis) |
+| alignement | Integer | → | Code d’alignement |
@@ -47,6 +47,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
index a0728e8d36ba07..22735a19d43f30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-visible
displayed_sidebar: docs
---
-**OBJECT SET VISIBLE** ( {* ;} *objet* ; *visible* )
+**OBJECT SET VISIBLE** ( * ; *objet* : Text ; *visible* : Boolean )
**OBJECT SET VISIBLE** ( *objet* : Field, Variable ; *visible* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est passé) ou Champ ou Variable (si * est omis) |
-| visible | Boolean | → | Vrai = visible, Faux = invisible |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est passé) ou Champ ou Variable (si * est omis) |
+| visible | Boolean | → | Vrai = visible, Faux = invisible |
@@ -63,6 +63,6 @@ ou ainsi :
| | |
| --- | --- |
| Numéro de commande | 603 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
index d1f5f306222dda..599e9acd901813 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
@@ -5,11 +5,11 @@ slug: /commands/object-to-path
displayed_sidebar: docs
---
-**Object to path** ( *objetChemin* ) : Text
+**Object to path** ( *objetChemin* : Object ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objetChemin | Object | → | Objet décrivant un contenu de chemin |
+| objetChemin | Object | → | Objet décrivant un contenu de chemin |
| Résultat | Text | ← | Chemin de fichier ou de dossier |
@@ -61,6 +61,6 @@ Nous voulons dupliquer et renommer un fichier dans son dossier actuel :
| | |
| --- | --- |
| Numéro de commande | 1548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
index 39d4b608db5649..53832615203baa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ recevant un lien |
+| leField | Field | → | Champ recevant un lien |
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 263 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
index c76a773035bb11..21ddd8a1dc4732 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ N |
+| leField | Field | → | Champ N |
@@ -37,7 +37,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 44 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md
index 9477343f363856..67eb1ad5f098fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/old.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ dont vous voulez obtenir l'ancienne valeur |
+| leField | Field | → | Champ dont vous voulez obtenir l'ancienne valeur |
| Résultat | any | ← | Valeur originale de champ |
@@ -48,6 +48,6 @@ Pour restaurer la valeur originale d'un champ, assignez-lui la valeur retournée
| | |
| --- | --- |
| Numéro de commande | 35 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
index 7f68f70f6b9fe1..e58df27e78342c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-err-call
displayed_sidebar: docs
---
-**ON ERR CALL** ( *méthodErreur* {; *portée*} )
+**ON ERR CALL** ( *méthodErreur* : Text {; *portée* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| méthodErreur | Text | → | Méthode de gestion d'erreur à appeler ou Chaîne vide pour désinstaller la méthode |
-| portée | Integer | → | Portée de la méthode de gestion d'erreur |
+| méthodErreur | Text | → | Méthode de gestion d'erreur à appeler ou Chaîne vide pour désinstaller la méthode |
+| portée | Integer | → | Portée de la méthode de gestion d'erreur |
@@ -185,6 +185,6 @@ La méthode de gestion d'erreurs suivante ignore les interruptions de l'utilisat
| | |
| --- | --- |
| Numéro de commande | 155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
index a57d4f292d0e53..e6f4e0fa134bab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-event-call
displayed_sidebar: docs
---
-**ON EVENT CALL** ( *méthodeEvén* {; *nomProcess*} )
+**ON EVENT CALL** ( *méthodeEvén* : Text {; *nomProcess* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| méthodeEvén | Text | → | Méthode d'événement à appeler ou Chaîne vide pour arrêter l'interception des événements |
-| nomProcess | Text | → | Nom de process |
+| méthodeEvén | Text | → | Méthode d'événement à appeler ou Chaîne vide pour arrêter l'interception des événements |
+| nomProcess | Text | → | Nom de process |
@@ -121,7 +121,7 @@ Lorsque vous imprimez un état à l'aide la commande [PRINT SELECTION](print-sel
| | |
| --- | --- |
| Numéro de commande | 190 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
index ab3e8c5d94f0a2..2450f15acaa68d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
@@ -114,6 +114,6 @@ L'exemple suivant illustre un cas typique où vous lancez un ou plusieurs proces
| | |
| --- | --- |
| Numéro de commande | 905252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
index 12dca05686ee0d..dceafa39adba79 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| mobileInfo | Object | → | Information passée par l'application mobile |
+| mobileInfo | Object | → | Information passée par l'application mobile |
| status | Object | ← | Statut de l'action & synchronisation des données |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
index 4f08ffbd48cf23..3452bedfe3f60d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
@@ -5,11 +5,11 @@ slug: /commands/on-mobile-app-authentication-database-method
displayed_sidebar: docs
---
-**On Mobile App Authentication database method** ( *mobileInfo* ; *status* )
+**On Mobile App Authentication database method** ( *mobileInfo* : Object ; *status* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| mobileInfo | Object | → | Information passée par l'application mobile |
+| mobileInfo | Object | → | Information passée par l'application mobile |
| status | Object | ← | Statut de l'authentification |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
index 8fee2a2733aed8..7b22329a4df906 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ L'[authentification Force login](../REST/authUsers.md) est désormais fortement
| | |
| --- | --- |
| Numéro de commande | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
index 09dd557d1de1c5..1d641e0cc4110e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ L’exemple suivant interdit toute nouvelle connexion entre 2 et 4 heures du mat
| | |
| --- | --- |
| Numéro de commande | 16001 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
index d80b5fcaa44080..2a88ea3d995b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
@@ -51,6 +51,6 @@ Reportez-vous à l'exemple de la section [On Exit database method](on-exit-datab
| | |
| --- | --- |
| Numéro de commande | 905263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
index dc5be7eeaddde1..cecbbe401957b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
@@ -5,11 +5,11 @@ slug: /commands/one-record-select
displayed_sidebar: docs
---
-**ONE RECORD SELECT** {( *laTable* )}
+**ONE RECORD SELECT** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle réduire la sélection à un enregistrement |
+| laTable | Table | → | Table de laquelle réduire la sélection à un enregistrement |
@@ -35,7 +35,7 @@ A l'origine, cette commande était utile pour "replacer" dans la sélection cour
| | |
| --- | --- |
| Numéro de commande | 189 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
index 4e814f73f733b5..27d8aeff5c71bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1047 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
index 8840e7c9b67823..341ce41b1baaf9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
@@ -5,11 +5,11 @@ slug: /commands/open-color-picker
displayed_sidebar: docs
---
-**OPEN COLOR PICKER** {( *texteOuFond* )}
+**OPEN COLOR PICKER** ({ *texteOuFond* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texteOuFond | Integer | → | 0 ou omis = couleur du texte, 1 = couleur du fond du texte |
+| texteOuFond | Integer | → | 0 ou omis = couleur du texte, 1 = couleur du fond du texte |
@@ -34,6 +34,6 @@ Si la couleur a été modifiée, l’événement formulaire On After Edit est g
| | |
| --- | --- |
| Numéro de commande | 1304 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
index b621aeef19b9c6..73ed3613f50351 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/open-data-file
displayed_sidebar: docs
---
-**OPEN DATA FILE** ( *cheminAccès* )
+**OPEN DATA FILE** ( *cheminAccès* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Nom ou chemin d’accès complet du fichier de données à ouvrir |
+| cheminAccès | Text | → | Nom ou chemin d’accès complet du fichier de données à ouvrir |
@@ -60,6 +60,6 @@ Dans le contexte du déploiement d'une application fusionnée, vous souhaitez ou
| | |
| --- | --- |
| Numéro de commande | 312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
index c12b2ad4dfa2aa..f0ebf157063c62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
@@ -5,11 +5,11 @@ slug: /commands/open-database
displayed_sidebar: docs
---
-**OPEN DATABASE** ( *cheminFichier* )
+**OPEN DATABASE** ( *cheminFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminFichier | Text | → | Nom ou chemin d'accès complet du fichier de base de données à ouvrir (.4db, .4dc, .4dbase ou .4dlink) |
+| cheminFichier | Text | → | Nom ou chemin d'accès complet du fichier de base de données à ouvrir (.4db, .4dc, .4dbase ou .4dlink) |
@@ -76,6 +76,6 @@ Vous souhaitez sélectionner un serveur au démarrage, à partir d'une applicati
| | |
| --- | --- |
| Numéro de commande | 1321 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
index f8fc63a8a18ba8..241bfc44f3712a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
@@ -5,13 +5,13 @@ slug: /commands/open-document
displayed_sidebar: docs
---
-**Open document** ( *nomFichier* {; *typeFichier*}{; *mode*} ) : Time
+**Open document** ( *nomFichier* : Text {; *typeFichier* : Text}{; *mode* : Integer} ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document ou Chaîne vide pour afficher la boîte de dialogue |
-| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
-| mode | Integer | → | Mode d’ouverture du document |
+| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document ou Chaîne vide pour afficher la boîte de dialogue |
+| typeFichier | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
+| mode | Integer | → | Mode d’ouverture du document |
| Résultat | Time | ← | Numéro de référence du document |
@@ -92,7 +92,7 @@ Si vous passez la valeur 3 dans *mode*, la fonction retourne ?00:00:00? (pas de
| | |
| --- | --- |
| Numéro de commande | 264 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
index d03dd2caaa31d9..72ee4dbc3f14bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Le code du bouton est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
index a4bef181438c16..d02cb98980b657 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
@@ -5,16 +5,16 @@ slug: /commands/open-form-window
displayed_sidebar: docs
---
-**Open form window** ( {*laTable* ;} *nomForm* {; *type* {; *posH* {; *posV* {; *}}}} ) : Integer
+**Open form window** ( {*laTable* : Table ;} *nomForm* : Text, Object {; *type* : Integer {; *posH* : Integer {; *posV* : Integer {; *}}}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table du formulaire ou Table par défaut si ce paramètre est omis |
-| nomForm | Text, Object | → | Nom du formulaire table ou projet (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
-| type | Integer | → | Type de la fenêtre |
-| posH | Integer | → | Position horizontale de la fenêtre |
-| posV | Integer | → | Position verticale de la fenêtre |
-| * | Opérateur | → | Conserver la position et la taille précédentes de la fenêtre |
+| laTable | Table | → | Table du formulaire ou Table par défaut si ce paramètre est omis |
+| nomForm | Text, Object | → | Nom du formulaire table ou projet (chaîne), ouChemin POSIX (chaîne) d'un fichier .json décrivant le formulaire, ouObjet décrivant le formulaire |
+| type | Integer | → | Type de la fenêtre |
+| posH | Integer | → | Position horizontale de la fenêtre |
+| posV | Integer | → | Position verticale de la fenêtre |
+| * | Opérateur | → | Conserver la position et la taille précédentes de la fenêtre |
| Résultat | Integer | ← | Numéro de référence de la fenêtre |
@@ -139,6 +139,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 675 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
index c65eaa8d6329fa..5dc6dee33bfb6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable système OK est définie sur 1 si la tâche d'impression a été ouv
| | |
| --- | --- |
| Numéro de commande | 995 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
index 9332849b2bd94c..c578d9b70bdea8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
@@ -5,12 +5,12 @@ slug: /commands/open-resource-file
displayed_sidebar: docs
---
-**Open resource file** ( *resNomFichier* {; *typeFichier*} ) : Time
+**Open resource file** ( *resNomFichier* : Text {; *typeFichier* : Text} ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNomFichier | Text | → | Nom ou chemin d'accès complet du fichier de ressources ou chaîne vide pour afficher la boîte de dialogue standard d'ouverture de fichiers |
-| typeFichier | Text | → | Type de fichier Mac OS (chaîne de 4 caractères), ou extension de fichier Windows (chaîne de 1 à 3 caractères), ou fichier de ressources ("res " / .RES) si omis |
+| resNomFichier | Text | → | Nom ou chemin d'accès complet du fichier de ressources ou chaîne vide pour afficher la boîte de dialogue standard d'ouverture de fichiers |
+| typeFichier | Text | → | Type de fichier Mac OS (chaîne de 4 caractères), ou extension de fichier Windows (chaîne de 1 à 3 caractères), ou fichier de ressources ("res " / .RES) si omis |
| Résultat | Time | ← | Numéro de référence du fichier de ressources |
@@ -103,7 +103,7 @@ Si le fichier de ressources n'a pas pu être ouvert à la suite d'un problème d
| | |
| --- | --- |
| Numéro de commande | 497 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
index 443fefe6a23fc3..4bb85c9ea62723 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
index 16a34cb67a731c..9d569f925c439a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1018 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
index 2b66dc8fed8c56..a6640f33879a32 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
@@ -5,13 +5,13 @@ slug: /commands/open-settings-window
displayed_sidebar: docs
---
-**OPEN SETTINGS WINDOW** ( *sélecteur* {; *accès* {; *typePropriétés*}} )
+**OPEN SETTINGS WINDOW** ( *sélecteur* : Text {; *accès* : Boolean {; *typePropriétés* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Text | → | Clé désignant un thème ou une page de la boîte de dialogue des Préférences ou des Propriétés de la base |
-| accès | Boolean | → | Vrai=Verrouiller les autres pages de la boîte de dialogue, Faux ou omis=Laisser actives les autres pages de la boîte de dialogue |
-| typePropriétés | Integer | → | 0 ou omis = Propriétés structure (mode standard), 1 = Propriétés utilisateur, 2 = Propriétés utilisateur pour données |
+| sélecteur | Text | → | Clé désignant un thème ou une page de la boîte de dialogue des Préférences ou des Propriétés de la base |
+| accès | Boolean | → | Vrai=Verrouiller les autres pages de la boîte de dialogue, Faux ou omis=Laisser actives les autres pages de la boîte de dialogue |
+| typePropriétés | Integer | → | 0 ou omis = Propriétés structure (mode standard), 1 = Propriétés utilisateur, 2 = Propriétés utilisateur pour données |
@@ -144,7 +144,7 @@ Si la boîte de dialogue des préférences/propriétés est validée, la variabl
| | |
| --- | --- |
| Numéro de commande | 903 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
index 2fa4e43c3b8753..c2cfd247153972 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
@@ -5,13 +5,13 @@ slug: /commands/open-url
displayed_sidebar: docs
---
-**OPEN URL** ( *chemin* {; *nomApp*}{; *} )
+**OPEN URL** ( *chemin* : Text {; *nomApp* : Text}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin du document ou URL à ouvrir |
-| nomApp | Text | → | Nom de l'application à utiliser |
-| * | Opérateur | → | Si spécifié = l’URL n’est pas traduit, Si omis = l’URL est traduit |
+| chemin | Text | → | Chemin du document ou URL à ouvrir |
+| nomApp | Text | → | Nom de l'application à utiliser |
+| * | Opérateur | → | Si spécifié = l’URL n’est pas traduit, Si omis = l’URL est traduit |
@@ -86,6 +86,6 @@ Vous pouvez ouvrir un même fichier texte avec différentes applications en util
| | |
| --- | --- |
| Numéro de commande | 673 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
index 9f4b980fa4a6ae..ab1c365cc11d12 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
@@ -5,17 +5,17 @@ slug: /commands/open-window
displayed_sidebar: docs
---
-**Open window** ( *gauche* ; *haut* ; *droite* ; *bas* {; *type* {; *titre* {; *caseFermeture*}}} ) : Integer
+**Open window** ( *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer {; *type* : Integer {; *titre* : Text {; *caseFermeture* : Text}}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| gauche | Integer | → | Coordonnée gauche de l'intérieur de la fenêtre |
-| haut | Integer | → | Coordonnée supérieure de l'intérieur de la fenêtre |
-| droite | Integer | → | Coordonnée droite de l'intérieur de la fenêtre |
-| bas | Integer | → | Coordonnée inférieure de l'intérieur de la fenêtre |
-| type | Integer | → | Type de la fenêtre |
-| titre | Text | → | Titre de la fenêtre |
-| caseFermeture | Text | → | Méthode à appeler en cas de double-clic sur la case du menu Système ou de clic sur la case de fermeture |
+| gauche | Integer | → | Coordonnée gauche de l'intérieur de la fenêtre |
+| haut | Integer | → | Coordonnée supérieure de l'intérieur de la fenêtre |
+| droite | Integer | → | Coordonnée droite de l'intérieur de la fenêtre |
+| bas | Integer | → | Coordonnée inférieure de l'intérieur de la fenêtre |
+| type | Integer | → | Type de la fenêtre |
+| titre | Text | → | Titre de la fenêtre |
+| caseFermeture | Text | → | Méthode à appeler en cas de double-clic sur la case du menu Système ou de clic sur la case de fermeture |
| Résultat | Integer | ← | Numéro de référence de la fenêtre |
@@ -158,6 +158,6 @@ Cet exemple illustre le mécanisme de “retard” d’affichage des fenêtres f
| | |
| --- | --- |
| Numéro de commande | 153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
index 99d238f19a9192..d4cd6bea1c3b9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
@@ -5,15 +5,15 @@ slug: /commands/order-by-attribute
displayed_sidebar: docs
---
-**ORDER BY ATTRIBUTE** ( {*laTable* ;} *champObjet* ; *cheminAttribut* ; > ou < {; *champObjet2* ; *cheminAttribut2* ; > ou <2 ; ... ; *champObjetN* ; *cheminAttributN* ; > ou
+**ORDER BY ATTRIBUTE** ( {*laTable* : Table ;} {; ...(*champObjet* : Field ; *cheminAttribut* : Text {; >,<})} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle la sélection est triée ou Table par défaut si ce paramètre est omis |
-| champObjet | Object | → | Champ objet dont les attributs sont à utiliser pour le tri |
-| cheminAttribut | Text | → | Nom ou chemin d'attribut pour chaque niveau que l'on veut trier |
-| > ou < | Opérateur | → | Sens de tri pour chaque niveau : > pour trier par ordre ascendant, ou < pour trier par ordre descendant. |
-| * | Opérateur | → | Attente d'exécution du tri |
+| laTable | Table | → | Table dans laquelle la sélection est triée ou Table par défaut si ce paramètre est omis |
+| champObjet | Object | → | Champ objet dont les attributs sont à utiliser pour le tri |
+| cheminAttribut | Text | → | Nom ou chemin d'attribut pour chaque niveau que l'on veut trier |
+| > ou < | Opérateur | → | Sens de tri pour chaque niveau : > pour trier par ordre ascendant, ou < pour trier par ordre descendant. |
+| * | Opérateur | → | Attente d'exécution du tri |
@@ -118,6 +118,6 @@ Les enregistrements sont dans l'ordre suivant :
| | |
| --- | --- |
| Numéro de commande | 1407 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
index ffb24fe1489519..ba856d0861b6e7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
@@ -5,13 +5,13 @@ slug: /commands/order-by-formula
displayed_sidebar: docs
---
-**ORDER BY FORMULA** ( *laTable* ; *formule* {; > ou <}{; *formule2* ; > ou <2 ; ... ; *formuleN* ; > ou
+**ORDER BY FORMULA** ( *laTable* : Table ; *formule* : Expression {; >,<} {; ...(*formula* : Expression {; >,<})} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle trier la sélection d'enregistrements |
-| formule | Expression | → | Formule de tri des enregistrements (peut être de type Alphanumérique, Réel, Entier, Entier long, Date, Heure ou Booléen) |
-| > ou < | Opérateur | → | Ordre de tri pour chaque niveau : > ordre croissant ou < ordre décroissant |
+| laTable | Table | → | Table de laquelle trier la sélection d'enregistrements |
+| formule | Expression | → | Formule de tri des enregistrements (peut être de type Alphanumérique, Réel, Entier, Entier long, Date, Heure ou Booléen) |
+| > ou < | Opérateur | → | Ordre de tri pour chaque niveau : > ordre croissant ou < ordre décroissant |
@@ -51,7 +51,7 @@ L'exemple suivant trie les enregistrements de la table \[Personnes\] dans l'ordr
| | |
| --- | --- |
| Numéro de commande | 300 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
index 44e83fe283a5e3..1d7360b07e54e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
@@ -5,14 +5,14 @@ slug: /commands/order-by
displayed_sidebar: docs
---
-**ORDER BY** ( {*laTable* ;}{ *leChamp* }{; > ou < }{; *leChamp2* ; > ou <2 ; ... ; *leChampN* ; > ou
+**ORDER BY** ( {*laTable* : Table ;}{; ...(*leField* : Field {; >,<}) } {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle réordonner la sélection courante ou Table par défaut si ce paramètre est omis |
-| leField | Field | → | Champ sur lequel effectuer le tri pour chaque niveau |
-| > ou < | Opérateur | → | Sens du tri pour chaque niveau : > demander un tri croissant ou < demander un tri décroissant |
-| * | Opérateur | → | Attente d'exécution du tri |
+| laTable | Table | → | Table de laquelle réordonner la sélection courante ou Table par défaut si ce paramètre est omis |
+| leField | Field | → | Champ sur lequel effectuer le tri pour chaque niveau |
+| > ou < | Opérateur | → | Sens du tri pour chaque niveau : > demander un tri croissant ou < demander un tri décroissant |
+| * | Opérateur | → | Attente d'exécution du tri |
@@ -207,7 +207,7 @@ Quelle que soit la manière dont le tri est défini, si l'opération risque de p
| | |
| --- | --- |
| Numéro de commande | 49 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
index 988ec05c7026c6..c2e4304f0b2035 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Outside call** soit généré, vérif
| | |
| --- | --- |
| Numéro de commande | 328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
index 94692337f81fec..2c37e9e617aef3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
@@ -5,11 +5,12 @@ slug: /commands/page-break
displayed_sidebar: docs
---
-**PAGE BREAK** {( * )}
**PAGE BREAK** {( > )}
+**PAGE BREAK** ({ * })
**PAGE BREAK** ({ > })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | > |Operator| → | * Annule l'impression lancée par Imprimer ligne ou > Rend l'impression prioritaire |
+| * | Operator | → | Cancel printing job started with Print form |
+| > | Operator | → | Force one printing job |
@@ -50,7 +51,7 @@ Reportez-vous à l'exemple de la commande [SET PRINT MARKER](set-print-marker.md
| | |
| --- | --- |
| Numéro de commande | 6 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
index 411a2befa43247..9840a53b4d5d9d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
@@ -5,12 +5,12 @@ slug: /commands/parse-formula
displayed_sidebar: docs
---
-**Parse formula** ( *formule* {; *options*}{; *messageErr*} ) : Text
+**Parse formula** ( *formule* : Text {; *options* : Integer}{; *messageErr* : Text} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| formule | Text | → | Texte brut de la formule |
-| options | Integer | → | Instructions d'entrée / sortie |
+| formule | Text | → | Texte brut de la formule |
+| options | Integer | → | Instructions d'entrée / sortie |
| messageErr | Text | ← | Message d'erreur (chaîne vide si pas d'erreur) |
| Résultat | Text | ← | Formule avec transformation (texte brut) |
@@ -108,6 +108,6 @@ Si une erreur de syntaxe est détectée dans la *formule*, un message d'erreur e
| | |
| --- | --- |
| Numéro de commande | 1576 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
index 9142048bac9703..5eb2e56ec8974c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
@@ -5,11 +5,11 @@ slug: /commands/pasteboard-data-size
displayed_sidebar: docs
---
-**Pasteboard data size** ( *typeDonnées* ) : Integer
+**Pasteboard data size** ( *typeDonnées* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeDonnées | Text | → | Type de données |
+| typeDonnées | Text | → | Type de données |
| Résultat | Integer | ← | Taille (en octets) des données présentes dans le conteneur ou code d'erreur |
@@ -100,7 +100,7 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 400 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
index 9aa6a50b3893da..5dee89d6808f18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
@@ -5,12 +5,12 @@ slug: /commands/path-to-object
displayed_sidebar: docs
---
-**Path to object** ( *chemin* {; *typeChemin*} ) : Object
+**Path to object** ( *chemin* : Text {; *typeChemin* : Integer} ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chemin | Text | → | Chemin |
-| typeChemin | Integer | → | Type de syntaxe du chemin : Système (par défaut) ou Posix |
+| chemin | Text | → | Chemin |
+| typeChemin | Integer | → | Type de syntaxe du chemin : Système (par défaut) ou Posix |
| Résultat | Object | ← | Objet décrivant le contenu du chemin |
@@ -182,6 +182,6 @@ Vous voulez connaître le nombre de sous-dossiers contenus dans un chemin :
| | |
| --- | --- |
| Numéro de commande | 1547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
index 228f122e814b19..b74a87bb203572 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
@@ -5,11 +5,11 @@ slug: /commands/pause-indexes
displayed_sidebar: docs
---
-**PAUSE INDEXES** ( *laTable* )
+**PAUSE INDEXES** ( *laTable* : Table )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle suspendre les index |
+| laTable | Table | → | Table pour laquelle suspendre les index |
@@ -52,6 +52,6 @@ Exemple de méthode d’import massif de données :
| | |
| --- | --- |
| Numéro de commande | 1293 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
index 3bd8d52154a7b3..ffa886f3717c49 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
@@ -5,11 +5,11 @@ slug: /commands/pause-process
displayed_sidebar: docs
---
-**PAUSE PROCESS** ( *process* )
+**PAUSE PROCESS** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de process |
+| process | Integer | → | Numéro de process |
@@ -37,6 +37,6 @@ Lorsqu'un process est suspendu, les fenêtres qui lui appartiennent ne sont pas
| | |
| --- | --- |
| Numéro de commande | 319 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
index 61f247c2f08d46..c447fb7c6fc79a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
@@ -5,13 +5,13 @@ slug: /commands/picture-codec-list
displayed_sidebar: docs
---
-**PICTURE CODEC LIST** ( *tabCodecs* {; *tabNoms*}{; *} )
+**PICTURE CODEC LIST** ( *tabCodecs* : Text array {; *tabNoms* : Text array}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| tabCodecs | Text array | ← | Identifiants des codecs d’images disponibles |
| tabNoms | Text array | ← | Noms des codecs d’images |
-| * | Opérateur | → | Retourner la liste des codecs de lecture |
+| * | Opérateur | → | Retourner la liste des codecs de lecture |
@@ -41,6 +41,6 @@ Par défaut, si vous ne passez pas le paramètre *\**, la commande retourne uniq
| | |
| --- | --- |
| Numéro de commande | 992 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
index 7a1fc3110703ca..602d675e16da9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
@@ -5,7 +5,7 @@ slug: /commands/picture-library-list
displayed_sidebar: docs
---
-**PICTURE LIBRARY LIST** ( *refsImages* ; *nomsImages* )
+**PICTURE LIBRARY LIST** ( *refsImages* : Integer array ; *nomsImages* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -105,6 +105,6 @@ L'exemple suivant exporte la Bibliothèque d’Images vers un document stocké s
| | |
| --- | --- |
| Numéro de commande | 564 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
index 8ec9b99d516b9e..e6099993dce932 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
@@ -5,11 +5,11 @@ slug: /commands/picture-properties
displayed_sidebar: docs
---
-**PICTURE PROPERTIES** ( *image* ; *largeur* ; *hauteur* {; *hOffset* {; *vOffset* {; *mode*}}} )
+**PICTURE PROPERTIES** ( *image* : Picture ; *largeur* : Real ; *hauteur* : Real {; *hOffset* : Integer {; *vOffset* : Integer {; *mode* : Integer}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image sur laquelle obtenir les informations |
+| image | Picture | → | Image sur laquelle obtenir les informations |
| largeur | Real | ← | Largeur de l'image exprimée en pixels |
| hauteur | Real | ← | Hauteur de l'image exprimée en pixels |
| hOffset | Integer | ← | Offset horizontal lorsque l'image est affichée en arrière-plan |
@@ -35,6 +35,6 @@ Les paramètres *hOffset*, *vOffset* et *mode* reçoivent la position et le mode
| | |
| --- | --- |
| Numéro de commande | 457 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
index 387dbc44c598b8..e00cfc06a2d755 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
@@ -5,11 +5,11 @@ slug: /commands/picture-size
displayed_sidebar: docs
---
-**Picture size** ( *image* ) : Integer
+**Picture size** ( *image* : Picture ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image pour laquelle vous voulez connaître la taille en octets |
+| image | Picture | → | Image pour laquelle vous voulez connaître la taille en octets |
| Résultat | Integer | ← | Taille en octets de l'image |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 356 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
index 44fe4fd839f27d..2b1fc97a731e3a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/picture-to-blob
displayed_sidebar: docs
---
-**PICTURE TO BLOB** ( *image* ; *blobImage* ; *codec* )
+**PICTURE TO BLOB** ( *image* : Picture ; *blobImage* : Blob ; *codec* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Champ ou variable image |
+| image | Picture | → | Champ ou variable image |
| blobImage | Blob | ← | BLOB devant contenir l’image convertie |
-| codec | Text | → | Identifiant de codec d'image |
+| codec | Text | → | Identifiant de codec d'image |
@@ -55,7 +55,7 @@ Vous voulez convertir une image depuis un format propriétaire vers le format GI
| | |
| --- | --- |
| Numéro de commande | 692 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md
index 83f6e133a3b62f..d328376ca2f274 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/play.md
@@ -5,12 +5,12 @@ slug: /commands/play
displayed_sidebar: docs
---
-**PLAY** ( *nomObjet* {; *asynchrone*} )
+**PLAY** ( *nomObjet* : Text {; *asynchrone* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomObjet | Text | → | Nom ou chemin de fichier son ou son systèmeChaîne vide pour stopper un son asynchrone |
-| asynchrone | Integer | → | (Windows) Si passé : exécution asynchrone, si omis : exécution synchrone |
+| nomObjet | Text | → | Nom ou chemin de fichier son ou son systèmeChaîne vide pour stopper un son asynchrone |
+| asynchrone | Integer | → | (Windows) Si passé : exécution asynchrone, si omis : exécution synchrone |
@@ -62,6 +62,6 @@ Exemple de son système sous macOS :
| | |
| --- | --- |
| Numéro de commande | 290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
index a64b95e2e24ba3..049dec8cd59eb2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
@@ -5,7 +5,7 @@ slug: /commands/plugin-list
displayed_sidebar: docs
---
-**PLUGIN LIST** ( *tabNuméros* ; *tabNoms* )
+**PLUGIN LIST** ( *tabNuméros* : Integer array ; *tabNoms* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 847 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
index bcb21180d081bf..bffb96714cd12e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
@@ -5,11 +5,11 @@ slug: /commands/pop-record
displayed_sidebar: docs
---
-**POP RECORD** {( *laTable* )}
+**POP RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle dépiler l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle dépiler l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -38,7 +38,7 @@ L'exemple suivant récupère l'enregistrement d'un client dans la pile :
| | |
| --- | --- |
| Numéro de commande | 177 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
index 29f144e0b41f8c..06094b8cf987ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/pop-up-menu
displayed_sidebar: docs
---
-**Pop up menu** ( *contenu* {; *parDéfaut* {; *coordX* ; *coordY*}} ) : Integer
+**Pop up menu** ( *contenu* : Text {; *parDéfaut* : Integer {; *coordX* : Integer ; *coordY* : Integer}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| contenu | Text | → | Définition du texte du menu |
-| parDéfaut | Integer | → | Numéro de l'élément sélectionné par défaut |
-| coordX | Integer | → | Coordonnée X du coin supérieur gauche |
-| coordY | Integer | → | Coordonnée Y du coin supérieur gauche |
+| contenu | Text | → | Définition du texte du menu |
+| parDéfaut | Integer | → | Numéro de l'élément sélectionné par défaut |
+| coordX | Integer | → | Coordonnée X du coin supérieur gauche |
+| coordY | Integer | → | Coordonnée Y du coin supérieur gauche |
| Résultat | Integer | ← | Numéro de l'élément de menu sélectionné |
@@ -105,6 +105,6 @@ Voici le pop up menu tel qu'il s'affiche sous Windows (à gauche) et sous Mac OS
| | |
| --- | --- |
| Numéro de commande | 542 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md
index 4c649c2e27482f..55a14239491009 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/position.md
@@ -5,24 +5,17 @@ slug: /commands/position
displayed_sidebar: docs
---
-**Position** ( àChercher ; *laChaîne* {; *début* {; *longTrouvée*}}{; *} ) -> Résultat
-**Position** ( àChercher ; *laChaîne* ; *début* ; *longTrouvée* ; *options* ) -> Résultat
+**Position** ( *àChercher* : Text ; *laChaîne* : Text {; *début* : Integer {; *longTrouvée* : Integer}}{; *} ) -> Integer
**Position** ( *àChercher* : Text ; *laChaîne* : Text; *début* : Integer ; *longTrouvée* : Integer ; *options* : Integer ) -> Integer
+
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| àChercher | Text | → | Chaîne à rechercher |
-| laText | Text | → | Chaîne dans laquelle effectuer la recherche |
-| début | Integer | → | Position dans laChaîne où débuter la recherche |
+| àChercher | Text | → | Chaîne à rechercher |
+| laChaîne | Text | → | Chaîne dans laquelle effectuer la recherche |
+| début | Integer | → | Position dans laChaîne où débuter la recherche |
| longTrouvée | Integer | ← | Longueur de la chaîne trouvée |
-| * | Opérateur | → | Si passé : évaluation basée sur les codes de caractères |
-| Résultat | Integer | ← | Position de la première occurrence de àChercher |
-| Position ( àChercher ; laChaîne ; début ; longTrouvée ; options ) -> Résultat |
-| Paramètre | Type | Description |
-| àChercher | Text | → | Chaîne à rechercher |
-| laText | Text | → | Chaîne dans laquelle effectuer la recherche |
-| début | Integer | → | Position dans laChaîne où débuter la recherche |
-| longTrouvée | Integer | → | Longueur de la chaîne trouvée |
-| options | Integer | → | Critère(s) de recherche |
+| * | Opérateur | → | Si passé : évaluation basée sur les codes de caractères |
+| options | Integer | → | Critère(s) de recherche |
| Résultat | Integer | ← | Position de la première occurrence de àChercher |
@@ -124,6 +117,6 @@ Dans l'exemple suivant, vous souhaitez recherchez toutes les instances d'une cha
| | |
| --- | --- |
| Numéro de commande | 15 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
index 5f0f6258786c8b..9278917e4bbeeb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
@@ -5,14 +5,14 @@ slug: /commands/post-click
displayed_sidebar: docs
---
-**POST CLICK** ( *sourisX* ; *sourisY* {; *process*} {; *} )
+**POST CLICK** ( *sourisX* : Integer ; *sourisY* : Integer {; *process* : Integer} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sourisX | Integer | → | Coordonnée horizontale |
-| sourisY | Integer | → | Coordonnée verticale |
-| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si ce paramètre est omis ou si vous passez 0 |
-| * | Operator | → | Si spécifié, utiliser le système de coordonnées globales Si omis, utiliser le système de coordonnées locales |
+| sourisX | Integer | → | Coordonnée horizontale |
+| sourisY | Integer | → | Coordonnée verticale |
+| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si ce paramètre est omis ou si vous passez 0 |
+| * | Operator | → | Si spécifié, utiliser le système de coordonnées globales Si omis, utiliser le système de coordonnées locales |
@@ -34,6 +34,6 @@ Si vous passez le paramètre *process*, le clic est envoyé au process dont vous
| | |
| --- | --- |
| Numéro de commande | 466 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
index b2eaf902016c3d..6472b6f60474fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
@@ -5,17 +5,17 @@ slug: /commands/post-event
displayed_sidebar: docs
---
-**POST EVENT** ( *quoi* ; *message* ; *quand* ; *sourisX* ; *sourisY* ; *modifiers* {; *process*} )
+**POST EVENT** ( *quoi* : Integer ; *message* : Integer ; *quand* : Integer ; *sourisX* : Integer ; *sourisY* : Integer ; *modifiers* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| quoi | Integer | → | Type d'événement |
-| message | Integer | → | Message de l'événement |
-| quand | Integer | → | Moment de l'événement exprimé en ticks |
-| sourisX | Integer | → | Coordonnée horizontale de la souris |
-| sourisY | Integer | → | Coordonnée verticale de la souris |
-| modifiers | Integer | → | Etat des touches Modifier |
-| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si ce paramètre est omis ou si vous passez 0 |
+| quoi | Integer | → | Type d'événement |
+| message | Integer | → | Message de l'événement |
+| quand | Integer | → | Moment de l'événement exprimé en ticks |
+| sourisX | Integer | → | Coordonnée horizontale de la souris |
+| sourisY | Integer | → | Coordonnée verticale de la souris |
+| modifiers | Integer | → | Etat des touches Modifier |
+| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si ce paramètre est omis ou si vous passez 0 |
@@ -78,6 +78,6 @@ Si vous passez le paramètre *process*, l'événement est envoyé au process don
| | |
| --- | --- |
| Numéro de commande | 467 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
index 59d4e2f4e0ece0..066b269a664358 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
@@ -5,13 +5,13 @@ slug: /commands/post-key
displayed_sidebar: docs
---
-**POST KEY** ( *code* {; *modifiers* {; *process*}} )
+**POST KEY** ( *code* : Integer {; *modifiers* : Integer {; *process* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| code | Integer | → | Code d'un caractère ou code de touche de fonction |
-| modifiers | Integer | → | Etat des touches Modifier |
-| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si paramètre omis ou égal à 0 |
+| code | Integer | → | Code d'un caractère ou code de touche de fonction |
+| modifiers | Integer | → | Etat des touches Modifier |
+| process | Integer | → | Numéro de référence du process de destination ou File d'attente des événements de l'application si paramètre omis ou égal à 0 |
@@ -66,6 +66,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 465 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
index 5535fafafde04b..6d6ae5993eabd3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
@@ -5,11 +5,11 @@ slug: /commands/post-outside-call
displayed_sidebar: docs
---
-**POST OUTSIDE CALL** ( *process* )
+**POST OUTSIDE CALL** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process |
+| process | Integer | → | Numéro du process |
@@ -50,7 +50,7 @@ Reportez-vous à l'exemple de la section [Semaphore](semaphore.md).
| | |
| --- | --- |
| Numéro de commande | 329 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
index 3b536391393b6c..3995f791dd83d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
@@ -5,11 +5,11 @@ slug: /commands/previous-record
displayed_sidebar: docs
---
-**PREVIOUS RECORD** {( *laTable* )}
+**PREVIOUS RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle se placer sur l'enregistrement précédent de la sélection courante ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table dans laquelle se placer sur l'enregistrement précédent de la sélection courante ou Table par défaut si ce paramètre est omis |
@@ -32,7 +32,7 @@ Si **PREVIOUS RECORD** place le pointeur d'enregistrement courant avant la séle
| | |
| --- | --- |
| Numéro de commande | 110 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
index b8457cb29cd94a..9cde258b31fc6d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
@@ -5,13 +5,13 @@ slug: /commands/print-label
displayed_sidebar: docs
---
-**PRINT LABEL** ( *laTable* {; *nomFichier* {; * }} )
**PRINT LABEL** ( *laTable*{; *nomFichier* {; >}} )
+**PRINT LABEL** ( *laTable* : Table {; *nomFichier* : Text {; * }} )
**PRINT LABEL** ( *laTable* : Table{; *nomFichier* : Text {; >}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à imprimer ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Nom de fichier d'étiquettes sur disque |
-| * | > |Operator| → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
+| laTable | Table | → | Table à imprimer ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Nom de fichier d'étiquettes sur disque |
+| * | > | Operator | → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
@@ -115,7 +115,7 @@ L'exemple suivant permet à l'utilisateur d'effectuer une recherche sur la table
| | |
| --- | --- |
| Numéro de commande | 39 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
index 6e6bf8b7f1a266..8fe0d40a4c962b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
@@ -5,16 +5,16 @@ slug: /commands/print-object
displayed_sidebar: docs
---
-**Print object** ( {* ;} *objet* {; *posX* {; *posY* {; *largeur* {; *hauteur*}}}} ) : Boolean
+**Print object** ( * ; *objet* : Text {; *posX* : Integer {; *posY* : Integer {; *largeur* : Integer {; *hauteur* : Integer}}}} ) : Boolean
**Print object** ( *objet* : Field, Variable {; *posX* : Integer {; *posY* : Integer {; *largeur* : Integer {; *hauteur* : Integer}}}} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
-| posX | Integer | → | Emplacement horizontal de l'objet |
-| posY | Integer | → | Emplacement vertical de l'objet |
-| largeur | Integer | → | Largeur de l'objet (pixels) |
-| hauteur | Integer | → | Hauteur de l'objet (pixels) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * spécifié) ou Variable (si * omis) |
+| posX | Integer | → | Emplacement horizontal de l'objet |
+| posY | Integer | → | Emplacement vertical de l'objet |
+| largeur | Integer | → | Largeur de l'objet (pixels) |
+| hauteur | Integer | → | Hauteur de l'objet (pixels) |
| Résultat | Boolean | ← | Vrai = objet entièrement imprimé, Faux sinon |
@@ -102,6 +102,6 @@ Exemple d’impression d’une list box complète :
| | |
| --- | --- |
| Numéro de commande | 1095 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
index 9cd7f8d2197389..e13b08819c29c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
@@ -5,11 +5,11 @@ slug: /commands/print-option-values
displayed_sidebar: docs
---
-**PRINT OPTION VALUES** ( *option* ; *tabNoms* {; *tabInfo1* {; *tabInfo2*}} )
+**PRINT OPTION VALUES** ( *option* : Integer ; *tabNoms* : Text array {; *tabInfo1* : Integer array {; *tabInfo2* : Integer array}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Numéro d’option |
+| option | Integer | → | Numéro d’option |
| tabNoms | Text array | ← | Noms des valeurs |
| tabInfo1 | Integer array | ← | Valeurs 1 de l’option |
| tabInfo2 | Integer array | ← | Valeurs 2 de l’option |
@@ -60,6 +60,6 @@ Toutes les informations retournées par ces commandes sont fournies par le syst
| | |
| --- | --- |
| Numéro de commande | 785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
index 507d82d927f70b..d5e7c8f2ee0c60 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
@@ -5,12 +5,12 @@ slug: /commands/print-record
displayed_sidebar: docs
---
-**PRINT RECORD** ( *laTable* {; * } )
**PRINT RECORD** ( *laTable {; >} )
+**PRINT RECORD** ( *laTable* : Table {; * } )
**PRINT RECORD** ( *laTable {; >} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle imprimer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
-| * | > | Opérateur | → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
+| laTable | Table | → | Table de laquelle imprimer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| * | > | Opérateur | → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
@@ -71,6 +71,6 @@ L'exemple suivant imprime le même enregistrement courant dans deux formulaires
| | |
| --- | --- |
| Numéro de commande | 71 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
index 7dcbc9ce3503d4..def4f0de4f8eb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
@@ -5,12 +5,12 @@ slug: /commands/print-selection
displayed_sidebar: docs
---
-**PRINT SELECTION** ( *laTable* {;* })
**PRINT SELECTION** ( *laTable* {; >} )
+**PRINT SELECTION** ( *laTable* : Table {;* })
**PRINT SELECTION** ( *laTable* : Table {; >} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à laquelle appartient la sélection à imprimer ou Table par défaut si ce paramètre est omis |
-| * | > | Opérateur | → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
+| laTable | Table | → | Table à laquelle appartient la sélection à imprimer ou Table par défaut si ce paramètre est omis |
+| * | > | Opérateur | → | * pour supprimer les boîtes de dialogue d'impression ou > pour ne pas réinitialiser les paramètres d'impression |
@@ -70,7 +70,7 @@ L'exemple suivant sélectionne la totalité des enregistrements de la table \[Pe
| | |
| --- | --- |
| Numéro de commande | 60 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
index ecbffa8f152d8f..406a8aea5942a1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings-to-blob
displayed_sidebar: docs
---
-**Print settings to BLOB** ( *paramImpression* ) : Integer
+**Print settings to BLOB** ( *paramImpression* : Blob ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -60,6 +60,6 @@ Vous voulez sauvegarder les paramètres d'impression courants sur disque :
| | |
| --- | --- |
| Numéro de commande | 1433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
index 583326a59e827b..63f70fe0c34369 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
@@ -5,11 +5,11 @@ slug: /commands/print-settings
displayed_sidebar: docs
---
-**PRINT SETTINGS** {( *typeDial* )}
+**PRINT SETTINGS** ({ *typeDial* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeDial | Integer | → | Boîte(s) de dialogue à afficher |
+| typeDial | Integer | → | Boîte(s) de dialogue à afficher |
@@ -46,7 +46,7 @@ Si l'utilisateur clique sur le bouton OK dans chaque boîte de dialogue, la vari
| | |
| --- | --- |
| Numéro de commande | 106 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
index fe664f0008972a..c69ad279cbf18a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
@@ -5,7 +5,7 @@ slug: /commands/printers-list
displayed_sidebar: docs
---
-**PRINTERS LIST** ( *tabNoms* {; *tabNomsAlt* {; *tabModèles*}} )
+**PRINTERS LIST** ( *tabNoms* : Text array {; *tabNomsAlt* : Text array {; *tabModèles* : Text array}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -49,7 +49,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 789 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
index 253468d1101add..763772731b98ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ L'exemple suivant change la position des numéros de page sur un état pour que
| | |
| --- | --- |
| Numéro de commande | 275 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
index d7a20ff575a57c..2dfeccf5da37bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
@@ -5,13 +5,13 @@ slug: /commands/process-4d-tags
displayed_sidebar: docs
---
-**PROCESS 4D TAGS** ( *templateEntrée* ; *résultatSortie* {; *param*}{; *param2* ; ... ; *paramN*} )
+**PROCESS 4D TAGS** ( *templateEntrée* : Text ; *résultatSortie* : Text {; *...param* : Expression} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| templateEntrée | Text | → | Données contenant des balises à traiter |
+| templateEntrée | Text | → | Données contenant des balises à traiter |
| résultatSortie | Text | ← | Résultat de l'exécution du template |
-| param | Expression | → | Paramètre(s) à passer au template en exécution |
+| param | Expression | → | Paramètre(s) à passer au template en exécution |
@@ -79,6 +79,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Numéro de commande | 816 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
index d9a06cfed17e32..39dd151238359a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Ce statut se produira très rarement. Les process sont généralement arrêtés
| | |
| --- | --- |
| Numéro de commande | 672 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
index 4e850339dbeceb..40915ecfd2b9ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
@@ -5,11 +5,11 @@ slug: /commands/process-state
displayed_sidebar: docs
---
-**Process state** ( *process* ) : Integer
+**Process state** ( *process* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process |
+| process | Integer | → | Numéro du process |
| Résultat | Integer | ← | Statut du process |
@@ -65,6 +65,6 @@ L'exemple suivant retourne le nom et le numéro de référence de chaque process
| | |
| --- | --- |
| Numéro de commande | 330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
index 9d980c91148fe9..4bad74f27c1fd9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
@@ -5,11 +5,11 @@ slug: /commands/push-record
displayed_sidebar: docs
---
-**PUSH RECORD** {( *laTable* )}
+**PUSH RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle empiler l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle empiler l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -39,6 +39,6 @@ L'exemple suivant empile l'enregistrement d'un client :
| | |
| --- | --- |
| Numéro de commande | 176 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
index 0a0cda3d4c0e26..6636e5d00e3983 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
@@ -5,12 +5,12 @@ slug: /commands/qr-blob-to-report
displayed_sidebar: docs
---
-**QR BLOB TO REPORT** ( *zone* ; *blob* )
+**QR BLOB TO REPORT** ( *zone* : Integer ; *blob* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| blob | Blob | → | BLOB contenant l'état |
+| zone | Integer | → | Référence de la zone |
+| Blob | Blob | → | BLOB contenant l'état |
@@ -49,7 +49,7 @@ L'instruction suivante affiche l'état stocké dans le champ ChampBlob dans la z
| | |
| --- | --- |
| Numéro de commande | 771 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
index b693961ae2adfe..2d4c4ace35df55 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
@@ -5,11 +5,11 @@ slug: /commands/qr-count-columns
displayed_sidebar: docs
---
-**QR Count columns** ( *zone* ) : Integer
+**QR Count columns** ( *zone* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| Résultat | Integer | ← | Nombre de colonnes dans la zone |
@@ -39,7 +39,7 @@ L'exemple suivant permet d'ajouter une colonne supplémentaire à droite de la d
| | |
| --- | --- |
| Numéro de commande | 764 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
index b85255631e10e4..a662ffa991b3eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-delete-column
displayed_sidebar: docs
---
-**QR DELETE COLUMN** ( *zone* ; *numColonne* )
+**QR DELETE COLUMN** ( *zone* : Integer ; *numColonne* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
@@ -40,7 +40,7 @@ Cet exemple supprime la troisième colonne de l'état :
| | |
| --- | --- |
| Numéro de commande | 749 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
index 005384e2236f33..fb48bbbd3284f6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-delete-offscreen-area
displayed_sidebar: docs
---
-**QR DELETE OFFSCREEN AREA** ( *zone* )
+**QR DELETE OFFSCREEN AREA** ( *zone* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
@@ -28,7 +28,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 754 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
index cb1c1fff40d4ac..7f98dcd13335d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-execute-command
displayed_sidebar: docs
---
-**QR EXECUTE COMMAND** ( *zone* ; *numCommande* )
+**QR EXECUTE COMMAND** ( *zone* : Integer ; *numCommande* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numCommande | Integer | → | Commande de menu à exécuter |
+| zone | Integer | → | Référence de la zone |
+| numCommande | Integer | → | Commande de menu à exécuter |
@@ -43,7 +43,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 791 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
index 6e16121577c6a0..53fff3c6aed854 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-find-column
displayed_sidebar: docs
---
-**QR Find column** ( *zone* ; *expression* ) : Integer
+**QR Find column** ( *zone* : Integer ; *expression* : Text, Pointer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| expression | Text, Pointer | → | Objet de colonne |
+| zone | Integer | → | Référence de la zone |
+| expression | Text, Pointer | → | Objet de colonne |
| Résultat | Integer | ← | Numéro de colonne |
@@ -53,7 +53,7 @@ suivi de :
| | |
| --- | --- |
| Numéro de commande | 776 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
index fd655e83e152fd..8a45ab36eaa64b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-area-property
displayed_sidebar: docs
---
-**QR Get area property** ( *zone* ; *propriété* ) : Integer
+**QR Get area property** ( *zone* : Integer ; *propriété* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| propriété | Integer | → | Elément d'interface |
+| zone | Integer | → | Référence de la zone |
+| propriété | Integer | → | Elément d'interface |
| Résultat | Integer | ← | 1 = affiché, 0 = caché |
@@ -40,7 +40,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 795 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
index 5c612c81c5c5dc..0bbea5456e16bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-borders
displayed_sidebar: docs
---
-**QR GET BORDERS** ( *zone* ; *colonne* ; *ligne* ; *encadrement* ; *ligne* {; *couleur*} )
+**QR GET BORDERS** ( *zone* : Integer ; *colonne* : Integer ; *ligne* : Integer ; *encadrement* : Integer ; *ligne* : Integer {; *couleur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| colonne | Integer | → | Numéro de colonne |
-| ligne | Integer | → | Numéro de ligne |
-| encadrement | Integer | → | Valeur d'encadrement |
+| zone | Integer | → | Référence de la zone |
+| colonne | Integer | → | Numéro de colonne |
+| ligne | Integer | → | Numéro de ligne |
+| encadrement | Integer | → | Valeur d'encadrement |
| ligne | Integer | ← | Epaisseur de trait |
| couleur | Integer | ← | Couleur de l'encadrement |
@@ -74,7 +74,7 @@ Si le paramètre *encadrement* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 798 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
index b2bcdca781b421..5877644a7d688e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-command-status
displayed_sidebar: docs
---
-**QR Get command status** ( *zone* ; *numCommande* {; *valeur*} ) : Integer
+**QR Get command status** ( *zone* : Integer ; *numCommande* : Integer {; *valeur* : Integer, Text} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numCommande | Integer | → | Numéro de commande |
+| zone | Integer | → | Référence de la zone |
+| numCommande | Integer | → | Numéro de commande |
| valeur | Integer, Text | ← | Valeur du sous-élément sélectionné |
| Résultat | Integer | ← | Statut de la commande |
@@ -96,7 +96,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 792 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
index fdb1194f43d66c..bfbd2aef35215e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-destination
displayed_sidebar: docs
---
-**QR GET DESTINATION** ( *zone* ; *type* {; *spécificités*} )
+**QR GET DESTINATION** ( *zone* : Integer ; *type* : Integer {; *spécificités* : Text, Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| type | Integer | ← | Type d'état |
| spécificités | Text, Variable | ← | Spécificités de la destination |
@@ -40,7 +40,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 756 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
index f8d8eff25db108..90cb041d261f5f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-document-property
displayed_sidebar: docs
---
-**QR Get document property** ( *zone* ; *propriété* ) : Integer
+**QR Get document property** ( *zone* : Integer ; *propriété* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| propriété | Integer | → | 1=Dialogue d'impression, 2=Unité du document |
+| zone | Integer | → | Référence de la zone |
+| propriété | Integer | → | 1=Dialogue d'impression, 2=Unité du document |
| Résultat | Integer | ← | Valeur de la propriété |
@@ -40,6 +40,6 @@ Si la valeur du paramètre *propriété* est incorrecte, l’erreur -9852 est g
| | |
| --- | --- |
| Numéro de commande | 773 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
index 637ce486465ede..f1b48b09a15865 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-drop-column
displayed_sidebar: docs
---
-**QR Get drop column** ( *zone* ) : Integer
+**QR Get drop column** ( *zone* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| Résultat | Integer | ← | Emplacement du "déposer" |
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 747 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
index 58536bc19ac515..46d9230e4e40ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-header-and-footer
displayed_sidebar: docs
---
-**QR GET HEADER AND FOOTER** ( *zone* ; *sélecteur* ; *titreGauche* ; *titreCentre* ; *titreDroit* ; *hauteur* {; *image* {; *alignementImage*}} )
+**QR GET HEADER AND FOOTER** ( *zone* : Integer ; *sélecteur* : Integer ; *titreGauche* : Text ; *titreCentre* : Text ; *titreDroit* : Text ; *hauteur* : Integer {; *image* : Picture {; *alignementImage* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| sélecteur | Integer | → | 1 = En-tête, 2 = Pied de page |
+| zone | Integer | → | Référence de la zone |
+| sélecteur | Integer | → | 1 = En-tête, 2 = Pied de page |
| titreGauche | Text | ← | Texte affiché sur le côté gauche |
| titreCentre | Text | ← | Texte affiché au centre |
| titreDroit | Text | ← | Texte affiché sur le côté droit |
@@ -71,7 +71,7 @@ La méthode suivante affiche le contenu et la hauteur des libellés des en-tête
| | |
| --- | --- |
| Numéro de commande | 775 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
index 3968c49003fa80..110b73068757c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-html-template
displayed_sidebar: docs
---
-**QR Get HTML template** ( *zone* ) : Text
+**QR Get HTML template** ( *zone* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| Résultat | Text | ← | Code HTML utilisé comme modèle |
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 751 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
index 094afbd067152a..8a1bd932da4d48 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-column
displayed_sidebar: docs
---
-**QR GET INFO COLUMN** ( *zone* ; *numColonne* ; *titre* ; *objet* ; *cachée* ; *taille* ; *valeursRépétées* ; *format* {; *varRésultat*} )
+**QR GET INFO COLUMN** ( *zone* : Integer ; *numColonne* : Integer ; *titre* : Text ; *objet* : Text ; *cachée* : Integer ; *taille* : Integer ; *valeursRépétées* : Integer ; *format* : Text {; *varRésultat* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
| titre | Text | ← | Titre de la colonne |
| objet | Text | ← | Nom du champ ou contenu de la formule affecté(e) à la colonne |
| cachée | Integer | ← | 0 = visible, 1 = invisible |
@@ -110,7 +110,7 @@ Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 766 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
index 1d8519b5241ca3..f6ae4039df038d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-row
displayed_sidebar: docs
---
-**QR Get info row** ( *zone* ; *ligne* ) : Integer
+**QR Get info row** ( *zone* : Integer ; *ligne* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| ligne | Integer | → | Ligne |
+| zone | Integer | → | Référence de la zone |
+| ligne | Integer | → | Ligne |
| Résultat | Integer | ← | 0 = Visible, 1 = Cachée |
@@ -45,7 +45,7 @@ Si le paramètre *ligne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 769 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
index db44d3e64938ae..b4974cf11c7511 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-kind
displayed_sidebar: docs
---
-**QR Get report kind** ( *zone* ) : Integer
+**QR Get report kind** ( *zone* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| Résultat | Integer | ← | Type d'état |
@@ -36,7 +36,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 755 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
index d5cdd5f0f1c41c..e624dfa5f05577 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-table
displayed_sidebar: docs
---
-**QR Get report table** ( *zone* ) : Integer
+**QR Get report table** ( *zone* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| Résultat | Integer | ← | Numéro de table |
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 758 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
index 8f49cbcb8e75cd..15b5e61084f8c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-selection
displayed_sidebar: docs
---
-**QR GET SELECTION** ( *zone* ; *gauche* ; *haut* {; *droite* {; *bas*}} )
+**QR GET SELECTION** ( *zone* : Integer ; *gauche* : Integer ; *haut* : Integer {; *droite* : Integer {; *bas* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| gauche | Integer | ← | Limite gauche |
| haut | Integer | ← | Limite supérieure |
| droite | Integer | ← | Limite droite |
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 793 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
index ee61f81ed74b2d..c0e569311a9ac4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-sorts
displayed_sidebar: docs
---
-**QR GET SORTS** ( *zone* ; *tabColonnes* ; *tabTris* )
+**QR GET SORTS** ( *zone* : Integer ; *tabColonnes* : Real array ; *tabTris* : Real array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
+| zone | Integer | → | Référence de la zone |
| tabColonnes | Real array | ← | Colonnes triées |
| tabTris | Real array | ← | Ordres de tris |
@@ -41,7 +41,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 753 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
index 9fcc2e3ce6932f..0709e1054d34a6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-text-property
displayed_sidebar: docs
---
-**QR Get text property** ( *zone* ; *numColonne* ; *numLigne* ; *propriété* ) : any
+**QR Get text property** ( *zone* : Integer ; *numColonne* : Integer ; *numLigne* : Integer ; *propriété* : Integer ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| numLigne | Integer | → | Numéro de ligne |
-| propriété | Integer | → | Numéro de propriété |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| numLigne | Integer | → | Numéro de ligne |
+| propriété | Integer | → | Numéro de propriété |
| Résultat | Text, Integer | ← | Valeur de la propriété |
@@ -71,7 +71,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 760 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
index d04a49e5c8577d..e7665924ea0355 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
@@ -5,13 +5,13 @@ slug: /commands/qr-get-totals-data
displayed_sidebar: docs
---
-**QR GET TOTALS DATA** ( *zone* ; *numColonne* ; *numRupture* ; *opérateur* ; *texte* )
+**QR GET TOTALS DATA** ( *zone* : Integer ; *numColonne* : Integer ; *numRupture* : Integer ; *opérateur* : Integer ; *texte* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| numRupture | Integer | → | Numéro de rupture |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| numRupture | Integer | → | Numéro de rupture |
| opérateur | Integer | ← | Opérateur de la cellule |
| texte | Text | ← | Contenu de la cellule |
@@ -74,7 +74,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 768 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
index 079d5672489c8f..b53669e6cd7faa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-totals-spacing
displayed_sidebar: docs
---
-**QR GET TOTALS SPACING** ( *zone* ; *sousTotal* ; *valeur* )
+**QR GET TOTALS SPACING** ( *zone* : Integer ; *sousTotal* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| sousTotal | Integer | → | Numéro de sous-total |
+| zone | Integer | → | Référence de la zone |
+| sousTotal | Integer | → | Numéro de sous-total |
| valeur | Integer | ← | 0=pas d'espace, 32000=insère une saut de page, >0=espace ajouté sous le niveau de rupture, <0=augmentation proportionnelle |
@@ -41,7 +41,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 762 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
index f3193e19f0bd30..95570aef48a42f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-insert-column
displayed_sidebar: docs
---
-**QR INSERT COLUMN** ( *zone* ; *numColonne* ; *objet* )
+**QR INSERT COLUMN** ( *zone* : Integer ; *numColonne* : Integer ; *objet* : Field, Variable, Pointer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| objet | Field, Variable, Pointer | → | Objet à insérer dans la colonne |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| objet | Field, Variable, Pointer | → | Objet à insérer dans la colonne |
@@ -44,7 +44,7 @@ La ligne suivante insère (ou crée) une première colonne dans la zone MaZone e
| | |
| --- | --- |
| Numéro de commande | 748 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
index 36feeb3f4ece02..6e657985bb7c86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-move-column
displayed_sidebar: docs
---
-**QR MOVE COLUMN** ( *zone* ; *numColonne* ; *nouvPosition* )
+**QR MOVE COLUMN** ( *zone* : Integer ; *numColonne* : Integer ; *nouvPosition* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de la colonne |
-| nouvPosition | Integer | → | Nouvelle position de la colonne |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de la colonne |
+| nouvPosition | Integer | → | Nouvelle position de la colonne |
@@ -45,6 +45,6 @@ Vous obtenez :
| | |
| --- | --- |
| Numéro de commande | 1325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
index 4b1889e8ad7347..1c16d8e55c8d24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-new-area
displayed_sidebar: docs
---
-**QR NEW AREA** ( *ptr* )
+**QR NEW AREA** ( *ptr* : Pointer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ptr | Pointer | → | Pointeur vers une variable entier long |
+| ptr | Pointer | → | Pointeur vers une variable entier long |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1320 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
index 5e675429f21efd..0998749fdbc82e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 735 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
index 7567b0b96aa691..92e9b59cafe91b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-on-command
displayed_sidebar: docs
---
-**QR ON COMMAND** ( *zone* ; *nomMéthode* )
+**QR ON COMMAND** ( *zone* : Integer ; *nomMéthode* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| nomMéthode | Text | → | Nom de la méthode à appeler |
+| zone | Integer | → | Référence de la zone |
+| nomMéthode | Text | → | Nom de la méthode à appeler |
@@ -48,7 +48,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 790 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
index a6cf692eb61f11..f9b717cd6f0923 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
@@ -5,12 +5,12 @@ slug: /commands/qr-report-to-blob
displayed_sidebar: docs
---
-**QR REPORT TO BLOB** ( *zone* ; *blob* )
+**QR REPORT TO BLOB** ( *zone* : Integer ; *blob* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| blob | Blob | ← | BLOB devant recevoir l'état rapide |
+| zone | Integer | → | Référence de la zone |
+| Blob | Blob | ← | BLOB devant recevoir l'état rapide |
@@ -37,7 +37,7 @@ L'instruction suivante affecte l'état rapide stocké dans la zone MaZone à un
| | |
| --- | --- |
| Numéro de commande | 770 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
index cc780dcf3e7f18..a59f2c7c442683 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
@@ -5,14 +5,14 @@ slug: /commands/qr-report
displayed_sidebar: docs
---
-**QR REPORT** ( {*laTable* ;} *nomFichier* {; *nomMéthode*}{; *} )
+**QR REPORT** ( {*laTable* : Table ;} *nomFichier* : Text {; *nomMéthode* : Text}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à utiliser ou Table par défaut si ce paramètre est omis |
-| nomFichier | Text | → | Document d'état rapide à charger |
-| nomMéthode | Text | → | Nom de la méthode à appeler |
-| * | Opérateur | → | Suppression des boîtes de dialogue d'impression |
+| laTable | Table | → | Table à utiliser ou Table par défaut si ce paramètre est omis |
+| nomFichier | Text | → | Document d'état rapide à charger |
+| nomMéthode | Text | → | Nom de la méthode à appeler |
+| * | Opérateur | → | Suppression des boîtes de dialogue d'impression |
@@ -136,7 +136,7 @@ La méthode maCallbackMeth convertit l’état lorsqu’il est généré :
| | |
| --- | --- |
| Numéro de commande | 197 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
index d0c66513f05e92..d27f5163fa690a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
@@ -5,11 +5,11 @@ slug: /commands/qr-run
displayed_sidebar: docs
---
-**QR RUN** ( *zone* )
+**QR RUN** ( *zone* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone à exécuter |
+| zone | Integer | → | Référence de la zone à exécuter |
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 746 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
index edacd73f333580..93130acedd133f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-area-property
displayed_sidebar: docs
---
-**QR SET AREA PROPERTY** ( *zone* ; *propriété* ; *valeur* )
+**QR SET AREA PROPERTY** ( *zone* : Integer ; *propriété* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| propriété | Integer | → | Elément d'interface |
-| valeur | Integer | → | 1 = affiché, 0 = caché |
+| zone | Integer | → | Référence de la zone |
+| propriété | Integer | → | Elément d'interface |
+| valeur | Integer | → | 1 = affiché, 0 = caché |
@@ -39,7 +39,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 796 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
index 7f5402f75efb2a..2312c4fa725f6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
@@ -5,16 +5,16 @@ slug: /commands/qr-set-borders
displayed_sidebar: docs
---
-**QR SET BORDERS** ( *zone* ; *colonne* ; *ligne* ; *encadrement* ; *ligne* {; *couleur*} )
+**QR SET BORDERS** ( *zone* : Integer ; *colonne* : Integer ; *ligne* : Integer ; *encadrement* : Integer ; *ligne* : Integer {; *couleur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| colonne | Integer | → | Numéro de colonne |
-| ligne | Integer | → | Numéro de ligne |
-| encadrement | Integer | → | Valeur d'encadrements composée |
-| ligne | Integer | → | Epaisseur de ligne |
-| couleur | Integer | → | Couleur de ligne |
+| zone | Integer | → | Référence de la zone |
+| colonne | Integer | → | Numéro de colonne |
+| ligne | Integer | → | Numéro de ligne |
+| encadrement | Integer | → | Valeur d'encadrements composée |
+| ligne | Integer | → | Epaisseur de ligne |
+| couleur | Integer | → | Couleur de ligne |
@@ -81,7 +81,7 @@ Si le paramètre *épaisseur* est incorrect, l’erreur -9855 est générée.
| | |
| --- | --- |
| Numéro de commande | 797 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
index c23ab4977e5be7..d256ce4285c03c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-destination
displayed_sidebar: docs
---
-**QR SET DESTINATION** ( *zone* ; *type* {; *spécificités*} )
+**QR SET DESTINATION** ( *zone* : Integer ; *type* : Integer {; *spécificités* : Text, Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| type | Integer | → | Type d'état |
-| spécificités | Text, Variable | → | Spécificités du type de destination |
+| zone | Integer | → | Référence de la zone |
+| type | Integer | → | Type d'état |
+| spécificités | Text, Variable | → | Spécificités du type de destination |
@@ -59,7 +59,7 @@ L'exemple suivant définit le fichier texte "MonDoc.txt" comme type de destinati
| | |
| --- | --- |
| Numéro de commande | 745 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
index 8ca39905b226f8..37736e074526c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-document-property
displayed_sidebar: docs
---
-**QR SET DOCUMENT PROPERTY** ( *zone* ; *propriété* ; *valeur* )
+**QR SET DOCUMENT PROPERTY** ( *zone* : Integer ; *propriété* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| propriété | Integer | → | 1 = Dialogue d'impression, 2 = Unité du document |
-| valeur | Integer | → | Valeur de la propriété |
+| zone | Integer | → | Référence de la zone |
+| propriété | Integer | → | 1 = Dialogue d'impression, 2 = Unité du document |
+| valeur | Integer | → | Valeur de la propriété |
@@ -40,7 +40,7 @@ Si la valeur du paramètre *propriété* ou *valeur* est incorrecte, l’erreur
| | |
| --- | --- |
| Numéro de commande | 772 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
index 8ff706506de50b..5219f63f415c36 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-header-and-footer
displayed_sidebar: docs
---
-**QR SET HEADER AND FOOTER** ( *zone* ; *sélecteur* ; *titreGauche* ; *titreCentre* ; *titreDroit* ; *hauteur* {; *image* {; *alignementImage*}} )
+**QR SET HEADER AND FOOTER** ( *zone* : Integer ; *sélecteur* : Integer ; *titreGauche* : Text ; *titreCentre* : Text ; *titreDroit* : Text ; *hauteur* : Integer {; *image* : Picture {; *alignementImage* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| sélecteur | Integer | → | 1 = En-tête, 2 = Pied de page |
-| titreGauche | Text | → | Texte affiché sur le côté gauche |
-| titreCentre | Text | → | Texte affiché au centre |
-| titreDroit | Text | → | Texte affiché sur le côté droit |
-| hauteur | Integer | → | Hauteur de l'en-tête ou du pied de page |
-| image | Picture | → | Image à afficher |
-| alignementImage | Integer | → | Alignement de l'image |
+| zone | Integer | → | Référence de la zone |
+| sélecteur | Integer | → | 1 = En-tête, 2 = Pied de page |
+| titreGauche | Text | → | Texte affiché sur le côté gauche |
+| titreCentre | Text | → | Texte affiché au centre |
+| titreDroit | Text | → | Texte affiché sur le côté droit |
+| hauteur | Integer | → | Hauteur de l'en-tête ou du pied de page |
+| image | Picture | → | Image à afficher |
+| alignementImage | Integer | → | Alignement de l'image |
@@ -60,7 +60,7 @@ L'instruction suivante place le libellé “Titre du centre” dans l'en-tête d
| | |
| --- | --- |
| Numéro de commande | 774 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
index 1b003366c55f38..5a35838881d29b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-html-template
displayed_sidebar: docs
---
-**QR SET HTML TEMPLATE** ( *zone* ; *modèle* )
+**QR SET HTML TEMPLATE** ( *zone* : Integer ; *modèle* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| modèle | Text | → | Code du modèle HTML |
+| zone | Integer | → | Référence de la zone |
+| modèle | Text | → | Code du modèle HTML |
@@ -74,7 +74,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 750 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
index bb58dc8873163c..42f1afdd3d4bcd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-info-column
displayed_sidebar: docs
---
-**QR SET INFO COLUMN** ( *zone* ; *numColonne* ; *titre* ; *objet* ; *cachée* ; *taille* ; *valeursRépétées* ; *formatAffich* )
+**QR SET INFO COLUMN** ( *zone* : Integer ; *numColonne* : Integer ; *titre* : Text ; *objet* : Field, Variable ; *cachée* : Integer ; *taille* : Integer ; *valeursRépétées* : Integer ; *formatAffich* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| titre | Text | → | Titre de la colonne |
-| objet | Field, Variable | → | Objet affecté à la colonne |
-| cachée | Integer | → | 0 = visible, 1 = invisible |
-| taille | Integer | → | Largeur de la colonne |
-| valeursRépétées | Integer | → | 0 = Non répétées, 1 = Répétées |
-| formatAffich | Text | → | Format d'affichage |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| titre | Text | → | Titre de la colonne |
+| objet | Field, Variable | → | Objet affecté à la colonne |
+| cachée | Integer | → | 0 = visible, 1 = invisible |
+| taille | Integer | → | Largeur de la colonne |
+| valeursRépétées | Integer | → | 0 = Non répétées, 1 = Répétées |
+| formatAffich | Text | → | Format d'affichage |
@@ -110,7 +110,7 @@ Si le paramètre *numColonne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 765 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
index a687a216677920..52166e79376227 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-info-row
displayed_sidebar: docs
---
-**QR SET INFO ROW** ( *zone* ; *ligne* ; *cachée* )
+**QR SET INFO ROW** ( *zone* : Integer ; *ligne* : Integer ; *cachée* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| ligne | Integer | → | Ligne |
-| cachée | Integer | → | 0 = Visible, 1 = Cachée |
+| zone | Integer | → | Référence de la zone |
+| ligne | Integer | → | Ligne |
+| cachée | Integer | → | 0 = Visible, 1 = Cachée |
@@ -57,7 +57,7 @@ L'instruction suivante masque le contenu de la ligne Détail :
| | |
| --- | --- |
| Numéro de commande | 763 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
index 3a61f739fa070b..a73f56fa061be2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-kind
displayed_sidebar: docs
---
-**QR SET REPORT KIND** ( *zone* ; *type* )
+**QR SET REPORT KIND** ( *zone* : Integer ; *type* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| type | Integer | → | Type d'état |
+| zone | Integer | → | Référence de la zone |
+| type | Integer | → | Type d'état |
@@ -39,7 +39,7 @@ Si la valeur de *type* est incorrecte, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 738 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
index 19e566800272ec..6a6bf7b1a55f4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-table
displayed_sidebar: docs
---
-**QR SET REPORT TABLE** ( *zone* ; *numTable* )
+**QR SET REPORT TABLE** ( *zone* : Integer ; *numTable* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numTable | Integer | → | Numéro de table |
+| zone | Integer | → | Référence de la zone |
+| numTable | Integer | → | Numéro de table |
@@ -32,7 +32,7 @@ Si le paramètre *numTable* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 757 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
index ef37a50575f37a..f951f37d5ad225 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-selection
displayed_sidebar: docs
---
-**QR SET SELECTION** ( *zone* ; *gauche* ; *haut* {; *droite* {; *bas*}} )
+**QR SET SELECTION** ( *zone* : Integer ; *gauche* : Integer ; *haut* : Integer {; *droite* : Integer {; *bas* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| gauche | Integer | → | Limite gauche |
-| haut | Integer | → | Limite supérieure |
-| droite | Integer | → | Limite droite |
-| bas | Integer | → | Limite inférieure |
+| zone | Integer | → | Référence de la zone |
+| gauche | Integer | → | Limite gauche |
+| haut | Integer | → | Limite supérieure |
+| droite | Integer | → | Limite droite |
+| bas | Integer | → | Limite inférieure |
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 794 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
index 79e3b79b37b847..92e6446dd3e386 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-sorts
displayed_sidebar: docs
---
-**QR SET SORTS** ( *zone* ; *tabColonnes* {; *tabTris*} )
+**QR SET SORTS** ( *zone* : Integer ; *tabColonnes* : Real array {; *tabTris* : Real array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| tabColonnes | Real array | → | Colonnes |
-| tabTris | Real array | → | Ordres de tris |
+| zone | Integer | → | Référence de la zone |
+| tabColonnes | Real array | → | Colonnes |
+| tabTris | Real array | → | Ordres de tris |
@@ -51,7 +51,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 752 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
index 4fd6fb8cb3a1ce..6cbc5c47d67b7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-text-property
displayed_sidebar: docs
---
-**QR SET TEXT PROPERTY** ( *zone* ; *numColonne* ; *numLigne* ; *propriété* ; *valeur* )
+**QR SET TEXT PROPERTY** ( *zone* : Integer ; *numColonne* : Integer ; *numLigne* : Integer ; *propriété* : Integer ; *valeur* : Integer, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| numLigne | Integer | → | Numéro de ligne |
-| propriété | Integer | → | Numéro de propriété |
-| valeur | Integer, Text | → | Valeur de la propriété définie |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| numLigne | Integer | → | Numéro de ligne |
+| propriété | Integer | → | Numéro de propriété |
+| valeur | Integer, Text | → | Valeur de la propriété définie |
@@ -90,7 +90,7 @@ Cette méthode définit plusieurs attributs pour l'intitulé de la première col
| | |
| --- | --- |
| Numéro de commande | 759 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
index 704d89c541c64f..d5aa9a351e9584 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
@@ -5,14 +5,14 @@ slug: /commands/qr-set-totals-data
displayed_sidebar: docs
---
-**QR SET TOTALS DATA** ( *zone* ; *numColonne* ; *numRupture* ; *opérateur* )
**QR SET TOTALS DATA** ( *zone* ; *numColonne* ; *numRupture* ; *valeur* )
+**QR SET TOTALS DATA** ( *zone* : Integer ; *numColonne* : Integer ; *numRupture* : Integer ; *opérateur* : Entier long, Chaîne )
**QR SET TOTALS DATA** ( *zone* : Integer ; *numColonne* : Integer ; *numRupture* : Integer ; *valeur* : Entier long, Chaîne )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| numColonne | Integer | → | Numéro de colonne |
-| numRupture | Integer | → | Numéro de rupture |
-| opérateur | valeur | Entier long, Chaîne | → | Opérateur pour la cellule ou Contenu de la cellule |
+| zone | Integer | → | Référence de la zone |
+| numColonne | Integer | → | Numéro de colonne |
+| numRupture | Integer | → | Numéro de rupture |
+| opérateur | valeur | Entier long, Chaîne | → | Opérateur pour la cellule ou Contenu de la cellule |
@@ -101,7 +101,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 767 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
index da5f239420599d..e649791e550254 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-totals-spacing
displayed_sidebar: docs
---
-**QR SET TOTALS SPACING** ( *zone* ; *sousTotal* ; *valeur* )
+**QR SET TOTALS SPACING** ( *zone* : Integer ; *sousTotal* : Integer ; *valeur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| zone | Integer | → | Référence de la zone |
-| sousTotal | Integer | → | Numéro de sous-total |
-| valeur | Integer | → | 0=pas d'espace, 32000=insère un saut de page, >0=espace ajouté sous le niveau de rupture, <0=augmentation proportionnelle |
+| zone | Integer | → | Référence de la zone |
+| sousTotal | Integer | → | Numéro de sous-total |
+| valeur | Integer | → | 0=pas d'espace, 32000=insère un saut de page, >0=espace ajouté sous le niveau de rupture, <0=augmentation proportionnelle |
@@ -43,7 +43,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 761 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
index fd62c5cf520e20..5a3e01a06f866c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-by-attribute
displayed_sidebar: docs
---
-**QUERY BY ATTRIBUTE** ( {*laTable*}{;}{*opConj* ;} *champObjet* ; *cheminAttribut* ; *opRech* ; *valeur* {; *} )
+**QUERY BY ATTRIBUTE** ( {*laTable* : Table}{;}{*opConj* : Operator ;} *champObjet* : Field ; *cheminAttribut* : Text ; *opRech* : Text, Operator ; *valeur* : Text, Real, Date, Time {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
-| opConj | Operator | → | Opérateur à utiliser pour combiner plusieurs requêtes (le cas échéant) |
-| champObjet | Field | → | Champ objet dont les attributs sont à utiliser pour la recherche |
-| cheminAttribut | Text | → | Nom ou chemin d'attribut |
-| opRech | Text, Operator | → | Opérateur de recherche (comparateur) |
-| valeur | Text, Number, Date, Time | → | Valeur à comparer |
-| * | Opérateur | → | Attente d'exécution de la recherche |
+| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
+| opConj | Operator | → | Opérateur à utiliser pour combiner plusieurs requêtes (le cas échéant) |
+| champObjet | Field | → | Champ objet dont les attributs sont à utiliser pour la recherche |
+| cheminAttribut | Text | → | Nom ou chemin d'attribut |
+| opRech | Text, Operator | → | Opérateur de recherche (comparateur) |
+| valeur | Text, Real, Date, Time | → | Valeur à comparer |
+| * | Operator | → | Attente d'exécution de la recherche |
@@ -415,7 +415,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 1331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
index 39b261e8a8bc4b..4b14dbe54ec858 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-example
displayed_sidebar: docs
---
-**QUERY BY EXAMPLE** ( {*laTable*}{;}{*} )
+**QUERY BY EXAMPLE** ( {*laTable* : Table}{;}{*} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle une sélection d'enregistrements doit être retournée ou Table par défaut si ce paramètre est omis |
-| * | Opérateur | → | Masquer les barres de défilement |
+| laTable | Table | → | Table de laquelle une sélection d'enregistrements doit être retournée ou Table par défaut si ce paramètre est omis |
+| * | Opérateur | → | Masquer les barres de défilement |
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Valider ou appuie sur la touche Entrée, l
| | |
| --- | --- |
| Numéro de commande | 292 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
index 0b47c42e65b776..0feb44b59e131d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-formula
displayed_sidebar: docs
---
-**QUERY BY FORMULA** ( *laTable* {; *formule*} )
+**QUERY BY FORMULA** ( *laTable* : Table {; *formule* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer la recherche |
-| formule | Boolean | → | Formule de recherche |
+| laTable | Table | → | Table dans laquelle effectuer la recherche |
+| formule | Boolean | → | Formule de recherche |
@@ -86,7 +86,7 @@ Dans cet exemple, on utilise une jointure pour rechercher toutes les lignes de f
| | |
| --- | --- |
| Numéro de commande | 48 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
index eb04fca59c1dfa..cb72873f8343cd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-sql
displayed_sidebar: docs
---
-**QUERY BY SQL** ( {*laTable* ;} *formuleSQL* )
+**QUERY BY SQL** ( {*laTable* : Table ;} *formuleSQL* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle retourner une sélection d’enregistrements ou Table par défaut si ce paramètre est omis |
-| formuleSQL | Text | → | Formule de recherche SQL valide représentant la clause WHERE de la requête SELECT |
+| laTable | Table | → | Table de laquelle retourner une sélection d’enregistrements ou Table par défaut si ce paramètre est omis |
+| formuleSQL | Text | → | Formule de recherche SQL valide représentant la clause WHERE de la requête SELECT |
@@ -163,7 +163,7 @@ Si le format de la condition de recherche est correct, la variable système OK p
| | |
| --- | --- |
| Numéro de commande | 942 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
index 923d4aa9384664..f9d492e359951a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-selection-by-attribute
displayed_sidebar: docs
---
-**QUERY SELECTION BY ATTRIBUTE** ( {*laTable*}{;}{*opConj* ;} *champObjet* ; *cheminAttribut* ; *opRecherche* ; *valeur* {; *} )
+**QUERY SELECTION BY ATTRIBUTE** ( {*laTable* : Table}{;}{*opConj* : Operator ;} *champObjet* : Field ; *cheminAttribut* : Text ; *opRecherche* : Text, Operator ; *valeur* : Text, Real, Date, Time {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
-| opConj | Operator | → | Opérateur à utiliser pour combiner plusieurs requêtes (le cas échéant) |
-| champObjet | Field | → | Champ objet dont les attributs sont à utiliser pour la recherche |
-| cheminAttribut | Text | → | Nom ou chemin d'attribut |
-| opRecherche | Text, Operator | → | Opérateur de recherche (comparateur) |
-| valeur | Text, Number, Date, Time | → | Valeur à comparer |
-| * | Opérateur | → | Attente d'exécution de la recherche |
+| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
+| opConj | Operator | → | Opérateur à utiliser pour combiner plusieurs requêtes (le cas échéant) |
+| champObjet | Field | → | Champ objet dont les attributs sont à utiliser pour la recherche |
+| cheminAttribut | Text | → | Nom ou chemin d'attribut |
+| opRecherche | Text, Operator | → | Opérateur de recherche (comparateur) |
+| valeur | Text, Real, Date, Time | → | Valeur à comparer |
+| * | Operator | → | Attente d'exécution de la recherche |
@@ -51,7 +51,7 @@ Vous souhaitez trouver les personnes âgées entre 20 et 30 ans parmi les enregi
| | |
| --- | --- |
| Numéro de commande | 1424 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
index ebbeb4a2fba889..2a9a72481ec9f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-by-formula
displayed_sidebar: docs
---
-**QUERY SELECTION BY FORMULA** ( *laTable* {; *formule*} )
+**QUERY SELECTION BY FORMULA** ( *laTable* : Table {; *formule* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer la recherche parmi la sélection courante |
-| formule | Boolean | → | Formule de recherche |
+| laTable | Table | → | Table dans laquelle effectuer la recherche parmi la sélection courante |
+| formule | Boolean | → | Formule de recherche |
@@ -36,7 +36,7 @@ Pour plus d'informations, reportez-vous à la description de la commande [QUERY
| | |
| --- | --- |
| Numéro de commande | 207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
index f96120b9a10599..09bee3f8247b95 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-with-array
displayed_sidebar: docs
---
-**QUERY SELECTION WITH ARRAY** ( *champCible* ; *tableau* )
+**QUERY SELECTION WITH ARRAY** ( *champCible* : Field ; *tableau* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champCible | Field | → | Champ duquel comparer les valeurs |
-| tableau | Array | → | Tableau des valeurs recherchées |
+| champCible | Field | → | Champ duquel comparer les valeurs |
+| tableau | Array | → | Tableau des valeurs recherchées |
@@ -34,7 +34,7 @@ Pour plus d’informations, reportez-vous à la description de la commande [QUER
| | |
| --- | --- |
| Numéro de commande | 1050 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
index d445b6aad31e2f..29342e8665be4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
@@ -5,13 +5,13 @@ slug: /commands/query-selection
displayed_sidebar: docs
---
-**QUERY SELECTION** ( {*laTable* }{;}{ *critère* {; *}} )
+**QUERY SELECTION** ( {*laTable* : Table }{;}{ *critère* : Expression {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle effectuer la recherche ou ou Table par défaut si ce paramètre est omis |
-| critère | Expression | → | Lignes de recherche |
-| * | Opérateur | → | Attente d'exécution de la recherche |
+| laTable | Table | → | Table dans laquelle effectuer la recherche ou ou Table par défaut si ce paramètre est omis |
+| critère | Expression | → | Lignes de recherche |
+| * | Opérateur | → | Attente d'exécution de la recherche |
@@ -49,7 +49,7 @@ Vous trouvez donc toutes les sociétés basées à Paris, dont l'activité est b
| | |
| --- | --- |
| Numéro de commande | 341 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
index fbd4b330172e12..c9dcf9d4769389 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-with-array
displayed_sidebar: docs
---
-**QUERY WITH ARRAY** ( *champCible* ; *tableau* )
+**QUERY WITH ARRAY** ( *champCible* : Field ; *tableau* : Array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champCible | Field | → | Champ duquel comparer les valeurs |
-| tableau | Array | → | Tableau des valeurs recherchées |
+| champCible | Field | → | Champ duquel comparer les valeurs |
+| tableau | Array | → | Tableau des valeurs recherchées |
@@ -45,7 +45,7 @@ Cet exemple permet de récupérer les enregistrements des clients français et a
| | |
| --- | --- |
| Numéro de commande | 644 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md
index aae4c451e4279d..77cd32d55f14df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/query.md
@@ -5,13 +5,13 @@ slug: /commands/query
displayed_sidebar: docs
---
-**QUERY** ( {*laTable* }{;}{ *critère* {; *}} )
+**QUERY** ( {*laTable* : Table }{;}{ *critère* : Expression {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
-| critère | Expression | → | Critère de recherche |
-| * | Opérateur | → | Attente d'exécution de la recherche |
+| laTable | Table | → | Table dans laquelle la sélection est créée ou Table par défaut si ce paramètre est omis |
+| critère | Expression | → | Critère de recherche |
+| * | Opérateur | → | Attente d'exécution de la recherche |
@@ -314,7 +314,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
index 74dcb944478538..1481d8a9f845be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
@@ -5,11 +5,11 @@ slug: /commands/quit-4d
displayed_sidebar: docs
---
-**QUIT 4D** {( *délai* )}
+**QUIT 4D** ({ *délai* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| délai | Integer | → | Délai (secondes) avant que le serveur ne quitte |
+| délai | Integer | → | Délai (secondes) avant que le serveur ne quitte |
@@ -70,6 +70,6 @@ La méthode projet suivante est associée à la commande **Quitter** du menu **F
| | |
| --- | --- |
| Numéro de commande | 291 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md
index a7557d9170a542..5c0691c40f61d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/random.md
@@ -39,6 +39,6 @@ L'exemple suivant assigne une valeur entière aléatoire entre 10 et 30 à la va
| | |
| --- | --- |
| Numéro de commande | 100 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
index 0189c9977ec0e9..4520237b8ba8aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
@@ -5,11 +5,11 @@ slug: /commands/read-only-state
displayed_sidebar: docs
---
-**Read only state** {( *laTable* )} : Boolean
+**Read only state** ( *laTable* : Table ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle il faut tester l'état ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table pour laquelle il faut tester l'état ou Table par défaut si ce paramètre est omis |
| Résultat | Boolean | ← | Accès à la table est lecture seulement (Vrai) ou Accès à la table est lecture-écriture (Faux) |
@@ -42,6 +42,6 @@ L'exemple suivant teste le statut de la table \[Factures\]. Si elle est en lectu
| | |
| --- | --- |
| Numéro de commande | 362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
index e51d8015b64d1a..cebb7840e377cd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
@@ -5,11 +5,11 @@ slug: /commands/read-only
displayed_sidebar: docs
---
-**READ ONLY** {( laTable )}
**READ ONLY** {( * )}
+**READ ONLY** ({ laTable })
**READ ONLY** ({ * })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | * | Table, Opérateur | → | Table à définir en mode lecture seulement ou * pour toutes les tables ou Table par défaut si ce paramètre est omis |
+| laTable | * | Table, Opérateur | → | Table à définir en mode lecture seulement ou * pour toutes les tables ou Table par défaut si ce paramètre est omis |
@@ -32,6 +32,6 @@ Vous pouvez utiliser **READ ONLY** lorsqu'il n'est pas utile de modifier les enr
| | |
| --- | --- |
| Numéro de commande | 145 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
index 3c374b30f9dc7f..653172a703394e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/read-picture-file
displayed_sidebar: docs
---
-**READ PICTURE FILE** ( *nomFichier* ; *image* {; *} )
+**READ PICTURE FILE** ( *nomFichier* : Text ; *image* : Picture {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom ou chemin d’accès complet du fichier à lire, ou chaîne vide |
+| nomFichier | Text | → | Nom ou chemin d’accès complet du fichier à lire, ou chaîne vide |
| image | Picture | ← | Champ ou variable recevant l’image |
-| * | Opérateur | → | Si passé = accepter tout type de fichier |
+| * | Opérateur | → | Si passé = accepter tout type de fichier |
@@ -46,7 +46,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 678 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
index e58edb69075a80..615d14a7e71c10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
@@ -5,11 +5,11 @@ slug: /commands/read-write
displayed_sidebar: docs
---
-**READ WRITE** {( laTable )}
**READ WRITE** {( * )}
+**READ WRITE** ({ laTable })
**READ WRITE** ({ * })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | * | Table, Opérateur | → | Table à définir en mode lecture/écriture ou * pour toutes les tables ou Table par défaut si ce paramètre est omis |
+| laTable | * | Table, Opérateur | → | Table à définir en mode lecture/écriture ou * pour toutes les tables ou Table par défaut si ce paramètre est omis |
@@ -36,6 +36,6 @@ Utilisez **READ WRITE** lorsque vous devez modifier un enregistrement et sauvega
| | |
| --- | --- |
| Numéro de commande | 146 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
index aecf6ba1e592fd..e1cfbb5e494036 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/real-to-blob
displayed_sidebar: docs
---
-**REAL TO BLOB** ( *réel* ; *blob* ; *formatRéel* {; offset } )
**REAL TO BLOB** ( *réel* ; *blob* ; *formatRéel* {; *} )
+**REAL TO BLOB** ( *réel* : Real ; *blob* : Blob ; *formatRéel* : Integer {; offset } )
**REAL TO BLOB** ( *réel* : Real ; *blob* : Blob ; *formatRéel* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réel | Real | → | Valeur de type Réel à écrire dans le BLOB |
-| blob | Blob | → | BLOB devant recevoir la valeur Réel |
-| formatRéel | Integer | → | 0=Format réel natif, 1=Format réel étendu, 2=Format réel double Macintosh, 3=Format réel double Windows |
-| offset | * | Variable, Opérateur | ↔ | Offset (en octets) dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
-| ||| Nouvel offset après l'écriture si * omis |
+| réel | Real | → | Valeur de type Réel à écrire dans le BLOB |
+| Blob | Blob | → | BLOB devant recevoir la valeur Réel |
+| formatRéel | Integer | → | 0=Format réel natif, 1=Format réel étendu, 2=Format réel double Macintosh, 3=Format réel double Windows |
+| offset | * | Variable, Opérateur | ↔ | Offset (en octets) dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
+| | | | Nouvel offset après l'écriture si * omis |
@@ -139,6 +139,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 552 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
index c2ef18e8be2c32..b1ed8e923a47e7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
@@ -5,7 +5,7 @@ slug: /commands/receive-buffer
displayed_sidebar: docs
---
-**RECEIVE BUFFER** ( *varRéception* )
+**RECEIVE BUFFER** ( *varRéception* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -70,7 +70,7 @@ Notez que l'accès à la variable interprocess *◊vtBuffer* doit être protég
| | |
| --- | --- |
| Numéro de commande | 172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
index 77acf5760e5fa1..c78d6f31b18a41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
@@ -5,13 +5,13 @@ slug: /commands/receive-packet
displayed_sidebar: docs
---
-**RECEIVE PACKET** ( {*docRef* ;} *réceptVar* ; *stopChar* )
**RECEIVE PACKET** ( {*docRef* ;} *réceptVar* ; *numBytes* )
+**RECEIVE PACKET** ( {*docRef* : Time ;} *réceptVar* : Text, Blob ; *stopChar* )
**RECEIVE PACKET** ( {*docRef* : Time ;} *réceptVar* : Text, Blob ; *numBytes* )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Numéro de référence de document ou canal courant (port série ou document) |
+| docRef | Time | → | Numéro de référence de document ou canal courant (port série ou document) |
| réceptVar | Text, Blob | ← | Variable devant recevoir les données |
-| stopCar | nbOctets | Chaîne, Entier long | → | Caractère(s) au(x)quel(s) stopper la réception des données ou Nombre d'octets à recevoir |
+| stopCar | nbOctets | Chaîne, Entier long | → | Caractère(s) au(x)quel(s) stopper la réception des données ou Nombre d'octets à recevoir |
@@ -118,7 +118,7 @@ Après un appel à **RECEIVE PACKET**, la variable système OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 104 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
index 3b74e483faf34d..5df9ef36800583 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
@@ -5,11 +5,11 @@ slug: /commands/receive-record
displayed_sidebar: docs
---
-**RECEIVE RECORD** {( *laTable* )}
+**RECEIVE RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dans laquelle recevoir l'enregistrement, ou Table par défaut si omis |
+| laTable | Table | → | Table dans laquelle recevoir l'enregistrement, ou Table par défaut si omis |
@@ -158,7 +158,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est correctement r
| | |
| --- | --- |
| Numéro de commande | 79 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
index 4cf22f80e935f1..67c759d822cf0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
@@ -5,7 +5,7 @@ slug: /commands/receive-variable
displayed_sidebar: docs
---
-**RECEIVE VARIABLE** ( *variable* )
+**RECEIVE VARIABLE** ( *variable* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -45,7 +45,7 @@ La variable système OK prend la valeur 1 si la variable est correctement reçue
| | |
| --- | --- |
| Numéro de commande | 81 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
index 52651b98757e07..85335f1a1954db 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
@@ -5,11 +5,11 @@ slug: /commands/record-number
displayed_sidebar: docs
---
-**Record number** {( *laTable* )} : Integer
+**Record number** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle vous souhaitez obtenir le numéro de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle vous souhaitez obtenir le numéro de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
| Résultat | Integer | ← | Numéro d'enregistrement courant |
@@ -50,6 +50,6 @@ L'exemple suivant sauvegarde le numéro d'enregistrement courant puis cherche da
| | |
| --- | --- |
| Numéro de commande | 243 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
index 1dcaa0a618df73..10cc0d12b5b7f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-selection
displayed_sidebar: docs
---
-**Records in selection** {( *laTable* )} : Integer
+**Records in selection** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez connaître le nombre d'enregistrements de la sélection courante ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table dont vous souhaitez connaître le nombre d'enregistrements de la sélection courante ou Table par défaut si ce paramètre est omis |
| Résultat | Integer | ← | Nombre d'enregistrements dans la sélection courante de table |
@@ -39,6 +39,6 @@ L'exemple suivant propose une technique de boucle couramment utilisée pour se d
| | |
| --- | --- |
| Numéro de commande | 76 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
index 38e36f92bf5abc..fedfd49f57ae9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-set
displayed_sidebar: docs
---
-**Records in set** ( *ensemble* ) : Integer
+**Records in set** ( *ensemble* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble | Text | → | Nom de l'ensemble à tester |
+| ensemble | Text | → | Nom de l'ensemble à tester |
| Résultat | Integer | ← | Nombre d'enregistrements dans l'ensemble |
@@ -39,6 +39,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte qui indique le pourcen
| | |
| --- | --- |
| Numéro de commande | 195 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
index 2efe71f3d4bc2c..0b5331a839d3b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-table
displayed_sidebar: docs
---
-**Records in table** {( *laTable* )} : Integer
+**Records in table** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle retourner le nombre total d'enregistrements ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle retourner le nombre total d'enregistrements ou Table par défaut si ce paramètre est omis |
| Résultat | Integer | ← | Nombre total d'enregistrements dans table |
@@ -35,6 +35,6 @@ L'exemple suivant affiche une alerte indiquant le nombre d'enregistrements de la
| | |
| --- | --- |
| Numéro de commande | 83 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
index 9ed7c04b92b2be..de7c284a4260e7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
@@ -5,11 +5,11 @@ slug: /commands/redraw-window
displayed_sidebar: docs
---
-**REDRAW WINDOW** {( *fenêtre* )}
+**REDRAW WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
@@ -30,6 +30,6 @@ Si vous omettez le paramètre *fenêtre*, **REDRAW WINDOW** s'appliquera à la f
| | |
| --- | --- |
| Numéro de commande | 456 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
index cc6524e1980c1b..6e97308979084c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
@@ -5,11 +5,11 @@ slug: /commands/redraw
displayed_sidebar: docs
---
-**REDRAW** ( *objet* )
+**REDRAW** ( *objet* : any )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | any | → | Table de laquelle redessiner le sous-formulaire ou Champ duquel redessiner la zone ou Variable de laquelle redessiner la zone ou List box à mettre à jour |
+| objet | any | → | Table de laquelle redessiner le sous-formulaire ou Champ duquel redessiner la zone ou Variable de laquelle redessiner la zone ou List box à mettre à jour |
@@ -28,6 +28,6 @@ Dans le contexte des list box en mode sélection, l’instruction **REDRAW** app
| | |
| --- | --- |
| Numéro de commande | 174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
index 4421ea5eb8182a..67a592d621593f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
@@ -5,11 +5,11 @@ slug: /commands/reduce-restore-window
displayed_sidebar: docs
---
-**REDUCE RESTORE WINDOW** ( *window* )
+**REDUCE RESTORE WINDOW** ( *window* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| window | Integer | → | Numéro de référence de la fenêtre |
+| window | Integer | → | Numéro de référence de la fenêtre |
@@ -35,6 +35,6 @@ La commande permet de basculer l'état de la fenêtre :
| | |
| --- | --- |
| Numéro de commande | 1829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
index 357a7dc24d8015..7e93e9c0428d33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
@@ -5,12 +5,12 @@ slug: /commands/reduce-selection
displayed_sidebar: docs
---
-**REDUCE SELECTION** ( {*laTable* ;} *nombre* )
+**REDUCE SELECTION** ( {*laTable* : Table ;} *nombre* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle réduire la sélection ou Table par défaut si ce paramètre est omis |
-| nombre | Integer | → | Nombre d'enregistrements à conserver |
+| laTable | Table | → | Table de laquelle réduire la sélection ou Table par défaut si ce paramètre est omis |
+| nombre | Integer | → | Nombre d'enregistrements à conserver |
@@ -64,7 +64,7 @@ L'exemple suivant établit des statistiques pour une compétition mondiale parmi
| | |
| --- | --- |
| Numéro de commande | 351 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
index d1cef330ed75d6..f5ef4fa4b6b0b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Vous souhaitez mettre à jour votre licence et recevoir un message à la fin de
| | |
| --- | --- |
| Numéro de commande | 1336 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
index cd686fadeeca17..fc23ecf4825fc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
@@ -5,11 +5,11 @@ slug: /commands/regenerate-missing-table
displayed_sidebar: docs
---
-**REGENERATE MISSING TABLE** ( *nomTable* )
+**REGENERATE MISSING TABLE** ( *nomTable* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomTable | Text | → | Nom de table manquante à regénérer |
+| nomTable | Text | → | Nom de table manquante à regénérer |
@@ -65,6 +65,6 @@ Cette méthode regénère toutes les tables manquantes éventuellement présente
| | |
| --- | --- |
| Numéro de commande | 1126 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
index c6de6c6862c1c3..ab993604aa73b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
@@ -14,11 +14,11 @@ displayed_sidebar: docs
-**REGISTER CLIENT** ( *nomClient* )
+**REGISTER CLIENT** ( *nomClient* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomClient | Text | → | Nom de la session cliente 4D |
+| nomClient | Text | → | Nom de la session cliente 4D |
@@ -134,7 +134,7 @@ Si le poste client est correctement inscrit, la variable système OK prend la va
| | |
| --- | --- |
| Numéro de commande | 648 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
index 2e3d1798686b8d..638d7c6edd9e77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| phraseSecrèteCour | cléDonnéesCour | Texte, Objet | → | Phrase secrète courante (texte) ou clé de chiffrement des données courante (objet) |
+| phraseSecrèteCour | cléDonnéesCour | Texte, Objet | → | Phrase secrète courante (texte) ou clé de chiffrement des données courante (objet) |
| Résultat | Boolean | ← | Vrai si la clé de chiffrement des données a été ajoutée avec succès au trousseau 4D. Faux si elle était déjà dans le trousseau 4D. |
@@ -54,6 +54,6 @@ Passez le paramètre *phraseSecrèteCour* ou *cléDonnéesCour*, qui définit la
| | |
| --- | --- |
| Numéro de commande | 1638 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
index 362e42e537b98e..8a1b0ba5678a9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
@@ -5,11 +5,11 @@ slug: /commands/reject-new-remote-connections
displayed_sidebar: docs
---
-**REJECT NEW REMOTE CONNECTIONS** ( *statutRejet* )
+**REJECT NEW REMOTE CONNECTIONS** ( *statutRejet* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| statutRejet | Boolean | → | Vrai si rejet des nouvelles connexions, sinon Faux. |
+| statutRejet | Boolean | → | Vrai si rejet des nouvelles connexions, sinon Faux. |
@@ -45,6 +45,6 @@ Vous souhaitez rejeter puis accepter les nouvelles connexions distantes :
| | |
| --- | --- |
| Numéro de commande | 1635 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
index da92414d492099..752a4c184eb2cd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
@@ -5,11 +5,11 @@ slug: /commands/reject
displayed_sidebar: docs
---
-**REJECT** {( *leChamp* )}
+**REJECT** ({ *leChamp* })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ dont la saisie doit être refusée |
+| leField | Field | → | Champ dont la saisie doit être refusée |
@@ -68,6 +68,6 @@ L'exemple suivant est une partie de la méthode objet d'un champ *\[Employés\]S
| | |
| --- | --- |
| Numéro de commande | 38 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
index 4cfc3f0fde8810..c6d75432d269e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ de la table N (d'où part le lien) |
+| leField | Field | → | Champ de la table N (d'où part le lien) |
@@ -39,7 +39,7 @@ Prenons l'exemple d'une base de données comportant une table *\[Factures\]* don
| | |
| --- | --- |
| Numéro de commande | 340 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
index f6d5b8bcdc2acd..e121a8670c61a0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| table1 | champ1 | Table, Champ | → | Table pour laquelle établir tous les liens de 1 vers N ou champ 1 |
+| table1 | champ1 | Table, Champ | → | Table pour laquelle établir tous les liens de 1 vers N ou champ 1 |
@@ -66,7 +66,7 @@ Par exemple, la méthode suivante effectue une boucle sur chaque enregistrement
| | |
| --- | --- |
| Numéro de commande | 262 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
index 2edbf1b376381d..0246af01619a32 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one-selection
displayed_sidebar: docs
---
-**RELATE ONE SELECTION** ( *tableN* ; *table1* )
+**RELATE ONE SELECTION** ( *tableN* : Table ; *table1* : Table )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableN | Table | → | Nom de la table N (d'où part le lien) |
-| table1 | Table | → | Nom de la table 1 (où arrive le lien) |
+| tableN | Table | → | Nom de la table N (d'où part le lien) |
+| table1 | Table | → | Nom de la table 1 (où arrive le lien) |
@@ -62,7 +62,7 @@ L'exemple suivant parvient au même résultat que le précédent :
| | |
| --- | --- |
| Numéro de commande | 349 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
index 0ef11c992579a0..ba396047078a64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one
displayed_sidebar: docs
---
-**RELATE ONE** ( *tableN* {; *discriminant*} )
**RELATE ONE** ( *champN* {; *discriminant*} )
+**RELATE ONE** ( *tableN* : Table, Champ {; *discriminant* : Field} )
**RELATE ONE** ( *champN* : Table, Champ {; *discriminant* : Field} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableN | champN | Table, Champ | → | Table pour laquelle définir tous les liens automatiques ou Champ avec lien manuel partant vers la table 1 |
-| discriminant | Field | → | Champ discriminant de la table 1 |
+| tableN | champN | Table, Champ | → | Table pour laquelle définir tous les liens automatiques ou Champ avec lien manuel partant vers la table 1 |
+| discriminant | Field | → | Champ discriminant de la table 1 |
@@ -90,7 +90,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 42 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
index 2d9b321f0257ec..ed0e841434e437 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
@@ -5,11 +5,11 @@ slug: /commands/release-menu
displayed_sidebar: docs
---
-**RELEASE MENU** ( *menu* )
+**RELEASE MENU** ( *menu* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Text | → | Référence de menu |
+| menu | Text | → | Référence de menu |
@@ -60,6 +60,6 @@ Cet exemple illustre les cas d'utilisation de cette commande :
| | |
| --- | --- |
| Numéro de commande | 978 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
index 7f252b34000667..afdcca2abe6dd3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
@@ -5,11 +5,11 @@ slug: /commands/reload-external-data
displayed_sidebar: docs
---
-**RELOAD EXTERNAL DATA** ( *leChamp* )
+**RELOAD EXTERNAL DATA** ( *leChamp* : Text, Blob, Picture, Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leChamp | Text, Blob, Picture, Object | → | Champ pour lequel recharger les données |
+| leChamp | Text, Blob, Picture, Object | → | Champ pour lequel recharger les données |
@@ -32,6 +32,6 @@ Il est alors nécessaire de demander le rechargement des données à l'aide de l
| | |
| --- | --- |
| Numéro de commande | 1135 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
index 314f7781c50a40..e53060bebcea93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Lorsque la commande est appelée depuis :
| | |
| --- | --- |
| Numéro de commande | 1739 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
index 546ed58c343c47..fb6115f089cb7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/remove-from-set
displayed_sidebar: docs
---
-**REMOVE FROM SET** ( {*laTable* ;} *ensemble* )
+**REMOVE FROM SET** ( {*laTable* : Table ;} *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
-| ensemble | Text | → | Nom de l'ensemble duquel supprimer l'enregistrement courant |
+| laTable | Table | → | Table de l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| ensemble | Text | → | Nom de l'ensemble duquel supprimer l'enregistrement courant |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 561 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
index 8f399b3271e64e..77dba8734a1aaf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/remove-picture-from-library
displayed_sidebar: docs
---
-**REMOVE PICTURE FROM LIBRARY** ( *refImage* )
**REMOVE PICTURE FROM LIBRARY** ( *nomImage* )
+**REMOVE PICTURE FROM LIBRARY** ( *refImage* : Entier long, Chaîne )
**REMOVE PICTURE FROM LIBRARY** ( *nomImage* : Entier long, Chaîne )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refImage | nomImage | Entier long, Chaîne | → | Numéro de référence ou Nom d'une image de la bibliothèque d'images |
+| refImage | nomImage | Entier long, Chaîne | → | Numéro de référence ou Nom d'une image de la bibliothèque d'images |
@@ -60,7 +60,7 @@ L’exemple suivant supprime de la bibliothèque d’images celles dont le nom c
| | |
| --- | --- |
| Numéro de commande | 567 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
index c304db143e249c..9fc6887ad2d7ed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
@@ -5,15 +5,15 @@ slug: /commands/replace-string
displayed_sidebar: docs
---
-**Replace string** ( *source* ; *obsolète* ; *nouveau* {; *combien*}{; *} ) : Text
+**Replace string** ( *source* : Text ; *obsolète* : Text ; *nouveau* : Text {; *combien* : Integer}{; *} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Chaîne de départ |
-| obsolète | Text | → | Caractère(s) à remplacer |
-| nouveau | Text | → | Chaîne de remplacement (si chaîne vide, toutes les occurrences sont effacées) |
-| combien | Integer | → | Nombre de remplacements à effectuer |
-| * | Opérateur | → | Si passé : évaluation basée sur les codes de caractères |
+| source | Text | → | Chaîne de départ |
+| obsolète | Text | → | Caractère(s) à remplacer |
+| nouveau | Text | → | Chaîne de remplacement (si chaîne vide, toutes les occurrences sont effacées) |
+| combien | Integer | → | Nombre de remplacements à effectuer |
+| * | Opérateur | → | Si passé : évaluation basée sur les codes de caractères |
| Résultat | Text | ← | Chaîne résultante |
@@ -75,6 +75,6 @@ L'exemple suivant illustre le rôle du paramètre \* dans le cadre d'une évalua
| | |
| --- | --- |
| Numéro de commande | 233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md
index c5fa08187fb9fd..e54385d9322d24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/request.md
@@ -5,14 +5,14 @@ slug: /commands/request
displayed_sidebar: docs
---
-**Request** ( *message* {; *réponseDéfaut* {; *titreBoutonOK* {; *titreBoutonAnn*}}} ) : Text
+**Request** ( *message* : Text {; *réponseDéfaut* : Text {; *titreBoutonOK* : Text {; *titreBoutonAnn* : Text}}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Message à afficher dans la boîte de dialogue |
-| réponseDéfaut | Text | → | Valeur par défaut dans la zone de saisie de texte |
-| titreBoutonOK | Text | → | Libellé du bouton OK |
-| titreBoutonAnn | Text | → | Libellé du bouton Annuler |
+| message | Text | → | Message à afficher dans la boîte de dialogue |
+| réponseDéfaut | Text | → | Valeur par défaut dans la zone de saisie de texte |
+| titreBoutonOK | Text | → | Libellé du bouton OK |
+| titreBoutonAnn | Text | → | Libellé du bouton Annuler |
| Résultat | Text | ← | Valeur saisie par l'utilisateur |
@@ -84,7 +84,7 @@ La ligne de code :
| | |
| --- | --- |
| Numéro de commande | 163 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
index 9d8cad76aad25f..ad3ff89a8161de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
@@ -5,12 +5,12 @@ slug: /commands/resize-form-window
displayed_sidebar: docs
---
-**RESIZE FORM WINDOW** ( *largeur* ; *hauteur* )
+**RESIZE FORM WINDOW** ( *largeur* : Integer ; *hauteur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| largeur | Integer | → | Pixels à ajouter ou soustraire à la largeur courante de la fenêtre formulaire |
-| hauteur | Integer | → | Pixels à ajouter ou soustraire à la hauteur courante de la fenêtre formulaire |
+| largeur | Integer | → | Pixels à ajouter ou soustraire à la largeur courante de la fenêtre formulaire |
+| hauteur | Integer | → | Pixels à ajouter ou soustraire à la hauteur courante de la fenêtre formulaire |
@@ -53,6 +53,6 @@ Après l'exécution de cette ligne :
| | |
| --- | --- |
| Numéro de commande | 890 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
index 189a19c3fb3c24..5dbd7593170dfc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-alias
displayed_sidebar: docs
---
-**RESOLVE ALIAS** ( *cheminAlias* ; *cheminCible* )
+**RESOLVE ALIAS** ( *cheminAlias* : Text ; *cheminCible* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAlias | Text | → | Nom ou chemin d’accès complet de l’alias/ du raccourci |
+| cheminAlias | Text | → | Nom ou chemin d’accès complet de l’alias/ du raccourci |
| cheminCible | Text | ← | Nom ou chemin d’accès complet de la cible de l’alias/du raccourci |
@@ -38,7 +38,7 @@ Si *cheminAlias* désigne bien un alias/raccourci, la variable système OK prend
| | |
| --- | --- |
| Numéro de commande | 695 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
index 1c628e461ea489..b090a877fd06e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-pointer
displayed_sidebar: docs
---
-**RESOLVE POINTER** ( *pointeur* ; *nomVar* ; *numTable* ; *numChamp* )
+**RESOLVE POINTER** ( *pointeur* : Pointer ; *nomVar* : Text ; *numTable* : Integer ; *numChamp* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| pointeur | Pointer | → | Pointeur duquel récupérer l'objet référencé |
+| pointeur | Pointer | → | Pointeur duquel récupérer l'objet référencé |
| nomVar | Text | ← | Nom de la variable référencée ou chaîne vide |
| numTable | Integer | ← | Numéro de la table ou de l'élément de tableau référencé(e) ou 0 ou -1 |
| numChamp | Integer | ← | Numéro du champ ou de l'élément de tableau 2D référencé ou 0 ou -1 |
@@ -111,6 +111,6 @@ Voici un exemple de pointeur vers un tableau 2D :
| | |
| --- | --- |
| Numéro de commande | 394 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
index 218d9a744ab4e3..22d7c2313429e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
@@ -5,14 +5,14 @@ slug: /commands/resource-list
displayed_sidebar: docs
---
-**RESOURCE LIST** ( *resType* ; *resNums* ; *resNoms* {; *resFichier*} )
+**RESOURCE LIST** ( *resType* : Text ; *resNums* : Integer array ; *resNoms* : Text array {; *resFichier* : Time} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resType | Text | → | Type de ressource (4 caractères) |
+| resType | Text | → | Type de ressource (4 caractères) |
| resNums | Integer array | ← | Numéros des ressources de ce type |
| resNoms | Text array | ← | Noms des ressources de ce type |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts si ce paramètre est omis |
@@ -75,6 +75,6 @@ L'exemple suivant copie dans la bibliothèque d'images de la base les ressources
| | |
| --- | --- |
| Numéro de commande | 500 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
index 3f7307b11ad527..425165fdec594a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
@@ -5,12 +5,12 @@ slug: /commands/resource-type-list
displayed_sidebar: docs
---
-**RESOURCE TYPE LIST** ( *resTypes* {; *resFichier*} )
+**RESOURCE TYPE LIST** ( *resTypes* : Text array {; *resFichier* : Time} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| resTypes | Text array | ← | Liste des types de ressources disponibles |
-| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts (si ce paramètre est omis) |
+| resFichier | Time | → | Numéro de référence de fichier de ressources ou tous les fichiers de ressources ouverts (si ce paramètre est omis) |
@@ -85,6 +85,6 @@ Une fois que cette méthode est implémentée dans votre base, vous pouvez écri
| | |
| --- | --- |
| Numéro de commande | 499 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
index d3fde196bc63c5..b6b42fb67de52b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
@@ -5,12 +5,12 @@ slug: /commands/restart-4d
displayed_sidebar: docs
---
-**RESTART 4D** {( *délai* {; *message*} )}
+**RESTART 4D** ({ *délai* : Integer {; *message* : Text} })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| délai | Integer | → | Délai (secondes) avant que 4D ne redémarre |
-| message | Text | → | Texte à afficher sur les postes clients |
+| délai | Integer | → | Délai (secondes) avant que 4D ne redémarre |
+| message | Text | → | Texte à afficher sur les postes clients |
@@ -40,7 +40,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1292 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
index 869db4504471cd..2546949425309e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
@@ -5,11 +5,11 @@ slug: /commands/restore-info
displayed_sidebar: docs
---
-**RESTORE INFO** ( *sélecteur* ; *info1* ; *info2* )
+**RESTORE INFO** ( *sélecteur* : Integer ; *info1* : Integer, Date ; *info2* : Text, Time )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Type d’information à récupérer |
+| sélecteur | Integer | → | Type d’information à récupérer |
| info1 | Integer, Date | ← | Valeur 1 du sélecteur |
| info2 | Text, Time | ← | Valeur 2 du sélecteur |
@@ -42,6 +42,6 @@ Le type et le contenu des paramètres *info1* et *info2* dépendent de la valeur
| | |
| --- | --- |
| Numéro de commande | 889 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
index ef914d0379f5d3..5c1b5ce6aceff3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
@@ -5,12 +5,12 @@ slug: /commands/restore
displayed_sidebar: docs
---
-**RESTORE** {( *cheminArchive* {; *cheminDossierDest*} )}
+**RESTORE** ({ *cheminArchive* : Text {; *cheminDossierDest* : Text} })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminArchive | Text | → | Chemin d’accès de l’archive à restituer |
-| cheminDossierDest | Text | → | Chemin d’accès du dossier de destination |
+| cheminArchive | Text | → | Chemin d’accès de l’archive à restituer |
+| cheminDossierDest | Text | → | Chemin d’accès du dossier de destination |
@@ -39,7 +39,7 @@ La commande **RESTORE** modifie la valeur des variables *OK* et *Document* : si
| | |
| --- | --- |
| Numéro de commande | 918 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
index 7715c876dabaeb..57067e54edcedd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
@@ -5,12 +5,12 @@ slug: /commands/resume-indexes
displayed_sidebar: docs
---
-**RESUME INDEXES** ( *laTable* {; *} )
+**RESUME INDEXES** ( *laTable* : Table {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle réactiver les index |
-| * | Opérateur | → | Si passé = indexation asynchrone |
+| laTable | Table | → | Table pour laquelle réactiver les index |
+| * | Opérateur | → | Si passé = indexation asynchrone |
@@ -33,6 +33,6 @@ La commande **RESUME INDEXES** ne peut être appelée que depuis 4D Server ou un
| | |
| --- | --- |
| Numéro de commande | 1294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
index 0297eaf417139c..c397172f4b5215 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
@@ -5,11 +5,11 @@ slug: /commands/resume-process
displayed_sidebar: docs
---
-**RESUME PROCESS** ( *process* )
+**RESUME PROCESS** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de process |
+| process | Integer | → | Numéro de process |
@@ -31,7 +31,7 @@ Si *process* a été suspendu, référez-vous aux commandes [PAUSE PROCESS](paus
| | |
| --- | --- |
| Numéro de commande | 320 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
index 24eaea6703acdd..80db79c7d914fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1386 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
index ba3be9a0236bdf..5391b0042de27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Cette commande doit être appelée uniquement dans le cadre de l’événement f
| | |
| --- | --- |
| Numéro de commande | 712 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md
index 876bea29a3ec07..92e0744be0b617 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/round.md
@@ -5,12 +5,12 @@ slug: /commands/round
displayed_sidebar: docs
---
-**Round** ( *arrondi* ; *nbDécimales* ) : Real
+**Round** ( *arrondi* : Real ; *nbDécimales* : Integer ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| arrondi | Real | → | Nombre à arrondir |
-| nbDécimales | Integer | → | Nombre de décimales de l'arrondi |
+| arrondi | Real | → | Nombre à arrondir |
+| nbDécimales | Integer | → | Nombre de décimales de l'arrondi |
| Résultat | Real | ← | Valeur de nombre arrondie avec une précision égale à nbDécimales |
@@ -43,6 +43,6 @@ L'exemple suivant illustre la manière dont Arrondi fonctionne dans différents
| | |
| --- | --- |
| Numéro de commande | 94 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
index 5b7efe8f0a5fe5..69a64954e76ab6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
@@ -5,12 +5,12 @@ slug: /commands/save-list
displayed_sidebar: docs
---
-**SAVE LIST** ( *liste* ; *nomListe* )
+**SAVE LIST** ( *liste* : Integer ; *nomListe* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de liste |
-| nomListe | Text | → | Nom de la liste tel qu'il doit apparaître dans l'éditeur d'énumérations en mode Développement |
+| liste | Integer | → | Numéro de référence de liste |
+| nomListe | Text | → | Nom de la liste tel qu'il doit apparaître dans l'éditeur d'énumérations en mode Développement |
@@ -31,6 +31,6 @@ Si une énumération de même nom existe déjà, son contenu est remplacé.
| | |
| --- | --- |
| Numéro de commande | 384 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
index 48fa5d73b24645..c138bc6b431916 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
@@ -5,11 +5,11 @@ slug: /commands/save-record
displayed_sidebar: docs
---
-**SAVE RECORD** {( *laTable* )}
+**SAVE RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de l'enregistrement à stocker ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de l'enregistrement à stocker ou Table par défaut si ce paramètre est omis |
@@ -54,6 +54,6 @@ L'exemple suivant est une partie d'une méthode récupérant des enregistrements
| | |
| --- | --- |
| Numéro de commande | 53 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
index 72244f8281736c..a42d40a8a942fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ N |
+| leField | Field | → | Champ N |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 43 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
index cb29e536d8dd78..8bb237574199b2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
@@ -5,12 +5,12 @@ slug: /commands/save-set
displayed_sidebar: docs
---
-**SAVE SET** ( *ensemble* ; *nomFichier* )
+**SAVE SET** ( *ensemble* : Text ; *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble | Text | → | Nom de l'ensemble à stocker |
-| nomFichier | Text | → | Nom du fichier dans lequel stocker l'ensemble |
+| ensemble | Text | → | Nom de l'ensemble à stocker |
+| nomFichier | Text | → | Nom du fichier dans lequel stocker l'ensemble |
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Annuler dans la boîte de dialogue standar
| | |
| --- | --- |
| Numéro de commande | 184 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
index 18457843828993..a6cd22b975ba4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
@@ -5,12 +5,12 @@ slug: /commands/save-variables
displayed_sidebar: docs
---
-**SAVE VARIABLES** ( *nomFichier* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**SAVE VARIABLES** ( *nomFichier* : Text ; *variable* : Variable {; *...variable* : Variable} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom du document dans lequel sauvegarder la ou les variable(s) |
-| variable | Variable | → | Variable(s) à sauvegarder |
+| nomFichier | Text | → | Nom du document dans lequel sauvegarder la ou les variable(s) |
+| variable | Variable | → | Variable(s) à sauvegarder |
@@ -54,7 +54,7 @@ Si l'opération s'est correctement déroulée, la variable OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 75 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
index 93f6fa2e07425f..d2bdff6f04d891 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-processing-instruction
displayed_sidebar: docs
---
-**SAX ADD PROCESSING INSTRUCTION** ( *document* ; *instruction* )
+**SAX ADD PROCESSING INSTRUCTION** ( *document* : Time ; *instruction* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| instruction | Text | → | Instruction à insérer dans le document |
+| document | Time | → | Référence du document ouvert |
+| instruction | Text | → | Instruction à insérer dans le document |
@@ -53,7 +53,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 857 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
index ed30ed70e74ed2..4e64510cf1b88e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-cdata
displayed_sidebar: docs
---
-**SAX ADD XML CDATA** ( *document* ; *données* )
+**SAX ADD XML CDATA** ( *document* : Time ; *données* : Blob, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| données | Blob, Text | → | Texte ou BLOB à insérer dans le document entre balises CData |
+| document | Time | → | Référence du document ouvert |
+| données | Blob, Text | → | Texte ou BLOB à insérer dans le document entre balises CData |
@@ -80,7 +80,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 856 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
index 85e0dfd7fbd385..622d99aa4b35cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-comment
displayed_sidebar: docs
---
-**SAX ADD XML COMMENT** ( *document* ; *commentaire* )
+**SAX ADD XML COMMENT** ( *document* : Time ; *commentaire* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| commentaire | Text | → | Commentaire à ajouter |
+| document | Time | → | Référence du document ouvert |
+| commentaire | Text | → | Commentaire à ajouter |
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 852 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
index bcc164c2e7ba9b..77ad54be3a5cd2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-doctype
displayed_sidebar: docs
---
-**SAX ADD XML DOCTYPE** ( *document* ; *docType* )
+**SAX ADD XML DOCTYPE** ( *document* : Time ; *docType* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| docType | Text | → | DocType à ajouter |
+| document | Time | → | Référence du document ouvert |
+| docType | Text | → | DocType à ajouter |
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 851 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
index 44edabf1f0475a..156a466229d624 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
@@ -5,13 +5,13 @@ slug: /commands/sax-add-xml-element-value
displayed_sidebar: docs
---
-**SAX ADD XML ELEMENT VALUE** ( *document* ; *données* {; *} )
+**SAX ADD XML ELEMENT VALUE** ( *document* : Time ; *données* : Text, Variable {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| données | Text, Variable | → | Texte ou variable à insérer dans le document |
-| * | Opérateur | → | Si passé = Encoder les caractères spéciaux en mode 'XML Données brutes' |
+| document | Time | → | Référence du document ouvert |
+| données | Text, Variable | → | Texte ou variable à insérer dans le document |
+| * | Opérateur | → | Si passé = Encoder les caractères spéciaux en mode 'XML Données brutes' |
@@ -57,7 +57,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 855 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
index b983af10d51600..b7faae0c747fe4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-close-xml-element
displayed_sidebar: docs
---
-**SAX CLOSE XML ELEMENT** ( *document* )
+**SAX CLOSE XML ELEMENT** ( *document* : Time )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
@@ -43,6 +43,6 @@ Si le dernier élément ouvert est **, l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 854 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
index e3d2d3c3c42fb1..88e8078fc004de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-cdata
displayed_sidebar: docs
---
-**SAX GET XML CDATA** ( *document* ; *valeur* )
+**SAX GET XML CDATA** ( *document* : Time ; *valeur* : Text, Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| valeur | Text, Blob | ← | Valeur de l’élément |
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 878 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
index e437e6c686f2d0..abe410f0fd4c9f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-comment
displayed_sidebar: docs
---
-**SAX GET XML COMMENT** ( *document* ; *commentaire* )
+**SAX GET XML COMMENT** ( *document* : Time ; *commentaire* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| commentaire | Text | ← | Commentaire XML |
@@ -32,7 +32,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 874 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
index 17977a7cecf67e..bf454049e2cf2a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-document-values
displayed_sidebar: docs
---
-**SAX GET XML DOCUMENT VALUES** ( *document* ; *encodage* ; *version* ; *autonome* )
+**SAX GET XML DOCUMENT VALUES** ( *document* : Time ; *encodage* : Text ; *version* : Text ; *autonome* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| encodage | Text | ← | Jeu de caractères du document XML |
| version | Text | ← | Version du XML |
| autonome | Boolean | ← | Vrai=le document est autonome, sinon Faux |
@@ -36,7 +36,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 873 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
index 87795008e67af1..b6c92020921103 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element-value
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT VALUE** ( *document* ; *valeur* )
+**SAX GET XML ELEMENT VALUE** ( *document* : Time ; *valeur* : Text, Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| valeur | Text, Blob | ← | Valeur de l’élément |
@@ -50,7 +50,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 877 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
index 123dfcaf734d3b..433234fb7bccc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT** ( *document* ; *nom* ; *préfixe* ; *nomsAttributs* ; *valeursAttributs* )
+**SAX GET XML ELEMENT** ( *document* : Time ; *nom* : Text ; *préfixe* : Text ; *nomsAttributs* : Text array ; *valeursAttributs* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| nom | Text | ← | Nom de l’élément |
| préfixe | Text | ← | Espace de nommage |
| nomsAttributs | Text array | ← | Noms des attributs |
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 876 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
index fe55ddeaf3f3d0..7313db2e311d89 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-entity
displayed_sidebar: docs
---
-**SAX GET XML ENTITY** ( *document* ; *nom* ; *valeur* )
+**SAX GET XML ENTITY** ( *document* : Time ; *nom* : Text ; *valeur* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| nom | Text | ← | Nom de l’entité |
| valeur | Text | ← | Valeur de l’entité |
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 879 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
index 414cb10691cd9a..edbaf2c9428920 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-node
displayed_sidebar: docs
---
-**SAX Get XML node** ( *document* ) : Integer
+**SAX Get XML node** ( *document* : Time ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| Résultat | Integer | ← | Evénement retourné par la fonction |
@@ -62,7 +62,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 860 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
index 8d22fab5279282..b6f1df57573944 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-processing-instruction
displayed_sidebar: docs
---
-**SAX GET XML PROCESSING INSTRUCTION** ( *document* ; *nom* ; *valeur* )
+**SAX GET XML PROCESSING INSTRUCTION** ( *document* : Time ; *nom* : Text ; *valeur* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
+| document | Time | → | Référence du document ouvert |
| nom | Text | ← | Nom de l’instruction |
| valeur | Text | ← | Valeur de l’instruction |
@@ -46,6 +46,6 @@ L’instruction suivante retournera “PI” dans *vNom* et “TextProcess” da
| | |
| --- | --- |
| Numéro de commande | 875 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
index 8c1443fe95fc32..16394010788c09 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT ARRAYS** ( *document* ; *balise* {; *tabNomsAttributs* ; *tabValeursAttributs*} {; *tabNomsAttributs2* ; *tabValeursAttributs2* ; ... ; *tabNomsAttributsN* ; *tabValeursAttributsN*} )
+**SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *balise* : Text {; *tabNomsAttributs* : Text array ; *tabValeursAttributs* : Array} {; ...(*tabNomsAttributs* : Text array, *tabValeursAttributs* : Array)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| balise | Text | → | Nom de l’élément à ouvrir |
-| tabNomsAttributs | Text array | → | Tableau de noms d’attributs |
-| tabValeursAttributs | Text array, Integer array, Date array, Real array, Picture array, Boolean array | → | Tableau de valeurs d’attributs |
+| document | Time | → | Référence du document ouvert |
+| balise | Text | → | Nom de l’élément à ouvrir |
+| tabNomsAttributs | Text array | → | Tableau de noms d’attributs |
+| tabValeursAttributs | Array | → | Tableau de valeurs d’attributs |
@@ -59,6 +59,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 921 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
index cd79456077d18a..18c937a06f3191 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT** ( *document* ; *balise* {; *nomAttribut* ; *valeurAttribut*} {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} )
+**SAX OPEN XML ELEMENT** ( *document* : Time ; *balise* : Text {; *nomAttribut* : Text ; *valeurAttribut* : Text} {; ...(*nomAttribut* : Text, *valeurAttribut* : Text)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| balise | Text | → | Nom de l’élément à ouvrir |
-| nomAttribut | Text | → | Nom d’attribut |
-| valeurAttribut | Text | → | Valeur d’attribut |
+| document | Time | → | Référence du document ouvert |
+| balise | Text | → | Nom de l’élément à ouvrir |
+| nomAttribut | Text | → | Nom d’attribut |
+| valeurAttribut | Text | → | Valeur d’attribut |
@@ -58,7 +58,7 @@ Si un caractère invalide est passé dans *balise*, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 853 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
index 2f53bc968728bf..6d08e4a379b149 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
@@ -5,13 +5,13 @@ slug: /commands/sax-set-xml-declaration
displayed_sidebar: docs
---
-**SAX SET XML DECLARATION** ( *document* ; *encodage* {; *autonome*} )
+**SAX SET XML DECLARATION** ( *document* : Time ; *encodage* : Text {; *autonome* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| document | Time | → | Référence du document ouvert |
-| encodage | Text | → | Jeu de caractères du document XML |
-| autonome | Boolean | → | Vrai=le document est autonome, Faux (défaut)=le document n’est pas autonome |
+| document | Time | → | Référence du document ouvert |
+| encodage | Text | → | Jeu de caractères du document XML |
+| autonome | Boolean | → | Vrai=le document est autonome, Faux (défaut)=le document n’est pas autonome |
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 858 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
index 3d1ee83f383e4f..0e3ef4ce54772f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
@@ -5,13 +5,13 @@ slug: /commands/scan-index
displayed_sidebar: docs
---
-**SCAN INDEX** ( *leChamp* ; *nombre* {; > ou <} )
+**SCAN INDEX** ( *leChamp* ; *nombre* : Integer {; > ou <} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ indexé avec lequel "scanner" les enregistrements |
-| nombre | Integer | → | Nombre d'enregistrements à retourner |
-| > ou < | Opérateur | → | > à partir du début de l'index < à partir de la fin de l'index |
+| leField | Field | → | Champ indexé avec lequel "scanner" les enregistrements |
+| nombre | Integer | → | Nombre d'enregistrements à retourner |
+| > ou < | Opérateur | → | > à partir du début de l'index < à partir de la fin de l'index |
@@ -56,7 +56,7 @@ L'exemple suivant envoie des lettres aux 50 plus mauvais clients puis aux 50 mei
| | |
| --- | --- |
| Numéro de commande | 350 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
index fce1ea5484475e..5bbf0df5de7b1d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/screen-coordinates
displayed_sidebar: docs
---
-**SCREEN COORDINATES** ( *gauche* ; *haut* ; *droite* ; *bas* {; *idEcran* {; *zoneEcran*}} )
+**SCREEN COORDINATES** ( *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer {; *idEcran* : Integer {; *zoneEcran* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -13,8 +13,8 @@ displayed_sidebar: docs
| haut | Integer | ← | Coordonnée supérieure de la zone de l'écran |
| droite | Integer | ← | Coordonnée droite de la zone de l'écran |
| bas | Integer | ← | Coordonnée inférieure de la zone de l'écran |
-| idEcran | Integer | → | Numéro de l'écran ou écran principal si omis |
-| zoneEcran | Integer | → | Ecran entier (par défaut) ou zone de travail |
+| idEcran | Integer | → | Numéro de l'écran ou écran principal si omis |
+| zoneEcran | Integer | → | Ecran entier (par défaut) ou zone de travail |
@@ -51,6 +51,6 @@ Les images suivantes illustrent les différences entre la zone de l'écran et la
| | |
| --- | --- |
| Numéro de commande | 438 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
index 0fa170155f2302..22d89013ab0a13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
@@ -5,13 +5,13 @@ slug: /commands/screen-depth
displayed_sidebar: docs
---
-**SCREEN DEPTH** ( *profondeur* ; *couleur* {; écran} )
+**SCREEN DEPTH** ( *profondeur* : Integer ; *couleur* : Integer {; écran} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| profondeur | Integer | ← | Profondeur de l'écran (nombre de couleurs = 2 ^ profondeur) |
| couleur | Integer | ← | 1 = écran couleur 0 = écran noir et blanc ou niveaux de gris |
-| écran | Integer | → | Numéro de l'écran ou écran principal si omis |
+| écran | Integer | → | Numéro de l'écran ou écran principal si omis |
@@ -61,6 +61,6 @@ Votre application affiche de nombreux graphiques en couleurs. Vous pouvez écrir
| | |
| --- | --- |
| Numéro de commande | 439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
index 7de8f874867dea..11904c12489401 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
@@ -5,11 +5,11 @@ slug: /commands/screen-height
displayed_sidebar: docs
---
-**Screen height** {( * )} : Integer
+**Screen height** ( * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Windows : hauteur de la fenêtre de l'application ou hauteur de l'écran si * est spécifiéMacintosh : hauteur de l'écran principal |
+| * | Opérateur | → | Windows : hauteur de la fenêtre de l'application ou hauteur de l'écran si * est spécifiéMacintosh : hauteur de l'écran principal |
| Résultat | Integer | ← | Hauteur exprimée en pixels |
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen height** retourne la hauteur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
index 585505f2521652..a1c9916e420a38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
@@ -5,11 +5,11 @@ slug: /commands/screen-width
displayed_sidebar: docs
---
-**Screen width** {( * )} : Integer
+**Screen width** ( * ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Windows : largeur de la fenêtre de l'application ou largeur de l'écran si * est spécifiéMacintosh : largeur de l'écran principal |
+| * | Opérateur | → | Windows : largeur de la fenêtre de l'application ou largeur de l'écran si * est spécifiéMacintosh : largeur de l'écran principal |
| Résultat | Integer | ← | Largeur exprimée en pixels |
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen width** retourne la largeur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
index 29c0deee7139a0..969c7991745ece 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
@@ -5,14 +5,14 @@ slug: /commands/select-document
displayed_sidebar: docs
---
-**Select document** ( *répertoire* ; *typesFichiers* ; *titre* ; *options* {; *sélectionnés*} ) : Text
+**Select document** ( *répertoire* : Text, Integer ; *typesFichiers* : Text ; *titre* : Text ; *options* : Integer {; *sélectionnés* : Text array} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| répertoire | Text, Integer | → | • Chemin d’accès du répertoire à afficher par défaut dans la boîte de dialogue de sélection, ou• Chaîne vide pour afficher le dossier d’utilisateur par défaut (“Mes documents” sous Windows, “Documents” sous Mac OS), ou• Numéro de chemin d’accès mémorisé |
-| typesFichiers | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
-| titre | Text | → | Titre de la boîte de dialogue de sélection |
-| options | Integer | → | Option(s) de sélection |
+| répertoire | Text, Integer | → | • Chemin d’accès du répertoire à afficher par défaut dans la boîte de dialogue de sélection, ou• Chaîne vide pour afficher le dossier d’utilisateur par défaut (“Mes documents” sous Windows, “Documents” sous Mac OS), ou• Numéro de chemin d’accès mémorisé |
+| typesFichiers | Text | → | Liste des types de documents à filtrer, ou "*" pour ne pas filtrer les documents |
+| titre | Text | → | Titre de la boîte de dialogue de sélection |
+| options | Integer | → | Option(s) de sélection |
| sélectionnés | Text array | ← | Tableau contenant la liste des chemins d’accès + les noms des fichiers sélectionnés |
| Résultat | Text | ← | Nom du fichier sélectionné (premier fichier de la liste en cas de sélection multiple) |
@@ -102,7 +102,7 @@ Si aucun fichier n’a été sélectionné (par exemple si l’utilisateur a cli
| | |
| --- | --- |
| Numéro de commande | 905 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
index 310d0b52cee0b1..3a65e5b3bc3617 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
@@ -5,13 +5,13 @@ slug: /commands/select-folder
displayed_sidebar: docs
---
-**Select folder** ( {*message* }{;}{ *répertoire* {; *options*}} ) : Text
+**Select folder** ( {*message* : Text }{;}{ *répertoire* : Text, Integer {; *options* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Titre de la fenêtre de sélection |
-| répertoire | Text, Integer | → | Chemin d’accès du répertoire par défautou Chaîne vide pour afficher le dossier d’utilisateur par défaut (“Mes documents” sous Windows, “Documents” sous Mac OS),ou Numéro de chemin d’accès mémorisé |
-| options | Integer | → | Option(s) de sélection sous Mac OS |
+| message | Text | → | Titre de la fenêtre de sélection |
+| répertoire | Text, Integer | → | Chemin d’accès du répertoire par défautou Chaîne vide pour afficher le dossier d’utilisateur par défaut (“Mes documents” sous Windows, “Documents” sous Mac OS),ou Numéro de chemin d’accès mémorisé |
+| options | Integer | → | Option(s) de sélection sous Mac OS |
| Résultat | Text | ← | Chemin d’accès au dossier sélectionné |
@@ -89,7 +89,7 @@ L’exemple suivant permet de sélectionner le dossier dans lequel toutes les im
| | |
| --- | --- |
| Numéro de commande | 670 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
index 44097ed6c1de2d..2a303223081b7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
@@ -5,14 +5,14 @@ slug: /commands/select-list-items-by-position
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY POSITION** ( {* ;} *liste* ; *positionElém* {; *tabPositions*} )
+**SELECT LIST ITEMS BY POSITION** ( {* ;} *liste* : Integer, Text ; *positionElém* : Integer {; *tabPositions* : Integer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| positionElém | Integer | → | Position de l'élément dans la ou les liste(s) déployée(s)/contractée(s) |
-| tabPositions | Integer array | → | Tableau de positions dans la ou les liste(s) déployée(s)/contractée(s) |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| positionElém | Integer | → | Position de l'élément dans la ou les liste(s) déployée(s)/contractée(s) |
+| tabPositions | Integer array | → | Tableau de positions dans la ou les liste(s) déployée(s)/contractée(s) |
@@ -77,6 +77,6 @@ Après l'exécution des lignes de code suivantes :
| | |
| --- | --- |
| Numéro de commande | 381 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
index d2e75d5a33457e..f32f01fcdf77c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
@@ -5,13 +5,13 @@ slug: /commands/select-list-items-by-reference
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY REFERENCE** ( *liste* ; *réfElément* {; *tabRéfs*} )
+**SELECT LIST ITEMS BY REFERENCE** ( *liste* : Integer ; *réfElément* : Integer {; *tabRéfs* : Integer array} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de liste |
-| réfElément | Integer | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste |
-| tabRéfs | Integer array | → | Tableau de numéros de référence d’éléments |
+| liste | Integer | → | Numéro de référence de liste |
+| réfElément | Integer | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste |
+| tabRéfs | Integer array | → | Tableau de numéros de référence d’éléments |
@@ -55,6 +55,6 @@ En supposant que *hList* est une liste dont les éléments ont des numéros de r
| | |
| --- | --- |
| Numéro de commande | 630 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
index 4703d50d689625..c3e7749221653a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
@@ -5,12 +5,12 @@ slug: /commands/select-rgb-color
displayed_sidebar: docs
---
-**Select RGB color** {( *coulDefaut* {; *message*} )} : Integer
+**Select RGB color** ( *coulDefaut* : Integer {; *message* : Text} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| coulDefaut | Integer | → | Couleur RVB présélectionnée |
-| message | Text | → | Titre de la fenêtre de sélection |
+| coulDefaut | Integer | → | Couleur RVB présélectionnée |
+| message | Text | → | Titre de la fenêtre de sélection |
| Résultat | Integer | ← | Couleur RVB |
@@ -45,7 +45,7 @@ La prise en compte de la validation de la boîte de dialogue diffère selon la p
| | |
| --- | --- |
| Numéro de commande | 956 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
index 1882bf7e777000..9b8a8acb37ef11 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
@@ -5,14 +5,14 @@ slug: /commands/selected-list-items
displayed_sidebar: docs
---
-**Selected list items** ( {* ;} *liste* {; *tabEléments* {; *}} ) : Integer
+**Selected list items** ( {* ;} *liste* : Integer, Text {; *tabEléments* : Integer array {; *}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
| tabEléments | Integer array | ← | Si 2e * omis : Tableau des positions des éléments sélectionnés dans la ou les liste(s) Si 2e * passé : Tableau des références des éléments sélectionnés dans la ou les liste(s) |
-| * | Opérateur | → | Si omis : Position(s) d’élément(s) Si passé : Référence(s) d’élément(s) |
+| * | Opérateur | → | Si omis : Position(s) d’élément(s) Si passé : Référence(s) d’élément(s) |
| Résultat | Integer | ← | Si 2e * omis : Position de l'élément sélectionné parmi la ou les liste(s) déployée(s)/contractée(s) Si 2e * passé : Référence de l'élément sélectionné |
@@ -89,6 +89,6 @@ Voici la liste *hList* telle qu'elle apparaît en mode Application :
| | |
| --- | --- |
| Numéro de commande | 379 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
index 41da8adce01097..776b596382279f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
@@ -5,11 +5,11 @@ slug: /commands/selected-record-number
displayed_sidebar: docs
---
-**Selected record number** {( *laTable* )} : Integer
+**Selected record number** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle retourner le numéro de l'enregistrement courant dans la sélection |
+| laTable | Table | → | Table de laquelle retourner le numéro de l'enregistrement courant dans la sélection |
| Résultat | Integer | ← | Numéro dans la sélection |
@@ -44,6 +44,6 @@ L'exemple suivant stocke le numéro de l'enregistrement courant de la sélection
| | |
| --- | --- |
| Numéro de commande | 246 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
index 379d0325c5226a..435d2070890f13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/selection-range-to-array
displayed_sidebar: docs
---
-**SELECTION RANGE TO ARRAY** ( *début* ; *fin* ; *leChamp* ; *tableau* {; *leChamp2* ; *tableau2* ; ... ; *leChampN* ; *tableauN*} )
**SELECTION RANGE TO ARRAY** ( *début* ; *fin* {; *laTable* ; *tableau* {; *laTable2* ; *tableau2* ; ... ; *laTableN* ; *tableauN*} )
+**SELECTION RANGE TO ARRAY** ( *début* : Integer ; *fin* : Integer {; ...(*data* : Field, Table ; *tableau* : Array)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| début | Integer | → | Numéro de l'enregistrement sous-sélectionné à partir duquel commencer la copie des données |
-| fin | Integer | → | Numéro de l'enregistrement sous-sélectionné auquel arrêter la copie des données |
-| leChamp | laTable | Champ, Table | → | Champ à utiliser pour récupérer les données ou Table à utiliser pour récupérer les numéros d'enregistrements |
+| début | Integer | → | Numéro de l'enregistrement sous-sélectionné à partir duquel commencer la copie des données |
+| fin | Integer | → | Numéro de l'enregistrement sous-sélectionné auquel arrêter la copie des données |
+| data | Champ, Table | → | Champ à utiliser pour récupérer les données ou Table à utiliser pour récupérer les numéros d'enregistrements |
| tableau | Array | ← | Tableau recevant les données ou les numéros d'enregistrements |
@@ -112,6 +112,6 @@ Utilisation des 50 premiers enregistrements courants de la table \[Factures\] po
| | |
| --- | --- |
| Numéro de commande | 368 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
index c6883940736771..ead057d10cd35e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
@@ -5,15 +5,15 @@ slug: /commands/selection-to-array
displayed_sidebar: docs
---
-**SELECTION TO ARRAY** {( *leChamp* ; *tableau* {; *leChamp2* ; *tableau2* ; ... ; *leChampN* ; *tableauN*}{; *})
**SELECTION TO ARRAY** {( *laTable* ; *tableau* {; *leChamp* ; *tableau* {; *leChamp2* ; *tableau2* ; ... ; *leChampN* ; *tableauN*}}{; *})}
+**SELECTION TO ARRAY** ({ *leChamp* : Champ, Table ; *tableau* : Array {; ...(*leChamp* : Champ, Table, *tableau* : Array)}{; *})
**SELECTION TO ARRAY** ( *laTable* : Champ, Table ; *tableau* : Array {; *leChamp* : Champ, Table ; *tableau* : Array {; ...(*leChamp* : Champ, Table, *tableau* : Array)}}{; *}})
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leChamp | laTable | Champ, Table | → | Champ à récupérer dans le tableau ou Table dont les numéros d'enregistrements sont à récupérer dans le tableau |
+| leChamp | laTable | Champ, Table | → | Champ à récupérer dans le tableau ou Table dont les numéros d'enregistrements sont à récupérer dans le tableau |
| tableau | Array | ← | Tableau recevant les valeurs des champs ou les numéros d'enregistrements |
-| leField | Field | → | Champ à récupérer dans le tableau |
+| leField | Field | → | Champ à récupérer dans le tableau |
| tableau | Array | ← | Tableau recevant les valeurs du champ |
-| * | Opérateur | → | Attente d’exécution |
+| * | Opérateur | → | Attente d’exécution |
@@ -83,6 +83,6 @@ Le même exemple peut être écrit :
| | |
| --- | --- |
| Numéro de commande | 260 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
index acea370df30a1c..b5fded7ce03dca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
@@ -5,13 +5,13 @@ slug: /commands/selection-to-json
displayed_sidebar: docs
---
-**Selection to JSON** ( *laTable* {; *leChamp*}{; *leChamp2* ; ... ; *leChampN*}{; *template*}) : Text
+**Selection to JSON** ( *laTable* : Table {; *...leChamp*}{; *template* : Object}) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à sérialiser |
-| leField | Field | → | Champ(s) dont le contenu doit être sérialisé |
-| template | Object | → | Objet pour la sélection de libellés et de champs |
+| laTable | Table | → | Table à sérialiser |
+| leField | Field | → | Champ(s) dont le contenu doit être sérialisé |
+| template | Object | → | Objet pour la sélection de libellés et de champs |
| Résultat | Text | ← | Chaîne contenant le tableau JSON sérialisé |
@@ -95,6 +95,6 @@ Vous utilisez la syntaxe avec *template* afin d'exporter des champs de différen
| | |
| --- | --- |
| Numéro de commande | 1234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md
index 771682815cff71..35a7b6c5f60599 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/self.md
@@ -44,6 +44,6 @@ Référez-vous à l'exemple de la commande [RESOLVE POINTER](resolve-pointer.md)
| | |
| --- | --- |
| Numéro de commande | 308 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
index 65bf4bcba18d9c..19a0bc90c9558a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
@@ -5,12 +5,12 @@ slug: /commands/semaphore
displayed_sidebar: docs
---
-**Semaphore** ( *sémaphore* {; *nbTicks*} ) : Boolean
+**Semaphore** ( *sémaphore* : Text {; *nbTicks* : Integer} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sémaphore | Text | → | Sémaphore à tester et à positionner |
-| nbTicks | Integer | → | Temps d’attente maximum |
+| sémaphore | Text | → | Sémaphore à tester et à positionner |
+| nbTicks | Integer | → | Temps d’attente maximum |
| Résultat | Boolean | ← | sémaphore a été correctement créé (Faux) ou sémaphore était déjà créé (Vrai) |
@@ -154,6 +154,6 @@ Syntaxe :
| | |
| --- | --- |
| Numéro de commande | 143 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
index ee583bc04b836a..1d67f4ae40b090 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
@@ -5,12 +5,12 @@ slug: /commands/send-message-to-remote-user
displayed_sidebar: docs
---
-**SEND MESSAGE TO REMOTE USER** ( *message* {; *sessionUtilisateur*} )
+**SEND MESSAGE TO REMOTE USER** ( *message* : Text {; *sessionUtilisateur* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| message | Text | → | Texte envoyé à l'utilisateur |
-| sessionUtilisateur | Text | → | ID de la session de l'utilisateur |
+| message | Text | → | Texte envoyé à l'utilisateur |
+| sessionUtilisateur | Text | → | ID de la session de l'utilisateur |
@@ -58,6 +58,6 @@ Vous souhaitez envoyer un message à tous les utilisateurs, puis à un utilisate
| | |
| --- | --- |
| Numéro de commande | 1632 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
index ba5d7f701bca73..a493571378e5c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
@@ -5,12 +5,12 @@ slug: /commands/send-packet
displayed_sidebar: docs
---
-**SEND PACKET** ( {*docRef* ;} *paquet* )
+**SEND PACKET** ( {*docRef* : Time ;} *paquet* : Text, Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Référence de document ou canal courant (port série ou document) |
-| paquet | Text, Blob | → | Chaîne ou BLOB à envoyer |
+| docRef | Time | → | Référence de document ou canal courant (port série ou document) |
+| paquet | Text, Blob | → | Chaîne ou BLOB à envoyer |
@@ -87,6 +87,6 @@ Cet exemple illustre l’envoi et la récupération de caractères étendus via
| | |
| --- | --- |
| Numéro de commande | 103 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
index da733a5aec5f64..e9dff501b03d40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
@@ -5,11 +5,11 @@ slug: /commands/send-record
displayed_sidebar: docs
---
-**SEND RECORD** {( *laTable* )}
+**SEND RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle envoyer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle envoyer l'enregistrement courant ou Table par défaut si ce paramètre est omis |
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 78 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
index dacf5954fb242b..6ec4c677c76a35 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
@@ -5,11 +5,11 @@ slug: /commands/send-variable
displayed_sidebar: docs
---
-**SEND VARIABLE** ( *variable* )
+**SEND VARIABLE** ( *variable* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable à envoyer |
+| variable | Variable | → | Variable à envoyer |
@@ -38,6 +38,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 80 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
index cb8056833af79b..473da118841cb1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
@@ -5,11 +5,11 @@ slug: /commands/sequence-number
displayed_sidebar: docs
---
-**Sequence number** {( *laTable* )} : Integer
+**Sequence number** ( *laTable* : Table ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à numéroter automatiquement ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table à numéroter automatiquement ou Table par défaut si ce paramètre est omis |
| Résultat | Integer | ← | Numéro automatique |
@@ -62,6 +62,6 @@ L'exemple suivant fait partie d'une méthode formulaire. Ces lignes de code test
| | |
| --- | --- |
| Numéro de commande | 244 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
index fc4c5768795450..56fd51c9cc1c77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
@@ -5,12 +5,12 @@ slug: /commands/set-about
displayed_sidebar: docs
---
-**SET ABOUT** ( *libelléElément* ; *méthode* )
+**SET ABOUT** ( *libelléElément* : Text ; *méthode* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| libelléElément | Text | → | Nouvelle ligne de menu A propos... |
-| méthode | Text | → | Nom de la méthode à exécuter lorsque la ligne est choisie |
+| libelléElément | Text | → | Nouvelle ligne de menu A propos... |
+| méthode | Text | → | Nom de la méthode à exécuter lorsque la ligne est choisie |
@@ -49,6 +49,6 @@ L'exemple suivant réinitialise la commande de menu d'A propos de 4D :
| | |
| --- | --- |
| Numéro de commande | 316 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
index 2bed32aaa681da..2e9ab6f1878e3d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/set-application-color-scheme
displayed_sidebar: docs
---
-**SET APPLICATION COLOR SCHEME** ( *schemaCouleur* )
+**SET APPLICATION COLOR SCHEME** ( *schemaCouleur* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| schemaCouleur | Text | → | "light", "dark", ou "inherited" |
+| schemaCouleur | Text | → | "light", "dark", ou "inherited" |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1762 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
index 09b2d2e3ae4848..f4663809ab0955 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/set-assert-enabled
displayed_sidebar: docs
---
-**SET ASSERT ENABLED** ( *asserts* {; *} )
+**SET ASSERT ENABLED** ( *asserts* : Boolean {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| asserts | Boolean | → | Vrai = activer les assertions,
Faux = désactiver les assertions |
-| * | Opérateur | → | Si omis = la commande s’applique à l’ensemble des process,
Si passé = la commande s’applique au process courant uniquement |
+| asserts | Boolean | → | Vrai = activer les assertions,
Faux = désactiver les assertions |
+| * | Opérateur | → | Si omis = la commande s’applique à l’ensemble des process,
Si passé = la commande s’applique au process courant uniquement |
@@ -44,6 +44,6 @@ Désactivation globale des assertions :
| | |
| --- | --- |
| Numéro de commande | 1131 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
index e5cd45cfb6d325..cf55cf539b4572 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
@@ -5,12 +5,12 @@ slug: /commands/set-automatic-relations
displayed_sidebar: docs
---
-**SET AUTOMATIC RELATIONS** ( *aller* {; *retour*} )
+**SET AUTOMATIC RELATIONS** ( *aller* : Boolean {; *retour* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| aller | Boolean | → | Statut de tous les liens de N vers 1 |
-| retour | Boolean | → | Statut de tous les liens de 1 vers N |
+| aller | Boolean | → | Statut de tous les liens de N vers 1 |
+| retour | Boolean | → | Statut de tous les liens de 1 vers N |
@@ -50,6 +50,6 @@ L'exemple suivant rend tous les liens N vers 1 automatiques et rétablit en manu
| | |
| --- | --- |
| Numéro de commande | 310 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
index 9a0d20b2781c53..4bcd63accf23df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
@@ -5,13 +5,13 @@ slug: /commands/set-blob-size
displayed_sidebar: docs
---
-**SET BLOB SIZE** ( *blob* ; *taille* {; *remplisseur*} )
+**SET BLOB SIZE** ( *blob* : Blob ; *taille* : Integer {; *remplisseur* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | Champ ou variable de type BLOB |
-| taille | Integer | → | Nouvelle taille de BLOB |
-| remplisseur | Integer | → | Code du caractère de remplissage |
+| Blob | Blob | → | Champ ou variable de type BLOB |
+| taille | Integer | → | Nouvelle taille de BLOB |
+| remplisseur | Integer | → | Code du caractère de remplissage |
@@ -56,6 +56,6 @@ L'exemple suivant crée un BLOB de 16 Ko et remplit chaque octet avec la valeur
| | |
| --- | --- |
| Numéro de commande | 606 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
index adc3387304cbdd..99d961b196663f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-blobs-cache-priority
displayed_sidebar: docs
---
-**SET BLOBS CACHE PRIORITY** ( *laTable* ; *priorité* )
+**SET BLOBS CACHE PRIORITY** ( *laTable* : Table ; *priorité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez modifier la priorité des données "blobs" pour toute la session |
-| priorité | Integer | → | Priorité des données "blobs" de la table dans le cache |
+| laTable | Table | → | Table dont vous souhaitez modifier la priorité des données "blobs" pour toute la session |
+| priorité | Integer | → | Priorité des données "blobs" de la table dans le cache |
@@ -54,6 +54,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les "blobs" de la
| | |
| --- | --- |
| Numéro de commande | 1425 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
index 3ce0d8469b5ade..c1486ad45e2671 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-cache-size
displayed_sidebar: docs
---
-**SET CACHE SIZE** ( *taille* {; *libereMini*} )
+**SET CACHE SIZE** ( *taille* : Real {; *libereMini* : Real} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| taille | Real | → | Taille du cache du la base de données en octets |
-| libereMini | Real | → | Nombre minimum d'octets à libérer lorsque le cache est plein |
+| taille | Real | → | Taille du cache du la base de données en octets |
+| libereMini | Real | → | Nombre minimum d'octets à libérer lorsque le cache est plein |
@@ -45,6 +45,6 @@ Vous voulez ajouter 100 Mo à la taille du cache de votre base. Vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 1399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
index bb03470410e233..b59d4d33f15435 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
@@ -10,12 +10,12 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| port | Integer | → | Numéro de port série |
-| param | Integer | → | Paramètres de communication |
-| SET CHANNEL ( opération ; nomFichier ) |
-| Paramètre | Type | Description |
-| opération | Integer | → | Opération à effectuer sur document |
-| nomFichier | Text | → | Nom du document |
+| port | Integer | → | Numéro de port série |
+| param | Integer | → | Paramètres de communication |
+| SET CHANNEL ( opération ; nomFichier ) | | | |
+| Paramètre | Type | Description | |
+| opération | Integer | → | Opération à effectuer sur document |
+| nomFichier | Text | → | Nom du document |
@@ -177,7 +177,7 @@ Reportez-vous aux exemples des commandes [RECEIVE BUFFER](receive-buffer.md), [S
| | |
| --- | --- |
| Numéro de commande | 77 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
index 31a628299afc3e..65a1839d3e7700 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
@@ -5,11 +5,11 @@ slug: /commands/set-current-printer
displayed_sidebar: docs
---
-**SET CURRENT PRINTER** ( *nomImpr* )
+**SET CURRENT PRINTER** ( *nomImpr* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomImpr | Text | → | Nom de l’imprimante à utiliser |
+| nomImpr | Text | → | Nom de l’imprimante à utiliser |
@@ -70,7 +70,7 @@ Création d'un document PDF sous Windows :
| | |
| --- | --- |
| Numéro de commande | 787 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
index 60e56de25d5008..d6e0a3d249cf4e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
@@ -5,11 +5,11 @@ slug: /commands/set-cursor
displayed_sidebar: docs
---
-**SET CURSOR** {( *curseur* )}
+**SET CURSOR** ({ *curseur* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| curseur | Integer | → | Numéro de curseur système |
+| curseur | Integer | → | Numéro de curseur système |
@@ -66,6 +66,6 @@ Vous souhaitez que le curseur se transforme en 
+**SET DATABASE LOCALIZATION** ( *codeLangue* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| codeLangue | Text | → | Sélecteur de langue |
-| * | Opérateur | → | Portée de la commande |
+| codeLangue | Text | → | Sélecteur de langue |
+| * | Opérateur | → | Portée de la commande |
@@ -75,7 +75,7 @@ L’interface de votre application utilise la chaîne statique ":xliff:shopping"
| | |
| --- | --- |
| Numéro de commande | 1104 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
index 2a4ca5c7524977..a61666dbf32482 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-database-parameter
displayed_sidebar: docs
---
-**SET DATABASE PARAMETER** ( {*laTable* ;} *sélecteur* ; *valeur* )
+**SET DATABASE PARAMETER** ( {*laTable* : Table ;} *sélecteur* : Integer ; *valeur* : Real, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table à paramétrer ou Table par défaut si ce paramètre est omis |
-| sélecteur | Integer | → | Code du paramètre de la base à modifier |
-| valeur | Real, Text | → | Valeur du paramètre |
+| laTable | Table | → | Table à paramétrer ou Table par défaut si ce paramètre est omis |
+| sélecteur | Integer | → | Code du paramètre de la base à modifier |
+| valeur | Real, Text | → | Valeur du paramètre |
@@ -841,6 +841,6 @@ Vous souhaitez exporter des données en JSON contenant une date 4D convertie. A
| | |
| --- | --- |
| Numéro de commande | 642 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
index 00ff30b870aa3c..fbe03824abb3f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
@@ -5,12 +5,12 @@ slug: /commands/set-default-century
displayed_sidebar: docs
---
-**SET DEFAULT CENTURY** ( *siècle* {; *anPivot*} )
+**SET DEFAULT CENTURY** ( *siècle* : Integer {; *anPivot* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| siècle | Integer | → | Siècle par défaut (moins un) lors de la saisie d'années sur 2 chiffres |
-| anPivot | Integer | → | Année pivot lors de la saisie d'années sur 2 chiffres |
+| siècle | Integer | → | Siècle par défaut (moins un) lors de la saisie d'années sur 2 chiffres |
+| anPivot | Integer | → | Année pivot lors de la saisie d'années sur 2 chiffres |
@@ -68,6 +68,6 @@ Cette commande affecte uniquement la saisie des données. Elle n'influe pas sur
| | |
| --- | --- |
| Numéro de commande | 392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
index 1002963359bb21..598c5260d246d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
@@ -5,13 +5,13 @@ slug: /commands/set-document-position
displayed_sidebar: docs
---
-**SET DOCUMENT POSITION** ( *docRef* ; *offset* {; *ancre*} )
+**SET DOCUMENT POSITION** ( *docRef* : Time ; *offset* : Real {; *ancre* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Numéro de référence de document |
-| offset | Real | → | Position dans fichier (exprimée en octets) |
-| ancre | Integer | → | 1 = Par rapport au début du fichier 2 = Par rapport à la fin du fichier 3 = Par rapport à la position courante |
+| docRef | Time | → | Numéro de référence de document |
+| offset | Real | → | Position dans fichier (exprimée en octets) |
+| ancre | Integer | → | 1 = Par rapport au début du fichier 2 = Par rapport à la fin du fichier 3 = Par rapport à la position courante |
@@ -34,6 +34,6 @@ En fonction de l'*ancre* définie, vous pouvez passer des valeurs positives ou n
| | |
| --- | --- |
| Numéro de commande | 482 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
index 9ba5d22e8b1709..b7ed876ede122e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-document-properties
displayed_sidebar: docs
---
-**SET DOCUMENT PROPERTIES** ( *nomFichier* ; *verrouillé* ; *invisible* ; créé le ; créé à ; modifié le ; modifié à )
+**SET DOCUMENT PROPERTIES** ( *nomFichier* : Text ; *verrouillé* : Boolean ; *invisible* : Boolean ; créé le ; créé à ; modifié le ; modifié à )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document |
-| verrouillé | Boolean | → | Verrouillé (Vrai) ou non verrouillé (Faux) |
-| invisible | Boolean | → | Invisible (Vrai) ou visible (Faux) |
-| créé le | Date | → | Date de création |
-| créé à | Heure | → | Heure de création |
-| modifié le | Date | → | Date de dernière modification |
-| modifié à | Heure | → | Heure de dernière modification |
+| nomFichier | Text | → | Nom du document ou Chemin d'accès complet au document |
+| verrouillé | Boolean | → | Verrouillé (Vrai) ou non verrouillé (Faux) |
+| invisible | Boolean | → | Invisible (Vrai) ou visible (Faux) |
+| créé le | Date | → | Date de création |
+| créé à | Heure | → | Heure de création |
+| modifié le | Date | → | Date de dernière modification |
+| modifié à | Heure | → | Heure de dernière modification |
@@ -41,7 +41,7 @@ L'heure et la date de création et de dernière modification sont gérées par l
| | |
| --- | --- |
| Numéro de commande | 478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
index 7f7897e60c27d7..8a2f709fc62ac4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-document-size
displayed_sidebar: docs
---
-**SET DOCUMENT SIZE** ( *docRef* ; *taille* )
+**SET DOCUMENT SIZE** ( *docRef* : Time ; *taille* : Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| docRef | Time | → | Numéro de référence de document |
-| taille | Real | → | Nouvelle taille (en octets) de document |
+| docRef | Time | → | Numéro de référence de document |
+| taille | Real | → | Nouvelle taille (en octets) de document |
@@ -33,6 +33,6 @@ Sous Mac OS, c'est la taille de la data fork du document qui est modifiée.
| | |
| --- | --- |
| Numéro de commande | 480 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
index 7da984abff0933..22cacbbfdd559a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
@@ -5,13 +5,13 @@ slug: /commands/set-drag-icon
displayed_sidebar: docs
---
-**SET DRAG ICON** ( *icône* {; *décalageH* {; *décalageV*}} )
+**SET DRAG ICON** ( *icône* : Picture {; *décalageH* : Integer {; *décalageV* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| icône | Picture | → | Icône à utiliser lors du glisser |
-| décalageH | Integer | → | Décalage horizontal du bord gauche de l’image par rapport à la position du curseur (>0 = vers la gauche, <0 = vers la droite) |
-| décalageV | Integer | → | Décalage vertical du bord supérieur de l’image par rapport à la position du curseur (>0 = vers le haut, <0 = vers le bas) |
+| icône | Picture | → | Icône à utiliser lors du glisser |
+| décalageH | Integer | → | Décalage horizontal du bord gauche de l’image par rapport à la position du curseur (>0 = vers la gauche, <0 = vers la droite) |
+| décalageV | Integer | → | Décalage vertical du bord supérieur de l’image par rapport à la position du curseur (>0 = vers le haut, <0 = vers le bas) |
@@ -63,6 +63,6 @@ A noter que vous pouvez modifier la position du curseur par rapport à l’image
| | |
| --- | --- |
| Numéro de commande | 1272 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
index 7c11f7ac69da3b..2281e407d01d85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
@@ -5,12 +5,12 @@ slug: /commands/set-environment-variable
displayed_sidebar: docs
---
-**SET ENVIRONMENT VARIABLE** ( *nomVar* ; *valeurVar* )
+**SET ENVIRONMENT VARIABLE** ( *nomVar* : Text ; *valeurVar* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomVar | Text | → | Nom de la variable à fixer |
-| valeurVar | Text | → | Valeur de la variable ou "" pour rétablir la valeur par défaut |
+| nomVar | Text | → | Nom de la variable à fixer |
+| valeurVar | Text | → | Valeur de la variable ou "" pour rétablir la valeur par défaut |
@@ -23,7 +23,8 @@ Cette commande est maintenue pour des raisons de compatibilité uniquement. Il e
## Description
-La commande **SET ENVIRONMENT VARIABLE** vous permet de fixer la valeur d’une variable d’environnement sous macOS et Windows. Elle est destinée à une utilisation conjointe avec la commande [LAUNCH EXTERNAL PROCESS](launch-external-process.md). Elle fonctionne également avec la commande [PHP Execute](php-execute.md).
+La commande **SET ENVIRONMENT VARIABLE** vous permet de fixer la valeur d’une variable d’environnement sous macOS et Windows. Elle est destinée à une utilisation conjointe avec la commande [LAUNCH EXTERNAL PROCESS](launch-external-process.md).
+
Passez dans le paramètre *nomVar* le nom de la variable à définir et dans le paramètre *valeurVar* sa valeur.
@@ -48,6 +49,6 @@ Reportez-vous aux exemples de la commande [LAUNCH EXTERNAL PROCESS](launch-exter
| | |
| --- | --- |
| Numéro de commande | 812 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
index 53b77b375f8dd8..1e39609da518bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
@@ -5,12 +5,12 @@ slug: /commands/set-external-data-path
displayed_sidebar: docs
---
-**SET EXTERNAL DATA PATH** ( *leChamp* ; *chemin* )
+**SET EXTERNAL DATA PATH** ( *leChamp* : Text, Blob, Picture ; *chemin* : Text, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leChamp | Text, Blob, Picture | → | Champ pour lequel définir le lieu de stockage |
-| chemin | Text, Integer | → | Chemin d’accès et nom du fichier de stockage externe ou
0 = utiliser la définition en structure
1 = utiliser le dossier par défaut |
+| leChamp | Text, Blob, Picture | → | Champ pour lequel définir le lieu de stockage |
+| chemin | Text, Integer | → | Chemin d’accès et nom du fichier de stockage externe ou
0 = utiliser la définition en structure
1 = utiliser le dossier par défaut |
@@ -64,6 +64,6 @@ Vous souhaitez enregistrer dans le champ image un fichier existant, stocké à l
| | |
| --- | --- |
| Numéro de commande | 1134 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
index bdfae383d86ccf..3dc9c77ea09c5c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
@@ -5,13 +5,13 @@ slug: /commands/set-field-relation
displayed_sidebar: docs
---
-**SET FIELD RELATION** ( *tableN* ; *aller* ; *retour* )
**SET FIELD RELATION** ( *champN* ; *aller* ; *retour* )
+**SET FIELD RELATION** ( *tableN* : Table, Champ ; *aller* : Integer ; *retour* : Integer )
**SET FIELD RELATION** ( *champN* : Table, Champ ; *aller* : Integer ; *retour* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableN | champN | Table, Champ | → | Table de départ des liens ou Champ de départ du lien |
-| aller | Integer | → | Statut du lien aller partant du champ ou des liens aller partant de la table |
-| retour | Integer | → | Statut du lien retour partant du champ ou des liens retour partant de la table |
+| tableN | champN | Table, Champ | → | Table de départ des liens ou Champ de départ du lien |
+| aller | Integer | → | Statut du lien aller partant du champ ou des liens aller partant de la table |
+| retour | Integer | → | Statut du lien retour partant du champ ou des liens retour partant de la table |
@@ -60,7 +60,7 @@ Le code suivant vous permet uniquement de configurer ls liens utiles comme autom
| | |
| --- | --- |
| Numéro de commande | 919 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
index 2212a755f15a0f..4cc6ce9c77e1bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
@@ -5,14 +5,14 @@ slug: /commands/set-field-titles
displayed_sidebar: docs
---
-**SET FIELD TITLES** ( *laTable* ; *titresChamps* ; *numChamps* {; *} )
+**SET FIELD TITLES** ( *laTable* : Table ; *titresChamps* : Text array ; *numChamps* : Integer array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous voulez redéfinir les titres des champs |
-| titresChamps | Text array | → | Nouveaux titres des champs |
-| numChamps | Integer array | → | Numéros des champs |
-| * | Operator | → | Utiliser les noms personnalisés dans l’éditeur de formules |
+| laTable | Table | → | Table dont vous voulez redéfinir les titres des champs |
+| titresChamps | Text array | → | Nouveaux titres des champs |
+| numChamps | Integer array | → | Numéros des champs |
+| * | Operator | → | Utiliser les noms personnalisés dans l’éditeur de formules |
@@ -63,6 +63,6 @@ Reportez-vous à l'exemple de la commande [SET TABLE TITLES](set-table-titles.md
| | |
| --- | --- |
| Numéro de commande | 602 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
index 52fe5e411152f4..7e70d14a392d80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ auquel attribuer la valeur NULL |
+| leField | Field | → | Champ auquel attribuer la valeur NULL |
@@ -34,6 +34,6 @@ La valeur NULL est exploitée par le moteur SQL de 4D. Pour plus d’information
| | |
| --- | --- |
| Numéro de commande | 965 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
index 325c212c5d5180..248563e92b98ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/set-file-to-pasteboard
displayed_sidebar: docs
---
-**SET FILE TO PASTEBOARD** ( *fichier* {; *} )
+**SET FILE TO PASTEBOARD** ( *fichier* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fichier | Text | → | Nom de fichier ou Chemin d'accès complet de fichier |
-| * | Opérateur | → | Si passé = ajouter, Si omis = remplacer |
+| fichier | Text | → | Nom de fichier ou Chemin d'accès complet de fichier |
+| * | Opérateur | → | Si passé = ajouter, Si omis = remplacer |
@@ -33,6 +33,6 @@ La commande admet l’étoile *\** en paramètre optionnel. Par défaut, lorsque
| | |
| --- | --- |
| Numéro de commande | 975 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
index d2250ba1d71fea..8013edd227bd97 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
@@ -5,11 +5,11 @@ slug: /commands/set-group-access
displayed_sidebar: docs
---
-**SET GROUP ACCESS** {( *groupes* )}
+**SET GROUP ACCESS** ({ *groupes* : Collection })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| groupes | Collection | → | Nom(s) de groupe(s) au(x)quel(s) le compte utilisateur doit appartenir durant la session |
+| groupes | Collection | → | Nom(s) de groupe(s) au(x)quel(s) le compte utilisateur doit appartenir durant la session |
@@ -49,7 +49,7 @@ Vous souhaitez ajouter l'utilisateur courant aux groupes "admin" et "plugins" da
| | |
| --- | --- |
| Numéro de commande | 1737 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
index 6b2150d74a7d9a..803b0af7497fe0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
@@ -5,15 +5,14 @@ slug: /commands/set-group-properties
displayed_sidebar: docs
---
-**Set group properties** ( *réfGroupe* ; *nom* ; *propriétaire* {; *membres*} ) : Integer
+**Set group properties** ( *réfGroupe* : Integer ; *nom* : Text ; *propriétaire* : Integer {; *membres* : Integer array} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfGroupe | Integer | → | Numéro de référence unique du groupe activé ou -1 pour ajouter un groupe de Super_Utilisateur -2 pour ajouter un groupe d'Administrateur |
-| ← | Unique ID number of added group (if any) |
-| nom | Text | → | Nouveau nom de groupe |
-| propriétaire | Integer | → | Numéro de référence unique de l'utilisateur ou le propriétaire du nouveau groupe |
-| membres | Integer array | → | Nouveaux membres du groupe |
+| réfGroupe | Integer | ↔ | *in:* Unique ID number of group, -1 for adding a group
*out:* Unique ID number of added group (if any) |
+| nom | Text | → | Nouveau nom de groupe |
+| propriétaire | Integer | → | Numéro de référence unique de l'utilisateur ou le propriétaire du nouveau groupe |
+| membres | Integer array | → | Nouveaux membres du groupe |
| Résultat | Integer | ← | Numéro de référence unique du nouveau groupe |
@@ -62,7 +61,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **Set group
| | |
| --- | --- |
| Numéro de commande | 614 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
index af99aa59c04803..1ccf3d46d31295 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
@@ -5,11 +5,11 @@ slug: /commands/set-help-menu
displayed_sidebar: docs
---
-**SET HELP MENU** ( *menuCol* )
+**SET HELP MENU** ( *menuCol* : Collection )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menuCol | Collection | → | Collection of menu objects |
+| menuCol | Collection | → | Collection of menu objects |
@@ -65,6 +65,6 @@ Vous souhaitez personnaliser le menu **Aide** de votre application :
| | |
| --- | --- |
| Numéro de commande | 1801 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
index 742c0e49ff6fd4..c4815668e5e7d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-index-cache-priority
displayed_sidebar: docs
---
-**SET INDEX CACHE PRIORITY** ( *leChamp* ; *priorité* )
+**SET INDEX CACHE PRIORITY** ( *leChamp* ; *priorité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ dont vous voulez modifier la priorité des index pour toute la session |
-| priorité | Integer | → | Priorité du ou des index du champ dans le cache |
+| leField | Field | → | Champ dont vous voulez modifier la priorité des index pour toute la session |
+| priorité | Integer | → | Priorité du ou des index du champ dans le cache |
@@ -54,6 +54,6 @@ Dans la , vous souhaitez définir une priorité très haute pour les index du ch
| | |
| --- | --- |
| Numéro de commande | 1401 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
index 41e75600438b8f..5b81c6c628be18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
@@ -5,13 +5,13 @@ slug: /commands/set-index
displayed_sidebar: docs
---
-**SET INDEX** ( *leChamp* ; *index* {; *} )
+**SET INDEX** ( *leChamp* ; *index* : Boolean, Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leField | Field | → | Champ duquel créer ou supprimer l’index |
-| index | Boolean, Integer | → | • Vrai=Créer l’index, Faux=Supprimer l’index, ou• Créer un index de type : -1=mots-clés, 0=par défaut, 1=B-Tree standard, 3=B-Tree cluster |
-| * | Operator | → | Indexation asynchrone si * est passé |
+| leField | Field | → | Champ duquel créer ou supprimer l’index |
+| index | Boolean, Integer | → | • Vrai=Créer l’index, Faux=Supprimer l’index, ou• Créer un index de type : -1=mots-clés, 0=par défaut, 1=B-Tree standard, 3=B-Tree cluster |
+| * | Operator | → | Indexation asynchrone si * est passé |
@@ -94,6 +94,6 @@ Création d'un index de mots-clés :
| | |
| --- | --- |
| Numéro de commande | 344 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
index f98bc80cdf49b8..07e14314cf8b99 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-font
displayed_sidebar: docs
---
-**SET LIST ITEM FONT** ( {* ;} *liste* ; *refElément * ; *police* )
**SET LIST ITEM FONT** ( * ; *liste* ; * ; *police* )
+**SET LIST ITEM FONT** ( {* ;} *liste* : Integer, Text ; *refElément* : Entier long, Opérateur ; *police* : Text, Integer )
**SET LIST ITEM FONT** ( * ; *liste* : Integer, Text ; * ; *police* : Text, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| police | Text, Integer | → | Nom ou numéro de police |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| police | Text, Integer | → | Nom ou numéro de police |
@@ -47,6 +47,6 @@ Appliquer la police Times à l’élément courant de la liste :
| | |
| --- | --- |
| Numéro de commande | 953 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
index e9f06a7b59716d..ede46bec9cb25a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-icon
displayed_sidebar: docs
---
-**SET LIST ITEM ICON** ( {* ;} *liste* ; *réfElément* ; *icône* )
**SET LIST ITEM ICON** ( * ; *liste* ; * ; *icône* )
+**SET LIST ITEM ICON** ( {* ;} *liste* : Integer, Text ; *réfElément* : Entier long, Opérateur ; *icône* : Picture )
**SET LIST ITEM ICON** ( * ; *liste* : Integer, Text ; * ; *icône* : Picture )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| réfElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| icône | Picture | → | Icône à associer à l'élément |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| réfElément | * | Entier long, Opérateur | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| icône | Picture | → | Icône à associer à l'élément |
@@ -51,6 +51,6 @@ Affectation d'une même image à deux éléments différents. Ce code est optimi
| | |
| --- | --- |
| Numéro de commande | 950 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
index 9922780a9c1ccc..3dc536a54ee0dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
@@ -5,15 +5,15 @@ slug: /commands/set-list-item-parameter
displayed_sidebar: docs
---
-**SET LIST ITEM PARAMETER** ( {* ;} *liste* ; *refElément* ; *sélecteur* ; *valeur* )
**SET LIST ITEM PARAMETER** ( * ; *liste* ; * ; *sélecteur* ; *valeur* )
+**SET LIST ITEM PARAMETER** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ; *sélecteur* : Text ; *valeur* : Text, Boolean, Real )
**SET LIST ITEM PARAMETER** ( * ; *liste* : Integer, Text ; * ; *sélecteur* : Text ; *valeur* : Text, Boolean, Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| sélecteur | Text | → | Constante de paramètre |
-| valeur | Text, Boolean, Real | → | Valeur de paramètre |
+| * | Opérateur | → | Si spécifié, liste est un nom d’objet (chaîne) Si omis, liste est un numéro de référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d’élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| sélecteur | Text | → | Constante de paramètre |
+| valeur | Text, Boolean, Real | → | Valeur de paramètre |
@@ -66,6 +66,6 @@ Vous souhaitez définir comme énumération d'un pop up menu hiérarchique une l
| | |
| --- | --- |
| Numéro de commande | 986 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
index 000895552532ac..90f85e9a774fe1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item-properties
displayed_sidebar: docs
---
-**SET LIST ITEM PROPERTIES** ( {* ;} *liste* ; *refElément* ; *saisissable* ; *style* {; *icône* {; *couleur*}} )
**SET LIST ITEM PROPERTIES** ( * ; *liste* ; * ; *saisissable* ; *style* {; *icône* {; *couleur*}} )
+**SET LIST ITEM PROPERTIES** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ; *saisissable* : Boolean ; *style* : Integer {; *icône* : Text, Integer {; *couleur* : Integer}} )
**SET LIST ITEM PROPERTIES** ( * ; *liste* : Integer, Text ; * ; *saisissable* : Boolean ; *style* : Integer {; *icône* : Text, Integer {; *couleur* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| saisissable | Boolean | → | Vrai = Saisissable, Faux = Non-saisissable |
-| style | Integer | → | Style de police pour l'élément |
-| icône | Text, Integer | → | Nom ou numéro d'image ("" ou 0 pour ne pas associer d'icône) |
-| couleur | Integer | → | Valeur de couleur RVB ou -1 = rétablir couleur originale |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| saisissable | Boolean | → | Vrai = Saisissable, Faux = Non-saisissable |
+| style | Integer | → | Style de police pour l'élément |
+| icône | Text, Integer | → | Nom ou numéro d'image ("" ou 0 pour ne pas associer d'icône) |
+| couleur | Integer | → | Valeur de couleur RVB ou -1 = rétablir couleur originale |
@@ -83,6 +83,6 @@ L’exemple suivant passe le texte de l’élément courant de *liste* en gras e
| | |
| --- | --- |
| Numéro de commande | 386 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
index 03673228a916e2..33aba3e1fa09f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item
displayed_sidebar: docs
---
-**SET LIST ITEM** ( {* ;} *liste* ; *refElément* ; *libelléElément* ; *nouvelRéf* {; sous_Liste ; *déployée*} )
**SET LIST ITEM** ( * ; *liste* ; * ; *libelléElément* ; *nouvelRéf* {; sous_Liste ; *déployée*} )
+**SET LIST ITEM** ( {* ;} *liste* : Integer, Text ; *refElément* : Opérateur, Entier long ; *libelléElément* : Text ; *nouvelRéf* : Integer {; sous_Liste ; *déployée* : Boolean} )
**SET LIST ITEM** ( * ; *liste* : Integer, Text ; * ; *libelléElément* : Text ; *nouvelRéf* : Integer {; sous_Liste ; *déployée* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
-| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
-| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
-| libelléElément | Text | → | Nouveau libellé d'élément |
-| nouvelRéf | Integer | → | Nouveau numéro de référence d'élément |
-| sous_Liste | Integer | → | Nouvelle sous-liste rattachée à l'élément ou 0 = pas de sous-liste (détacher sous-liste courante) ou -1 = pas de changement |
-| déployée | Boolean | → | Indique si la sous-liste doit être déployée/contractée |
+| * | Opérateur | → | Si spécifié, liste est un nom d'objet (chaîne) Si omis, liste est une référence de liste |
+| liste | Integer, Text | → | Numéro de référence de liste (si * omis) ou Nom d'objet de type liste (si * passé) |
+| refElément | * | Opérateur, Entier long | → | Numéro de référence d'élément ou 0 pour le dernier élément ajouté à la liste ou * pour l’élément courant de la liste |
+| libelléElément | Text | → | Nouveau libellé d'élément |
+| nouvelRéf | Integer | → | Nouveau numéro de référence d'élément |
+| sous_Liste | Integer | → | Nouvelle sous-liste rattachée à l'élément ou 0 = pas de sous-liste (détacher sous-liste courante) ou -1 = pas de changement |
+| déployée | Boolean | → | Indique si la sous-liste doit être déployée/contractée |
@@ -81,6 +81,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 385 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
index 45586fd99cd664..0b5055b1a9831f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-properties
displayed_sidebar: docs
---
-**SET LIST PROPERTIES** ( *liste* ; *apparence* {; *icône* {; *hauteurLigne* {; *doubleClic* {; *multiSélection* {; *modifiable*}}}}} )
+**SET LIST PROPERTIES** ( *liste* : Integer ; *apparence* : Integer {; *icône* : Integer {; *hauteurLigne* : Integer {; *doubleClic* : Integer {; *multiSélection* : Integer {; *modifiable* : Integer}}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de la liste |
-| apparence | Integer | → | *** paramètre obsolète, toujours passer 0 *** |
-| icône | Integer | → | *** Paramètre obsolète, toujours passer 0 *** |
-| hauteurLigne | Integer | → | Hauteur minimale de la ligne (pixels) |
-| doubleClic | Integer | → | Déploiement/contraction sur double-clic 0 = autoriser, 1= empêcher |
-| multiSélection | Integer | → | Sélections multiples 0 = interdire (défaut), 1 = autoriser |
-| modifiable | Integer | → | Enumération modifiable 0 = non, 1 = oui (défaut) |
+| liste | Integer | → | Numéro de référence de la liste |
+| apparence | Integer | → | *** paramètre obsolète, toujours passer 0 *** |
+| icône | Integer | → | *** Paramètre obsolète, toujours passer 0 *** |
+| hauteurLigne | Integer | → | Hauteur minimale de la ligne (pixels) |
+| doubleClic | Integer | → | Déploiement/contraction sur double-clic 0 = autoriser, 1= empêcher |
+| multiSélection | Integer | → | Sélections multiples 0 = interdire (défaut), 1 = autoriser |
+| modifiable | Integer | → | Enumération modifiable 0 = non, 1 = oui (défaut) |
@@ -65,6 +65,6 @@ Vous souhaitez interdire le déploiement/contraction sur double-clic. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 387 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
index 01de6d421090ee..8a2e1df25750b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/set-macro-parameter
displayed_sidebar: docs
---
-**SET MACRO PARAMETER** ( *sélecteur* ; *paramTexte* )
+**SET MACRO PARAMETER** ( *sélecteur* : Integer ; *paramTexte* )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Sélection à utiliser |
-| paramText | Text | → | Texte envoyé |
+| sélecteur | Integer | → | Sélection à utiliser |
+| paramText | Text | → | Texte envoyé |
@@ -62,6 +62,6 @@ Cette macro construit un nouveau texte qui sera retourné à la méthode appelan
| | |
| --- | --- |
| Numéro de commande | 998 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
index 08b8a13ef1ffd5..c388226d9e0dae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-bar
displayed_sidebar: docs
---
-**SET MENU BAR** ( *barre* {; *process*}{; *} )
+**SET MENU BAR** ( *barre* : Integer, Text, Text {; *process* : Integer}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| barre | Integer, Text, Text | → | Numéro ou nom de la barre de menus ou Référence de menu |
-| process | Integer | → | Numéro de référence du process |
-| * | Opérateur | → | Conserver l'état de la barre de menus |
+| barre | Integer, Text, Text | → | Numéro ou nom de la barre de menus ou Référence de menu |
+| process | Integer | → | Numéro de référence du process |
+| * | Opérateur | → | Conserver l'état de la barre de menus |
@@ -121,6 +121,6 @@ Dans cet exemple complet, nous allons créer par programmation une barre comport
| | |
| --- | --- |
| Numéro de commande | 67 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
index 360a0f084a1160..32e76234573157 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-icon
displayed_sidebar: docs
---
-**SET MENU ITEM ICON** ( *menu* ; *ligneMenu* ; *refIcône* {; *process*} )
+**SET MENU ITEM ICON** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *refIcône* : Text, Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| refIcône | Text, Integer | → | Nom ou numéro de l’image à associer à la ligne de menu |
-| process | Integer | → | Numéro de process |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| refIcône | Text, Integer | → | Nom ou numéro de l’image à associer à la ligne de menu |
+| process | Integer | → | Numéro de process |
@@ -50,6 +50,6 @@ Utilisation d'une image se trouvant dans le dossier Resources de la base :
| | |
| --- | --- |
| Numéro de commande | 984 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
index c8ba5d23208d99..643b5700118e0c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-mark
displayed_sidebar: docs
---
-**SET MENU ITEM MARK** ( *menu* ; *ligneMenu* ; *marque* {; *process*} )
+**SET MENU ITEM MARK** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *marque* : Text {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| marque | Text | → | Nouvelle marque de ligne de menu |
-| process | Integer | → | Numéro de référence du process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| marque | Text | → | Nouvelle marque de ligne de menu |
+| process | Integer | → | Numéro de référence du process |
@@ -43,7 +43,7 @@ Reportez-vous à l'exemple de la commande [Get menu item mark](get-menu-item-mar
| | |
| --- | --- |
| Numéro de commande | 208 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
index 0c04b7c3605ac6..95f0b1ae387080 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-method
displayed_sidebar: docs
---
-**SET MENU ITEM METHOD** ( *menu* ; *ligneMenu* ; *nomMéthode* {; *process*} )
+**SET MENU ITEM METHOD** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *nomMéthode* : Text {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| nomMéthode | Text | → | Nom de la méthode |
-| process | Integer | → | Numéro de process |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| nomMéthode | Text | → | Nom de la méthode |
+| process | Integer | → | Numéro de process |
@@ -40,6 +40,6 @@ Reportez-vous aux exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 982 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
index 36544d5b0d0635..9f6ebdca6ea28e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-item-parameter
displayed_sidebar: docs
---
-**SET MENU ITEM PARAMETER** ( *menu* ; *ligneMenu* ; *param* )
+**SET MENU ITEM PARAMETER** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *param* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| param | Text | → | Chaîne à associer en tant que paramètre |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| param | Text | → | Chaîne à associer en tant que paramètre |
@@ -47,6 +47,6 @@ Ce code permet de proposer un menu comportant le libellé des fenêtres ouvertes
| | |
| --- | --- |
| Numéro de commande | 1004 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
index afc121a8bd05e8..a47b4312c53fc7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-property
displayed_sidebar: docs
---
-**SET MENU ITEM PROPERTY** ( *menu* ; *ligneMenu* ; *propriété* ; *valeur* {; *process*} )
+**SET MENU ITEM PROPERTY** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *propriété* : Text ; *valeur* : Text, Real, Boolean {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
-| propriété | Text | → | Type de propriété |
-| valeur | Text, Number, Boolean | → | Valeur de la propriété |
-| process | Integer | → | Numéro de process |
+| menu | Integer, Text | → | Référence de menu ou Numéro de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée au menu |
+| propriété | Text | → | Type de propriété |
+| valeur | Text, Real, Boolean | → | Valeur de la propriété |
+| process | Integer | → | Numéro de process |
@@ -63,6 +63,6 @@ Pour plus d’informations sur les propriétés standard des lignes de menus, re
| | |
| --- | --- |
| Numéro de commande | 973 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
index eb68ce80c1b280..3fb61c9f5ef5f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-shortcut
displayed_sidebar: docs
---
-**SET MENU ITEM SHORTCUT** ( *menu* ; *ligneMenu* ; *touche* ; *modificateurs* {; *process*} )
+**SET MENU ITEM SHORTCUT** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *touche* : Text, Integer ; *modificateurs* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro du menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| touche | Text, Integer | → | Lettre du raccourci clavier ou code de caractère du raccourci clavier (ancienne syntaxe) |
-| modificateurs | Integer | → | Modificateur(s) à associer au raccourci (ignoré si un code de touche est passé) |
-| process | Integer | → | Numéro de référence du process |
+| menu | Integer, Text | → | Numéro du menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| touche | Text, Integer | → | Lettre du raccourci clavier ou code de caractère du raccourci clavier (ancienne syntaxe) |
+| modificateurs | Integer | → | Modificateur(s) à associer au raccourci (ignoré si un code de touche est passé) |
+| process | Integer | → | Numéro de référence du process |
@@ -85,7 +85,7 @@ Définition du raccourci F4 pour l'élément de menu "Fermer" :
| | |
| --- | --- |
| Numéro de commande | 423 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
index 1e7e926ab1ba2b..b3b860d9986dbf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-style
displayed_sidebar: docs
---
-**SET MENU ITEM STYLE** ( *menu* ; *ligneMenu* ; *styleLigne* {; *process*} )
+**SET MENU ITEM STYLE** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *styleLigne* : Integer {; *process* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| styleLigne | Integer | → | Nouveau style de la ligne de menu |
-| process | Integer | → | Numéro de référence du process |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| styleLigne | Integer | → | Nouveau style de la ligne de menu |
+| process | Integer | → | Numéro de référence du process |
@@ -42,7 +42,7 @@ Vous pouvez définir le style de l'élément dans le paramètre *styleLigne*. Vo
| | |
| --- | --- |
| Numéro de commande | 425 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
index 0335865a7bdf1e..d846154f857837 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item
displayed_sidebar: docs
---
-**SET MENU ITEM** ( *menu* ; *ligneMenu* ; *libelléElément* {; *process*}{; *} )
+**SET MENU ITEM** ( *menu* : Integer, Text ; *ligneMenu* : Integer ; *libelléElément* : Text {; *process* : Integer}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
-| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
-| libelléElément | Text | → | Nouveau libellé de la ligne de menu |
-| process | Integer | → | Numéro de référence de process |
-| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
+| menu | Integer, Text | → | Numéro de menu ou Référence de menu |
+| ligneMenu | Integer | → | Numéro de ligne de menu ou -1 pour la dernière ligne ajoutée |
+| libelléElément | Text | → | Nouveau libellé de la ligne de menu |
+| process | Integer | → | Numéro de référence de process |
+| * | Opérateur | → | Si passé : considérer les métacaractères comme des caractères standard |
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **SET MENU ITEM** s'applique à la barr
| | |
| --- | --- |
| Numéro de commande | 348 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
index 640e2708c506f2..34a201fef68662 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
@@ -5,12 +5,12 @@ slug: /commands/set-picture-file-name
displayed_sidebar: docs
---
-**SET PICTURE FILE NAME** ( *image* ; *nomFichier* )
+**SET PICTURE FILE NAME** ( *image* : Picture, Picture ; *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture, Picture | → | Image dont vous souhaitez fixer le nom par défaut |
-| nomFichier | Text | → | Nom par défaut de l’image |
+| image | Picture, Picture | → | Image dont vous souhaitez fixer le nom par défaut |
+| nomFichier | Text | → | Nom par défaut de l’image |
@@ -32,6 +32,6 @@ Le nom par défaut est utilisé comme nom de fichier en cas d’exportation de l
| | |
| --- | --- |
| Numéro de commande | 1172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
index 8c4dab211037cb..02e34b120c2b5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-metadata
displayed_sidebar: docs
---
-**SET PICTURE METADATA** ( *image* ; *nomMeta* ; *contenuMeta* {; *nomMeta2* ; *contenuMeta2* ; ... ; *nomMetaN* ; *contenuMetaN*} )
+**SET PICTURE METADATA** ( *image* : Picture ; *nomMeta* : Text ; *contenuMeta* : Variable {; ...(*nomMeta* : Text, *contenuMeta* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image dont vous souhaitez écrire les métadonnées |
-| nomMeta | Text | → | Nom ou chemin du bloc à écrire |
-| contenuMeta | Variable | → | Contenu de la métadonnée |
+| image | Picture | → | Image dont vous souhaitez écrire les métadonnées |
+| nomMeta | Text | → | Nom ou chemin du bloc à écrire |
+| contenuMeta | Variable | → | Contenu de la métadonnée |
@@ -86,7 +86,7 @@ Lorsque toutes les métadonnées sont manipulées via une référence d’élém
| | |
| --- | --- |
| Numéro de commande | 1121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
index 3e5639fe584e07..46b0d30e04dbc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-to-library
displayed_sidebar: docs
---
-**SET PICTURE TO LIBRARY** ( *image* ; *refImage* ; *nomImage* )
+**SET PICTURE TO LIBRARY** ( *image* : Picture ; *refImage* : Integer ; *nomImage* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Nouvelle image |
-| refImage | Integer | → | Numéro de référence de l'image dans la bibliothèque d'images |
-| nomImage | Text | → | Nouveau nom de l’image |
+| image | Picture | → | Nouvelle image |
+| refImage | Integer | → | Numéro de référence de l'image dans la bibliothèque d'images |
+| nomImage | Text | → | Nouveau nom de l’image |
@@ -104,7 +104,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 566 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
index be63ac14b7bf6d..9d7558aaadb8b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-picture-to-pasteboard
displayed_sidebar: docs
---
-**SET PICTURE TO PASTEBOARD** ( *image* )
+**SET PICTURE TO PASTEBOARD** ( *image* : Picture )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image à placer dans le conteneur de données |
+| image | Picture | → | Image à placer dans le conteneur de données |
@@ -52,7 +52,7 @@ Si une copie de l'image est correctement collée dans le conteneur, la variable
| | |
| --- | --- |
| Numéro de commande | 521 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
index 3fc3849dd2203b..11f0ccf51d80ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
@@ -5,12 +5,12 @@ slug: /commands/set-plugin-access
displayed_sidebar: docs
---
-**SET PLUGIN ACCESS** ( *plugIn* ; *groupe* )
+**SET PLUGIN ACCESS** ( *plugIn* : Integer ; *groupe* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Numéro du plug-in |
-| groupe | Text | → | Nom du groupe à associer au plug-in |
+| plugIn | Integer | → | Numéro du plug-in |
+| groupe | Text | → | Nom du groupe à associer au plug-in |
@@ -49,6 +49,6 @@ Passez dans le paramètre *groupe* le nom du groupe dont les utilisateurs seront
| | |
| --- | --- |
| Numéro de commande | 845 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
index 40ee6251a7ecec..99d6ac71d51bb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-marker
displayed_sidebar: docs
---
-**SET PRINT MARKER** ( *numTaquet* ; *position* {; *} )
+**SET PRINT MARKER** ( *numTaquet* : Integer ; *position* : Integer {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTaquet | Integer | → | Numéro de taquet |
-| position | Integer | → | Nouvelle position du taquet |
-| * | Opérateur | → | Si passé = déplacer les marqueurs suivants Si omis = ne pas déplacer les marqueurs suivants |
+| numTaquet | Integer | → | Numéro de taquet |
+| position | Integer | → | Nouvelle position du taquet |
+| * | Opérateur | → | Si passé = déplacer les marqueurs suivants Si omis = ne pas déplacer les marqueurs suivants |
@@ -186,6 +186,6 @@ La méthode du formulaire Print\_List3 est la suivante :
| | |
| --- | --- |
| Numéro de commande | 709 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
index af21c3042eff48..8b9e680a9f07f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-option
displayed_sidebar: docs
---
-**SET PRINT OPTION** ( *option* ; *valeur1* {; *valeur2*} )
+**SET PRINT OPTION** ( *option* : Integer ; *valeur1* : Integer, Text {; *valeur2* : Integer, Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Numéro d’option ou Code d'option PDF |
-| valeur1 | Integer, Text | → | Valeur 1 de l’option |
-| valeur2 | Integer, Text | → | Valeur 2 de l’option |
+| option | Integer | → | Numéro d’option ou Code d'option PDF |
+| valeur1 | Integer, Text | → | Valeur 1 de l’option |
+| valeur2 | Integer, Text | → | Valeur 2 de l’option |
@@ -84,7 +84,7 @@ Si la valeur passée pour une *option* est invalide ou si elle n'est pas disponi
| | |
| --- | --- |
| Numéro de commande | 733 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
index 9495771e549d70..f931b0b53f03fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
@@ -5,11 +5,11 @@ slug: /commands/set-print-preview
displayed_sidebar: docs
---
-**SET PRINT PREVIEW** ( *aperçu* )
+**SET PRINT PREVIEW** ( *aperçu* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| aperçu | Boolean | → | Impression à l'écran (Vrai) ou non (Faux) |
+| aperçu | Boolean | → | Impression à l'écran (Vrai) ou non (Faux) |
@@ -42,6 +42,6 @@ L'exemple suivant sélectionne l'option **A l'écran** pour afficher le résulta
| | |
| --- | --- |
| Numéro de commande | 364 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
index 9e142081649b14..253a8ff3d761c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
@@ -5,14 +5,14 @@ slug: /commands/set-printable-margin
displayed_sidebar: docs
---
-**SET PRINTABLE MARGIN** ( *gauche* ; *haut* ; *droit* ; *bas* )
+**SET PRINTABLE MARGIN** ( *gauche* : Integer ; *haut* : Integer ; *droit* : Integer ; *bas* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| gauche | Integer | → | Marge gauche |
-| haut | Integer | → | Marge supérieure |
-| droit | Integer | → | Marge droite |
-| bas | Integer | → | Marge inférieure |
+| gauche | Integer | → | Marge gauche |
+| haut | Integer | → | Marge supérieure |
+| droit | Integer | → | Marge droite |
+| bas | Integer | → | Marge inférieure |
@@ -63,6 +63,6 @@ L’exemple suivant permet d’obtenir la taille du papier :
| | |
| --- | --- |
| Numéro de commande | 710 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
index db3ada98a67faa..20112465690861 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
@@ -5,13 +5,13 @@ slug: /commands/set-process-variable
displayed_sidebar: docs
---
-**SET PROCESS VARIABLE** ( *process* ; *varDestination* ; *exprSource* {; *varDestination2* ; *exprSource2* ; ... ; *varDestinationN* ; *exprSourceN*} )
+**SET PROCESS VARIABLE** ( *process* : Integer ; *varDestination* : Variable ; *exprSource* : Variable {; ...(*varDestination* : Variable, *exprSource* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro de process de destination |
-| varDestination | Variable | → | Variable de destination |
-| exprSource | Variable | → | Expression source (ou variable source) |
+| process | Integer | → | Numéro de process de destination |
+| varDestination | Variable | → | Variable de destination |
+| exprSource | Variable | → | Expression source (ou variable source) |
@@ -103,6 +103,6 @@ L'exemple suivant écrit l'instance des variables *v1*, *v2*, *v3* dans le proce
| | |
| --- | --- |
| Numéro de commande | 370 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
index aaba2cf5759754..05b8844cb61257 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-and-lock
displayed_sidebar: docs
---
-**SET QUERY AND LOCK** ( *verrou* )
+**SET QUERY AND LOCK** ( *verrou* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| verrou | Boolean | → | Vrai = verrouiller les enregistrements trouvés par les recherches, Faux = ne pas les verrouiller |
+| verrou | Boolean | → | Vrai = verrouiller les enregistrements trouvés par les recherches, Faux = ne pas les verrouiller |
@@ -75,7 +75,7 @@ Si la commande est appelée hors du contexte d’une transaction, une erreur est
| | |
| --- | --- |
| Numéro de commande | 661 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
index 917e9d94763006..e62005c9ad70f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
@@ -5,13 +5,13 @@ slug: /commands/set-query-destination
displayed_sidebar: docs
---
-**SET QUERY DESTINATION** ( *destinationType* {; *destinationObjet* {; *destinationPtr*}} )
+**SET QUERY DESTINATION** ( *destinationType* : Integer {; *destinationObjet* : Text, Variable {; *destinationPtr* : Pointer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| destinationType | Integer | → | 0=sélection courante, 1=ensemble, 2=sélection temporaire, 3=variable |
-| destinationObjet | Text, Variable | → | Nom de l'ensemble ou Nom de la sélection temporaire ou Variable |
-| destinationPtr | Pointer | → | Pointeur vers la variable locale si destinationType=3 |
+| destinationType | Integer | → | 0=sélection courante, 1=ensemble, 2=sélection temporaire, 3=variable |
+| destinationObjet | Text, Variable | → | Nom de l'ensemble ou Nom de la sélection temporaire ou Variable |
+| destinationPtr | Pointer | → | Pointeur vers la variable locale si destinationType=3 |
@@ -257,6 +257,6 @@ Lorsque cette méthode est implémentée dans votre application, vous pouvez éc
| | |
| --- | --- |
| Numéro de commande | 396 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
index ab9b5960e02699..23d9aade74e6f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-limit
displayed_sidebar: docs
---
-**SET QUERY LIMIT** ( *limite* )
+**SET QUERY LIMIT** ( *limite* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| limite | Integer | → | Nombre limite d'enregistrements ou 0 pour nombre illimité |
+| limite | Integer | → | Nombre limite d'enregistrements ou 0 pour nombre illimité |
@@ -69,6 +69,6 @@ Référez-vous au deuxième exemple de la commande [SET QUERY DESTINATION](set-q
| | |
| --- | --- |
| Numéro de commande | 395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
index 9974774985b544..c58dd3a0086ba4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
@@ -5,11 +5,11 @@ slug: /commands/set-real-comparison-level
displayed_sidebar: docs
---
-**SET REAL COMPARISON LEVEL** ( *epsilon* )
+**SET REAL COMPARISON LEVEL** ( *epsilon* : Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| epsilon | Real | → | Valeur epsilon pour les comparaisons d'égalité des réels |
+| epsilon | Real | → | Valeur epsilon pour les comparaisons d'égalité des réels |
@@ -41,6 +41,6 @@ Modifier l'epsilon affecte seulement la comparaison d'égalité des réels. Cela
| | |
| --- | --- |
| Numéro de commande | 623 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
index 98b55443af2960..a2fb2cf7078190 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
@@ -5,11 +5,11 @@ slug: /commands/set-recent-fonts
displayed_sidebar: docs
---
-**SET RECENT FONTS** ( *tabPolices* )
+**SET RECENT FONTS** ( *tabPolices* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tabPolices | Text array | → | Tableau de noms de polices |
+| tabPolices | Text array | → | Tableau de noms de polices |
@@ -47,6 +47,6 @@ Le menu contient alors :
| | |
| --- | --- |
| Numéro de commande | 1305 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
index 8f77540e51f248..275826faff2cc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-table-cache-priority
displayed_sidebar: docs
---
-**SET TABLE CACHE PRIORITY** ( *laTable* ; *priorité* )
+**SET TABLE CACHE PRIORITY** ( *laTable* : Table ; *priorité* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table dont vous souhaitez modifier la priorité des données scalaires pour toute la session |
-| priorité | Integer | → | Priorité des valeurs scalaires de la table dans le cache |
+| laTable | Table | → | Table dont vous souhaitez modifier la priorité des données scalaires pour toute la session |
+| priorité | Integer | → | Priorité des valeurs scalaires de la table dans le cache |
@@ -55,6 +55,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les données scala
| | |
| --- | --- |
| Numéro de commande | 1400 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
index c1b5064c15a974..8d432c849a2219 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
@@ -5,13 +5,13 @@ slug: /commands/set-table-titles
displayed_sidebar: docs
---
-**SET TABLE TITLES** {( *titresTables* ; *numTables* {; *})}
+**SET TABLE TITLES** ({ *titresTables* : Text array ; *numTables* : Integer array {; *}})
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| titresTables | Text array | → | Noms des tables tels qu'ils doivent apparaître |
-| numTables | Integer array | → | Numéros des tables |
-| * | Opérateur | → | Utiliser les noms personnalisés dans l’éditeur de formules |
+| titresTables | Text array | → | Noms des tables tels qu'ils doivent apparaître |
+| numTables | Integer array | → | Numéros des tables |
+| * | Opérateur | → | Utiliser les noms personnalisés dans l’éditeur de formules |
@@ -181,6 +181,6 @@ Vous voulez supprimer tous les noms de tables et de champs personnalisés défin
| | |
| --- | --- |
| Numéro de commande | 601 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
index 0cea7ee4d9c295..bed8de5029ba03 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-text-to-pasteboard
displayed_sidebar: docs
---
-**SET TEXT TO PASTEBOARD** ( *texte* )
+**SET TEXT TO PASTEBOARD** ( *texte* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texte | Text | → | Texte à placer dans le conteneur de données |
+| texte | Text | → | Texte à placer dans le conteneur de données |
@@ -43,7 +43,7 @@ Si la copie du texte est correctement placée dans le conteneur de données, la
| | |
| --- | --- |
| Numéro de commande | 523 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
index 9d495a24e55a70..1443e99a4ac2f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
@@ -5,11 +5,11 @@ slug: /commands/set-timeout
displayed_sidebar: docs
---
-**SET TIMEOUT** ( *secondes* )
+**SET TIMEOUT** ( *secondes* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| secondes | Integer | → | Nombre de secondes jusqu'au timeout |
+| secondes | Integer | → | Nombre de secondes jusqu'au timeout |
@@ -55,7 +55,7 @@ L'exemple suivant fixe le port série devant recevoir des données et le timeout
| | |
| --- | --- |
| Numéro de commande | 268 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
index 39d4d832ab65da..1281a934d4ef32 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
@@ -5,11 +5,11 @@ slug: /commands/set-timer
displayed_sidebar: docs
---
-**SET TIMER** ( *tickCount* )
+**SET TIMER** ( *tickCount* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tickCount | Integer | → | Nombre de ticks ou -1 = Déclenchement dès que possible |
+| tickCount | Integer | → | Nombre de ticks ou -1 = Déclenchement dès que possible |
@@ -51,6 +51,6 @@ Vous souhaitez que, lorsqu’un formulaire est affiché à l’écran, un bip so
| | |
| --- | --- |
| Numéro de commande | 645 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
index 856065b4ebcbc0..fdb5cba415029b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
@@ -5,12 +5,12 @@ slug: /commands/set-update-folder
displayed_sidebar: docs
---
-**SET UPDATE FOLDER** ( *cheminDossier* {; *erreursDiscrètes*} )
+**SET UPDATE FOLDER** ( *cheminDossier* : Text {; *erreursDiscrètes* : Boolean} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminDossier | Text | → | Chemin d’accès du dossier (package sous macOS) contenant l’application mise à jour |
-| erreursDiscrètes | Boolean | → | Faux (défaut) = afficher des messages d’erreur, Vrai = ne pas afficher de messages (uniquement enregistrer les erreurs) |
+| cheminDossier | Text | → | Chemin d’accès du dossier (package sous macOS) contenant l’application mise à jour |
+| erreursDiscrètes | Boolean | → | Faux (défaut) = afficher des messages d’erreur, Vrai = ne pas afficher de messages (uniquement enregistrer les erreurs) |
@@ -61,7 +61,7 @@ Vous avez créé un dossier "MesMisesAJour" sur votre disque, dans lequel vous a
| | |
| --- | --- |
| Numéro de commande | 1291 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
index cac407cb6360a9..c7ee9029c71507 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
@@ -5,11 +5,11 @@ slug: /commands/set-user-alias
displayed_sidebar: docs
---
-**SET USER ALIAS** ( *alias* )
+**SET USER ALIAS** ( *alias* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| alias | Text | → | Nom d'utilisateur qui remplace celui du compte utilisateur 4D ou "" pour réinitialiser |
+| alias | Text | → | Nom d'utilisateur qui remplace celui du compte utilisateur 4D ou "" pour réinitialiser |
@@ -46,7 +46,7 @@ Vos utilisateurs sont gérés via une table personnalisée et utilisent le même
| | |
| --- | --- |
| Numéro de commande | 1666 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
index 61e19f425c1fa6..4f7e684b217ebc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
@@ -5,19 +5,18 @@ slug: /commands/set-user-properties
displayed_sidebar: docs
---
-**Set user properties** ( *réfUtilisateur* ; *nom* ; *démarrage* ; *motDePasse* ; *nbUtilisations* ; *dernièreUtilisation* {; *adhésions* {; *groupePropriétaire*}} ) : Integer
+**Set user properties** ( *réfUtilisateur* : Integer ; *nom* : Text ; *démarrage* : Text ; *motDePasse* : Text ; *nbUtilisations* : Integer ; *dernièreUtilisation* : Date {; *adhésions* : Integer array {; *groupePropriétaire* : Integer}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| réfUtilisateur | Integer | → | Numéro de référence unique du compte de l'utilisateur ou -1 pour l'ajout d'un utilisateur affilié au Super_Utilisateur ou -2 pour l'ajout d'un utilisateur affilié à l'Administrateur |
-| ← | Unique ID number of added user account (if any) |
-| nom | Text | → | Nouveau nom de l'utilisateur |
-| démarrage | Text | → | Nom de la nouvelle méthode de démarrage |
-| motDePasse | Text | → | Nouveau mot de passe (non crypté) ou * pour ne pas modifier le mot de passe |
-| nbUtilisations | Integer | → | Nouveau nombre d'utilisations de la base |
-| dernièreUtilisation | Date | → | Nouvelle date de dernière utilisation de la base |
-| adhésions | Integer array | → | Numéros de référence des groupes auxquels l'utilisateur appartient |
-| groupePropriétaire | Integer | → | Numéro de référence du groupe propriétaire de l’utilisateur |
+| réfUtilisateur | Integer | ↔ | *in:* Unique ID number of user account, -1 for adding a user
*out:* Unique ID number of added user account (if any) |
+| nom | Text | → | Nouveau nom de l'utilisateur |
+| démarrage | Text | → | Nom de la nouvelle méthode de démarrage |
+| motDePasse | Text | → | Nouveau mot de passe (non crypté) ou * pour ne pas modifier le mot de passe |
+| nbUtilisations | Integer | → | Nouveau nombre d'utilisations de la base |
+| dernièreUtilisation | Date | → | Nouvelle date de dernière utilisation de la base |
+| adhésions | Integer array | → | Numéros de référence des groupes auxquels l'utilisateur appartient |
+| groupePropriétaire | Integer | → | Numéro de référence du groupe propriétaire de l’utilisateur |
| Résultat | Integer | ← | Numéro de référence unique du nouvel utilisateur |
@@ -66,6 +65,6 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Set user properties**
| | |
| --- | --- |
| Numéro de commande | 612 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
index 90b788c3f601b2..dfadaf23359dd6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
@@ -5,16 +5,16 @@ slug: /commands/set-window-rect
displayed_sidebar: docs
---
-**SET WINDOW RECT** ( *gauche* ; *haut* ; *droite* ; *bas* {; *fenêtre*}{; *} )
+**SET WINDOW RECT** ( *gauche* : Integer ; *haut* : Integer ; *droite* : Integer ; *bas* : Integer {; *fenêtre* : Integer}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| gauche | Integer | → | Coordonnée gauche de l'intérieur de la fenêtre |
-| haut | Integer | → | Coordonnée supérieure de l'intérieur de la fenêtre |
-| droite | Integer | → | Coordonnée droite de l'intérieur de la fenêtre |
-| bas | Integer | → | Coordonnée inférieure de l'intérieur de la fenêtre |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process si ce paramètre est omis |
-| * | Opérateur | → | Si omis (défaut) = passer la fenêtre au premier plan
Si passé = ne pas changer le plan de la fenêtre |
+| gauche | Integer | → | Coordonnée gauche de l'intérieur de la fenêtre |
+| haut | Integer | → | Coordonnée supérieure de l'intérieur de la fenêtre |
+| droite | Integer | → | Coordonnée droite de l'intérieur de la fenêtre |
+| bas | Integer | → | Coordonnée inférieure de l'intérieur de la fenêtre |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process si ce paramètre est omis |
+| * | Opérateur | → | Si omis (défaut) = passer la fenêtre au premier plan
Si passé = ne pas changer le plan de la fenêtre |
@@ -64,6 +64,6 @@ La fenêtre apparaît ainsi :
| | |
| --- | --- |
| Numéro de commande | 444 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
index a58c6f93c854f2..c9ab1f4260fdd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
@@ -5,12 +5,12 @@ slug: /commands/set-window-title
displayed_sidebar: docs
---
-**SET WINDOW TITLE** ( *titre* {; *fenêtre*} )
+**SET WINDOW TITLE** ( *titre* : Text {; *fenêtre* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| titre | Text | → | Titre de la fenêtre |
-| fenêtre | Integer | → | Numéro de référence de fenêtre ou Fenêtre au premier plan du process courant si ce paramètre est omis |
+| titre | Text | → | Titre de la fenêtre |
+| fenêtre | Integer | → | Numéro de référence de fenêtre ou Fenêtre au premier plan du process courant si ce paramètre est omis |
@@ -55,6 +55,6 @@ Vous effectuez une saisie dans un formulaire et vous cliquez sur un bouton qui d
| | |
| --- | --- |
| Numéro de commande | 213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
index cec028ca507a10..424b2e9a7eee80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ La méthode objet du bouton *bUnBouton* effectue des actions différentes en fon
| | |
| --- | --- |
| Numéro de commande | 543 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
index 2fe5412d247c23..d44c23fbb728a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Reportez-vous à l'exemple de la commande [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 431 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
index 6b91503ca84d89..7ec35798e30e51 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
@@ -5,12 +5,12 @@ slug: /commands/show-on-disk
displayed_sidebar: docs
---
-**SHOW ON DISK** ( *cheminAccès* {; *} )
+**SHOW ON DISK** ( *cheminAccès* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Chemin d’accès de l’élément à montrer |
-| * | Opérateur | → | Si l’élément est un dossier, montrer son contenu |
+| cheminAccès | Text | → | Chemin d’accès de l’élément à montrer |
+| * | Opérateur | → | Si l’élément est un dossier, montrer son contenu |
@@ -53,7 +53,7 @@ La variable système OK prend la valeur 1 si la commande est correctement exécu
| | |
| --- | --- |
| Numéro de commande | 922 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
index c3a06f65cc6cfa..c42c23f243f97b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
@@ -5,11 +5,11 @@ slug: /commands/show-process
displayed_sidebar: docs
---
-**SHOW PROCESS** ( *process* )
+**SHOW PROCESS** ( *process* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process dont les fenêtres doivent être affichées |
+| process | Integer | → | Numéro du process dont les fenêtres doivent être affichées |
@@ -38,6 +38,6 @@ L'exemple suivant affiche le process "Clients", s'il était caché auparavant. L
| | |
| --- | --- |
| Numéro de commande | 325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
index 55800bddf79bb8..3e8c15e00b947b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Reportez-vous à l'exemple de la commande [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Numéro de commande | 433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
index a76d2fc6d28e9c..23dd70f9781f5f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
@@ -5,11 +5,11 @@ slug: /commands/show-window
displayed_sidebar: docs
---
-**SHOW WINDOW** {( *fenêtre* )}
+**SHOW WINDOW** ({ *fenêtre* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
@@ -32,6 +32,6 @@ Voir l'exemple de la commande [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Numéro de commande | 435 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
index 9b37516099b570..9eda2ce99315ad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
@@ -5,11 +5,11 @@ slug: /commands/sin
displayed_sidebar: docs
---
-**Sin** ( *nombre* ) : Real
+**Sin** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître le sinus |
+| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître le sinus |
| Résultat | Real | ← | Sinus de nombre |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 17 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
index f94ab60f534f31..eb56b08a6e6397 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
@@ -5,11 +5,11 @@ slug: /commands/size-of-array
displayed_sidebar: docs
---
-**Size of array** ( *tableau* ) : Integer
+**Size of array** ( *tableau* : Array ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau dont vous désirez connaître la taille |
+| tableau | Array | → | Tableau dont vous désirez connaître la taille |
| Résultat | Integer | ← | Nombre d'éléments dans le tableau |
@@ -52,6 +52,6 @@ L'exemple suivant retourne le nombre de colonnes d'une ligne d'un tableau à deu
| | |
| --- | --- |
| Numéro de commande | 274 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
index c53706657f2da4..6c074a263949e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/soap-declaration
displayed_sidebar: docs
---
-**SOAP DECLARATION** ( *variable* ; *type* ; entrée_sortie {; *alias*} )
+**SOAP DECLARATION** ( *variable* : Variable ; *type* : Integer ; entrée_sortie {; *alias* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable référençant un argument SOAP entrant ou sortant |
-| type | Integer | → | Type 4D vers lequel pointe l’argument |
-| entrée_sortie | Integer | → | 1 = Entrée SOAP, 2 = Sortie SOAP |
-| alias | Text | → | Nom publié pour cet argument lors des échanges SOAP |
+| variable | Variable | → | Variable référençant un argument SOAP entrant ou sortant |
+| type | Integer | → | Type 4D vers lequel pointe l’argument |
+| entrée_sortie | Integer | → | 1 = Entrée SOAP, 2 = Sortie SOAP |
+| alias | Text | → | Nom publié pour cet argument lors des échanges SOAP |
@@ -184,6 +184,6 @@ Cet exemple illustre l'effet des différents types de déclarations :
| | |
| --- | --- |
| Numéro de commande | 782 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
index 8ccbbda19888c0..164fbccce98616 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/soap-get-info
displayed_sidebar: docs
---
-**SOAP Get info** ( *numInfo* ) : Text
+**SOAP Get info** ( *numInfo* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numInfo | Integer | → | Numéro du type d’information SOAP à lire |
+| numInfo | Integer | → | Numéro du type d’information SOAP à lire |
| Résultat | Text | ← | Information SOAP |
@@ -39,6 +39,6 @@ Passez dans le paramètre *numInfo* le numéro du type d’information SOAP à c
| | |
| --- | --- |
| Numéro de commande | 784 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
index bbac832191a062..431530c0046fc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
@@ -5,11 +5,11 @@ slug: /commands/soap-reject-new-requests
displayed_sidebar: docs
---
-**SOAP REJECT NEW REQUESTS** ( *statutRejet* )
+**SOAP REJECT NEW REQUESTS** ( *statutRejet* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| statutRejet | Boolean | → | Vrai si rejet de nouvelles requêtes, sinon Faux |
+| statutRejet | Boolean | → | Vrai si rejet de nouvelles requêtes, sinon Faux |
@@ -42,6 +42,6 @@ Vous souhaitez rejeter les nouvelles requêtes reçues par votre serveur Web Ser
| | |
| --- | --- |
| Numéro de commande | 1636 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
index 14f33327da4ad4..c28b0e977f3040 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Cette commande peut être utilisée pour des raisons de sécurité dans la *Mét
| | |
| --- | --- |
| Numéro de commande | 783 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
index 7643ffe34bf4f6..ffafd0f3f6f40f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
@@ -5,12 +5,12 @@ slug: /commands/soap-send-fault
displayed_sidebar: docs
---
-**SOAP SEND FAULT** ( *typeErreur* ; *description* )
+**SOAP SEND FAULT** ( *typeErreur* : Integer ; *description* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeErreur | Integer | → | 1 = Erreur Client, 2 = Erreur Serveur |
-| description | Text | → | Description de l’erreur à envoyer au client SOAP |
+| typeErreur | Integer | → | 1 = Erreur Client, 2 = Erreur Serveur |
+| description | Text | → | Description de l’erreur à envoyer au client SOAP |
@@ -49,6 +49,6 @@ Pour reprendre l’exemple du Web Service “Racine\_carree” fourni dans la de
| | |
| --- | --- |
| Numéro de commande | 781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
index 7b19568d2f6ed0..d9c0bfc19e67dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
@@ -5,12 +5,12 @@ slug: /commands/sort-array
displayed_sidebar: docs
---
-**SORT ARRAY** ( *tableau* {; *tableau2* ; ... ; *tableauN*}{; > ou <} )
+**SORT ARRAY** ( *tableau* : Array {; *...tableau* : Array}{; > ou <} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| tableau | Array | → | Tableau(x) à trier |
-| > ou < | Opérateur | → | ">" pour effectuer un tri par ordre croissant ou "<" pour effectuer un tri par ordre décroissant (tri croissant si omis) |
+| tableau | Array | → | Tableau(x) à trier |
+| > ou < | Opérateur | → | ">" pour effectuer un tri par ordre croissant ou "<" pour effectuer un tri par ordre décroissant (tri croissant si omis) |
@@ -86,6 +86,6 @@ Vous affichez les noms d'une table \[Personnes\] dans une fenêtre flottante. Ce
| | |
| --- | --- |
| Numéro de commande | 229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
index 9994f3170ab1ab..2daf50f60b4c8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
@@ -5,12 +5,12 @@ slug: /commands/sort-list
displayed_sidebar: docs
---
-**SORT LIST** ( *liste* {; > ou <} )
+**SORT LIST** ( *liste* : Integer {; > ou <} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| liste | Integer | → | Numéro de référence de liste |
-| > ou < | Opérateur | → | Ordre de tri : > pour trier la liste dans l'ordre croissant ou < pour trier la liste dans l'ordre décroissant |
+| liste | Integer | → | Numéro de référence de liste |
+| > ou < | Opérateur | → | Ordre de tri : > pour trier la liste dans l'ordre croissant ou < pour trier la liste dans l'ordre décroissant |
@@ -61,6 +61,6 @@ Après l'exécution du code suivant :
| | |
| --- | --- |
| Numéro de commande | 391 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
index 19638963a039f6..5d9e9a496e8ec0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-add-to-user-dictionary
displayed_sidebar: docs
---
-**SPELL ADD TO USER DICTIONARY** ( *mots* )
+**SPELL ADD TO USER DICTIONARY** ( *mots* : Text, Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| mots | Text, Text array | → | Mot ou liste de mots à ajouter au dictionnaire utilisateur |
+| mots | Text, Text array | → | Mot ou liste de mots à ajouter au dictionnaire utilisateur |
@@ -42,6 +42,6 @@ Ajout de noms propres au dictionnaire utilisateur :
| | |
| --- | --- |
| Numéro de commande | 1214 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
index f7db32f24aeb4a..5ebdee2ee60d68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
@@ -5,14 +5,14 @@ slug: /commands/spell-check-text
displayed_sidebar: docs
---
-**SPELL CHECK TEXT** ( *leTexte* ; *posErr* ; *longErr* ; *posVérif* ; *tabSuggest* )
+**SPELL CHECK TEXT** ( *leTexte* ; *posErr* : Integer ; *longErr* : Integer ; *posVérif* : Integer ; *tabSuggest* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| leText | Text | → | Texte à vérifier |
+| leText | Text | → | Texte à vérifier |
| posErr | Integer | ← | Position du premier caractère du mot inconnu |
| longErr | Integer | ← | Longueur du mot inconnu |
-| posVérif | Integer | → | Position de départ de la vérification |
+| posVérif | Integer | → | Position de départ de la vérification |
| tabSuggest | Text array | ← | Liste des suggestions |
@@ -59,7 +59,7 @@ On souhaite compter le nombre de fautes potentielles dans un texte :
| | |
| --- | --- |
| Numéro de commande | 1215 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
index d9407f03e2160d..7c4f5069573194 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La vérification débute par le premier mot du champ ou de la variable. Si un mo
| | |
| --- | --- |
| Numéro de commande | 900 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
index 8b4c9d688b85a6..61f937d88c9cc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ On souhaite afficher la langue du dictionnaire courant :
| | |
| --- | --- |
| Numéro de commande | 1205 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
index 7fc661c6238595..6fafd2f31a3004 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
@@ -5,7 +5,7 @@ slug: /commands/spell-get-dictionary-list
displayed_sidebar: docs
---
-**SPELL GET DICTIONARY LIST** ( *langID* ; *langFichiers* ; *langNoms* )
+**SPELL GET DICTIONARY LIST** ( *langID* : Integer array ; *langFichiers* : Text array ; *langNoms* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ Vous avez placé "fr-classique+reforme1990.aff" et "fr-classique+reforme1990.dic
| | |
| --- | --- |
| Numéro de commande | 1204 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
index 05de53cdae08bf..e629f45cd15a3b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-set-current-dictionary
displayed_sidebar: docs
---
-**SPELL SET CURRENT DICTIONARY** ( *dictionnaire* )
+**SPELL SET CURRENT DICTIONARY** ( *dictionnaire* : Integer, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dictionnaire | Integer, Text | → | ID, Nom ou Code de langue du dictionnaire à utiliser pour la correction orthographique |
+| dictionnaire | Integer, Text | → | ID, Nom ou Code de langue du dictionnaire à utiliser pour la correction orthographique |
@@ -56,7 +56,7 @@ Chargement du dictionnaire "fr-classique" présent dans le dossier Hunspell :
| | |
| --- | --- |
| Numéro de commande | 904 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
index ad5be4d801d28a..bb32e3bef8abf0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
@@ -5,13 +5,13 @@ slug: /commands/split-string
displayed_sidebar: docs
---
-**Split string** ( *chaîneASéparer* ; *séparateur* {; *options*} ) : Collection
+**Split string** ( *chaîneASéparer* : Text ; *séparateur* : Text {; *options* : Integer} ) : Collection
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| chaîneASéparer | Text | → | Chaîne d'origine à découper |
-| séparateur | Text | → | Chaîne à laquelle chaîneASéparer doit être découpée. Si chaîne vide (""), chaque caractère de chaîneASéparer sera un élément de la collection |
-| options | Integer | → | Option(s) relative(s) aux chaînes vides et espaces |
+| chaîneASéparer | Text | → | Chaîne d'origine à découper |
+| séparateur | Text | → | Chaîne à laquelle chaîneASéparer doit être découpée. Si chaîne vide (""), chaque caractère de chaîneASéparer sera un élément de la collection |
+| options | Integer | → | Option(s) relative(s) aux chaînes vides et espaces |
| Résultat | Collection | ← | Collection de sous-chaînes |
@@ -63,6 +63,6 @@ Le paramètre *séparateur* peut être une chaîne de plusieurs caractères :
| | |
| --- | --- |
| Numéro de commande | 1554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
index cb7a5058edf437..764e3ea9ebbe7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 824 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
index 28d0608ee13994..be1bc4e4952bc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Cet exemple retournera dans la variable 4D *vName* les noms (ename) stockés dan
| | |
| --- | --- |
| Numéro de commande | 821 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
index cbf52994d645dd..6157d61f719b20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
@@ -5,14 +5,14 @@ slug: /commands/sql-execute-script
displayed_sidebar: docs
---
-**SQL EXECUTE SCRIPT** ( *cheminScript* ; *actionErreur* {; *nomAttribut* ; *valAttribut*} {; *nomAttribut2* ; *valAttribut2* ; ... ; *nomAttributN* ; *valAttributN*} )
+**SQL EXECUTE SCRIPT** ( *cheminScript* : Text ; *actionErreur* : Integer {; *nomAttribut* : Text ; *valAttribut* : Text} {; ...(*nomAttribut* : Text, *valAttribut* : Text)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminScript | Text | → | Chemin d'accès complet du fichier contenant le script SQL à exécuter |
-| actionErreur | Integer | → | Action à effectuer en cas d’erreur durant l’exécution du script |
-| nomAttribut | Text | → | Nom d’attribut à utiliser |
-| valAttribut | Text | → | Valeur de l’attribut |
+| cheminScript | Text | → | Chemin d'accès complet du fichier contenant le script SQL à exécuter |
+| actionErreur | Integer | → | Action à effectuer en cas d’erreur durant l’exécution du script |
+| nomAttribut | Text | → | Nom d’attribut à utiliser |
+| valAttribut | Text | → | Valeur de l’attribut |
@@ -63,7 +63,7 @@ Si le script est correctement exécuté (aucune erreur rencontrée), la variable
| | |
| --- | --- |
| Numéro de commande | 1089 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
index 92602b30d2c065..a4cb58f4d72d21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
@@ -5,11 +5,11 @@ slug: /commands/sql-execute
displayed_sidebar: docs
---
-**SQL EXECUTE** ( *instructionSQL* {; *objetLié*}{; *objetLié2* ; ... ; *objetLiéN*} )
+**SQL EXECUTE** ( *instructionSQL* : Text {; *...objetLié* : Variable, Field} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| instructionSQL | Text | → | Commande SQL à exécuter |
+| instructionSQL | Text | → | Commande SQL à exécuter |
| objetLié | Variable, Field | ← | Réception du résultat (si nécessaire) |
@@ -164,7 +164,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 820 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
index 5ef13b96a46191..ab60af31085051 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
@@ -5,14 +5,14 @@ slug: /commands/sql-export-database
displayed_sidebar: docs
---
-**SQL EXPORT DATABASE** ( *cheminDossier* {; *nbFichiers* {; *tailleLimiteFichiers* {; *tailleLimiteChamps*}}} )
+**SQL EXPORT DATABASE** ( *cheminDossier* : Text {; *nbFichiers* : Integer {; *tailleLimiteFichiers* : Integer {; *tailleLimiteChamps* : Integer}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminDossier | Text | → | Chemin d'accès du dossier d'export ou "" pour afficher une boîte de dialogue de sélection de dossier |
-| nbFichiers | Integer | → | Nombre maximum de fichiers par dossier |
-| tailleLimiteFichiers | Integer | → | Valeur de limite de taille des fichiers d'exportation (en Ko) |
-| tailleLimiteChamps | Integer | → | Limite de taille au-dessous de laquelle le contenu d'un champ Texte, BLOB ou Image sera intégré au fichier principal (en octets) |
+| cheminDossier | Text | → | Chemin d'accès du dossier d'export ou "" pour afficher une boîte de dialogue de sélection de dossier |
+| nbFichiers | Integer | → | Nombre maximum de fichiers par dossier |
+| tailleLimiteFichiers | Integer | → | Valeur de limite de taille des fichiers d'exportation (en Ko) |
+| tailleLimiteChamps | Integer | → | Limite de taille au-dessous de laquelle le contenu d'un champ Texte, BLOB ou Image sera intégré au fichier principal (en octets) |
@@ -61,7 +61,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1065 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
index 54af65415dbda7..0309756442d0b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
@@ -5,15 +5,15 @@ slug: /commands/sql-export-selection
displayed_sidebar: docs
---
-**SQL EXPORT SELECTION** ( *laTable* ; *cheminDossier* {; *nbFichiers* {; *tailleLimiteFichiers* {; *tailleLimiteChamps*}}} )
+**SQL EXPORT SELECTION** ( *laTable* : Table ; *cheminDossier* : Text {; *nbFichiers* : Integer {; *tailleLimiteFichiers* : Integer {; *tailleLimiteChamps* : Integer}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle exporter la sélection |
-| cheminDossier | Text | → | Chemin d'accès du dossier d'export ou "" pour afficher une boîte de dialogue de sélection de dossier |
-| nbFichiers | Integer | → | Nombre maximum de fichiers par dossier |
-| tailleLimiteFichiers | Integer | → | Valeur de limite de taille des fichiers d’export (en Ko) |
-| tailleLimiteChamps | Integer | → | Limite de taille au-dessous de laquelle le contenu d'un champ Texte, BLOB ou Image sera intégré au fichier principal (en octets) |
+| laTable | Table | → | Table de laquelle exporter la sélection |
+| cheminDossier | Text | → | Chemin d'accès du dossier d'export ou "" pour afficher une boîte de dialogue de sélection de dossier |
+| nbFichiers | Integer | → | Nombre maximum de fichiers par dossier |
+| tailleLimiteFichiers | Integer | → | Valeur de limite de taille des fichiers d’export (en Ko) |
+| tailleLimiteChamps | Integer | → | Limite de taille au-dessous de laquelle le contenu d'un champ Texte, BLOB ou Image sera intégré au fichier principal (en octets) |
@@ -42,7 +42,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1064 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
index e7018320e12099..73a9b45697103b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ Cette commande vous permet de contrôler la source de données courante, génér
| | |
| --- | --- |
| Numéro de commande | 990 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
index 75df4dc3c93de0..226fcc64a38692 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-data-source-list
displayed_sidebar: docs
---
-**SQL GET DATA SOURCE LIST** ( *typeSource* ; *tabNomsSources* ; *tabPilotes* )
+**SQL GET DATA SOURCE LIST** ( *typeSource* : Integer ; *tabNomsSources* : Text array ; *tabPilotes* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeSource | Integer | → | Type de source : utilisateur ou système |
+| typeSource | Integer | → | Type de source : utilisateur ou système |
| tabNomsSources | Text array | ← | Tableau des noms de sources de données |
| tabPilotes | Text array | ← | Tableau des pilotes des sources |
@@ -59,7 +59,7 @@ Si la commande est correctement exécutée, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 989 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
index dd5acffd1f2985..18e8368e80adc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-last-error
displayed_sidebar: docs
---
-**SQL GET LAST ERROR** ( *errCode* ; *errTexte* ; *errODBC* ; *errSQLServer* )
+**SQL GET LAST ERROR** ( *errCode* : Integer ; *errTexte* ; *errODBC* : Text ; *errSQLServer* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ Les deux derniers paramètres ne sont remplis que si l’erreur provient de la s
| | |
| --- | --- |
| Numéro de commande | 825 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
index 541663470f20d7..e4179934eb715c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-option
displayed_sidebar: docs
---
-**SQL GET OPTION** ( *option* ; *valeur* )
+**SQL GET OPTION** ( *option* : Integer ; *valeur* : Integer, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Numéro d’option |
+| option | Integer | → | Numéro d’option |
| valeur | Integer, Text | ← | Valeur de l’option |
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 819 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
index 3be6310f9ad3f5..e0031945c06fa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
@@ -5,11 +5,11 @@ slug: /commands/sql-load-record
displayed_sidebar: docs
---
-**SQL LOAD RECORD** {( *nombreEnr* )}
+**SQL LOAD RECORD** ({ *nombreEnr* : Integer })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombreEnr | Integer | → | Nombre d’enregistrements à charger |
+| nombreEnr | Integer | → | Nombre d’enregistrements à charger |
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 822 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
index ca8257c8a73a3d..bd493b24d8090e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
@@ -5,14 +5,14 @@ slug: /commands/sql-login
displayed_sidebar: docs
---
-**SQL LOGIN** {( *source* ; *nomUtilisateur* ; *motDePasse* ; * )}
+**SQL LOGIN** ({ *source* : Text ; *nomUtilisateur* : Text ; *motDePasse* : Text ; * })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Nom de publication de base 4D ouAdresse IP de base distante ouNom de source de données dans le gestionnaire ODBC ou"" pour afficher le dialogue de sélection |
-| nomUtilisateur | Text | → | Nom d’utilisateur enregistré dans la source de données |
-| motDePasse | Text | → | Mot de passe de l’utilisateur |
-| * | Opérateur | → | Appliquer à Debut SQL/Fin SQL Si omis : ne pas appliquer (base locale), si passé : appliquer |
+| source | Text | → | Nom de publication de base 4D ouAdresse IP de base distante ouNom de source de données dans le gestionnaire ODBC ou"" pour afficher le dialogue de sélection |
+| nomUtilisateur | Text | → | Nom d’utilisateur enregistré dans la source de données |
+| motDePasse | Text | → | Mot de passe de l’utilisateur |
+| * | Opérateur | → | Appliquer à Debut SQL/Fin SQL Si omis : ne pas appliquer (base locale), si passé : appliquer |
@@ -209,7 +209,7 @@ Si la connexion est correctement établie, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 817 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
index e47b95a7ea8934..23ec3cb5914ee7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la connexion a été correctement refermée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 872 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
index 20ca5c9069d367..ddec3cd441df0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-option
displayed_sidebar: docs
---
-**SQL SET OPTION** ( *option* ; *valeur* )
+**SQL SET OPTION** ( *option* : Integer ; *valeur* : Integer, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Numéro d’option à définir |
-| valeur | Integer, Text | → | Nouvelle valeur de l’option |
+| option | Integer | → | Numéro d’option à définir |
+| valeur | Integer, Text | → | Nouvelle valeur de l’option |
@@ -50,7 +50,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 818 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
index 83789318995b52..dab47497e9abaf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-parameter
displayed_sidebar: docs
---
-**SQL SET PARAMETER** ( *objet* ; *typeParam* )
+**SQL SET PARAMETER** ( *objet* : Object ; *typeParam* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objet | Object | → | Objet 4D à utiliser (variable, tableau ou champ) |
-| typeParam | Integer | → | Type du paramètre |
+| objet | Object | → | Objet 4D à utiliser (variable, tableau ou champ) |
+| typeParam | Integer | → | Type du paramètre |
@@ -83,7 +83,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 823 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
index 1917ad1acd7a50..a00e29d957a1ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
@@ -5,11 +5,11 @@ slug: /commands/square-root
displayed_sidebar: docs
---
-**Square root** ( *nombre* ) : Real
+**Square root** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre duquel calculer la racine carrée |
+| nombre | Real | → | Nombre duquel calculer la racine carrée |
| Résultat | Real | ← | Racine carrée de nombre |
@@ -48,6 +48,6 @@ Par exemple, Hypoténuse (4;3) retourne 5.
| | |
| --- | --- |
| Numéro de commande | 539 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
index 66bff789840310..33ff3c98a2272c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
@@ -5,14 +5,14 @@ slug: /commands/st-compute-expressions
displayed_sidebar: docs
---
-**ST COMPUTE EXPRESSIONS** ( {* ;} *objet* {; *débutSél* {; *finSél*}} )
+**ST COMPUTE EXPRESSIONS** ( * ; *objet* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
**ST COMPUTE EXPRESSIONS** ( *objet* : Field, Variable {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -73,7 +73,7 @@ Vous souhaitez mettre à jour les références incluses dans la sélection de te
| | |
| --- | --- |
| Numéro de commande | 1285 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
index 15dcacaf1c5ba6..52a5d1bd17e482 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
@@ -5,15 +5,15 @@ slug: /commands/st-freeze-expressions
displayed_sidebar: docs
---
-**ST FREEZE EXPRESSIONS** ( {* ;} *objet* {; *débutSél* {; *finSél*}}{; *} )
+**ST FREEZE EXPRESSIONS** ( * ; *objet* : Text {; *débutSél* : Integer {; *finSél* : Integer}}{; *} )
**ST FREEZE EXPRESSIONS** ( *objet* : Field, Variable {; *débutSél* : Integer {; *finSél* : Integer}}{; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
-| * | Opérateur | → | Si passé = mettre à jour les expressions avant de les figer |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si passé = mettre à jour les expressions avant de les figer |
@@ -71,6 +71,6 @@ Vous souhaitez insérer l’heure courante au début du texte et la figer avant
| | |
| --- | --- |
| Numéro de commande | 1282 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
index d1d2605d4ac893..0bc2de63854ed3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
@@ -5,15 +5,15 @@ slug: /commands/st-get-attributes
displayed_sidebar: docs
---
-**ST GET ATTRIBUTES** ( {* ;} *objet* ; *débutSél* ; *finSél* ; *nomAttribut* ; *valeurAttribut* {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} )
+**ST GET ATTRIBUTES** ( * ; *objet* : Text ; *débutSél* : Integer ; *finSél* : Integer ; *nomAttribut* : Integer ; *valeurAttribut* : Variable {; ...(*nomAttribut* : Integer, *valeurAttribut* : Variable)} )
**ST GET ATTRIBUTES** ( *objet* : Field, Variable ; *débutSél* : Integer ; *finSél* : Integer ; *nomAttribut* : Integer ; *valeurAttribut* : Variable {; ...(*nomAttribut* : Integer, *valeurAttribut* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| débutSél | Integer | → | Début de la sélection de texte |
-| finSél | Integer | → | Fin de la sélection de texte |
-| nomAttribut | Integer | → | Attribut à lire |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| débutSél | Integer | → | Début de la sélection de texte |
+| finSél | Integer | → | Fin de la sélection de texte |
+| nomAttribut | Integer | → | Attribut à lire |
| valeurAttribut | Variable | ← | Valeur courante de l’attribut |
@@ -104,7 +104,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1094 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
index 2e415b03ebd535..e100d03b8d2f95 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-content-type
displayed_sidebar: docs
---
-**ST Get content type** ( {* ;} *objet* {; *débutSél* {; *finSél* {; *débutBloc* {; *finBloc*}}}} ) : Integer
+**ST Get content type** ( * ; *objet* : Text {; *débutSél* : Integer {; *finSél* : Integer {; *débutBloc* : Integer {; *finBloc* : Integer}}}} ) : Integer
**ST Get content type** ( *objet* : Field, Variable {; *débutSél* : Integer {; *finSél* : Integer {; *débutBloc* : Integer {; *finBloc* : Integer}}}} ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
| débutBloc | Integer | ← | Début de position du premier type de la sélection |
| finBloc | Integer | ← | Fin de position du premier type de la sélection |
| Résultat | Integer | ← | Type de contenu |
@@ -107,7 +107,7 @@ Vous souhaitez afficher des commandes d’un menu contextuel en fonction du type
| | |
| --- | --- |
| Numéro de commande | 1286 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
index 3f7cc98d6b9dca..1849ada1f15a67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-expression
displayed_sidebar: docs
---
-**ST Get expression** ( {* ;} *objet* {; *débutSél* {; *finSél*}} ) : Text
+**ST Get expression** ( * ; *objet* : Text {; *débutSél* : Integer {; *finSél* : Integer}} ) : Text
**ST Get expression** ( *objet* : Field, Variable {; *débutSél* : Integer {; *finSél* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
| Résultat | Text | ← | Libellé de l’expression |
@@ -97,7 +97,7 @@ Vous souhaitez exécuter une méthode 4D en réponse à un clic sur un lien util
| | |
| --- | --- |
| Numéro de commande | 1287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
index 7c41b8e3e25791..09bc21e99c7d53 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-options
displayed_sidebar: docs
---
-**ST GET OPTIONS** ( {* ;} *objet* ; *option* ; *valeur* {; *option2* ; *valeur2* ; ... ; *optionN* ; *valeurN*} )
+**ST GET OPTIONS** ( * ; *objet* : Text ; *option* : Integer ; *valeur* : Integer {; ...(*option* : Integer, *valeur* : Integer)} )
**ST GET OPTIONS** ( *objet* : Field, Variable ; *option* : Integer ; *valeur* : Integer {; ...(*option* : Integer, *valeur* : Integer)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| option | Integer | → | Option à lire |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| option | Integer | → | Option à lire |
| valeur | Integer | ← | Valeur courante de l’option |
@@ -40,6 +40,6 @@ Passez dans *option* le code de l’option à lire. La commande retourne dans *v
| | |
| --- | --- |
| Numéro de commande | 1290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
index d0840f0df9b9d9..66d057bf87233b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-plain-text
displayed_sidebar: docs
---
-**ST Get plain text** ( {* ;} *objet* {; *modeRéf*} ) : Text
+**ST Get plain text** ( * ; *objet* : Text {; *modeRéf* : Integer} ) : Text
**ST Get plain text** ( *objet* : Field, Variable {; *modeRéf* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| modeRéf | Integer | → | Mode de prise en charge des références présentes dans le texte |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| modeRéf | Integer | → | Mode de prise en charge des références présentes dans le texte |
| Résultat | Text | ← | Texte sans balises |
@@ -113,7 +113,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1092 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
index f24c9a4a8a1699..74c5adadc99c49 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-text
displayed_sidebar: docs
---
-**ST Get text** ( {* ;} *objet* {; *débutSél* {; *finSél*}} ) : Text
+**ST Get text** ( * ; *objet* : Text {; *débutSél* : Integer {; *finSél* : Integer}} ) : Text
**ST Get text** ( *objet* : Field, Variable {; *débutSél* : Integer {; *finSél* : Integer}} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
| Résultat | Text | ← | Texte incluant les balises de style |
@@ -65,7 +65,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1116 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
index f8dcdd105c6a01..8071d074270533 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-get-url
displayed_sidebar: docs
---
-**ST GET URL** ( {* ;} *objet* ; *texteURL* ; *adresseURL* {; *débutSél* {; *finSél*}} )
+**ST GET URL** ( * ; *objet* : Text ; *texteURL* : Text ; *adresseURL* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
**ST GET URL** ( *objet* : Field, Variable ; *texteURL* : Text ; *adresseURL* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
| texteURL | Text | ← | Libellé visible de l’URL |
| adresseURL | Text | ← | Adresse de l’URL |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -76,6 +76,6 @@ Sur un événement double-clic, vous vérifiez que vous êtes bien en présence
| | |
| --- | --- |
| Numéro de commande | 1288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
index 5884c01b7b3b3a..65ac04487d8510 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
@@ -5,15 +5,15 @@ slug: /commands/st-insert-expression
displayed_sidebar: docs
---
-**ST INSERT EXPRESSION** ( {* ;} *objet* ; *expression* {; *débutSél* {; *finSél*}} )
+**ST INSERT EXPRESSION** ( {* ;} *objet* : Object ; *expression* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | Object | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| expression | Text | → | Expression et (optionnel) format à insérer |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | Object | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| expression | Text | → | Expression et (optionnel) format à insérer |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -90,7 +90,7 @@ Vous souhaitez remplacer le texte sélectionné par la valeur d'un champ :
| | |
| --- | --- |
| Numéro de commande | 1281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
index 3d6df2d01347b5..8840da1c5a0386 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-insert-url
displayed_sidebar: docs
---
-**ST INSERT URL** ( {* ;} *objet* ; *texteURL* ; *adresseURL* {; *débutSél* {; *finSél*}} )
+**ST INSERT URL** ( * ; *objet* : Text ; *texteURL* : Text ; *adresseURL* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
**ST INSERT URL** ( *objet* : Field, Variable ; *texteURL* : Text ; *adresseURL* : Text {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| texteURL | Text | → | Libellé visible de l’URL |
-| adresseURL | Text | → | Adresse de l’URL |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| texteURL | Text | → | Libellé visible de l’URL |
+| adresseURL | Text | → | Adresse de l’URL |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -69,7 +69,7 @@ Vous souhaitez insérer un lien vers le site Web de 4D à la place de la sélect
| | |
| --- | --- |
| Numéro de commande | 1280 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
index ff0d3e85d5c390..2a0c40527fda5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
@@ -5,16 +5,16 @@ slug: /commands/st-set-attributes
displayed_sidebar: docs
---
-**ST SET ATTRIBUTES** ( {* ;} *objet* ; *débutSél* ; *finSél* ; *nomAttribut* ; *valeurAttribut* {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} )
+**ST SET ATTRIBUTES** ( * ; *objet* : Text ; *débutSél* : Integer ; *finSél* : Integer ; *nomAttribut* : Text ; *valeurAttribut* : Text, Integer {; ...(*nomAttribut* : Text, *valeurAttribut* : Text, Integer)} )
**ST SET ATTRIBUTES** ( *objet* : Field, Variable ; *débutSél* : Integer ; *finSél* : Integer ; *nomAttribut* : Text ; *valeurAttribut* : Text, Integer {; ...(*nomAttribut* : Text, *valeurAttribut* : Text, Integer)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
-| débutSél | Integer | → | Début de la nouvelle sélection de texte |
-| finSél | Integer | → | Fin de la nouvelle sélection de texte |
-| nomAttribut | Text | → | Attribut à définir |
-| valeurAttribut | Text, Integer | → | Nouvelle valeur d’attribut |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
+| débutSél | Integer | → | Début de la nouvelle sélection de texte |
+| finSél | Integer | → | Fin de la nouvelle sélection de texte |
+| nomAttribut | Text | → | Attribut à définir |
+| valeurAttribut | Text, Integer | → | Nouvelle valeur d’attribut |
@@ -106,7 +106,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1093 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
index 9843f365d0dca4..363b6e9e26ba2d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
@@ -5,14 +5,14 @@ slug: /commands/st-set-options
displayed_sidebar: docs
---
-**ST SET OPTIONS** ( {* ;} *objet* ; *option* ; *valeur* {; *option2* ; *valeur2* ; ... ; *optionN* ; *valeurN*} )
+**ST SET OPTIONS** ( * ; *objet* : Text ; *option* : Integer ; *valeur* : Integer {; ...(*option* : Integer, *valeur* : Integer)} )
**ST SET OPTIONS** ( *objet* : Field, Variable ; *option* : Integer ; *valeur* : Integer {; ...(*option* : Integer, *valeur* : Integer)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
-| option | Integer | → | Option à définir |
-| valeur | Integer | → | Nouvelle valeur de l’option |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est un champ ou une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Champ ou variable (si * est omis) |
+| option | Integer | → | Option à définir |
+| valeur | Integer | → | Nouvelle valeur de l’option |
@@ -67,6 +67,6 @@ Le code suivant vous permet de basculer le mode d’affichage de la zone :
| | |
| --- | --- |
| Numéro de commande | 1289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
index 2eb7f207feb5e0..498024b7c9dbdf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-plain-text
displayed_sidebar: docs
---
-**ST SET PLAIN TEXT** ( {* ;} *objet* ; *nouvTexte* {; *débutSél* {; *finSél*}} )
+**ST SET PLAIN TEXT** ( * ; *objet* : Text ; *nouvTexte* {; *débutSél* : Integer {; *finSél* : Integer}} )
**ST SET PLAIN TEXT** ( *objet* : Field, Variable ; *nouvTexte* {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
-| nouvText | Text | → | Texte brut à insérer |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ (si * est omis) |
+| nouvText | Text | → | Texte brut à insérer |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -98,7 +98,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1136 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
index af299f6b981b21..f58ffe0dbcf2df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-text
displayed_sidebar: docs
---
-**ST SET TEXT** ( {* ;} *objet* ; *nouvTexte* {; *débutSél* {; *finSél*}} )
+**ST SET TEXT** ( * ; *objet* : Text ; *nouvTexte* {; *débutSél* : Integer {; *finSél* : Integer}} )
**ST SET TEXT** ( *objet* : Field, Variable ; *nouvTexte* {; *débutSél* : Integer {; *finSél* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
-| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
-| nouvText | Text | → | Texte multistyle à insérer |
-| débutSél | Integer | → | Début de la sélection |
-| finSél | Integer | → | Fin de la sélection |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne)
Si omis, objet est une variable ou un champ |
+| objet | any | → | Nom d'objet (si * est spécifié) ou
Variable ou champ Texte (si * est omis) |
+| nouvText | Text | → | Texte multistyle à insérer |
+| débutSél | Integer | → | Début de la sélection |
+| finSél | Integer | → | Fin de la sélection |
@@ -95,7 +95,7 @@ Reportez-vous à l'exemple de la commande [ST SET PLAIN TEXT](st-set-plain-text.
| | |
| --- | --- |
| Numéro de commande | 1115 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
index de258931563616..0c1a4c4c90bea8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
@@ -5,12 +5,12 @@ slug: /commands/start-monitoring-activity
displayed_sidebar: docs
---
-**START MONITORING ACTIVITY** ( *duree* {; *source*} )
+**START MONITORING ACTIVITY** ( *duree* : Real {; *source* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| duree | Real | → | Durée (en secondes) avant l'ouverture d'une session |
-| source | Integer | → | Origine d'une opération |
+| duree | Real | → | Durée (en secondes) avant l'ouverture d'une session |
+| source | Integer | → | Origine d'une opération |
@@ -98,6 +98,6 @@ Vous souhaitez lancer/arrêter le suivi et revoir les activités de données 4D
| | |
| --- | --- |
| Numéro de commande | 1712 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
index d8349ada5a286e..e970fbbfdecc0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si le serveur SQL a été correctement lancé, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 962 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
index 5af3db1b934482..8d369e909df9ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions (
| | |
| --- | --- |
| Numéro de commande | 239 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
index 2efb5cb288e5d1..3f86518a04e758 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
@@ -5,11 +5,11 @@ slug: /commands/std-deviation
displayed_sidebar: docs
---
-**Std deviation** ( *séries* ) : Real
+**Std deviation** ( *séries* : Field, Array ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs dont vous voulez obtenir l'écart type |
+| séries | Field, Array | → | Valeurs dont vous voulez obtenir l'écart type |
| Résultat | Real | ← | Ecart type de séries |
@@ -66,6 +66,6 @@ Cet exemple vous permet d’obtenir l’écart type d’une série de valeurs pl
| | |
| --- | --- |
| Numéro de commande | 26 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
index 0770ead08b2ca6..4640a88e4494ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Numéro de commande | 1721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
index 1a6f69f4e75283..467490132a7c96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 963 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
index bf5663e565e626..d8b51cf34de249 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Cet exemple montre la manière standard de définir les valeurs de **Storage** :
| | |
| --- | --- |
| Numéro de commande | 1525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
index c8ab89b634a3bf..cb7e51c9e78dd2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/string-list-to-array
displayed_sidebar: docs
---
-**STRING LIST TO ARRAY** ( *resNum* ; *tabChaînes* {; *resFichier*} )
+**STRING LIST TO ARRAY** ( *resNum* : Integer ; *tabChaînes* : Text array {; *resFichier* : Time} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| resNum | Integer | → | Numéro de ressource ou Attribut 'id' de l'élément 'group' (XLIFF) |
+| resNum | Integer | → | Numéro de ressource ou Attribut 'id' de l'élément 'group' (XLIFF) |
| tabChaînes | Text array | ← | Chaînes de la ressource STR# ou Chaînes de l'élément 'group' (XLIFF) |
-| resFichier | Time | → | Numéro de référence de fichier de ressources Si omis : tous les fichiers XLIFF ou les fichiers de ressources ouverts |
+| resFichier | Time | → | Numéro de référence de fichier de ressources Si omis : tous les fichiers XLIFF ou les fichiers de ressources ouverts |
@@ -51,7 +51,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 511 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
index 646fcccbd0a3da..cda2d4e7a21f67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
@@ -5,11 +5,11 @@ slug: /commands/structure-file
displayed_sidebar: docs
---
-**Structure file** {( * )} : Text
+**Structure file** ( * ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Retourner le fichier de structure de la base hôte |
+| * | Opérateur | → | Retourner le fichier de structure de la base hôte |
| Résultat | Text | ← | Nom long du fichier de structure de la base |
@@ -70,6 +70,6 @@ L’exemple suivant permet de savoir si la méthode est appelée depuis un compo
| | |
| --- | --- |
| Numéro de commande | 489 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
index 7ce2ee7c694efb..ef480fe384c9f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
@@ -5,13 +5,13 @@ slug: /commands/substring
displayed_sidebar: docs
---
-**Substring** ( *source* ; àPartirDe {; *nbCars*} ) : Text
+**Substring** ( *source* : Text ; àPartirDe {; *nbCars* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| source | Text | → | Chaîne de laquelle extraire une sous-chaîne |
-| àPartirDe | Integer | → | Position du premier caractère |
-| nbCars | Integer | → | Nombre de caractères à extraire |
+| source | Text | → | Chaîne de laquelle extraire une sous-chaîne |
+| àPartirDe | Integer | → | Position du premier caractère |
+| nbCars | Integer | → | Nombre de caractères à extraire |
| Résultat | Text | ← | Sous-chaîne de source |
@@ -69,6 +69,6 @@ La méthode projet suivante ajoute au tableau de type texte ou alpha, dont le po
| | |
| --- | --- |
| Numéro de commande | 12 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
index 0a07067943c6b4..ee78bf6265fa8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
@@ -5,12 +5,12 @@ slug: /commands/subtotal
displayed_sidebar: docs
---
-**Subtotal** ( *valeurs* {; *sautPage*} ) : Real
+**Subtotal** ( *valeurs* : Field {; *sautPage* : Integer} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| valeurs | Field | → | Champ ou variable numérique dont vous voulez calculer le sous-total |
-| sautPage | Integer | → | Niveau de rupture auquel effectuer un saut de page |
+| valeurs | Field | → | Champ ou variable numérique dont vous voulez calculer le sous-total |
+| sautPage | Integer | → | Niveau de rupture auquel effectuer un saut de page |
| Résultat | Real | ← | Sous-total de valeurs |
@@ -62,6 +62,6 @@ La commande **Subtotal** permet d'afficher des calculs de sous-totaux dans des f
| | |
| --- | --- |
| Numéro de commande | 97 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
index e54b5d03ef44d8..e62eadaeed0bb0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
@@ -5,11 +5,11 @@ slug: /commands/sum-squares
displayed_sidebar: docs
---
-**Sum squares** ( *séries* ) : Real
+**Sum squares** ( *séries* : Field, Array ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs dont vous voulez obtenir la somme des carrés |
+| séries | Field, Array | → | Valeurs dont vous voulez obtenir la somme des carrés |
| Résultat | Real | ← | Somme des carrés de séries |
@@ -64,6 +64,6 @@ Cet exemple vous permet d’obtenir la somme des carrés des valeurs placées da
| | |
| --- | --- |
| Numéro de commande | 28 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
index 8ecc91f0fd0db1..47ab00161dbeb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
@@ -5,12 +5,12 @@ slug: /commands/sum
displayed_sidebar: docs
---
-**Sum** ( *séries* {; *cheminAttribut*} ) : Real
+**Sum** ( *séries* : Field, Array {; *cheminAttribut* : Text} ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs dont vous souhaitez calculer la somme |
-| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la somme |
+| séries | Field, Array | → | Valeurs dont vous souhaitez calculer la somme |
+| cheminAttribut | Text | → | Chemin d'attribut duquel calculer la somme |
| Résultat | Real | ← | Somme de séries |
@@ -78,7 +78,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 1 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
index 21011e78734e92..41f0aae5a48bb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1385 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
index c45009b9fe4c3f..7951b7714397bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/svg-export-to-picture
displayed_sidebar: docs
---
-**SVG EXPORT TO PICTURE** ( *refElément* ; *vVarImage* {; *typeExport*} )
+**SVG EXPORT TO PICTURE** ( *refElément* : Text ; *vVarImage* {; *typeExport* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML racine |
-| vVarPicture | Picture | → | Variable image devant recevoir l’arbre XML (image SVG) |
-| typeExport | Integer | → | 0=Ne pas stocker la source de données, 1=Copier la source de données (par défaut), 2 = Prendre possession de la source de données |
+| refElément | Text | → | Référence d’élément XML racine |
+| vVarPicture | Picture | → | Variable image devant recevoir l’arbre XML (image SVG) |
+| typeExport | Integer | → | 0=Ne pas stocker la source de données, 1=Copier la source de données (par défaut), 2 = Prendre possession de la source de données |
@@ -58,6 +58,6 @@ L’exemple suivant permet d’afficher “Hello World” dans une image 4D :
| | |
| --- | --- |
| Numéro de commande | 1017 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
index 047673a6e83206..148acbf9a4ffe7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/svg-find-element-id-by-coordinates
displayed_sidebar: docs
---
-**SVG Find element ID by coordinates** ( {* ;} *objetImage* ; *x* ; *y* ) : Text
+**SVG Find element ID by coordinates** ( {* ;} *objetImage* ; *x* : Integer ; *y* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objetImage est un nom d’objet (chaîne) Si omis, objetImage est un champ ou une variable |
-| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| x | Integer | → | Coordonnée X en pixels |
-| y | Integer | → | Coordonnée Y en pixels |
+| * | Opérateur | → | Si spécifié, objetImage est un nom d’objet (chaîne) Si omis, objetImage est un champ ou une variable |
+| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| x | Integer | → | Coordonnée X en pixels |
+| y | Integer | → | Coordonnée Y en pixels |
| Résultat | Text | ← | ID de l’élément se trouvant à l’emplacement x,y |
@@ -58,7 +58,7 @@ Si *objetImage* ne contient pas une image SVG valide, la commande retourne une c
| | |
| --- | --- |
| Numéro de commande | 1054 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
index 0fec41307ab9f8..a4550144dc7ee1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
@@ -5,16 +5,16 @@ slug: /commands/svg-find-element-ids-by-rect
displayed_sidebar: docs
---
-**SVG Find element IDs by rect** ( {* ;} *objetImage* ; *x* ; *y* ; *largeur* ; *hauteur* ; *tabIds* ) : Boolean
+**SVG Find element IDs by rect** ( {* ;} *objetImage* ; *x* : Integer ; *y* : Integer ; *largeur* : Integer ; *hauteur* : Integer ; *tabIds* : Text array ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est un champ ou une variable |
-| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Champ ou Variable (si * omis) |
-| x | Integer | → | Coordonnée horizontale du coin haut gauche du rectangle de sélection |
-| y | Integer | → | Coordonnée verticale du coin haut gauche du rectangle de sélection |
-| largeur | Integer | → | Largeur du rectangle de sélection |
-| hauteur | Integer | → | Hauteur du rectangle de sélection |
+| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est un champ ou une variable |
+| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Champ ou Variable (si * omis) |
+| x | Integer | → | Coordonnée horizontale du coin haut gauche du rectangle de sélection |
+| y | Integer | → | Coordonnée verticale du coin haut gauche du rectangle de sélection |
+| largeur | Integer | → | Largeur du rectangle de sélection |
+| hauteur | Integer | → | Hauteur du rectangle de sélection |
| tabIds | Text array | ← | IDs des éléments dont le rectangle englobant est en intersection avec le rectangle de sélection |
| Résultat | Boolean | ← | Vrai = au moins un élément est trouvé, Faux sinon |
@@ -46,6 +46,6 @@ Tous les ID d’éléments dont le rectangle englobant est en intersection avec
| | |
| --- | --- |
| Numéro de commande | 1109 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
index 51e6db33044a31..0c096f7ccf8f15 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/svg-get-attribute
displayed_sidebar: docs
---
-**SVG GET ATTRIBUTE** ( {* ;} *objetImage* ; id_Element ; *nomAttribut* ; *valeurAttribut* )
+**SVG GET ATTRIBUTE** ( {* ;} *objetImage* ; id_Element ; *nomAttribut* : Text ; *valeurAttribut* : Text, Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
-| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
-| id_Element | Text | → | ID de l'élément dont vous souhaitez connaître une valeur d'attribut |
-| nomAttribut | Text | → | Nom d’attribut |
+| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
+| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
+| id_Element | Text | → | ID de l'élément dont vous souhaitez connaître une valeur d'attribut |
+| nomAttribut | Text | → | Nom d’attribut |
| valeurAttribut | Text, Integer | ← | Valeur courante de l'attribut |
@@ -46,6 +46,6 @@ Pour plus d’informations sur les attributs SVG, reportez-vous à la descriptio
| | |
| --- | --- |
| Numéro de commande | 1056 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
index cb5772025b3c3f..08cce20527fdee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
@@ -5,16 +5,16 @@ slug: /commands/svg-set-attribute
displayed_sidebar: docs
---
-**SVG SET ATTRIBUTE** ( {* ;} *objetImage* ; id_Element ; *nomAttribut* ; *valeurAttribut* {; *nomAttribut2* ; *valeurAttribut2* ; ... ; *nomAttributN* ; *valeurAttributN*} {; *})
+**SVG SET ATTRIBUTE** ( {* ;} *objetImage* ; id_Element ; *nomAttribut* : Text ; *valeurAttribut* : Text, Integer {; ...(*nomAttribut* : Text, *valeurAttribut* : Text, Integer)} {; *})
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
-| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
-| id_Element | Text | → | ID de l'élément dont un ou plusieurs attribut(s) sont à définir |
-| nomAttribut | Text | → | Attribut à définir |
-| valeurAttribut | Text, Integer | → | Nouvelle valeur d’attribut |
-| * | Opérateur | → | Si passé = modifier l'arbre DOM interne de l'image SVG (variable uniquement) |
+| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
+| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
+| id_Element | Text | → | ID de l'élément dont un ou plusieurs attribut(s) sont à définir |
+| nomAttribut | Text | → | Attribut à définir |
+| valeurAttribut | Text, Integer | → | Nouvelle valeur d’attribut |
+| * | Opérateur | → | Si passé = modifier l'arbre DOM interne de l'image SVG (variable uniquement) |
@@ -100,7 +100,7 @@ Modification du contenu d’un élément de type texte :
| | |
| --- | --- |
| Numéro de commande | 1055 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
index 70798e209d76e1..5f9432a3bcaba8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
@@ -5,14 +5,14 @@ slug: /commands/svg-show-element
displayed_sidebar: docs
---
-**SVG SHOW ELEMENT** ( {* ;} *objetImage* ; *id* {; *marge*} )
+**SVG SHOW ELEMENT** ( {* ;} *objetImage* ; *id* : Text {; *marge* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
-| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
-| id | Text | → | Attribut id de l’élément à visualiser |
-| marge | Integer | → | Marge de visibilité (en pixels par défaut) |
+| * | Opérateur | → | Si spécifié, objetImage est un nom d'objet (chaîne)
Si omis, objetImage est une variable ou un champ |
+| objetPicture | Picture | → | Nom d’objet (si * spécifié) ou Variable ou champ (si * omis) |
+| id | Text | → | Attribut id de l’élément à visualiser |
+| marge | Integer | → | Marge de visibilité (en pixels par défaut) |
@@ -34,7 +34,7 @@ Si la commande est exécutée en-dehors du contexte d'un formulaire ou si un *ob
| | |
| --- | --- |
| Numéro de commande | 1108 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
index b6303f92cc7d8f..ecbfc750ef326d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
@@ -5,11 +5,11 @@ slug: /commands/system-folder
displayed_sidebar: docs
---
-**System folder** {( *type* )} : Text
+**System folder** ( *type* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| type | Integer | → | Type de dossier système |
+| type | Integer | → | Type de dossier système |
| Résultat | Text | ← | Chemin d’accès d’un dossier du système actif |
@@ -54,6 +54,6 @@ Vous passez dans *type* un code représentant le type de dossier. 4D fournit les
| | |
| --- | --- |
| Numéro de commande | 487 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
index d58cf75ba6e9e7..a7c56a69fc6ebd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
@@ -152,6 +152,6 @@ retourne un objet contenant les informations suivantes :
| | |
| --- | --- |
| Numéro de commande | 1571 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
index 9ea48a97259c23..e4a4cdd8731aa9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
@@ -5,11 +5,11 @@ slug: /commands/table-fragmentation
displayed_sidebar: docs
---
-**Table fragmentation** ( *laTable* ) : Real
+**Table fragmentation** ( *laTable* : Table ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle connaître le taux de fragmentation |
+| laTable | Table | → | Table de laquelle connaître le taux de fragmentation |
| Résultat | Real | ← | Pourcentage de fragmentation |
@@ -47,6 +47,6 @@ Cette méthode de maintenance permet de demander le compactage du fichier de don
| | |
| --- | --- |
| Numéro de commande | 1127 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
index 62aa73c7e6cc92..1b885b8c012e53 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou pointeur de table |
+| numTable | ptrTable | Entier long, Pointeur | → | Numéro de table ou pointeur de table |
| Résultat | Text | ← | Nom de la table |
@@ -44,6 +44,6 @@ La méthode suivante est un exemple de méthode générique qui affiche les enre
| | |
| --- | --- |
| Numéro de commande | 256 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md
index 9103755cf508d8..12e3369edc8b86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/table.md
@@ -5,20 +5,24 @@ slug: /commands/table
displayed_sidebar: docs
---
-**Table** ( numTable | unPtr ) : any
+**Table** ( *tableNum* : Integer ) : Pointer
**Table** ( *tablePtr* : Pointer ) : Integer
**Table** ( *fieldPtr* : Pointer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| numTable | unPtr | Entier long, Pointeur | → | Numéro de table ou Pointeur de table ou Pointeur de champ |
-| Résultat | Integer, Pointer | ← | Pointeur de table si un Numéro de table est passé, Numéro de table si un Pointeur de table est passé, Numéro de table si un Pointeur de champ est passé |
+| tableNum | Integer | → | Numéro de table |
+| tablePtr | Pointer | → | Pointeur de table |
+| fieldPtr | Pointer | → | Pointeur de champ |
+| Résultat | Pointer, Integer | ← | Pointeur de table si un numéro de table est passé
Numéro de table si un pointeur de table ou un pointeur de champ est passé|
## Description
-**Table** a trois syntaxes différentes.retourne un pointeur sur la table.
-* Si vous passez un pointeur de table dans *unPtr*, **Table** retourne le numéro de la table.
-* Si vous passez un pointeur de champ dans *unPtr*, **Table** retourne le numéro de table du champ.
+**Table** a trois syntaxes différentes :
+
+* Si vous passez un numéro de table dans *tableNum*, **Table** retourne un pointeur sur la table.
+* Si vous passez un pointeur de table dans *tablePtr*, **Table** retourne le numéro de la table.
+* Si vous passez un pointeur de champ dans *fieldPtr*, **Table** retourne le numéro de table du champ.
## Exemple 1
@@ -63,6 +67,6 @@ Dans l'exemple suivant, la variable *numTable* est égale au numéro de la table
| | |
| --- | --- |
| Numéro de commande | 252 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
index f7ea362c226a70..02811b5be95f2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
@@ -5,11 +5,11 @@ slug: /commands/tan
displayed_sidebar: docs
---
-**Tan** ( *nombre* ) : Real
+**Tan** ( *nombre* : Real ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître la tangente |
+| nombre | Real | → | Nombre, exprimé en radians, dont vous voulez connaître la tangente |
| Résultat | Real | ← | Tangente de nombre |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 19 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
index 27382eb039bea8..e7905fcadc455d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 486 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
index 37ffc6a398ca18..86df8e6eed0f64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
@@ -5,11 +5,11 @@ slug: /commands/test-path-name
displayed_sidebar: docs
---
-**Test path name** ( *cheminAccès* ) : Integer
+**Test path name** ( *cheminAccès* : Text ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminAccès | Text | → | Chemin d'accès à un dossier ou un document |
+| cheminAccès | Text | → | Chemin d'accès à un dossier ou un document |
| Résultat | Integer | ← | 1= cheminAccès est un document existant 0 = cheminAccès est un dossier existant <0 = chemin d'accès invalide, code d'erreur du gestionnaire de fichiers du système |
@@ -55,6 +55,6 @@ L'exemple suivant teste la présence du document “Journal” dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 476 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
index 415c51a202037d..afa05980f0a509 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/test-semaphore
displayed_sidebar: docs
---
-**Test semaphore** ( *sémaphore* ) : Boolean
+**Test semaphore** ( *sémaphore* : Text ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sémaphore | Text | → | Nom du sémaphore à tester |
+| sémaphore | Text | → | Nom du sémaphore à tester |
| Résultat | Boolean | ← | Vrai = le sémaphore existe, Faux = le sémaphore n’existe pas |
@@ -51,6 +51,6 @@ Cet exemple permet de connaître l’état d’un traitement (en l’occurrence,
| | |
| --- | --- |
| Numéro de commande | 652 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
index a8bbb64ef12e48..2e6f68704cd01e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
@@ -5,17 +5,17 @@ slug: /commands/text-to-array
displayed_sidebar: docs
---
-**TEXT TO ARRAY** ( *varTexte* ; *tabTexte* ; *largeur* ; *nomPolice* ; *taillePolice* {; *stylePolice* {; *}} )
+**TEXT TO ARRAY** ( *varTexte* ; *tabTexte* : Text array ; *largeur* : Integer ; *nomPolice* : Text ; *taillePolice* : Integer {; *stylePolice* : Integer {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| varText | Text | → | Texte original à découper |
+| varText | Text | → | Texte original à découper |
| tabTexte | Text array | ← | Tableau contenant le texte découpé en mots ou lignes |
-| largeur | Integer | → | Largeur maximale de la chaîne (en pixels) |
-| nomPolice | Text | → | Nom de police |
-| taillePolice | Integer | → | Taille de police |
-| stylePolice | Integer | → | Style de police |
-| * | Opérateur | → | Si passé = interpréter le texte en multistyle |
+| largeur | Integer | → | Largeur maximale de la chaîne (en pixels) |
+| nomPolice | Text | → | Nom de police |
+| taillePolice | Integer | → | Taille de police |
+| stylePolice | Integer | → | Style de police |
+| * | Opérateur | → | Si passé = interpréter le texte en multistyle |
@@ -113,6 +113,6 @@ Vous devez imprimer dans une zone de 400 pixels de large un texte d’un maximum
| | |
| --- | --- |
| Numéro de commande | 1149 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
index 8e6e390518b251..83a697f0072739 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/text-to-blob
displayed_sidebar: docs
---
-**TEXT TO BLOB** ( *texte* ; *blob* {; *formatTexte* {; offset }} )
**TEXT TO BLOB** ( *texte* ; *blob* {; *formatTexte* {; *}} )
+**TEXT TO BLOB** ( *texte* : Text ; *blob* : Blob {; *formatTexte* : Integer {; offset }} )
**TEXT TO BLOB** ( *texte* : Text ; *blob* : Blob {; *formatTexte* : Integer {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texte | Text | → | Texte à écrire dans blob |
-| blob | Blob | → | BLOB devant recevoir le texte |
-| formatTexte | Integer | → | Format et jeu de caractères du texte |
+| texte | Text | → | Texte à écrire dans blob |
+| Blob | Blob | → | BLOB devant recevoir le texte |
+| formatTexte | Integer | → | Format et jeu de caractères du texte |
| offset | * | Variable, Opérateur | ↔ | Offset (en octets) dans le BLOB ou * pour ajouter la valeur à la fin du BLOB |
-| || | Nouvel offset après l'écriture si * omis |
+| | | | Nouvel offset après l'écriture si * omis |
@@ -111,6 +111,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
index 01ca0fd3040b8b..a102cbc828b105 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
@@ -5,14 +5,14 @@ slug: /commands/text-to-document
displayed_sidebar: docs
---
-**TEXT TO DOCUMENT** ( *nomFichier* ; *texte* {; *jeuCaractères* {; *modeRetour*}} )
+**TEXT TO DOCUMENT** ( *nomFichier* : Text ; *texte* : Text {; *jeuCaractères* : Text, Integer {; *modeRetour* : Integer}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom de document ou Chemin d'accès à un document |
-| texte | Text | → | Texte à stocker dans un document |
-| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
-| modeRetour | Integer | → | Mode de traitement des retours à la ligne |
+| nomFichier | Text | → | Nom de document ou Chemin d'accès à un document |
+| texte | Text | → | Texte à stocker dans un document |
+| jeuCaractères | Text, Integer | → | Nom ou Numéro de jeu de caractères |
+| modeRetour | Integer | → | Mode de traitement des retours à la ligne |
@@ -86,6 +86,6 @@ Exemple permettant à l’utilisateur de désigner l’emplacement du fichier à
| | |
| --- | --- |
| Numéro de commande | 1237 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
index d5a8c7f7358031..106b53e91b31f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
@@ -5,16 +5,13 @@ slug: /commands/throw
displayed_sidebar: docs
---
-**throw** ( *errorCode* {; *description*} )
-*throw* {( *errorObj* )}
+**throw** ( *errorCode* : Integer {; *description* : Text} )
**throw** ( *errorObj* : Object )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| errorCode | Integer | → | Code d'erreur |
-| description | Text | → | Description de l'erreur |
-| throw {( errorObj )} |
-| Paramètre | Type | Description |
-| errorObj | Object | → | Propriétés de l'erreur à construire |
+| errorCode | Integer | → | Code d'erreur |
+| description | Text | → | Description de l'erreur |
+| errorObj | Object | → | Propriétés de l'erreur à construire |
@@ -111,6 +108,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Numéro de commande | 1805 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
index ce264987352ca4..07ddff4ca3c7be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Référez-vous à l'exemple de la fonction [Milliseconds](milliseconds.md).
| | |
| --- | --- |
| Numéro de commande | 458 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
index 02e9a652150a09..b4a03710535e93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
@@ -5,11 +5,11 @@ slug: /commands/time-string
displayed_sidebar: docs
---
-**Time string** ( *secondes* ) : Text
+**Time string** ( *secondes* : Integer, Time ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| secondes | Integer, Time | → | Secondes écoulées depuis minuit |
+| secondes | Integer, Time | → | Secondes écoulées depuis minuit |
| Résultat | Text | ← | Heure sous forme de chaîne au format 24 heures |
@@ -42,6 +42,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte avec le message “468
| | |
| --- | --- |
| Numéro de commande | 180 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md
index e1c72db9069b9f..67d2dd5f81a448 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/time.md
@@ -5,11 +5,11 @@ slug: /commands/time
displayed_sidebar: docs
---
-**Time** ( *valHeure* ) : Time
+**Time** ( *valHeure* : Text, Integer ) : Time
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| valHeure | Text, Integer | → | Valeur à retourner sous forme d'heure |
+| valHeure | Text, Integer | → | Valeur à retourner sous forme d'heure |
| Résultat | Time | ← | Heure définie par valHeure |
@@ -57,6 +57,6 @@ Vous pouvez exprimer toute valeur numérique sous forme d’heure :
| | |
| --- | --- |
| Numéro de commande | 179 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
index b49780ea491ba9..bbeeb2a95ed475 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1445 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
index 35b6fd1f1650a3..dbfd15b7109a7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1016 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
index a3fe56748c463d..400de2704cca7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
@@ -67,6 +67,6 @@ La méthode projet DEBUG est listée ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
index e61279526fb894..430b0ea949191a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 961 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
index 74f8b739fcfc12..c095965f835ece 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
@@ -5,17 +5,16 @@ slug: /commands/transform-picture
displayed_sidebar: docs
---
-**TRANSFORM PICTURE** ( *image* ; *opérateur* {; *param1* {; *param2* {; *param3* {; *param4*}}}} )
+**TRANSFORM PICTURE** ( *image* : Picture ; *opérateur* : Integer {; *param1* : Real {; *param2* : Real {; *param3* : Real {; *param4* : Real}}}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| image | Picture | → | Image source à transformer |
-| ← | Image résultant de la transformation |
-| opérateur | Integer | → | Type de transformation à effectuer |
-| param1 | Real | → | Paramètre de la transformation |
-| param2 | Real | → | Paramètre de la transformation |
-| param3 | Real | → | Paramètre de la transformation |
-| param4 | Real | → | Paramètre de la transformation |
+| image | Picture | ↔ | *in:* Source picture to be transformed
*out:* Resulting picture after transformation |
+| opérateur | Integer | → | Type de transformation à effectuer |
+| param1 | Real | → | Paramètre de la transformation |
+| param2 | Real | → | Paramètre de la transformation |
+| param3 | Real | → | Paramètre de la transformation |
+| param4 | Real | → | Paramètre de la transformation |
@@ -77,6 +76,6 @@ Voici un exemple de recadrage (l’image est affichée dans le formulaire avec l
| | |
| --- | --- |
| Numéro de commande | 988 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
index 61b93e616150f5..faebe01971e9b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
@@ -57,6 +57,6 @@ Utilisez la fonction **Trigger event** pour structurer vos triggers comme ci-des
| | |
| --- | --- |
| Numéro de commande | 369 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
index 6d86aa9f72d4d6..d08222748477d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Reportez-vous à la description des *Triggers en cascade*.
| | |
| --- | --- |
| Numéro de commande | 398 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
index 3f5a410c485f62..d8c97e8db63294 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
@@ -5,11 +5,11 @@ slug: /commands/trigger-properties
displayed_sidebar: docs
---
-**TRIGGER PROPERTIES** ( *niveauTrigger* ; *evenementBase* ; *numTable* ; *numEnreg* )
+**TRIGGER PROPERTIES** ( *niveauTrigger* : Integer ; *evenementBase* : Integer ; *numTable* : Integer ; *numEnreg* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| niveauTrigger | Integer | → | Niveau d'exécution du trigger |
+| niveauTrigger | Integer | → | Niveau d'exécution du trigger |
| evenementBase | Integer | ← | Evénement de base de données |
| numTable | Integer | ← | Numéro de la table |
| numEnreg | Integer | ← | Numéro de l'enregistrement |
@@ -44,6 +44,6 @@ Le numéro de table et d'enregistrement pour l'enregistrement concerné par l'é
| | |
| --- | --- |
| Numéro de commande | 399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md
index 91d369a203f2b8..3027978cea601b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/true.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Vrai :
| | |
| --- | --- |
| Numéro de commande | 214 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
index a70ad6c542ac29..3a5bbb897d8c0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
@@ -5,12 +5,12 @@ slug: /commands/trunc
displayed_sidebar: docs
---
-**Trunc** ( *nombre* ; *nbDécimales* ) : Real
+**Trunc** ( *nombre* : Real ; *nbDécimales* : Integer ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nombre | Real | → | Nombre à tronquer |
-| nbDécimales | Integer | → | Nombre de décimales à conserver |
+| nombre | Real | → | Nombre à tronquer |
+| nbDécimales | Integer | → | Nombre de décimales à conserver |
| Résultat | Real | ← | nombre tronqué à partir du nombre de décimales indiqué par nbDécimales |
@@ -41,6 +41,6 @@ L'exemple suivant illustre la manière dont **Trunc** fonctionne dans différent
| | |
| --- | --- |
| Numéro de commande | 95 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
index 834a241ccf8bb3..c0e18b3b3500c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
@@ -5,11 +5,11 @@ slug: /commands/truncate-table
displayed_sidebar: docs
---
-**TRUNCATE TABLE** {( *laTable* )}
+**TRUNCATE TABLE** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table de laquelle vous voulez supprimer tous les enregistrements ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table de laquelle vous voulez supprimer tous les enregistrements ou Table par défaut si ce paramètre est omis |
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1051 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md
index 6a5a54a747b723..290c12241d6230 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/type.md
@@ -5,11 +5,11 @@ slug: /commands/type
displayed_sidebar: docs
---
-**Type** ( *champVar* ) : Integer
+**Type** ( *champVar* : Field, Variable ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| champVar | Field, Variable | → | Champ ou variable à tester |
+| champVar | Field, Variable | → | Champ ou variable à tester |
| Résultat | Integer | ← | Numéro du type de données |
@@ -151,6 +151,6 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 295 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
index 30418a5e49b1a9..59f5498ccdf160 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
@@ -5,11 +5,11 @@ slug: /commands/undefined
displayed_sidebar: docs
---
-**Undefined** ( *expression* ) : Boolean
+**Undefined** ( *expression* : Expression ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expression | Expression | → | Expression à tester |
+| expression | Expression | → | Expression à tester |
| Résultat | Boolean | ← | Vrai = Variable actuellement indéfinie Faux = Variable actuellement définie |
@@ -64,6 +64,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 82 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md
index ccda4c9c473135..4564f27a03496f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/union.md
@@ -5,13 +5,13 @@ slug: /commands/union
displayed_sidebar: docs
---
-**UNION** ( *ensemble1* ; *ensemble2* ; *résultat* )
+**UNION** ( *ensemble1* : Text ; *ensemble2* : Text ; *résultat* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble1 | Text | → | Premier ensemble |
-| ensemble2 | Text | → | Second ensemble |
-| résultat | Text | → | Ensemble résultant |
+| ensemble1 | Text | → | Premier ensemble |
+| ensemble2 | Text | → | Second ensemble |
+| résultat | Text | → | Ensemble résultant |
@@ -56,6 +56,6 @@ L'exemple suivant ajoute des enregistrements à l'ensemble des meilleurs clients
| | |
| --- | --- |
| Numéro de commande | 120 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
index a486cf167f6141..79cf5ac2aad2cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
@@ -5,11 +5,11 @@ slug: /commands/unload-record
displayed_sidebar: docs
---
-**UNLOAD RECORD** {( *laTable* )}
+**UNLOAD RECORD** ({ *laTable* : Table })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laTable | Table | → | Table pour laquelle l'enregistrement est à libérer ou Table par défaut si ce paramètre est omis |
+| laTable | Table | → | Table pour laquelle l'enregistrement est à libérer ou Table par défaut si ce paramètre est omis |
@@ -35,6 +35,6 @@ Si les enregistrements contiennent une quantité importante de données, de cham
| | |
| --- | --- |
| Numéro de commande | 212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
index 87a1998cc2a6bb..01d16d7eac6cce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Si le client est correctement désinscrit, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 649 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
index c3477365757ae6..c7754702a2ca26 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| laText | Text | → | Chaîne à convertir en majuscules |
-| * | Opérateur | → | Si passé : conserver les accents Si omis : supprimer les accents |
+| laText | Text | → | Chaîne à convertir en majuscules |
+| * | Opérateur | → | Si passé : conserver les accents Si omis : supprimer les accents |
| Résultat | Text | ← | chaîne en majuscules |
@@ -43,6 +43,6 @@ Reportez-vous à l'exemple de [Lowercase](lowercase.md).
| | |
| --- | --- |
| Numéro de commande | 13 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
index daa2b31cf4e7d3..c0b8eb5a02edae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
@@ -5,12 +5,12 @@ slug: /commands/use-character-set
displayed_sidebar: docs
---
-**USE CHARACTER SET** ( *filtre* {; *typeFiltre*} )
+**USE CHARACTER SET** ( *filtre* : Text, Operator {; *typeFiltre* : Integer} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| filtre | Text, * | → | Nom du jeu de caractères à utiliser ou * pour restaurer le jeu par défaut |
-| typeFiltre | Integer | → | 0 = Filtre d'exportation, 1 = Filtre d'importation |
+| filtre | Text, Operator | → | Nom du jeu de caractères à utiliser ou * pour restaurer le jeu par défaut |
+| typeFiltre | Integer | → | 0 = Filtre d'exportation, 1 = Filtre d'importation |
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 si le filtre est correctement chargé,
| | |
| --- | --- |
| Numéro de commande | 205 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
index 623a6e20b176b4..62e480735383a2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/use-named-selection
displayed_sidebar: docs
---
-**USE NAMED SELECTION** ( *nom* )
+**USE NAMED SELECTION** ( *nom* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nom | Text | → | Nom de la sélection temporaire à utiliser |
+| nom | Text | → | Nom de la sélection temporaire à utiliser |
@@ -36,7 +36,7 @@ Différents événements peuvent rendre une sélection temporaire obsolète : la
| | |
| --- | --- |
| Numéro de commande | 332 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
index 0e5ca85fd5591c..3bbf67f8e90e83 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
@@ -5,11 +5,11 @@ slug: /commands/use-set
displayed_sidebar: docs
---
-**USE SET** ( *ensemble* )
+**USE SET** ( *ensemble* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| ensemble | Text | → | Nom de l'ensemble à utiliser |
+| ensemble | Text | → | Nom de l'ensemble à utiliser |
@@ -43,7 +43,7 @@ L'exemple suivant utilise [LOAD SET](load-set.md) pour charger un ensemble des s
| | |
| --- | --- |
| Numéro de commande | 118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
index d4f3f3d7c7a9f3..efcd3ed8c37536 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
@@ -5,12 +5,12 @@ slug: /commands/user-in-group
displayed_sidebar: docs
---
-**User in group** ( *nomUtilisateur* ; *groupe* ) : Boolean
+**User in group** ( *nomUtilisateur* : Text ; *groupe* : Text ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomUtilisateur | Text | → | Nom de l'utilisateur (compte) |
-| groupe | Text | → | Nom du groupe |
+| nomUtilisateur | Text | → | Nom de l'utilisateur (compte) |
+| groupe | Text | → | Nom du groupe |
| Résultat | Boolean | ← | Vrai = utilisateur est dans groupe Faux = utilisateur n'est pas dans groupe |
@@ -48,6 +48,6 @@ L'exemple suivant recherche des factures. Si l'utilisateur courant est dans le g
| | |
| --- | --- |
| Numéro de commande | 338 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
index a5f7269f45b938..83d8ef6d349889 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
@@ -5,12 +5,11 @@ slug: /commands/users-to-blob
displayed_sidebar: docs
---
-**USERS TO BLOB** ( *utilisateurs* )
+**USERS TO BLOB** ( *utilisateurs* : Blob )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| utilisateurs | Blob | → | BLOB devant contenir les utilisateurs |
-| ← | Comptes utilisateurs (crypté) |
+| utilisateurs | Blob | ↔ | *in:* BLOB that must contain users
*out:* User accounts (encrypted) |
@@ -36,7 +35,7 @@ Ce principe permet de conserver une sauvegarde des utilisateurs parmi les donné
| | |
| --- | --- |
| Numéro de commande | 849 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
index 7470926e53ff77..8e9b6516272e78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
@@ -5,13 +5,13 @@ slug: /commands/validate-password
displayed_sidebar: docs
---
-**Validate password** ( *utilisateur* ; *motDePasse* {; *digest*} ) : Boolean
+**Validate password** ( *utilisateur* : Integer, Text ; *motDePasse* : Text {; *digest* : Boolean} ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| utilisateur | Integer, Text | → | N° de référence unique ou Nom de l’utilisateur |
-| motDePasse | Text | → | Mot de passe non crypté |
-| digest | Boolean | → | Mot de passe digest = Vrai,
Mot de passe en clair (défaut)= Faux |
+| utilisateur | Integer, Text | → | N° de référence unique ou Nom de l’utilisateur |
+| motDePasse | Text | → | Mot de passe non crypté |
+| digest | Boolean | → | Mot de passe digest = Vrai,
Mot de passe en clair (défaut)= Faux |
| Résultat | Boolean | ← | Vrai = mot de passe correct, Faux = mot de passe incorrect |
@@ -66,6 +66,6 @@ Dans la [On REST Authentication database method](on-rest-authentication-database
| | |
| --- | --- |
| Numéro de commande | 638 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
index cd6cb195c219a2..659e960dfa3fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
@@ -37,7 +37,7 @@ A noter que lorsque OK vaut 0, la transaction est automatiquement annulée en in
| | |
| --- | --- |
| Numéro de commande | 240 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
index 0e7924d6987593..df93b84ae4a207 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
@@ -5,11 +5,11 @@ slug: /commands/value-type
displayed_sidebar: docs
---
-**Value type** ( *expression* ) : Integer
+**Value type** ( *expression* : Expression ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| expression | Expression | → | Expression dont la valeur résultante doit être testée |
+| expression | Expression | → | Expression dont la valeur résultante doit être testée |
| Résultat | Integer | ← | Numéro du type de données |
@@ -119,6 +119,6 @@ Vous souhaitez obtenir la somme de toutes les valeurs numériques dans une colle
| | |
| --- | --- |
| Numéro de commande | 1509 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
index 7cae435c6f6b16..468ad97e05991c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
@@ -5,14 +5,14 @@ slug: /commands/variable-to-blob
displayed_sidebar: docs
---
-**VARIABLE TO BLOB** ( *variable* ; *blob* {; offset } )
**VARIABLE TO BLOB** ( *variable* ; *blob* {; *} )
+**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; offset } )
**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| variable | Variable | → | Variable à stocker dans le BLOB |
-| blob | Blob | → | BLOB devant recevoir la variable |
+| variable | Variable | → | Variable à stocker dans le BLOB |
+| Blob | Blob | → | BLOB devant recevoir la variable |
| offset | * | Variable, Opérateur | ↔ | Offset de la variable (en octets) dans BLOB ou * pour ajouter la variable à la fin du BLOB |
-|||| Nouvel offset après écriture si * omis |
+| | | | Nouvel offset après écriture si * omis |
@@ -136,7 +136,7 @@ Lorsque ces méthodes ont été ajoutées à votre application, vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 532 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
index 33b23a8477d4f6..9e306c9b02383d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
@@ -5,13 +5,13 @@ slug: /commands/variable-to-variable
displayed_sidebar: docs
---
-**VARIABLE TO VARIABLE** ( *process* ; *varDestination* ; *varSource* {; *varDestination2* ; *varSource2* ; ... ; *varDestinationN* ; *varSourceN*} )
+**VARIABLE TO VARIABLE** ( *process* : Integer ; *varDestination* : Variable ; *varSource* : Variable {; ...(*varDestination* : Variable, *varSource* : Variable)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| process | Integer | → | Numéro du process de destination |
-| varDestination | Variable | → | Variable de destination |
-| varSource | Variable | → | Variable source |
+| process | Integer | → | Numéro du process de destination |
+| varDestination | Variable | → | Variable de destination |
+| varSource | Variable | → | Variable source |
@@ -65,6 +65,6 @@ L'exemple suivant récupère un tableau process depuis le process désigné par
| | |
| --- | --- |
| Numéro de commande | 635 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
index 658908a908b523..9a33a310b98ce4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
@@ -5,11 +5,11 @@ slug: /commands/variance
displayed_sidebar: docs
---
-**Variance** ( *séries* ) : Real
+**Variance** ( *séries* : Field, Array ) : Real
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Valeurs dont vous voulez obtenir la variance |
+| séries | Field, Array | → | Valeurs dont vous voulez obtenir la variance |
| Résultat | Real | ← | Variance de séries |
@@ -72,6 +72,6 @@ Cet exemple vous permet d’obtenir la variance des valeurs placées dans un tab
| | |
| --- | --- |
| Numéro de commande | 27 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
index f3c87ad358415d..7b87db2e46db40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/verify-current-data-file
displayed_sidebar: docs
---
-**VERIFY CURRENT DATA FILE** {( *objets* ; *options* ; *méthode* {; *tabTables* {; *tabChamps*}} )}
+**VERIFY CURRENT DATA FILE** ({ *objets* : Integer ; *options* : Integer ; *méthode* : Text {; *tabTables* : Integer array {; *tabChamps* : Integer array}} })
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| objets | Integer | → | Objets à vérifier |
-| options | Integer | → | Options de vérification |
-| méthode | Text | → | Nom de la méthode 4D de rétro-appel |
-| tabTables | Integer array | → | Numéros des tables à vérifier |
-| tabChamps | 2D Integer array, 2D Integer array, 2D Real array | → | Numéros des index à vérifier |
+| objets | Integer | → | Objets à vérifier |
+| options | Integer | → | Options de vérification |
+| méthode | Text | → | Nom de la méthode 4D de rétro-appel |
+| tabTables | Integer array | → | Numéros des tables à vérifier |
+| tabChamps | Integer array | → | 2D array, numbers of indexes to be checked |
@@ -48,7 +48,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 1008 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
index ca87c17b217edd..df99b6f3dca591 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
@@ -5,17 +5,17 @@ slug: /commands/verify-data-file
displayed_sidebar: docs
---
-**VERIFY DATA FILE** ( *cheminStructure* ; *cheminDonnées* ; *objets* ; *options* ; *méthode* {; *tabTables* {; *tabChamps*}} )
+**VERIFY DATA FILE** ( *cheminStructure* : Text ; *cheminDonnées* : Text ; *objets* : Integer ; *options* : Integer ; *méthode* : Text {; *tabTables* : Integer array {; *tabChamps* : Integer array}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| cheminStructure | Text | → | Chemin d’accès du fichier de structure de la base à vérifier |
-| cheminDonnées | Text | → | Chemin d’accès du fichier de données de la base à vérifier |
-| objets | Integer | → | Objets à vérifier |
-| options | Integer | → | Options de vérification |
-| méthode | Text | → | Nom de la méthode 4D de rétroappel |
-| tabTables | Integer array | → | Numéros des tables à vérifier |
-| tabChamps | 2D Integer array, 2D Integer array, 2D Real array | → | Numéros des index à vérifier |
+| cheminStructure | Text | → | Chemin d’accès du fichier de structure de la base à vérifier |
+| cheminDonnées | Text | → | Chemin d’accès du fichier de données de la base à vérifier |
+| objets | Integer | → | Objets à vérifier |
+| options | Integer | → | Options de vérification |
+| méthode | Text | → | Nom de la méthode 4D de rétroappel |
+| tabTables | Integer array | → | Numéros des tables à vérifier |
+| tabChamps | Integer array | → | Numéros des index à vérifier |
@@ -174,7 +174,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 939 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
index 13cf4529b0a02d..e5c3dd2c692fbe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/verify-password-hash
displayed_sidebar: docs
---
-**Verify password hash** ( *motDePasse* ; *hash* ) : Boolean
+**Verify password hash** ( *motDePasse* : Text ; *hash* : Text ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| motDePasse | Text | → | Mot de passe utilisateur (seuls les 72 premiers caractères sont utilisés) |
-| hash | Text | → | Hash du mot de passe |
+| motDePasse | Text | → | Mot de passe utilisateur (seuls les 72 premiers caractères sont utilisés) |
+| hash | Text | → | Hash du mot de passe |
| Résultat | Boolean | ← | Vrai si motDePasse et hash correspondent, Faux sinon |
@@ -59,6 +59,6 @@ Cet exemple compare un hash de mot de passe créé par la commande [Generate pas
| | |
| --- | --- |
| Numéro de commande | 1534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
index 01359837a35611..d3336c26799b05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Ce test permet d’exécuter du code différent selon que la version est une app
| | |
| --- | --- |
| Numéro de commande | 495 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
index 01e40214b7bab6..88e0d9ae38dbf1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/volume-attributes
displayed_sidebar: docs
---
-**VOLUME ATTRIBUTES** ( *volume* ; *taille* ; *utilisé* ; *libre* )
+**VOLUME ATTRIBUTES** ( *volume* : Text ; *taille* : Real ; *utilisé* : Real ; *libre* : Real )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| volume | Text | → | Nom du volume |
+| volume | Text | → | Nom du volume |
| taille | Real | ← | Taille du volume exprimée en octets |
| utilisé | Real | ← | Place utilisée sur le volume exprimée en octets |
| libre | Real | ← | Place libre sur le volume exprimée en octets |
@@ -103,7 +103,7 @@ Votre application comprend des opérations par lots qui sont exécutées la nuit
| | |
| --- | --- |
| Numéro de commande | 472 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
index 6b4576e045cb95..17b8b641e8d90e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
@@ -5,7 +5,7 @@ slug: /commands/volume-list
displayed_sidebar: docs
---
-**VOLUME LIST** ( *volumes* )
+**VOLUME LIST** ( *volumes* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ A l'aide de la zone de défilement *ttVolumes*, vous voulez afficher la liste de
| | |
| --- | --- |
| Numéro de commande | 471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
index 1151266baab7f6..a3bda258cfd74c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-back-url-available
displayed_sidebar: docs
---
-**WA Back URL available** ( {* ;} *objet* ) : Boolean
+**WA Back URL available** ( * ; *objet* : Text ) : Boolean
**WA Back URL available** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Boolean | ← | Vrai s’il existe un URL précédent dans la séquence d’URLs ouverts, Faux sinon |
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1026 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
index f1a15784dde80f..8981c50909d213 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
@@ -5,13 +5,13 @@ slug: /commands/wa-create-url-history-menu
displayed_sidebar: docs
---
-**WA Create URL history menu** ( {* ;} *objet* {; *direction*} ) : Text
+**WA Create URL history menu** ( * ; *objet* : Text {; *direction* : Integer} ) : Text
**WA Create URL history menu** ( *objet* : Field, Variable {; *direction* : Integer} ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| direction | Integer | → | 0 ou omis=Liste des URLs précédents, 1=Liste des URLs suivants |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| direction | Integer | → | 0 ou omis=Liste des URLs précédents, 1=Liste des URLs suivants |
| Résultat | Text | ← | Référence du menu |
@@ -68,6 +68,6 @@ Le code suivant pourrait être associé à un bouton 3D avec pop up menu libell
| | |
| --- | --- |
| Numéro de commande | 1049 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
index 50ce5344349c4c..47201f2542fd03 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
@@ -5,14 +5,14 @@ slug: /commands/wa-evaluate-javascript
displayed_sidebar: docs
---
-**WA Evaluate JavaScript** ( {* ;} *objet* ; *codeJS* {; *type*} ) : any
+**WA Evaluate JavaScript** ( * ; *objet* : Text ; *codeJS* : Text {; *type* : Integer} ) : any
**WA Evaluate JavaScript** ( *objet* : Field, Variable ; *codeJS* : Text {; *type* : Integer} ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| codeJS | Text | → | Code JavaScript |
-| type | Integer | → | Type dans lequel convertir le résultat |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| codeJS | Text | → | Code JavaScript |
+| type | Integer | → | Type dans lequel convertir le résultat |
| Résultat | Date, Time, Object, Pointer, Real, Text | ← | Résultat de l’exécution |
@@ -107,6 +107,6 @@ Vous pouvez alors évaluer le code JavaScript depuis 4D :
| | |
| --- | --- |
| Numéro de commande | 1029 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
index 36efb5f17148c5..451e77a3bf9dbd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
@@ -5,16 +5,16 @@ slug: /commands/wa-execute-javascript-function
displayed_sidebar: docs
---
-**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *objet* ; *fonctionJS* ; résultat {; *param*}{; *param2* ; ... ; *paramN*} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *objet* ; *fonctionJS* ; * {; *param*}{; *param2* ; ... ; *paramN*} )
+**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *objet* : Text ; *fonctionJS* : Text ; résultat {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *objet* : Field, Variable ; *fonctionJS* : Text ; résultat {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *objet* : Text ; *fonctionJS* : Text ; * {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *objet* : Field, Variable ; *fonctionJS* : Text ; * {; *...param* : any} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| fonctionJS | Text | → | Nom de la fonction JavaScript à exécuter |
-| résultat | * | Variable | → | * pour une fonction sans résultat ou |
-| ← | Résultat de la fonction (si attendu) |
-| param | Text, Number, Date, Object, Collection | → | Paramètre(s) à passer à la fonction |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| fonctionJS | Text | → | Nom de la fonction JavaScript à exécuter |
+| result | Variable | ← | Function result (if expected) |
+| * | Operator | → | Function with no result |
+| param | any | → | Paramètre(s) à passer à la fonction |
@@ -63,6 +63,6 @@ La fonction JavaScript "getCustomerInfos" reçoit un identifiant numérique en p
| | |
| --- | --- |
| Numéro de commande | 1043 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
index 97676786f95ccf..8df273e59bed4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-forward-url-available
displayed_sidebar: docs
---
-**WA Forward URL available** ( {* ;} *objet* ) : Boolean
+**WA Forward URL available** ( * ; *objet* : Text ) : Boolean
**WA Forward URL available** ( *objet* : Field, Variable ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Boolean | ← | Vrai s’il existe un URL suivant dans la séquence d’URLs ouverts, Faux sinon |
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1027 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
index 31620cf6f843a5..6677b3c4643ad1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-current-url
displayed_sidebar: docs
---
-**WA Get current URL** ( {* ;} *objet* ) : Text
+**WA Get current URL** ( * ; *objet* : Text ) : Text
**WA Get current URL** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Text | ← | URL actuellement chargé dans la zone Web |
@@ -41,6 +41,6 @@ La page affichée est l’URL "www.apple.com" et la page "www.4d.com" est en cou
| | |
| --- | --- |
| Numéro de commande | 1025 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
index d829a471113119..13b6e6b86a8ac5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-external-links-filters
displayed_sidebar: docs
---
-**WA GET EXTERNAL LINKS FILTERS** ( {* ;} *objet* ; *tabFiltres* ; *tabAutorisRefus* )
+**WA GET EXTERNAL LINKS FILTERS** ( * ; *objet* : Text ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
**WA GET EXTERNAL LINKS FILTERS** ( *objet* : Field, Variable ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| tabFiltres | Text array | ← | Tableau de filtres |
| tabAutorisRefus | Boolean array | ← | Tableau autoriser-refuser |
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET EXTERNAL LINKS FILTERS](wa-s
| | |
| --- | --- |
| Numéro de commande | 1033 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
index 693559b05190c9..73ad9a721d243b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-filtered-url
displayed_sidebar: docs
---
-**WA Get last filtered URL** ( {* ;} *objet* ) : Text
+**WA Get last filtered URL** ( * ; *objet* : Text ) : Text
**WA Get last filtered URL** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Text | ← | Dernier URL filtré |
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le contexte des événements fo
| | |
| --- | --- |
| Numéro de commande | 1035 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
index 590a0891702197..3016feae36e681 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-url-error
displayed_sidebar: docs
---
-**WA GET LAST URL ERROR** ( {* ;} *objet* ; *url* ; *description* ; *codeErreur* )
+**WA GET LAST URL ERROR** ( * ; *objet* : Text ; *url* : Text ; *description* : Text ; *codeErreur* : Integer )
**WA GET LAST URL ERROR** ( *objet* : Field, Variable ; *url* : Text ; *description* : Text ; *codeErreur* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| url | Text | ← | URL à l’origine de l’erreur |
| description | Text | ← | Description de l’erreur (macOS) |
| codeErreur | Integer | ← | Code d'erreur |
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le cadre de l’événement for
| | |
| --- | --- |
| Numéro de commande | 1034 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
index 7ed9445cf288da..34e2efa99e42b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-content
displayed_sidebar: docs
---
-**WA Get page content** ( {* ;} *objet* ) : Text
+**WA Get page content** ( * ; *objet* : Text ) : Text
**WA Get page content** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Text | ← | Code HTML source |
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide si le contenu de la page courante n’e
| | |
| --- | --- |
| Numéro de commande | 1038 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
index 0f63e801f35f21..7cdb8af6cdd774 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-title
displayed_sidebar: docs
---
-**WA Get page title** ( {* ;} *objet* ) : Text
+**WA Get page title** ( * ; *objet* : Text ) : Text
**WA Get page title** ( *objet* : Field, Variable ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| Résultat | Text | ← | Titre de la page courante |
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide s’il n’y a pas de titre disponible
| | |
| --- | --- |
| Numéro de commande | 1036 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
index 597a74dbf6d3bc..35a790f6e07c62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
@@ -5,13 +5,13 @@ slug: /commands/wa-get-preference
displayed_sidebar: docs
---
-**WA GET PREFERENCE** ( {* ;} *objet* ; *sélecteur* ; *valeur* )
+**WA GET PREFERENCE** ( * ; *objet* : Text ; *sélecteur* : Integer ; *valeur* : Variable )
**WA GET PREFERENCE** ( *objet* : Field, Variable ; *sélecteur* : Integer ; *valeur* : Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| sélecteur | Integer | → | Préférence à lire |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| sélecteur | Integer | → | Préférence à lire |
| valeur | Variable | ← | Valeur courante de la préférence |
@@ -42,6 +42,6 @@ Passez dans le paramètre *valeur* une variable devant recevoir la valeur couran
| | |
| --- | --- |
| Numéro de commande | 1042 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
index ff42cde6df250f..3f832dc5c4bc40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-url-filters
displayed_sidebar: docs
---
-**WA GET URL FILTERS** ( {* ;} *objet* ; *tabFiltres* ; *tabAutorisRefus* )
+**WA GET URL FILTERS** ( * ; *objet* : Text ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
**WA GET URL FILTERS** ( *objet* : Field, Variable ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| tabFiltres | Text array | ← | Tableau de filtres |
| tabAutorisRefus | Boolean array | ← | Tableau autoriser-refuser |
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET URL FILTERS](wa-set-url-filt
| | |
| --- | --- |
| Numéro de commande | 1031 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
index 54fcce2c65bdf6..704061c80f9233 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
@@ -5,14 +5,14 @@ slug: /commands/wa-get-url-history
displayed_sidebar: docs
---
-**WA GET URL HISTORY** ( {* ;} *objet* ; *tabsUrls* {; *sens* {; *tabTitres*}} )
+**WA GET URL HISTORY** ( * ; *objet* : Text ; *tabsUrls* : Text array {; *sens* : Integer {; *tabTitres* : Text array}} )
**WA GET URL HISTORY** ( *objet* : Field, Variable ; *tabsUrls* : Text array {; *sens* : Integer {; *tabTitres* : Text array}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
| tabsUrls | Text array | ← | Tableau des URLs visités |
-| sens | Integer | → | 0 ou omis=Liste des URLs précédents, 1=Liste des URLs suivants |
+| sens | Integer | → | 0 ou omis=Liste des URLs précédents, 1=Liste des URLs suivants |
| tabTitres | Text array | ← | Tableau des titres de fenêtres |
@@ -49,6 +49,6 @@ S’il est passé, le paramètre *tabTitres* contient la liste des noms de fenê
| | |
| --- | --- |
| Numéro de commande | 1048 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
index bd5774b6fd29f7..987653f74ea9cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-back-url
displayed_sidebar: docs
---
-**WA OPEN BACK URL** ( {* ;} *objet* )
+**WA OPEN BACK URL** ( * ; *objet* : Text )
**WA OPEN BACK URL** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL précédent, la commande ne fait rien. Vous pouvez te
| | |
| --- | --- |
| Numéro de commande | 1021 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
index 2f712e92555d80..32f1e652305276 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-forward-url
displayed_sidebar: docs
---
-**WA OPEN FORWARD URL** ( {* ;} *objet* )
+**WA OPEN FORWARD URL** ( * ; *objet* : Text )
**WA OPEN FORWARD URL** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL suivant (c’est-à-dire si l’utilisateur n’a jam
| | |
| --- | --- |
| Numéro de commande | 1022 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
index 2a499f834ae06d..a0d0f67e8adbf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
@@ -5,13 +5,13 @@ slug: /commands/wa-open-url
displayed_sidebar: docs
---
-**WA OPEN URL** ( {* ;} *objet* ; *url* )
+**WA OPEN URL** ( * ; *objet* : Text ; *url* : Text )
**WA OPEN URL** ( *objet* : Field, Variable ; *url* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| url | Text | → | URL à charger dans la zone Web |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| url | Text | → | URL à charger dans la zone Web |
@@ -53,6 +53,6 @@ Cette commande a le même effet que la modification de la valeur de la variable
| | |
| --- | --- |
| Numéro de commande | 1020 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
index d9305985936b84..9dde9256af7c13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-web-inspector
displayed_sidebar: docs
---
-**WA OPEN WEB INSPECTOR** ( {* ;} *objet* )
+**WA OPEN WEB INSPECTOR** ( * ; *objet* : Text )
**WA OPEN WEB INSPECTOR** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si ce paramètre est spécifié, objet est un nom d'objet (chaîne). S'il est omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié), ou Variable (si * est omis) |
+| * | Opérateur | → | Si ce paramètre est spécifié, objet est un nom d'objet (chaîne). S'il est omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié), ou Variable (si * est omis) |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1736 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
index 4ac336f921d35c..c127426a327727 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-refresh-current-url
displayed_sidebar: docs
---
-**WA REFRESH CURRENT URL** ( {* ;} *objet* )
+**WA REFRESH CURRENT URL** ( * ; *objet* : Text )
**WA REFRESH CURRENT URL** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1023 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
index 9a6060fd9f9109..fc398ae4009cc7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/wa-run-offscreen-area
displayed_sidebar: docs
---
-**WA Run offscreen area** ( *paramètres* ) : any
+**WA Run offscreen area** ( *paramètres* : Object ) : any
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| paramètres | Object | → | Objet contenant les attributs de la zone web |
+| paramètres | Object | → | Objet contenant les attributs de la zone web |
| Résultat | any | ← | Valeur retournée par la méthode callback (ou méthode de rétro-appel) |
@@ -101,7 +101,7 @@ La variable système OK est définie sur 0 si le timeout a été atteint ou si l
| | |
| --- | --- |
| Numéro de commande | 1727 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
index 3c694da3af6704..1819eb21364f33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-external-links-filters
displayed_sidebar: docs
---
-**WA SET EXTERNAL LINKS FILTERS** ( {* ;} *objet* ; *tabFiltres* ; *tabAutorisRefus* )
+**WA SET EXTERNAL LINKS FILTERS** ( * ; *objet* : Text ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
**WA SET EXTERNAL LINKS FILTERS** ( *objet* : Field, Variable ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| tabFiltres | Text array | → | Tableau de filtres |
-| tabAutorisRefus | Boolean array | → | Tableau autoriser-refuser |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| tabFiltres | Text array | → | Tableau de filtres |
+| tabAutorisRefus | Boolean array | → | Tableau autoriser-refuser |
@@ -78,6 +78,6 @@ Cet exemple combine des filtrages de sites et de liens externes :
| | |
| --- | --- |
| Numéro de commande | 1032 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
index c5733af429e6d0..e9a82e03beeb63 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-page-content
displayed_sidebar: docs
---
-**WA SET PAGE CONTENT** ( {* ;} *objet* ; *contenu* ; *baseURL* )
+**WA SET PAGE CONTENT** ( * ; *objet* : Text ; *contenu* : Text ; *baseURL* : Text )
**WA SET PAGE CONTENT** ( *objet* : Field, Variable ; *contenu* : Text ; *baseURL* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| contenu | Text | → | Code HTML source |
-| baseURL | Text | → | URL pour les références relatives (macOS) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| contenu | Text | → | Code HTML source |
+| baseURL | Text | → | URL pour les références relatives (macOS) |
@@ -50,6 +50,6 @@ Affichage de la phrase "Hello world !" et définition d’un URL de base "file:/
| | |
| --- | --- |
| Numéro de commande | 1037 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
index ffe742510dc2e0..5e5c7c4bfe4929 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-preference
displayed_sidebar: docs
---
-**WA SET PREFERENCE** ( {* ;} *objet* ; *sélecteur* ; *valeur* )
+**WA SET PREFERENCE** ( * ; *objet* : Text ; *sélecteur* : Integer ; *valeur* : Boolean )
**WA SET PREFERENCE** ( *objet* : Field, Variable ; *sélecteur* : Integer ; *valeur* : Boolean )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| sélecteur | Integer | → | Préférence à modifier |
-| valeur | Boolean | → | Valeur de la préférence (Vrai = autorisé, Faux = non autorisé) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| sélecteur | Integer | → | Préférence à modifier |
+| valeur | Boolean | → | Valeur de la préférence (Vrai = autorisé, Faux = non autorisé) |
@@ -55,6 +55,6 @@ Vous souhaitez autoriser le déposer d'URLs dans la zone Web 'myarea' :
| | |
| --- | --- |
| Numéro de commande | 1041 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
index 30eb2a7a8f9d18..a18d3f7a1a9caa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-url-filters
displayed_sidebar: docs
---
-**WA SET URL FILTERS** ( {* ;} *objet* ; *tabFiltres* ; *tabAutorisRefus* )
+**WA SET URL FILTERS** ( * ; *objet* : Text ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
**WA SET URL FILTERS** ( *objet* : Field, Variable ; *tabFiltres* : Text array ; *tabAutorisRefus* : Boolean array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
-| tabFiltres | Text array | → | Tableau de filtres |
-| tabAutorisRefus | Boolean array | → | Tableau autoriser-refuser |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| tabFiltres | Text array | → | Tableau de filtres |
+| tabAutorisRefus | Boolean array | → | Tableau autoriser-refuser |
@@ -136,6 +136,6 @@ Vous souhaitez interdire des adresses IP spécifiques :
| | |
| --- | --- |
| Numéro de commande | 1030 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
index d7d92b4979dc47..535f162dabc8d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-stop-loading-url
displayed_sidebar: docs
---
-**WA STOP LOADING URL** ( {* ;} *objet* )
+**WA STOP LOADING URL** ( * ; *objet* : Text )
**WA STOP LOADING URL** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1024 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
index ca0d135c2b2cd7..21f2fb5f14aad0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-in
displayed_sidebar: docs
---
-**WA ZOOM IN** ( {* ;} *objet* )
+**WA ZOOM IN** ( * ; *objet* : Text )
**WA ZOOM IN** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1039 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
index 40fc4ee17897fe..b554eda26e4538 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-out
displayed_sidebar: docs
---
-**WA ZOOM OUT** ( {* ;} *objet* )
+**WA ZOOM OUT** ( * ; *objet* : Text )
**WA ZOOM OUT** ( *objet* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
-| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
+| * | Opérateur | → | Si spécifié, objet est un nom d'objet (chaîne) Si omis, objet est une variable |
+| objet | any | → | Nom d'objet (si * est spécifié) ou Variable (si * est omis) |
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1040 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
index 1a2d96564404c2..4a91554cd3992f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [WEB GET BODY PART](web-get-body-part.
| | |
| --- | --- |
| Numéro de commande | 1211 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
index a7c1211962565c..e4c047d41a8b40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-body-part
displayed_sidebar: docs
---
-**WEB GET BODY PART** ( *partie* ; *contenuPartie* ; *nomPartie* ; *typeMime* ; *nomFichier* )
+**WEB GET BODY PART** ( *partie* : Integer ; *contenuPartie* : Blob, Text ; *nomPartie* : Text ; *typeMime* : Text ; *nomFichier* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| partie | Integer | → | Numéro de partie |
+| partie | Integer | → | Numéro de partie |
| contenuPartie | Blob, Text | ← | Contenu de la partie |
| nomPartie | Text | ← | Nom de la variable "input" |
| typeMime | Text | ← | Type mime du fichier |
@@ -98,6 +98,6 @@ Voici le code de la méthode GetFile :
| | |
| --- | --- |
| Numéro de commande | 1212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
index b53fcef91ec06d..27b191fb561f10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si cette commande est appelée hors du contexte d’une session Web, elle retour
| | |
| --- | --- |
| Numéro de commande | 1162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
index bfe1be4d6f24f3..763fdac7470bf4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-body
displayed_sidebar: docs
---
-**WEB GET HTTP BODY** ( *corps* )
+**WEB GET HTTP BODY** ( *corps* : Blob, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ Lorsque le formulaire est soumis au serveur Web, la variable $texteRequete reço
| | |
| --- | --- |
| Numéro de commande | 814 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
index 0489e059ab9c94..930be51d1aefb7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-header
displayed_sidebar: docs
---
-**WEB GET HTTP HEADER** ( *entête* )
**WEB GET HTTP HEADER** ( *tabChamps* ; *tabValeurs* )
+**WEB GET HTTP HEADER** ( *entête* : Texte, Tableau texte )
**WEB GET HTTP HEADER** ( *tabChamps* : Texte, Tableau texte ; *tabValeurs* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -122,6 +122,6 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être
| | |
| --- | --- |
| Numéro de commande | 697 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
index dacc13ae931c18..933d6df2dac4a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-option
displayed_sidebar: docs
---
-**WEB GET OPTION** ( *sélecteur* ; *valeur* )
+**WEB GET OPTION** ( *sélecteur* : Integer ; *valeur* : Integer, Text, Collection )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Code de l’option à modifier |
+| sélecteur | Integer | → | Code de l’option à modifier |
| valeur | Integer, Text, Collection | ← | Valeur de l’option |
@@ -69,6 +69,6 @@ Lorsque vous utilisez le *sélecteur* Web debug log, vous pouvez récupérer une
| | |
| --- | --- |
| Numéro de commande | 1209 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
index 3cd0cf80d1e6ab..f6edac27a609e1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-server-info
displayed_sidebar: docs
---
-**WEB Get server info** {( *avecCache* )} : Object
+**WEB Get server info** ( *avecCache* : Boolean ) : Object
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| avecCache | Boolean | → | Vrai pour obtenir la description du cache Web. Sinon (par défaut) la description du cache n'est pas retournée. |
+| avecCache | Boolean | → | Vrai pour obtenir la description du cache Web. Sinon (par défaut) la description du cache n'est pas retournée. |
| Résultat | Object | ← | Informations sur le serveur Web et le serveur SOAP en cours d'exécution. |
@@ -132,6 +132,6 @@ $webServerInfo:=WEB Get server info(True)
| | |
| --- | --- |
| Numéro de commande | 1531 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
index c3d63134ce539c..8d0a88fac56c61 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-statistics
displayed_sidebar: docs
---
-**WEB GET STATISTICS** ( *pages* ; *hits* ; *usage* )
+**WEB GET STATISTICS** ( *pages* : Text array ; *hits* : Integer array ; *usage* : Integer )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ Vous pouvez envoyer la page "stats.shtm" via un lien URL ou à l'aide de command
| | |
| --- | --- |
| Numéro de commande | 658 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
index e4f707e7307a47..31190e3da1b4d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-variables
displayed_sidebar: docs
---
-**WEB GET VARIABLES** ( *tabNoms* ; *tabValeurs* )
+**WEB GET VARIABLES** ( *tabNoms* : Text array ; *tabValeurs* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
@@ -65,6 +65,6 @@ On obtient alors :
| | |
| --- | --- |
| Numéro de commande | 683 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
index c227059ce073c6..aeb5e93e875576 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
@@ -31,6 +31,6 @@ Cette commande permet par exemple, le cas échéant, de refuser les tentatives d
| | |
| --- | --- |
| Numéro de commande | 698 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
index c1571b260be57c..3d7f6fbc5c3e7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Vous souhaitez tester si le serveur Web de 4D est lancé :
| | |
| --- | --- |
| Numéro de commande | 1313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
index 6910df7b397103..fe10913396e41c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-close-session
displayed_sidebar: docs
---
-**WEB LEGACY CLOSE SESSION** ( *idSession* )
+**WEB LEGACY CLOSE SESSION** ( *idSession* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| idSession | Text | → | UUID de session |
+| idSession | Text | → | UUID de session |
@@ -41,6 +41,6 @@ Après l’exécution de cette commande, si un client Web envoie une requête ut
| | |
| --- | --- |
| Numéro de commande | 1208 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
index dc2a004d9d2085..37afa0eaf78c77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-get-session-expiration
displayed_sidebar: docs
---
-**WEB LEGACY GET SESSION EXPIRATION** ( *idSession* ; *dateExp* ; *heureExp* )
+**WEB LEGACY GET SESSION EXPIRATION** ( *idSession* : Text ; *dateExp* : Date ; *heureExp* : Time )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| idSession | Text | → | UUID de session |
+| idSession | Text | → | UUID de session |
| dateExp | Date | ← | Date d’expiration du cookie |
| heureExp | Time | ← | Heure d’expiration du cookie |
@@ -44,6 +44,6 @@ Le paramètre *dateExp* reçoit la date d’expiration et le paramètre *heureEx
| | |
| --- | --- |
| Numéro de commande | 1207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
index c8b161cee97d81..9b543593c3bc8b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-blob
displayed_sidebar: docs
---
-**WEB SEND BLOB** ( *blob* ; *type* )
+**WEB SEND BLOB** ( *blob* : Blob ; *type* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| blob | Blob | → | BLOB à envoyer au browser |
-| type | Text | → | Type de données du BLOB |
+| Blob | Blob | → | BLOB à envoyer au browser |
+| type | Text | → | Type de données du BLOB |
@@ -48,6 +48,6 @@ Reportez-vous à l’exemple de la routine [PICTURE TO BLOB](picture-to-blob.md)
| | |
| --- | --- |
| Numéro de commande | 654 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
index 4e94c28f1d7320..de270adc9c5b4c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
@@ -5,11 +5,11 @@ slug: /commands/web-send-file
displayed_sidebar: docs
---
-**WEB SEND FILE** ( *fichierWeb* )
+**WEB SEND FILE** ( *fichierWeb* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fichierWeb | Text | → | Chemin d'accès au fichier Web à envoyer |
+| fichierWeb | Text | → | Chemin d'accès au fichier Web à envoyer |
@@ -54,7 +54,7 @@ Si le fichier à envoyer existe et si le timeout n’est pas dépassé, la varia
| | |
| --- | --- |
| Numéro de commande | 619 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
index 1865040bc3492c..e088fde8b1a1bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-http-redirect
displayed_sidebar: docs
---
-**WEB SEND HTTP REDIRECT** ( *url* {; *} )
+**WEB SEND HTTP REDIRECT** ( *url* : Text {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| url | Text | → | Nouvel URL |
-| * | Opérateur | → | Si spécifié = l’URL n’est pas traduit, Si omis = l’URL est traduit |
+| url | Text | → | Nouvel URL |
+| * | Opérateur | → | Si spécifié = l’URL n’est pas traduit, Si omis = l’URL est traduit |
@@ -61,6 +61,6 @@ Dans la [On Web Connection](./on-web-connection-database-method.md), placez les
| | |
| --- | --- |
| Numéro de commande | 659 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
index cc00c2969d8ffa..3a0dc93ccfa666 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-raw-data
displayed_sidebar: docs
---
-**WEB SEND RAW DATA** ( *données* {; *} )
+**WEB SEND RAW DATA** ( *données* : Blob {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| données | Blob | → | Données HTTP à envoyer |
-| * | Opérateur | → | Envoi morcelé (chunked) |
+| données | Blob | → | Données HTTP à envoyer |
+| * | Opérateur | → | Envoi morcelé (chunked) |
@@ -85,6 +85,6 @@ Cet exemple illustre l’emploi de l’option chunked avec la commande **WEB SEN
| | |
| --- | --- |
| Numéro de commande | 815 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
index 23e2554e92e362..8eb45fe6a1b3cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-text
displayed_sidebar: docs
---
-**WEB SEND TEXT** ( *texteHTML* {; *type*} )
+**WEB SEND TEXT** ( *texteHTML* : Text {; *type* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| texteHTML | Text | → | Champ ou variable texte au format HTML à envoyer au navigateur |
-| type | Text | → | Type MIME |
+| texteHTML | Text | → | Champ ou variable texte au format HTML à envoyer au navigateur |
+| type | Text | → | Type MIME |
@@ -49,6 +49,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 677 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
index 59eb136b3dc86f..c0aa906af35a73 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/web-service-authenticate
displayed_sidebar: docs
---
-**WEB SERVICE AUTHENTICATE** ( *nom* ; *motDePasse* {; *méthodeAuth*} {; *} )
+**WEB SERVICE AUTHENTICATE** ( *nom* : Text ; *motDePasse* : Text {; *méthodeAuth* : Integer} {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nom | Text | → | Nom de l’utilisateur |
-| motDePasse | Text | → | Mot de passe de l’utilisateur |
-| méthodeAuth | Integer | → | Méthode d’authentification : 0 ou omis=non définie, 1=BASIC, 2=DIGEST |
-| * | Opérateur | → | Si passé : authentification par proxy |
+| nom | Text | → | Nom de l’utilisateur |
+| motDePasse | Text | → | Mot de passe de l’utilisateur |
+| méthodeAuth | Integer | → | Méthode d’authentification : 0 ou omis=non définie, 1=BASIC, 2=DIGEST |
+| * | Opérateur | → | Si passé : authentification par proxy |
@@ -58,6 +58,6 @@ Authentification auprès d’un Web Service situé derrière un proxy :
| | |
| --- | --- |
| Numéro de commande | 786 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
index 34f95514c0edb5..dc7821f41b1ad5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
@@ -5,16 +5,16 @@ slug: /commands/web-service-call
displayed_sidebar: docs
---
-**WEB SERVICE CALL** ( *urlAccès* ; *soapAction* ; *nomMéthode* ; *nameSpace* {; *typeComposé* {; *}} )
+**WEB SERVICE CALL** ( *urlAccès* : Text ; *soapAction* : Text ; *nomMéthode* : Text ; *nameSpace* : Text {; *typeComposé* : Integer {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| urlAccès | Text | → | URL d’accès au Web Service |
-| soapAction | Text | → | Contenu du champ SOAPAction |
-| nomMéthode | Text | → | Nom de la méthode |
-| nameSpace | Text | → | Espace de nommage |
-| typeComposé | Integer | → | Configuration de types composés (types simples si omis) |
-| * | Opérateur | → | Ne pas fermer la connexion |
+| urlAccès | Text | → | URL d’accès au Web Service |
+| soapAction | Text | → | Contenu du champ SOAPAction |
+| nomMéthode | Text | → | Nom de la méthode |
+| nameSpace | Text | → | Espace de nommage |
+| typeComposé | Integer | → | Configuration de types composés (types simples si omis) |
+| * | Opérateur | → | Ne pas fermer la connexion |
@@ -154,7 +154,7 @@ Si la requête est correctement acheminée et que le Web Service l’a acceptée
| | |
| --- | --- |
| Numéro de commande | 778 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
index 18c301e8797620..d5271b69f1564a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-service-get-info
displayed_sidebar: docs
---
-**WEB SERVICE Get info** ( *typeInfo* ) : Text
+**WEB SERVICE Get info** ( *typeInfo* : Integer ) : Text
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| typeInfo | Integer | → | Information à récupérer |
+| typeInfo | Integer | → | Information à récupérer |
| Résultat | Text | ← | Information sur la dernière erreur SOAP |
@@ -35,6 +35,6 @@ Une chaîne vide est retournée lorsqu’aucune information n’est disponible,
| | |
| --- | --- |
| Numéro de commande | 780 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
index ed28b93174d3e2..12e29c622b9ab6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-get-result
displayed_sidebar: docs
---
-**WEB SERVICE GET RESULT** ( *valeurRetour* {; *nomRetour* {; *}} )
+**WEB SERVICE GET RESULT** ( *valeurRetour* : Variable {; *nomRetour* : Text {; *}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| valeurRetour | Variable | ← | Valeur retournée par le Web Service |
-| nomRetour | Text | → | Nom du paramètre à récupérer |
-| * | Operator | → | Libérer la mémoire |
+| nomRetour | Text | → | Nom du paramètre à récupérer |
+| * | Operator | → | Libérer la mémoire |
@@ -55,6 +55,6 @@ Imaginons un Web Service retournant l’heure courante dans n’importe quelle v
| | |
| --- | --- |
| Numéro de commande | 779 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
index c99d3efd381b9e..76165918432f9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-service-set-option
displayed_sidebar: docs
---
-**WEB SERVICE SET OPTION** ( *option* ; *valeur* )
+**WEB SERVICE SET OPTION** ( *option* : Integer ; *valeur* : Integer, Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| option | Integer | → | Code de l’option à fixer |
-| valeur | Integer, Text | → | Valeur de l’option |
+| option | Integer | → | Code de l’option à fixer |
+| valeur | Integer, Text | → | Valeur de l’option |
@@ -67,6 +67,6 @@ Utilisation de la version 1.2 du protocole SOAP :
| | |
| --- | --- |
| Numéro de commande | 901 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
index f1b82bf445e794..64b355bb1188c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-set-parameter
displayed_sidebar: docs
---
-**WEB SERVICE SET PARAMETER** ( *nom* ; *valeur* {; *typeSOAP*} )
+**WEB SERVICE SET PARAMETER** ( *nom* : Text ; *valeur* : Variable {; *typeSOAP* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nom | Text | → | Nom du paramètre à inclure dans la requête SOAP |
-| valeur | Variable | → | Variable 4D contenant la valeur du paramètre |
-| typeSOAP | Text | → | Type SOAP du paramètre |
+| nom | Text | → | Nom du paramètre à inclure dans la requête SOAP |
+| valeur | Variable | → | Variable 4D contenant la valeur du paramètre |
+| typeSOAP | Text | → | Type SOAP du paramètre |
@@ -76,6 +76,6 @@ Cet exemple définit deux paramètres :
| | |
| --- | --- |
| Numéro de commande | 777 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
index 5bbd0294f50363..a22ab1ec07d1d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-home-page
displayed_sidebar: docs
---
-**WEB SET HOME PAGE** ( *homePage* )
+**WEB SET HOME PAGE** ( *homePage* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| homePage | Text | → | Nom de page ou chemin d’accès HTML à la page ou "" pour ne pas envoyer de page d’accueil personnalisée |
+| homePage | Text | → | Nom de page ou chemin d’accès HTML à la page ou "" pour ne pas envoyer de page d’accueil personnalisée |
@@ -33,6 +33,6 @@ Pour ne plus envoyer *homePage* comme page d’accueil pour le process Web coura
| | |
| --- | --- |
| Numéro de commande | 639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
index efa89950c12c8d..90d3baed7af82a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-http-header
displayed_sidebar: docs
---
-**WEB SET HTTP HEADER** ( *entête* )
**WEB SET HTTP HEADER** ( *tabChamps* ; *tabValeurs* )
+**WEB SET HTTP HEADER** ( *entête* : Texte, Tableau texte )
**WEB SET HTTP HEADER** ( *tabChamps* : Texte, Tableau texte ; *tabValeurs* : Text array )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| entête | tabChamps | Texte, Tableau texte | → | Champ ou variable contenant l'en-tête HTTP de la requête ou Tableau des champs de l'en-tête HTTP |
-| tabValeurs | Text array | → | Contenu des champs de l’en-tête HTTP |
+| entête | tabChamps | Texte, Tableau texte | → | Champ ou variable contenant l'en-tête HTTP de la requête ou Tableau des champs de l'en-tête HTTP |
+| tabValeurs | Text array | → | Contenu des champs de l’en-tête HTTP |
@@ -70,6 +70,6 @@ Si vous ne spécifiez pas de statut, celui-ci est automatiquement HTTP/1.0 200 O
| | |
| --- | --- |
| Numéro de commande | 660 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
index d115a66e538143..e5cdf394a7c845 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-option
displayed_sidebar: docs
---
-**WEB SET OPTION** ( *sélecteur* ; *valeur* )
+**WEB SET OPTION** ( *sélecteur* : Integer ; *valeur* : Integer, Text, Collection )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| sélecteur | Integer | → | Code de l’option à modifier |
-| valeur | Integer, Text, Collection | → | Valeur de l’option |
+| sélecteur | Integer | → | Code de l’option à modifier |
+| valeur | Integer, Text, Collection | → | Valeur de l’option |
@@ -86,6 +86,6 @@ Voici un exemple d'entrée enregistrée dans le fichier d'historique :
| | |
| --- | --- |
| Numéro de commande | 5 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
index c133bccd9210dc..4ad2626e5eb088 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-root-folder
displayed_sidebar: docs
---
-**WEB SET ROOT FOLDER** ( *dossierRacine* )
+**WEB SET ROOT FOLDER** ( *dossierRacine* : Text )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| dossierRacine | Text | → | Chemin d'accès du dossier racine du serveur Web |
+| dossierRacine | Text | → | Chemin d'accès du dossier racine du serveur Web |
@@ -43,7 +43,7 @@ Si vous passez un chemin d'accès invalide, une erreur liée à la gestion de fi
| | |
| --- | --- |
| Numéro de commande | 634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
index 30b0f76caaacde..724ec6a7310971 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si le serveur Web est correctement démarré, OK prend la valeur 1, sinon OK pre
| | |
| --- | --- |
| Numéro de commande | 617 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
index 9365fb2c90901f..6d9f8f873a6c46 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si le serveur Web n'était pas lancé, la commande ne fait rien.
| | |
| --- | --- |
| Numéro de commande | 618 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
index 568624a56e88e0..039a7f00fc760f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
@@ -5,12 +5,12 @@ slug: /commands/web-validate-digest
displayed_sidebar: docs
---
-**WEB Validate digest** ( *nomUtilisateur* ; *motDePasse* ) : Boolean
+**WEB Validate digest** ( *nomUtilisateur* : Text ; *motDePasse* : Text ) : Boolean
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomUtilisateur | Text | → | Nom de l'utilisateur |
-| motDePasse | Text | → | Mot de passe de l'utilisateur |
+| nomUtilisateur | Text | → | Nom de l'utilisateur |
+| motDePasse | Text | → | Mot de passe de l'utilisateur |
| Résultat | Boolean | ← | Vrai=Authentification correcte, Faux=Echec de l’authentification |
@@ -63,6 +63,6 @@ Exemple de *Méthode base Sur authentification Web* en mode Digest
| | |
| --- | --- |
| Numéro de commande | 946 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
index a2c5036b1794a7..6fba7b282c8f2b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
@@ -5,11 +5,11 @@ slug: /commands/window-kind
displayed_sidebar: docs
---
-**Window kind** {( *fenêtre* )} : Integer
+**Window kind** ( *fenêtre* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
+| fenêtre | Integer | → | Numéro de référence de la fenêtre ou Fenêtre de premier plan du process courant si omis |
| Résultat | Integer | ← | Type de la fenêtre |
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 445 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
index ba6b365704bc75..9ad5e5708fe040 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
@@ -5,12 +5,12 @@ slug: /commands/window-list
displayed_sidebar: docs
---
-**WINDOW LIST** ( *fenêtres* {; *} )
+**WINDOW LIST** ( *fenêtres* : Array {; *} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
| fenêtres | Array | ← | Tableau des numéros de référence des fenêtres |
-| * | Opérateur | → | Si omis, ignorer fenêtres flottantes Si spécifié, tenir compte des fenêtres flottantes |
+| * | Opérateur | → | Si omis, ignorer fenêtres flottantes Si spécifié, tenir compte des fenêtres flottantes |
@@ -56,6 +56,6 @@ La méthode projet suivante place en "mosaïque" toutes les fenêtres ouvertes (
| | |
| --- | --- |
| Numéro de commande | 442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
index dc3dfe4e1464a8..2cc4ec96a5b600 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
@@ -5,11 +5,11 @@ slug: /commands/window-process
displayed_sidebar: docs
---
-**Window process** {( *fenêtre* )} : Integer
+**Window process** ( *fenêtre* : Integer ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| fenêtre | Integer | → | Numéro de référence de fenêtre |
+| fenêtre | Integer | → | Numéro de référence de fenêtre |
| Résultat | Integer | ← | Numéro de référence de process |
@@ -29,6 +29,6 @@ Si vous omettez le paramètre *fenêtre*, **Window process** retourne le numéro
| | |
| --- | --- |
| Numéro de commande | 446 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
index b49ee83942b8a4..a809a3878fc09f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
index 295cd98630c47a..9a8ea09e79e6bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
index 643c8c62899f08..21bf7504cdf093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/write-picture-file
displayed_sidebar: docs
---
-**WRITE PICTURE FILE** ( *nomFichier* ; *image* {; *codec*} )
+**WRITE PICTURE FILE** ( *nomFichier* : Text ; *image* : Picture {; *codec* : Text} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| nomFichier | Text | → | Nom ou chemin d’accès complet du fichier à écrire, ou chaîne vide |
-| image | Picture | → | Champ ou variable image à écrire |
-| codec | Text | → | Identifiant de codec d'image |
+| nomFichier | Text | → | Nom ou chemin d’accès complet du fichier à écrire, ou chaîne vide |
+| image | Picture | → | Champ ou variable image à écrire |
+| codec | Text | → | Identifiant de codec d'image |
@@ -52,7 +52,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 680 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
index 5ccd1fc68b2f51..4b317db8feb15c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
@@ -5,11 +5,11 @@ slug: /commands/xml-decode
displayed_sidebar: docs
---
-**XML DECODE** ( *valeurXML* ; *var4D* )
+**XML DECODE** ( *valeurXML* : Text ; *var4D* : Field, Variable )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| valeurXML | Text | → | Valeur de type texte provenant d’une structure XML |
+| valeurXML | Text | → | Valeur de type texte provenant d’une structure XML |
| var4D | Field, Variable | ← | Variable ou champ 4D devant recevoir la valeur XML convertie |
@@ -78,6 +78,6 @@ Exemple de document XML :
| | |
| --- | --- |
| Numéro de commande | 1091 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
index b3dc0134cab521..90a58d01671a74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
@@ -5,11 +5,11 @@ slug: /commands/xml-get-error
displayed_sidebar: docs
---
-**XML GET ERROR** ( *refElément* ; *texteErreur* {; *ligne* {; *colonne*}} )
+**XML GET ERROR** ( *refElément* : Text ; *texteErreur* : Variable {; *ligne* : Variable {; *colonne* : Variable}} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | Text | → | Référence d’élément XML |
+| refElément | Text | → | Référence d’élément XML |
| texteErreur | Variable | ← | Texte de l’erreur |
| ligne | Variable | ← | Numéro de ligne |
| colonne | Variable | ← | Numéro de colonne |
@@ -35,7 +35,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 732 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
index f8babe76f6fedc..d3ab4a320df798 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
@@ -5,12 +5,12 @@ slug: /commands/xml-get-options
displayed_sidebar: docs
---
-**XML GET OPTIONS** ( *refElément* ; *sélecteur* ; *valeur* {; *sélecteur2* ; *valeur2* ; ... ; *sélecteurN* ; *valeurN*} )
**XML GET OPTIONS** ( *document* ; *sélecteur* ; *valeur* {; *sélecteur2* ; *valeur2* ; ... ; *sélecteurN* ; *valeurN*} )
+**XML GET OPTIONS** ( *refElément* : Texte ; *sélecteur* : Integer ; *valeur* : Integer {; ...(*sélecteur* : Integer, *valeur* : Integer)} )
**XML GET OPTIONS** ( *document* : Texte ; *sélecteur* : Integer ; *valeur* : Integer {; ...(*sélecteur* : Integer, *valeur* : Integer)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | document | Texte | → | Référence d’élément XML racine ou
Référence de document ouvert |
-| sélecteur | Integer | → | Option à lire |
+| refElément | document | Texte | → | Référence d’élément XML racine ou
Référence de document ouvert |
+| sélecteur | Integer | → | Option à lire |
| valeur | Integer | ← | Valeur courante de l’option |
@@ -43,6 +43,6 @@ Passez dans *sélecteur* une des constantes du thème *XML* ci-dessous, indiquan
| | |
| --- | --- |
| Numéro de commande | 1096 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
index 12f99747fbeef9..eeb615414e5141 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
@@ -5,13 +5,13 @@ slug: /commands/xml-set-options
displayed_sidebar: docs
---
-**XML SET OPTIONS** ( *refElément* ; *sélecteur* ; *valeur* {; *sélecteur2* ; *valeur2* ; ... ; *sélecteurN* ; *valeurN*} )
**XML SET OPTIONS** ( *document* ; *sélecteur* ; *valeur* {; *sélecteur2* ; *valeur2* ; ... ; *sélecteurN* ; *valeurN*} )
+**XML SET OPTIONS** ( *refElément* : Texte ; *sélecteur* : Integer ; *valeur* : Integer {; ...(*sélecteur* : Integer, *valeur* : Integer)} )
**XML SET OPTIONS** ( *document* : Texte ; *sélecteur* : Integer ; *valeur* : Integer {; ...(*sélecteur* : Integer, *valeur* : Integer)} )
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| refElément | document | Texte | → | Référence d’élément XML racine ou
Référence de document ouvert |
-| sélecteur | Integer | → | Option à définir |
-| valeur | Integer | → | Valeur de l'option |
+| refElément | document | Texte | → | Référence d’élément XML racine ou
Référence de document ouvert |
+| sélecteur | Integer | → | Option à définir |
+| valeur | Integer | → | Valeur de l'option |
@@ -71,6 +71,6 @@ Insertion d’une image SVG :
| | |
| --- | --- |
| Numéro de commande | 1090 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
index a09f3a0fdd3398..5cdb8e063c5343 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
@@ -5,11 +5,11 @@ slug: /commands/year-of
displayed_sidebar: docs
---
-**Year of** ( *date* ) : Integer
+**Year of** ( *date* : Date ) : Integer
| Paramètre | Type | | Description |
| --- | --- | --- | --- |
-| date | Date | → | Date dont vous voulez extraire l'année |
+| date | Date | → | Date dont vous voulez extraire l'année |
| Résultat | Integer | ← | Nombre indiquant l'année de date |
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 25 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md
index ad52acd58a7e5b..1a7b18401ebabd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/compile-project.md
@@ -5,7 +5,7 @@ slug: /commands/compile-project
displayed_sidebar: docs
---
-**Compile project** {( {*projectFile*}{;}{*options*} )} : Object
+**Compile project** ( {*options* : Object} ) : Object
**Compile project** ( *projectFile* : 4D.File } {; *options* : Object} ) : Object
@@ -194,9 +194,9 @@ var $result:=Compile project($options)
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1760 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1760 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/file.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/file.md
index caf420a80067eb..5ddcb959ad3e8b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/file.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**File** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.File
**File** ( *fileConstant* : Integer { ; \* } ) : 4D.File
+**File** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.File
**File** ( *fileConstant* : Integer { ; * } ) : 4D.File
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Chemin de fichier |
| fileConstant | Integer | → | Constante de fichier 4D |
| pathType | Integer | → | `fk posix path` (par défaut) ou `fk platform path` |
-| \* | operator | → | \* pour retourner le fichier de la base hôte |
+| \* | Opérateur | → | \* pour retourner le fichier de la base hôte |
| Résultat | [4D.File](../API/FileClass.md) | ← | Nouvel objet fichier |
@@ -88,9 +88,9 @@ Si la commande est appelée à partir d'un composant, passez le paramètre optio
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1566 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1566 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/folder.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/folder.md
index 729faa6482e459..3307ae7a79a2e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/folder.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; \* } ) : 4D.Folder
+**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; * } ) : 4D.Folder
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Chemin du dossier |
| folderConstant | Integer | → | Constante de dossier 4D |
| pathType | Integer | → | `fk posix path` (par défaut) ou `fk platform path` |
-| \* | operator | → | \* pour retourner le dossier de la base hôte |
+| \* | Opérateur | → | \* pour retourner le dossier de la base hôte |
| Résultat | [4D.Folder](../API/FolderClass.md) | ← | Nouvel objet dossier |
@@ -78,9 +78,9 @@ Si la commande est appelée à partir d'un composant, passez le paramètre optio
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1567 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1567 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md
index d57f0133be1575..bd898d8f3596cd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/license-info.md
@@ -143,9 +143,9 @@ Vous souhaitez obtenir des informations sur votre licence 4D Server courante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1489 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1489 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
index 4d23d3b065c780..433e47aa2e9384 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
@@ -4,7 +4,7 @@ title: LISTBOX Get property
displayed_sidebar: docs
---
-**LISTBOX Get property** ( {* ;} *object* ; *property* ) : any
+**LISTBOX Get property** ( * ; *object* : Text ; *property* : Integer ) : any
**LISTBOX Get property** ( *object* : Field, Variable ; *property* : Integer ) : any
@@ -37,6 +37,8 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,7 +49,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
+| lk hor scrollbar height | 3 | Hauteur en pixels (peut seulement être lue)
S'applique à : List box |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Largeur en pixels (peut seulement être lue)
S'applique à : List box |
\* Ces propriétés ne s'appliquent qu'aux colonnes de la list box ; si vous passez une list box en paramètre avec une de ces propriétés, **LISTBOX Get property** retourne -1, ou une chaîne vide, selon la *property* passée.
@@ -105,9 +104,9 @@ Soit une list box "MyListbox", si vous exécutez l'instruction suivante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 917 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | --- |
+| Numéro de commande | 917 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
index dcdd61cc76c92f..7edc4b85cd3556 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
@@ -4,7 +4,7 @@ title: LISTBOX SET PROPERTY
displayed_sidebar: docs
---
-**LISTBOX SET PROPERTY** ( {* ;} *object* ; *property* ; *value* )
+**LISTBOX SET PROPERTY** ( * ; *object* : Text ; *property* : Integer ; *value* : Integer, Text )
**LISTBOX SET PROPERTY** ( *object* : Field, Variable ; *property* : Integer ; *value* : Integer, Text )
@@ -37,6 +37,8 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,21 +49,17 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk named selection | 28 | Propriété **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** pour list box de type sélection
S'applique à : List box |
| lk resizing mode | 11 | Propriété **[Redimensionnement colonnes auto](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)**
S'applique à : List box
Valeurs possibles :
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unité de la propriété **[Hauteur des lignes](../FormObjects/properties_CoordinatesAndSizing.md#row-height)**
S'applique à : List box
Valeurs possibles :
lk lignes (1)
lk pixels (0)
|
+| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
| lk selection mode | 10 | Propriété **[Mode de sélection](../FormObjects/properties_ListBox.md#selection-mode)**
S'applique à : List box
Valeurs possibles :
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
\* Ces propriétés ne peuvent être appliquées qu'aux colonnes de list box ; si vous passez une list box en paramètre, **LISTBOX SET PROPERTY** appliquera la *property* à chaque colonne de la zone de liste.
@@ -90,9 +88,9 @@ Vous souhaitez modifier la largeur maximale de la colonne nommée "ProductNumber
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1440 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1440 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/open-datastore.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/open-datastore.md
index 08ad35a5a52227..7d155dfc6d461b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/open-datastore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/open-datastore.md
@@ -6,12 +6,12 @@ displayed_sidebar: docs
Historique
-| Release | Modifications |
-| ------- | --------------------------------------- |
-| 21 | Qodly cloud discontinued |
-| 20 R6 | Support access to Qodly cloud instances |
-| 20 R4 | Nouvelle propriété *passwordAlgorithm* |
-| 18 | Ajout |
+| Release | Modifications |
+| ------- | ------------------------------------------------------ |
+| 21 | Cloud Qodly interrompu |
+| 20 R6 | Prise en charge des accès aux instances du cloud Qodly |
+| 20 R4 | Nouvelle propriété *passwordAlgorithm* |
+| 18 | Ajout |
@@ -31,11 +31,11 @@ displayed_sidebar: docs
La commande `Open datastore` connecte l'application au datastore distant identifié par le paramètre *connectionInfo* et renvoie un objet `4D.DataStoreImplementation` correspondant associé à l'alias local *localID*.
-Exchanges with the remote datastore are automatically managed via REST requests. The *connectionInfo* 4D datastore must be available as a remote datastore, i.e.:
+Les échanges avec le datastore distant sont automatiquement gérés via des requêtes REST. Le datastore 4D *connectionInfo* doit être disponible en tant que datastore distant, c'est-à-dire :
-- its Web Server must be launched with http and/or https enabled,
-- its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked),
-- a client license must be available if required (see note).
+- son serveur Web doit être lancé avec http et/ou https activés,
+- son datasore doit être exposé en REST (option [**Activer le service REST**](REST/configuration.md#starting-the-rest-server) cochée),
+- une licence cliente doit être disponible si nécessaire (voir note).
:::note
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md
index a2abe5e73f24d4..f9a4c043e98979 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## Description
-La commande `Session` retourne l'objet `Session` correspondant à la session utilisateur courante.
+The `Session` command returns the `Session` object corresponding to the current session.
-Selon le process à partir duquel la commande est appelée, la session utilisateur courante peut être :
+Depending on the process from which the command is called, the current session can be:
- une session web (lorsque les [sessions évolutives sont activées](WebServer/sessions.md#enabling-web-sessions)),
-- une session de client distant,
-- la session des procédures stockées,
-- la session *designer* dans une application autonome.
+- a remote client session (on the server),
+- a stored procedures session,
+- a standalone session.
Pour plus d'informations, voir le paragraphe [Types de session](../API/SessionClass.md#session-types).
-Si la commande est appelée à partir d'un contexte non pris en charge (par exemple, les sessions évolutives désactivées), elle retourne *Null*.
+The command returns *Null* if:
-## Sessions Web
+- it is called in a web process and scalable sessions are disabled on the web server,
+- it is called on a remote 4D.
+
+### Sessions Web
L'objet `Session` des sessions web est disponible depuis n'importe quel process web :
@@ -51,7 +54,7 @@ L'objet `Session` des sessions web est disponible depuis n'importe quel process
Pour plus d'informations sur les sessions utilisateur web, veuillez consulter la section [Sessions web](../WebServer/sessions.md).
-## Sessions clients distants
+### Sessions clients distants
L'objet `Session` des sessions client distants est disponible depuis :
@@ -60,21 +63,48 @@ L'objet `Session` des sessions client distants est disponible depuis :
- Les [fonctions du modèle de données](../ORDA/ordaClasses.md) ORDA (sauf celles déclarées avec le mot-clé [`local`](../ORDA/ordaClasses.md#local-functions),
- Les méthodes base `On Server Open Connection` et `On Server Shutdown Connection`.
-Pour plus d'informations sur les sessions utilisateur distantes, veuillez vous référer au paragraphe [**Sessions utilisateur client distants**](../Desktop/clientServer.md#remote-user-sessions).
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## Session des procédures stockées
+### Session des procédures stockées
Tous les process des procédures stockées partagent la même session d'utilisateur virtuel. L'objet `Session` des procédures stockées est disponible depuis :
- les méthodes appelées avec la commande [`Execute on server`](../commands-legacy/execute-on-server.md),
- Les méthodes base `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, et `On System event`.
-Pour des informations sur la session d'utilisateur virtuel des procédures stockées, veuillez vous référer à la page [4D Server et langage 4D](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html).
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
-## Session autonome
+### Session autonome
L'objet `Session` est disponible à partir de n'importe quel process dans les applications autonomes (mono-utilisateur) afin que vous puissiez écrire et tester votre code client/serveur en utilisant l'objet `Session` dans votre environnement de développement 4D.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+### `Session` and components
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Exemple
Vous avez défini la méthode `action_Session` ayant l'attribut "Disponible via Balises HTML et URLs 4D". Vous appelez la méthode en saisissant l'URL suivant dans votre navigateur :
@@ -84,31 +114,32 @@ IP:port/4DACTION/action_Session
```
```4d
- //méthode action_Session
+ //action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //appel de la fonction hasPrivilege
- WEB SEND TEXT("4DACTION -- Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION -- Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
- WEB SEND TEXT("4DACTION -- Sesion is null")
+ WEB SEND TEXT("4DACTION --> Session is null")
End case
```
## Voir également
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
-[Sessions Web](../WebServer/sessions.md)
-[*Sessions évolutives pour les applications web avancées* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
+[Web server user sessions](../WebServer/sessions.md)
+[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1714 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1714 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md
index 07dae676897b3b..4027657368d7a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/commands/web-server.md
@@ -30,11 +30,11 @@ La commande `WEB Server` retourne l'ob
Par défaut, si le paramètre *option* est omis, la commande renvoie une référence au serveur Web de la base de données, c'est-à-dire le serveur Web par défaut. Pour désigner le serveur Web à renvoyer, vous pouvez passer l'une des constantes suivantes dans le paramètre *option* :
-| Constante | Valeur | Commentaire |
-| ------------------------------ | ------ | --------------------------------------------------------------------------- |
-| `Web server database` | 1 | Le serveur Web de la base courante (par défaut si omis) |
-| `Web server host database` | 2 | Le serveur Web de la base hôte du composant |
-| `Web server receiving request` | 3 | Le serveur Web ayant reçu la requête (serveur Web cible) |
+| Constante | Valeur | Commentaire |
+| ------------------------------ | ------ | ----------------------------------------------------------------------------------------------------- |
+| `Web server database` | 1 | Serveur web du projet à partir duquel la commande est appelée (par défaut si omis) |
+| `Web server host database` | 2 | Le serveur Web de la base hôte du composant |
+| `Web server receiving request` | 3 | Le serveur Web ayant reçu la requête (serveur Web cible) |
L'objet **Web server retourné** contient les valeurs courantes des [propriétés du serveur Web](../API/WebServerClass.md).
@@ -58,9 +58,9 @@ L'objet Web server retourné contient les valeurs courantes des propriétés du
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1674 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1674 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/settings/client-server.md b/i18n/fr/docusaurus-plugin-content-docs/current/settings/client-server.md
index f884369402cd33..8203dde2a0d44e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/settings/client-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/settings/client-server.md
@@ -24,7 +24,7 @@ Si vous modifiez ce paramètre, vous devez redémarrer la base du serveur pour q
#### Nom de publication
-This option lets you change the publication name of a 4D Server database, *i.e.*, the name displayed on the dynamic **Available** tab of the connection dialog box (see the [Opening a remote project](../Desktop/clientServer.md#opening-a-remote-project) paragraph). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
+Cette option permet de modifier le nom de publication d'une base de données 4D Server, c'est-à-dire le nom affiché dans l'onglet dynamique **Disponible** de la boîte de dialogue de connexion (voir le paragraphe [Ouverture d'un projet distant](../Desktop/clientServer.md#opening-a-remote-project)). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
:::note
@@ -39,7 +39,7 @@ Cette option vous permet de modifier le numéro du port TCP sur lequel 4D Server
La personnalisation de cette valeur est nécessaire lorsque vous souhaitez utiliser plusieurs applications 4D sur la même machine ; dans ce cas, vous devez spécifier un numéro de port différent pour chaque application.
Lorsque vous modifiez cette valeur depuis 4D Server ou 4D, elle est automatiquement passée à toutes les machines 4D connectées à la base de données.
-Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 :
+Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion. Par exemple, si le nouveau numéro de port est 19888 :

@@ -79,8 +79,8 @@ Cette liste déroulante contient 3 options de couche réseau : **Historique**, *
- QUIC se connecte automatiquement au port 19813 à la fois pour le serveur d'application et le serveur DB4D.
- Lorsque l'option de couche QUIC est sélectionnée :
- Les paramètres de [délai avant déconnexion client-serveur](#client-server-connections-timeout) sont masqués
- - The [Encrypt Client-Server communication checkbox](#encrypt-client-server-communications) is hidden (QUIC communications are always in TLS, whatever your secured mode is).
- - **Compatibility**: You need to deploy your client/server applications with 4D 20 or higher before switching to the QUIC network layer.
+ - La case à cocher [Crypter les communications Client-Serveur](#encrypt-client-server-communications) est masquée (les communications QUIC sont toujours en TLS, quel que soit votre mode sécurisé).
+ - **Compatibilité** : Vous devez déployer vos applications client/serveur avec 4D 20 ou plus avant de passer à la couche réseau QUIC.
:::note
@@ -92,7 +92,7 @@ En cas de modification, vous devez redémarrer l'application pour que le changem
:::note
-This option is not available when the [QUIC](#network-layer) network layer is selected.
+Cette option n'est pas disponible lorsque la couche réseau [QUIC](#network-layer) est sélectionnée.
:::
@@ -110,7 +110,7 @@ Lorsque cette option est cochée, toutes les machines distantes 4D se connectant
:::note
-This option is not available when the [QUIC](#network-layer) network layer option is selected.
+Cette option n'est pas disponible lorsque l'option de couche réseau [QUIC](#network-layer) est sélectionnée.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/settings/overview.md b/i18n/fr/docusaurus-plugin-content-docs/current/settings/overview.md
index e39b68a6685230..add6034089a802 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/settings/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/settings/overview.md
@@ -57,7 +57,7 @@ Ce bouton réinitialise tous les paramètres de la page courante. Il devient act
4D propose deux modes de fonctionnement pour les Propriétés des projets :
-- **Standard** mode: all settings are stored in the [*settings.4DSettings* file at the project level](../Project/architecture.md#sources) and are applied in all cases. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
+- **Mode Standard** : tous les paramètres sont stockés dans le fichier [*settings.4DSettings* au niveau du projet](../Project/architecture.md#sources) et sont appliqués dans tous les cas. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
- **Mode propriétés utilisateur** : une partie des paramètres personnalisés sont stockés dans un fichier *settings.4DSettings* [dans le dossier Settings](../Project/architecture.md#settings-user) (pour tous les fichiers de données) ou [dans le dossier Data](../Project/architecture.md#settings-user-data) (pour ce fichier de données) et sont utilisés à la place des paramètres de structure. Ce mode convient à la phase de déploiement pour les applications Desktop. Vous activez ce mode à l'aide d'une option située sur la [page Sécurité](./security.md) des Propriétés.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/settings/security.md b/i18n/fr/docusaurus-plugin-content-docs/current/settings/security.md
index 4668a251012507..0a4dd3097a6886 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/settings/security.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/settings/security.md
@@ -15,7 +15,7 @@ Cette page regroupe les options relatives à la protection des accès et des don
A noter que :
- - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. For more information about this dialog box, refer to [Importing data from files](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
+ - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. Pour plus d'informations sur cette boîte de dialogue, reportez-vous à [Importer des données depuis des fichiers](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
- Le Super_Utilisateur et l'Administrateur ont toujours accès à l'environnement de développement et à l'Explorateur d'exécution, même s'ils ne font pas explicitement partie du groupe d'accès spécifié. Pour plus d'information sur les utilisateurs et les groupes d'utilisateurs, veuillez vous référer au chapitre [Utilisateurs et groupes](../Users/handling_users_groups.md).
@@ -33,22 +33,22 @@ Cette page regroupe les options relatives à la protection des accès et des don
## Options
-- **Filtering of commands and project methods in the formula editor and in the 4D View Pro and 4D Write Pro documents**:
- For security reasons, by default 4D restricts access to the commands, functions and project methods in the [Formula editor](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) in Application mode or added to multistyle areas (using [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), 4D Write Pro and 4D View Pro documents: only certain 4D functions and project methods that have been explicitly declared using the [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) command can be used. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
+- **Filtrage des commandes et méthodes de projet dans l'éditeur de formules et dans les documents 4D View Pro et 4D Write Pro** :
+ Pour des raisons de sécurité, 4D restreint par défaut l'accès aux commandes, fonctions et méthodes projet dans l'[éditeur de formules](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) en mode Application ou ajoutées aux zones multistyles (en utilisant [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), documents 4D Write Pro et 4D View Pro : seules certaines fonctions et méthodes projet 4D qui ont été explicitement déclarées en utilisant la commande [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) peuvent être utilisées. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
- **Activé pour tous** (par défaut) : L'accès aux commandes, fonctions et méthodes projets est limité pour tous les utilisateurs, y compris au Super Utilisateur et à l'Administrateur.
- - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. This consists in changing the user (via the [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md) command) before calling a dialog box or starting a printing process that requires full access to the commands, then returning to the original user when the specific operation is completed.
+ - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. Cela consiste à changer l'utilisateur (via la commande [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md)) avant d'appeler une boîte de dialogue ou de démarrer un process d'impression qui nécessite un accès complet aux commandes, puis à retourner à l'utilisateur d'origine lorsque l'opération spécifique est terminée.
**Note :** Si l'accès complet a été activé à l'aide de l'option précédente, cette option n'aura pas d'effet.
- **Désactivé pour tous** : Cette option désactive le contrôle dans les formules. Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles).
Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles). Lorsqu'elle est cochée, cette commande ne fait rien.
- **Autoriser les propriétés utilisateur** : Vous devez cocher cette option si vous souhaitez utiliser la fonctionnalité d’externalisation des propriétés utilisateur. Lorsque cette option est cochée, jusqu'à trois boîtes de dialogue sont disponibles pour définir les propriétés : **Propriétés structure**, **Propriétés utilisateur**, et **Propriétés utilisateur pour fichier de données**. Pour plus d'informations, reportez-vous à la section [User settings](../settings/overview.md#user-settings).
-- **Execute "On Host Database Event" method of the components**: The [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) facilitates the initialization and backup phases for 4D components. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
+- **Exécuter la méthode "Sur événement base hôte" des composants** : La méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) facilite les phases d'initialisation et de sauvegarde des composants 4D. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
Lorsque cette option est cochée :
- les composants 4D sont chargés,
- - each [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) of the component (if any) is called by the host database,
+ - chaque méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) du composant (s'il y en a) est appelée par le projet hôte,
- le code de la méthode est exécuté.
Lorsque cette option n’est pas cochée :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/current/settings/web.md b/i18n/fr/docusaurus-plugin-content-docs/current/settings/web.md
index fc721bb398efad..659f5e03dc918c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/current/settings/web.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/current/settings/web.md
@@ -121,12 +121,12 @@ Permet de définir le délai maximum avant fermeture (timeout) des process Web i
Définit le système d'authentification que vous souhaitez utiliser pour le serveur Web. Trois options sont proposées :
- Authentification personnalisée (par défaut)
-- Passwords with BASIC protocol
-- Passwords with DIGEST protocol
+- Mots de passe protocole BASIC
+- Mots de passe protocole DIGEST
-Il est recommandé d'utiliser l'authentification **personnalisée**. See [**Authentication**](../WebServer/authentication.md) section.
+Il est recommandé d'utiliser l'authentification **personnalisée**. Voir la section [**Authentification**](../WebServer/authentication.md).
-#### Generic Web User
+#### Utilisateur Web générique
Voir [Propriétés obsolètes](../WebServer/webServerConfig.md#propriétés-obsolètes).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/cli.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/cli.md
index 35172429b63277..727b0f9d264f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/cli.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/cli.md
@@ -43,9 +43,9 @@ Syntaxe :
| `--webadmin-access-key` | Text | Clé d'accès au [serveur Web WebAdmin](webAdmin.md) |
| `--webadmin-auto-start` | Boolean | Statut du démarrage automatique du [serveur Web WebAdmin](webAdmin.md) |
| `--webadmin-store-settings` | | Stocke la clé d'accès et les paramètres de démarrage automatique dans le fichier de paramètres courant (c'est-à-dire le fichier [`WebAdmin.4DSettings`](webAdmin.md#webadmin-settings) par défaut ou un fichier personnalisé désigné par le paramètre `--webadmin-settings-path`). Utilisez l'argument `--webadmin-store-settings` pour enregistrer ces paramètres si nécessaire |
+ (*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the
-
-[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (licence alert, conversion dialog, database selection, data file selection). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
+[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
### Exemples
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/webAdmin.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/webAdmin.md
index 65ced2e393fbbc..6646988837f90c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/webAdmin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/Admin/webAdmin.md
@@ -72,7 +72,7 @@ Quand cette option est cochée, il est possible de se connecter au serveur `WebA
**Notes :**
-- Les connections HTTP autres que sur localhost ne sont jamais acceptées.
+- Les connexions HTTP autres que sur localhost ne sont jamais acceptées.
- Même si cette option est activée, quand [HTTPS Accepté](#accept-https) est activé et que la configuration TLS est valide, les connections sur localhost se font via HTTPS.
#### Port HTTP
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/Desktop/building.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/Desktop/building.md
index 80e21fded141d5..c666dfe7f90ccc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-19/Desktop/building.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/Desktop/building.md
@@ -348,8 +348,8 @@ Des éléments doivent être installés :
Pour activer cette fonctionnalité, ajoutez les clés `DatabaseToEmbedInClientWinFolder` et/ou `DatabaseToEmbedInClientMacFolder` dans le fichier de configuration *buildApp*. Lorsque l'une de ces clés est présente, le processus de génération de l'application cliente génère une application monoposte : la structure compilée, au lieu du fichier *EnginedServer.4Dlink*, est placée dans le dossier "Database".
-* Si un dossier "Data" par défaut existe dans l'application monoposte, une licence est intégrée.
-* Si un dossier "Data" par défaut n'existe pas dans l'application monoposte, elle sera exécutée sans le fichier de données et sans licence.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
Le scénario standard est le suivant :
@@ -422,7 +422,7 @@ En cas de conflit entre deux versions différentes d’un même plug-in (l’une
## Page Licences & Certificat
-La page Licences & Certificat vous permet de :
+The Licenses & Certificate page can be used to:
* spécifier le ou les numéro(s) de licence que vous souhaitez intégrer dans votre application exécutable monoposte
* signer l'application à l'aide d'un certificat sous macOS.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
index 9563d42b986408..57e00d2fb0f487 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
@@ -123,12 +123,21 @@ Par exemple, l’instruction suivante :
... récupère un pointeur vers la variable "MyButton" qui se trouve dans l'objet sous-forme "MySubForm". Cette syntaxe permet d’accéder depuis le formulaire parent à tout objet se trouvant dans un sous-formulaire. A noter également la commande `OBJECT Get name` qui permet de récupérer le nom de l’objet ayant le focus.
-#### Commande CALL SUBFORM CONTAINER
+#### Commande CALL SUBFORM CONTAINER {#call-subform-container-command}
La commande `CALL SUBFORM CONTAINER` permet à une instance de sous-formulaire d’envoyer un événement à l’objet conteneur du sous-formulaire, qui peut alors le traiter dans le contexte du formulaire parent. L’événement est reçu dans la méthode de l’objet conteneur. Il peut s’agir à l’origine de tout événement détecté par le sous-formulaire (clic, glisser-déposer, etc.).
Le code de l’événement est libre (par exemple, 20000 ou -100). Vous pouvez soit utiliser un code correspondant à un événement existant (par exemple, 3 pour `Sur validation`), soit utiliser un code personnalisé. Dans le premier cas, seuls les événements présents dans la liste des événements "cochables" des conteneurs de sous-formulaire peuvent être utilisés (cf. Liste des propriétés). Dans le second cas, le code ne doit correspondre à aucun événement formulaire existant. Il est conseillé d’utiliser une valeur négative pour avoir l’assurance que 4D n’utilisera pas ce code dans les versions futures.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Pour plus d'informations, reportez-vous à la description de la commande `CALL SUBFORM CONTAINER`.
#### Commande EXECUTE METHOD IN SUBFORM
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/API/SessionClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/API/SessionClass.md
index 4d9f4368ef4fba..888e985c0b8e71 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/API/SessionClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/API/SessionClass.md
@@ -17,7 +17,7 @@ Les objets session sont retournés par la commande [`Session`](../commands/sessi
Les types de sessions suivants sont pris en charge par cette classe :
-- [**Session utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web et REST, et peuvent se voir attribuer des privilèges.
+- [**Sessions utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web et REST, et peuvent se voir attribuer des privilèges.
- [**Session utilisateur client distant**](../Desktop/clientServer.md#remote-user-sessions) : Dans les applications client/serveur, les utilisateurs distants ont leurs propres sessions gérées sur le serveur.
- [**Session des procédures stockées**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html) : Toutes les procédures stockées exécutées sur le serveur partagent la même session utilisateur virtuelle.
- [**Session autonome**](../Project/overview.md#development) : objet session local retourné dans une application mono-utilisateur (utile dans les phases de développement et de test des applications client/serveur).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
index 7b76c2ce94ae5c..2914564501377b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
@@ -50,7 +50,7 @@ Syntaxe :
| `--skip-onstartup` | | Lance le projet sans exécuter aucune méthode "automatique", y compris les méthodes base `On Startup` et `On Exit` |
| `--startup-method` | Nom de méthode projet (chaîne) | Méthode projet à exécuter immédiatement après la méthode base `On Startup` (si elle n'est pas ignorée avec `--skip-onstartup`). |
-(\*) Certaines boîtes de dialogue sont affichées avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme. Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
+(\*) Certaines boîtes de dialogue s'affichent avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de conversion, sélection de la base de données, sélection du fichier de données). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
### Exemples
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/webAdmin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/webAdmin.md
index 87bace3ccb1808..51a3dff3d80495 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/webAdmin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Admin/webAdmin.md
@@ -71,8 +71,8 @@ Quand cette option est cochée, il est possible de se connecter au serveur `WebA
**Notes :**
-- Les connections HTTP autres que sur localhost ne sont jamais acceptées.
-- Même si cette option est activée, quand [HTTPS Accepté](#accept-https) est activé et que la configuration TLS est valide, les connections sur localhost se font via HTTPS.
+- Les connexions HTTP autres que sur localhost ne sont jamais acceptées.
+- Même si cette option est cochée, lorsque [HTTPS accepté](#accept-https) est coché et que la configuration TLS est valide, les connexions locahost utilisent HTTPS.
#### Port HTTP
@@ -124,15 +124,15 @@ Cette option permet l'accès utilisateur à [Qodly Studio](../WebServer/qodly-st
## Configuration de WebAdmin sans interface
-Pour gérer le contenu du fichier, vous pouvez utiliser la [fenêtre de paramètres WebAdmin](#settings-dialog-box) de l'application 4D avec une interface, et la lancer sans interface ensuite. Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Pour gérer le contenu du fichier, vous pouvez utiliser la [fenêtre de paramètres WebAdmin](#settings-dialog-box) de l'application 4D avec une interface, et la lancer sans interface ensuite. Il existe un fichier `WebAdmin.4DSettings` par défaut pour chaque application 4D et 4D Server, de sorte qu'il est possible de déployer plusieurs applications sur la même machine hôte.
Dans le cas d'une application 4D ou 4D Server sans interface, vous pouvez configurer et utiliser le fichier `WebAdmin.4DSettings` par défaut, ou désigner un fichier `.4DSettings` personnalisé.
-Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server. Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Pour définir le contenu du fichier, vous pouvez utiliser la [boîte de dialogue des propriétés WebAdmin](#settings-dialog-box) de l'application 4D avec interface et l'exécuter ensuite sans interface. Le fichier par défaut `WebAdmin.4DSettings` est alors utilisé.
Vous pouvez aussi définir un fichier `.4DSettings`. (format XML) et l'utiliser à la place du fichier par défaut. Plusieurs arguments dédiés sont disponibles dans [l'interface de ligne de commande](cli.md) pour prendre en charge cette fonctionnalité.
-> Cette clé d'accès n'est pas stockée de façon transparente dans le fichier `.4DSettings`.
+> La clé d'accès n'est pas stockée en clair dans le fichier `.4DSettings`.
Voici un exemple :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
index 5d593d37c3522c..25d3b5b14065f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
@@ -407,8 +407,8 @@ Des éléments doivent être installés :
Pour activer cette fonctionnalité, ajoutez les clés `DatabaseToEmbedInClientWinFolder` et/ou `DatabaseToEmbedInClientMacFolder` dans le fichier de configuration *buildApp*. Lorsque l'une de ces clés est présente, le processus de génération de l'application cliente génère une application monoposte : la structure compilée, au lieu du fichier *EnginedServer.4Dlink*, est placée dans le dossier "Database".
-- Si un dossier "Data" par défaut existe dans l'application monoposte, une licence est intégrée.
-- Si un dossier "Data" par défaut n'existe pas dans l'application monoposte, elle sera exécutée sans le fichier de données et sans licence.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
Le scénario standard est le suivant :
@@ -500,7 +500,7 @@ Les modules optionnels suivants peuvent être désélectionnés :
## Page Licences & Certificat
-La page Licences & Certificat vous permet de :
+The Licenses & Certificate page can be used to:
- configurer les [licences de déploiement](../Admin/licenses.md#deployment-licenses) que vous souhaitez intégrer dans votre application [autonome](#application-page) ou [client-serveur](#clientserver-page),
- signer l'application à l'aide d'un certificat sous macOS.
@@ -535,7 +535,7 @@ Une connexion internet est requise sur la machine de l'utilisateur lors du premi
- La commande [`License info`](../commands/license-info.md) vous permet de connaître le type de licence de l'application (collection *.attributes*) et sa date d'expiration (objet *.expirationDate*).
- La clé xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permet de gérer les versions d'évaluation.
-- La commande [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) ne fait rien lorsqu'elle est appelée depuis une version d'évaluation.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
index 7dc05bdc938a0d..7808c7c9a09363 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ Pour répondre à ces besoins, 4D propose les mécanismes suivants :
> La commande `GOTO OBJECT` peut rechercher l’objet de destination dans le formulaire parent même si elle exécutée depuis un sous-formulaire.
-#### Commande CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
La commande `CALL SUBFORM CONTAINER` permet à une instance de sous-formulaire d'envoyer un [événement](../Events/overview.md) à l'objet conteneur de sous-formulaire, qui peut alors le traiter dans le contexte du formulaire parent. L’événement est reçu dans la méthode de l’objet conteneur. Il peut s’agir à l’origine de tout événement détecté par le sous-formulaire (clic, glisser-déposer, etc.).
Le code de l’événement est libre (par exemple, 20000 ou -100). Vous pouvez soit utiliser un code correspondant à un événement existant (par exemple, 3 pour `Sur validation`), soit utiliser un code personnalisé. Dans le premier cas, seuls les événements présents dans la liste des événements "cochables" des conteneurs de sous-formulaire peuvent être utilisés (cf. Liste des propriétés). Dans le second cas, le code ne doit correspondre à aucun événement formulaire existant. Il est conseillé d’utiliser une valeur négative pour avoir l’assurance que 4D n’utilisera pas ce code dans les versions futures.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Pour plus d'informations, reportez-vous à la description de la commande `CALL SUBFORM CONTAINER`.
#### Commande EXECUTE METHOD IN SUBFORM
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ORDA/orda-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ORDA/orda-events.md
index 609c544ec80483..2043944d307234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ORDA/orda-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ORDA/orda-events.md
@@ -17,7 +17,7 @@ Vous ne pouvez pas déclencher directement l'exécution d'une fonction d'événe
:::info Note de compatibilité
-Les événements d'entité ORDA dans le magasin de données sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Note also that, unlike triggers, ORDA entity events do not lock the entire underlying table of a dataclass while saving or dropping entities. Several events can run in parallel as long as they involve distinct entities (i.e. records).
+Les événements d'entité ORDA dans le datastore sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Notez également que, contrairement aux triggers, les événements d'entité ORDA ne verrouillent pas l'ensemble de la table sous-jacente d'une dataclass lors de l'enregistrement ou de la suppression d'entités. Plusieurs événements peuvent se dérouler en parallèle tant qu'ils concernent des entités distinctes (c'est-à-dire des enregistrements distincts).
:::
@@ -127,11 +127,11 @@ Function event touched($event : Object)
#### Exemple 2
-The "touched" event is useful when it is not possible to write indexed query code in [`Function query()`](./ordaClasses.md#function-query-attributename) for a [computed attribute](./ordaClasses.md#computed-attributes).
+L'événement "touched" est utile quand il n'est pas possible d'écrire un code de requête indexée dans [`Function query()`](./ordaClasses.md#function-query-attributename) pour un [attribut calculé](./ordaClasses.md#computed-attributes).
-This is the case for example, when your [`query`](./ordaClasses.md#function-query-attributename) function has to compare the value of different attributes from the same entity with each other. You must use formulas in the returned ORDA query -- which triggers sequential queries.
+C'est le cas, par exemple, lorsque votre fonction [`query`](./ordaClasses.md#function-query-attributename) doit comparer la valeur de différents attributs de la même entité. Vous devez utiliser des formules dans la requête ORDA renvoyée, ce qui déclenche des requêtes séquentielles.
-To fully understand this case, let's examine the following two calculated attributes:
+Pour bien comprendre ce cas, examinons les deux attributs calculés suivants :
```4d
Function get onGoing() : Boolean
@@ -141,9 +141,9 @@ Function get sameDay() : Boolean
return (This.departureDate=This.arrivalDate)
```
-Even though they are very similar, these functions cannot be associated with identical queries because they do not compare the same types of values. The first compares attributes to a given value, while the second compares attributes to each other.
+Même si elles sont très similaires, ces fonctions ne peuvent pas être associées à des requêtes identiques car elles ne comparent pas les mêmes types de valeurs. Le premier compare les attributs à une valeur donnée, tandis que le second compare les attributs entre eux.
-- For the *onGoing* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function is simple to write and uses indexed attributes:
+- Pour l'attribut *onGoing*, la fonction [`query`](./ordaClasses.md#function-query-attributename) est simple à écrire et utilise des attributs indexés :
```4d
Function query onGoing($event : Object) : Object
@@ -164,12 +164,12 @@ Function query onGoing($event : Object) : Object
End case
$myQuery:=($onGoingValue) ? "departureDate <= :1 AND arrivalDate >= :1" : "departureDate > :1 OR arrivalDate < :1"
- // the ORDA query string uses indexed attributes, it will be indexed
+ // la chaîne de requête ORDA utilise des attributs indexés, elle sera indexée
$parameters.push(Current date)
return {query: $myQuery; parameters: $parameters}
```
-- For the *sameDay* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function requires an ORDA query based on formulas and will be sequential:
+- Pour l'attribut *sameDay*, la fonction [`query`](./ordaClasses.md#function-query-attributename) requiert une requête ORDA basée sur des formules et sera séquentielle :
```4d
Function query sameDay($event : Object) : Text
@@ -187,11 +187,11 @@ Function query sameDay($event : Object) : Text
End case
return ($sameDayValue) ? "eval(This.departureDate = This.arrivalDate)" : "eval(This.departureDate != This.arrivalDate)"
- // the ORDA query string uses a formula, it will not be indexed
+ // la requête ORDA utilise une formule, elle ne sera pas indexée
```
-- Using a **scalar** *sameDay* attribute updated when other attributes are "touched" will save time:
+- L'utilisation d'un attribut **scalaire** *sameDay* mis à jour lorsque d'autres attributs sont "touched" permet de gagner du temps :
```4d
//BookingEntity class
@@ -207,7 +207,7 @@ Function event touched arrivalDate($event : Object)
```
-#### Example 3 (diagram): Client/server with the `local` keyword:
+#### Exemple 3 (diagramme) : Client/serveur avec le mot-clé `local` :
```mermaid
@@ -222,11 +222,11 @@ Note over Client:$people.lastname is uppercased
Client->>+Server: $people.apply()
- Note over Server: The $people entity is received with the lastname attribute uppercased
+ Note over Server: L'entity $people est reçue avec l'attribut lastname en majuscules
```
-#### Example 4 (diagram): Client/server without the `local` keyword
+#### Exemple 4 (diagramme) : Client/serveur avec le mot-clé `local`
```mermaid
@@ -236,37 +236,37 @@ sequenceDiagram
Client->>+Client: $people.lastname:="Brown"
- Note over Client:$people.lastname is not uppercased
+ Note over Client:$people.lastname n'est pas en majuscules
Client->>+Server: $people.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
- Server-->>-Client: The $people entity is updated
+ Server-->>-Client: L'entité $people est mise à jour
- Note over Client:$people.lastname is uppercased
+ Note over Client:$people.lastname est en majuscules
```
-#### Example 5 (diagram): Qodly application
+#### Exemple 5 (diagramme) : Application Qodly
```mermaid
sequenceDiagram
-Qodly page->>+ Server: Get an entity into the People Qodly source
+Qodly page->>+ Server: Récupérer une entité dans la source Qodly People
-Qodly page->>+Qodly page: The user updates People.lastname
+Qodly page->>+Qodly page: L'utilisateur met à jour People.lastname
-Note over Qodly page: The People Qodly source lastname attribute is not uppercased
+Note over Qodly page: L'attribut lastname de la source Qodly People n'est pas en majuscules
-Qodly page->>+ Server: Function call People.apply()
+Qodly page->>+ Server: Appel de fonction People.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
-Server-->>-Qodly page: The People Qodly source is updated
-Note over Qodly page: The People Qodly source lastname attribute is uppercased
+Server-->>-Qodly page: La source Qodly People est mise à jour
+Note over Qodly page: L'attribut lastname de la source Qodly People est en majuscules
```
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/overview.md
index 9cefea25de15e2..53d855d9b4d1b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/overview.md
@@ -5,7 +5,7 @@ title: Préférences de l'application
Les préférences utilisateur spécifient divers paramètres associés à votre environnement de travail, tels que les options par défaut, les thèmes d'affichage, les fonctionnalités de l'éditeur de code, les raccourcis, etc. Elles sont appliquées à tous les projets ouverts avec votre application 4D ou 4D Server.
-**4D Server** : Le verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
+**4D Server** : Un verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
> 4D propose un ensemble de paramètres spécifiques pour le projet ouvert : **Paramètres** (disponible dans le menu **Développement**). Pour plus d'informations, reportez-vous au chapitre Paramètres.
@@ -21,7 +21,7 @@ Vous pouvez également afficher la boîte de dialogue Préférences en mode Appl
## Storage
-Settings made in the Preferences dialog box are saved in an XML format preferences file named **4D Preferences vXX.4DPreferences** that is stored in the active 4D folder of the current user, as returned by the [`Get 4D folder`](../commands-legacy/get-4d-folder.md) command:
+Les réglages effectués dans la boîte de dialogue des Préférences sont enregistrés dans un fichier de préférences au format XML nommé **4D Preferences vXX.4DPreferences** qui est stocké dans le dossier 4D actif de l'utilisateur courant, tel qu'il est renvoyé par la commande [`Get 4D folder`](../commands-legacy/get-4d-folder.md) :
- Windows: `{disk}\Users\\{username\}\AppData\Roaming\4D`
- macOS: `{disk}:Users:\{username\}:Library:Application Support:4D`
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/structure.md
index e6cc1a71362974..20054782741acc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Preferences/structure.md
@@ -5,7 +5,7 @@ title: Page Structure
## Clé primaire
-These options in the preferences modify the default name and type of the primary key fields that are added automatically by 4D when new tables are created or by means of the [Primary key manager](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
+Ces options des préférences modifient le nom et le type par défaut des champs de clé primaire qui sont ajoutés automatiquement par 4D lors de la création de nouvelles tables ou au moyen du [Gestionnaire de clés primaires](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
Les options suivantes sont disponibles :
@@ -22,5 +22,5 @@ Cette option permet de faire varier le niveau de détail graphique de l’édite
### Quand un dossier est masqué, son contenu est :
-This option sets the appearance of dimmed tables in the Structure editor, when you carry out selections by folder (see [Highlight/dim tables by folder](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
+Cette option définit l'apparence des tables atténuées dans l'éditeur de structure, lorsque vous effectuez des sélections par dossier (voir [Filtrage des tables par dossier](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
index 107bd18979cd80..525f17ee6ae0d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ La zone "Vue d’ensemble" fournit diverses informations relatives au système,

-Usually, you will need to check the [**Licences Manager**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Zone Détails
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Tags/transformation-tags.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Tags/transformation-tags.md
index 8bea0677e610e2..094fb049edbff2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Tags/transformation-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Tags/transformation-tags.md
@@ -167,35 +167,35 @@ Voici les caractéristiques de la balise 4DCODE :
## 4DEACH et 4DENDEACH
-#### Syntax: `` ``
+#### Syntaxe : `` ``
-The `` comment allows iterating a specified item over all values of the *expression*. The item is set to a *variable* whose type depends on the *expression* type.
+Le commentaire `` permet d'itérer un élément spécifié sur toutes les valeurs de l'*expression*. L'élément est défini comme une *variable* dont le type dépend du type de l'*expression*.
-The `` comment can iterate through three expression types:
+Le commentaire `` peut itérer sur trois types d'expression :
-- [collections](#--4deach-item-in-collection--): loop through each element of the collection,
-- [entity selections](#--4deach-entity-in-entityselection--): loop through each entity,
-- [objects](#--4deach-property-in-object--): loop through each object property.
+- les [collections](#--4deach-item-in-collection--) : boucle sur chaque élément de la collection,
+- les [entity selections](#--4deach-entity-in-entityselection--) : boucle sur chaque entité,
+- les [objets](#--4deach-property-in-object--) : boucle sur chaque propriété de l'objet.
Le nombre d'itérations est évalué au démarrage et ne changera pas pendant le traitement. L'ajout ou la suppression d'éléments pendant la boucle est donc déconseillé car il pourra en résulter une redondance ou un manque d'itérations.
### ``
-This syntax iterates on each *item* of the *collection*. The code portion located between `` and `` is repeated for each collection element.
+Cette syntaxe permet d'effectuer une itération sur chaque *item* de la *collection*. La partie du code située entre `` et `` est répétée pour chaque élément de collection.
-The *item* parameter is a variable of the same type as the collection elements.
+Le paramètre *item* est une variable du même type que les éléments de la collection.
-The collection must contain only **elements of the same type**, otherwise an error is returned as soon as the *item* variable is assigned the first mismatched value type.
+La collection ne doit contenir que des **éléments de même type**, sinon une erreur est renvoyée dès que la variable *item* se voit attribuer le premier type de valeur non concordant.
-Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le nombre de boucles est basé sur le nombre d'éléments de la collection. Vous devez tenir compte des points suivants :
+Le nombre de boucles est basé sur le nombre d'éléments de la collection. À chaque itération, la variable *item* est automatiquement remplie avec l'élément correspondant de la collection. Vous devez tenir compte des points suivants :
-- If the *item* variable is of the object type or collection type (i.e. if *expression* is a collection of objects or of collections), modifying this variable will automatically modify the matching element of the collection (because objects and collections share the same references). Si la variable est de type scalaire, seule la variable sera modifiée.
-- The *item* variable gets the same type as the first collection element. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
-- If the collection contains elements with a Null value, an error is generated if the *item* variable type does not support Null values (such as longint variables).
+- Si la variable *item* est de type objet ou collection (c'est-à-dire si *expression* est une collection d'objets ou de collections), la modification de cette variable modifiera automatiquement l'élément correspondant de la collection (car les objets et les collections partagent les mêmes références). Si la variable est de type scalaire, seule la variable sera modifiée.
+- La variable *item* a le même type que le premier élément de la collection. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
+- Si la collection contient des éléments avec une valeur nulle, une erreur est générée si le type de variable *élément* ne prend pas en charge les valeurs nulles (comme les variables integer).
#### Exemple avec une collection de valeurs scalaires
-*getNames* returns a collection of strings. The method has been declared as "[available through 4D tags and URLs](WebServer/allowProject.md)".
+*getNames* renvoie une collection de chaînes de caractères. La méthode a été déclarée comme "[disponible via les balises et les URL 4D](WebServer/allowProject.md)".
```html
@@ -212,7 +212,7 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
#### Exemple avec une collection d'objets
-*getSalesPersons* returns a collection of objects.
+*getSalesPersons* renvoie une collection d'objets.
```html
@@ -233,11 +233,11 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
### ``
-This syntax iterates on each *entity* of the *entitySelection*. The code portion located between `` and `` is repeated for each entity of the entity selection.
+Cette syntaxe itère sur chaque *entité* de l'*entitySelection*. La partie du code située entre `` et `` est répétée pour chaque entité de l'entity selection.
-The *entity* parameter is an object variable of the entity selection class.
+Le paramètre *entity* est une variable objet de la classe entity selection.
-Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. At each iteration, the *entity* object variable is automatically filled with the matching entity of the entity selection.
+Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. À chaque itération, la variable objet *entity* est automatiquement remplie avec l'entité correspondante de l'entity selection.
#### Exemple avec un tableau html
@@ -256,7 +256,7 @@ Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity
```
-#### Example with `PROCESS 4D TAGS`
+#### Exemple avec `PROCESS 4D TAGS`
```4d
var customers : cs.CustomersSelection
@@ -272,15 +272,15 @@ TEXT TO DOCUMENT("customers.txt"; $output)
### ``
-This syntax iterates on each *property* of the *object*. The code portion located between `` and `` is repeated for each property of the object.
+Cette syntaxe itère sur chaque *property* de *object*. La partie du code située entre `` et `` est répétée pour chaque propriété de l'objet.
-The *property* parameter is a text variable automatically filled with the name of the currently processed property.
+Le paramètre *property* est une variable texte automatiquement remplie avec le nom de la propriété en cours de traitement.
Les propriétés de l'objet sont itérées en fonction de leur ordre de création. Pendant la boucle, il est possible d'ajouter ou de supprimer des propriétés dans l'objet, sans pour autant modifier le nombre de boucles qui reste basé sur le nombre de propriétés initial de l'objet.
#### Exemple avec les propriétés d'un objet
-*getGamers* is a project method that returns an object like ("Mary"; 10; "Ann"; 20; "John"; 40) to figure gamer scores.
+*getGamers* est une méthode projet qui renvoie un objet tel que ("Mary" ; 10 ; "Ann" ; 20 ; "John" ; 40) pour calculer les scores des joueurs.
```html
@@ -301,32 +301,32 @@ Les propriétés de l'objet sont itérées en fonction de leur ordre de créatio
## 4DEVAL
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DEVAL(expression)`
+#### Syntaxe alternative : `$4DEVAL(expression)`
-The `4DEVAL` tag allows you to assess a 4D variable or expression. Like the [`4DHTML`](#4dhtml) tag, `4DEVAL` does not escape HTML characters when returning text. However, unlike `4DHTML` or [`4DTEXT`](#4dtext), `4DEVAL` allows you to execute any valid 4D statement, including assignments and expressions that do not return any value.
+La balise `4DEVAL` vous permet d'évaluer une variable ou une expression 4D. Comme la balise [`4DHTML`](#4dhtml), `4DEVAL` n'échappe pas les caractères HTML lorsqu'elle retourne du texte. Cependant, contrairement à `4DHTML` ou [`4DTEXT`](#4dtext), `4DEVAL` vous permet d'exécuter n'importe quelle instruction 4D valide, y compris les assignations et les expressions qui ne renvoient aucune valeur.
Par exemple, vous pouvez exécuter :
```
- $input:="" //assignment
- $input:=$input+"" //calculation
+ $input:="" //assignation
+ $input:=$input+"" //calcul
PROCESS 4D TAGS($input;$output)
//$output = "43"
```
-In case of an error during interpretation, the text inserted will be in the form: `: ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré se présentera sous la forme suivante : `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DHTML
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DHTML(expression)`
+#### Syntaxe alternative : `$4DHTML(expression)`
-Just like the `4DTEXT` tag, this tag lets you assess a 4D variable or expression that returns a value, and insert it as an HTML expression. Unlike the `4DTEXT` tag, this tag does not escape HTML special characters (e.g. ">").
+Tout comme la balise `4DTEXT`, cette balise vous permet d'évaluer une variable 4D ou une expression qui renvoie une valeur, et de l'insérer en tant qu'expression HTML. Contrairement à la balise `4DTEXT`, cette balise n'échappe pas les caractères spéciaux HTML (tels que ">").
Par exemple, voici les résultats du traitement de la variable texte 4D myvar avec les balises disponibles :
@@ -335,9 +335,9 @@ Par exemple, voici les résultats du traitement de la variable texte 4D myvar av
| `myvar:=""` | `` | `<B>` |
| `myvar:=""` | `` | `` |
-In case of an interpretation error, the inserted text will be ` : ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré sera `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DIF, 4DELSE, 4DELSEIF et 4DENDIF
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Users/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Users/overview.md
index 7da231a1733f6c..f1278d6e0a2343 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Users/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/Users/overview.md
@@ -7,11 +7,11 @@ Si plusieurs personnes utilisent une application, ce qui est souvent le cas dans
La stratégie de contrôle d'accès 4D dépend de la configuration de votre déploiement :
-- in multi-user Web and REST applications, access control is based upon [ORDA's Roles and privileges](../ORDA/privileges.md) features.
-- in multi-user desktop applications, you can rely on 4D users and groups,
-- dans les applications monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
+- dans les applications Web et REST multi-utilisateurs, le contrôle d'accès est basé sur les [rôles et privilèges d'ORDA](../ORDA/privileges.md).
+- dans les applications desktop multi-utilisateurs, vous pouvez vous appuyer sur les utilisateurs et les groupes 4D,
+- dans les applications desktop monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
-:::tip Related Blog post
+:::tip Article de blog lié
Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/) pour une vue d'ensemble des fonctions de sécurité de 4D.
@@ -19,9 +19,9 @@ Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/
## Contrôle des accès dans les applications multi-utilisateurs
-Multi-user desktop applications are deployed with 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
+Les applications desktop multi-utilisateurs sont déployées avec 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
-Initiez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture N'importe quelle partie de l'application peut être ouverte. N'importe quelle partie de l'application peut être ouverte.
+Vous initialisez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture, aucun identifiant n'est requis). N'importe quelle partie de l'application peut être ouverte.
Lorsqu’un mot de passe est affecté au Super_Utilisateur, tous les privilèges d’accès que vous avez affectés prennent effet. Pour se connecter à l'application ou à un [serveur à accès protégé](handling_users_groups.md#assigning-group-access), les utilisateurs distants doivent saisir un login/mot de passe.
@@ -29,11 +29,11 @@ Pour désactiver le système de restriction d’accès, il suffit de supprimer (
## Contrôle d'accès dans les applications monoposte
-Single-user applications are desktop applications, deployed with 4D or merged with 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
+Les applications monoposte sont des applications de bureau, déployées avec 4D ou fusionnées avec 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
### Identification de l'utilisateur
-To identify the current user in a 4D single-user application, you can rely on the [`Current system user`](../commands-legacy/current-system-user.md) command, which returns the user who opened the system session. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
+Pour identifier l'utilisateur courant dans une application mono-utilisateur 4D, vous pouvez vous appuyer sur la commande [`Current system user`](../commands-legacy/current-system-user.md), qui renvoie l'utilisateur qui a ouvert la session système. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
Vous pouvez alors autoriser ou refuser les accès à votre application en utilisant un code suivant :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/authentication.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/authentication.md
index 73b5fbc6c8bbe0..7c43698fb896bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/authentication.md
@@ -115,7 +115,7 @@ Vous devez déclarer ces paramètres de la manière suivante :
:::note
-Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. The information received by the database method depends on the selected [authentication mode](#authentication-modes).
+Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. Les informations reçues par la méthode base dépendent du [mode d'authentification](#authentication-modes) sélectionné.
:::
@@ -123,9 +123,9 @@ Tous les paramètres de la méthode base `On Web Authentication` ne sont pas né
Le premier paramètre (`$url`) est l'URL reçue par le serveur, dont l'adresse de l'hôte a été supprimée.
-Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. The following table shows the values of $url depending on the URL entered in the Web browser:
+Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur Web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.45.67.89 | / |
| http://123.45.67.89 | / |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/httpRequests.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/httpRequests.md
index 37c63e39561ba5..d2a2ba7edb4d52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/httpRequests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/httpRequests.md
@@ -13,7 +13,7 @@ Le serveur web 4D fournit plusieurs fonctionnalités intégrées pour gérer les
:::info
-You can also implement your own HTTP request handlers for a customized control over incoming requests and outgoing responses. When a custom HTTP request handler is triggered, no database method is called. See [**HTTP Request Handler**](http-request-handler.md) section.
+Vous pouvez également mettre en œuvre vos propres gestionnaires de requêtes HTTP pour un contrôle personnalisé des requêtes entrantes et des réponses sortantes. Lorsqu'un gestionnaire de requête HTTP personnalisé est déclenché, aucune méthode de base de données n'est appelée. Voir la section [**Gestionnaire de requêtes HTTP**](http-request-handler.md).
:::
@@ -23,7 +23,7 @@ La méthode base `On Web Connection` peut être utilisée comme point d'entrée
### Appels des méthodes base
-The `On Web Connection` database method is automatically called when the server receives any URL that is not a valid path to an existing page on the server (and is not a URL with a pattern triggering a [custom HTTP Request Handler](http-request-handler.md)).
+La méthode base `On Web Connection` est automatiquement appelée lorsque le serveur reçoit une URL qui n'est pas un chemin valide vers une page existante sur le serveur (et qui n'est pas une URL avec un motif déclenchant un [gestionnaire de requête HTTP personnalisé](http-request-handler.md)).
La méthode base est appelée avec l'URL.
@@ -56,13 +56,13 @@ Vous devez déclarer ces paramètres :
> Appeler une commande 4D qui affiche un élément d'interface (`DIALOG`, `ALERT`, etc.) n'est pas autorisé et met fin au traitement de la méthode.
-### $url - URL extra data
+### $url - Données supplémentaires de l'URL
-The first parameter ($url) is the URL entered by users in the address area of their web browser, without the host address.
+Le premier paramètre ($url) est l'URL saisi par les utilisateurs dans la zone d'adresse de leur navigateur web, sans l'adresse de l'hôte.
-Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. The following table shows the values of $url depending on the URL entered in the web browser:
+Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.4.567.89 | / |
| http://123.45.67.89 | / |
@@ -72,27 +72,27 @@ Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votr
Notez que vous êtes libre d'utiliser ce paramètre à votre convenance. 4D ignore simplement la valeur passée au-delà de la partie hôte de l'URL. Par exemple, vous pouvez établir une convention où la valeur "*/Customers/Add*" signifie "accès direct pour ajouter un nouvel enregistrement dans la table `[Customers]`". En proposant aux utilisateurs web une liste de valeurs possibles et/ou des signets par défaut, vous pouvez leur fournir des raccourcis vers différentes parties de votre application. De cette façon, les utilisateurs web peuvent accéder rapidement aux ressources de votre site web sans passer par le chemin de navigation complet à chaque nouvelle connexion.
-### $header - Header and Body of the HTTP request
+### $header - En-tête et corps de la requête HTTP
-The second parameter ($header) is the header and the body of the HTTP request sent by the web browser. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
+Le deuxième paramètre ($header) est l'en-tête et le corps (body) de la requête HTTP envoyée par le navigateur web. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
Si votre application utilise ces informations, il vous appartient d'analyser l'en-tête et le corps. Vous pouvez utiliser les commandes `WEB GET HTTP HEADER` et `WEB GET HTTP BODY`.
-> For performance reasons, the size of data passing through the $header parameter must not exceed 32 KB. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
+> Pour des raisons de performance, la taille des données passant par le paramètre $header ne doit pas dépasser 32 Ko. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
-### $BrowserIP - Web client IP address
+### $BrowserIP - Adresse IP du client Web
-The $BrowserIP parameter receives the IP address of the browser’s machine. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
+Le paramètre $BrowserIP reçoit l'adresse IP de la machine du navigateur. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
> 4D renvoie les adresses IPv4 dans un format hybride IPv6/IPv4 écrit avec un préfixe de 96 bits, par exemple ::ffff:192.168.2.34 pour l'adresse IPv4 192.168.2.34. Pour plus d'informations, consultez la section [Support IPv6](webServerConfig.md#about-ipv6-support).
-### $ServerIP - Server IP address
+### $ServerIP - Adresse IP du serveur
-The $ServerIP parameter receives the IP address requested by the 4D Web Server. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
+Le paramètre $ServerIP reçoit l'adresse IP demandée du serveur Web 4D. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
### $user et $password - Nom d'utilisateur et mot de passe
-The $user and $password parameters receive the user name and password entered by the user in the standard identification dialog box displayed by the browser, if applicable (see the [authentication page](authentication.md)).
+Les paramètres $user et $password reçoivent le nom d'utilisateur et le mot de passe saisis par l'utilisateur dans la boîte de dialogue d'identification standard affichée par le navigateur, le cas échéant (voir la [page d'authentification](authentication.md)).
> Si le nom d'utilisateur envoyé par le navigateur existe dans 4D, le paramètre $password (le mot de passe de l'utilisateur) n'est pas renvoyé pour des raisons de sécurité.
@@ -108,7 +108,7 @@ The $user and $password parameters receive the user name and password entered by
**Utilisation :** URL ou action du formulaire.
-Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. The method will receive this parameter.
+Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. La méthode recevra ce paramètre.
- La méthode projet 4D doit avoir été [autorisée pour les requêtes web](allowProject.md) : l'attribut "Disponible via Balises HTML et URLs 4D (4DACTION. .)” doit avoir été coché dans les propriétés de la méthode. Si l'attribut n'est pas coché, la requête web est rejetée.
- Lorsque 4D reçoit une requête `/4DACTION/MethodName/Param`, la méthode base `On Web Authentication` est appelée (si elle existe).
@@ -134,17 +134,17 @@ Cet exemple décrit l'association de l'URL `/4DACTION` avec un objet image HTML
La méthode `getPhoto` est la suivante :
```4d
-#DECLARE ($url : Text) // This parameter must always be declared
+#DECLARE ($url : Text) // Ce paramètre doit toujours être déclaré
var $path : Text
var $PictVar : Picture
var $BlobVar : Blob
- //find the picture in the Images folder within the Resources folder
-$path:=Get 4D folder(Current resources folder)+"Images"+Folder separator+$url+".psd"
+ //trouve l'image dans le dossier Images du dossier Resources
+$path:=Get 4D folder(Current resources folder)+"Images "+Folder separator+$url+".psd"
-READ PICTURE FILE($path;$PictVar) //put the picture in the picture variable
-PICTURE TO BLOB($PictVar;$BLOB;".png") //convert the picture to ".png" format
-WEB SEND BLOB($BLOB;"image/png")
+READ PICTURE FILE($path;$PictVar) //place l'image dans la variable image
+PICTURE TO BLOB($PictVar;$BLOB;".png") //convertit l'image au format ".png"
+WEB SEND BLOB($BLOB; "image/png")
```
### 4DACTION pour poster des formulaires
@@ -191,26 +191,26 @@ OK="Search"
4D appelle la méthode base `On Web Authentication` (si elle existe), puis la méthode de projet `processForm` est appelée, qui est la suivante :
```4d
- #DECLARE ($url : Text) //mandatory for compiled mode
+ #DECLARE ($url : Text)
var $vName : Integer
var vName;vLIST : Text
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrVals;0)
- WEB GET VARIABLES($arrNames;$arrVals) //we retrieve all the variables of the form
- $vName:=Find in array($arrNames;"vName")
- vName:=$arrVals{$vName}
- If(Find in array($arrNames;"vExact")=-1) //If the option has not been checked
- vName:=vName+"@"
+ WEB GET VARIABLES($arrNames;$arrVals) //nous récupérons toutes les variables du formulaire
+ $vName:=Find in array($arrNames; "vName")
+ vName :=$arrVals{$vName}
+ If(Find in array($arrNames; "vExact")=-1) //Si l'option n'a pas été cochée
+ vName :=vName+"@"
End if
- QUERY([Jockeys];[Jockeys]Name=vName)
+ QUERY([Jockeys] ;[Jockeys]Name=vName)
FIRST RECORD([Jockeys])
While(Not(End selection([Jockeys])))
vLIST:=vLIST+[Jockeys]Name+" "+[Jockeys]Tel+"
"
NEXT RECORD([Jockeys])
End while
- WEB SEND FILE("results.htm") //Send the list to the results.htm form
- //which contains a reference to the variable vLIST,
- //for example
+ WEB SEND FILE("results.htm") //Envoie la liste au formulaire results.htm
+ //qui contient une référence à la variable vLIST,
+ //par exemple
//...
End if
```
@@ -219,9 +219,9 @@ End if
Le serveur Web de 4D vous permet de récupérer les données envoyées via des requêtes POST ou GET, en utilisant des formulaires Web ou des URL.
-Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. This principle can be implemented in the case of a Web form, sent for example using [`WEB SEND FILE`](../commands-legacy/web-send-file.md) or [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), where the user enters or modifies values, then clicks on the validation button.
+Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. Ce principe peut être mis en œuvre dans le cas d'un formulaire Web, envoyé par exemple à l'aide de [`WEB SEND FILE`](../commands-legacy/web-send-file.md) ou [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), où l'utilisateur saisit ou modifie des valeurs, puis clique sur le bouton de validation.
-In this case, 4D can retrieve the values of the HTML objects found in the request using the [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md) command. La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
+Dans ce cas, 4D peut récupérer les valeurs des objets HTML trouvés dans la requête en utilisant la commande [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md). La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
Considérons le code source HTML suivant :
@@ -282,7 +282,7 @@ Les principales caractéristiques de cette page sont les suivantes :
Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisateur clique sur l'un des boutons du formulaire HTML.
```4d
- // Retrieval of value of variables
+ // Récupération de la valeur des variables
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrValues;0)
WEB GET VARIABLES($arrNames;$arrValues)
@@ -290,26 +290,26 @@ Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisat
Case of
- // The Log On button was clicked
- :(Find in array($arrNames;"vsbLogOn")#-1)
- $user :=Find in array($arrNames;"vtUserName")
- QUERY([WWW Users];[WWW Users]UserName=$arrValues{$user})
- $0:=(Records in selection([WWW Users])>0)
+ // Le bouton Log On a été cliqué
+ :(Find in array($arrNames; "vsbLogOn")#-1)
+ $user :=Find in array($arrNames; "vtUserName")
+ QUERY([WWW Users] ;[WWW Users]UserName=$arrValues{$user})
+ $0 :=(Records in selection([WWW Users])>0)
If($0)
WWW POST EVENT("Log On";WWW Log information)
- // The WWW POST EVENT method saves the information in a database table
+ // La méthode WWW POST EVENT enregistre les informations dans une table de la base de données
Else
- $0:=WWW Register
- // The WWW Register method lets a new Web user register
+ $0 :=WWW Register
+ // La méthode WWW Register permet à un nouvel utilisateur Web de s'enregistrer
End if
- // The Register button was clicked
- :(Find in array($arrNames;"vsbRegister")#-1)
+ // Le bouton Register a été cliqué
+ :(Find in array($arrNames; "vsbRegister")#-1)
$0:=WWW Register
- // The Information button was clicked
- :(Find in array($arrNames;"vsbInformation")#-1)
+ // Le bouton Information a été cliqué
+ :(Find in array($arrNames; "vsbInformation")#-1)
WEB SEND FILE("userinfos.html")
End case
```
@@ -325,15 +325,15 @@ Gardez à l'esprit qu'en HTML, tous les objets sont des objets de texte. Si vous
Le serveur web 4D fournit plusieurs commandes web de bas niveau vous permettant de développer un traitement personnalisé des requêtes :
-- the [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) command returns the body as raw text, allowing any parsing you may need
-- the [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) command return the headers of the request. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
-- the [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) and [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) commands to parse the body part of a multi-part request and retrieve text values, but also files posted, using BLOBs.
+- la commande [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) renvoie le corps du message sous forme de texte brut, ce qui permet de l'analyser si nécessaire
+- la commande [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) renvoie les en-têtes de la requête. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
+- les commandes [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) et [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) pour analyser la partie body d'une requête multi-part et récupérer des valeurs texte, mais aussi des fichiers postés, en utilisant des BLOB.
Ces commandes sont résumées dans le graphique suivant :

-Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. The 4D Web Server also supports chunked transfer encoding from the server to Web clients (using [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
+Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. Le serveur Web 4D prend également en charge le codage de transfert par morceaux du serveur vers les clients Web (en utilisant [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
## Méthode projet COMPILER_WEB
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/preemptiveWeb.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/preemptiveWeb.md
index 829fa0155037b3..29ab0600ea83c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/preemptiveWeb.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/preemptiveWeb.md
@@ -5,7 +5,7 @@ title: Utiliser des process web préemptifs
Le Web Server de 4D vous permet de tirer pleinement parti des ordinateurs multi-coeurs en utilisant des process Web préemptifs dans vos applications compilées. Vous pouvez configurer votre code lié au Web, y compris les balises 4D, les méthodes base Web ou les fonctions de classe REST de ORDA, afin qu'il s'exécute simultanément sur le plus grand nombre de coeurs possibles.
-For in-depth information on preemptive process in 4D, please refer to the [Preemptive Processes](../Develop/preemptive.md) section.
+Pour plus d'informations sur les process préemptifs dans 4D, veuillez consulter la section [Process préemptifs](../Develop/preemptive.md).
## Disponibilité du mode préemptif pour les process Web
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
index 116968db797f9b..dd9f0551adba94 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
@@ -3,7 +3,7 @@ id: sessions
title: Sessions Web
---
-Le serveur Web de 4D offre des fonctions intégrées pour la gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
+Le serveur Web de 4D offre des fonctions intégrées de gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
Les sessions Web permettent de :
@@ -25,7 +25,7 @@ Les sessions Web sont utilisées par :
- les [applications web](gettingStarted.md) qui envoient des requêtes http,
- les appels à l'[API REST](../REST/authUsers.md), qui sont effectués par les [datastores distants](../ORDA/remoteDatastores.md) et les [pages Qodly](qodly-studio.md).
-## Enabling web sessions {#enabling-web-sessions}
+## Activation des sessions web {#enabling-web-sessions}
La gestion de session peut être activée et désactivée sur votre serveur Web 4D. Il y a différentes façons d'activer la gestion de session :
@@ -63,7 +63,7 @@ Le nom du cookie peut être obtenu en utilisant la propriété [`.sessionCookieN
:::note
-La création d'une session web pour une requête REST peut nécessiter qu'une licence soit disponible, consultez [cette page](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -106,7 +106,7 @@ Vous pouvez fermer une session à partir d'une page Qodly en utilisant la foncti
## Privilèges
-Les privilèges sont associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
+Des privilèges peuvent être associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
Vous assignez des privilèges en utilisant la [fonction `.setPrivileges()`](API/SessionClass.md#setprivileges). Dans votre code, vous pouvez vérifier les privilèges de la session pour autoriser ou refuser l'accès à l'aide de la fonction [`.hasPrivilege()`](API/SessionClass.md#hasprivilege). Par défaut, les nouvelles sessions n'ont aucun privilège : ce sont des sessions **Guest** (la fonction [`isGuest()`](API/SessionClass.md#isguest) retourne true).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/webServerObject.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/webServerObject.md
index 80ee10ccfba2e9..6a03ee09d4103c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/webServerObject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/WebServer/webServerObject.md
@@ -1,9 +1,9 @@
---
id: webServerObject
-title: Web Server instances
+title: Instances du serveur Web
---
-A 4D project can start and monitor a web server for the main (host) application as well as each [hosted component](../Concepts/components.md).
+Un projet 4D peut démarrer et contrôler un serveur web pour l'application principale (hôte) ainsi que pour chaque [composant hébergé](../Concepts/components.md).
Par exemple, si vous avez installé deux composants dans votre application principale, vous pouvez démarrer et contrôler jusqu'à trois serveurs Web indépendants à partir de votre application :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
index 5ef9d24e87eb43..dab3ae0c852036 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Vous souhaitez stopper le process sélectionné parmi la collection de process a
| | |
| --- | --- |
| Numéro de commande | 1634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
index e22c835878d53d..bd2d5fabbb4bcb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
@@ -39,6 +39,6 @@ Bien que la commande **ABORT** soit destinée à une utilisation au sein d'une m
| | |
| --- | --- |
| Numéro de commande | 156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
index fd4b6c330de88c..df28ce93183ba2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
@@ -32,6 +32,6 @@ L'exemple suivant retourne la valeur absolue de -10,3, qui est 10,3 :
| | |
| --- | --- |
| Numéro de commande | 99 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
index 85afe0e9ae95aa..1e0d6b3c78a63c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
@@ -41,7 +41,7 @@ La commande **ACCEPT** est autorisée en mode headless, dans le contexte des zon
| | |
| --- | --- |
| Numéro de commande | 269 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
index 204b12a096c9f2..9de542441eacd6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [BREAK LEVEL](break-level.md).
| | |
| --- | --- |
| Numéro de commande | 303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
index 6bb2a8ec128bfd..6bdc713d71ef8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
@@ -71,6 +71,6 @@ Vous voulez savoir si l'action standard **Copier** est disponible (c'est-à-dire
| | |
| --- | --- |
| Numéro de commande | 1442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
index 752ed70b055054..85d36ea12f4188 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 346 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
index e5745c39fc8352..77c1f89a7accf7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
@@ -50,6 +50,6 @@ Vous voulez connaître le statut courant de transaction :
| | |
| --- | --- |
| Numéro de commande | 1387 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
index 5097c6e41a2616..25f99f1432baec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
@@ -110,6 +110,6 @@ Vous obtenez des tableaux du type :
| | |
| --- | --- |
| Numéro de commande | 1277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
index 546f223ef7a8a5..6a7758808bfd7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est validé et 0 s
| | |
| --- | --- |
| Numéro de commande | 56 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
index 50f413c7dde5d9..95f4aacb831b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Alors que les [Self](self.md) vous permettent d'ajouter des jours à une date, *
| | |
| --- | --- |
| Numéro de commande | 393 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
index 9a3adfdb36071c..c104907d014fd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 119 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
index 309fe83c177eb6..e0e8a00849af9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des champs Texte de la table
| | |
| --- | --- |
| Numéro de commande | 1431 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
index 5cdd98432e301c..1aeea30ac57c3b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des index du champ \[Docs\]C
| | |
| --- | --- |
| Numéro de commande | 1430 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
index 9c7c55d46e60c5..0ef5cebcba591f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ Vous souhaitez modifier temporairement la priorité des champs scalaires de la t
| | |
| --- | --- |
| Numéro de commande | 1429 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
index 3d4ecb4c5cad0b..b4834db24f36e1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **After** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 31 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
index dc2a54be8011c8..f08a92eb1ae653 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Ce code affiche la boîte de dialogue d'alerte suivante :
| | |
| --- | --- |
| Numéro de commande | 41 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
index 8cc26cd141d7fd..375e49ab4b1e08 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ L'exemple suivant affiche tous les enregistrements de la table \[Personnes\] :
| | |
| --- | --- |
| Numéro de commande | 47 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
index c735d2cbee3efe..ee36ff79b11dfa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
@@ -215,7 +215,7 @@ Si les données dans le BLOB sont correctement ajoutées au conteneur, la variab
| | |
| --- | --- |
| Numéro de commande | 403 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
index a4ee7bb3345ca3..ba09631efe2d27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ L'exemple suivant ouvre un document existant qui s'appelle “Note”, ajoute à
| | |
| --- | --- |
| Numéro de commande | 265 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
index c5a0d2036a93a7..ea158f2ef59552 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
@@ -82,7 +82,7 @@ Ensuite, dans toute méthode formulaire ou projet, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 411 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
index 0c1d523b50daa6..ec9002b01c256f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 911 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
index 81927b76c5901c..efe2d05d738f81 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
@@ -153,6 +153,6 @@ Dans le formulaire en exécution, la liste apparaîtra ainsi :
| | |
| --- | --- |
| Numéro de commande | 376 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
index 21b80abb05444a..9c09410d970e93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
@@ -45,6 +45,6 @@ Lorsque vous démarrez votre base sous Windows, vous souhaitez vérifier qu'une
| | |
| --- | --- |
| Numéro de commande | 491 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
index a37afd9ae915a7..8aa569855b6f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si le code est exécuté sur 4D Server, l'objet contient (par exemple) :
| | |
| --- | --- |
| Numéro de commande | 1599 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
index df868d9b292db7..da50b56934d411 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Quelque part dans votre code, ailleurs que dans la *On Server Startup Database M
| | |
| --- | --- |
| Numéro de commande | 494 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
index 8a0ff339b18462..d3037a2151c725 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
@@ -124,6 +124,6 @@ Le code suivant reconstitue le numéro de version de l'application et permet de
| | |
| --- | --- |
| Numéro de commande | 493 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
index 8be08cbd3ab1b6..9d1d6d57654581 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
@@ -69,7 +69,7 @@ Si l'utilisateur clique sur le bouton Stop dans le thermomètre de progression,
| | |
| --- | --- |
| Numéro de commande | 70 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
index 7e1f3d45d9eb8d..4e4a8cde2546dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ Cet exemple permet d'afficher la valeur de Pi :
| | |
| --- | --- |
| Numéro de commande | 20 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
index b29552c6d890a4..d5810cebcdd590 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Cet exemple crée un tableau local de 100 lignes contenant chacune 50 éléments
| | |
| --- | --- |
| Numéro de commande | 1222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
index cc3f82c411b907..0608aab3f0dd2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
@@ -64,6 +64,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Booléen et a
| | |
| --- | --- |
| Numéro de commande | 223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
index c2bb86df48b40f..72265fdad86812 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Date et affec
| | |
| --- | --- |
| Numéro de commande | 224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
index f5163b8a64723a..656ddfaaa9b5e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier](# "N
| | |
| --- | --- |
| Numéro de commande | 220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
index 3e048c37c41151..aca7f6bae2706e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier long]
| | |
| --- | --- |
| Numéro de commande | 221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
index 5136db0e686f5c..e7244b3e30e38e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Création et remplissage d’un tableau local d’objets :
| | |
| --- | --- |
| Numéro de commande | 1221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
index 7f9c64916f9869..92d05101516527 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Image](# "Can be
| | |
| --- | --- |
| Numéro de commande | 279 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
index a5b1c2b53eb675..f66a090dfac615 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Pointeur](# "A r
| | |
| --- | --- |
| Numéro de commande | 280 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
index c055689aba3c5e..8b75ed537a50f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Réel](# "Nu
| | |
| --- | --- |
| Numéro de commande | 219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
index 5d83acc4ad6f95..f87d3e54dd7326 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Texte](# "Un
| | |
| --- | --- |
| Numéro de commande | 222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
index 1a290fc5566653..45d2f2e6fe1808 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Comme les tableaux d’heures acceptent des valeurs numériques, le code suivant
| | |
| --- | --- |
| Numéro de commande | 1223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
index 46d5e34f5443ae..7a067fcaa51e0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Vous souhaiter copier un tableau texte dans une collection partagée :
| | |
| --- | --- |
| Numéro de commande | 1563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
index b6a4665ff008d2..5b8ee77be2bec6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ La commande **ARRAY TO LIST** génère l'erreur *\-9957* lorsqu'elle est appliqu
| | |
| --- | --- |
| Numéro de commande | 287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
index 1ed798cee62a5d..795e5fb2046cc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
@@ -84,7 +84,7 @@ Vous souhaitez recopier la sélection d'enregistrements vers une table d'archive
| | |
| --- | --- |
| Numéro de commande | 261 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
index 99920d7917e046..2b3cae201c5c21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
@@ -58,7 +58,7 @@ Une assertion peut permettre de tester les paramètres passés à une méthode p
| | |
| --- | --- |
| Numéro de commande | 1129 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
index acb68671753940..7e6ffecd5de436 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Insertion d’une assertion dans l’évaluation d’une expression :
| | |
| --- | --- |
| Numéro de commande | 1132 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
index e87efb85327fc0..9525fe0b5f8614 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
@@ -95,7 +95,7 @@ Vous pouvez effectuer les calculs suivants :
| | |
| --- | --- |
| Numéro de commande | 2 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
index cb52f277dcd4cf..04587032ab9753 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Passez dans le paramètre *sélecteur* le type d’information à récupérer. L
| | |
| --- | --- |
| Numéro de commande | 888 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
index 38d48150acfa80..dc0fb8fa856924 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En cas d’incident au cours de la sauvegarde, les informations relatives à l'i
| | |
| --- | --- |
| Numéro de commande | 887 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
index 58564ea6dade50..2d65aa1375bd2a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Cet exemple permet de transférer une image via un BLOB :
| | |
| --- | --- |
| Numéro de commande | 896 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
index f8aa37dc866617..965646df24c5c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
@@ -45,6 +45,6 @@ Par défaut, si le paramètre *\** est omis, la commande utilise un encodage Bas
| | |
| --- | --- |
| Numéro de commande | 895 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
index 79604ef5cb55bd..0155883d60495a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
@@ -39,6 +39,6 @@ Dans l'exemple suivant, un bip est émis et une alerte affichée lorsqu'aucun en
| | |
| --- | --- |
| Numéro de commande | 151 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
index d452fc2c9c818f..4e163c3fe1f7da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
@@ -69,6 +69,6 @@ La méthode formulaire suivante est utilisée pendant l'impression d'un état. E
| | |
| --- | --- |
| Numéro de commande | 198 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
index 0d33ab47f687d6..60d2dab6a97432 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **Before** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 29 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
index 9c63700e8f9daf..c04d03b842953e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
@@ -49,6 +49,6 @@ A noter que le *Débogueur* de 4D évaluera le code SQL ligne par ligne. Dans ce
| | |
| --- | --- |
| Numéro de commande | 948 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
index 24e34db69789c8..35a8ee7db40177 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
@@ -83,6 +83,6 @@ Lorsque cette méthode est placée dans votre application, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 536 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
index 406f9bf2d30dd6..0485dc767e015b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ La ligne de code suivante ajoute 100 octets au BLOB *monBlob* :
| | |
| --- | --- |
| Numéro de commande | 605 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
index 4dec390e2c2495..fb672684cbf00a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
@@ -57,7 +57,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
index e7849064cea1d6..444b55d9474c20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
@@ -84,6 +84,6 @@ L'exemple suivant lit 20 valeurs entières d'un BLOB à partir de l'offset 0x200
| | |
| --- | --- |
| Numéro de commande | 549 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
index 601cab16ca93f5..dd5822b0ccfdc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ La variable OK prend la valeur 1 si la liste a été correctement créée, sinon
| | |
| --- | --- |
| Numéro de commande | 557 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
index e112f07a60fc94..ea633eaee88c11 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
@@ -66,6 +66,6 @@ L'exemple suivant lit 20 valeurs de type Entier long dans un BLOB, à partir de
| | |
| --- | --- |
| Numéro de commande | 551 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
index 9ca12877f3da52..5c8afab1324785 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 682 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
index b53c30a3c066d3..f6624e6f5f63a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
@@ -77,6 +77,6 @@ Vous voulez appliquer des paramètres d'impression précédemment stockés sur d
| | |
| --- | --- |
| Numéro de commande | 1434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
index c46ae52d5a8dfe..1613075d684093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
@@ -68,6 +68,6 @@ L'exemple suivant lit 20 valeurs réelles dans un BLOB à partir de l'offset 0x2
| | |
| --- | --- |
| Numéro de commande | 553 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
index 50f4a77b8af6f5..d20ed798e62ecd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
@@ -67,6 +67,6 @@ Après l'exécution de la commande, la variable *offset* est incrémentée du no
| | |
| --- | --- |
| Numéro de commande | 555 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
index e5d02455b9412d..335206935027b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ Si la commande est exécutée correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 850 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
index 296a0e6dd4a2d8..734d7665f3d9c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ La variable OK prend la valeur 1 si la variable a été correctement réécrite,
| | |
| --- | --- |
| Numéro de commande | 533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
index eef4a5a4247e84..a3b559c84b7ea9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Vous sélectionnez une valeur en fonction d'un attribut de champ objet, en antic
| | |
| --- | --- |
| Numéro de commande | 1537 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
index 38c2adcae4ac81..d54fef6f646b2d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Si vous ne passez pas le paramètre *ensemble*, la commande utilisera l’ensemb
| | |
| --- | --- |
| Numéro de commande | 646 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
index cd623a921164a1..f3cb91e2b1848d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ L'exemple suivant imprime un état avec deux niveaux de rupture. La sélection e
| | |
| --- | --- |
| Numéro de commande | 302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
index c2419a29535807..60e955d5be254b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ L'exemple suivant est une méthode qui peut être exécutée à partir d'une com
| | |
| --- | --- |
| Numéro de commande | 326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
index 999d7d84563bf1..725bf0cbe12fdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
@@ -55,7 +55,7 @@ Si la commande échoue, une erreur est générée, que vous pouvez intercepter
| | |
| --- | --- |
| Numéro de commande | 871 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
index b8f14de06574a4..3e43a463598a6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Vous souhaitez obtenir des informations sur la base courante et tous les composa
| | |
| --- | --- |
| Numéro de commande | 1402 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
index 97c0402a34f905..97829591067fed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Vous pouvez alors ajouter d'autres messages en exécutant à nouveau la commande
| | |
| --- | --- |
| Numéro de commande | 1391 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
index e439c1622d02a5..95cb4395e4a1f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
@@ -19,7 +19,7 @@ displayed_sidebar: docs
Cette commande doit être placée dans la méthode formulaire du sous-formulaire ou dans la méthode objet d’un des objets du sous-formulaire. L’événement sera reçu uniquement dans la méthode objet du conteneur du sous-formulaire.
-Vous pouvez passer dans *événement* tout événement formulaire prédéfini de 4D (vous pouvez utiliser les constantes du thème *Evénements formulaire*) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
+Vous pouvez passer dans *événement* un des [événements formulaire 4D pris en charge par les sous-formulaires](../FormObjects/subform_overview.md#call-subform-container-command) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
*Principe d’exécution de la commande* **CALL SUBFORM CONTAINER** *:*
@@ -35,6 +35,6 @@ Vous pouvez passer dans *événement* tout événement formulaire prédéfini de
| | |
| --- | --- |
| Numéro de commande | 1086 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
index 5032c1e1a18a4e..87a75e33a09cdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
@@ -82,6 +82,6 @@ Voici le code de *méthodeWorker* :
| | |
| --- | --- |
| Numéro de commande | 1389 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
index 2039b8690d4de8..629bfedfc31ff5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 241 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
index 6c04499adc0520..9a135870415ea4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
@@ -54,7 +54,7 @@ Lorsque la commande [CANCEL](cancel.md) est exécutée (formulaire annulé ou an
| | |
| --- | --- |
| Numéro de commande | 270 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
index c15403d494a97c..6238badc01747f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
index 996d07dfe9841e..8d540503a6f109 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
@@ -72,6 +72,6 @@ L'exemple suivant affiche simplement la boîte de dialogue de connexion :
| | |
| --- | --- |
| Numéro de commande | 289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
index bff4debb28c81e..7a0c3306647354 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ Vous permettrez ainsi à un utilisateur d‘activer des licences sans avoir à m
| | |
| --- | --- |
| Numéro de commande | 637 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
index 397a6109b576a4..041c798287f9b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ L'exemple suivant permet à l'utilisateur de modifier son mot de passe :
| | |
| --- | --- |
| Numéro de commande | 186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
index afbc46868abdaa..d82a862c2b0e85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ L'exemple suivant illustre l'utilisation de **Change string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
index feb8d6871f845d..0d5e3d331b996b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
@@ -41,6 +41,6 @@ L'exemple suivant utilise la fonction **Char** pour insérer un retour chariot d
| | |
| --- | --- |
| Numéro de commande | 90 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
index f91068c46800c8..7f3e259a9a129e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
@@ -90,6 +90,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 91 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
index cb24931df030a5..8236366a3a1b27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode de gestion d’
| | |
| --- | --- |
| Numéro de commande | 799 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
index eecdfb02642775..65cc9c9ccae0b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
@@ -85,6 +85,6 @@ Ce code est strictement équivalent à :
| | |
| --- | --- |
| Numéro de commande | 955 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
index 3ed92afb4760f5..dd51f5348b648b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
@@ -57,6 +57,6 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 377 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
index 3413b884a08a57..ea9c614bb6e3fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selecti
| | |
| --- | --- |
| Numéro de commande | 333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
index e764f4d94af88e..3f6cf5c3dfa439 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 402 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
index 708686b746c5ff..81a55e256c7209 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
@@ -37,6 +37,6 @@ Reportez-vous à l'exemple de la fonction [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Numéro de commande | 144 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
index bede235b79222c..0142b69f743912 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Reportez-vous à l'exemple de la commande [USE SET](use-set.md).
| | |
| --- | --- |
| Numéro de commande | 117 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
index c679b316462062..edbf43d65642ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ Dans un formulaire, vous utilisez une liste déroulante appelée *asMalListeD* n
| | |
| --- | --- |
| Numéro de commande | 89 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
index ec50384484c898..8dc1fd64b1d739 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Les libellés ne sont pas saisissables mais ils peuvent le devenir après un tri
| | |
| --- | --- |
| Numéro de commande | 1332 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
index 80717132cc66c6..4438fdbda107c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ L'exemple suivant permet à l'utilisateur de créer un nouveau document, écrit
| | |
| --- | --- |
| Numéro de commande | 267 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
index 516a0b1ac2795c..eb16556030fa66 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 996 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
index 3422ba4323454f..15e62489cd4bb1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ N'oubliez pas d'appeler finalement **CLOSE RESOURCE FILE** pour un fichier de re
| | |
| --- | --- |
| Numéro de commande | 498 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
index 1838bf3beef1af..95b9d4ed99e9d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ L'exemple suivant ouvre une fenêtre formulaire et crée des enregistrements à
| | |
| --- | --- |
| Numéro de commande | 154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
index 68679f047af2b7..c747b76e557069 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Vous voulez copier différentes valeurs de propriété d'une collection d'objets
| | |
| --- | --- |
| Numéro de commande | 1562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
index 42894544f00556..cbc9d42189069f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
@@ -56,6 +56,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 987 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
index f08b09c19c5819..b0cb3d9d2bf137 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
@@ -74,7 +74,7 @@ Si l’opération de compactage s’est déroulée correctement, la variable sys
| | |
| --- | --- |
| Numéro de commande | 937 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
index ba26e4c0b61ceb..124c72c21afcdb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
@@ -111,6 +111,6 @@ Les exemples suivants illustrent l'incidence des options dans le **contexte de l
| | |
| --- | --- |
| Numéro de commande | 1756 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
index bd6d6f70d99e0f..f4e5a4ec043862 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Pour plus d'informations sur les composants 4D, reportez-vous au manuel *Mode D
| | |
| --- | --- |
| Numéro de commande | 1001 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
index db31e327c94b84..0c92d090c2bd7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
@@ -99,7 +99,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement compressé, sin
| | |
| --- | --- |
| Numéro de commande | 534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
index b089c98dafb223..1d8ba1614d3f27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
@@ -97,7 +97,7 @@ La ligne :
| | |
| --- | --- |
| Numéro de commande | 162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
index e084653f085616..b3fa3450e550d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Cette méthode, associée à une zone de défilement, permet de changer la valeu
| | |
| --- | --- |
| Numéro de commande | 713 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
index a0749d976fd3ab..2f87e915365728 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
@@ -92,6 +92,6 @@ Vous souhaitez créer une fenêtre pop up à l'emplacement du curseur de la sour
| | |
| --- | --- |
| Numéro de commande | 1365 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
index 3805c0dd7c414f..391db3f78b5ec9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
@@ -191,7 +191,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1011 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
index fc246ebb5ee70b..75f9d9ce5463ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
@@ -55,6 +55,6 @@ Exemples sous Windows :
| | |
| --- | --- |
| Numéro de commande | 1107 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
index 88fa6781f43873..8dcb3398a8a7b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Exemple sous Windows
| | |
| --- | --- |
| Numéro de commande | 1106 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
index 339982d630da27..5246f06c78dad3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
@@ -55,6 +55,6 @@ Conversion d’une image avec une qualité de 60 % :
| | |
| --- | --- |
| Numéro de commande | 1002 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
index 0487bbc5e02e79..762e0e55161243 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
@@ -36,7 +36,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1012 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
index 09c73ebef6fc6e..40be4476e9e96e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ L'exemple suivant remplit un tableau C. Un nouveau tableau, "D", est ensuite cr
| | |
| --- | --- |
| Numéro de commande | 226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
index 765e09fc4c421a..760528e8617070 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ Notez que le BLOB de destination peut être redimensionné si nécessaire.
| | |
| --- | --- |
| Numéro de commande | 558 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
index e0e4a89d50ed2f..0b2e088ac4e1f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
@@ -127,7 +127,7 @@ Les exemples suivants créent différents fichiers et dossiers dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 541 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
index 61536768333afd..c7a8a77e4536db 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Le contenu de la liste copiée est entièrement dupliqué. Une fois que vous en
| | |
| --- | --- |
| Numéro de commande | 626 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
index 77e94ff8ca4b8d..f2c1bfddc2ebd6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
@@ -58,6 +58,6 @@ L'exemple suivant permet de vérifier s'il y a des factures impayées dans la ta
| | |
| --- | --- |
| Numéro de commande | 331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
index 7c201ea4b6ab1c..68f6c472e51131 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Puisque la commande retourne une collection, elle peut être utilisée avec **.j
| | |
| --- | --- |
| Numéro de commande | 1790 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
index 06b5128d50a91f..8da01cf18b4147 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ L'exemple suivant, en client/serveur, copie l'ensemble process "*SetA*", conserv
| | |
| --- | --- |
| Numéro de commande | 600 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
index b6f11190894dec..6c99497fd1f9a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 18 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
index 988fb27f846736..9a9fe278bdac3f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Vous voulez compter les références d'objets dans un tableau d'objets :
| | |
| --- | --- |
| Numéro de commande | 907 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
index 394466a3626a17..c57e645cbfec14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
@@ -64,6 +64,6 @@ Voici la liste *hList* affichée en mode Application :
| | |
| --- | --- |
| Numéro de commande | 380 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
index 568064c1409308..4545b807242275 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Count menu items** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 405 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
index ee18b18db95c24..aa80fa732eec4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Si vous omettez le paramètre *process*, **Count menus** s'applique à la barre
| | |
| --- | --- |
| Numéro de commande | 404 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
index 6dcade77a26b90..c0f992d9906986 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
@@ -96,6 +96,6 @@ ou :
| | |
| --- | --- |
| Numéro de commande | 259 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
index cb878ae7891271..2b21ee5fd6b83f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 437 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
index b4092cc6131554..2676ee0fd467f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Référez-vous à l'exemple de [Process state](process-state.md) et [Semaphore](
| | |
| --- | --- |
| Numéro de commande | 335 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
index 5ad1d8ff21453a..2f742b65d301ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 343 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
index 9c09a2de1c2a8c..a481d3142626be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Dans le cas d'une version monoposte de 4D, **Count users** retourne 1.
| | |
| --- | --- |
| Numéro de commande | 342 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
index f8e140a4cc2fa4..d6f608a78c00ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ La variable système OK prend la valeur 1 si la commande a été correctement ex
| | |
| --- | --- |
| Numéro de commande | 694 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
index b3dd2f75719fed..087590dbd9383b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Avant de lancer l’opération, la commande vérifie que le chemin spécifié ne
| | |
| --- | --- |
| Numéro de commande | 313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
index be0c72ce9e9755..edd55a47c7acee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
@@ -74,7 +74,7 @@ Si le document est correctement créé, la variable système OK prend la valeur
| | |
| --- | --- |
| Numéro de commande | 266 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
index babc548f082caf..8ff2502558382f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Reportez-vous à l'exemple proposé dans la section *Présentation des ensembles
| | |
| --- | --- |
| Numéro de commande | 140 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
index 866a40b6a88ed0..e98327c8121257 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ Création du sous-dossier "\\February\\" dans le dossier existant "C:\\Archives\
| | |
| --- | --- |
| Numéro de commande | 475 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
index 37274def5f72a2..2dcb69a54adaee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Création d’un index composite sur les champs “CodePostal” et “Ville”
| | |
| --- | --- |
| Numéro de commande | 966 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
index 16b27c59308757..5987b75497874c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
index 61ff42c37d8d5e..f2e2401c734c41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ L'exemple suivant archive les enregistrements datant de plus de 30 jours. Cette
| | |
| --- | --- |
| Numéro de commande | 68 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
index cbffa2d80aa586..20954a5740a35a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
@@ -28,6 +28,6 @@ Si un enregistrement lié existe déjà, la commande **CREATE RELATED ONE** a al
| | |
| --- | --- |
| Numéro de commande | 65 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
index 9d2588e029d12a..9666d3615d5364 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
@@ -52,7 +52,7 @@ Si un numéro d'enregistrement est invalide (enregistrement non créé), l’err
| | |
| --- | --- |
| Numéro de commande | 640 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
index cfecc74907514c..9e92004496b727 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ Dans un tableau d'entier longs, si un numéro d'enregistrement est invalide (enr
| | |
| --- | --- |
| Numéro de commande | 641 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
index aaba30d60c69cd..54036244983106 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ L'exemple suivant crée un ensemble après qu'une recherche ait été effectuée
| | |
| --- | --- |
| Numéro de commande | 116 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
index 27c267c7696b54..cab4ae6b0fbb33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
@@ -60,6 +60,6 @@ Le paramètre *profondeur* est ignoré et doit être omis. La commande utilise t
| | |
| --- | --- |
| Numéro de commande | 679 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
index c259c040131506..597690f4c3b612 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
@@ -79,6 +79,6 @@ Avec ce paramétrage, aucune boîte de dialogue d'identification n'est affichée
| | |
| --- | --- |
| Numéro de commande | 1355 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
index 914d279497e406..36df1b7533a16a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ La méthode projet suivante vous permet de traiter cette question :
| | |
| --- | --- |
| Numéro de commande | 33 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
index 11c774d02e3c52..ca2607cc143c10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ La ligne de code suivante inscrit le nom de la table courante par défaut dans l
| | |
| --- | --- |
| Numéro de commande | 363 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
index 615d995fda5c27..c3bf1dd03e082e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Vous souhaitez obtenir le formulaire courant si c’est un formulaire projet :
| | |
| --- | --- |
| Numéro de commande | 1298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
index 002efac3080757..ef9b9e19de9c30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
@@ -65,6 +65,6 @@ Dans votre application, vous utilisez la convention suivante : au moment de l'af
| | |
| --- | --- |
| Numéro de commande | 627 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
index 88c8de0e80f619..3512d449e6aa7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La fenêtre du formulaire courant peut avoir été générée automatiquement pa
| | |
| --- | --- |
| Numéro de commande | 827 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
index a4f7be8a2fea42..ed7670eee422d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Même si vous n'utilisez pas la version client/serveur de 4D, votre application
| | |
| --- | --- |
| Numéro de commande | 483 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
index 8c36ae9f4a60f1..a49f817b3bfc8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Cette commande ne doit pas être appelée depuis une formule 4D.
| | |
| --- | --- |
| Numéro de commande | 684 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
index 8badc5e15ed9bd..97c3de87e6ccb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1201 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
index 769f628c132d7b..b6a78c43da2d38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Vous voulez appeler un process worker et lui passer comme paramètre le nom du p
| | |
| --- | --- |
| Numéro de commande | 1392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
index 9d45cdb8e72a92..3b6c51df228a12 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Référez-vous aux exemples de [DELAY PROCESS](delay-process.md) et [Process inf
| | |
| --- | --- |
| Numéro de commande | 322 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
index 97a88388162b82..e79db5b4020770 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [Current machine](current-machine.md).
| | |
| --- | --- |
| Numéro de commande | 484 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
index 65e40784de5b2d..c391594d9d00bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ L'exemple suivant extrait les heures, minutes et secondes de l'heure courante :
| | |
| --- | --- |
| Numéro de commande | 178 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
index 6a2d7c183860b8..0cd52458b4ad7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [User in group](user-in-group.md).
| | |
| --- | --- |
| Numéro de commande | 182 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
index 42763fdcef575f..1b60de7b44dfc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ La méthode suivante vide la sélection courante de la table *\[Clients\]* :
| | |
| --- | --- |
| Numéro de commande | 334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
index 18b603ef6d1f5e..6dddd3603c94c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Vous souhaitez connaitre le statut de chiffrement d'un fichier de données corre
| | |
| --- | --- |
| Numéro de commande | 1609 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
index f9775d2b54919f..d30c9738c58140 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Si, par exemple, vous travaillez avec la base MesCDs qui se trouve dans le dossi
| | |
| --- | --- |
| Numéro de commande | 490 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
index 4c52ea04e3f935..006de60f0335cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
@@ -333,6 +333,6 @@ Vous souhaitez obtenir les mesures d'octets lus dans le cache au cours des deux
| | |
| --- | --- |
| Numéro de commande | 1314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
index bd20618fb56d62..944f5c2739e869 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
@@ -100,6 +100,6 @@ Vous souhaitez lire une date depuis un attribut d'objet, quelle que soit l'optio
| | |
| --- | --- |
| Numéro de commande | 102 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
index 5e94d1f189a4e7..e72221c271d1a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ L'exemple suivant est une fonction qui retourne le jour d'aujourd'hui sous forme
| | |
| --- | --- |
| Numéro de commande | 114 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
index 2fcefed57bcda5..1e15e72159dada 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 23 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
index 266ccb2c6a0c7c..4348f457429cf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Deactivated** soit généré, vérifi
| | |
| --- | --- |
| Numéro de commande | 347 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
index b613b04df4b264..e87e75044184ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
@@ -36,6 +36,6 @@ L'exemple suivant utilise une valeur monétaire exprimée sous forme numérique
| | |
| --- | --- |
| Numéro de commande | 9 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
index 4b71230e5574c2..023ba4eab53d76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
@@ -41,6 +41,6 @@ Reportez-vous aux exemples de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 690 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
index 5275312b53f791..d27912e39831c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
@@ -64,6 +64,6 @@ Les paramètres *passPhrase* et le *salt* utilisés pour le déchiffrement sont
| | |
| --- | --- |
| Numéro de commande | 1774 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
index 65de92bcf7bb5e..9e7007c2978926 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
@@ -83,6 +83,6 @@ Voici le résultat lorsqu'une table par défaut est définie :
| | |
| --- | --- |
| Numéro de commande | 46 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
index 539e2862d395b3..75ddb70c1fe252 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 323 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
index c264727a3649ce..1d4daa5086b3a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
@@ -53,7 +53,7 @@ La suppression d'un document met la variable système OK à 1\. Si **DELETE DOCU
| | |
| --- | --- |
| Numéro de commande | 159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
index adc143df4615f9..80aa8bbaa9090e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode installée par
| | |
| --- | --- |
| Numéro de commande | 693 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
index fe2e8de7327560..86f12f8f6b6bc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ L'exemple suivant supprime le dernier élément d'un tableau, s'il existe :
| | |
| --- | --- |
| Numéro de commande | 228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
index 31fe0d9adb1dbf..196bf90f78f73d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 560 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
index 1ac23bda142378..293e517bbb4fb4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
@@ -47,6 +47,6 @@ L'exemple suivant supprime l'élément sélectionné de la liste *hList*. Si une
| | |
| --- | --- |
| Numéro de commande | 624 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
index 7cfdc5338092c8..ce5b5fd4a8ed6d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
@@ -51,6 +51,6 @@ Cet exemple illustre les deux syntaxes de la commande :
| | |
| --- | --- |
| Numéro de commande | 967 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
index 19f32460d06af9..ce1ee9ffc0a0e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **DELETE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 413 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
index 674594c4d72423..b3251bd528dac5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ L'exemple suivant permet de supprimer l'enregistrement d'un employé. La méthod
| | |
| --- | --- |
| Numéro de commande | 58 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
index 289fb8c8b7dcbc..11ce3a1903cb98 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
@@ -70,7 +70,7 @@ Lorsqu'un **DELETE SELECTION** rencontre un enregistrement verrouillé, celui-ci
| | |
| --- | --- |
| Numéro de commande | 66 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
index d0cb18a059eed9..9e996cc831f2e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
@@ -49,6 +49,6 @@ L'exemple suivant illustre l'utilisation de **Delete string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
index 227e3966bc571a..ceac98dd7e6fc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **DELETE USER** ou si u
| | |
| --- | --- |
| Numéro de commande | 615 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
index 5e898e1ce5c2a1..a7fa3058b9d825 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Numéro de commande | 1044 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
index 8c45b00f8d9c51..e7ab1cde6a8564 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
@@ -61,6 +61,6 @@ Un bouton associé à une méthode objet est placé en bas de la liste. La méth
| | |
| --- | --- |
| Numéro de commande | 122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
index fa48c5b1cd63f4..3956e23c3b56fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **DISABLE MENU ITEM** s'applique à la
| | |
| --- | --- |
| Numéro de commande | 150 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
index 5fea37fdb8f54e..6d28df1c5d9735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Les fichiers de clés (fichiers d'extension ".4DKeyChain") doivent être stocké
| | |
| --- | --- |
| Numéro de commande | 1639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
index 8ad4bae75caa5b..a77a04632aa658 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Sous Windows, la fenêtre du message reste affichée tant qu'aucune activité n'
| | |
| --- | --- |
| Numéro de commande | 910 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
index c72733373efb24..0ea6977fa69cde 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
@@ -44,6 +44,6 @@ L'exemple suivant affiche une série d'enregistrements sous forme de slide show
| | |
| --- | --- |
| Numéro de commande | 105 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
index 57f3d4a194ebf5..6930f2032289fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
@@ -98,7 +98,7 @@ Vous pouvez aussi utiliser d'autres commandes telles que [PRINT SELECTION](print
| | |
| --- | --- |
| Numéro de commande | 59 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
index c83de8de70d376..154355999bb484 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Cet exemple permet d’appliquer une couleur alternée à un formulaire liste af
| | |
| --- | --- |
| Numéro de commande | 897 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
index 46bf8a6a0e9170..e7247b79a8840d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
@@ -75,6 +75,6 @@ Le tableau *aTPaths* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
index e3af90c11f1e1c..75dc3d007782fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
@@ -101,6 +101,6 @@ Le tableau *aLChildNum* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
index f3a65ed11e8cbe..c7973fecf5ad2a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
@@ -86,6 +86,6 @@ Pour calculer des statistiques, vous voulez trier le nombre de valeurs distincte
| | |
| --- | --- |
| Numéro de commande | 339 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
index a731f34d2bb7fa..36a82ad6344ece 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ Liste de tous les documents en mode récursif POSIX (relatif) :
| | |
| --- | --- |
| Numéro de commande | 474 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
index c5b15bc3ac8037..f82fcc428a5fc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
index a950413ef1d6a8..8d4bf2d41a099b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Si vous exécutez ce code :
| | |
| --- | --- |
| Numéro de commande | 1236 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
index fe25a3271196bd..5da76f2ba15700 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
@@ -151,6 +151,6 @@ Si le contenu de *valeurEnfant* est invalide, une erreur est retournée.
| | |
| --- | --- |
| Numéro de commande | 1080 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
index 907889822ff242..e3b0633fb25214 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Voir l’exemple de la commande [DOM Insert XML element](dom-insert-xml-element.
| | |
| --- | --- |
| Numéro de commande | 1082 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
index 25f8a09d6eff57..eb5ef180ef2826 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 722 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
index 18cee9814b3916..77251b247b7eb7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 727 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
index 53c391c6324675..1e3c0c7af884c1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 726 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
index cbb7908d560773..66f0a809e15708 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Pour cela, il suffit d'écrire :
| | |
| --- | --- |
| Numéro de commande | 1097 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
index 22ba096c5d5f99..efc92047bf11fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
@@ -157,7 +157,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 865 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
index 7daa0a35ad1f25..1f0735938d5559 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
@@ -103,7 +103,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 861 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
index b012ac2039f92d..ed7987bd8ebbb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
@@ -67,7 +67,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 862 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
index d8c701c3595602..aa98ad6bf22c80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 863 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
index ea9a0b9d4b083f..f5f5f43feeeeab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ La commande retourne en résultat la référence XML de l’élément trouvé.
| | |
| --- | --- |
| Numéro de commande | 1010 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
index 8c8f1083a572f9..933d6ecb10cf34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
@@ -122,7 +122,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 864 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
index 46e5d9edd08eb8..539b3f1388cb86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 723 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
index 8aac12202e8e70..d9ef7ce50150ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 925 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
index 4f87db782b2006..3434245c78fc5b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -67,7 +67,7 @@ Si la commande a été correctement exécutée et si l’élément analysé n’
| | |
| --- | --- |
| Numéro de commande | 724 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
index ac0f44c96e7e61..fc586d00c472e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
@@ -40,7 +40,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 923 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
index 0e141f2cf57f4b..c5d493bccad775 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée et si l’élément référencé
| | |
| --- | --- |
| Numéro de commande | 924 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
index a517534eae92ec..8cc917b30b6792 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1053 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
index 36532cdd394fe7..0b892a53876f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 729 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
index ac58cfb820b7af..d92704ac5b3e4c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 728 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
index 7101b4091f05bb..acec534452d0b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ Après l’exécution de ces instructions :
| | |
| --- | --- |
| Numéro de commande | 1081 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
index e4cb3ba66043b9..e5563564193952 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ Dans cet exemple nous cherchons à retrouver la déclaration de DTD du document
| | |
| --- | --- |
| Numéro de commande | 1088 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
index a35de86e71ac7d..30b23da9cfac9f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
index b20df8c88c7d70..5ad2b1a44d7e23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
index d7619b9e3801f3..72e446fd6774fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 725 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
index 2de51fe7e5692f..7b7557a50ecb62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ Passez dans *infoXML* un code indiquant le type d’information à récupérer.
| | |
| --- | --- |
| Numéro de commande | 721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
index 47d7d131785673..9f82b5809fa093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
@@ -80,6 +80,6 @@ Pour cela, il suffit d’exécuter le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1083 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
index 253891753b2910..8459a8d5ae3734 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
@@ -99,7 +99,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 719 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
index a73fcee004e9f4..189e5427670077 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
@@ -89,7 +89,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 720 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
index af088c5cd9bca7..e02e04e46ae7fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ Le code suivant permet de supprimer le premier attribut "N=1" :
| | |
| --- | --- |
| Numéro de commande | 1084 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
index e692974c001833..8412adcd5846d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
@@ -32,7 +32,7 @@ Une erreur est générée lorsque la référence de l’élément n’est pas va
| | |
| --- | --- |
| Numéro de commande | 869 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
index 199a00722e4a44..e7f4cb97c49fe7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
@@ -72,7 +72,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 866 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
index 1fb54af71f93f8..9977ecc9ee90de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
@@ -44,6 +44,6 @@ Cet exemple définit l’encodage et l’option standalone de l’élément *ref
| | |
| --- | --- |
| Numéro de commande | 859 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
index 34602d8ff16db4..2c7634cb8c60fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 867 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
index a64d1ddb7c3a21..f3b64f4c12a60e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 868 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
index 5d5417e83c3433..71cbacad9137f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Vous pouvez la déplacer en cliquant sur les bordures.
| | |
| --- | --- |
| Numéro de commande | 452 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
index 115e95f47559a1..859b9cdebdc6f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
@@ -97,6 +97,6 @@ La méthode objet de la list box de gauche (destination) contient le code suivan
| | |
| --- | --- |
| Numéro de commande | 608 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
index 1c48ddd739a18f..210aed1a17b748 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
@@ -47,6 +47,6 @@ Vous souhaitez supprimer un utilisateur distant spécifique :
| | |
| --- | --- |
| Numéro de commande | 1633 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
index af912ec4ecaf9f..e3948649cd009a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
index 58c88a92187dc8..219b9224a7921e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
@@ -96,6 +96,6 @@ paramRef:=Dynamic pop up menu($refMainContextMenu)
| | |
| --- | --- |
| Numéro de commande | 1006 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
index c8b611d414f11f..ecec1d1d7467d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ L'exemple suivant affiche la fenêtre de gestion des utilisateur et des groupes
| | |
| --- | --- |
| Numéro de commande | 281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
index a317d522237d0e..b477d61879014a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
@@ -60,7 +60,7 @@ Si l’utilisateur valide la boîte de dialogue, la variable système OK prend l
| | |
| --- | --- |
| Numéro de commande | 806 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
index a82c431e0d5de3..ac6860abc8f622 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
@@ -78,6 +78,6 @@ Soient deux colonnes d’une list box dont les noms de variables associées sont
| | |
| --- | --- |
| Numéro de commande | 870 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
index 5978b8ecea5a30..1105f036789372 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **ENABLE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 149 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
index 2766f3b31a17f0..e444de76e8531a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
@@ -195,6 +195,6 @@ Dans le cas contraire, pour des raisons de sécurité, le mode synchrone est uti
| | |
| --- | --- |
| Numéro de commande | 689 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
index 21efbf6d59004a..40e7bef56f9bec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ Cryptez un fichier texte situé dans le dossier RESSOURCES de la base de donnée
| | |
| --- | --- |
| Numéro de commande | 1773 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
index fe30b8a2277273..2b93995c0614c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
@@ -142,6 +142,6 @@ $folder:=Encrypt data file(Structure file;"myData.4DD")
| | |
| --- | --- |
| Numéro de commande | 1610 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
index edd9f3b6174d68..d71ccf5c161ae0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ La méthode formulaire de l'exemple suivant est utilisée lors de l'impression d
| | |
| --- | --- |
| Numéro de commande | 36 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
index 6950f429ef92fa..ee856725193c40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Une séquence d'instructions SQL doit être encadrée par les mot-clés [Begin S
| | |
| --- | --- |
| Numéro de commande | 949 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
index 5e9b4dbc25d998..1baaf932582519 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Le code du bouton **Compare** est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1196 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
index ffafbd5b0a87a5..c8f19d2ae3d4fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ Ne confondez pas **ERASE WINDOW**, qui efface le contenu d'une fenêtre, et [GOT
| | |
| --- | --- |
| Numéro de commande | 160 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
index 45366b59790b3b..4ef920857eb83d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
@@ -121,6 +121,6 @@ Voici différents types de conversion pouvant être obtenus à l’aide de cette
| | |
| --- | --- |
| Numéro de commande | 676 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
index 640f1470828bfa..1865d362e6a325 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
@@ -68,6 +68,6 @@ Vous voulez exécuter une formule incluant des appels à des commandes et des ta
| | |
| --- | --- |
| Numéro de commande | 63 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
index 379af07fb34e1c..61feb7e72aeac3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1085 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
index dc445f43b9f49e..5fb50c3638a2a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1007 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
index 85df3888da893b..965fee9d9a4ee9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
@@ -66,7 +66,7 @@ La variable système OK prend la valeur 1 si 4D Server a correctement reçu la r
| | |
| --- | --- |
| Numéro de commande | 651 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
index a288c1633d5e2c..ba9509e4a7abd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
@@ -191,6 +191,6 @@ Reportez-vous à la section *Services basés sur les procédures stockées (exem
| | |
| --- | --- |
| Numéro de commande | 373 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
index b424273f6c399b..fe836c7a183cc8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
@@ -37,6 +37,6 @@ L'exemple suivant assigne l'exponentielle de 1 à *vrE* (le logarithme de *vrE*
| | |
| --- | --- |
| Numéro de commande | 21 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
index 8d9e6f21ed0674..b19dc38a95bedf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
@@ -71,7 +71,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement décompressé,
| | |
| --- | --- |
| Numéro de commande | 535 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
index 7da12ff0f049c8..09cc2056ff635a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (d'enre
| | |
| --- | --- |
| Numéro de commande | 666 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
index 6f5c1053d8c20e..c3ccc97d18288b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 84 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
index 7bf913003bb49b..1a878f62d018cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
@@ -120,6 +120,6 @@ Vous souhaitez exporter uniquement les méthodes projet et les méthodes base, a
| | |
| --- | --- |
| Numéro de commande | 1565 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
index 949ce03b822419..819aa3269bae69 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
@@ -62,6 +62,6 @@ Vous voulez exporter la structure de la base courante au format html :
| | |
| --- | --- |
| Numéro de commande | 1311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
index 394929b1ef3251..b9f28b36a94ae5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 85 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
index 4535347a31c366..87e72134c0aabd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 167 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
index bab46c01487b88..d2319000e6b2f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Faux :
| | |
| --- | --- |
| Numéro de commande | 215 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
index 1272508877d466..b9b42a304a7501 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
@@ -54,6 +54,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte. Nous passons à cette
| | |
| --- | --- |
| Numéro de commande | 257 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
index ac5f0a3d69f808..c3a79be7e71161 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
@@ -62,6 +62,6 @@ Dans l'exemple, la variable *champNum* est égale au numéro de champ de \[Table
| | |
| --- | --- |
| Numéro de commande | 253 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
index 35999a55736c66..3d6ca9239ed234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Référez-vous à l'exemple d'[ON EVENT CALL](on-event-call.md).
| | |
| --- | --- |
| Numéro de commande | 321 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
index abbbd24de00e92..ee60e65bd2129e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
@@ -246,6 +246,6 @@ La méthode obtenirTexteSelectionne est la suivante :
| | |
| --- | --- |
| Numéro de commande | 389 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
index 2271330d135789..c37e646943a78d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
@@ -113,6 +113,6 @@ Vous voulez trouver une référence d'objet :
| | |
| --- | --- |
| Numéro de commande | 230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
index 06683930be7511..095e31743c8e9d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ Remarquez le >= qui permet de couvrir tous les cas. En effet, la fonction retour
| | |
| --- | --- |
| Numéro de commande | 653 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
index 414d2d2585d386..c51239a7d7ae68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Soit la liste hiérarchique suivante :
| | |
| --- | --- |
| Numéro de commande | 952 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
index 9928f8c649f948..f84082a3030d0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
@@ -77,6 +77,6 @@ Vous souhaitez trouver le nombre d'occurrences de chaînes débutant par "test"
| | |
| --- | --- |
| Numéro de commande | 1333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
index 8139bf20c036a7..611a471475c245 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ Le paramètre *partieFenêtre* retourne 3 si une fenêtre est touchée, et 0 sin
| | |
| --- | --- |
| Numéro de commande | 449 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
index 4995f30c72ba3e..d6b28ae7164f15 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ L'exemple suivant charge le premier enregistrement de la table \[Clients\] :
| | |
| --- | --- |
| Numéro de commande | 50 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
index ed741567b813e8..28d99430dc3164 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ En temps normal, vous n'avez pas à appeler cette commande, car 4D sauvegarde r
| | |
| --- | --- |
| Numéro de commande | 297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
index 5152ec32beec86..54fd5e649037b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ L'exemple suivant est une méthode objet pour un bouton. Cette méthode passe le
| | |
| --- | --- |
| Numéro de commande | 278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
index d2fbbeb80a46d8..a2a4bd879f19be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ S'il n'y pas de dossier à cet endroit, la commande retourne un tableau vide. Si
| | |
| --- | --- |
| Numéro de commande | 473 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
index f0d97b3c2bd55a..a6c8c55357e1b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
@@ -55,6 +55,6 @@ Vous souhaitez vérifier que la police utilisée dans une zone de texte est int
| | |
| --- | --- |
| Numéro de commande | 1700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
index 969146904d6be2..02db1ac11ed46d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
@@ -78,6 +78,6 @@ Vous souhaitez obtenir la liste des polices récentes :
| | |
| --- | --- |
| Numéro de commande | 460 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
index 3ce2d6facad1c7..e759097e1b0553 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Vous voulez sélectionner les styles de la famille de police "Verdana" (si elle
| | |
| --- | --- |
| Numéro de commande | 1362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
index 5129600e662aa7..7cdcf113deb26b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
@@ -66,6 +66,6 @@ Si vous exécutez le code :
| | |
| --- | --- |
| Numéro de commande | 1570 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
index b8b538a6549ad0..ed570be1fa62fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
index 0c12ed9e9896fe..a49fc1a06a12b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Vous souhaitez charger une image en fonction du schéma courant du formulaire :
| | |
| --- | --- |
| Numéro de commande | 1761 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
index 1aa1414c31e9bf..18f67f250694ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ Alors que vous êtes en train d'utiliser un formulaire, si vous choisissez une c
| | |
| --- | --- |
| Numéro de commande | 276 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
index 24e7f9ddaa0482..ba01d6de4c3247 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
@@ -56,6 +56,6 @@ Vous voulez exclure certains objets de l'ordre de saisie :
| | |
| --- | --- |
| Numéro de commande | 1469 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
index 59c47b12568ba5..c62ad02ab5aca2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1077 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
index 0754015f9f7422..beb1252a9024de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
@@ -69,6 +69,6 @@ Exemples d’utilisations type :
| | |
| --- | --- |
| Numéro de commande | 1167 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
index 0e60ccf82c75a4..f26c3c66386162 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
@@ -125,6 +125,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 898 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
index f66a4252f1ae7c..e941482fc99860 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ Le paramètre *titre* retourne le nom de la fenêtre du formulaire, tel qu’il
| | |
| --- | --- |
| Numéro de commande | 674 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
index d491d7fd2ffed9..4c61d9bdd2f392 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1078 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
index f5c4954ffd4e9b..15bf5a21a6a260 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
@@ -53,6 +53,6 @@ L'exemple suivant est la méthode objet d'un bouton affichant la page 3 du formu
| | |
| --- | --- |
| Numéro de commande | 247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
index ceeb9e9f85950b..a37d7d0ff3795d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
index db5719936f13c8..07b1c0ae6570b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
index 7e8be749e1858b..7f51fccc7026dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
index 4d96ee1f08d09c..c392c0bfa51aa1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Par défaut, la commande capture la page 1 du formulaire. Si vous souhaitez capt
| | |
| --- | --- |
| Numéro de commande | 940 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
index 2849949943587e..1a3c40fce3e20a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
@@ -58,6 +58,6 @@ Vous souhaitez fixer l'ordre de saisie des objets du formulaire en vous basant s
| | |
| --- | --- |
| Numéro de commande | 1468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
index 4cb11a633766ee..42c0c63c1bad40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 892 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
index 72bddd33fa5e48..fb39142d394730 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
@@ -108,6 +108,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 55 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
index d2578b637511ef..2453d0563e4ed9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
@@ -91,6 +91,6 @@ L'exemple suivant utilise un formulaire décrit dans un fichier .json :
| | |
| --- | --- |
| Numéro de commande | 54 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
index 8fc94789f55e0d..e8ca505cff4aa9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
@@ -130,6 +130,6 @@ La méthode objet associée à ce bouton est la suivante :
| | |
| --- | --- |
| Numéro de commande | 891 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
index c6c883aefd273c..bf76c012e19bc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 893 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
index 92b40b1cd2852e..bfb9aa191436e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ L’appel de cette commande est nécessaire lors de l’utilisation de la comman
| | |
| --- | --- |
| Numéro de commande | 1299 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
index 4393fd022c3d9f..5f6b5634dbc6cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Référez-vous à l'exemple de [BRING TO FRONT](bring-to-front.md).
| | |
| --- | --- |
| Numéro de commande | 327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
index 8e29ca4c2dd125..98c32b18024b37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 447 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
index 8903348da0e2ea..e8a2b69c3c43e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
@@ -88,6 +88,6 @@ Un formulaire “Demande de certificat” comporte les six champs nécessaires
| | |
| --- | --- |
| Numéro de commande | 691 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
index c6bf2ff6534d21..2c6e9940ba3cc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
@@ -88,6 +88,6 @@ Ces exemples illustrent comment récupérer la clé digest d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
index 1f679529637855..b428a3567e6592 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 688 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
index f0c5bf5865287e..62b823cef47144 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Cet exemple génère un hash de mot de passe à l'aide de bcrypt avec un coût d
| | |
| --- | --- |
| Numéro de commande | 1533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
index 18707d564fd389..b5df6080244441 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Vous voulez obtenir le chemin d'accès du fichier de sauvegarde le plus récent
| | |
| --- | --- |
| Numéro de commande | 1418 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
index 40d5c663a4f4d0..5cf38ce18106a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
@@ -213,7 +213,7 @@ Si le paramètre *dossier* est invalide ou si le chemin d'accès retourné est v
| | |
| --- | --- |
| Numéro de commande | 485 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
index 237067df5b2530..53d382cbb515c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1428 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
index dbd931dfa9d987..b9f98b180f0d1c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1427 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
index 3eae6f2edf9cb2..853e4b63122f53 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Les types de données scalaires incluent les types date/heure, numériques et al
| | |
| --- | --- |
| Numéro de commande | 1426 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
index 0472c5a3bb13f0..29c10f34b18f0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Cet exemple permet d’autoriser ponctuellement un ensemble de méthodes spécif
| | |
| --- | --- |
| Numéro de commande | 908 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
index 2a5e60b352080a..f71696e069883f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Pour plus de détails sur les noms des schémas de couleur, veuillez vous report
| | |
| --- | --- |
| Numéro de commande | 1763 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
index 1b75828279d157..85cdebcb41b58b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Par défaut, les assertions sont actives mais elles peuvent avoir été désacti
| | |
| --- | --- |
| Numéro de commande | 1130 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
index 99234b71886b86..b8a698d2ca5eb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
@@ -36,6 +36,6 @@ Reportez-vous à l'exemple de la commande [GET FIELD RELATION](get-field-relatio
| | |
| --- | --- |
| Numéro de commande | 899 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
index c4c05dbcdf5593..d4536fc92254f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Voir l'exemple de la commande [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Numéro de commande | 1432 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
index bff1642a2fd494..e7e95dc98c85d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si aucune imprimante n'est installée, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 788 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
index 586b032a58929d..c9d64c760e049b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
@@ -56,6 +56,6 @@ La langue courante de la base définit le dossier .lproj dans lequel le programm
| | |
| --- | --- |
| Numéro de commande | 1009 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
index 408256a6f92ce3..0e7182c4a061e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
@@ -989,6 +989,6 @@ Dans la [On Startup database method](on-startup-database-method.md), vous pouvez
| | |
| --- | --- |
| Numéro de commande | 643 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
index 7d48ef3a6e8c48..15195c017c492d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si aucun utilisateur par défaut n’est défini, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 826 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
index 299758d2e14b50..256c1119b53e5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
@@ -32,7 +32,7 @@ Le paramètre optionnel *taille* vous permet d’indiquer les dimensions de l’
| | |
| --- | --- |
| Numéro de commande | 700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
index 2fbe3a891b4ccb..9dcfa15ae7eb24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 481 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
index c30916308c4756..83b891b17fee43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
@@ -208,7 +208,7 @@ Une fois que cela est implémenté dans votre base, il suffit d'écrire la méth
| | |
| --- | --- |
| Numéro de commande | 477 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
index a5fe0bfcc74b05..7231380d2a8602 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Sous Mac OS, si vous ne passez pas le paramètre optionnel *\**, la taille de la
| | |
| --- | --- |
| Numéro de commande | 479 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
index 47ad0663aa0b28..dc2b006940b62c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ Voici un exemple de traitement à la volée des caractères saisis dans un champ
| | |
| --- | --- |
| Numéro de commande | 655 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
index c1ace322e3b603..e0e6bbc8f75fa8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Cette commande vous permet notamment de recopier le fichier externe.
| | |
| --- | --- |
| Numéro de commande | 1133 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
index da70f7453fab11..67e109ca930850 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ Si aucune énumération n’est associée au champ, ou si son type n’admet pas
| | |
| --- | --- |
| Numéro de commande | 685 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
index 8d8e9306c87c3a..154c612b1aaa63 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
@@ -80,6 +80,6 @@ L'exemple suivant récupère dans les variables *vType*, *vLong*, *vIndex*, *vUn
| | |
| --- | --- |
| Numéro de commande | 258 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
index 623deb5ebe8155..6f8e3dc2205e20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
@@ -90,6 +90,6 @@ Le code ci-dessous illustre les différentes possibilités offertes par les comm
| | |
| --- | --- |
| Numéro de commande | 920 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
index f7d32d58d2ab1a..95670f021038d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
@@ -33,6 +33,6 @@ Dans les deux cas, la commande ne retourne pas les champs déclarés invisibles.
| | |
| --- | --- |
| Numéro de commande | 804 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
index 8d69d1e4ea8fef..ab6ddc08b22aa2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ L’exemple suivant permet de récupérer dans un tableau tous les chemins d’a
| | |
| --- | --- |
| Numéro de commande | 976 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
index 98a74eec9369f9..01701add364892 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Vous souhaitez vérifier si l'utilisateur courant appartient au groupe "plugins"
| | |
| --- | --- |
| Numéro de commande | 1738 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
index b572da2b48801c..6720d79dd09c86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 610 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
index 96a8d4c8166d88..618e856387c0c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 613 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
index b777c2ff41e0db..0feba47dbded34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ Modification du style du texte sélectionné :
| | |
| --- | --- |
| Numéro de commande | 209 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
index db6b9661494894..aac6393c65ecab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
@@ -48,7 +48,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 902 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
index 09f9ad917ee0e6..e66b7bbf1065f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
@@ -50,7 +50,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 510 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
index abdb45a34deae5..e747295b571804 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
@@ -36,6 +36,6 @@ Vous pouvez enfin passer *\** dans *réfElément* : dans ce cas, la commande s
| | |
| --- | --- |
| Numéro de commande | 954 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
index b2c20a27d3f1cf..6f1213863bd7c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
@@ -43,6 +43,6 @@ Si aucune icône n’est associée à l’élément, la variable icône est reto
| | |
| --- | --- |
| Numéro de commande | 951 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
index 91f79de933c0ae..1bba86b59cf545 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
@@ -80,6 +80,6 @@ Si on souhaite récupérer également les valeurs des paramètres, on peut écri
| | |
| --- | --- |
| Numéro de commande | 1195 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
index d6fac1c1e8ea15..9867f3b5a343ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
@@ -40,6 +40,6 @@ Vous pouvez passer dans *sélecteur* la constante Additional text ou Associated
| | |
| --- | --- |
| Numéro de commande | 985 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
index 7a6475eef9731d..381a6e5f07fcbf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ Pour plus d'informations sur ces propriétés, reportez-vous à la description d
| | |
| --- | --- |
| Numéro de commande | 631 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
index eeb956fa4697d3..dce776270c4b96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
@@ -77,6 +77,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 378 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
index 1c2e04b5e08d1c..ce4a636b802d07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Pour une description complète de ces propriétés d'apparence et de comportemen
| | |
| --- | --- |
| Numéro de commande | 632 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
index 63a95febf3822a..70afc1b4545c42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de [SET MACRO PARAMETER](set-macro-parameter.md).
| | |
| --- | --- |
| Numéro de commande | 997 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
index aac1cc56143e1c..30e91fc17fda9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [GET MENU ITEMS](get-menu-items.md).
| | |
| --- | --- |
| Numéro de commande | 979 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
index 0f96efaf6814c1..138b02616c2593 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Si aucune icône n’est associée à la ligne, la commande retourne une valeur
| | |
| --- | --- |
| Numéro de commande | 983 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
index e047bab4dd8837..1fedc73f8d89f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
@@ -54,7 +54,7 @@ Pour obtenir le raccourci clavier associé à une ligne de menu, il est utile de
| | |
| --- | --- |
| Numéro de commande | 424 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
index 4dd4a1c3df7564..b4f34a5fe16265 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ L'exemple suivant inverse l'état marqué d'une ligne de menu :
| | |
| --- | --- |
| Numéro de commande | 428 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
index f62e1a71d8d606..67b2cb86e57dc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
@@ -34,6 +34,6 @@ La commande retourne le nom de la méthode 4D sous la forme d’une chaîne de c
| | |
| --- | --- |
| Numéro de commande | 981 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
index c171de7640db7f..c336718c352eb4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
@@ -52,6 +52,6 @@ Reportez-vous à l'exemple de la commande [Get menu item key](get-menu-item-key.
| | |
| --- | --- |
| Numéro de commande | 980 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
index 30f676513b634f..8d2a922fd0d831 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1003 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
index d89b118978f3cc..a757996d8811f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
@@ -37,6 +37,6 @@ Passez dans le paramètre *propriété* la propriété dont vous souhaitez obten
| | |
| --- | --- |
| Numéro de commande | 972 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
index ee454fdc90081e..20e021fe725815 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Si, par exemple, vous voulez tester si une ligne de menu est affichée en gras,
| | |
| --- | --- |
| Numéro de commande | 426 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
index e826af4b094d7a..eabcf8121fea45 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Si vous ne passez pas le paramètre *process*, **Get menu item** est appliquée
| | |
| --- | --- |
| Numéro de commande | 422 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
index a931e88ae3b3e4..c8b0a9df5c251e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Vous souhaitez connaître le contenu de la barre de menus du process courant :
| | |
| --- | --- |
| Numéro de commande | 977 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
index 4628cbdb88a840..ef12b378086dc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Get menu title** s'applique à la bar
| | |
| --- | --- |
| Numéro de commande | 430 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
index 5919dc6699573f..ab762bac19de36 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ Une fois que vous avez identifié les tables manquantes de la base, vous pouvez
| | |
| --- | --- |
| Numéro de commande | 1125 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
index 2789c61dbcae3c..9fd6af125b2268 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
@@ -39,6 +39,6 @@ Pour plus d’informations sur les types de données pris en charge, reportez-vo
| | |
| --- | --- |
| Numéro de commande | 958 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
index 5c5585a2148647..4b46f7707a61d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Si les données sont extraites correctement, la variable OK prend la valeur 1\.
| | |
| --- | --- |
| Numéro de commande | 401 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
index 0bde7f2b2da6fd..495af80126aef7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Si l’image n’a pas de nom par défaut, la commande retourne une chaîne vide
| | |
| --- | --- |
| Numéro de commande | 1171 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
index 51964ab8e4ac6b..23ed6797dcbe5c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
@@ -52,6 +52,6 @@ Vous souhaitez connaître les formats de l'image stockée dans un champ Image de
| | |
| --- | --- |
| Numéro de commande | 1406 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
index 225b082ede5b1e..28ad1787e0a937 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
@@ -67,7 +67,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 565 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
index 604ea7e164e67c..059ed25e9cf10e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Si l'image est correctement extraite, OK prend la valeur 1\. Sinon, OK prend la
| | |
| --- | --- |
| Numéro de commande | 522 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
index c94e86b7d1dacb..6927a454e9beb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Si l’image ne contient pas de mots-clés ou de métadonnées IPTC/Keywords, la
| | |
| --- | --- |
| Numéro de commande | 1142 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
index 73bd17d4cfd4b7..7a2f98cd35a861 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
@@ -104,7 +104,7 @@ La variable système OK retourne 1 si la récupération des métadonnées s’es
| | |
| --- | --- |
| Numéro de commande | 1122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
index 8b28785ec91faf..e81fad5b3a695d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 502 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
index c18ec13149c8e2..ef0faf6387049b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Passez dans le paramètre *plugIn* le numéro du plug-in duquel vous souhaitez c
| | |
| --- | --- |
| Numéro de commande | 846 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
index f41cf82103e712..85961929e89dc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Utilisation de pointeurs vers des éléments de tableaux à deux dimensions :
| | |
| --- | --- |
| Numéro de commande | 304 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
index fb01769d833437..923d6ee45173b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
@@ -65,6 +65,6 @@ Reportez-vous à l’exemple de la commande [SET PRINT MARKER](set-print-marker.
| | |
| --- | --- |
| Numéro de commande | 708 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
index a6d9710780c56d..dd187ab0365b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
@@ -72,7 +72,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 734 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
index f3029fa8be96cd..ef19ade4b41a87 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ A noter que l’utilisateur peut modifier cette option avant de valider la boît
| | |
| --- | --- |
| Numéro de commande | 1197 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
index 53f433d74cd1c6..f1231093105fc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Pour connaître la taille totale de la page, vous pouvez :
| | |
| --- | --- |
| Numéro de commande | 703 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
index b9b0519874d51b..026cc734a46b42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
@@ -48,6 +48,6 @@ Il est possible de baser l’impression des formulaires effectuée à l’aide d
| | |
| --- | --- |
| Numéro de commande | 711 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
index 71f635149b3a79..699dfc0eba18d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
@@ -34,6 +34,6 @@ Les marges d’impression gauche et droite n’influent pas sur la valeur retour
| | |
| --- | --- |
| Numéro de commande | 702 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
index 93c7e47e357022..deb69370d5fac8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
@@ -122,6 +122,6 @@ Reportez-vous à l'exemple de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 371 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
index fc13146fa741d5..b57490c61beaf2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Nous souhaitons modifier temporairement la destination de recherche, et rétabli
| | |
| --- | --- |
| Numéro de commande | 1155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
index 671c4cb8a25df1..4b573db0babc78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Par défaut, si aucune limite n’a été définie, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 1156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
index e22ea4e4de42cc..074b6cecd1ddbb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
@@ -50,7 +50,7 @@ Si l’opération se déroule correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 650 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
index 1eb252f089cd78..0ab45eb5b38b75 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
@@ -48,6 +48,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 686 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
index fd1a04cfc6ede7..075aeed430f8d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Si la ressource n'existe pas, **Get resource name** retourne une chaîne vide.
| | |
| --- | --- |
| Numéro de commande | 513 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
index e5a97653305ba5..e7ecd086f28376 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ La variable OK prend la valeur 0 si la ressource n'existe pas, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 515 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
index 88e55928361598..b64376139ac639 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 508 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
index b24352bd7357ec..9a8e4987359c3d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si aucune ligne de menu n’a été sélectionnée, la commande retourne une cha
| | |
| --- | --- |
| Numéro de commande | 1005 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
index 3fba0cffb27edb..8daa5b61ca3786 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Cette méthode projet permet d'adresser le même port série (sans protocole), q
| | |
| --- | --- |
| Numéro de commande | 909 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
index ccb1cf7e72787b..58c5e11d72b315 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 506 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
index 0ee0bc5636ac65..ff0a69a35dc08f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Vous souhaitez connaître la configuration actuelle de la feuille de style "Auto
| | |
| --- | --- |
| Numéro de commande | 1256 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
index 8351679d4cbc8b..b46eb23ba980ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Ce code fonctionnera indifféremment avec un lien spécial ou standard.
| | |
| --- | --- |
| Numéro de commande | 1137 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
index 59f95c473c5e43..8d851254a7fa82 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ Passez dans le paramètre *format* le type de paramètre dont vous souhaitez con
| | |
| --- | --- |
| Numéro de commande | 994 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
index 8f703f569bc458..8eded099e70b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 687 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
index cab426824cf6f9..208209f47acd1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
@@ -32,6 +32,6 @@ Dans les deux cas, la commande ne retourne pas les tables déclarées invisibles
| | |
| --- | --- |
| Numéro de commande | 803 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
index 8c3a0d6ac37bca..512788666ef0ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si le texte est correctement extrait, la variable système OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 524 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
index 7e4640a4bcdb39..1f84414fc07f40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Pour compter les mots d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1141 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
index c188ccd9da2c79..e9c9489cb496a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
@@ -48,7 +48,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 504 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
index 2d685e95ba29f1..e913b832c3fc7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 609 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
index 8b589a059f011c..d9a04cbab46d64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 611 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
index 270e80490c7a68..e9562bbd984d62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 443 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
index 5feeef383b47c7..c2a4d377b5e0aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Reportez-vous à l'exemple de la commande [SET WINDOW TITLE](set-window-title.md
| | |
| --- | --- |
| Numéro de commande | 450 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
index 8662d1f45094e7..3abd5b6d98122c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Reportez-vous à l'exemple de la commande [REJECT](reject.md).
| | |
| --- | --- |
| Numéro de commande | 206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
index 0f2f789fbf1a50..885a8601942e74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ Référez-vous à l'exemple de la commande [Record number](record-number.md).
| | |
| --- | --- |
| Numéro de commande | 242 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
index 8d57774d14eadf..987811291928f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ La méthode objet de la zone de défilement *taNoms* suivante sélectionne le bo
| | |
| --- | --- |
| Numéro de commande | 245 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
index 4d6b36cb77b21b..47a14f6e60d6f6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ L'exemple ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 161 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
index 6233ed8dfdc1f9..82b6a24296dcb0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
@@ -47,6 +47,6 @@ Reportez-vous à l'exemple de la commande GRAPHE.
| | |
| --- | --- |
| Numéro de commande | 298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
index fcf52a5edf9ce6..420da2af343b7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
@@ -282,6 +282,6 @@ Dans cet exemple, on personnalise divers paramètres :
| | |
| --- | --- |
| Numéro de commande | 169 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
index e3802e23d90990..172af73f1b741d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ La méthode suivante passe un enregistrement en plein écran (sous Mac OS) jusqu
| | |
| --- | --- |
| Numéro de commande | 432 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
index 8753399d99532a..edcd7c062ab8ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
@@ -43,6 +43,6 @@ L'exemple suivant cachera toutes les fenêtres appartenant au process courant :
| | |
| --- | --- |
| Numéro de commande | 324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
index 4e9317bcd6f089..5a56a2f1dde77a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Pour cela, dans l'événement On Resize du formulaire de la fenêtre standard, i
| | |
| --- | --- |
| Numéro de commande | 434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
index 93fd3f98df1e60..0e07d7e4494305 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Cet exemple est la méthode d'un bouton placé dans un formulaire entrée. Ce bo
| | |
| --- | --- |
| Numéro de commande | 436 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
index aaaca6ed6ff38e..68b17ce4c935af 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Lorsque l’utilisateur clique sur le bouton, la boîte de dialogue standard de
| | |
| --- | --- |
| Numéro de commande | 656 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
index 6368bde9dc1fb6..36d9d6e3fbfb05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
@@ -68,6 +68,6 @@ Reportez-vous à l'exemple de la commande [FILTER KEYSTROKE](filter-keystroke.md
| | |
| --- | --- |
| Numéro de commande | 210 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
index 1b07a1a8627772..6ec1d2ebd3f780 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
@@ -62,6 +62,6 @@ Exemples de requêtes avec authentification :
| | |
| --- | --- |
| Numéro de commande | 1161 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
index 6027a2c1f056a2..fd0b12c29bea04 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
@@ -46,6 +46,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1307 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
index 1c579ec9fa2ac9..1d5e93eaf0363d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ Passez dans le paramètre *valeur* une variable qui recevra la valeur courante d
| | |
| --- | --- |
| Numéro de commande | 1159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
index 1868e05d81aa77..aa6a2317c2d6ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
@@ -110,7 +110,7 @@ Récupération d’une vidéo :
| | |
| --- | --- |
| Numéro de commande | 1157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
index c73b3807ca1d3a..f734dc6db3634e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
@@ -131,6 +131,6 @@ Demande d’ajout d’enregistrement en JSON dans une base distante :
| | |
| --- | --- |
| Numéro de commande | 1158 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
index 1215163309613a..5d757a727a5276 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1306 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
index 001f2e74f5e91a..791df4ea733847 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
@@ -50,6 +50,6 @@ L’ordre d’appel des options n’a pas d’importance. Si une même option es
| | |
| --- | --- |
| Numéro de commande | 1160 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
index a759a24719a009..7729fe09fb0c85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
@@ -58,6 +58,6 @@ La méthode METHODE EVENEMENT :
| | |
| --- | --- |
| Numéro de commande | 311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
index 89663ebf9b3e82..e6be653524af6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
@@ -51,7 +51,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (de sé
| | |
| --- | --- |
| Numéro de commande | 665 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
index 48da56ba220984..196b727036a577 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 86 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
index 464601871443fe..34ecde115694d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Vous souhaitez importer une définiton de structure stockée sur disque dans la
| | |
| --- | --- |
| Numéro de commande | 1310 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
index 14abed30fcdd19..a3ad1337aecb92 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 87 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
index e593c5531c4353..f6a7406bad0577 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 168 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
index 6f3ee1b05bb928..f6031aea000f9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In break** soit généré, assurez
| | |
| --- | --- |
| Numéro de commande | 113 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
index dfad4fde421994..f1870b203068f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **In footer** soit généré, vérifiez
| | |
| --- | --- |
| Numéro de commande | 191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
index c15d27738d47f7..d8c271d69cb61d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In header** soit généré, assure
| | |
| --- | --- |
| Numéro de commande | 112 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
index 1f8f1f47e22ff2..ad4217d23eb2a9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si vous effectuez l'opération depuis un trigger ou une sous-routine pouvant êt
| | |
| --- | --- |
| Numéro de commande | 397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
index 5c77735ae9b1c1..07d1287fc84fbd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ L'exemple suivant ajoute un élément à un tableau :
| | |
| --- | --- |
| Numéro de commande | 227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
index 4d8465c791acc7..3319b17ca27bcf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Vous passez dans le paramètre *décalage* la position (relative à l'origine du
| | |
| --- | --- |
| Numéro de commande | 559 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
index 28794e6a04ad0f..957b01ff64a89e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ L'exemple suivant insère un élément (associé à aucune sous-liste) juste dev
| | |
| --- | --- |
| Numéro de commande | 625 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
index e6ca020a94eed8..cab7e1c2598dbf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ L’exemple suivant crée un menu constitué de deux commandes auxquelles il aff
| | |
| --- | --- |
| Numéro de commande | 412 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
index 5ec863f869dd41..4f926efb7aa00f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ L'exemple suivant illustre l'utilisation de **Insert string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
index 7ad86579f11969..d316e876055148 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
@@ -36,6 +36,6 @@ L'exemple suivant illustre le fonctionnement de **Int** pour les nombres positif
| | |
| --- | --- |
| Numéro de commande | 8 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
index 2c4032fbf72f9b..8f3e639d0744f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
index 932538ab482504..13c58818ad083c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
@@ -105,7 +105,7 @@ Si l'intégration s'effectue correctement, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 1312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
index d03df6e04c1a43..7df13a1bd0c3b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ L'exemple suivant recherche les clients en contact avec deux représentants, Jea
| | |
| --- | --- |
| Numéro de commande | 121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
index 6b50873e725b83..471817fa77b1a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Vous souhaitez exécuter l'action standard **Aller a page** (page 3) dans le for
| | |
| --- | --- |
| Numéro de commande | 1439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
index 1962697ce814cf..4ec392973429d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
@@ -35,6 +35,6 @@ Reportez-vous aux exemples de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 621 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
index 0f35fdd13c76cd..111b8de1a3ae77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
index 019958a188ce2f..57bf37ae76896d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ Dans une de vos méthodes, vous avez placé du code pour déboguer la base lorsq
| | |
| --- | --- |
| Numéro de commande | 492 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
index 71e31515d91bac..d834beb1387d9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Cette méthode empêchera l’ouverture de la base si le fichier de données est
| | |
| --- | --- |
| Numéro de commande | 716 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
index 9c20991fa65a96..ca49ebf932372f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Pour permettre à l'utilisateur de sélectionner une ligne commençant par la le
| | |
| --- | --- |
| Numéro de commande | 1744 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
index 14c8662b81e6d4..7d0cfe25cbffcc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Cette commande permet de détecter d’éventuelles suppressions de champs, ce q
| | |
| --- | --- |
| Numéro de commande | 1000 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
index d762353ea5a6d9..2779acd7fafd74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ La valeur retournée par cette commande n'a de sens que si l'option "*Traduire l
| | |
| --- | --- |
| Numéro de commande | 964 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
index 8407c63d47a661..699d1080c3587a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Cet exemple permet de prendre en compte tous les types d’impressions :
| | |
| --- | --- |
| Numéro de commande | 1198 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
index eb8007687bd37b..0591596604c673 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
@@ -40,6 +40,6 @@ L'exemple suivant est la méthode objet d'un bouton testant si l'enregistrement
| | |
| --- | --- |
| Numéro de commande | 273 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
index 83840d8852c758..7de16f18bbbfa8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
@@ -52,6 +52,6 @@ Dans ce cas, la commande retourne Vrai si le plug-in correspondant dispose d’u
| | |
| --- | --- |
| Numéro de commande | 714 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
index ae4566dabbb8c6..eed83a0c77bea9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Vous voulez déterminer si le système d'exploitation courant est macOS :
| | |
| --- | --- |
| Numéro de commande | 1572 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
index e38a3a6ec9a211..30eb27ce50d5d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
@@ -44,6 +44,6 @@ Les deux instructions suivantes sont identiques, la seconde est conseillée pour
| | |
| --- | --- |
| Numéro de commande | 668 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
index 6506a7f51795a8..30166895d18bdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 315 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
index a2fef6f4142b3e..656ddb242f2b1b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Si vous ne passez pas le paramètre *\**, la commande teste le fichier en recher
| | |
| --- | --- |
| Numéro de commande | 1113 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
index fca9f29fe61b00..69e7d75899b1da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
@@ -47,6 +47,6 @@ Au lieu d’utiliser les actions automatiques “Enregistrement suivant” ou
| | |
| --- | --- |
| Numéro de commande | 669 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
index c9ac9b1fcaecf9..ff300f8b69d073 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Cette commande permet de détecter d’éventuelles suppressions de tables, ce q
| | |
| --- | --- |
| Numéro de commande | 999 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
index 8973a9ef6ecdf6..8adb5a58e0c465 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Is user deleted** ou
| | |
| --- | --- |
| Numéro de commande | 616 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
index 4858bd6f76e541..52e53a93d7defc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ Le code suivant peut être utilisé pour gérer le suivi de la souris dans un ob
| | |
| --- | --- |
| Numéro de commande | 1422 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
index 867f042a6cde23..562765db1fd77a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Vous souhaitez passer entre l'état maximisé et l'état précédent :
| | |
| --- | --- |
| Numéro de commande | 1830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
index 8102088f688e27..82d920847b6bf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
index 451a216b852f64..9830e741adf6ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Vous voulez savoir si le système d'exploitation courant est Windows :
| | |
| --- | --- |
| Numéro de commande | 1573 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
index c1a51982b67c0b..860213ca50792f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ Dans cet exemple, les données des champs des enregistrements d’une table sont
| | |
| --- | --- |
| Numéro de commande | 1219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
index 17607574080d82..54d774c91de053 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Numéro de commande | 1218 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
index 4763694a224fef..d13302dce9325d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
@@ -237,6 +237,6 @@ Si vous exécutez :
| | |
| --- | --- |
| Numéro de commande | 1478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
index 276c0750bca293..ebf53f8f0838c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversion d’une sélection 4D dans un tableau objet :
| | |
| --- | --- |
| Numéro de commande | 1228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
index e3b46e174991ef..908970707e5aa6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Numéro de commande | 1217 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
index 49c21725246b29..b25650eddeb1ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Utilisation de la commande **JSON TO SELECTION** pour ajouter des enregistrement
| | |
| --- | --- |
| Numéro de commande | 1235 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
index cc53aca078fa69..921bfb51ddfcb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Vous souhaitez valider un objet JSON avec un schéma et obtenir la liste des err
| | |
| --- | --- |
| Numéro de commande | 1456 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
index 48ba1fee0e3b8a..a9d728afbc9bda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
@@ -170,6 +170,6 @@ A l'aide des possibilités de communication interprocess de 4D, vous pouvez cons
| | |
| --- | --- |
| Numéro de commande | 390 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
index d62c70f3f6e033..c1898d72dff805 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ Dans la méthode du process worker (*leWorker*), vous ajoutez du code pour gére
| | |
| --- | --- |
| Numéro de commande | 1390 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
index 183ad02fdc40cb..ae0d63ad9649c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ La méthode projet suivante crée le tableau *taChamps* avec les noms des champs
| | |
| --- | --- |
| Numéro de commande | 255 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
index 95fa73a2e074c7..d034787c4a606d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ La description du chemin de la dernière recherche peut être comparée à la de
| | |
| --- | --- |
| Numéro de commande | 1045 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
index 153169db7ce973..5f658afe14b3c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
@@ -38,6 +38,6 @@ La description du plan de la dernière recherche peut être comparée à la desc
| | |
| --- | --- |
| Numéro de commande | 1046 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
index e4d5ef62dc8933..29fc97ae1737e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ L'exemple suivant désigne le dernier enregistrement de la table \[Contacts\] co
| | |
| --- | --- |
| Numéro de commande | 200 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
index e8dad352aebf31..5b6ce73bfe1cac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
@@ -46,6 +46,6 @@ L’exemple suivant initialise les éléments du tableau tabTables. Ce tableau p
| | |
| --- | --- |
| Numéro de commande | 254 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
index 2701cd457b96a5..6f968b18e612a2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Cette commande est destinée à être utilisée dans un processus de mise à jou
| | |
| --- | --- |
| Numéro de commande | 1301 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
index eaa1a041100e6a..1e64372f0f5de9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
@@ -154,7 +154,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 811 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
index 5b2c89e18f0b10..26580b0c6f18e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
@@ -101,6 +101,6 @@ Cet exemple tente de se connecter à une application :
| | |
| --- | --- |
| Numéro de commande | 1326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
index 9895f765cf4a17..f37fe3b05fe217 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
index 4254cba4f46e5a..bf604dbdf8fd23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Ces exemples illustrent plus particulièrement l'utilisation du paramètre *attr
| | |
| --- | --- |
| Numéro de commande | 1329 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
index 7d91cacccaf9a8..d83b841ba15a77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Vous voulez obtenir un tableau de toutes les entrées trouvées pour l'attribut
| | |
| --- | --- |
| Numéro de commande | 1328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
index 3d2cf99a15b183..0fec210630afd8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
@@ -35,6 +35,6 @@ L'exemple suivant illustre l'utilisation de **Length**. Les valeurs retournées
| | |
| --- | --- |
| Numéro de commande | 16 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
index e22dbb0b9d8df3..84bf068892708e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
@@ -72,6 +72,6 @@ Cet exemple est une maquette de méthode formulaire. Il traite chaque événemen
| | |
| --- | --- |
| Numéro de commande | 101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
index 8c46f2cc56dc7d..29eb1cc760f726 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Ce tableau détaille le contenu de l'objet session des sessions REST :
| | |
| --- | --- |
| Numéro de commande | 1782 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
index f6dfec80699f59..08078d31371123 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
@@ -75,6 +75,6 @@ Voici les numéros de référence des éléments de cette liste :
| | |
| --- | --- |
| Numéro de commande | 633 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
index cd6fbdb6dea9b5..6a96fcf80eb385 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Si l'élément n'existe pas, **List item position** retourne *0*.
| | |
| --- | --- |
| Numéro de commande | 629 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
index 76a9258b5793dd..ad5bef8ba5d4d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Les numéros des énumérations correspondent à leur ordre de création. Dans l
| | |
| --- | --- |
| Numéro de commande | 957 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
index 4fc69dc0f02ce4..8663343eae30a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Si vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1255 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
index aa191062e88767..99fdc0561b673b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Si vous exécutez l’instruction :
| | |
| --- | --- |
| Numéro de commande | 288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
index 829fc89cfdd868..e7fb0501b3fbc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 556 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
index a7ac698779dffe..b049c450931fb7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Cet exemple contracte le premier niveau de lignes de rupture de la sélection de
| | |
| --- | --- |
| Numéro de commande | 1101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
index 04809fb056b679..b90807ac42b546 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Si le paramètre *positionCol* est supérieur au nombre de colonnes de la list b
| | |
| --- | --- |
| Numéro de commande | 830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
index 0c1727aaef6c72..32011d93f178c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 914 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
index fffc445355c5a7..bf07f6150416e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
@@ -98,6 +98,6 @@ Vous souhaitez dupliquer dynamiquement une colonne booléenne et modifier son ti
| | |
| --- | --- |
| Numéro de commande | 1273 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
index e8444babd31e1c..11150803f8f250 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
@@ -85,6 +85,6 @@ Cet exemple illustre différents modes d’utilisation de la commande. Soient le
| | |
| --- | --- |
| Numéro de commande | 1100 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
index 17a39f11de3931..06f22943b2f110 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Exemples type d’utilisation :
| | |
| --- | --- |
| Numéro de commande | 1278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
index df3454aa1bb0d6..f92b448403eaf3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Pour une list box de type sélection, collection ou entity selection, *tabStyles
| | |
| --- | --- |
| Numéro de commande | 832 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
index 4265422979591d..823452f1a26dee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ Vous voulez connaître le nombre de lignes maximum pouvant être affichées dans
| | |
| --- | --- |
| Numéro de commande | 1502 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
index b03717f989ea61..dedefc4454d661 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
@@ -59,6 +59,6 @@ Vous souhaitez afficher un rectangle rouge autour de la cellule sélectionnée d
| | |
| --- | --- |
| Numéro de commande | 1330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
index c14ab2f077ee9a..b5819670fa11c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
@@ -61,6 +61,6 @@ Si la sélection est modifiée via les touches fléchées du clavier, *colonne*
| | |
| --- | --- |
| Numéro de commande | 971 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
index e970834fdc80de..b5b412c8564326 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1202 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
index d6a076f5fa883f..30a48907f0f1df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
@@ -34,6 +34,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 834 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
index fe52e83a07af8c..a40fa41e9a72cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
@@ -37,6 +37,6 @@ Vous pouvez comparer la valeur retournée aux constantes du thème *List box pie
| | |
| --- | --- |
| Numéro de commande | 1150 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
index ab1693603c3ae3..0e65efc9baea0a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1146 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
index d70bfe615a265b..ed709ded480232 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ La commande retourne dans les paramètres *couleurH* et *couleurV* des valeurs d
| | |
| --- | --- |
| Numéro de commande | 1200 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
index 5b1f7873241717..10254de36feba8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ La commande retourne dans les paramètres *horizontal* et *vertical* la valeur *
| | |
| --- | --- |
| Numéro de commande | 1199 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
index 94a366ce37aed6..0db0f0a447a911 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1144 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
index 1908bf7e8c995d..8fcb032bfdb873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Si la list box est en mode hiérarchique, la commande remplit le tableau *hiéra
| | |
| --- | --- |
| Numéro de commande | 1099 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
index 3866ec8ae587ac..8640d39cc59188 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
@@ -36,6 +36,6 @@ En revanche, la commande ne tient pas compte du statut visible/invisible des col
| | |
| --- | --- |
| Numéro de commande | 1152 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
index 11c4deb2a6c933..99e0b186f39c1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
index a69d807ea146fa..ba6e1afab24a45 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 915 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
index eaf1a211e28fc6..966730df567a64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
index 13cff053c8975d..972984bea1a7a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impression d’au moins 500 lignes de la list box, sachant que certaines lignes
| | |
| --- | --- |
| Numéro de commande | 1110 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
index f0609fc3e2db32..423c41c4f82211 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
@@ -62,6 +62,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1271 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
index 3826aad228ed01..2d8d3fab664eb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Considérons la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1658 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
index fe6019112a1c91..0431d9b0236476 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1269 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
index c69509e75989d3..3014028063c4f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ La hauteur de ligne retournée est exprimée:
| | |
| --- | --- |
| Numéro de commande | 1408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
index 28115376fa7c7c..a2b6806211bd58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 836 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
index 1d426be5abd890..8d6f7ba35294b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
@@ -36,6 +36,6 @@ Si une colonne a été insérée ou supprimée par programmation à l’intérie
| | |
| --- | --- |
| Numéro de commande | 1154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
index f39d858a1d96cf..7fa700f235b3ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
@@ -37,6 +37,6 @@ Si la list box est associée à des tableaux, *numTable* retourne -1 et *nom*, s
| | |
| --- | --- |
| Numéro de commande | 1014 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
index c50a3a5e9707cd..8cc52380800f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
@@ -122,6 +122,6 @@ La colonne est ajoutée à la list box :
| | |
| --- | --- |
| Numéro de commande | 970 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
index 609a139f307b5c..6bb9d5e3c2bb47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
@@ -102,6 +102,6 @@ Vous souhaitez insérer dynamiquement une colonne dans une list box de type tabl
| | |
| --- | --- |
| Numéro de commande | 829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
index 3ddc3599ef397b..9f51ed003d35ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 913 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
index bb9ba2ea13d9f9..e37506331935d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Vous souhaitez intervertir les 2e et 3e colonnes de la list box :
| | |
| --- | --- |
| Numéro de commande | 1274 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
index f54fd5b65166ed..503da08952ca0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 844 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
index ba2a170568be6c..5b9f94d07abbcb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 837 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
index b87028e4e3ab7c..0371b52af3e0c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Voici le résultat :
| | |
| --- | --- |
| Numéro de commande | 1117 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
index df10eebcbdc281..3ec1445cc90a65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
@@ -58,6 +58,6 @@ A l’issue de l’exécution de la méthode, les tableaux sont synchronisés :
| | |
| --- | --- |
| Numéro de commande | 912 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
index 473b8fa7e4604d..8be45ad0478234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
@@ -90,6 +90,6 @@ Exemple avec une collection d'objets :
| | |
| --- | --- |
| Numéro de commande | 1715 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
index 3eccde3a5aba91..8fd3bc9114a38b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
@@ -72,6 +72,6 @@ Vous voulez associer un tableau de hauteurs de ligne à une list box :
| | |
| --- | --- |
| Numéro de commande | 1279 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
index 4434f5058949ee..4b4a7292a9618d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Dans une list box où les hauteurs de lignes sont automatiques, vous voulez déf
| | |
| --- | --- |
| Numéro de commande | 1501 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
index 85f53c13f582f4..c38dcaab39617a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ Le paramètre *typeDonnées* permet de désigner le type des données issues de
| | |
| --- | --- |
| Numéro de commande | 1203 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
index e32bdd0a04d08a..ba4de528ab3a3f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
@@ -39,6 +39,6 @@ Les paramètres optionnels *largeurMini* et *largeurMaxi* permettent de fixer de
| | |
| --- | --- |
| Numéro de commande | 833 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
index 60c775fa87d69a..7a9ea34210b689 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
@@ -55,6 +55,6 @@ Si le type de données de la colonne ou d’au moins une colonne de la list box
| | |
| --- | --- |
| Numéro de commande | 1140 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
index 06e8ee561db2b1..7e071c1808ff52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
@@ -40,6 +40,6 @@ Passez dans le paramètre *hauteur* la hauteur à définir. Par défaut, si vous
| | |
| --- | --- |
| Numéro de commande | 1145 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
index ecf137dc4a2e90..26c85f9ed420f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Les paramètres *horizontal* et *vertical* vous permettent de spécifier les tra
| | |
| --- | --- |
| Numéro de commande | 842 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
index 26e2ba80358ddb..746898a5b92458 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Passez dans les paramètres *horizontal* et *vertical* des valeurs booléennes i
| | |
| --- | --- |
| Numéro de commande | 841 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
index 6c103cbdbf207d..5bf02a10e3e84e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
@@ -44,6 +44,6 @@ Les en-têtes doivent respecter une hauteur minimale, définie par le système d
| | |
| --- | --- |
| Numéro de commande | 1143 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
index a12e2eb3db054f..5cc88f48404eac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Définition des tableaux tPays, tRegion et tVille comme hiérarchie d’une list
| | |
| --- | --- |
| Numéro de commande | 1098 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
index 53464dd656d43c..3e76b10d438cb1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Si vous passez 0 ou une valeur négative dans *nbColonnes*, le verrouillage des
| | |
| --- | --- |
| Numéro de commande | 1151 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
index 9f5ec044c17234..28f39c8d0d0809 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ Dans une list box tableau, on souhaite définir des paramétrages de couleur pou
| | |
| --- | --- |
| Numéro de commande | 1270 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
index a1ae07cfb5cc34..ab28fefae340c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
@@ -83,6 +83,6 @@ Après la deuxième instruction, toutes les cellules de la troisième ligne pass
| | |
| --- | --- |
| Numéro de commande | 1268 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
index 3790659aa7165b..493f411737291b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
@@ -88,6 +88,6 @@ En revanche, si le code suivant est exécuté :
| | |
| --- | --- |
| Numéro de commande | 1409 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
index c599ef294c7f9b..ef3c6ec759e655 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur est exprimée en
| | |
| --- | --- |
| Numéro de commande | 835 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
index df63a096a58bbb..c3287d5bf902e5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ Les colonnes statiques (ou colonnes fixes) ne peuvent pas être déplacées dans
| | |
| --- | --- |
| Numéro de commande | 1153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
index 103e163ca1a057..9562c368bc4374 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
@@ -42,6 +42,6 @@ Si la list box contenait déjà des colonnes, leur contenu est mis à jour à l
| | |
| --- | --- |
| Numéro de commande | 1013 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
index b0225ba0586595..90438881e12aa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
@@ -38,6 +38,6 @@ Conformément au principe de fonctionnement des list box, les colonnes sont sync
| | |
| --- | --- |
| Numéro de commande | 916 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
index 75ea701ae1d4ce..d5e3eab27df1d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Vous obtenez le résultat suivant (objet stringifié) :
| | |
| --- | --- |
| Numéro de commande | 1528 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
index 462ccc841917de..012f0f6626fce7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Imaginons que vous créez une base pour le marché international. Vous voulez po
| | |
| --- | --- |
| Numéro de commande | 383 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
index 6207ade31e8aa2..67d217b33e5921 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ En environnements multi-utilisateurs et multi-process, lorsque vous devez modifi
| | |
| --- | --- |
| Numéro de commande | 52 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
index d4c95c0328904a..cf05be39256787 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
@@ -49,7 +49,7 @@ Si l'utilisateur clique sur Annuler dans la boîte de dialogue d'ouverture de fi
| | |
| --- | --- |
| Numéro de commande | 185 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
index 997545351322d1..67ef0211ec68ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ La variable système OK prend la valeur 1 si les variables ont été correctemen
| | |
| --- | --- |
| Numéro de commande | 74 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
index 45cb0946c9dbe4..93394b7f0f5274 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
@@ -72,6 +72,6 @@ Si la langue courante est, par exemple, le français canadien (fr-ca), la comman
| | |
| --- | --- |
| Numéro de commande | 1105 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
index f12783fa9f1265..a6a853c6c31d37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Si la commande a été exécutée correctement, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 991 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
index c37dd5f7fc1c5d..b0c7317b650cab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ Si l'enregistrement a été verrouillé par une *requête REST $lock*:
| | |
| --- | --- |
| Numéro de commande | 353 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
index afd0a2452275c4..e32ecf26cf7134 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
@@ -94,6 +94,6 @@ Si le code est exécuté sur 4D Server et que le verrouillage est causé par un
| | |
| --- | --- |
| Numéro de commande | 1316 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
index 65e18d4c53e712..bb54ee0c9a8f5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Au cours d'une transaction, [LOAD RECORD](load-record.md) et **Locked** sont sou
| | |
| --- | --- |
| Numéro de commande | 147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
index 7f9bec9d207125..97c9c41e10ea3e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
@@ -69,6 +69,6 @@ A chaque ouverture de la base, cette information sera inscrite dans l’Observat
| | |
| --- | --- |
| Numéro de commande | 667 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
index eb93adbdf0a992..b9706fea8ad487 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
@@ -101,7 +101,7 @@ La commande **LOG FILE TO JSON** modifie la valeur des variables système OK et
| | |
| --- | --- |
| Numéro de commande | 1352 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
index 0d5a85cfe5eae1..9b2ddf234362ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Si la base fonctionne avec un fichier d’historique, la variable système OK pr
| | |
| --- | --- |
| Numéro de commande | 928 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
index 522c47017141f1..6f1ab436a95fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
@@ -37,6 +37,6 @@ L'exemple suivant affiche 1 :
| | |
| --- | --- |
| Numéro de commande | 22 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
index 3f602bf4e3e191..fca47c5fd46562 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Vous voulez récupérer les numéros des enregistrements de la sélection couran
| | |
| --- | --- |
| Numéro de commande | 647 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
index 701267ffd5bd20..788aa85eebc610 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 550 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
index 54baf844ad520b..d2f3ee32bc5311 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ Cet exemple compare les résultats obtenus suivant que le paramètre *\** a ét
| | |
| --- | --- |
| Numéro de commande | 14 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
index 9e9743d7020943..4af7cb945056dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 546 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
index 79632f5d2ea8f1..c9945c214906b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 544 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
index 7b6df32341d1cf..5214d6f76d3edf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 545 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
index 828f240fcdb82a..0e3cef056dc32f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
@@ -114,7 +114,7 @@ En cas d’erreur, la commande génère une erreur que vous pouvez intercepter v
| | |
| --- | --- |
| Numéro de commande | 1019 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
index 902beeb3572e7b..24d7f939291f28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
@@ -77,7 +77,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 3 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
index 8f65b61616b4ee..eeb449fafc8df0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
@@ -86,6 +86,6 @@ Dans le contexte suivant, si l'utilisateur clique sur le bouton :
| | |
| --- | --- |
| Numéro de commande | 453 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
index 3c03ebf9ebe93b..f706e01a0c4205 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ A l’issue de l’exécution de la commande, les statistiques demandées sont f
| | |
| --- | --- |
| Numéro de commande | 1118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
index f91b987f62a62a..0bf91ac9790520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ La commande retourne 0 :
| | |
| --- | --- |
| Numéro de commande | 440 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
index 9dd3a19f0bdce5..20a081382184c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 441 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
index 90b078aaef14ba..30e8e128c68cf9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ La méthode formulaire suivante utilise la fonction **Menu selected** pour fourn
| | |
| --- | --- |
| Numéro de commande | 152 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
index f71753173a5486..0366c35f7ddba7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
@@ -120,6 +120,6 @@ Voici le résultat (sous Windows) :
| | |
| --- | --- |
| Numéro de commande | 88 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
index ad9b3401384eb6..7cf31e428b9143 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ L'exemple suivant supprime les thermomètres de progression avant d'effectuer un
| | |
| --- | --- |
| Numéro de commande | 175 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
index c5a692fc128445..63f79df5ffaa14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 181 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
index 969c4d086ed0df..57b75e8ea5607a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Cette commande est particulièrement utile dans le cadre des composants, car ell
| | |
| --- | --- |
| Numéro de commande | 704 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
index 10be1759ab6b6d..924cf2ad3b83c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si aucune méthode d’appel sur événement n’a été installée, une chaîne
| | |
| --- | --- |
| Numéro de commande | 705 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
index bdb1bd8e23461b..9e81b287a9ebb3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ La commande retourne **Vrai** si un attribut est sélectionné et **Faux** s’i
| | |
| --- | --- |
| Numéro de commande | 1169 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
index 1089d203a46a6e..f19ba9c01c662e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
@@ -66,6 +66,6 @@ A l'issue de l'exécution, $att contient, par exemple :
| | |
| --- | --- |
| Numéro de commande | 1334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
index 74b40d3d929e1d..c7b5ae026bb630 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
@@ -124,6 +124,6 @@ Le document résultant contient alors :
| | |
| --- | --- |
| Numéro de commande | 1190 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
index 0bc1314a0d5a4e..81e5742566fe2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
@@ -59,6 +59,6 @@ Si la commande est exécutée depuis un composant, elle s’applique par défaut
| | |
| --- | --- |
| Numéro de commande | 1189 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
index 4685d3114acf80..a261bf10055810 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
@@ -36,6 +36,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
index 5e1caaa319ebb0..559db8777ca3cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Vous souhaitez obtenir les dates de modification des méthodes d'un module, pré
| | |
| --- | --- |
| Numéro de commande | 1170 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
index 7854759562d94a..3d32466cfaf233 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Exemples d’utilisations types :
| | |
| --- | --- |
| Numéro de commande | 1166 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
index e6f59262707ec0..b68c3194270af6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
index c11ca8528f70e1..3ac3d6be06c35d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
@@ -74,6 +74,6 @@ Liste de tous les objets des formulaires "input" de la table \[Emp\] à partir d
| | |
| --- | --- |
| Numéro de commande | 1168 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
index 7edaee0f55ffd0..e563a238ac3eab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Reportez-vous à l'exemple de la commande [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Numéro de commande | 1163 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
index ce39b8088a62b0..9e77cc8ee39c7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Vous pouvez exécuter cette commande depuis un composant, mais dans ce cas vous
| | |
| --- | --- |
| Numéro de commande | 1213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
index 0f58430c2209da..0c72896b9c3ddf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ Résolution d’un chemin d’objet de méthode formulaire table :
| | |
| --- | --- |
| Numéro de commande | 1165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
index bd088c7dbc74b8..2d3125acda2f06 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ Passez dans *mode* une des constantes suivantes du thème *Accès objets dévelo
| | |
| --- | --- |
| Numéro de commande | 1191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
index e11f06339e3104..2794ab8b01e13a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Définition de plusieurs paires attribut/valeur :
| | |
| --- | --- |
| Numéro de commande | 1192 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
index 036276eb1d91a3..6213efd36348f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
@@ -68,6 +68,6 @@ Vous souhaiter modifier un seul attribut :
| | |
| --- | --- |
| Numéro de commande | 1335 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
index 387c73a6b8363a..d54d9b3c5ed29a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
@@ -103,6 +103,6 @@ Cet exemple permet d’exporter et d’importer la totalité des méthodes proje
| | |
| --- | --- |
| Numéro de commande | 1194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
index 140f20e706fb91..8825b9c7a8bc6c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
@@ -67,6 +67,6 @@ Ajout d’une date de modification à une documentation de trigger existante :
| | |
| --- | --- |
| Numéro de commande | 1193 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
index d2967c54b170c2..ee9f70dfb882ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ Le code suivant attend jusqu'à 5 secondes qu'un enregistrement soit déverrouil
| | |
| --- | --- |
| Numéro de commande | 459 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
index b991511083ef55..64ce3c3b4c5ef3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
@@ -83,7 +83,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 4 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
index 3a85daeb9e12ff..3a0dad5d36d235 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
@@ -53,6 +53,6 @@ Mac OS
| | |
| --- | --- |
| Numéro de commande | 454 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
index 242bb34916ac18..3df04fe57de018 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Vous souhaitez réinitialiser toutes les sessions en cours pour toutes les appli
| | |
| --- | --- |
| Numéro de commande | 1596 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
index 90826141b44966..a96f802551ba54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
@@ -39,6 +39,6 @@ L'exemple suivant illustre le fonctionnement de **Mod** dans différents cas de
| | |
| --- | --- |
| Numéro de commande | 98 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
index 9ba3da7c6cffa8..b99f86166fcbab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ L'exemple suivant montre une utilisation typique de **Modified record** :
| | |
| --- | --- |
| Numéro de commande | 314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
index c29301e5423621..38e7a874581ee5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
@@ -71,6 +71,6 @@ Vous sélectionnez un enregistrement de la table *\[uneTable\]*, puis vous appel
| | |
| --- | --- |
| Numéro de commande | 32 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
index 8701bea1374810..619ab843e29b18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 lorsque l'enregistrement est validé e
| | |
| --- | --- |
| Numéro de commande | 57 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
index 04ba86505554f3..f57fb4a2e34399 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
@@ -37,7 +37,7 @@ Les seules différences entre ces deux commandes sont les suivantes :
| | |
| --- | --- |
| Numéro de commande | 204 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
index d583b59f5e5e66..b0e3545af7cda7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md).**
| | |
| --- | --- |
| Numéro de commande | 1713 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
index 52883c72a0e452..c110afe8ea3b03 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 24 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
index c4687af10bee43..1db9d65812f0e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Numéro de commande | 468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
index 72ec0b244fe9c3..9bb5fc29320a24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ L'exemple suivant déplace le document DocNom :
| | |
| --- | --- |
| Numéro de commande | 540 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
index befde686e8e4b9..de7a9df90c477d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
@@ -113,6 +113,6 @@ Si vous souhaitez que le tableau des noms soit utilisé comme troisième critèr
| | |
| --- | --- |
| Numéro de commande | 718 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
index bba76f3ebf0543..9c452280474c18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Vous souhaitez sauvegarder une clé de chiffrement dans un fichier .4DKeyChain :
| | |
| --- | --- |
| Numéro de commande | 1611 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
index f4cffe8bfea72d..7198994a958af1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 375 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
index dab4be473e8c35..694b85a0fdb0b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ Avec cette commande, vous pouvez aisément gérer des objets en boucle :
| | |
| --- | --- |
| Numéro de commande | 1471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
index e3d70eff79bfbf..835e4eb825b887 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
@@ -112,6 +112,6 @@ Dans l'éditeur de barres de menus, vous remplacez AJOUT CLIENTS par la méthode
| | |
| --- | --- |
| Numéro de commande | 317 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
index 99bfe1cf5ed8fa..e218b8481dd601 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Vous souhaitez créer et modifier un objet partagé. La structure *Utiliser...Fi
| | |
| --- | --- |
| Numéro de commande | 1526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
index 4aae8b21cf880a..ad24b42173364a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Reportez-vous à l'exemple de la commande [DISPLAY RECORD](display-record.md).
| | |
| --- | --- |
| Numéro de commande | 51 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
index cd659cc164a355..3d6e4c907d55b6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 448 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
index cdb0832da2fe65..62894fbaa565f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
@@ -47,6 +47,6 @@ Dans une base contenant un formulaire projet nommé “LeForm” et un formulair
| | |
| --- | --- |
| Numéro de commande | 993 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
index 04b2c2bbef0db6..62079b94c8fc90 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
@@ -38,6 +38,6 @@ Dans l'exemple suivant, la valeur [True](true.md) est assignée à une variable.
| | |
| --- | --- |
| Numéro de commande | 34 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
index c910f66046dd45..0ceafbae19af0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
@@ -37,6 +37,6 @@ Le paramétrage courant peut être défini soit :
| | |
| --- | --- |
| Numéro de commande | 1052 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
index 1fe8c683cee21a..d1de72899b5dd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
@@ -138,6 +138,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 1517 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
index cb217a69f83801..7c53366c403215 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
@@ -88,6 +88,6 @@ Cet exemple compare les résultats obtenus en fonction du séparateur “courant
| | |
| --- | --- |
| Numéro de commande | 11 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
index e4acc435074e59..0b3fc90232563c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
@@ -45,6 +45,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
index 9df2d6c03c36ae..7730f434759a1f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ Nous souhaitons copier *$sharedObj* dans *$sharedColl.* Etant donné qu'ils appa
| | |
| --- | --- |
| Numéro de commande | 1225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
index d6c07dafc9af59..aaec94c2524c40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ L'utilisation d'un objet comme une hashmap (système clé/valeur) permet d'accé
| | |
| --- | --- |
| Numéro de commande | 1720 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
index cd33a2d41c89ee..761b0152a39860 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ On souhaite changer une valeur dans le premier élément du tableau :
| | |
| --- | --- |
| Numéro de commande | 1229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
index 638d4aa2918b81..66eb40bd2336ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ Utilisation d’un élément de tableau d’objets :
| | |
| --- | --- |
| Numéro de commande | 1232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
index 58a513a3f2ddf4..a944a3f6ac9e25 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
@@ -57,6 +57,6 @@ On souhaite obtenir le type de valeurs standard :
| | |
| --- | --- |
| Numéro de commande | 1230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
index 703e49229cdf22..d68a3cff0071e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
@@ -217,6 +217,6 @@ Vous voulez connaître la taille d'une image stockée dans un objet :
| | |
| --- | --- |
| Numéro de commande | 1224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
index fe91fbf3f9531b..6d202fe6267287 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
@@ -51,6 +51,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
index 988e1e4a6fe425..acaede68a7879b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Ce test équivaut à :
| | |
| --- | --- |
| Numéro de commande | 1231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
index 4ec730c916f725..f04b5e39a9b873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Voici les différents résultats de la commande ainsi que de la commande [OB Is
| | |
| --- | --- |
| Numéro de commande | 1297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
index 80d15443db8caa..a674ea04f42157 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Cette commande retourne **Vrai** si vous passez une sélection d'entité partage
| | |
| --- | --- |
| Numéro de commande | 1759 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
index 010f705d45bc8d..2cdfaf3fab27e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec tous les noms de propriétés de premier nive
| | |
| --- | --- |
| Numéro de commande | 1719 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
index 7c11f045fe974c..9206c2777b2357 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Vous souhaitez supprimer la propriété "age" d’un objet :
| | |
| --- | --- |
| Numéro de commande | 1226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
index 87a72632d786f7..51c36db86f6479 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
@@ -126,6 +126,6 @@ Utilisation d'un champ objet :
| | |
| --- | --- |
| Numéro de commande | 1227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
index b4170c146c9061..d4075b56364cac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
@@ -44,6 +44,6 @@ On souhaite mettre la valeur null dans la propriété "âge" de Léa :
| | |
| --- | --- |
| Numéro de commande | 1233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
index cee377cce0b77b..8c4136f47801cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ Vous souhaitez stocker une image dans un champ objet. Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 1220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
index 47d3b667be20e1..14129df421b411 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec toutes les valeurs des propriétés d'un obje
| | |
| --- | --- |
| Numéro de commande | 1718 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
index a86a7c0a43930b..8b3d3c63c943cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
@@ -108,7 +108,7 @@ Création d’un nouveau bouton radio "bRadio6" basé sur le bouton radio exista
| | |
| --- | --- |
| Numéro de commande | 1111 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
index fcb0143b7d60dd..8e0578e141386f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Vous souhaitez associer l'action "Annuler" à tous les objets du formulaire qui
| | |
| --- | --- |
| Numéro de commande | 1457 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
index 3b5e376210f320..f9b3fa648373b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ La commande retourne **Vrai** si la correction automatique est activée pour l
| | |
| --- | --- |
| Numéro de commande | 1174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
index 10ab69b5daf29f..26c5aa65c113fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la routine [SET PRINT MARKER](set-print-marker.m
| | |
| --- | --- |
| Numéro de commande | 717 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
index a30a426366c346..7911891a4dc5b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ La commande retourne une valeur correspondant au style de la bordure. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 1263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
index 23669de56e9cff..259a38e12e63c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le menu contextuel est activé pour l’objet e
| | |
| --- | --- |
| Numéro de commande | 1252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
index 372b9332a1f5a2..e57bfb466625d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ La méthode retourne les coordonnées théoriques. Si la list box est redimensio
| | |
| --- | --- |
| Numéro de commande | 663 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
index b80b4c45d349f7..43da43e08e396d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ Le code suivant peut être associé à la méthode d'un bouton :
| | |
| --- | --- |
| Numéro de commande | 1324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
index 50cdf04f9740bb..7836999ce5f6ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
@@ -45,6 +45,6 @@ Vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1265 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
index 2c8db68d3a4505..5db7301153fa93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Chaque paramètre retourne Vrai ou Faux suivant que l’option correspondante es
| | |
| --- | --- |
| Numéro de commande | 1184 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
index c4d0b458356f16..235ece7a223553 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1079 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
index 56316f93cb1d5d..17471f8b2a1490 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1067 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
index d15d095446d4f1..c93bad0d4fb3e0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Vous souhaitez activer deux événements et obtenir la liste des événements po
| | |
| --- | --- |
| Numéro de commande | 1238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
index 1dba0fb8f3eac1..1c563637f5fcf9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel \*, vous indiquez que le paramètre *obje
| | |
| --- | --- |
| Numéro de commande | 1073 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
index 774305b33cab6c..8d1f8edf9a9247 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le rectangle de focus est masqué et **Faux** s
| | |
| --- | --- |
| Numéro de commande | 1178 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
index b9af6fd13257b5..ac0abd88600edf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1070 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
index 8e366263a0d4f1..39def9a799cce7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Vous pouvez comparer la valeur retournée par la commande à la valeur d’une o
| | |
| --- | --- |
| Numéro de commande | 1071 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
index b99822d5197d01..67aafe3b0e941b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1069 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
index 5b2ae29c19280a..12b98bb7982a05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Les formats personnalisés sont retournés inchangés :
| | |
| --- | --- |
| Numéro de commande | 894 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
index 2c86f0641c30a6..d2c4dfdfe9383a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ Le libellé d’un bouton image est stocké sous forme de message d’aide. Ce l
| | |
| --- | --- |
| Numéro de commande | 1182 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
index 4a68a3f2e72c09..4fdb1253a5e3d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels un alignement peut être appliqué sont les su
| | |
| --- | --- |
| Numéro de commande | 707 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
index 88e80f1c8f228c..80c66c8e6d78b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Vous pouvez comparer la valeur retournée par la commande aux constantes suivant
| | |
| --- | --- |
| Numéro de commande | 1247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
index 6696dca8a74f3d..69927b8ca73843 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ La commande retourne une chaîne indiquant le code de langue utilisé, basé sur
| | |
| --- | --- |
| Numéro de commande | 1180 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
index 6f32b46d047294..3bd61729ade303 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
@@ -42,6 +42,6 @@ Si aucune liste du type défini n’est associée à l’*objet*, la commande re
| | |
| --- | --- |
| Numéro de commande | 1072 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
index 89277de4cd0159..6536e05e6c61aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
@@ -42,6 +42,6 @@ Si aucune liste hiérarchique n’est associée à l’objet pour le *typeListe*
| | |
| --- | --- |
| Numéro de commande | 1267 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
index b6582037e63aca..90ea57520bbd21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1245 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
index a2b378e95a7250..4b4484f8923be5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1243 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
index 12ab1f52932063..5663ae90fe2bed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
@@ -42,6 +42,6 @@ La valeur retournée correspond à l’une des constantes suivantes du thème "*
| | |
| --- | --- |
| Numéro de commande | 1254 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
index 8c8806ae1ce87f..7b019a20c49f1d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Après l’exécution de cette méthode objet, la variable *$nomBtn* contient la
| | |
| --- | --- |
| Numéro de commande | 1087 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
index ae637c0b138483..184a468c5ff625 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Vous souhaitez lire le texte exemple d’un champ :
| | |
| --- | --- |
| Numéro de commande | 1296 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
index 05eb9ebbf9387d..a3a6c01b50a592 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
@@ -59,6 +59,6 @@ Soit un formulaire "SF" utilisé deux fois comme sous-formulaire dans le même f
| | |
| --- | --- |
| Numéro de commande | 1124 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
index d5e4577b193bbe..eb4114e274deba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
@@ -42,6 +42,6 @@ Si l’*objet* est un sous-formulaire et si l’impression en taille variable es
| | |
| --- | --- |
| Numéro de commande | 1241 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
index 32a062a10dd553..cd9e5103dfa89f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ Le paramètre *vertical* retourne une valeur indiquant l’option de redimension
| | |
| --- | --- |
| Numéro de commande | 1176 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
index 860314fdb94667..3697b865917f2d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Pour plus d’informations sur le format des paramètres *couleurAvantPlan*, *co
| | |
| --- | --- |
| Numéro de commande | 1074 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
index 04479e9ea8aede..662a089a11cb2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Si *objet* désigne une image (variable ou champ), *positionLigne* retourne le d
| | |
| --- | --- |
| Numéro de commande | 1114 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
index 5066db6efc2b16..8a190dd83cef13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
@@ -51,6 +51,6 @@ Pour plus d'informations, reportez-vous à la description de la commande [OBJECT
| | |
| --- | --- |
| Numéro de commande | 1076 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
index 25378d2f397e6a..7a7135923a4a43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
@@ -46,6 +46,6 @@ Si aucune touche de modification n’a été définie dans l’équivalent clavi
| | |
| --- | --- |
| Numéro de commande | 1186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
index 036ae0b3bdea23..e33dbfe879a4d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
@@ -51,6 +51,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1258 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
index a388ec946860b8..854688d407a1eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
@@ -35,6 +35,6 @@ Cette commande est utile par exemple dans le cas où des objets du sous-formulai
| | |
| --- | --- |
| Numéro de commande | 1148 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
index c0783cc7c5a98b..7fa5547f1fc1d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
index 9c5e0b5d158ced..ef20fa17a156bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ S’il n’y a pas de formulaire liste, une chaîne vide est retournée dans le
| | |
| --- | --- |
| Numéro de commande | 1139 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
index ce2eac4fd518c8..65c4aa26089140 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Si, à l’exécution du formulaire, vous appelez l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 1283 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
index 29a40e183cf999..8823428630222a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ La propriété "Trois états" peut avoir été définie soit via la Liste des pr
| | |
| --- | --- |
| Numéro de commande | 1250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
index 12ec6756ece943..dc1c1dbeecbc6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
@@ -38,6 +38,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1068 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
index 90d62431b522d8..54f35d04e3afe4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1300 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
index 7d1f720b76142c..bc1563127c3207 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Voir l'exemple de la commande [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Numéro de commande | 1743 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
index 73eb9c4ec91b8f..6c5d86720985d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
index 9572558049accc..2cd9fb50b2295c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1075 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
index 79163446a27c0c..edb2e8b819dde0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Un formulaire comporte un champ représenté par deux objets différents, l’un
| | |
| --- | --- |
| Numéro de commande | 1261 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
index 37bcf365304c54..4fb3223860cba6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
@@ -67,6 +67,6 @@ L’instruction suivante place le bouton “Bouton\_1” aux coordonnées (10;20
| | |
| --- | --- |
| Numéro de commande | 664 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
index 8a213b0bf2095e..6ca4336230da38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
@@ -44,6 +44,6 @@ Vous souhaitez associer l’action standard de validation à un bouton :
| | |
| --- | --- |
| Numéro de commande | 1259 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
index 8dd024d7d9222c..31c9fb72a28a68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Passez **Vrai** dans *correctionAuto* pour activer la correction automatique pou
| | |
| --- | --- |
| Numéro de commande | 1173 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
index 59cda836623b7f..a214abef15c120 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ Passez dans le paramètre *styleBordure* la valeur de style de ligne que vous so
| | |
| --- | --- |
| Numéro de commande | 1262 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
index 80a6af669b987c..e65a86e05a65aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *menuContext* pour activer le menu contextuel
| | |
| --- | --- |
| Numéro de commande | 1251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
index ec071fd1c5dd2d..7e66da7fd5b737 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ L’instruction suivante place l’objet "bouton\_1" aux coordonnées (10,20) (3
| | |
| --- | --- |
| Numéro de commande | 1248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
index fb1da3dff2e33b..b27227c665e64e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
@@ -72,6 +72,6 @@ Notez que pour les zones de texte (ainsi que pour les zones de saisie), contrair
| | |
| --- | --- |
| Numéro de commande | 1323 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
index 2e6352559ec654..eff32bcdffce82 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Modification de la source de données d’une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1264 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
index 110e884e71381e..d5ec83cdd13b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Définition d’une zone de texte en glisser-déposer auto :
| | |
| --- | --- |
| Numéro de commande | 1183 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
index a49a2968dee763..fc9a7729189d78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1123 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
index bcf496faf1f5d8..2e9390f3716a08 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Voici la méthode objet d’une case à cocher placée dans l’en-tête d’une
| | |
| --- | --- |
| Numéro de commande | 238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
index 002594cc9af2cb..66fe753e0984e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
@@ -169,6 +169,6 @@ Désactivation d’un seul événement du formulaire sans modifier les autres :
| | |
| --- | --- |
| Numéro de commande | 1239 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
index bd1dc626e9151e..b725ff0ae0a257 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ L'exemple suivant autorise uniquement la saisie des lettres “a”, “b”,
| | |
| --- | --- |
| Numéro de commande | 235 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
index bc15fa50714db4..f2703b27c1f1b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *invisible* pour cacher le rectangle de focus
| | |
| --- | --- |
| Numéro de commande | 1177 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
index 3d9b9442988132..a48ce463cacdd2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ L'exemple suivant définit la taille de police de tous les objets de formulaire
| | |
| --- | --- |
| Numéro de commande | 165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
index 4a727c03fe9957..95c3ee153da004 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
@@ -61,6 +61,6 @@ L'exemple suivant définit le style de police Normal pour tous les objets de for
| | |
| --- | --- |
| Numéro de commande | 166 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
index 49af2ace0a04e9..5c4b7439cef58d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ L'exemple suivant utilise l'option spéciale *%password*, destinée à la saisie
| | |
| --- | --- |
| Numéro de commande | 164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
index 0b1a8753852cf7..dfe0bbb9e25838 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
@@ -364,6 +364,6 @@ Passage d'un thermomètre en mode "Barber shop" :
| | |
| --- | --- |
| Numéro de commande | 236 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
index 322341d9b9367e..8cd1c66d9071cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
@@ -129,6 +129,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1181 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
index 5d0cb042cc7ea7..1a9b39da7c16d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels vous pouvez appliquer cette commande sont les
| | |
| --- | --- |
| Numéro de commande | 706 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
index 546803e762f527..019f175337eeda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ Passez dans le paramètre *indicateur* le type d’indicateur à afficher. Vous
| | |
| --- | --- |
| Numéro de commande | 1246 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
index 8b0e51adefe820..be1e410239ddc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ Passez dans le paramètre *codeLangue* une chaîne indiquant le code de langue
| | |
| --- | --- |
| Numéro de commande | 1179 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
index 9788207d368883..b3fa7b5889f9b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
@@ -95,6 +95,6 @@ Vous souhaitez supprimer des associations de listes :
| | |
| --- | --- |
| Numéro de commande | 237 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
index f70fd6b911825a..ff018e27761205 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ Pour pouvoir mettre à jour la liste associée au pop up géré par tableau, il
| | |
| --- | --- |
| Numéro de commande | 1266 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
index 1f0c58d2ad8e60..ed1306623f469c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ Passez dans *valeurMaxi* la nouvelle valeur maximum à affecter à l’*objet* p
| | |
| --- | --- |
| Numéro de commande | 1244 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
index 74ca19d0e21425..56919226ce1df4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ Passez dans *valeurMini* la nouvelle valeur minimum à affecter à l’objet pou
| | |
| --- | --- |
| Numéro de commande | 1242 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
index 2d5502be59915f..f4a990ba864b28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
@@ -49,6 +49,6 @@ Vous souhaitez interdire le multiligne dans une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1253 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
index 6bb9e852657c39..dfe1d8a92b41e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Vous souhaitez afficher le texte exemple "Recherche" dans une combo box :
| | |
| --- | --- |
| Numéro de commande | 1295 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
index dc0c457307c089..71e6e9bd0eed7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
@@ -48,6 +48,6 @@ Le paramètre optionnel *fixeSousForm* vous permet de définir une option suppl
| | |
| --- | --- |
| Numéro de commande | 1240 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
index 2d81f4aa0bca76..8f597f0d1ad99b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
@@ -47,6 +47,6 @@ Passez dans le paramètre *vertical* une valeur indiquant l’option de redimens
| | |
| --- | --- |
| Numéro de commande | 1175 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
index de02e7279f9372..3aa28baa7fd635 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
@@ -110,6 +110,6 @@ Passage du fond en transparent avec couleur de police claire :
| | |
| --- | --- |
| Numéro de commande | 628 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
index 07056c0204523c..ff5e8c80f78c70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
@@ -96,6 +96,6 @@ Attention dans ce cas, si vous omettez le second paramètre \*, l'image ne défi
| | |
| --- | --- |
| Numéro de commande | 906 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
index b67c15b44ff6ee..f3dd540e7bc9ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ Le tableau suivant indique les valeurs que vous pouvez passer dans les paramètr
| | |
| --- | --- |
| Numéro de commande | 843 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
index e8ed210fee2b98..2c0ba656bebca2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
@@ -95,6 +95,6 @@ Vous voulez associer un équivalent clavier différent en fonction de la langue
| | |
| --- | --- |
| Numéro de commande | 1185 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
index 869b0f72104320..1cfa1eaa7f6b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
@@ -53,6 +53,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1257 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
index dc9587f6e3f548..84dcc61c5ca1ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1784 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
index 9c9f77ec8f026b..984eeb4667c66f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
@@ -49,6 +49,6 @@ Lorsque vous modifiez un sous-formulaire en page, la commande peut être exécut
| | |
| --- | --- |
| Numéro de commande | 1138 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
index 103079391710ab..57c5255c0d1fc8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
@@ -54,6 +54,6 @@ Vous souhaitez appliquer une orientation de 270° à une variable de votre formu
| | |
| --- | --- |
| Numéro de commande | 1284 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
index 51dfe5c02c6f8b..82e38f91933b43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ Passez **Vrai** dans le paramètre *troisEtat* pour activer le mode "trois état
| | |
| --- | --- |
| Numéro de commande | 1249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
index e43ed15404e243..e2afb842c9caa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
@@ -77,6 +77,6 @@ Vous souhaitez insérer des libellés sur deux lignes :
| | |
| --- | --- |
| Numéro de commande | 194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
index d6f382847bf887..489967531e9adf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Vous souhaitez lire la valeur des sources de données d'un objet formulaire, lir
| | |
| --- | --- |
| Numéro de commande | 1742 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
index 670adbabc2b155..ef54577df477f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
index a0728e8d36ba07..adf79386f0cc22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
@@ -63,6 +63,6 @@ ou ainsi :
| | |
| --- | --- |
| Numéro de commande | 603 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
index d1f5f306222dda..29a267b04fba4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Nous voulons dupliquer et renommer un fichier dans son dossier actuel :
| | |
| --- | --- |
| Numéro de commande | 1548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
index 39d4b608db5649..953f8fa8104ce4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 263 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
index c76a773035bb11..4dbc127de13ad3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 44 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
index 9477343f363856..35822368aa003b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
@@ -48,6 +48,6 @@ Pour restaurer la valeur originale d'un champ, assignez-lui la valeur retournée
| | |
| --- | --- |
| Numéro de commande | 35 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
index 7f68f70f6b9fe1..ecc85e2550cec3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
@@ -185,6 +185,6 @@ La méthode de gestion d'erreurs suivante ignore les interruptions de l'utilisat
| | |
| --- | --- |
| Numéro de commande | 155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
index a57d4f292d0e53..4da92863b1e07c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
@@ -121,7 +121,7 @@ Lorsque vous imprimez un état à l'aide la commande [PRINT SELECTION](print-sel
| | |
| --- | --- |
| Numéro de commande | 190 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
index ab3e8c5d94f0a2..2450f15acaa68d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
@@ -114,6 +114,6 @@ L'exemple suivant illustre un cas typique où vous lancez un ou plusieurs proces
| | |
| --- | --- |
| Numéro de commande | 905252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
index 8fee2a2733aed8..7b22329a4df906 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ L'[authentification Force login](../REST/authUsers.md) est désormais fortement
| | |
| --- | --- |
| Numéro de commande | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
index 09dd557d1de1c5..1d641e0cc4110e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ L’exemple suivant interdit toute nouvelle connexion entre 2 et 4 heures du mat
| | |
| --- | --- |
| Numéro de commande | 16001 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
index d80b5fcaa44080..2a88ea3d995b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
@@ -51,6 +51,6 @@ Reportez-vous à l'exemple de la section [On Exit database method](on-exit-datab
| | |
| --- | --- |
| Numéro de commande | 905263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
index dc5be7eeaddde1..e20b57c460e88f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ A l'origine, cette commande était utile pour "replacer" dans la sélection cour
| | |
| --- | --- |
| Numéro de commande | 189 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
index 4e814f73f733b5..27d8aeff5c71bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1047 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
index 8840e7c9b67823..2271a936952851 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Si la couleur a été modifiée, l’événement formulaire On After Edit est g
| | |
| --- | --- |
| Numéro de commande | 1304 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
index b621aeef19b9c6..04901341fac5b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ Dans le contexte du déploiement d'une application fusionnée, vous souhaitez ou
| | |
| --- | --- |
| Numéro de commande | 312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
index c12b2ad4dfa2aa..a7c18a90b8773c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
@@ -76,6 +76,6 @@ Vous souhaitez sélectionner un serveur au démarrage, à partir d'une applicati
| | |
| --- | --- |
| Numéro de commande | 1321 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
index f8fc63a8a18ba8..9dccc026b6ae6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
@@ -92,7 +92,7 @@ Si vous passez la valeur 3 dans *mode*, la fonction retourne ?00:00:00? (pas de
| | |
| --- | --- |
| Numéro de commande | 264 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
index d03dd2caaa31d9..72ee4dbc3f14bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Le code du bouton est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
index a4bef181438c16..59724e2ef730c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
@@ -139,6 +139,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 675 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
index c65eaa8d6329fa..5dc6dee33bfb6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable système OK est définie sur 1 si la tâche d'impression a été ouv
| | |
| --- | --- |
| Numéro de commande | 995 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
index 9332849b2bd94c..7cea01c30771b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Si le fichier de ressources n'a pas pu être ouvert à la suite d'un problème d
| | |
| --- | --- |
| Numéro de commande | 497 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
index 443fefe6a23fc3..4bb85c9ea62723 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
index 16a34cb67a731c..9d569f925c439a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1018 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
index 2b66dc8fed8c56..1dfe3796c350a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
@@ -144,7 +144,7 @@ Si la boîte de dialogue des préférences/propriétés est validée, la variabl
| | |
| --- | --- |
| Numéro de commande | 903 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
index 2fa4e43c3b8753..4139e316f92f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
@@ -86,6 +86,6 @@ Vous pouvez ouvrir un même fichier texte avec différentes applications en util
| | |
| --- | --- |
| Numéro de commande | 673 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
index 9f4b980fa4a6ae..e0fdfb4e02784c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
@@ -158,6 +158,6 @@ Cet exemple illustre le mécanisme de “retard” d’affichage des fenêtres f
| | |
| --- | --- |
| Numéro de commande | 153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
index 99d238f19a9192..e23c63d6943c1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Les enregistrements sont dans l'ordre suivant :
| | |
| --- | --- |
| Numéro de commande | 1407 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
index ffb24fe1489519..d8bfca6389f256 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
@@ -51,7 +51,7 @@ L'exemple suivant trie les enregistrements de la table \[Personnes\] dans l'ordr
| | |
| --- | --- |
| Numéro de commande | 300 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
index 44e83fe283a5e3..3542d8f31dbc1d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
@@ -207,7 +207,7 @@ Quelle que soit la manière dont le tri est défini, si l'opération risque de p
| | |
| --- | --- |
| Numéro de commande | 49 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
index 988ec05c7026c6..c2e4304f0b2035 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Outside call** soit généré, vérif
| | |
| --- | --- |
| Numéro de commande | 328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
index 94692337f81fec..12d4415ac2062a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
@@ -50,7 +50,7 @@ Reportez-vous à l'exemple de la commande [SET PRINT MARKER](set-print-marker.md
| | |
| --- | --- |
| Numéro de commande | 6 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
index 411a2befa43247..d99317f17c4d50 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
@@ -108,6 +108,6 @@ Si une erreur de syntaxe est détectée dans la *formule*, un message d'erreur e
| | |
| --- | --- |
| Numéro de commande | 1576 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
index 9142048bac9703..d05a2978fa79ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
@@ -100,7 +100,7 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 400 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
index 9aa6a50b3893da..7237c6669dfc06 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
@@ -182,6 +182,6 @@ Vous voulez connaître le nombre de sous-dossiers contenus dans un chemin :
| | |
| --- | --- |
| Numéro de commande | 1547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
index 228f122e814b19..6eee27cc20005e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ Exemple de méthode d’import massif de données :
| | |
| --- | --- |
| Numéro de commande | 1293 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
index 3bd8d52154a7b3..929c3181636e4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Lorsqu'un process est suspendu, les fenêtres qui lui appartiennent ne sont pas
| | |
| --- | --- |
| Numéro de commande | 319 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
index d9af50cad87026..46674c92a328a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
@@ -284,6 +284,6 @@ Pour plus d'informations sur la fonction *trim*, veuillez vous reporter à la do
| | |
| --- | --- |
| Numéro de commande | 1058 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
index 507d899ea9657e..a7319622478a05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
@@ -45,6 +45,6 @@ Comme les échanges entre 4D et l’interpréteur PHP s’effectuent via FastCGI
| | |
| --- | --- |
| Numéro de commande | 1061 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
index 056c689f312a88..0e28c8ae6f6cc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
@@ -46,6 +46,6 @@ Passez dans le paramètre *option* une constante du thème *PHP* désignant l’
| | |
| --- | --- |
| Numéro de commande | 1060 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
index b44d2b7630d61e..51e0fa729591d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
@@ -45,6 +45,6 @@ Par défaut, **PHP SET OPTION** définit l’option pour tous les appels à [PHP
| | |
| --- | --- |
| Numéro de commande | 1059 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
index 61f247c2f08d46..4e8a6c40e775ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Par défaut, si vous ne passez pas le paramètre *\**, la commande retourne uniq
| | |
| --- | --- |
| Numéro de commande | 992 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
index 7a1fc3110703ca..704c32f835bd96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
@@ -105,6 +105,6 @@ L'exemple suivant exporte la Bibliothèque d’Images vers un document stocké s
| | |
| --- | --- |
| Numéro de commande | 564 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
index 8ec9b99d516b9e..e23573560e827e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Les paramètres *hOffset*, *vOffset* et *mode* reçoivent la position et le mode
| | |
| --- | --- |
| Numéro de commande | 457 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
index 387dbc44c598b8..544801f539605e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 356 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
index 44fe4fd839f27d..36fc9b582f7a77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
@@ -55,7 +55,7 @@ Vous voulez convertir une image depuis un format propriétaire vers le format GI
| | |
| --- | --- |
| Numéro de commande | 692 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
index 83f6e133a3b62f..48e14974f81701 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
@@ -62,6 +62,6 @@ Exemple de son système sous macOS :
| | |
| --- | --- |
| Numéro de commande | 290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
index a64b95e2e24ba3..7d143922c9dc14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 847 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
index bcb21180d081bf..0e09bbc3e85ad7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
@@ -38,7 +38,7 @@ L'exemple suivant récupère l'enregistrement d'un client dans la pile :
| | |
| --- | --- |
| Numéro de commande | 177 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
index 29f144e0b41f8c..511ee1a4963805 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
@@ -105,6 +105,6 @@ Voici le pop up menu tel qu'il s'affiche sous Windows (à gauche) et sous Mac OS
| | |
| --- | --- |
| Numéro de commande | 542 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
index 94dc090c6322a1..3f422f2ce57722 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
@@ -124,6 +124,6 @@ Dans l'exemple suivant, vous souhaitez recherchez toutes les instances d'une cha
| | |
| --- | --- |
| Numéro de commande | 15 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
index 5f0f6258786c8b..f5e588999a4016 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Si vous passez le paramètre *process*, le clic est envoyé au process dont vous
| | |
| --- | --- |
| Numéro de commande | 466 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
index b2eaf902016c3d..4738254fd060d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
@@ -78,6 +78,6 @@ Si vous passez le paramètre *process*, l'événement est envoyé au process don
| | |
| --- | --- |
| Numéro de commande | 467 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
index 59d4e2f4e0ece0..a8475186f90596 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
@@ -66,6 +66,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 465 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
index 5535fafafde04b..d4cd266feb04c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ Reportez-vous à l'exemple de la section [Semaphore](semaphore.md).
| | |
| --- | --- |
| Numéro de commande | 329 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
index 3b536391393b6c..c023f6e340e62c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Si **PREVIOUS RECORD** place le pointeur d'enregistrement courant avant la séle
| | |
| --- | --- |
| Numéro de commande | 110 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
index b8457cb29cd94a..ec6d06a644eec4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
@@ -115,7 +115,7 @@ L'exemple suivant permet à l'utilisateur d'effectuer une recherche sur la table
| | |
| --- | --- |
| Numéro de commande | 39 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
index 6e6bf8b7f1a266..8867e5b3669f17 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
@@ -102,6 +102,6 @@ Exemple d’impression d’une list box complète :
| | |
| --- | --- |
| Numéro de commande | 1095 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
index 9cd7f8d2197389..2f67818ccd486f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
@@ -60,6 +60,6 @@ Toutes les informations retournées par ces commandes sont fournies par le syst
| | |
| --- | --- |
| Numéro de commande | 785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
index 507d82d927f70b..66c0a128811a21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
@@ -71,6 +71,6 @@ L'exemple suivant imprime le même enregistrement courant dans deux formulaires
| | |
| --- | --- |
| Numéro de commande | 71 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
index 7dcbc9ce3503d4..f69d985052b38b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
@@ -70,7 +70,7 @@ L'exemple suivant sélectionne la totalité des enregistrements de la table \[Pe
| | |
| --- | --- |
| Numéro de commande | 60 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
index ecbffa8f152d8f..6f871303de7cf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
@@ -60,6 +60,6 @@ Vous voulez sauvegarder les paramètres d'impression courants sur disque :
| | |
| --- | --- |
| Numéro de commande | 1433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
index 583326a59e827b..306a13851ee547 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Si l'utilisateur clique sur le bouton OK dans chaque boîte de dialogue, la vari
| | |
| --- | --- |
| Numéro de commande | 106 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
index fe664f0008972a..b69f9dcf2a4875 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
@@ -49,7 +49,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 789 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
index 253468d1101add..763772731b98ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ L'exemple suivant change la position des numéros de page sur un état pour que
| | |
| --- | --- |
| Numéro de commande | 275 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
index d7a20ff575a57c..69b46226845bce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
@@ -79,6 +79,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Numéro de commande | 816 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
index d9a06cfed17e32..39dd151238359a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Ce statut se produira très rarement. Les process sont généralement arrêtés
| | |
| --- | --- |
| Numéro de commande | 672 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
index 4e850339dbeceb..579fdc367f7999 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ L'exemple suivant retourne le nom et le numéro de référence de chaque process
| | |
| --- | --- |
| Numéro de commande | 330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
index 9d980c91148fe9..4c3cd23eb2955f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ L'exemple suivant empile l'enregistrement d'un client :
| | |
| --- | --- |
| Numéro de commande | 176 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
index 0a0cda3d4c0e26..065d534b714e1b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ L'instruction suivante affiche l'état stocké dans le champ ChampBlob dans la z
| | |
| --- | --- |
| Numéro de commande | 771 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
index b693961ae2adfe..1a7bffb24636f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ L'exemple suivant permet d'ajouter une colonne supplémentaire à droite de la d
| | |
| --- | --- |
| Numéro de commande | 764 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
index b85255631e10e4..4898adaed67590 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ Cet exemple supprime la troisième colonne de l'état :
| | |
| --- | --- |
| Numéro de commande | 749 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
index 005384e2236f33..a5758bd51d681c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 754 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
index cb1c1fff40d4ac..a86cbd5ee51a3c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 791 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
index 6e16121577c6a0..f0d7d13ac9d40c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
@@ -53,7 +53,7 @@ suivi de :
| | |
| --- | --- |
| Numéro de commande | 776 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
index fd655e83e152fd..254da9c5371c42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 795 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
index 5c612c81c5c5dc..a2fc49f1dec763 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
@@ -74,7 +74,7 @@ Si le paramètre *encadrement* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 798 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
index b2bcdca781b421..1e48683259287e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
@@ -96,7 +96,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 792 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
index fdb1194f43d66c..0f4d7efc162898 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
@@ -40,7 +40,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 756 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
index f8d8eff25db108..b5c52fd4ff0ca1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
@@ -40,6 +40,6 @@ Si la valeur du paramètre *propriété* est incorrecte, l’erreur -9852 est g
| | |
| --- | --- |
| Numéro de commande | 773 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
index 637ce486465ede..137275b3b9e665 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 747 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
index 58536bc19ac515..c7a20a50c482ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
@@ -71,7 +71,7 @@ La méthode suivante affiche le contenu et la hauteur des libellés des en-tête
| | |
| --- | --- |
| Numéro de commande | 775 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
index 3968c49003fa80..687b6e2f9083f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 751 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
index 094afbd067152a..2f4948596c271e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
@@ -110,7 +110,7 @@ Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 766 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
index 1d8519b5241ca3..27cfee79f7fdb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
@@ -45,7 +45,7 @@ Si le paramètre *ligne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 769 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
index db44d3e64938ae..3e971505bd7fc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
@@ -36,7 +36,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 755 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
index d5cdd5f0f1c41c..832c5a67600edc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 758 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
index 8f49cbcb8e75cd..6513eee59c0fa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 793 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
index ee61f81ed74b2d..8f67e4b99d132f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 753 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
index 9fcc2e3ce6932f..bec77d32b202c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
@@ -71,7 +71,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 760 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
index d04a49e5c8577d..4a720aba55ceaa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
@@ -74,7 +74,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 768 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
index 079d5672489c8f..e6e8a4bda7c8ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
@@ -41,7 +41,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 762 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
index f3193e19f0bd30..f89c13a284a134 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ La ligne suivante insère (ou crée) une première colonne dans la zone MaZone e
| | |
| --- | --- |
| Numéro de commande | 748 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
index 36feeb3f4ece02..9edfede2d09b51 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ Vous obtenez :
| | |
| --- | --- |
| Numéro de commande | 1325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
index 4b1889e8ad7347..a3f44b4329dd42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1320 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
index 5e675429f21efd..0998749fdbc82e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 735 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
index 7567b0b96aa691..d6a4e720105f7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
@@ -48,7 +48,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 790 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
index a6cf692eb61f11..ce1a01dcec3ef8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ L'instruction suivante affecte l'état rapide stocké dans la zone MaZone à un
| | |
| --- | --- |
| Numéro de commande | 770 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
index cc780dcf3e7f18..2ee430b2e959ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
@@ -136,7 +136,7 @@ La méthode maCallbackMeth convertit l’état lorsqu’il est généré :
| | |
| --- | --- |
| Numéro de commande | 197 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
index d0c66513f05e92..8a37b00739fd96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 746 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
index edacd73f333580..85cd345f3d006d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
@@ -39,7 +39,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 796 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
index 7f5402f75efb2a..31021a064c9dc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
@@ -81,7 +81,7 @@ Si le paramètre *épaisseur* est incorrect, l’erreur -9855 est générée.
| | |
| --- | --- |
| Numéro de commande | 797 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
index c23ab4977e5be7..6eb65c41ca9096 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
@@ -59,7 +59,7 @@ L'exemple suivant définit le fichier texte "MonDoc.txt" comme type de destinati
| | |
| --- | --- |
| Numéro de commande | 745 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
index 8ca39905b226f8..d926e0ad3a021e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
@@ -40,7 +40,7 @@ Si la valeur du paramètre *propriété* ou *valeur* est incorrecte, l’erreur
| | |
| --- | --- |
| Numéro de commande | 772 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
index 8ff706506de50b..b788b4dfb42301 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
@@ -60,7 +60,7 @@ L'instruction suivante place le libellé “Titre du centre” dans l'en-tête d
| | |
| --- | --- |
| Numéro de commande | 774 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
index 1b003366c55f38..f60471f0dce27e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
@@ -74,7 +74,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 750 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
index bb58dc8873163c..d0506368d07d15 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
@@ -110,7 +110,7 @@ Si le paramètre *numColonne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 765 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
index a687a216677920..a29f91a0e1342f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
@@ -57,7 +57,7 @@ L'instruction suivante masque le contenu de la ligne Détail :
| | |
| --- | --- |
| Numéro de commande | 763 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
index 3a61f739fa070b..39c836623eb317 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
@@ -39,7 +39,7 @@ Si la valeur de *type* est incorrecte, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 738 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
index 19e566800272ec..95408d055a3918 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ Si le paramètre *numTable* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 757 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
index ef37a50575f37a..879ce33f1b1677 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 794 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
index 79e3b79b37b847..3f3b2b30199b52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 752 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
index 4fd6fb8cb3a1ce..68ee2cf84a8637 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Cette méthode définit plusieurs attributs pour l'intitulé de la première col
| | |
| --- | --- |
| Numéro de commande | 759 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
index 704d89c541c64f..e40caba406f360 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
@@ -101,7 +101,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 767 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
index da5f239420599d..98cc184ac522a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 761 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
index fd62c5cf520e20..6b70485b21c2ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
@@ -415,7 +415,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 1331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
index 39b261e8a8bc4b..86ce887973144b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Valider ou appuie sur la touche Entrée, l
| | |
| --- | --- |
| Numéro de commande | 292 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
index 0b47c42e65b776..bc10c9de537090 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
@@ -86,7 +86,7 @@ Dans cet exemple, on utilise une jointure pour rechercher toutes les lignes de f
| | |
| --- | --- |
| Numéro de commande | 48 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
index eb04fca59c1dfa..dfef66912dfb28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
@@ -163,7 +163,7 @@ Si le format de la condition de recherche est correct, la variable système OK p
| | |
| --- | --- |
| Numéro de commande | 942 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
index 923d4aa9384664..b679b652fc420a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ Vous souhaitez trouver les personnes âgées entre 20 et 30 ans parmi les enregi
| | |
| --- | --- |
| Numéro de commande | 1424 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
index ebbeb4a2fba889..6df25916b0550f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Pour plus d'informations, reportez-vous à la description de la commande [QUERY
| | |
| --- | --- |
| Numéro de commande | 207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
index f96120b9a10599..449e025fa073f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Pour plus d’informations, reportez-vous à la description de la commande [QUER
| | |
| --- | --- |
| Numéro de commande | 1050 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
index d445b6aad31e2f..e829cb8f52d423 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Vous trouvez donc toutes les sociétés basées à Paris, dont l'activité est b
| | |
| --- | --- |
| Numéro de commande | 341 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
index fbd4b330172e12..9ffe6ee71b5d8b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ Cet exemple permet de récupérer les enregistrements des clients français et a
| | |
| --- | --- |
| Numéro de commande | 644 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
index aae4c451e4279d..54dc2b93e5cbec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
@@ -314,7 +314,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
index 74dcb944478538..cb612802066884 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
@@ -70,6 +70,6 @@ La méthode projet suivante est associée à la commande **Quitter** du menu **F
| | |
| --- | --- |
| Numéro de commande | 291 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
index a7557d9170a542..5c0691c40f61d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
@@ -39,6 +39,6 @@ L'exemple suivant assigne une valeur entière aléatoire entre 10 et 30 à la va
| | |
| --- | --- |
| Numéro de commande | 100 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
index 0189c9977ec0e9..72f05262fc7c9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ L'exemple suivant teste le statut de la table \[Factures\]. Si elle est en lectu
| | |
| --- | --- |
| Numéro de commande | 362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
index e51d8015b64d1a..2d80ddc5891bdb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Vous pouvez utiliser **READ ONLY** lorsqu'il n'est pas utile de modifier les enr
| | |
| --- | --- |
| Numéro de commande | 145 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
index 3c374b30f9dc7f..0dfdb9f55b3f34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
@@ -46,7 +46,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 678 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
index e58edb69075a80..c207010fb176de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilisez **READ WRITE** lorsque vous devez modifier un enregistrement et sauvega
| | |
| --- | --- |
| Numéro de commande | 146 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
index aecf6ba1e592fd..0f29fd1c5ffbca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
@@ -139,6 +139,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 552 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
index c2ef18e8be2c32..9c40a44f8b68bd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
@@ -70,7 +70,7 @@ Notez que l'accès à la variable interprocess *◊vtBuffer* doit être protég
| | |
| --- | --- |
| Numéro de commande | 172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
index 77acf5760e5fa1..c402c6fb6e2069 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
@@ -118,7 +118,7 @@ Après un appel à **RECEIVE PACKET**, la variable système OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 104 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
index 3b74e483faf34d..10a9edd057447f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
@@ -158,7 +158,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est correctement r
| | |
| --- | --- |
| Numéro de commande | 79 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
index 4cf22f80e935f1..3fc58a4ad1a109 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
@@ -45,7 +45,7 @@ La variable système OK prend la valeur 1 si la variable est correctement reçue
| | |
| --- | --- |
| Numéro de commande | 81 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
index 52651b98757e07..ae8b576018ed3e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
@@ -50,6 +50,6 @@ L'exemple suivant sauvegarde le numéro d'enregistrement courant puis cherche da
| | |
| --- | --- |
| Numéro de commande | 243 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
index 1dcaa0a618df73..8a98ff78838d4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ L'exemple suivant propose une technique de boucle couramment utilisée pour se d
| | |
| --- | --- |
| Numéro de commande | 76 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
index 38e36f92bf5abc..121f04a88668c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte qui indique le pourcen
| | |
| --- | --- |
| Numéro de commande | 195 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
index 2efe71f3d4bc2c..f61d1c20a33ad8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ L'exemple suivant affiche une alerte indiquant le nombre d'enregistrements de la
| | |
| --- | --- |
| Numéro de commande | 83 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
index 9ed7c04b92b2be..7b8bbe15116be7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Si vous omettez le paramètre *fenêtre*, **REDRAW WINDOW** s'appliquera à la f
| | |
| --- | --- |
| Numéro de commande | 456 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
index cc6524e1980c1b..51a5b949a222f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ Dans le contexte des list box en mode sélection, l’instruction **REDRAW** app
| | |
| --- | --- |
| Numéro de commande | 174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
index 4421ea5eb8182a..5264b063234264 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ La commande permet de basculer l'état de la fenêtre :
| | |
| --- | --- |
| Numéro de commande | 1829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
index 357a7dc24d8015..9696fd7d3e2d7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
@@ -64,7 +64,7 @@ L'exemple suivant établit des statistiques pour une compétition mondiale parmi
| | |
| --- | --- |
| Numéro de commande | 351 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
index d1cef330ed75d6..f5ef4fa4b6b0b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Vous souhaitez mettre à jour votre licence et recevoir un message à la fin de
| | |
| --- | --- |
| Numéro de commande | 1336 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
index cd686fadeeca17..169bede33b705b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Cette méthode regénère toutes les tables manquantes éventuellement présente
| | |
| --- | --- |
| Numéro de commande | 1126 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
index 7580d763a26ccc..f97b8f864d71dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
@@ -124,7 +124,7 @@ Si le poste client est correctement inscrit, la variable système OK prend la va
| | |
| --- | --- |
| Numéro de commande | 648 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
index 2e3d1798686b8d..ff896884dcecee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ Passez le paramètre *phraseSecrèteCour* ou *cléDonnéesCour*, qui définit la
| | |
| --- | --- |
| Numéro de commande | 1638 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
index 362e42e537b98e..01443f44ca3b73 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Vous souhaitez rejeter puis accepter les nouvelles connexions distantes :
| | |
| --- | --- |
| Numéro de commande | 1635 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
index da92414d492099..958b4b746c0ae9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
@@ -68,6 +68,6 @@ L'exemple suivant est une partie de la méthode objet d'un champ *\[Employés\]S
| | |
| --- | --- |
| Numéro de commande | 38 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
index 4cfc3f0fde8810..b82722669a192b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ Prenons l'exemple d'une base de données comportant une table *\[Factures\]* don
| | |
| --- | --- |
| Numéro de commande | 340 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
index f6d5b8bcdc2acd..97e9cc6f01ac6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
@@ -66,7 +66,7 @@ Par exemple, la méthode suivante effectue une boucle sur chaque enregistrement
| | |
| --- | --- |
| Numéro de commande | 262 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
index 2edbf1b376381d..528ec902de60b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
@@ -62,7 +62,7 @@ L'exemple suivant parvient au même résultat que le précédent :
| | |
| --- | --- |
| Numéro de commande | 349 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
index 0ef11c992579a0..b4c79f22adcf69 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
@@ -90,7 +90,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 42 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
index 2d9b321f0257ec..4f5e9adb572565 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Cet exemple illustre les cas d'utilisation de cette commande :
| | |
| --- | --- |
| Numéro de commande | 978 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
index 7f252b34000667..953b06edbe6537 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ Il est alors nécessaire de demander le rechargement des données à l'aide de l
| | |
| --- | --- |
| Numéro de commande | 1135 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
index 314f7781c50a40..e53060bebcea93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Lorsque la commande est appelée depuis :
| | |
| --- | --- |
| Numéro de commande | 1739 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
index 546ed58c343c47..bdd6533ca07da1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 561 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
index 8f399b3271e64e..e10596d6416377 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
@@ -60,7 +60,7 @@ L’exemple suivant supprime de la bibliothèque d’images celles dont le nom c
| | |
| --- | --- |
| Numéro de commande | 567 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
index 163647b04a9f00..66853aef9f734a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
@@ -75,6 +75,6 @@ L'exemple suivant illustre le rôle du paramètre \* dans le cadre d'une évalua
| | |
| --- | --- |
| Numéro de commande | 233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
index b622d8818c2f43..2219a7fd8eee38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
@@ -84,7 +84,7 @@ La ligne de code :
| | |
| --- | --- |
| Numéro de commande | 163 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
index 9d8cad76aad25f..0f4c6c3244993c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
@@ -53,6 +53,6 @@ Après l'exécution de cette ligne :
| | |
| --- | --- |
| Numéro de commande | 890 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
index 189a19c3fb3c24..d0164cbf586710 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
@@ -38,7 +38,7 @@ Si *cheminAlias* désigne bien un alias/raccourci, la variable système OK prend
| | |
| --- | --- |
| Numéro de commande | 695 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
index 1c628e461ea489..d28bc69eab307d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
@@ -111,6 +111,6 @@ Voici un exemple de pointeur vers un tableau 2D :
| | |
| --- | --- |
| Numéro de commande | 394 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
index 218d9a744ab4e3..46ab32fe6a9808 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ L'exemple suivant copie dans la bibliothèque d'images de la base les ressources
| | |
| --- | --- |
| Numéro de commande | 500 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
index 3f7307b11ad527..a0977dffde722c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
@@ -85,6 +85,6 @@ Une fois que cette méthode est implémentée dans votre base, vous pouvez écri
| | |
| --- | --- |
| Numéro de commande | 499 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
index d3fde196bc63c5..e65bd670217604 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1292 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
index 869db4504471cd..e120fb676d244d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
@@ -42,6 +42,6 @@ Le type et le contenu des paramètres *info1* et *info2* dépendent de la valeur
| | |
| --- | --- |
| Numéro de commande | 889 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
index ef914d0379f5d3..ddf229692a5ee4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
@@ -39,7 +39,7 @@ La commande **RESTORE** modifie la valeur des variables *OK* et *Document* : si
| | |
| --- | --- |
| Numéro de commande | 918 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
index 7715c876dabaeb..71c1b4f590d026 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ La commande **RESUME INDEXES** ne peut être appelée que depuis 4D Server ou un
| | |
| --- | --- |
| Numéro de commande | 1294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
index 0297eaf417139c..31be59892eec13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Si *process* a été suspendu, référez-vous aux commandes [PAUSE PROCESS](paus
| | |
| --- | --- |
| Numéro de commande | 320 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
index 24eaea6703acdd..80db79c7d914fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1386 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
index ba3be9a0236bdf..5391b0042de27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Cette commande doit être appelée uniquement dans le cadre de l’événement f
| | |
| --- | --- |
| Numéro de commande | 712 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
index 876bea29a3ec07..97a2396bfc71cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
@@ -43,6 +43,6 @@ L'exemple suivant illustre la manière dont Arrondi fonctionne dans différents
| | |
| --- | --- |
| Numéro de commande | 94 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
index 5b7efe8f0a5fe5..955016b37a76fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Si une énumération de même nom existe déjà, son contenu est remplacé.
| | |
| --- | --- |
| Numéro de commande | 384 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
index 48fa5d73b24645..6085116c31f99a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ L'exemple suivant est une partie d'une méthode récupérant des enregistrements
| | |
| --- | --- |
| Numéro de commande | 53 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
index 72244f8281736c..f4423e3d024286 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 43 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
index cb29e536d8dd78..bfde6c1a19266a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Annuler dans la boîte de dialogue standar
| | |
| --- | --- |
| Numéro de commande | 184 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
index 18457843828993..727b814669e1a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Si l'opération s'est correctement déroulée, la variable OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 75 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
index 93f6fa2e07425f..112a37353f004d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
@@ -53,7 +53,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 857 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
index ed30ed70e74ed2..83c07d2c00b48f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 856 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
index 85e0dfd7fbd385..0b0d7281b5324a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 852 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
index bcc164c2e7ba9b..a2414aa004fec5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 851 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
index 44edabf1f0475a..fc2afbd060c5c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
@@ -57,7 +57,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 855 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
index b983af10d51600..b09db28a1343f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ Si le dernier élément ouvert est **, l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 854 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
index e3d2d3c3c42fb1..61187012925c07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 878 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
index e437e6c686f2d0..c7e91ca2a5430c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 874 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
index 17977a7cecf67e..8e033c435ff60a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 873 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
index 87795008e67af1..abde7a6553c829 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 877 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
index 123dfcaf734d3b..1608594760bd0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 876 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
index fe55ddeaf3f3d0..28efad79a14b39 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 879 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
index 414cb10691cd9a..ddb955c05e6536 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 860 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
index 8d22fab5279282..086c84355cc885 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ L’instruction suivante retournera “PI” dans *vNom* et “TextProcess” da
| | |
| --- | --- |
| Numéro de commande | 875 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
index 8c1443fe95fc32..10c7321d04f628 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
@@ -59,6 +59,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 921 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
index cd79456077d18a..b47b7cc4546b54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ Si un caractère invalide est passé dans *balise*, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 853 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
index 2f53bc968728bf..8b4c4f3139dc61 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 858 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
index 3d1ee83f383e4f..9dee99548228a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
@@ -56,7 +56,7 @@ L'exemple suivant envoie des lettres aux 50 plus mauvais clients puis aux 50 mei
| | |
| --- | --- |
| Numéro de commande | 350 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
index fce1ea5484475e..980d52b060e4c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ Les images suivantes illustrent les différences entre la zone de l'écran et la
| | |
| --- | --- |
| Numéro de commande | 438 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
index 0fa170155f2302..577704370f64d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
@@ -61,6 +61,6 @@ Votre application affiche de nombreux graphiques en couleurs. Vous pouvez écrir
| | |
| --- | --- |
| Numéro de commande | 439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
index 7de8f874867dea..d4bb22b2ce0f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen height** retourne la hauteur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
index 585505f2521652..844e5ac2751141 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen width** retourne la largeur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
index 29c0deee7139a0..d490e62f3fcdfb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
@@ -102,7 +102,7 @@ Si aucun fichier n’a été sélectionné (par exemple si l’utilisateur a cli
| | |
| --- | --- |
| Numéro de commande | 905 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
index 310d0b52cee0b1..36eabe836c4c60 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
@@ -89,7 +89,7 @@ L’exemple suivant permet de sélectionner le dossier dans lequel toutes les im
| | |
| --- | --- |
| Numéro de commande | 670 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
index 44097ed6c1de2d..0fe03c9380f7bd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
@@ -77,6 +77,6 @@ Après l'exécution des lignes de code suivantes :
| | |
| --- | --- |
| Numéro de commande | 381 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
index d2e75d5a33457e..02ca36e258ca8c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ En supposant que *hList* est une liste dont les éléments ont des numéros de r
| | |
| --- | --- |
| Numéro de commande | 630 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
index 4703d50d689625..5ab853214854ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
@@ -45,7 +45,7 @@ La prise en compte de la validation de la boîte de dialogue diffère selon la p
| | |
| --- | --- |
| Numéro de commande | 956 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
index 1882bf7e777000..fe50df31c3e0d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
@@ -89,6 +89,6 @@ Voici la liste *hList* telle qu'elle apparaît en mode Application :
| | |
| --- | --- |
| Numéro de commande | 379 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
index 41da8adce01097..d08b4294e5f3a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
@@ -44,6 +44,6 @@ L'exemple suivant stocke le numéro de l'enregistrement courant de la sélection
| | |
| --- | --- |
| Numéro de commande | 246 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
index 379d0325c5226a..c3b625dcfab8f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
@@ -112,6 +112,6 @@ Utilisation des 50 premiers enregistrements courants de la table \[Factures\] po
| | |
| --- | --- |
| Numéro de commande | 368 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
index c6883940736771..5816882e40c032 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
@@ -83,6 +83,6 @@ Le même exemple peut être écrit :
| | |
| --- | --- |
| Numéro de commande | 260 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
index acea370df30a1c..2fb7667559b0b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
@@ -95,6 +95,6 @@ Vous utilisez la syntaxe avec *template* afin d'exporter des champs de différen
| | |
| --- | --- |
| Numéro de commande | 1234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
index 771682815cff71..35a7b6c5f60599 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
@@ -44,6 +44,6 @@ Référez-vous à l'exemple de la commande [RESOLVE POINTER](resolve-pointer.md)
| | |
| --- | --- |
| Numéro de commande | 308 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
index 65bf4bcba18d9c..b67756d9eaf80a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
@@ -154,6 +154,6 @@ Syntaxe :
| | |
| --- | --- |
| Numéro de commande | 143 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
index ee583bc04b836a..b2d95fab61172d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ Vous souhaitez envoyer un message à tous les utilisateurs, puis à un utilisate
| | |
| --- | --- |
| Numéro de commande | 1632 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
index ba5d7f701bca73..9efb9664658011 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
@@ -87,6 +87,6 @@ Cet exemple illustre l’envoi et la récupération de caractères étendus via
| | |
| --- | --- |
| Numéro de commande | 103 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
index da733a5aec5f64..1f5abcb191b904 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 78 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
index dacf5954fb242b..d82dc736c6ebe6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 80 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
index cb8056833af79b..942132f7bd4939 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
@@ -62,6 +62,6 @@ L'exemple suivant fait partie d'une méthode formulaire. Ces lignes de code test
| | |
| --- | --- |
| Numéro de commande | 244 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
index fc4c5768795450..9169fa9d47726e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ L'exemple suivant réinitialise la commande de menu d'A propos de 4D :
| | |
| --- | --- |
| Numéro de commande | 316 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
index 2bed32aaa681da..045366afe130d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1762 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
index 09b2d2e3ae4848..ee2145872e44f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Désactivation globale des assertions :
| | |
| --- | --- |
| Numéro de commande | 1131 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
index e5cd45cfb6d325..55ee57aecbec95 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ L'exemple suivant rend tous les liens N vers 1 automatiques et rétablit en manu
| | |
| --- | --- |
| Numéro de commande | 310 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
index 9a0d20b2781c53..216b6bb9da0d79 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ L'exemple suivant crée un BLOB de 16 Ko et remplit chaque octet avec la valeur
| | |
| --- | --- |
| Numéro de commande | 606 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
index adc3387304cbdd..03b3edb3cb7431 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les "blobs" de la
| | |
| --- | --- |
| Numéro de commande | 1425 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
index 3ce0d8469b5ade..f3ce4af6b1bd0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Vous voulez ajouter 100 Mo à la taille du cache de votre base. Vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 1399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
index bb03470410e233..3357adab13583e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
@@ -177,7 +177,7 @@ Reportez-vous aux exemples des commandes [RECEIVE BUFFER](receive-buffer.md), [S
| | |
| --- | --- |
| Numéro de commande | 77 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
index 31a628299afc3e..8638c6a314e6fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
@@ -70,7 +70,7 @@ Création d'un document PDF sous Windows :
| | |
| --- | --- |
| Numéro de commande | 787 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
index 60e56de25d5008..76a16411fdfabe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ Vous souhaitez que le curseur se transforme en .
| | |
| --- | --- |
| Numéro de commande | 385 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
index 45586fd99cd664..ea931bf26f430d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
@@ -65,6 +65,6 @@ Vous souhaitez interdire le déploiement/contraction sur double-clic. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 387 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
index 01de6d421090ee..5324589a422b33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
@@ -62,6 +62,6 @@ Cette macro construit un nouveau texte qui sera retourné à la méthode appelan
| | |
| --- | --- |
| Numéro de commande | 998 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
index 08b8a13ef1ffd5..cb47fbd8998624 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
@@ -121,6 +121,6 @@ Dans cet exemple complet, nous allons créer par programmation une barre comport
| | |
| --- | --- |
| Numéro de commande | 67 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
index 360a0f084a1160..61d7ad5aa3b46b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
@@ -50,6 +50,6 @@ Utilisation d'une image se trouvant dans le dossier Resources de la base :
| | |
| --- | --- |
| Numéro de commande | 984 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
index c8ba5d23208d99..3773199817e835 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
@@ -43,7 +43,7 @@ Reportez-vous à l'exemple de la commande [Get menu item mark](get-menu-item-mar
| | |
| --- | --- |
| Numéro de commande | 208 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
index 0c04b7c3605ac6..5f4706995240cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
@@ -40,6 +40,6 @@ Reportez-vous aux exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 982 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
index 36544d5b0d0635..d49544ed46a4ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Ce code permet de proposer un menu comportant le libellé des fenêtres ouvertes
| | |
| --- | --- |
| Numéro de commande | 1004 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
index afc121a8bd05e8..8139c20787bcd1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
@@ -63,6 +63,6 @@ Pour plus d’informations sur les propriétés standard des lignes de menus, re
| | |
| --- | --- |
| Numéro de commande | 973 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
index eb68ce80c1b280..39dd5daeb5ffbd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
@@ -85,7 +85,7 @@ Définition du raccourci F4 pour l'élément de menu "Fermer" :
| | |
| --- | --- |
| Numéro de commande | 423 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
index 1e7e926ab1ba2b..22811401771735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
@@ -42,7 +42,7 @@ Vous pouvez définir le style de l'élément dans le paramètre *styleLigne*. Vo
| | |
| --- | --- |
| Numéro de commande | 425 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
index 0335865a7bdf1e..dd771833340c5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **SET MENU ITEM** s'applique à la barr
| | |
| --- | --- |
| Numéro de commande | 348 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
index 640e2708c506f2..18664edddbff5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ Le nom par défaut est utilisé comme nom de fichier en cas d’exportation de l
| | |
| --- | --- |
| Numéro de commande | 1172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
index 8c4dab211037cb..093227986bf27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
@@ -86,7 +86,7 @@ Lorsque toutes les métadonnées sont manipulées via une référence d’élém
| | |
| --- | --- |
| Numéro de commande | 1121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
index 3e5639fe584e07..134f24caa1b2f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
@@ -104,7 +104,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 566 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
index be63ac14b7bf6d..3cb729a0f92704 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
@@ -52,7 +52,7 @@ Si une copie de l'image est correctement collée dans le conteneur, la variable
| | |
| --- | --- |
| Numéro de commande | 521 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
index 3fc3849dd2203b..9ab940651182bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Passez dans le paramètre *groupe* le nom du groupe dont les utilisateurs seront
| | |
| --- | --- |
| Numéro de commande | 845 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
index 40ee6251a7ecec..d293bfec702ae7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
@@ -186,6 +186,6 @@ La méthode du formulaire Print\_List3 est la suivante :
| | |
| --- | --- |
| Numéro de commande | 709 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
index af21c3042eff48..4d9d3bc691b4fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
@@ -84,7 +84,7 @@ Si la valeur passée pour une *option* est invalide ou si elle n'est pas disponi
| | |
| --- | --- |
| Numéro de commande | 733 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
index 9495771e549d70..98066b97a7b873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ L'exemple suivant sélectionne l'option **A l'écran** pour afficher le résulta
| | |
| --- | --- |
| Numéro de commande | 364 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
index 9e142081649b14..c976b2f5b466f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ L’exemple suivant permet d’obtenir la taille du papier :
| | |
| --- | --- |
| Numéro de commande | 710 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
index db3ada98a67faa..ef06d7a6441dbe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
@@ -103,6 +103,6 @@ L'exemple suivant écrit l'instance des variables *v1*, *v2*, *v3* dans le proce
| | |
| --- | --- |
| Numéro de commande | 370 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
index aaba2cf5759754..a9e4c638616e81 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Si la commande est appelée hors du contexte d’une transaction, une erreur est
| | |
| --- | --- |
| Numéro de commande | 661 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
index 917e9d94763006..dd3f1628e15053 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ Lorsque cette méthode est implémentée dans votre application, vous pouvez éc
| | |
| --- | --- |
| Numéro de commande | 396 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
index ab9b5960e02699..86a73aa2d969ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Référez-vous au deuxième exemple de la commande [SET QUERY DESTINATION](set-q
| | |
| --- | --- |
| Numéro de commande | 395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
index 9974774985b544..37377fefe67a47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Modifier l'epsilon affecte seulement la comparaison d'égalité des réels. Cela
| | |
| --- | --- |
| Numéro de commande | 623 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
index 98b55443af2960..8552c904a7e4bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Le menu contient alors :
| | |
| --- | --- |
| Numéro de commande | 1305 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
index 8f77540e51f248..baf14ae1b95d67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les données scala
| | |
| --- | --- |
| Numéro de commande | 1400 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
index c1b5064c15a974..d7c15bb4df17ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
@@ -181,6 +181,6 @@ Vous voulez supprimer tous les noms de tables et de champs personnalisés défin
| | |
| --- | --- |
| Numéro de commande | 601 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
index 0cea7ee4d9c295..a54cc4911d0464 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Si la copie du texte est correctement placée dans le conteneur de données, la
| | |
| --- | --- |
| Numéro de commande | 523 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
index 9d495a24e55a70..6dd0721a920113 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ L'exemple suivant fixe le port série devant recevoir des données et le timeout
| | |
| --- | --- |
| Numéro de commande | 268 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
index 39d4d832ab65da..e927bab43e19dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Vous souhaitez que, lorsqu’un formulaire est affiché à l’écran, un bip so
| | |
| --- | --- |
| Numéro de commande | 645 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
index 856065b4ebcbc0..890eb9b25f4204 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
@@ -61,7 +61,7 @@ Vous avez créé un dossier "MesMisesAJour" sur votre disque, dans lequel vous a
| | |
| --- | --- |
| Numéro de commande | 1291 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
index cac407cb6360a9..c066186011e593 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Vos utilisateurs sont gérés via une table personnalisée et utilisent le même
| | |
| --- | --- |
| Numéro de commande | 1666 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
index 61e19f425c1fa6..cc3cffbbaf4785 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
@@ -66,6 +66,6 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Set user properties**
| | |
| --- | --- |
| Numéro de commande | 612 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
index 90b788c3f601b2..2562daade0969a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
@@ -64,6 +64,6 @@ La fenêtre apparaît ainsi :
| | |
| --- | --- |
| Numéro de commande | 444 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
index a58c6f93c854f2..13e163cec2d212 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Vous effectuez une saisie dans un formulaire et vous cliquez sur un bouton qui d
| | |
| --- | --- |
| Numéro de commande | 213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
index cec028ca507a10..424b2e9a7eee80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ La méthode objet du bouton *bUnBouton* effectue des actions différentes en fon
| | |
| --- | --- |
| Numéro de commande | 543 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
index 2fe5412d247c23..d44c23fbb728a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Reportez-vous à l'exemple de la commande [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 431 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
index 6b91503ca84d89..780dce3b88782c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
@@ -53,7 +53,7 @@ La variable système OK prend la valeur 1 si la commande est correctement exécu
| | |
| --- | --- |
| Numéro de commande | 922 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
index c3a06f65cc6cfa..840395bbef47c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
@@ -38,6 +38,6 @@ L'exemple suivant affiche le process "Clients", s'il était caché auparavant. L
| | |
| --- | --- |
| Numéro de commande | 325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
index 55800bddf79bb8..3e8c15e00b947b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Reportez-vous à l'exemple de la commande [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Numéro de commande | 433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
index a76d2fc6d28e9c..9b823f8cf78b0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Voir l'exemple de la commande [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Numéro de commande | 435 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
index 9b37516099b570..7ae4a3cd328562 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 17 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
index f94ab60f534f31..af6e41283efe4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ L'exemple suivant retourne le nombre de colonnes d'une ligne d'un tableau à deu
| | |
| --- | --- |
| Numéro de commande | 274 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
index c53706657f2da4..05e72e3f53914e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
@@ -184,6 +184,6 @@ Cet exemple illustre l'effet des différents types de déclarations :
| | |
| --- | --- |
| Numéro de commande | 782 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
index 8ccbbda19888c0..e3c89b1e783cf8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ Passez dans le paramètre *numInfo* le numéro du type d’information SOAP à c
| | |
| --- | --- |
| Numéro de commande | 784 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
index bbac832191a062..0133c3fe499e6d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
@@ -42,6 +42,6 @@ Vous souhaitez rejeter les nouvelles requêtes reçues par votre serveur Web Ser
| | |
| --- | --- |
| Numéro de commande | 1636 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
index 14f33327da4ad4..c28b0e977f3040 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Cette commande peut être utilisée pour des raisons de sécurité dans la *Mét
| | |
| --- | --- |
| Numéro de commande | 783 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
index 7643ffe34bf4f6..2ca7177cb0e6e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
@@ -49,6 +49,6 @@ Pour reprendre l’exemple du Web Service “Racine\_carree” fourni dans la de
| | |
| --- | --- |
| Numéro de commande | 781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
index 7b19568d2f6ed0..23467e16488a9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ Vous affichez les noms d'une table \[Personnes\] dans une fenêtre flottante. Ce
| | |
| --- | --- |
| Numéro de commande | 229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
index 9994f3170ab1ab..18b51c1a1dbb42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
@@ -61,6 +61,6 @@ Après l'exécution du code suivant :
| | |
| --- | --- |
| Numéro de commande | 391 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
index 19638963a039f6..f468d7394e3a7b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Ajout de noms propres au dictionnaire utilisateur :
| | |
| --- | --- |
| Numéro de commande | 1214 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
index f7db32f24aeb4a..f996a0dcf88bc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
@@ -59,7 +59,7 @@ On souhaite compter le nombre de fautes potentielles dans un texte :
| | |
| --- | --- |
| Numéro de commande | 1215 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
index d9407f03e2160d..7c4f5069573194 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La vérification débute par le premier mot du champ ou de la variable. Si un mo
| | |
| --- | --- |
| Numéro de commande | 900 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
index 8b4c9d688b85a6..61f937d88c9cc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ On souhaite afficher la langue du dictionnaire courant :
| | |
| --- | --- |
| Numéro de commande | 1205 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
index 7fc661c6238595..dd2fcf6bf9a693 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Vous avez placé "fr-classique+reforme1990.aff" et "fr-classique+reforme1990.dic
| | |
| --- | --- |
| Numéro de commande | 1204 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
index 05de53cdae08bf..ef359870e3868d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Chargement du dictionnaire "fr-classique" présent dans le dossier Hunspell :
| | |
| --- | --- |
| Numéro de commande | 904 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
index ad5be4d801d28a..3a921b92f03743 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ Le paramètre *séparateur* peut être une chaîne de plusieurs caractères :
| | |
| --- | --- |
| Numéro de commande | 1554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
index cb7a5058edf437..764e3ea9ebbe7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 824 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
index 28d0608ee13994..be1bc4e4952bc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Cet exemple retournera dans la variable 4D *vName* les noms (ename) stockés dan
| | |
| --- | --- |
| Numéro de commande | 821 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
index cbf52994d645dd..e44a322ecb71af 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
@@ -63,7 +63,7 @@ Si le script est correctement exécuté (aucune erreur rencontrée), la variable
| | |
| --- | --- |
| Numéro de commande | 1089 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
index 92602b30d2c065..67dbaf85ce051c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
@@ -164,7 +164,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 820 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
index 5ef13b96a46191..b7c6129fa718a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1065 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
index 54af65415dbda7..2e13cacbb4b98d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1064 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
index e7018320e12099..73a9b45697103b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ Cette commande vous permet de contrôler la source de données courante, génér
| | |
| --- | --- |
| Numéro de commande | 990 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
index 75df4dc3c93de0..44ce11dee2bfc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ Si la commande est correctement exécutée, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 989 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
index dd5acffd1f2985..470bc2460d1a58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ Les deux derniers paramètres ne sont remplis que si l’erreur provient de la s
| | |
| --- | --- |
| Numéro de commande | 825 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
index 541663470f20d7..456ecbe8c46093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 819 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
index 3be6310f9ad3f5..521735f3333c2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 822 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
index ca8257c8a73a3d..72e1c934fc73ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
@@ -209,7 +209,7 @@ Si la connexion est correctement établie, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 817 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
index e47b95a7ea8934..23ec3cb5914ee7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la connexion a été correctement refermée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 872 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
index 20ca5c9069d367..808dbcdf649fd0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
@@ -50,7 +50,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 818 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
index 83789318995b52..1bce00f8d26c2c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
@@ -83,7 +83,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 823 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
index 1917ad1acd7a50..b668fb00415cb2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Par exemple, Hypoténuse (4;3) retourne 5.
| | |
| --- | --- |
| Numéro de commande | 539 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
index 66bff789840310..4639d6fb433e34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
@@ -73,7 +73,7 @@ Vous souhaitez mettre à jour les références incluses dans la sélection de te
| | |
| --- | --- |
| Numéro de commande | 1285 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
index 15dcacaf1c5ba6..3396aee3276001 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
@@ -71,6 +71,6 @@ Vous souhaitez insérer l’heure courante au début du texte et la figer avant
| | |
| --- | --- |
| Numéro de commande | 1282 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
index d1d2605d4ac893..a87edd8d04e46b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
@@ -104,7 +104,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1094 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
index 2e415b03ebd535..96929d6cae55ed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
@@ -107,7 +107,7 @@ Vous souhaitez afficher des commandes d’un menu contextuel en fonction du type
| | |
| --- | --- |
| Numéro de commande | 1286 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
index 3f7cc98d6b9dca..0a7ffeaa2fe3b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ Vous souhaitez exécuter une méthode 4D en réponse à un clic sur un lien util
| | |
| --- | --- |
| Numéro de commande | 1287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
index 7c41b8e3e25791..f05ab37b59d41c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Passez dans *option* le code de l’option à lire. La commande retourne dans *v
| | |
| --- | --- |
| Numéro de commande | 1290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
index d0840f0df9b9d9..5b76c710b406ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
@@ -113,7 +113,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1092 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
index f24c9a4a8a1699..25c1a9cc628604 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
@@ -65,7 +65,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1116 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
index f8dcdd105c6a01..69a548d2d3de8c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
@@ -76,6 +76,6 @@ Sur un événement double-clic, vous vérifiez que vous êtes bien en présence
| | |
| --- | --- |
| Numéro de commande | 1288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
index 5884c01b7b3b3a..c416cf2c7784b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
@@ -90,7 +90,7 @@ Vous souhaitez remplacer le texte sélectionné par la valeur d'un champ :
| | |
| --- | --- |
| Numéro de commande | 1281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
index 3d6df2d01347b5..4857b5699ae045 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ Vous souhaitez insérer un lien vers le site Web de 4D à la place de la sélect
| | |
| --- | --- |
| Numéro de commande | 1280 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
index ff0d3e85d5c390..b53126e4ed993b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
@@ -106,7 +106,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1093 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
index 9843f365d0dca4..4801c8c5136888 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ Le code suivant vous permet de basculer le mode d’affichage de la zone :
| | |
| --- | --- |
| Numéro de commande | 1289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
index 2eb7f207feb5e0..429aac464a4dd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1136 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
index af299f6b981b21..c8a752b66205f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Reportez-vous à l'exemple de la commande [ST SET PLAIN TEXT](st-set-plain-text.
| | |
| --- | --- |
| Numéro de commande | 1115 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
index de258931563616..ed980128deb89b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Vous souhaitez lancer/arrêter le suivi et revoir les activités de données 4D
| | |
| --- | --- |
| Numéro de commande | 1712 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
index d8349ada5a286e..e970fbbfdecc0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si le serveur SQL a été correctement lancé, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 962 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
index 5af3db1b934482..8d369e909df9ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions (
| | |
| --- | --- |
| Numéro de commande | 239 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
index 2efb5cb288e5d1..d42ab40d1eeec1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
@@ -66,6 +66,6 @@ Cet exemple vous permet d’obtenir l’écart type d’une série de valeurs pl
| | |
| --- | --- |
| Numéro de commande | 26 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
index 0770ead08b2ca6..4640a88e4494ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Numéro de commande | 1721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
index 1a6f69f4e75283..467490132a7c96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 963 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
index bf5663e565e626..d8b51cf34de249 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Cet exemple montre la manière standard de définir les valeurs de **Storage** :
| | |
| --- | --- |
| Numéro de commande | 1525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
index 9c34090cbf5f86..7bdc771aafeebc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
@@ -52,7 +52,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 511 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
index 95cf068fb3b5ac..7ab8ff19c52f02 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
@@ -165,6 +165,6 @@ Dans ce cas, le paramètre *format*, s'il est passé, est ignoré.
| | |
| --- | --- |
| Numéro de commande | 10 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
index 646fcccbd0a3da..2f7701c31e59f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
@@ -70,6 +70,6 @@ L’exemple suivant permet de savoir si la méthode est appelée depuis un compo
| | |
| --- | --- |
| Numéro de commande | 489 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
index 7ce2ee7c694efb..cfc75ecea2ba4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
@@ -69,6 +69,6 @@ La méthode projet suivante ajoute au tableau de type texte ou alpha, dont le po
| | |
| --- | --- |
| Numéro de commande | 12 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
index 0a07067943c6b4..65f42f56fe6763 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
@@ -62,6 +62,6 @@ La commande **Subtotal** permet d'afficher des calculs de sous-totaux dans des f
| | |
| --- | --- |
| Numéro de commande | 97 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
index e54b5d03ef44d8..bc8017997b97bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Cet exemple vous permet d’obtenir la somme des carrés des valeurs placées da
| | |
| --- | --- |
| Numéro de commande | 28 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
index 8ecc91f0fd0db1..1eb1b546696cce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
@@ -78,7 +78,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 1 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
index 21011e78734e92..41f0aae5a48bb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1385 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
index c45009b9fe4c3f..4f676ba0542947 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
@@ -58,6 +58,6 @@ L’exemple suivant permet d’afficher “Hello World” dans une image 4D :
| | |
| --- | --- |
| Numéro de commande | 1017 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
index 047673a6e83206..4d6527639f59ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -58,7 +58,7 @@ Si *objetImage* ne contient pas une image SVG valide, la commande retourne une c
| | |
| --- | --- |
| Numéro de commande | 1054 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
index 0fec41307ab9f8..6680965745f4c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
@@ -46,6 +46,6 @@ Tous les ID d’éléments dont le rectangle englobant est en intersection avec
| | |
| --- | --- |
| Numéro de commande | 1109 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
index 51e6db33044a31..3f2b6f8aad0c41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ Pour plus d’informations sur les attributs SVG, reportez-vous à la descriptio
| | |
| --- | --- |
| Numéro de commande | 1056 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
index cb5772025b3c3f..5ab358c7827bea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
@@ -100,7 +100,7 @@ Modification du contenu d’un élément de type texte :
| | |
| --- | --- |
| Numéro de commande | 1055 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
index 70798e209d76e1..fdbd3afd82cf13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ Si la commande est exécutée en-dehors du contexte d'un formulaire ou si un *ob
| | |
| --- | --- |
| Numéro de commande | 1108 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
index b6303f92cc7d8f..2c7f76026babd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
@@ -54,6 +54,6 @@ Vous passez dans *type* un code représentant le type de dossier. 4D fournit les
| | |
| --- | --- |
| Numéro de commande | 487 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
index d58cf75ba6e9e7..a7c56a69fc6ebd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
@@ -152,6 +152,6 @@ retourne un objet contenant les informations suivantes :
| | |
| --- | --- |
| Numéro de commande | 1571 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
index 9ea48a97259c23..b86ff7a7d7710b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Cette méthode de maintenance permet de demander le compactage du fichier de don
| | |
| --- | --- |
| Numéro de commande | 1127 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
index 62aa73c7e6cc92..1c0870ac988095 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ La méthode suivante est un exemple de méthode générique qui affiche les enre
| | |
| --- | --- |
| Numéro de commande | 256 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
index 9103755cf508d8..cf260eca450925 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
@@ -63,6 +63,6 @@ Dans l'exemple suivant, la variable *numTable* est égale au numéro de la table
| | |
| --- | --- |
| Numéro de commande | 252 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
index f7ea362c226a70..35603baf50802a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 19 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
index 27382eb039bea8..e7905fcadc455d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 486 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
index 37ffc6a398ca18..b55e7a3036c618 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
@@ -55,6 +55,6 @@ L'exemple suivant teste la présence du document “Journal” dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 476 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
index 415c51a202037d..c72f0271d847c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
@@ -51,6 +51,6 @@ Cet exemple permet de connaître l’état d’un traitement (en l’occurrence,
| | |
| --- | --- |
| Numéro de commande | 652 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
index 9cd258b8217e87..f8bdb96d447da5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
@@ -113,6 +113,6 @@ Vous devez imprimer dans une zone de 400 pixels de large un texte d’un maximum
| | |
| --- | --- |
| Numéro de commande | 1149 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
index 8e6e390518b251..4094db4d533e6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
@@ -111,6 +111,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
index 01ca0fd3040b8b..5a90d5dec333f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
@@ -86,6 +86,6 @@ Exemple permettant à l’utilisateur de désigner l’emplacement du fichier à
| | |
| --- | --- |
| Numéro de commande | 1237 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
index 81ce13831c41e8..552c5d8eb044a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Numéro de commande | 1805 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
index ce264987352ca4..07ddff4ca3c7be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Référez-vous à l'exemple de la fonction [Milliseconds](milliseconds.md).
| | |
| --- | --- |
| Numéro de commande | 458 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
index 1bba9a3fc262b9..62a6fc42ae72dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte avec le message “468
| | |
| --- | --- |
| Numéro de commande | 180 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
index 468c83213906f4..e3482855a7c9c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
@@ -57,6 +57,6 @@ Vous pouvez exprimer toute valeur numérique sous forme d’heure :
| | |
| --- | --- |
| Numéro de commande | 179 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
index 8a05db53cf500e..5d7e5142e20a47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1445 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
index 35b6fd1f1650a3..dbfd15b7109a7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1016 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
index a3fe56748c463d..400de2704cca7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
@@ -67,6 +67,6 @@ La méthode projet DEBUG est listée ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
index e61279526fb894..430b0ea949191a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 961 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
index 74f8b739fcfc12..65a648399536b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
@@ -77,6 +77,6 @@ Voici un exemple de recadrage (l’image est affichée dans le formulaire avec l
| | |
| --- | --- |
| Numéro de commande | 988 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
index 61b93e616150f5..faebe01971e9b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
@@ -57,6 +57,6 @@ Utilisez la fonction **Trigger event** pour structurer vos triggers comme ci-des
| | |
| --- | --- |
| Numéro de commande | 369 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
index 6d86aa9f72d4d6..d08222748477d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Reportez-vous à la description des *Triggers en cascade*.
| | |
| --- | --- |
| Numéro de commande | 398 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
index 3f5a410c485f62..615e7c38579988 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
@@ -44,6 +44,6 @@ Le numéro de table et d'enregistrement pour l'enregistrement concerné par l'é
| | |
| --- | --- |
| Numéro de commande | 399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
index 91d369a203f2b8..3027978cea601b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Vrai :
| | |
| --- | --- |
| Numéro de commande | 214 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
index a70ad6c542ac29..6885e2cfb72a37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ L'exemple suivant illustre la manière dont **Trunc** fonctionne dans différent
| | |
| --- | --- |
| Numéro de commande | 95 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
index 834a241ccf8bb3..f291b948af8c24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1051 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
index 6a5a54a747b723..271aa8b59fd237 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
@@ -151,6 +151,6 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 295 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
index 30418a5e49b1a9..6f11759121c6b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
@@ -64,6 +64,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 82 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
index ccda4c9c473135..2435c04a276a4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
@@ -56,6 +56,6 @@ L'exemple suivant ajoute des enregistrements à l'ensemble des meilleurs clients
| | |
| --- | --- |
| Numéro de commande | 120 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
index a486cf167f6141..836e2006ff04c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Si les enregistrements contiennent une quantité importante de données, de cham
| | |
| --- | --- |
| Numéro de commande | 212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
index 87a1998cc2a6bb..01d16d7eac6cce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Si le client est correctement désinscrit, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 649 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
index c3477365757ae6..56933253f13d77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Reportez-vous à l'exemple de [Lowercase](lowercase.md).
| | |
| --- | --- |
| Numéro de commande | 13 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
index daa2b31cf4e7d3..69da5ee374b7a0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 si le filtre est correctement chargé,
| | |
| --- | --- |
| Numéro de commande | 205 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
index 623a6e20b176b4..62e0184d12df2c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
@@ -36,7 +36,7 @@ Différents événements peuvent rendre une sélection temporaire obsolète : la
| | |
| --- | --- |
| Numéro de commande | 332 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
index 0e5ca85fd5591c..7b38300dffb06d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
@@ -43,7 +43,7 @@ L'exemple suivant utilise [LOAD SET](load-set.md) pour charger un ensemble des s
| | |
| --- | --- |
| Numéro de commande | 118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
index d4f3f3d7c7a9f3..674ab0c7f21b5b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ L'exemple suivant recherche des factures. Si l'utilisateur courant est dans le g
| | |
| --- | --- |
| Numéro de commande | 338 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
index a5f7269f45b938..13534c424b483a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
@@ -36,7 +36,7 @@ Ce principe permet de conserver une sauvegarde des utilisateurs parmi les donné
| | |
| --- | --- |
| Numéro de commande | 849 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
index 7470926e53ff77..6a3fcc93cebc9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ Dans la [On REST Authentication database method](on-rest-authentication-database
| | |
| --- | --- |
| Numéro de commande | 638 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
index cd6cb195c219a2..659e960dfa3fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
@@ -37,7 +37,7 @@ A noter que lorsque OK vaut 0, la transaction est automatiquement annulée en in
| | |
| --- | --- |
| Numéro de commande | 240 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
index 0e7924d6987593..0ad69836398e7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ Vous souhaitez obtenir la somme de toutes les valeurs numériques dans une colle
| | |
| --- | --- |
| Numéro de commande | 1509 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
index 7cae435c6f6b16..5e3bfcad3a6519 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
@@ -136,7 +136,7 @@ Lorsque ces méthodes ont été ajoutées à votre application, vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 532 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
index 33b23a8477d4f6..49ee2e520ee8d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
@@ -65,6 +65,6 @@ L'exemple suivant récupère un tableau process depuis le process désigné par
| | |
| --- | --- |
| Numéro de commande | 635 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
index 658908a908b523..f2cafd0796543e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Cet exemple vous permet d’obtenir la variance des valeurs placées dans un tab
| | |
| --- | --- |
| Numéro de commande | 27 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
index f3c87ad358415d..724aa6c518b00c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 1008 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
index ca87c17b217edd..71bf688dd32210 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
@@ -174,7 +174,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 939 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
index 13cf4529b0a02d..b4279af24eb536 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Cet exemple compare un hash de mot de passe créé par la commande [Generate pas
| | |
| --- | --- |
| Numéro de commande | 1534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
index 01359837a35611..d3336c26799b05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Ce test permet d’exécuter du code différent selon que la version est une app
| | |
| --- | --- |
| Numéro de commande | 495 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
index 01e40214b7bab6..9d8a8cc7c2521a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
@@ -103,7 +103,7 @@ Votre application comprend des opérations par lots qui sont exécutées la nuit
| | |
| --- | --- |
| Numéro de commande | 472 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
index 6b4576e045cb95..0450ae6390faa9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ A l'aide de la zone de défilement *ttVolumes*, vous voulez afficher la liste de
| | |
| --- | --- |
| Numéro de commande | 471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
index 1151266baab7f6..77bcb4cfcd9a01 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1026 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
index f1a15784dde80f..b0da98cde4cc30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
@@ -68,6 +68,6 @@ Le code suivant pourrait être associé à un bouton 3D avec pop up menu libell
| | |
| --- | --- |
| Numéro de commande | 1049 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
index 50ce5344349c4c..7dd9834c682064 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ Vous pouvez alors évaluer le code JavaScript depuis 4D :
| | |
| --- | --- |
| Numéro de commande | 1029 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
index 36efb5f17148c5..cb2eeb1ade5934 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ La fonction JavaScript "getCustomerInfos" reçoit un identifiant numérique en p
| | |
| --- | --- |
| Numéro de commande | 1043 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
index 97676786f95ccf..80545f0b9879c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1027 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
index 31620cf6f843a5..5d296bf74018de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ La page affichée est l’URL "www.apple.com" et la page "www.4d.com" est en cou
| | |
| --- | --- |
| Numéro de commande | 1025 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
index d829a471113119..07b22ab717c848 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET EXTERNAL LINKS FILTERS](wa-s
| | |
| --- | --- |
| Numéro de commande | 1033 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
index 693559b05190c9..6bfd75d7584fdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le contexte des événements fo
| | |
| --- | --- |
| Numéro de commande | 1035 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
index 590a0891702197..dc49f19f127821 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le cadre de l’événement for
| | |
| --- | --- |
| Numéro de commande | 1034 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
index 7ed9445cf288da..d352995348271d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide si le contenu de la page courante n’e
| | |
| --- | --- |
| Numéro de commande | 1038 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
index 0f63e801f35f21..37c2d80db78489 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide s’il n’y a pas de titre disponible
| | |
| --- | --- |
| Numéro de commande | 1036 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
index 597a74dbf6d3bc..0292e98c324586 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
@@ -42,6 +42,6 @@ Passez dans le paramètre *valeur* une variable devant recevoir la valeur couran
| | |
| --- | --- |
| Numéro de commande | 1042 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
index ff42cde6df250f..a7f918241af484 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET URL FILTERS](wa-set-url-filt
| | |
| --- | --- |
| Numéro de commande | 1031 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
index 54fcce2c65bdf6..ccbdf5b2b25d66 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ S’il est passé, le paramètre *tabTitres* contient la liste des noms de fenê
| | |
| --- | --- |
| Numéro de commande | 1048 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
index bd5774b6fd29f7..15382b6f90154e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL précédent, la commande ne fait rien. Vous pouvez te
| | |
| --- | --- |
| Numéro de commande | 1021 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
index 2f712e92555d80..26e121e140e3e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL suivant (c’est-à-dire si l’utilisateur n’a jam
| | |
| --- | --- |
| Numéro de commande | 1022 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
index 2a499f834ae06d..9f3ff10b139b58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Cette commande a le même effet que la modification de la valeur de la variable
| | |
| --- | --- |
| Numéro de commande | 1020 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
index d9305985936b84..5de6fffd614cc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1736 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
index 4ac336f921d35c..a4e4fa35eb1cd1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1023 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
index 9a6060fd9f9109..9e6f8e0b73bd16 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ La variable système OK est définie sur 0 si le timeout a été atteint ou si l
| | |
| --- | --- |
| Numéro de commande | 1727 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
index 3c694da3af6704..3a11a336ad6272 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
@@ -78,6 +78,6 @@ Cet exemple combine des filtrages de sites et de liens externes :
| | |
| --- | --- |
| Numéro de commande | 1032 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
index c5733af429e6d0..017cb9c1473f74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
@@ -50,6 +50,6 @@ Affichage de la phrase "Hello world !" et définition d’un URL de base "file:/
| | |
| --- | --- |
| Numéro de commande | 1037 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
index ffe742510dc2e0..19c7e3e6dd39f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ Vous souhaitez autoriser le déposer d'URLs dans la zone Web 'myarea' :
| | |
| --- | --- |
| Numéro de commande | 1041 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
index 30eb2a7a8f9d18..f0b0dc7c83b7ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
@@ -136,6 +136,6 @@ Vous souhaitez interdire des adresses IP spécifiques :
| | |
| --- | --- |
| Numéro de commande | 1030 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
index d7d92b4979dc47..4da666f316d92d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1024 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
index ca0d135c2b2cd7..e5faf54d7056ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1039 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
index 40fc4ee17897fe..d7443cc2c3778a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1040 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
index 1a2d96564404c2..4a91554cd3992f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [WEB GET BODY PART](web-get-body-part.
| | |
| --- | --- |
| Numéro de commande | 1211 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
index a7c1211962565c..dab4d67f6f0088 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Voici le code de la méthode GetFile :
| | |
| --- | --- |
| Numéro de commande | 1212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
index b53fcef91ec06d..27b191fb561f10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si cette commande est appelée hors du contexte d’une session Web, elle retour
| | |
| --- | --- |
| Numéro de commande | 1162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
index bfe1be4d6f24f3..fd21ccb97ca1a6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Lorsque le formulaire est soumis au serveur Web, la variable $texteRequete reço
| | |
| --- | --- |
| Numéro de commande | 814 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
index 0489e059ab9c94..33aec6b1a2a868 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
@@ -122,6 +122,6 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être
| | |
| --- | --- |
| Numéro de commande | 697 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
index dacc13ae931c18..de0e096ce17d0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Lorsque vous utilisez le *sélecteur* Web debug log, vous pouvez récupérer une
| | |
| --- | --- |
| Numéro de commande | 1209 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
index 3cd0cf80d1e6ab..9c6bdf0276a915 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
@@ -132,6 +132,6 @@ $webServerInfo:=WEB Get server info(True)
| | |
| --- | --- |
| Numéro de commande | 1531 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
index c3d63134ce539c..c2ae01d50a34ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
@@ -66,6 +66,6 @@ Vous pouvez envoyer la page "stats.shtm" via un lien URL ou à l'aide de command
| | |
| --- | --- |
| Numéro de commande | 658 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
index e4f707e7307a47..fee413c5cb393a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
@@ -65,6 +65,6 @@ On obtient alors :
| | |
| --- | --- |
| Numéro de commande | 683 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
index c227059ce073c6..aeb5e93e875576 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
@@ -31,6 +31,6 @@ Cette commande permet par exemple, le cas échéant, de refuser les tentatives d
| | |
| --- | --- |
| Numéro de commande | 698 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
index c1571b260be57c..3d7f6fbc5c3e7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Vous souhaitez tester si le serveur Web de 4D est lancé :
| | |
| --- | --- |
| Numéro de commande | 1313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
index 6910df7b397103..424bb671ae2aed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Après l’exécution de cette commande, si un client Web envoie une requête ut
| | |
| --- | --- |
| Numéro de commande | 1208 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
index dc2a004d9d2085..1bf9fd8852f65c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ Le paramètre *dateExp* reçoit la date d’expiration et le paramètre *heureEx
| | |
| --- | --- |
| Numéro de commande | 1207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
index c8b161cee97d81..5b722f04fbdce3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
@@ -48,6 +48,6 @@ Reportez-vous à l’exemple de la routine [PICTURE TO BLOB](picture-to-blob.md)
| | |
| --- | --- |
| Numéro de commande | 654 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
index 4e94c28f1d7320..fe476487e39a9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
@@ -54,7 +54,7 @@ Si le fichier à envoyer existe et si le timeout n’est pas dépassé, la varia
| | |
| --- | --- |
| Numéro de commande | 619 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
index 1865040bc3492c..d74515a2adbbe1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
@@ -61,6 +61,6 @@ Dans la [On Web Connection](./on-web-connection-database-method.md), placez les
| | |
| --- | --- |
| Numéro de commande | 659 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
index cc00c2969d8ffa..0cfe8dba9fc96c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
@@ -85,6 +85,6 @@ Cet exemple illustre l’emploi de l’option chunked avec la commande **WEB SEN
| | |
| --- | --- |
| Numéro de commande | 815 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
index 23e2554e92e362..4e7359eb830520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
@@ -49,6 +49,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 677 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
index 59eb136b3dc86f..91b233ecd831f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ Authentification auprès d’un Web Service situé derrière un proxy :
| | |
| --- | --- |
| Numéro de commande | 786 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
index 34f95514c0edb5..427f2c5d0d7c29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
@@ -154,7 +154,7 @@ Si la requête est correctement acheminée et que le Web Service l’a acceptée
| | |
| --- | --- |
| Numéro de commande | 778 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
index 18c301e8797620..8fb8d6475d50a8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ Une chaîne vide est retournée lorsqu’aucune information n’est disponible,
| | |
| --- | --- |
| Numéro de commande | 780 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
index ed28b93174d3e2..f000c04a659ce4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
@@ -55,6 +55,6 @@ Imaginons un Web Service retournant l’heure courante dans n’importe quelle v
| | |
| --- | --- |
| Numéro de commande | 779 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
index c99d3efd381b9e..fff371fa520fd5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
@@ -67,6 +67,6 @@ Utilisation de la version 1.2 du protocole SOAP :
| | |
| --- | --- |
| Numéro de commande | 901 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
index f1b82bf445e794..08732dc5562ef5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
@@ -76,6 +76,6 @@ Cet exemple définit deux paramètres :
| | |
| --- | --- |
| Numéro de commande | 777 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
index 5bbd0294f50363..2a0456f2cb28c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Pour ne plus envoyer *homePage* comme page d’accueil pour le process Web coura
| | |
| --- | --- |
| Numéro de commande | 639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
index efa89950c12c8d..e6304e61dab18f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
@@ -70,6 +70,6 @@ Si vous ne spécifiez pas de statut, celui-ci est automatiquement HTTP/1.0 200 O
| | |
| --- | --- |
| Numéro de commande | 660 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
index d115a66e538143..8b50fa131e9996 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
@@ -86,6 +86,6 @@ Voici un exemple d'entrée enregistrée dans le fichier d'historique :
| | |
| --- | --- |
| Numéro de commande | 5 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
index c133bccd9210dc..8fe27c86fdde78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
@@ -43,7 +43,7 @@ Si vous passez un chemin d'accès invalide, une erreur liée à la gestion de fi
| | |
| --- | --- |
| Numéro de commande | 634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
index 30b0f76caaacde..724ec6a7310971 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si le serveur Web est correctement démarré, OK prend la valeur 1, sinon OK pre
| | |
| --- | --- |
| Numéro de commande | 617 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
index 9365fb2c90901f..6d9f8f873a6c46 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si le serveur Web n'était pas lancé, la commande ne fait rien.
| | |
| --- | --- |
| Numéro de commande | 618 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
index 568624a56e88e0..c92d440fbc3ffa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Exemple de *Méthode base Sur authentification Web* en mode Digest
| | |
| --- | --- |
| Numéro de commande | 946 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
index a2c5036b1794a7..0eb405a6632b4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 445 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
index ba6b365704bc75..4c1baf8a82521d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ La méthode projet suivante place en "mosaïque" toutes les fenêtres ouvertes (
| | |
| --- | --- |
| Numéro de commande | 442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
index dc3dfe4e1464a8..c989baca1dc362 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Si vous omettez le paramètre *fenêtre*, **Window process** retourne le numéro
| | |
| --- | --- |
| Numéro de commande | 446 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
index b49ee83942b8a4..a809a3878fc09f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
index 295cd98630c47a..9a8ea09e79e6bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
index 643c8c62899f08..1e8f3439d4db22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
@@ -52,7 +52,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 680 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
index 5ccd1fc68b2f51..a5623339a15369 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
@@ -78,6 +78,6 @@ Exemple de document XML :
| | |
| --- | --- |
| Numéro de commande | 1091 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
index b3dc0134cab521..2edf35b74af8e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 732 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
index f8babe76f6fedc..3ee4637a40ab1e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ Passez dans *sélecteur* une des constantes du thème *XML* ci-dessous, indiquan
| | |
| --- | --- |
| Numéro de commande | 1096 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
index 12f99747fbeef9..e04c8285da4399 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
@@ -71,6 +71,6 @@ Insertion d’une image SVG :
| | |
| --- | --- |
| Numéro de commande | 1090 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
index a09f3a0fdd3398..16f92c387ef414 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 25 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
index 5202784c21cfaa..0ce64bb6a8060e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
@@ -142,9 +142,9 @@ Vous souhaitez obtenir des informations sur votre licence 4D Server courante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1489 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1489 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
index 4d23d3b065c780..0e85e580e09767 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,7 +49,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
+| lk hor scrollbar height | 3 | Hauteur en pixels (peut seulement être lue)
S'applique à : List box |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Largeur en pixels (peut seulement être lue)
S'applique à : List box |
\* Ces propriétés ne s'appliquent qu'aux colonnes de la list box ; si vous passez une list box en paramètre avec une de ces propriétés, **LISTBOX Get property** retourne -1, ou une chaîne vide, selon la *property* passée.
@@ -105,9 +104,9 @@ Soit une list box "MyListbox", si vous exécutez l'instruction suivante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 917 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | --- |
+| Numéro de commande | 917 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
index dcdd61cc76c92f..e8ee0510a1d0ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,21 +49,17 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk named selection | 28 | Propriété **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** pour list box de type sélection
S'applique à : List box |
| lk resizing mode | 11 | Propriété **[Redimensionnement colonnes auto](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)**
S'applique à : List box
Valeurs possibles :
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unité de la propriété **[Hauteur des lignes](../FormObjects/properties_CoordinatesAndSizing.md#row-height)**
S'applique à : List box
Valeurs possibles :
lk lignes (1)
lk pixels (0)
|
+| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
| lk selection mode | 10 | Propriété **[Mode de sélection](../FormObjects/properties_ListBox.md#selection-mode)**
S'applique à : List box
Valeurs possibles :
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
\* Ces propriétés ne peuvent être appliquées qu'aux colonnes de list box ; si vous passez une list box en paramètre, **LISTBOX SET PROPERTY** appliquera la *property* à chaque colonne de la zone de liste.
@@ -90,9 +88,9 @@ Vous souhaitez modifier la largeur maximale de la colonne nommée "ProductNumber
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1440 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1440 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/client-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/client-server.md
index 55d2c6e41c55f2..f8897fb90af01e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/client-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/client-server.md
@@ -24,7 +24,7 @@ Si vous modifiez ce paramètre, vous devez redémarrer la base du serveur pour q
#### Nom de publication
-This option lets you change the publication name of a 4D Server database, *i.e.*, the name displayed on the dynamic **Available** tab of the connection dialog box (see the [Opening a remote project](../Desktop/clientServer.md#opening-a-remote-project) paragraph). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
+Cette option permet de modifier le nom de publication d'une base de données 4D Server, c'est-à-dire le nom affiché dans l'onglet dynamique **Disponible** de la boîte de dialogue de connexion (voir le paragraphe [Ouverture d'un projet distant](../Desktop/clientServer.md#opening-a-remote-project)). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
:::note
@@ -39,7 +39,7 @@ Cette option vous permet de modifier le numéro du port TCP sur lequel 4D Server
La personnalisation de cette valeur est nécessaire lorsque vous souhaitez utiliser plusieurs applications 4D sur la même machine ; dans ce cas, vous devez spécifier un numéro de port différent pour chaque application.
Lorsque vous modifiez cette valeur depuis 4D Server ou 4D, elle est automatiquement passée à toutes les machines 4D connectées à la base de données.
-Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 :
+Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion. Par exemple, si le nouveau numéro de port est 19888 :

diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/overview.md
index e39b68a6685230..add6034089a802 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/overview.md
@@ -57,7 +57,7 @@ Ce bouton réinitialise tous les paramètres de la page courante. Il devient act
4D propose deux modes de fonctionnement pour les Propriétés des projets :
-- **Standard** mode: all settings are stored in the [*settings.4DSettings* file at the project level](../Project/architecture.md#sources) and are applied in all cases. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
+- **Mode Standard** : tous les paramètres sont stockés dans le fichier [*settings.4DSettings* au niveau du projet](../Project/architecture.md#sources) et sont appliqués dans tous les cas. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
- **Mode propriétés utilisateur** : une partie des paramètres personnalisés sont stockés dans un fichier *settings.4DSettings* [dans le dossier Settings](../Project/architecture.md#settings-user) (pour tous les fichiers de données) ou [dans le dossier Data](../Project/architecture.md#settings-user-data) (pour ce fichier de données) et sont utilisés à la place des paramètres de structure. Ce mode convient à la phase de déploiement pour les applications Desktop. Vous activez ce mode à l'aide d'une option située sur la [page Sécurité](./security.md) des Propriétés.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/security.md b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/security.md
index 4668a251012507..0a4dd3097a6886 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/security.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20-R10/settings/security.md
@@ -15,7 +15,7 @@ Cette page regroupe les options relatives à la protection des accès et des don
A noter que :
- - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. For more information about this dialog box, refer to [Importing data from files](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
+ - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. Pour plus d'informations sur cette boîte de dialogue, reportez-vous à [Importer des données depuis des fichiers](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
- Le Super_Utilisateur et l'Administrateur ont toujours accès à l'environnement de développement et à l'Explorateur d'exécution, même s'ils ne font pas explicitement partie du groupe d'accès spécifié. Pour plus d'information sur les utilisateurs et les groupes d'utilisateurs, veuillez vous référer au chapitre [Utilisateurs et groupes](../Users/handling_users_groups.md).
@@ -33,22 +33,22 @@ Cette page regroupe les options relatives à la protection des accès et des don
## Options
-- **Filtering of commands and project methods in the formula editor and in the 4D View Pro and 4D Write Pro documents**:
- For security reasons, by default 4D restricts access to the commands, functions and project methods in the [Formula editor](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) in Application mode or added to multistyle areas (using [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), 4D Write Pro and 4D View Pro documents: only certain 4D functions and project methods that have been explicitly declared using the [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) command can be used. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
+- **Filtrage des commandes et méthodes de projet dans l'éditeur de formules et dans les documents 4D View Pro et 4D Write Pro** :
+ Pour des raisons de sécurité, 4D restreint par défaut l'accès aux commandes, fonctions et méthodes projet dans l'[éditeur de formules](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) en mode Application ou ajoutées aux zones multistyles (en utilisant [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), documents 4D Write Pro et 4D View Pro : seules certaines fonctions et méthodes projet 4D qui ont été explicitement déclarées en utilisant la commande [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) peuvent être utilisées. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
- **Activé pour tous** (par défaut) : L'accès aux commandes, fonctions et méthodes projets est limité pour tous les utilisateurs, y compris au Super Utilisateur et à l'Administrateur.
- - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. This consists in changing the user (via the [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md) command) before calling a dialog box or starting a printing process that requires full access to the commands, then returning to the original user when the specific operation is completed.
+ - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. Cela consiste à changer l'utilisateur (via la commande [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md)) avant d'appeler une boîte de dialogue ou de démarrer un process d'impression qui nécessite un accès complet aux commandes, puis à retourner à l'utilisateur d'origine lorsque l'opération spécifique est terminée.
**Note :** Si l'accès complet a été activé à l'aide de l'option précédente, cette option n'aura pas d'effet.
- **Désactivé pour tous** : Cette option désactive le contrôle dans les formules. Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles).
Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles). Lorsqu'elle est cochée, cette commande ne fait rien.
- **Autoriser les propriétés utilisateur** : Vous devez cocher cette option si vous souhaitez utiliser la fonctionnalité d’externalisation des propriétés utilisateur. Lorsque cette option est cochée, jusqu'à trois boîtes de dialogue sont disponibles pour définir les propriétés : **Propriétés structure**, **Propriétés utilisateur**, et **Propriétés utilisateur pour fichier de données**. Pour plus d'informations, reportez-vous à la section [User settings](../settings/overview.md#user-settings).
-- **Execute "On Host Database Event" method of the components**: The [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) facilitates the initialization and backup phases for 4D components. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
+- **Exécuter la méthode "Sur événement base hôte" des composants** : La méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) facilite les phases d'initialisation et de sauvegarde des composants 4D. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
Lorsque cette option est cochée :
- les composants 4D sont chargés,
- - each [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) of the component (if any) is called by the host database,
+ - chaque méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) du composant (s'il y en a) est appelée par le projet hôte,
- le code de la méthode est exécuté.
Lorsque cette option n’est pas cochée :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/cli.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/cli.md
index d049e85db38ef0..301f2e09ca2fcf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/cli.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/cli.md
@@ -50,7 +50,7 @@ Syntaxe :
| `--skip-onstartup` | | Lance le projet sans exécuter aucune méthode "automatique", y compris les méthodes base `On Startup` et `On Exit` |
| `--startup-method` | Nom de méthode projet (chaîne) | Méthode projet à exécuter immédiatement après la méthode base `On Startup` (si elle n'est pas ignorée avec `--skip-onstartup`). |
-(*) Certaines boîtes de dialogue sont affichées avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de conversion, sélection de la base de données, sélection du fichier de données). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
+(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
### Exemples
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/webAdmin.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/webAdmin.md
index b101f448001aa6..564c2d1b9b0941 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/webAdmin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/Admin/webAdmin.md
@@ -78,7 +78,7 @@ Cochez cette option pour lancer le serveur web `WebAdmin` automatiquement au dé
Quand cette option est cochée, il est possible de se connecter au serveur `WebAdmin` via HTTP sur la même machine que l'application 4D. Cette option est activée par défaut.
**Notes :**
-- Les connections HTTP autres que sur localhost ne sont jamais acceptées.
+- Les connexions HTTP autres que sur localhost ne sont jamais acceptées.
- Même si cette option est activée, quand [HTTPS Accepté](#accept-https) est activé et que la configuration TLS est valide, les connections sur localhost se font via HTTPS.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/Desktop/building.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/Desktop/building.md
index 9fed0c8e76c0e0..8a130c33e4b366 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20/Desktop/building.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/Desktop/building.md
@@ -408,8 +408,8 @@ Des éléments doivent être installés :
Pour activer cette fonctionnalité, ajoutez les clés `DatabaseToEmbedInClientWinFolder` et/ou `DatabaseToEmbedInClientMacFolder` dans le fichier de configuration *buildApp*. Lorsque l'une de ces clés est présente, le processus de génération de l'application cliente génère une application monoposte : la structure compilée, au lieu du fichier *EnginedServer.4Dlink*, est placée dans le dossier "Database".
-* Si un dossier "Data" par défaut existe dans l'application monoposte, une licence est intégrée.
-* Si un dossier "Data" par défaut n'existe pas dans l'application monoposte, elle sera exécutée sans le fichier de données et sans licence.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
Le scénario standard est le suivant :
@@ -501,7 +501,7 @@ Les modules optionnels suivants peuvent être désélectionnés :
## Page Licences & Certificat
-La page Licences & Certificat vous permet de :
+The Licenses & Certificate page can be used to:
* désigner le(s) numéro(s) de licence que vous souhaitez intégrer dans votre [application autonome](#application-page) mono-utilisateur,
* signer l'application à l'aide d'un certificat sous macOS.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
index bc7cfb02508828..39df613ed17929 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
@@ -187,12 +187,21 @@ Pour répondre à ces besoins, 4D propose les mécanismes suivants :
> La commande `GOTO OBJECT` peut rechercher l’objet de destination dans le formulaire parent même si elle exécutée depuis un sous-formulaire.
-#### Commande CALL SUBFORM CONTAINER
+#### Commande CALL SUBFORM CONTAINER {#call-subform-container-command}
La commande `CALL SUBFORM CONTAINER` permet à une instance de sous-formulaire d'envoyer un [événement](../Events/overview.md) à l'objet conteneur de sous-formulaire, qui peut alors le traiter dans le contexte du formulaire parent. L’événement est reçu dans la méthode de l’objet conteneur. Il peut s’agir à l’origine de tout événement détecté par le sous-formulaire (clic, glisser-déposer, etc.).
Le code de l’événement est libre (par exemple, 20000 ou -100). Vous pouvez soit utiliser un code correspondant à un événement existant (par exemple, 3 pour `Sur validation`), soit utiliser un code personnalisé. Dans le premier cas, seuls les événements présents dans la liste des événements "cochables" des conteneurs de sous-formulaire peuvent être utilisés (cf. Liste des propriétés). Dans le second cas, le code ne doit correspondre à aucun événement formulaire existant. Il est conseillé d’utiliser une valeur négative pour avoir l’assurance que 4D n’utilisera pas ce code dans les versions futures.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Pour plus d'informations, reportez-vous à la description de la commande `CALL SUBFORM CONTAINER`.
#### Commande EXECUTE METHOD IN SUBFORM
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md b/i18n/fr/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
index 3cbf2d38cfeafb..76ff7a8a5007fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
@@ -35,7 +35,7 @@ La zone "Vue d’ensemble" fournit diverses informations relatives au système,

-Généralement, vous devrez vérifier le [**Gestionnaire de licences**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Zone Détails
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/API/SessionClass.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
index 13ac285c1eb2a2..f1ce9df566b5dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
@@ -3,7 +3,7 @@ id: SessionClass
title: Session
---
-Les objets session sont retournés par la commande [`Session`](../commands/session.md). Ces objets fournissent au développeur une interface permettant de gérer la session utilisateur courante et d'exécuter des actions telles que le stockage de données contextuelles, le partage d'informations entre les process de la session, le lancement de process préemptifs liés à la session ou (uniquement pour le web) la gestion des [privilèges](../ORDA/privileges.md).
+Les objets session sont retournés par la commande [`Session`](../commands/session.md). Ces objets fournissent au développeur une interface permettant de gérer la session en cours et d'exécuter des actions telles que le stockage de données contextuelles, le partage d'informations entre les process de session, le lancement de process préemptifs liés à la session ou (contexte web uniquement) la gestion des [privilèges](../ORDA/privileges.md).
:::tip Articles de blog sur le sujet
@@ -17,14 +17,15 @@ Les objets session sont retournés par la commande [`Session`](../commands/sessi
Les types de sessions suivants sont pris en charge par cette classe :
-- [**Session utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web et REST, et peuvent se voir attribuer des privilèges.
-- [**Session utilisateur client distant**](../Desktop/clientServer.md#remote-user-sessions) : Dans les applications client/serveur, les utilisateurs distants ont leurs propres sessions gérées sur le serveur.
-- [**Session des procédures stockées**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html) : Toutes les procédures stockées exécutées sur le serveur partagent la même session utilisateur virtuelle.
-- [**Session autonome**](../Project/overview.md#development) : objet session local retourné dans une application mono-utilisateur (utile dans les phases de développement et de test des applications client/serveur).
+- [**Sessions utilisateur Web**](WebServer/sessions.md) : Les sessions utilisateur Web sont disponibles lorsque [les sessions évolutives (scalable sessions) sont activées dans votre projet](WebServer/sessions.md#enabling-web-sessions). Elles sont utilisées pour les connexions Web (y compris les accès REST) et sont contrôlées par les [privilèges](../ORDA/privileges.md) qui leur sont attribués.
+- [**Sessions desktop**](../Desktop/sessions.md), qui comprennent :
+ - [**Sessions utilisateurs distants**](../Desktop/sessions.md#remote-user-sessions) : Dans les applications client/serveur, les utilisateurs distants ont leurs propres sessions gérées sur le serveur.
+ - [**Sessions procédures stockées**](../Desktop/sessions.md#stored-procedure-sessions) : Session utilisateur virtuelle pour toutes les procédures stockées exécutées sur le serveur.
+ - [**Sessions autonomes**](../Desktop/sessions.md#standalone-sessions): Session locale retournée dans une application mono-utilisateur (utile dans les phases de développement et de test des applications client/serveur).
-:::note
+:::warning A propos des privilèges de session
-La disponibilité des propriétés et des fonctions de l'objet `Session` dépend du type de session.
+Tous les types de sessions peuvent gérer les privilèges, mais seul le code exécuté dans les [sessions web utilisateurs](WebServer/sessions.md) est en fait contrôlé par les privilèges de la session.
:::
@@ -54,10 +55,10 @@ La disponibilité des propriétés et des fonctions de l'objet `Session` dépend
Historique
-| Release | Modifications |
-| ------- | -------------------------------------- |
-| 21 | Prise en charge des sessions distantes |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 18 R6 | Ajout |
@@ -73,33 +74,27 @@ La disponibilité des propriétés et des fonctions de l'objet `Session` dépend
#### Description
-:::note
-
-Cette fonction ne fait rien et renvoie toujours **True** avec les sessions de procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.clearPrivileges()` supprime tous les privilèges associés à la session (à l'exception des privilèges promus) et renvoie **True** si l'exécution a réussi.
-Hormis si vous êtes en mode ["forceLogin"](../REST/authUsers.md#force-login-mode), la session devient automatiquement une session Guest. En mode "forceLogin", `.clearPrivileges()` ne transforme pas la session en session Invité, elle efface seulement les privilèges de la session.
-
:::note
Cette fonction ne supprime pas les **privilèges promus** du process web, qu'ils aient été ajoutés par le biais du fichier [roles.json](../ORDA/privileges.md#rolesjson-file) ou de la fonction [`promote()`](#promote).
:::
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
```4d
-//Invalider une session utilisateur web
+//Invalider la session d'un utilisateur web
var $isGuest : Boolean
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest est True
```
@@ -110,10 +105,10 @@ $isGuest:=Session.isGuest() //$isGuest est True
Historique
-| Release | Modifications |
-| ------- | -------------------------------------- |
-| 21 | Prise en charge des sessions distantes |
-| 20 R9 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 20 R9 | Ajout |
@@ -121,33 +116,28 @@ $isGuest:=Session.isGuest() //$isGuest est True
-| Paramètres | Type | | Description |
-| ---------- | ------- | :-------------------------: | -------------------------------------------- |
-| lifespan | Integer | -> | Durée de vie du token de session en secondes |
-| Résultat | Text | <- | UUID du token OTP |
+| Paramètres | Type | | Description |
+| ---------- | ------- | :-------------------------: | ----------------------------------------------------------------------------------------- |
+| lifespan | Integer | -> | Durée de vie du token de session en secondes (sessions web uniquement) |
+| Résultat | Text | <- | UUID du token OTP |
#### Description
-:::note
-
-Cette fonction est disponible pour les sessions utilisateur web et les sessions à distance. Elle renvoie une chaîne vide dans les procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.createOTP()` crée un nouvel OTP (One Time Passcode) pour la session et renvoie son UUID de token. Ce token est propre à la session au cours de laquelle il a été généré.
Pour plus d'informations sur les tokens OTP, veuillez consulter [cette section](../WebServer/sessions.md#session-token-otp).
-Vous pouvez définir un délai personnalisé en passant une valeur en secondes dans *lifespan*. Si un token expiré est utilisé pour restaurer la session, il est ignoré. Par défaut, si le paramètre *lifespan* est omis :
+Si un token expiré est utilisé pour restaurer la session, il est ignoré.
+
+Pour les sessions web, vous pouvez définir un délai personnalisé en passant une valeur en secondes dans *lifespan*. Par défaut, si le paramètre *lifespan* est omis, le token est créé avec la même durée de vie que le [`.idleTimeOut`](#idletimeout) de la session.
-- avec les sessions d'utilisateurs web, le token est créé avec la même durée de vie que le [`.idleTimeOut`](#idletimeout) de la session.
-- avec des sessions distantes, le token est créé avec une durée de vie de 10 secondes.
+Pour les sessions desktop, le token est créé avec une durée de vie de 10 secondes.
-Pour les **sessions utilisateur web**, le token renvoyé peut être utilisé dans les échanges avec des applications ou des sites web tiers pour identifier la session en toute sécurité. Par exemple, le token OTP de session peut être utilisé avec une application de paiement.
+Le token retourné peut être utilisé lors d'échanges avec des applications tierces ou des sites Web pour identifier la session de manière sécurisée. Par exemple, le token OTP de session peut être utilisé avec une application de paiement.
-Pour les **sessions à distance**, le token renvoyé peut être utilisé sur 4D Server pour identifier les requêtes provenant d'un [4D distant exécutant des formulaires Qodly dans une zone Web](../Desktop/clientServer.md#remote-user-sessions).
+Le token renvoyé peut être utilisé par le serveur 4D ou l'application mono-utilisateur 4D pour identifier les requêtes provenant du web qui [partagent la session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Exemple
@@ -182,12 +172,6 @@ $token := Session.createOTP( 60 ) //le token est valable pendant 1 mn
#### Description
-:::note
-
-Cette fonction ne fait rien dans les sessions clients distants, procédures stockées et autonomes.
-
-:::
-
La fonction `.demote()` supprime du process web le privilège promu dont l'identifiant a été passé dans *promoteId*, s'il a été précédemment ajouté par la fonction [`.promote()`](#promote).
Si aucun privilège avec *promoteId* n'a été promu à l'aide de [`.promote()`](#promote) dans le process web, la fonction ne fait rien.
@@ -262,10 +246,10 @@ $expiration:=Session.expirationDate //ex : "2021-11-05T17:10:42Z"
Historique
-| Release | Modifications |
-| ------- | --------------------------------------------- |
-| 21 | Prise en charge des sessions client distantes |
-| 20 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------- |
+| 21 | Prise en charge des sessions distantes et autonomes |
+| 20 R6 | Ajout |
@@ -289,9 +273,10 @@ Cette fonction renvoie les privilèges attribués à une session en utilisant la
:::
-En ce qui concerne les sessions de clients distants, les privilèges ne concernent que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Avec les sessions de procédures stockées et les sessions autonomes, cette fonction renvoie une collection contenant uniquement "WebAdmin".
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
@@ -360,10 +345,10 @@ $privileges := Session.getPrivileges()
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------------------------ |
-| 21 | Retourne True pour les privilèges promus, Prise en charge des sessions de clients distants |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | --------------------------------------------------------------------------------------------- |
+| 21 | Retourne True pour les privilèges promus, Prise en charge des sessions distantes et autonomes |
+| 18 R6 | Ajout |
@@ -388,26 +373,27 @@ Cette fonction renvoie True pour le *privilège* si elle est appelée depuis une
:::
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-Avec les sessions de procédures stockées et les sessions autonomes, cette fonction renvoie toujours True, quel que soit le *privilege*.
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
-Vous voulez vérifier si le privilège "WebAdmin" est associé à la session utilisateur web :
+Vous voulez vérifier si le privilège "CreateInvoices" est associé à la session de l'utilisateur web :
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Accès accordé, ne rien faire
+If (Session.hasPrivilege("CreateInvoices"))
+ //Accès à la fonctionnalité de création de facture
Else
- //Afficher une page d'authentification
+ //Pas d'accès à la fonctionnalité
End if
```
#### Voir également
-[*Articles de blog sur cette fonctionnalité*](https://blog.4d.com/?s=hasPrivilege)
+[*Restreindre les données en fonction des privilèges ou des informations enregistrées dans la mémoire de session* (article de blog)](https://blog.4d.com/?s=hasPrivilege)
@@ -445,8 +431,7 @@ Vous pouvez utiliser cette propriété pour obtenir l'objet [`.storage`](#storag
| Release | Modifications |
| ------- | ------------- |
-
-|18 R6|Added|
+| 18 R6 | Ajout |
@@ -501,26 +486,16 @@ End if
#### Description
-:::note
-
-Cette propriété est uniquement disponible avec les sessions clients distants, procédures stockées et autonomes.
-
-:::
+La propriété `.info` décrit la session desktop ou la session web.
-La propriété `.info` décrit le client distant ou la session de procédure stockée sur le serveur, ou la session autonome.
-
-:::note
-
-- L'objet `.info` est le même objet que celui retourné dans la propriété "session" par la commande [`Process activity`](../commands/process-activity.md) pour les sessions de clients distants et procédures stockées.
-- L'objet `.info` est le même objet que celui retourné par la commande [`Session info`](../commands/session-info.md) pour une session autonome.
-
-:::
+- **Sessions distantes** et **Sessions de procédure stockée** : L'objet `.info` est le même que celui renvoyé dans la propriété "session" par la commande [`Process activity`](../commands/process-activity.md).
+- **Sessions autonomes** : L'objet `.info` est le même que celui retourné par la commande [`Session info`](../commands/session-info.md).
L'objet `.info` contient les propriétés suivantes:
| Propriété | Type | Description |
| ---------------- | ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
-| type | Text | Type de session : "remote", "storedProcedure", "standalone" |
+| type | Text | Type de session : "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nom d'utilisateur 4D (même valeur que [`.userName`](#username)) |
| machineName | Text | Sessions distantes : nom de la machine distante. Session procédures stockées : nom de la machine serveur. Session autonome : nom de la machine |
| systemUserName | Text | Sessions distantes : nom de la session système ouverte sur la machine distante. |
@@ -555,9 +530,9 @@ L'objet `.info` contient les propriétés suivantes:
-| Paramètres | Type | | Description |
-| ---------- | ------- | :-------------------------: | ------------------------------------------------ |
-| Résultat | Boolean | <- | Vrai s'il s'agit d'une session Guest, sinon Faux |
+| Paramètres | Type | | Description |
+| ---------- | ------- | :-------------------------: | -------------------------------------------------------------------------------------------------- |
+| Résultat | Boolean | <- | True si la session est une session Guest, False sinon (sessions web uniquement) |
@@ -565,11 +540,17 @@ L'objet `.info` contient les propriétés suivantes:
:::note
-Cette fonction retourne toujours **False** avec les sessions clients distants, procédures stockées et autonomes.
+Cette fonction renvoie toujours **False** pour les sessions desktop.
:::
-La fonction `.isGuest()` renvoie True si la session est une session Guest (c'est-à-dire qu'elle n'a aucun privilège).
+La fonction `.isGuest()` retourne True tant que `setPrivileges()` n'est pas appelé dans la session ou après qu'un [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) a été exécuté dans la session.
+
+:::note Compatibilité
+
+Dans une session REST lorsque le [**mode Force login**](../REST/authUsers.md#force-login-mode) n'est pas activé, `.isGuest()` renvoie True si la session n'a pas de privilèges.
+
+:::
#### Exemple
@@ -608,12 +589,6 @@ End if
#### Description
-:::note
-
-Cette fonction ne fait rien dans les sessions clients distants, procédures stockées et autonomes.
-
-:::
-
La fonction `.promote()` ajoute le privilège défini dans le paramètre *privilege* au process courant durant l'exécution de la fonction appelante et renvoie l'identifiant du privilège promu.
L'ajout dynamique de privilèges est utile lorsque les droits d'accès dépendent du contexte d'exécution, qui ne peut pas être entièrement défini dans le fichier "roles.json". Ceci est particulièrement le cas lorsque la même fonction peut être exécutée par des utilisateurs ayant des niveaux d'accès différents. L'utilisation de `.promote()` permet de s'assurer que seul le process en cours bénéficie des privilèges nécessaires, sans affecter les autres.
@@ -629,6 +604,11 @@ L'identifiant renvoyé est incrémenté chaque fois qu'un privilège est ajouté
Pour supprimer un privilège de manière dynamique, appelez la fonction `demote()` avec l'identifiant du privilège.
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
+
#### Exemple
Plusieurs utilisateurs se connectent à un seul point d'accès qui sert différentes applications. Un utilisateur de l'application n°1 n'a pas besoin du privilège "super_admin" car il ne crée pas de "VerySensitiveInfo". Un utilisateur de l'application n° 2 a besoin du privilège "super_admin".
@@ -687,12 +667,6 @@ End if
#### Description
-:::note
-
-Cette fonction est uniquement disponible avec les sessions utilisateur web. Elle renvoie False dans les autres contextes.
-
-:::
-
La fonction `.restore()` remplace la session courante de l'utilisateur Web par sa session originale correspondant à l'UUID *token*. Le storage et les privilèges de la session sont restaurés.
Si la session originale de l'utilisateur a été correctement restaurée, la fonction renvoie `true`.
@@ -731,7 +705,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Release | Modifications |
| ------- | ----------------------------------------------------- |
-| 21 | Prise en charge des sessions client distantes |
+| 21 | Prise en charge des sessions distantes et autonomes |
| 19 R8 | Prise en charge de la propriété "roles" dans settings |
| 18 R6 | Ajout |
@@ -752,12 +726,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Description
-:::note
-
-Cette fonction ne fait rien et renvoie toujours **False** avec les sessions de procédures stockées et les sessions autonomes.
-
-:::
-
La fonction `.setPrivileges()` associe le ou les privilège(s) et/ou rôle(s) défini(s) en paramètre à la session et renvoie **True** si l'exécution a réussi.
- Dans le paramètre *privilege*, passez une chaîne contenant un nom de privilège (ou plusieurs noms de privilèges séparés par des virgules).
@@ -782,7 +750,10 @@ Par défaut lorsqu'aucun privilège ou rôle n'est associé à la session, la se
La propriété [`userName`](#username) est accessible au niveau de l'objet session (lecture seulement).
-En ce qui concerne les sessions de clients distants, la fonction ne concerne que le code exécuté dans le contexte de [requêtes web envoyées par l'intermédiaire d'une zone web](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Gardez à l'esprit que les privilèges ne s'appliquent qu'au code exécuté via les accès web, quel que soit le [type de session](#session-types) sur lequel cette fonction est exécutée.
+:::
#### Exemple
@@ -814,10 +785,10 @@ End if
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------- |
-| 20 R5 | Prise en charge des sessions utilisateurs distants et procédures stockées |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | ------------------------------------ |
+| 20 R5 | Prise en charge des sessions desktop |
+| 18 R6 | Ajout |
@@ -839,6 +810,8 @@ Vous pouvez obtenir la propriété `.storage` d'une session en utilisant la comm
:::
+Lorsqu'une session desktop et une session web sont [partagées à l'aide d'un OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), elles partagent également le même objet `.storage`.
+
#### Exemple de session Web
Vous voulez stocker l'adresse IP du client dans la propriété `.storage`. Vous pouvez écrire dans la méthode base `On Web Authentication` :
@@ -869,10 +842,10 @@ End use
Historique
-| Release | Modifications |
-| ------- | ------------------------------------------------------------------------- |
-| 20 R5 | Prise en charge des sessions utilisateurs distants et procédures stockées |
-| 18 R6 | Ajout |
+| Release | Modifications |
+| ------- | ------------------------------------ |
+| 20 R5 | Prise en charge des sessions desktop |
+| 18 R6 | Ajout |
@@ -882,10 +855,10 @@ End use
La propriété `.userName` contient le nom d'utilisateur associé à la session. Vous pouvez vous en servir pour identifier l'utilisateur dans votre code.
-- Avec les sessions web, cette propriété est une chaîne vide par défaut. Elle peut être définie via la propriété `privileges` de la fonction [`setPrivileges()`](#setprivileges).
-- Avec les sessions clients distants et procédures stockées, cette propriété retourne le même nom d'utilisateur que la commande [`Current user`](../commands-legacy/current-user.md).
-- Avec les sessions autonomes, cette propriété contient "designer" ou le nom défini avec la commande [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Sessions web** : Cette propriété est une chaîne vide par défaut. Elle peut être définie via la propriété `privileges` de la fonction [`setPrivileges()`](#setprivileges).
+- **Sessions de procédure stockée/distantes** : Cette propriété retourne le même nom d'utilisateur que la commande [`Current user`](../commands-legacy/current-user.md).
+- **Sessions autonomes** : Cette propriété contient "designer" ou le nom défini avec la commande [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
-Cette propriété est en **lecture seule**.
+Cette propriété est **en lecture seule** pour les sessions desktop.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/cli.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/cli.md
index 7b76c2ce94ae5c..2914564501377b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/cli.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/cli.md
@@ -50,7 +50,7 @@ Syntaxe :
| `--skip-onstartup` | | Lance le projet sans exécuter aucune méthode "automatique", y compris les méthodes base `On Startup` et `On Exit` |
| `--startup-method` | Nom de méthode projet (chaîne) | Méthode projet à exécuter immédiatement après la méthode base `On Startup` (si elle n'est pas ignorée avec `--skip-onstartup`). |
-(\*) Certaines boîtes de dialogue sont affichées avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme. Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
+(\*) Certaines boîtes de dialogue s'affichent avant l'ouverture de la base de données, de sorte qu'il est impossible d'écrire dans le [fichier journal de diagnostic](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (alerte de licence, boîte de dialogue de conversion, sélection de la base de données, sélection du fichier de données). Dans ce cas, un message d'erreur est envoyé à la fois dans le flux stderr et dans le journal d'événements système, puis l'application se ferme.
### Exemples
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/webAdmin.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/webAdmin.md
index 87bace3ccb1808..51a3dff3d80495 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/webAdmin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Admin/webAdmin.md
@@ -71,8 +71,8 @@ Quand cette option est cochée, il est possible de se connecter au serveur `WebA
**Notes :**
-- Les connections HTTP autres que sur localhost ne sont jamais acceptées.
-- Même si cette option est activée, quand [HTTPS Accepté](#accept-https) est activé et que la configuration TLS est valide, les connections sur localhost se font via HTTPS.
+- Les connexions HTTP autres que sur localhost ne sont jamais acceptées.
+- Même si cette option est cochée, lorsque [HTTPS accepté](#accept-https) est coché et que la configuration TLS est valide, les connexions locahost utilisent HTTPS.
#### Port HTTP
@@ -124,15 +124,15 @@ Cette option permet l'accès utilisateur à [Qodly Studio](../WebServer/qodly-st
## Configuration de WebAdmin sans interface
-Pour gérer le contenu du fichier, vous pouvez utiliser la [fenêtre de paramètres WebAdmin](#settings-dialog-box) de l'application 4D avec une interface, et la lancer sans interface ensuite. Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Pour gérer le contenu du fichier, vous pouvez utiliser la [fenêtre de paramètres WebAdmin](#settings-dialog-box) de l'application 4D avec une interface, et la lancer sans interface ensuite. Il existe un fichier `WebAdmin.4DSettings` par défaut pour chaque application 4D et 4D Server, de sorte qu'il est possible de déployer plusieurs applications sur la même machine hôte.
Dans le cas d'une application 4D ou 4D Server sans interface, vous pouvez configurer et utiliser le fichier `WebAdmin.4DSettings` par défaut, ou désigner un fichier `.4DSettings` personnalisé.
-Boîte de dialogue des Propriétés Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server. Par défaut, il existe un fichier `WebAdmin.4DSettings` par application 4D et 4D Server.
+Pour définir le contenu du fichier, vous pouvez utiliser la [boîte de dialogue des propriétés WebAdmin](#settings-dialog-box) de l'application 4D avec interface et l'exécuter ensuite sans interface. Le fichier par défaut `WebAdmin.4DSettings` est alors utilisé.
Vous pouvez aussi définir un fichier `.4DSettings`. (format XML) et l'utiliser à la place du fichier par défaut. Plusieurs arguments dédiés sont disponibles dans [l'interface de ligne de commande](cli.md) pour prendre en charge cette fonctionnalité.
-> Cette clé d'accès n'est pas stockée de façon transparente dans le fichier `.4DSettings`.
+> La clé d'accès n'est pas stockée en clair dans le fichier `.4DSettings`.
Voici un exemple :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
index ab71886bbdfff4..7c0dc8a603808f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
@@ -42,7 +42,7 @@ La fenêtre du débogueur est généralement affichée sur la machine où le cod
:::note Notes
- Si le serveur fonctionne en mode headless, aucune fenêtre de débogage ne peut être affichée sur le serveur, vous devez utiliser le débogueur distant. Voir [Débogage depuis des machines distantes](./debugging-remote.md).
-- Vous pouvez également [attacher le débogueur Qodly Studio à une application 4D Server](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) si vous devez déboguer des pages Qodly dans un environnement déployé.
+- Vous pouvez également [attacher le débogueur Qodly Studio à une application 4D Server](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) si vous devez déboguer des pages Qodly dans un environnement déployé.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/building.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/building.md
index 1fa977a96c8a2e..42f9d69770d33f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/building.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/building.md
@@ -407,8 +407,8 @@ Des éléments doivent être installés :
Pour activer cette fonctionnalité, ajoutez les clés `DatabaseToEmbedInClientWinFolder` et/ou `DatabaseToEmbedInClientMacFolder` dans le fichier de configuration *buildApp*. Lorsque l'une de ces clés est présente, le processus de génération de l'application cliente génère une application monoposte : la structure compilée, au lieu du fichier *EnginedServer.4Dlink*, est placée dans le dossier "Database".
-- Si un dossier "Data" par défaut existe dans l'application monoposte, une licence est intégrée.
-- Si un dossier "Data" par défaut n'existe pas dans l'application monoposte, elle sera exécutée sans le fichier de données et sans licence.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
Le scénario standard est le suivant :
@@ -497,10 +497,11 @@ Les modules optionnels suivants peuvent être désélectionnés :
- **SpellChecker**: Utilisé pour les fonctions intégrées de [vérification orthographique](../FormObjects/properties_Entry.md#auto-spellcheck) et les commandes disponibles pour les zones de saisie et les zones 4D Write Pro.
- **4D Updater**: Contrôle la [mise à jour automatique](#what-is-a-clientserver-application) des parties clientes et est utilisé par la commande `SET UPDATE FOLDER` pour [les mises à jour automatiques du serveur](#automatic-updating-of-server-or-single-user
+- **4D Qodly Pro**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/).
## Page Licences & Certificat
-La page Licences & Certificat vous permet de :
+The Licenses & Certificate page can be used to:
- configurer les [licences de déploiement](../Admin/licenses.md#deployment-licenses) que vous souhaitez intégrer dans votre application [autonome](#application-page) ou [client-serveur](#clientserver-page),
- signer l'application à l'aide d'un certificat sous macOS.
@@ -535,7 +536,7 @@ Une connexion internet est requise sur la machine de l'utilisateur lors du premi
- La commande [`License info`](../commands/license-info.md) vous permet de connaître le type de licence de l'application (collection *.attributes*) et sa date d'expiration (objet *.expirationDate*).
- La clé xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permet de gérer les versions d'évaluation.
-- La commande [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) ne fait rien lorsqu'elle est appelée depuis une version d'évaluation.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
index 430dcb62791647..bd10698d05f3eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
@@ -85,93 +85,3 @@ Veillez cependant aux différences de comportement suivantes, comparées à [l'a
> Il n'est pas recommandé d'installer des plug-ins ou des composants au niveau de l'application 4D ou 4D Server.
-## Sessions utilisateur distant
-
-Sur le serveur, la commande [`Session`](../commands/session.md) renvoie un objet `session` décrivant la session utilisateur courante. Cet objet est géré via les fonctions et les propriétés de la classe [`Session`](../API/SessionClass.md).
-
-:::tip Articles de blog sur le sujet
-
-[Objet session distante 4D avec connexion Client/Serveur et procédure stockée](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
-
-:::
-
-### Utilisation
-
-L'objet `session` vous permet de gérer les informations et les privilèges de la session de l'utilisateur distant.
-
-Vous pouvez partager des données entre tous les process de la session utilisateur en utilisant l'objet partagé [`session.storage`](../API/SessionClass.md#storage). Par exemple, vous pouvez lancer une procédure d'authentification et de vérification de l'utilisateur lorsqu'un client se connecte au serveur, impliquant la saisie d'un code envoyé par e-mail ou SMS dans l'application. Ensuite, vous ajoutez les informations de l'utilisateur au storage de session, ce qui permet au serveur d'identifier l'utilisateur. De cette façon, le serveur 4D peut accéder aux informations de l'utilisateur pour tous les process clients, permettant l'écriture de code personnalisé en fonction du rôle de l'utilisateur.
-
-Vous pouvez également attribuer des privilèges à une session d'utilisateur distant pour contrôler l'accès lorsque la session provient de pages Qodly exécutées dans des zones Web.
-
-### Disponibilité
-
-L'objet `session` de l'utilisateur distant est disponible depuis :
-
-- Les méthodes projet qui ont l'attribut [Exécuter sur serveur](../Project/code-overview.md#execute-on-server) (elles sont exécutées dans le process jumeau du process client),
-- Les Triggers,
-- Les [fonctions du modèle de données](../ORDA/ordaClasses.md) ORDA (sauf celles déclarées avec le mot-clé [`local`](../ORDA/ordaClasses.md#local-functions),
-- Les méthodes base `On Server Open Connection` et `On Server Shutdown Connection`.
-
-:::info
-
-Toutes les procédures stockées sur le serveur partagent la même session utilisateur virtuelle. Pour plus d'informations, consultez [cette page sur doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Partage de la session avec des pages Qodly dans des zones Web
-
-Les sessions d'utilisateurs distant peuvent être utilisées pour gérer des applications client/serveur dans lesquelles des [pages Qodly](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) sont utilisées comme interface, fonctionnant sur des machines distantes. Avec cette configuration, vos applications disposent d'interfaces web modernes basées sur les CSS, tout en bénéficiant de la puissance et de la simplicité du développement intégré client/serveur. Dans ces applications, les pages Qodly sont exécutées dans des [zones Web](../FormObjects/webArea_overview.md) 4D standard.
-
-Pour gérer cette configuration, vous devez utiliser des sessions d'utilisateurs distants. En fait, les requêtes provenant à la fois de l'application 4D distante et de ses pages Qodly chargées dans les zones Web doivent fonctionner dans le cadre d'une session utilisateur unique. Il suffit de partager la même session entre le client distant et ses pages web afin de disposer du même [session storage](../API/SessionClass.md#storage) et de la même licence 4D client, quelle que soit l'origine de la demande.
-
-Notez que les [privilèges](../ORDA/privileges.md) doivent être définis dans la session avant d'exécuter une requête web à partir d'une zone web, afin que l'utilisateur obtienne automatiquement ses privilèges pour l'accès au web (voir l'exemple). N'oubliez pas que les privilèges ne s'appliquent qu'aux requêtes provenant du web, et non au code 4D exécuté dans une session distante standard.
-
-Les sessions partagées sont gérées par des [tokens OTP](../WebServer/sessions.md#session-token-otp). Après avoir créé un token OTP sur le serveur pour la session de l'utilisateur, vous ajoutez le token (via la valeur du paramètre `$4DSID`) aux requêtes web envoyées à partir de zones Web contenant des pages Qodly afin que la session de l'utilisateur sur le serveur soit identifiée et partagée. Du côté du serveur web, si une requête web contient un *id OTP* dans le paramètre $4DSID, la session correspondant à ce token OTP est utilisée.
-
-:::tip Article(s) de blog sur le sujet
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Exemple
-
-```4d
-var $otp : Text
-
-// Certains privilèges sont attribués à la session de l'utilisateur distant sur le serveur pour un accès web ultérieur
-ds.resetPrivileges("basic")
-
-// Un OTP est créé sur le serveur pour cette session client distante
-$otp:=ds.getOTP()
-
-
-// L'utilisateur dispose déjà des privilèges requis pour un accès web
-// et la même session est partagée entre cet utilisateur distant et l'application web Qodly
-WA OPEN URL(* ; "Welcome" ; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-Fonction *resetPrivileges()* dans la classe Datastore :
-
-```4d
-// Cette fonction est exécutée sur le serveur et place des privilèges
-// dans la session pour un accès web ultérieur
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-Fonction *getOTP()* dans la classe Datastore :
-
-```4d
-// Cette fonction est exécutée sur le serveur et génère un OTP
-// capable de récupérer cette session d'utilisateur à distance
-
-Function getOTP() : Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
new file mode 100644
index 00000000000000..8dd4b43801fde1
--- /dev/null
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Types de sessions
+
+Desktop sessions include:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sessions utilisateur distant
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Cet objet est géré via les fonctions et les propriétés de la classe [`Session`](../API/SessionClass.md).
+
+:::note
+
+On a remote 4D, the `session` object always returns null.
+
+:::
+
+:::tip Articles de blog sur le sujet
+
+[Objet session distante 4D avec connexion Client/Serveur et procédure stockée](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure).
+
+:::
+
+### Utilisation
+
+L'objet `session` vous permet de gérer les informations et les privilèges de la session de l'utilisateur distant.
+
+Vous pouvez partager des données entre tous les process de la session utilisateur en utilisant l'objet partagé [`session.storage`](../API/SessionClass.md#storage). Par exemple, vous pouvez lancer une procédure d'authentification et de vérification de l'utilisateur lorsqu'un client se connecte au serveur, impliquant la saisie d'un code envoyé par e-mail ou SMS dans l'application. Ensuite, vous ajoutez les informations de l'utilisateur au storage de session, ce qui permet au serveur d'identifier l'utilisateur. De cette façon, le serveur 4D peut accéder aux informations de l'utilisateur pour tous les process clients, permettant l'écriture de code personnalisé en fonction du rôle de l'utilisateur.
+
+Vous pouvez également attribuer des privilèges à une session d'utilisateur distant pour contrôler l'accès lorsque la session provient de pages Qodly exécutées dans des zones Web.
+
+### Disponibilité
+
+L'objet `session` de l'utilisateur distant est disponible depuis :
+
+- Les méthodes projet qui ont l'attribut [Exécuter sur serveur](../Project/code-overview.md#execute-on-server) (elles sont exécutées dans le process jumeau du process client),
+- Les Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Stored procedure sessions
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilisation
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilité
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### Utilisation
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilité
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. Avec cette configuration, vos applications disposent d'interfaces web modernes basées sur les CSS, tout en bénéficiant de la puissance et de la simplicité du développement intégré client/serveur. Dans ces applications, les pages Qodly sont exécutées dans des [zones Web](../FormObjects/webArea_overview.md) 4D standard.
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Les sessions partagées sont gérées par des [tokens OTP](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. Du côté du serveur web, si une requête web contient un *id OTP* dans le paramètre $4DSID, la session correspondant à ce token OTP est utilisée.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Article(s) de blog sur le sujet
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Exemple
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
index 0c5ab01f402f6c..bc7cb2ef2796ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
@@ -96,81 +96,6 @@ Il n'y a aucune restriction sur le nombre de pages qu'un formulaire peut conteni
Un formulaire multi-pages contient à la fois une page d'arrière-plan et plusieurs pages d'affichage. Les objets placés sur la page d'arrière-plan peuvent être visibles sur toutes les pages d'affichage, mais il ne peuvent être sélectionnés et modifiés que sur la page d'arrière-plan. Dans les formulaires multi-pages, vous devez placer votre palette de boutons sur la page d'arrière-plan. Vous devez également inclure un ou plusieurs objets sur la page d'arrière-plan qui fournissent à l'utilisateur des outils de navigation de page.
-## Rendu Fluent UI (Developer Preview)
-
-Sous Windows, 4D prend en charge le rendu de formulaire **Fluent UI**, l'interface utilisateur graphique moderne de Microsoft, basée sur la technologie **WinUI 3**. **WinUI 3** est la base du Windows App SDK et représente les prochaines interfaces graphiques de Windows.
-
-Le rendu Fluent UI offre des contrôles modernes et agréables, la prise en charge des thèmes système dark/light, un rendu plus fluide optimisé pour les écrans haute résolution et une expérience utilisateur cohérente alignée sur les applications Microsoft récentes.
-
-| Thème clair | Thème sombre |
-| --------------------------------------- | -------------------------------------------- |
-|  |  |
-
-:::caution Developer Preview
-
-La prise en charge de Fluent UI est actuellement en phase d'aperçu pour les développeurs. Il ne doit pas être utilisé en production.
-
-:::
-
-:::info Disponibilité
-
-This feature can be used **in 4D projects on Windows**. It is not available on macOS or in binary 4D databases on Windows.
-
-:::
-
-:::tip Article(s) de blog sur le sujet
-
-[Modernisez vos interfaces 4D avec Fluent UI](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui)
-
-:::
-
-### Conditions requises
-
-Le rendu Fluent UI nécessite l'installation du [**Windows App SDK version 1.7.3**](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/downloads). Vous devez installer ce SDK sur toute machine Windows affichant vos formulaires.
-
-Si le Windows App SDK n'est pas correctement installé, 4D utilisera le rendu classique pour vos formulaires sans erreur.
-
-### Activer le rendu Fluent UI
-
-Vous pouvez activer le mode de rendu Fluent UI au niveau de l'application ou au niveau du formulaire. Le paramétrage du formulaire a la priorité par rapport aux paramètres de l'application.
-
-#### Paramètres de l'application
-
-Cochez l'option **Utiliser Fluent UI sous Windows** dans la page "Interface" de la boîte de dialogue des Propriétés.
-
-
-
-Dans ce cas, le mode de rendu Fluent UI sera utilisé par défaut sur Windows pour tous les formulaires.
-
-#### Paramètres du formulaire
-
-Chaque formulaire peut définir son propre rendu via la propriété **Apparence des contrôles**. Les options suivantes sont disponibles :
-
-- **Hérité** : hérite des propriétés globales de l'application (par défaut),
-- **Classic** : utilise le style classique de Windows,
-- **Fluent UI** : active le rendu moderne basé sur Fluent UI.
- 
-
-La [propriété de formulaire JSON](./properties_JSONref.md) correspondante est `fluentUI` avec la valeur undefined (i.e. hérité, valeur par défaut), "true" ou "false".
-
-### Comportements spécifiques
-
-Lorsque vous utilisez les formulaires 4D avec le rendu Fluent UI, vous devez prêter attention aux points suivants :
-
-- La nouvelle commande `FORM Windows theme` renvoie le thème d'affichage actuel du formulaire courant. Valeurs possibles : "Classic" ou "FluentUI". S'il n'y a pas de formulaire courant ou si la commande est appelée sous macOS, une chaîne vide est renvoyée.
-- Si [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) est appelée dans le contexte d'un formulaire, les informations renvoyées concernent l'apparence courante du formulaire (Classic ou FluentUI). Si la commande est appelée en dehors du contexte d'un formulaire, les informations renvoyées concernent les [propriétés globales du projet](#application-setting).
-- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) avec le paramètre *itemStyle* `Underline` n'est pas pris en charge (ignoré) pour les menus pop up.
-- L'objet de formulaire [Stepper](../FormObjects/stepper.md) ne prend pas en charge l'événement [double-clic](../Events/onDoubleClicked.md).
-- Les [boutons circulaires](../FormObjects/button_overview.md#circle) sont pris en charge (comme sur macOS).
-- Les commandes [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) ne sont pas prises en charge dans les zones Web avec moteur de rendu système.
-- Un rectangle de focus peut être ajouté aux [zones de saisie](../FormObjects/input_overview.md) image et texte.
-
-:::info Limitations
-
-Cette **Developer preview** comporte certaines limitations, [listées dans l'article de blog qui lui est consacré](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui).
-
-:::
-
## Formulaires hérités
Les formulaires 4D peuvent utiliser et être utilisés comme «formulaires hérités», ce qui signifie que tous les objets du *Formulaire A* peuvent être utilisés dans le *Formulaire B*. Dans ce cas, *Formulaire B* "hérite" des objets du *Formulaire A*.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
index 7dc05bdc938a0d..7808c7c9a09363 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
@@ -175,12 +175,21 @@ Pour répondre à ces besoins, 4D propose les mécanismes suivants :
> La commande `GOTO OBJECT` peut rechercher l’objet de destination dans le formulaire parent même si elle exécutée depuis un sous-formulaire.
-#### Commande CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
La commande `CALL SUBFORM CONTAINER` permet à une instance de sous-formulaire d'envoyer un [événement](../Events/overview.md) à l'objet conteneur de sous-formulaire, qui peut alors le traiter dans le contexte du formulaire parent. L’événement est reçu dans la méthode de l’objet conteneur. Il peut s’agir à l’origine de tout événement détecté par le sous-formulaire (clic, glisser-déposer, etc.).
Le code de l’événement est libre (par exemple, 20000 ou -100). Vous pouvez soit utiliser un code correspondant à un événement existant (par exemple, 3 pour `Sur validation`), soit utiliser un code personnalisé. Dans le premier cas, seuls les événements présents dans la liste des événements "cochables" des conteneurs de sous-formulaire peuvent être utilisés (cf. Liste des propriétés). Dans le second cas, le code ne doit correspondre à aucun événement formulaire existant. Il est conseillé d’utiliser une valeur négative pour avoir l’assurance que 4D n’utilisera pas ce code dans les versions futures.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Pour plus d'informations, reportez-vous à la description de la commande `CALL SUBFORM CONTAINER`.
#### Commande EXECUTE METHOD IN SUBFORM
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Notes/updates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Notes/updates.md
index b9f76a452f9cb8..bcc9a8ecf0baf8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Notes/updates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Notes/updates.md
@@ -18,9 +18,8 @@ Lisez [**Les nouveautés de 4D 21**](https://blog.4d.com/fe-whats-new-in-4d-v21/
- Nouveaux [événements ORDA sur les données](../ORDA/orda-events.md) : validateSave, saving, afterSave, validateDrop, dropping, afterDrop.
- Prise en charge de la nouvelle propriété [`restrictedByDefault`](../ORDA/privileges.md#restriction-modes) dans le fichier `roles.json` pour bloquer l'accès par défaut à toutes les ressources sans permission explicite.
- Nouvelle option permettant d'utiliser les certificats du Windows Certificate Store au lieu d'un dossier de certificats locaux dans les classes [`HTTPRequest`](../API/HTTPRequestClass.md#4dhttprequestnew) et [`HTTPAgent`](../API/HTTPAgentClass.md#4dhttpagentnew).
-- Client/serveur :
- - Vous pouvez afficher des pages Qodly dans des zones Web et [partager la session du client distant](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
- - La [couche réseau QUIC](../settings/client-server.md#network-layer) a été renforcée pour gérer les changements d'interface réseau de manière transparente, par exemple lorsque vous voyagez avec votre ordinateur portable. Plus d'informations dans [cet article de blog](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
+- L'[API Sessions](../API/SessionClass.md) prend désormais en charge toutes les [sessions desktop](../Desktop/sessions.md) et vous pouvez [partager une session desktop avec un accès web](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), ce qui facilite le développement d'applications utilisant des pages Qodly dans les zones web.
+- La [couche réseau QUIC](../settings/client-server.md#network-layer) a été renforcée pour gérer les changements d'interface réseau de manière transparente, par exemple lorsque vous voyagez avec votre ordinateur portable. Plus d'informations dans [cet article de blog](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
- Vous pouvez désormais [créer des composants directement à partir du projet hôte](../Extensions/develop-components.md#creating-components) et [éditer leur code à partir d'un onglet dédié](../Extensions/develop-components.md#editing-all-component-code) dans l'explorateur 4D sans quitter ou redémarrer le projet.
- L'étape d'activation du produit 4D a été simplifiée et automatisée lors de la [connexion](../GettingStarted/Installation.md#sign-in).
- Composant 4D AIKit : nouvelles fonctionnalités pour [invoquer un outil spécifique automatiquement](../aikit/Classes/OpenAIChatHelper.md#registertool) et [spécifier un format de réponse](../aikit/Classes/OpenAIChatCompletionsParameters.md#response-format).
@@ -30,10 +29,6 @@ Lisez [**Les nouveautés de 4D 21**](https://blog.4d.com/fe-whats-new-in-4d-v21/
- [**Liste des bugs corrigés**](https://bugs.4d.fr/fixedbugslist?version=21) : liste de tous les bugs qui ont été corrigés dans 4D 21.
- [**4D Qodly Pro Release notes**](https://developer.4d.com/qodly/4DQodlyPro/release-notes) : les nouveautés de Qodly Studio.
-#### Developer Preview
-
-Le [rendu **Fluent UI** pour les formulaires 4D](../FormEditor/forms.md#fluent-ui-rendering-developer-preview) est proposé en Developer Preview pendant le programme de bêta-test.
-
#### Changements de comportement
:::caution Reconstruction d'index
@@ -42,10 +37,12 @@ Le [rendu **Fluent UI** pour les formulaires 4D](../FormEditor/forms.md#fluent-u
:::
-- Services web (SOAP) : lorsque les [sessions évolutives](../WebServer/sessions.md#enabling-web-sessions) sont activées, les services web s'exécutent désormais dans des [**process préemptifs**](../Develop/preemptive.md) en mode compilé. Make sure that your SOAP code is thread-safe and that the session in which it runs has appropriate [privileges](../API/SessionClass.md#setprivileges).
-- Serveur web : la prise en charge des URLs dépréciés `4DSYNC/` et `4DCGI/` est supprimée. Plus aucun traitement spécifique n'est effectué sur ces URLs.
+- Services web (SOAP) : lorsque les [sessions évolutives](../WebServer/sessions.md#enabling-web-sessions) sont activées, les services web s'exécutent désormais dans des [**process préemptifs**](../Develop/preemptive.md) en mode compilé. Assurez-vous que votre code SOAP est thread-safe et que la session dans laquelle il s'exécute dispose des [privilèges](../API/SessionClass.md#setprivileges) requis.
+- Serveur Web :
+ - la prise en charge des URLs dépréciés `4DSYNC/` et `4DCGI/` est supprimée. Plus aucun traitement spécifique n'est effectué sur ces URLs,
+ - les process web ne sont plus recyclés lorsque l'option [sessions extensibles](../WebServer/sessions.md#enabling-web-sessions) est activée.
- Les sessions utilisateurs Web sont désormais renvoyées par [`Process activity`](../commands/process-activity.md).
-- PHP commands are now [deprecated](https://blog.4d.com/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter/) and should no longer be used in your developments.
+- Les commandes PHP sont désormais [dépréciées](https://blog.4d.com/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter/) et ne doivent plus être utilisées dans vos développements.
- La commande [`HIGHLIGHT TEXT`](../commands/highlight-text) est maintenant prise en charge dans le contexte des sous-formulaires.
- En client/serveur, la notion de process local est supprimée. Le "$" n'a plus de signification spécifique dans les noms de process et le paramètre \* dans [`REGISTER CLIENT`](../commands/register-client) est ignoré.
- **Les composants ne sont plus intégrés** : à partir de 4D 21, les composants développés par 4D (4D NetKit, 4D SVG..., voir [cette liste](../Extensions/overview.md#components-developed-by-4d)) ne sont plus intégrés dans l'application 4D. Lors de la mise à jour d'un projet vers 4D 21 ou supérieur, une boîte de dialogue s'affiche :
@@ -294,7 +291,7 @@ Si vos applications 4D utilisent des connexions TLS, il est recommandé de mettr
| Bibliothèque | Version courante | Mise à jour dans 4D | Commentaire |
| ------------ | -------------------------------------- | ------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | fa47b1d | **21** | Utilisé pour QUIC |
+| BoringSSL | 9b86817 | **21** | Utilisé pour QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | Utilisé pour la vérification orthographique dans les formulaires 4D et 4D Write Pro |
| ICU | 77.1 | **21** | Cette mise à jour entraîne une reconstruction automatique des index alphanumériques, textes et objets. |
@@ -304,7 +301,7 @@ Si vos applications 4D utilisent des connexions TLS, il est recommandé de mettr
| Libuv | 1.51.0 | **21** | Utilisé pour QUIC |
| libZip | 1.11.4 | **21** | Utilisé par les classes zip, 4D Write Pro, les composants svg et serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.16.0 | **21** | Utilisé pour QUIC |
+| ngtcp2 | 1.18.0 | **21** | Utilisé pour QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Utilisé pour [`WP Export document`](../WritePro/commands/wp-export-document.md) et [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
| SpreadJS | 17.1.0 | 20 R7 | Voir [ce blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) pour un aperçu des nouvelles fonctionnalités. |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
index bf3fab6666e51c..30df93e70986c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/orda-events.md
@@ -24,7 +24,7 @@ Vous ne pouvez pas déclencher directement l'exécution d'une fonction d'événe
:::info Note de compatibilité
-Les événements d'entité ORDA dans le magasin de données sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Note also that, unlike triggers, ORDA entity events do not lock the entire underlying table of a dataclass while saving or dropping entities. Several events can run in parallel as long as they involve distinct entities (i.e. records).
+Les événements d'entité ORDA dans le datastore sont équivalents aux triggers dans la base de données 4D. Cependant, les actions déclenchées au niveau de la base de données 4D à l'aide des commandes du langage classique 4D ou des actions standard ne déclenchent pas les événements ORDA. Notez également que, contrairement aux triggers, les événements d'entité ORDA ne verrouillent pas l'ensemble de la table sous-jacente d'une dataclass lors de l'enregistrement ou de la suppression d'entités. Plusieurs événements peuvent se dérouler en parallèle tant qu'ils concernent des entités distinctes (c'est-à-dire des enregistrements distincts).
:::
@@ -170,11 +170,11 @@ Function event touched($event : Object)
#### Exemple 2
-The "touched" event is useful when it is not possible to write indexed query code in [`Function query()`](./ordaClasses.md#function-query-attributename) for a [computed attribute](./ordaClasses.md#computed-attributes).
+L'événement "touched" est utile quand il n'est pas possible d'écrire un code de requête indexée dans [`Function query()`](./ordaClasses.md#function-query-attributename) pour un [attribut calculé](./ordaClasses.md#computed-attributes).
-This is the case for example, when your [`query`](./ordaClasses.md#function-query-attributename) function has to compare the value of different attributes from the same entity with each other. You must use formulas in the returned ORDA query -- which triggers sequential queries.
+C'est le cas, par exemple, lorsque votre fonction [`query`](./ordaClasses.md#function-query-attributename) doit comparer la valeur de différents attributs de la même entité. Vous devez utiliser des formules dans la requête ORDA renvoyée, ce qui déclenche des requêtes séquentielles.
-To fully understand this case, let's examine the following two calculated attributes:
+Pour bien comprendre ce cas, examinons les deux attributs calculés suivants :
```4d
Function get onGoing() : Boolean
@@ -184,9 +184,9 @@ Function get sameDay() : Boolean
return (This.departureDate=This.arrivalDate)
```
-Even though they are very similar, these functions cannot be associated with identical queries because they do not compare the same types of values. The first compares attributes to a given value, while the second compares attributes to each other.
+Même si elles sont très similaires, ces fonctions ne peuvent pas être associées à des requêtes identiques car elles ne comparent pas les mêmes types de valeurs. Le premier compare les attributs à une valeur donnée, tandis que le second compare les attributs entre eux.
-- For the *onGoing* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function is simple to write and uses indexed attributes:
+- Pour l'attribut *onGoing*, la fonction [`query`](./ordaClasses.md#function-query-attributename) est simple à écrire et utilise des attributs indexés :
```4d
Function query onGoing($event : Object) : Object
@@ -207,12 +207,12 @@ Function query onGoing($event : Object) : Object
End case
$myQuery:=($onGoingValue) ? "departureDate <= :1 AND arrivalDate >= :1" : "departureDate > :1 OR arrivalDate < :1"
- // the ORDA query string uses indexed attributes, it will be indexed
+ // la chaîne de requête ORDA utilise des attributs indexés, elle sera indexée
$parameters.push(Current date)
return {query: $myQuery; parameters: $parameters}
```
-- For the *sameDay* attribute, the [`query`](./ordaClasses.md#function-query-attributename) function requires an ORDA query based on formulas and will be sequential:
+- Pour l'attribut *sameDay*, la fonction [`query`](./ordaClasses.md#function-query-attributename) requiert une requête ORDA basée sur des formules et sera séquentielle :
```4d
Function query sameDay($event : Object) : Text
@@ -230,11 +230,11 @@ Function query sameDay($event : Object) : Text
End case
return ($sameDayValue) ? "eval(This.departureDate = This.arrivalDate)" : "eval(This.departureDate != This.arrivalDate)"
- // the ORDA query string uses a formula, it will not be indexed
+ // la requête ORDA utilise une formule, elle ne sera pas indexée
```
-- Using a **scalar** *sameDay* attribute updated when other attributes are "touched" will save time:
+- L'utilisation d'un attribut **scalaire** *sameDay* mis à jour lorsque d'autres attributs sont "touched" permet de gagner du temps :
```4d
//BookingEntity class
@@ -250,7 +250,7 @@ Function event touched arrivalDate($event : Object)
```
-#### Example 3 (diagram): Client/server with the `local` keyword:
+#### Exemple 3 (diagramme) : Client/serveur avec le mot-clé `local` :
```mermaid
@@ -265,11 +265,11 @@ Note over Client:$people.lastname is uppercased
Client->>+Server: $people.apply()
- Note over Server: The $people entity is received with the lastname attribute uppercased
+ Note over Server: L'entity $people est reçue avec l'attribut lastname en majuscules
```
-#### Example 4 (diagram): Client/server without the `local` keyword
+#### Exemple 4 (diagramme) : Client/serveur avec le mot-clé `local`
```mermaid
@@ -279,37 +279,37 @@ sequenceDiagram
Client->>+Client: $people.lastname:="Brown"
- Note over Client:$people.lastname is not uppercased
+ Note over Client:$people.lastname n'est pas en majuscules
Client->>+Server: $people.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
- Server-->>-Client: The $people entity is updated
+ Server-->>-Client: L'entité $people est mise à jour
- Note over Client:$people.lastname is uppercased
+ Note over Client:$people.lastname est en majuscules
```
-#### Example 5 (diagram): Qodly application
+#### Exemple 5 (diagramme) : Application Qodly
```mermaid
sequenceDiagram
-Qodly page->>+ Server: Get an entity into the People Qodly source
+Qodly page->>+ Server: Récupérer une entité dans la source Qodly People
-Qodly page->>+Qodly page: The user updates People.lastname
+Qodly page->>+Qodly page: L'utilisateur met à jour People.lastname
-Note over Qodly page: The People Qodly source lastname attribute is not uppercased
+Note over Qodly page: L'attribut lastname de la source Qodly People n'est pas en majuscules
-Qodly page->>+ Server: Function call People.apply()
+Qodly page->>+ Server: Appel de fonction People.apply()
Note over Server: Function event touched lastname($event : Object)
This.lastname:=Uppercase(This.lastname)
-Server-->>-Qodly page: The People Qodly source is updated
-Note over Qodly page: The People Qodly source lastname attribute is uppercased
+Server-->>-Qodly page: La source Qodly People est mise à jour
+Note over Qodly page: L'attribut lastname de la source Qodly People est en majuscules
```
@@ -324,41 +324,41 @@ Function event validateSave ($event : Object)
// code
```
-This event is triggered each time an entity is about to be saved.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être sauvegardée.
-- if you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- if you defined the function at the attribute level (second syntax), it is called only for this attribute. This function is **not** executed if the attribute has not been touched in the entity.
+- si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut. Cette fonction n'est **pas** exécutée si l'attribut n'a pas été modifié dans l'entité.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following functions:
+Cet événement est déclenché par les fonctions suivantes :
- [`entity.save()`](../API/EntityClass.md#save)
- [`dataClass.fromCollection()`](../API/DataClassClass.md#fromcollection)
-This event is triggered **before** the entity is actually saved and lets you check data consistency so that you can stop the action if needed. For example, you can check in this event that "departure date" < "arrival date".
+Cet événement est déclenché **avant** que l'entité ne soit réellement sauvegardée et vous permet de vérifier la cohérence des données afin d'interrompre l'action si nécessaire. Par exemple, vous pouvez vérifier dans cet événement que "date de départ" < "date d'arrivée".
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
:::note
-It is not recommended to update the entity within this function (using `This`).
+Il n'est pas recommandé de mettre à jour l'entité dans le cadre de cette fonction (en utilisant `This`).
:::
#### Exemple
-In this example, it is not allowed to save a product with a margin lower than 50%. In case of an invalid price attribute, you return an error object and thus, stop the save action.
+Dans cet exemple, il n'est pas permis de sauvegarder un produit dont la marge est inférieure à 50 %. En cas d'attribut de prix non valide, vous renvoyez un objet erreur et arrêtez ainsi l'action de sauvegarde.
```4d
// ProductsEntity class
//
-// validateSave event at attribute level
+// event validateSave au niveau attribut
Function event validateSave margin($event : Object) : Object
var $result : Object
-//The user can't create a product whose margin is < 50%
+//L'utilisateur ne peut pas créer un produit dont la marge est < 50%
If (This.margin<50)
$result:={errCode: 1; message: "The validation of this product failed"; \
extraDescription: {info: "The margin of this product ("+String(This.margin)+") is lower than 50%"}; seriousError: False}
@@ -377,37 +377,37 @@ Function event saving ($event : Object)
// code
```
-This event is triggered each time an entity is being saved.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être sauvegardée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity. The function is executed even if no attribute has been touched in the entity (e.g. in case of sending data to an external app each time a save is done).
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute. The function is **not** executed if the attribute has not been touched in the entity.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité. La fonction est exécutée même si aucun attribut n'a été touché dans l'entité (par exemple, dans le cas de l'envoi de données à une application externe à chaque fois qu'une sauvegarde est effectuée).
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut. La fonction n'est **pas** exécutée si l'attribut n'a pas été touché dans l'entité.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following functions:
+Cet événement est déclenché par les fonctions suivantes :
- [`entity.save()`](../API/EntityClass.md#save)
- [`dataClass.fromCollection()`](../API/DataClassClass.md#fromcollection)
-This event is triggered **while** the entity is actually saved. If a [`validateSave()`](#function-event-validatesave) event function was defined, the `saving()` event function is called if no error was triggered by `validateSave()`. For example, you can use this event to create a document on a Google Drive account.
+Cet événement est déclenché **pendant que** l'entité est sauvegardée. Si une fonction d'événement [`validateSave()`](#function-event-validatesave) a été définie, la fonction d'événement `saving()` est appelée si aucune erreur n'a été déclenchée par `validateSave()`. Par exemple, vous pouvez utiliser cet événement pour créer un document sur un compte Google Drive.
:::note
-The business logic should raise errors which can't be detected during the `validateSave()` events, e.g. a network error
+La logique applicative doit générer les erreurs qui ne peuvent pas être détectées lors des événements `validateSave()`, par exemple une erreur de réseau.
:::
-During the save action, 4D engine errors can be raised (index, stamp has changed, not enough space on disk).
+Lors de l'action de sauvegarde, des erreurs du moteur 4D peuvent être générées (index, le marqueur stamp a changé, pas assez d'espace sur le disque).
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-When a file is saved on disk, catch errors related to disk space for example.
+Lorsqu'un fichier est sauvegardé sur le disque, intercepter par exemple les erreurs liées à l'espace disque.
```4d
-// ProductsEntity class
-// saving event at attribute level
+// Classe ProductsEntity
+// Evénement save au niveau de l'attribut
Function event saving userManualPath($event : Object) : Object
var $result : Object
@@ -417,17 +417,17 @@ var $fileCreated : Boolean
If (This.userManualPath#"")
$userManualFile:=File(This.userManualPath)
- // The user manual document file is created on the disk
- // This may fail if no more space is available
+ // Le fichier du manuel de l'utilisateur est créé sur le disque
+ // Cela peut échouer s'il n'y a plus d'espace disponible
Try
- // The file content has been generated and stored in a map in Storage.docMap previously
- $docInfo:=Storage.docMap.query("name = :1"; This.name).first()
+ // Le contenu du fichier a été généré et stocké dans une carte dans Storage.docMap précédemment
+ $docInfo:=Storage.docMap.query("name = :1" ; This.name).first()
$userManualFile.setContent($docInfo.content)
Catch
- // No more room on disk for example
+ // Il n'y a plus de place sur le disque par exemple
$result:={/
- errCode: 1; message: "Error during the save action for this product"; /
- extraDescription: {info: "There is no available space on disk to store the user manual"}/
+ errCode : 1 ; message : "Error during the save action for this product" ; /
+ extraDescription : {info : "Il n'y a pas d'espace disponible sur le disque pour stocker le manuel de l'utilisateur"}/
}
End try
End if
@@ -438,7 +438,7 @@ return $result
:::note
-The content of the file is generated outside the `saving` event because it can be time consuming.
+Le contenu du fichier est généré en dehors de l'événement `saving` car cela peut prendre du temps.
:::
@@ -451,30 +451,30 @@ Function event afterSave($event : Object)
// code
```
-This event is triggered just after an entity is saved in the data file, when at least one attribute was modified. It is not executed if no attribute has been touched in the entity.
+Cet événement est déclenché juste après la sauvegarde d'une entité dans le fichier de données, lorsqu'au moins un attribut a été modifié. Elle n'est pas exécutée si aucun attribut n'a été modifié dans l'entité.
-This event is useful after saving data to propagate the save action outside the application or to execute administration tasks. For example, it can be used to send a confirmation email after data have been saved. Or, in case of error while saving data, it can make a rollback to restore a consistent state of data.
+Cet événement est utile après la sauvegarde des données pour propager l'action de sauvegarde en dehors de l'application ou pour exécuter des tâches d'administration. Par exemple, il peut être utilisé pour envoyer un courriel de confirmation après la sauvegarde des données. Ou, en cas d'erreur lors de l'enregistrement des données, il peut effectuer un retour en arrière pour restaurer un état cohérent des données.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-- To avoid infinite loops, calling a [`save()`](../API/EntityClass.md#save) on the current entity (through `This`) in this function is **not allowed**. It will raise an error.
-- Throwing an [error object](#error-object) is **not supported** by this function.
+- Pour éviter les boucles infinies, appeler un [`save()`](../API/EntityClass.md#save) sur l'entité courante (via `This`) dans cette fonction n'est **pas autorisé**. Cela provoquera une erreur.
+- Faire un throw d'un [objet erreur](#error-object) n'est **pas pris en charge** par cette fonction.
#### Exemple
-If an error occurred in the above saving event, the attribute value is reset accordingly in the `afterSave` event:
+Si une erreur s'est produite lors de l'événement de sauvegarder ci-dessus, la valeur de l'attribut est réinitialisée en conséquence dans l'événement `afterSave` :
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event afterSave($event : Object)
If (($event.status.success=False) && ($event.status.errors=Null))
- // $event.status.errors is filled if the error comes from the validateSave event
+ // $event.status.errors est rempli si l'erreur provient de l'événement validateSave
- // The userManualPath attribute has not been properly saved
- // Its value is reset
+ // L'attribut userManualPath n'a pas été correctement sauvegardé
+ // Sa valeur est réinitialisée
If ($event.savedAttributes.indexOf("userManualPath")=-1)
- This.userManualPath:=""
+ This.userManualPath:="
This.status:="KO"
End if
@@ -491,38 +491,38 @@ Function event validateDrop ($event : Object)
// code
```
-This event is triggered each time an entity is about to be dropped.
+Cet événement est déclenché chaque fois qu'une entité est sur le point d'être supprimée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following features:
+Cet événement est déclenché par les fonctionnalités suivantes :
- [`entity.drop()`](../API/EntityClass.md#drop)
- [`entitySelection.drop()`](../API/DataClassClass.md#fromcollection)
-- [deletion control rules](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) that can be defined at the database structure level.
+- [règles de contrôle de la suppression](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) qui peuvent être définies au niveau de la structure de la base de données.
-This event is triggered **before** the entity is actually dropped, allowing you to check data consistency and if necessary, to stop the drop action.
+Cet événement est déclenché **avant** que l'entité ne soit effectivement supprimée, ce qui permet de vérifier la cohérence des données et, le cas échéant, d'interrompre l'action de suppression.
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-In this example, it is not allowed to drop a product that is not labelled "TO DELETE". In this case, you return an error object and thus, stop the drop action.
+Dans cet exemple, il n'est pas permis de supprimer un produit qui n'est pas libellé "TO DELETE". Dans ce cas, vous renvoyez un objet d'erreur et stoppez ainsi l'action de suppression.
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event validateDrop status($event : Object) : Object
-var $result : Object
+var $result : Objet
-// Products must be marked as TO DELETE to be dropped
+// Les produits doivent être marqués TO DELETE pour être supprimables
If (This.status#"TO DELETE")
- $result:={errCode: 1; message: "You can't drop this product"; \
- extraDescription: {info: "This product must be marked as To Delete"}; seriousError: False}
+ $result:={errCode : 1 ; message : "Vous ne pouvez pas supprimer ce produit" ; \
+ extraDescription : {info : "Ce produit doit être marqué comme à supprimer"} ; seriousError : False}
End if
return $result
@@ -538,35 +538,35 @@ Function event dropping ($event : Object)
// code
```
-This event is triggered each time an entity is being dropped.
+Cet événement est déclenché chaque fois qu'une entité est supprimée.
-- If you defined the function at the entity level (first syntax), it is called for any attribute of the entity.
-- If you defined the function at the attribute level (second syntax), it is called only for this attribute.
+- Si vous avez défini la fonction au niveau de l'entité (première syntaxe), elle est appelée pour tout attribut de l'entité.
+- Si vous avez défini la fonction au niveau de l'attribut (deuxième syntaxe), elle n'est appelée que pour cet attribut.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-This event is triggered by the following features:
+Cet événement est déclenché par les fonctionnalités suivantes :
- [`entity.drop()`](../API/EntityClass.md#drop)
- [`entitySelection.drop()`](../API/DataClassClass.md#fromcollection)
-- [deletion control rules](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) that can be defined at the database structure level.
+- [règles de contrôle de la suppression](https://doc.4d.com/4Dv20/4D/20.2/Relation-properties.300-6750290.en.html#107320) qui peuvent être définies au niveau de la structure de la base de données.
-This event is triggered **while** the entity is actually dropped. If a [`validateDrop()`](#function-event-validatedrop) event function was defined, the `dropping()` event function is called if no error was triggered by `validateDrop()`.
+Cet événement est déclenché **pendant que** l'entité est effectivement supprimée. Si une fonction d'événement [`validateDrop()`](#function-event-validatedrop) a été définie, la fonction d'événement `dropping()` est appelée si aucune erreur n'a été générée par `validateDrop()`.
:::note
-The business logic should raise errors which cannot be detected during the `validateDrop()` events, e.g. a network error.
+La logique applicative doit générer les erreurs qui ne peuvent pas être détectées lors des événements `validateDrop()`, par exemple une erreur de réseau.
:::
-To stop the action, the code of the function must return an [error object](#error-object).
+Pour stopper l'action, le code de la fonction doit renvoyer un [objet erreur](#error-object).
#### Exemple
-Here is an example of `dropping` event at entity level:
+Voici un exemple d'événement `dropping` au niveau de l'entité :
```4d
-// ProductsEntity class
+// Classe ProductsEntity
Function event dropping($event : Object) : Object
var $result : Object
@@ -574,15 +574,15 @@ var $userManualFile : 4D.File
$userManualFile:=File(This.userManualPath)
- // When dropping a product, its user manual is also deleted on the disk
- // This action may fail
+ // Lors de la suppression d'un produit, son manuel d'utilisation est également supprimé sur le disque
+ // Cette action peut échouer
Try
If ($userManualFile.exists)
$userManualFile.delete()
End if
Catch
- // Dropping the user manual failed
- $result:={errCode: 1; message: "Drop failed"; extraDescription: {info: "The user manual can't be dropped"}}
+ // La suppression du manuel d'utilisation a échoué
+ $result:={errCode : 1 ; message : "Drop failed" ; extraDescription : {info : "Le manuel de l'utilisateur ne peut pas être supprimé"}}
End try
return $result
@@ -597,24 +597,24 @@ Function event afterDrop($event : Object)
// code
```
-This event is triggered just after an entity is dropped.
+Cet événement est déclenché juste après la suppression d'une entité.
-This event is useful after dropping data to propagate the drop action outside the application or to execute administration tasks. For example, it can be used to send a cancellation email after data have been dropped. Or, in case of error while dropping data, it can log an information for the administrator to check data consistency.
+Cet événement est utile après la suppression de données pour propager l'action de suppression en dehors de l'application ou pour exécuter des tâches d'administration. Par exemple, il peut être utilisé pour envoyer un courriel d'annulation après la suppression de données. Ou, en cas d'erreur lors de la suppression des données, il peut enregistrer une information permettant à l'administrateur de vérifier la cohérence des données.
La fonction reçoit un objet [*event*](#event-parameter) en paramètre.
-- To avoid infinite loops, calling a [`drop()`](../API/EntityClass.md#drop) on the current entity (through `This`) in this function is **not allowed**. It will raise an error.
-- Throwing an [error object](#error-object) is **not supported** by this function.
+- Pour éviter les boucles infinies, appeler [`drop()`](../API/EntityClass.md#drop) sur l'entité courante (à travers `This`) dans cette fonction n'est **pas autorisé**. Cela provoquera une erreur.
+- Faire un throw d'un [objet erreur](#error-object) n'est **pas pris en charge** par cette fonction.
:::note
-The dropped entity is referenced by `This` and still exists in memory.
+L'entité supprimée est référencée par `This` et existe toujours en mémoire.
:::
#### Exemple
-If the drop action failed, then the product must be checked manually:
+Si l'action de suppression a échoué, le produit doit être vérifié manuellement :
```4d
Function event afterDrop($event : Object)
@@ -622,8 +622,8 @@ Function event afterDrop($event : Object)
var $status : Object
If (($event.status.success=False) && ($event.status.errors=Null))
- //$event.status.errors is filled
- //if the error comes from the validateDrop event
+ //$event.status.errors est rempli
+ //si l'erreur provient de l'événement validateDrop
This.status:="Check this product - Drop action failed"
$status:=This.save()
End if
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
index c9fe27abd154c3..159806de4af868 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
@@ -27,19 +27,19 @@ Si un utilisateur tente d'exécuter une action et ne dispose pas des droits d'ac
Vous pouvez assigner des actions de permission spécifiques aux ressources suivantes dans votre projet :
-- the [datastore](../ORDA/dsMapping.md#datastore)
-- the [dataclasses](../ORDA/dsMapping.md#dataclass)
-- [attributes](../ORDA/dsMapping.md#attribute) (including [computed](./ordaClasses.md#computed-attributes-1) and [alias](./ordaClasses.md#alias-attributes-1))
-- functions of the [data model classes](../ORDA/ordaClasses.md)
-- [singleton](../REST/$singleton.md) functions
+- le [datastore](../ORDA/dsMapping.md#datastore)
+- les [dataclasses](../ORDA/dsMapping.md#dataclass)
+- les [attributs](../ORDA/dsMapping.md#attribute) (y compris [calculés](./ordaClasses.md#computed-attributes-1) et [alias](./ordaClasses.md#alias-attributes-1))
+- les fonctions des [classes du modèle de données](../ORDA/ordaClasses.md)
+- les fonctions [singleton](../REST/$singleton.md)
Chaque fois qu'on accède à une ressource dans une session (quelle que soit la manière dont on y accède), 4D vérifie que la session dispose des autorisations appropriées et rejette l'accès s'il n'est pas autorisé.
## Permissions
-A permission is the ability to do an action on a resource. For example, *execute the ds.myTable.myFunction()* represents a **permission**. Permissions are defined for the project in the [`roles.json`](#rolesjson-file) file. Each permission can be given to one or more [privileges](#privileges-and-roles).
+Une permission est la possibilité d'effectuer une action sur une ressource. Par exemple, *exécuter la fonction ds.myTable.myFunction()* représente une **permission**. Les permissions sont définies pour le projet dans le fichier [`roles.json`](#rolesjson-file). Chaque permission peut être accordée à un ou plusieurs [privileges](#privileges-and-roles).
-When **no specific permission** has been defined for a resource, access to the resource may be automatically **unrestricted** or **restricted** depending on the [default mode defined for the project](#restriction-modes).
+Quand **aucune permission spécifique** n'a été définie pour une ressource, l'accès à la ressource peut être automatiquement **sans restriction** ou **restreint** selon le [mode par défaut défini pour le projet](#restriction-modes).
### Actions de permission
@@ -67,7 +67,7 @@ Les actions disponibles sont liées à la ressource cible.
Le paramétrage des permissions nécessite d'être cohérent, en particulier les permissions **update** et **drop** ont également besoin d'une permission **read** (mais **create** n'en a pas besoin).
-### Inherited permissions
+### Permissions héritées
Une action de permission définie à un certain niveau est héritée par défaut aux niveaux inférieurs, mais plusieurs niveaux de permissions peuvent être définis :
@@ -164,7 +164,7 @@ exposed Function authenticate($identifier : Text; $password : Text)->$result : T
## `roles.json`
-The `roles.json` file describes the whole web security settings for the project. La syntaxe du fichier `roles.json` est la suivante:
+Le fichier `roles.json` décrit l'ensemble des paramètres de sécurité du projet. La syntaxe du fichier `roles.json` est la suivante:
| Nom de propriété | | | Type | Obligatoire | Description |
| ------------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------- | -------------------------------- | ----------- | ---------------------------------------------------------------------------------------------------------------------------------- |
@@ -184,19 +184,19 @@ The `roles.json` file describes the whole web security settings for the project.
| | | \[].drop | Collection de chaînes | | Liste de privilèges |
| | | \[].execute | Collection de chaînes | | Liste de privilèges |
| | | \[].promote | Collection de chaînes | | Liste de privilèges |
-| restrictedByDefault | | | Boolean | | If true, access to resources without explicit permissions is denied |
-| forceLogin | | | Boolean | | If true, enables ["forceLogin" mode](../REST/authUsers.md#force-login-mode) |
+| restrictedByDefault | | | Boolean | | Si true, l'accès aux ressources sans permission explicite est refusé |
+| forceLogin | | | Boolean | | Si true, active le mode ["forceLogin"](../REST/authUsers.md#force-login-mode) |
:::caution Rappel
- Le nom de privilège "WebAdmin" est réservé à l'application. Il est déconseillé d'utiliser ce nom pour les privilèges personnalisés.
-- `privileges` and `roles` names are case-insensitive.
+- Les noms de `privileges` et de `roles` ne sont pas sensibles à la casse.
:::
-### Default File Location and Content
+### Emplacement et contenu du fichier par défaut
-When a new project is created, a default `roles.json` file is generated at:
+Lorsqu'un nouveau projet est créé, un fichier `roles.json` par défaut est généré à cet emplacement :
```
/Project/Sources/
@@ -204,7 +204,7 @@ When a new project is created, a default `roles.json` file is generated at:
Voir la section [Architecture](../Project/architecture.md#sources) .
-Default content:
+Contenu par défaut :
```json title="/Project/Sources/roles.json"
@@ -240,30 +240,30 @@ Dans les versions précédentes, le fichier `roles.json` n'était pas créé par
:::note Qodly Studio
-In Qodly Studio for 4D, the login mode can be set using the [**Force login** option](https://developer.4d.com/qodly/4DQodlyPro/force-login) in the Roles and Privileges panel.
+Dans Qodly Studio pour 4D, le mode de connexion peut être réglé en utilisant l'option [**Force login**](https://developer.4d.com/qodly/4DQodlyPro/force-login) dans le panneau Rôles et Privilèges.
:::
-## Restriction Modes
+## Modes de restriction
-The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
+La propriété `restrictedByDefault` configure la manière dont chaque [ressource](#resources) est accessible lorsqu'[aucune permission spécifique n'est définie pour elle](#permission) :
-- **Unrestricted mode** (`restrictedByDefault`: **false**): Resources without defined permissions are accessible to all requests. This mode is suitable for development environments where access can be gradually restricted.
-- **Restricted mode** (`restrictedByDefault`: **true**): Resources without defined permissions are blocked by default. This mode is recommended for production environments where access must be explicitly granted.
+- **Mode sans restriction** (`restrictedByDefault`: **false**) : les ressources sans permissions définies sont accessibles à toutes les requêtes. Ce mode convient aux environnements de développement où l'accès peut être progressivement restreint.
+- **Mode restreint** (`restrictedByDefault` : **true**) : Les ressources qui n'ont pas de permissions définies sont bloquées par défaut. Ce mode est recommandé pour les environnements de production où l'accès doit être explicitement accordé.
:::note Compatibilité
-- When **creating a new project**, the `restrictedByDefault` property is set to **false** in the *roles.json* file (see below). Keep in mind that this configuration is tailored for quick start and smooth development. In production environment, [it is recommended to set the `restrictedByDefault` and `forceLogin` properties to **true**](#configuring-restrictedbydefault-and-forcelogin-properties).
-- In **projects converted from previous releases**; when enabling access to Qodly Studio using the [One-click configuration dialog](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration), the `restrictedByDefault` property is added with value **true** in the *roles.json* file.
+- Lors de la **création d'un projet**, la propriété `restrictedByDefault` est mise à **false** dans le fichier *roles.json* (voir ci-dessous). Gardez à l'esprit que cette configuration est conçue pour un démarrage rapide et un développement fluide. Dans un environnement de production, [il est recommandé de définir les propriétés `restrictedByDefault` et `forceLogin` à **true**](#configuring-restrictedbydefault-and-forcelogin-properties).
+- Dans les **projets convertis à partir de versions précédentes** ; lors de l'activation de l'accès à Qodly Studio en utilisant le [Dialogue de configuration en un clic](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration), la propriété `restrictedByDefault` est ajoutée avec la valeur **true** dans le fichier *roles.json*.
:::
-### Recommended Configuration
+### Configuration recommandée
-Depending on your environment, the recommended settings are:
+En fonction de votre environnement, les paramètres recommandés sont les suivants :
-- **Production**: Set both `restrictedByDefault` and [`forceLogin`](../REST/authUsers.md#force-login-mode) to **true**. This ensures maximum security by requiring user authentication and explicitly defined permissions for resource access.
-- **Development**: Set both `restrictedByDefault` and [`forceLogin`](../REST/authUsers.md#force-login-mode) to **false**. This allows easier access during development and debugging, with the possibility to gradually apply restrictions.
+- **Production** : Configurez les deux options `restrictedByDefault` et [`forceLogin`](../REST/authUsers.md#force-login-mode) à **true**. Cela garantit une sécurité maximale en exigeant l'authentification de l'utilisateur et des permissions explicitement définies pour l'accès aux ressources.
+- **Développement** : Configurez les deux options `restrictedByDefault` et [`forceLogin`](../REST/authUsers.md#force-login-mode) à **false**. Cela permet un accès plus facile pendant le développement et le débogage, avec la possibilité d'appliquer progressivement des restrictions.
### `Roles_Errors.json`
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/overview.md
index b007364a8d8a92..6246c59ddbb72c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/overview.md
@@ -5,7 +5,7 @@ title: Préférences
Les préférences utilisateur spécifient divers paramètres associés à votre environnement de travail, tels que les options par défaut, les thèmes d'affichage, les fonctionnalités de l'éditeur de code, les raccourcis, etc. Elles sont appliquées à tous les projets ouverts avec votre application 4D ou 4D Server.
-**4D Server** : Le verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
+**4D Server** : Un verrouillage des objets se produit lorsque deux utilisateurs ou plus tentent de modifier les paramètres de la boîte de dialogue Préférences en même temps. Un seul utilisateur à la fois peut utiliser la boîte de dialogue Préférences.
> 4D propose un ensemble de paramètres spécifiques pour le projet ouvert : **Paramètres** (disponible dans le menu **Développement**). Pour plus d'informations, reportez-vous au chapitre Paramètres.
@@ -21,7 +21,7 @@ Vous pouvez également afficher la boîte de dialogue Préférences en mode Appl
## Storage
-Settings made in the Preferences dialog box are saved in an XML format preferences file named **4D Preferences vXX.4DPreferences** that is stored in the active 4D folder of the current user, as returned by the [`Get 4D folder`](../commands-legacy/get-4d-folder.md) command:
+Les réglages effectués dans la boîte de dialogue des Préférences sont enregistrés dans un fichier de préférences au format XML nommé **4D Preferences vXX.4DPreferences** qui est stocké dans le dossier 4D actif de l'utilisateur courant, tel qu'il est renvoyé par la commande [`Get 4D folder`](../commands-legacy/get-4d-folder.md) :
- Windows: `{disk}\Users\\{username\}\AppData\Roaming\4D`
- macOS: `{disk}:Users:\{username\}:Library:Application Support:4D`
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/structure.md
index e6cc1a71362974..20054782741acc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Preferences/structure.md
@@ -5,7 +5,7 @@ title: Page Structure
## Clé primaire
-These options in the preferences modify the default name and type of the primary key fields that are added automatically by 4D when new tables are created or by means of the [Primary key manager](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
+Ces options des préférences modifient le nom et le type par défaut des champs de clé primaire qui sont ajoutés automatiquement par 4D lors de la création de nouvelles tables ou au moyen du [Gestionnaire de clés primaires](https://doc.4d.com/4Dv20/4D/20.2/Primary-key-manager.300-6750292.en.html)).
Les options suivantes sont disponibles :
@@ -22,5 +22,5 @@ Cette option permet de faire varier le niveau de détail graphique de l’édite
### Quand un dossier est masqué, son contenu est :
-This option sets the appearance of dimmed tables in the Structure editor, when you carry out selections by folder (see [Highlight/dim tables by folder](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
+Cette option définit l'apparence des tables atténuées dans l'éditeur de structure, lorsque vous effectuez des sélections par dossier (voir [Filtrage des tables par dossier](https://doc.4d.com/4Dv20/4D/20.2/Structure-editor.300-6750284.en.html#4592928)). Les options possibles sont Atténué (une ombre subsiste à l’emplacement de la table) et Invisible (la table disparaît entièrement).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
index 107bd18979cd80..525f17ee6ae0d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ La zone "Vue d’ensemble" fournit diverses informations relatives au système,

-Usually, you will need to check the [**Licences Manager**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Zone Détails
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Tags/transformation-tags.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Tags/transformation-tags.md
index 8bea0677e610e2..094fb049edbff2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Tags/transformation-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Tags/transformation-tags.md
@@ -167,35 +167,35 @@ Voici les caractéristiques de la balise 4DCODE :
## 4DEACH et 4DENDEACH
-#### Syntax: `` ``
+#### Syntaxe : `` ``
-The `` comment allows iterating a specified item over all values of the *expression*. The item is set to a *variable* whose type depends on the *expression* type.
+Le commentaire `` permet d'itérer un élément spécifié sur toutes les valeurs de l'*expression*. L'élément est défini comme une *variable* dont le type dépend du type de l'*expression*.
-The `` comment can iterate through three expression types:
+Le commentaire `` peut itérer sur trois types d'expression :
-- [collections](#--4deach-item-in-collection--): loop through each element of the collection,
-- [entity selections](#--4deach-entity-in-entityselection--): loop through each entity,
-- [objects](#--4deach-property-in-object--): loop through each object property.
+- les [collections](#--4deach-item-in-collection--) : boucle sur chaque élément de la collection,
+- les [entity selections](#--4deach-entity-in-entityselection--) : boucle sur chaque entité,
+- les [objets](#--4deach-property-in-object--) : boucle sur chaque propriété de l'objet.
Le nombre d'itérations est évalué au démarrage et ne changera pas pendant le traitement. L'ajout ou la suppression d'éléments pendant la boucle est donc déconseillé car il pourra en résulter une redondance ou un manque d'itérations.
### ``
-This syntax iterates on each *item* of the *collection*. The code portion located between `` and `` is repeated for each collection element.
+Cette syntaxe permet d'effectuer une itération sur chaque *item* de la *collection*. La partie du code située entre `` et `` est répétée pour chaque élément de collection.
-The *item* parameter is a variable of the same type as the collection elements.
+Le paramètre *item* est une variable du même type que les éléments de la collection.
-The collection must contain only **elements of the same type**, otherwise an error is returned as soon as the *item* variable is assigned the first mismatched value type.
+La collection ne doit contenir que des **éléments de même type**, sinon une erreur est renvoyée dès que la variable *item* se voit attribuer le premier type de valeur non concordant.
-Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le nombre de boucles est basé sur le nombre d'éléments de la collection. Vous devez tenir compte des points suivants :
+Le nombre de boucles est basé sur le nombre d'éléments de la collection. À chaque itération, la variable *item* est automatiquement remplie avec l'élément correspondant de la collection. Vous devez tenir compte des points suivants :
-- If the *item* variable is of the object type or collection type (i.e. if *expression* is a collection of objects or of collections), modifying this variable will automatically modify the matching element of the collection (because objects and collections share the same references). Si la variable est de type scalaire, seule la variable sera modifiée.
-- The *item* variable gets the same type as the first collection element. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
-- If the collection contains elements with a Null value, an error is generated if the *item* variable type does not support Null values (such as longint variables).
+- Si la variable *item* est de type objet ou collection (c'est-à-dire si *expression* est une collection d'objets ou de collections), la modification de cette variable modifiera automatiquement l'élément correspondant de la collection (car les objets et les collections partagent les mêmes références). Si la variable est de type scalaire, seule la variable sera modifiée.
+- La variable *item* a le même type que le premier élément de la collection. Si un seul élément de la collection n'est pas du même type que la variable, une erreur est générée et la boucle s'arrête.
+- Si la collection contient des éléments avec une valeur nulle, une erreur est générée si le type de variable *élément* ne prend pas en charge les valeurs nulles (comme les variables integer).
#### Exemple avec une collection de valeurs scalaires
-*getNames* returns a collection of strings. The method has been declared as "[available through 4D tags and URLs](WebServer/allowProject.md)".
+*getNames* renvoie une collection de chaînes de caractères. La méthode a été déclarée comme "[disponible via les balises et les URL 4D](WebServer/allowProject.md)".
```html
@@ -212,7 +212,7 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
#### Exemple avec une collection d'objets
-*getSalesPersons* returns a collection of objects.
+*getSalesPersons* renvoie une collection d'objets.
```html
@@ -233,11 +233,11 @@ Le nombre de boucles est basé sur le nombre d'éléments de la collection. Le n
### ``
-This syntax iterates on each *entity* of the *entitySelection*. The code portion located between `` and `` is repeated for each entity of the entity selection.
+Cette syntaxe itère sur chaque *entité* de l'*entitySelection*. La partie du code située entre `` et `` est répétée pour chaque entité de l'entity selection.
-The *entity* parameter is an object variable of the entity selection class.
+Le paramètre *entity* est une variable objet de la classe entity selection.
-Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. At each iteration, the *entity* object variable is automatically filled with the matching entity of the entity selection.
+Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity selection. À chaque itération, la variable objet *entity* est automatiquement remplie avec l'entité correspondante de l'entity selection.
#### Exemple avec un tableau html
@@ -256,7 +256,7 @@ Le nombre de boucles est basé sur le nombre d'entities présentes dans l'entity
```
-#### Example with `PROCESS 4D TAGS`
+#### Exemple avec `PROCESS 4D TAGS`
```4d
var customers : cs.CustomersSelection
@@ -272,15 +272,15 @@ TEXT TO DOCUMENT("customers.txt"; $output)
### ``
-This syntax iterates on each *property* of the *object*. The code portion located between `` and `` is repeated for each property of the object.
+Cette syntaxe itère sur chaque *property* de *object*. La partie du code située entre `` et `` est répétée pour chaque propriété de l'objet.
-The *property* parameter is a text variable automatically filled with the name of the currently processed property.
+Le paramètre *property* est une variable texte automatiquement remplie avec le nom de la propriété en cours de traitement.
Les propriétés de l'objet sont itérées en fonction de leur ordre de création. Pendant la boucle, il est possible d'ajouter ou de supprimer des propriétés dans l'objet, sans pour autant modifier le nombre de boucles qui reste basé sur le nombre de propriétés initial de l'objet.
#### Exemple avec les propriétés d'un objet
-*getGamers* is a project method that returns an object like ("Mary"; 10; "Ann"; 20; "John"; 40) to figure gamer scores.
+*getGamers* est une méthode projet qui renvoie un objet tel que ("Mary" ; 10 ; "Ann" ; 20 ; "John" ; 40) pour calculer les scores des joueurs.
```html
@@ -301,32 +301,32 @@ Les propriétés de l'objet sont itérées en fonction de leur ordre de créatio
## 4DEVAL
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DEVAL(expression)`
+#### Syntaxe alternative : `$4DEVAL(expression)`
-The `4DEVAL` tag allows you to assess a 4D variable or expression. Like the [`4DHTML`](#4dhtml) tag, `4DEVAL` does not escape HTML characters when returning text. However, unlike `4DHTML` or [`4DTEXT`](#4dtext), `4DEVAL` allows you to execute any valid 4D statement, including assignments and expressions that do not return any value.
+La balise `4DEVAL` vous permet d'évaluer une variable ou une expression 4D. Comme la balise [`4DHTML`](#4dhtml), `4DEVAL` n'échappe pas les caractères HTML lorsqu'elle retourne du texte. Cependant, contrairement à `4DHTML` ou [`4DTEXT`](#4dtext), `4DEVAL` vous permet d'exécuter n'importe quelle instruction 4D valide, y compris les assignations et les expressions qui ne renvoient aucune valeur.
Par exemple, vous pouvez exécuter :
```
- $input:="" //assignment
- $input:=$input+"" //calculation
+ $input:="" //assignation
+ $input:=$input+"" //calcul
PROCESS 4D TAGS($input;$output)
//$output = "43"
```
-In case of an error during interpretation, the text inserted will be in the form: `: ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré se présentera sous la forme suivante : `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DHTML
-#### Syntax: ``
+#### Syntaxe : ``
-#### Alternative syntax: `$4DHTML(expression)`
+#### Syntaxe alternative : `$4DHTML(expression)`
-Just like the `4DTEXT` tag, this tag lets you assess a 4D variable or expression that returns a value, and insert it as an HTML expression. Unlike the `4DTEXT` tag, this tag does not escape HTML special characters (e.g. ">").
+Tout comme la balise `4DTEXT`, cette balise vous permet d'évaluer une variable 4D ou une expression qui renvoie une valeur, et de l'insérer en tant qu'expression HTML. Contrairement à la balise `4DTEXT`, cette balise n'échappe pas les caractères spéciaux HTML (tels que ">").
Par exemple, voici les résultats du traitement de la variable texte 4D myvar avec les balises disponibles :
@@ -335,9 +335,9 @@ Par exemple, voici les résultats du traitement de la variable texte 4D myvar av
| `myvar:=""` | `` | `<B>` |
| `myvar:=""` | `` | `` |
-In case of an interpretation error, the inserted text will be ` : ## error # error code`.
+En cas d'erreur d'interprétation, le texte inséré sera `: ## error # error code`.
-> For security reasons, it is recommended to use the [`4DTEXT`](#4dtext) tag when processing data introduced from outside the application, in order to prevent the [insertion of malicious code](../WebServer/templates.md#prevention-of-malicious-code-insertion).
+> Pour des raisons de sécurité, il est recommandé d'utiliser la balise [`4DTEXT`](#4dtext) lors du traitement de données introduites depuis l'extérieur de l'application, afin d'éviter [l'injection de code malveillant](../WebServer/templates.md#prevention-of-malicious-code-insertion).
## 4DIF, 4DELSE, 4DELSEIF et 4DENDIF
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/Users/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/Users/overview.md
index 7da231a1733f6c..f1278d6e0a2343 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/Users/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/Users/overview.md
@@ -7,11 +7,11 @@ Si plusieurs personnes utilisent une application, ce qui est souvent le cas dans
La stratégie de contrôle d'accès 4D dépend de la configuration de votre déploiement :
-- in multi-user Web and REST applications, access control is based upon [ORDA's Roles and privileges](../ORDA/privileges.md) features.
-- in multi-user desktop applications, you can rely on 4D users and groups,
-- dans les applications monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
+- dans les applications Web et REST multi-utilisateurs, le contrôle d'accès est basé sur les [rôles et privilèges d'ORDA](../ORDA/privileges.md).
+- dans les applications desktop multi-utilisateurs, vous pouvez vous appuyer sur les utilisateurs et les groupes 4D,
+- dans les applications desktop monoposte, l'accès des utilisateurs est contrôlé par la session du système, à l'aide de commandes telles que [`Current system user`](../commands-legacy/current-system-user.md).
-:::tip Related Blog post
+:::tip Article de blog lié
Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/) pour une vue d'ensemble des fonctions de sécurité de 4D.
@@ -19,9 +19,9 @@ Consultez le document [4D Security guide](https://blog.4d.com/4d-security-guide/
## Contrôle des accès dans les applications multi-utilisateurs
-Multi-user desktop applications are deployed with 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
+Les applications desktop multi-utilisateurs sont déployées avec 4D Server. Dans les applications multi-utilisateurs, le contrôle des accès se fait par le biais des [utilisateurs et des groupes 4D](handling_users_groups.md). Vous pouvez créer des utilisateurs, attribuer des mots de passe et créer des groupes d'accès qui ont différents niveaux de privilèges dans l'application.
-Initiez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture N'importe quelle partie de l'application peut être ouverte. N'importe quelle partie de l'application peut être ouverte.
+Vous initialisez le système de contrôle des accès par mot de passe 4D avec 4D Server, [en attribuant un mot de passe au Super utilisateur](handling_users_groups.md#designer-and-administrator). Tant que vous n'attribuez pas de mot de passe au Super utilisateur, tous les accès à l'application se font avec les droits d'accès du Super utilisateur, même si vous avez [configuré des utilisateurs et des groupes](handling_users_groups.md) (à l'ouverture, aucun identifiant n'est requis). N'importe quelle partie de l'application peut être ouverte.
Lorsqu’un mot de passe est affecté au Super_Utilisateur, tous les privilèges d’accès que vous avez affectés prennent effet. Pour se connecter à l'application ou à un [serveur à accès protégé](handling_users_groups.md#assigning-group-access), les utilisateurs distants doivent saisir un login/mot de passe.
@@ -29,11 +29,11 @@ Pour désactiver le système de restriction d’accès, il suffit de supprimer (
## Contrôle d'accès dans les applications monoposte
-Single-user applications are desktop applications, deployed with 4D or merged with 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
+Les applications monoposte sont des applications de bureau, déployées avec 4D ou fusionnées avec 4D Volume Desktop. Dans les applications monoposte, tous les utilisateurs qui ouvrent l'application sont des [Super utilisateurs](handling_users_groups.md#designer-and-administrator); ils possèdent tous les privilèges et leur nom est "Super utilisateur". Le contrôle des accès n'est pas basé sur les utilisateurs et les groupes 4D, mais sur les **sessions utilisateur**.
### Identification de l'utilisateur
-To identify the current user in a 4D single-user application, you can rely on the [`Current system user`](../commands-legacy/current-system-user.md) command, which returns the user who opened the system session. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
+Pour identifier l'utilisateur courant dans une application mono-utilisateur 4D, vous pouvez vous appuyer sur la commande [`Current system user`](../commands-legacy/current-system-user.md), qui renvoie l'utilisateur qui a ouvert la session système. Ainsi, l'authentification des utilisateurs est déléguée au système d'exploitation.
Vous pouvez alors autoriser ou refuser les accès à votre application en utilisant un code suivant :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/authentication.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/authentication.md
index 2c9eab606b7b30..fcd6a0c6843a29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/authentication.md
@@ -119,7 +119,7 @@ Vous devez déclarer ces paramètres de la manière suivante :
:::note
-Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. The information received by the database method depends on the selected [authentication mode](#authentication-modes).
+Tous les paramètres de la méthode base `On Web Authentication` ne sont pas nécessairement remplis. Les informations reçues par la méthode base dépendent du [mode d'authentification](#authentication-modes) sélectionné.
:::
@@ -127,9 +127,9 @@ Tous les paramètres de la méthode base `On Web Authentication` ne sont pas né
Le premier paramètre (`$url`) est l'URL reçue par le serveur, dont l'adresse de l'hôte a été supprimée.
-Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. The following table shows the values of $url depending on the URL entered in the Web browser:
+Prenons l'exemple d'une connexion Intranet. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.45.67.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur Web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.45.67.89 | / |
| http://123.45.67.89 | / |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
index ebc926199d567c..e0986825220ec1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/http-rules.md
@@ -1,101 +1,101 @@
---
id: http-rules
-title: HTTP Rules
+title: Règles de configuration HTTP
---
-You can define HTTP rules to control HTTP response headers for any requests received by the 4D web server, including REST requests. You can add, modify, or remove HTTP headers, send redirections or set the HTTP status. This feature is useful to implement security policies based upon the handling of headers.
+Vous pouvez définir des règles de configuration HTTP pour contrôler les en-têtes de réponse HTTP pour toutes les requêtes reçues par le serveur web 4D, y compris les requêtes REST. Vous pouvez ajouter, modifier ou supprimer des en-têtes HTTP, envoyer des redirections ou définir le statut HTTP. Cette fonction est utile pour mettre en œuvre des politiques de sécurité basées sur le traitement des en-têtes.
-To define HTTP rules, you just need to write some RegEx to declare the URL patterns you want to control, as well as how to modify response headers. You can set these rules using a `HTTPRules.json` file stored in the project folder, or using the *settings* parameter [`start()`](../API/WebServerClass.md#start) function of the web server object.
+Pour définir des règles de configuration HTTP, il suffit d'écrire quelques RegEx pour déclarer les motifs (*patterns*) d'URL que l'on souhaite contrôler, ainsi que la manière de modifier les en-têtes de réponse. Vous pouvez définir ces règles en utilisant un fichier `HTTPRules.json` stocké dans le dossier du projet, ou en utilisant le paramètre *settings* de la fonction [`start()`](../API/WebServerClass.md#start) de l'objet serveur web.
## Conditions requises
-HTTP rules are supported in the following contexts:
+Les règles de configuration HTTP sont prises en charge dans les contextes suivants :
- les [sessions extensibles](./sessions.md#enabling-web-sessions) ou [pas de sessions](../settings/web.md#no-sessions) sont activées,
- un serveur web exécuté localement par 4D ou 4D Server, y compris ceux [exécutés par des composants](./webServerObject.md).
-## How to set rules
+## Comment déclarer des règles
-You can declare HTTP response rules:
+Vous pouvez déclarer des règles de réponse HTTP :
-- in a configuration file named **HTTPRules.json** stored in the [`Project/Sources`](../Project/architecture.md#sources) folder of the project. Rules are loaded and applied in the main Web server once it is started.
-- using a [`.rules`](../API/WebServerClass.md#rules) property set in the *settings* parameter of the [`start()`](../API/WebServerClass.md#start) function, for any web server object:
+- dans un fichier de configuration nommé **HTTPRules.json** stocké dans le dossier [`Project/Sources`](../Project/architecture.md#sources) du projet. Ces règles sont chargées et appliquées dans le serveur Web principal une fois qu'il a démarré.
+- en utilisant une propriété [`.rules`](../API/WebServerClass.md#rules) définie dans le paramètre *settings* de la fonction [`start()`](../API/WebServerClass.md#start), pour n'importe quel objet serveur web :
```4d
-WEB Server.start($settings.rules) //set rules at web server startup
+WEB Server.start($settings.rules) //règles au démarrage du serveur
```
-If both a **HTTPRules.json** file and a call to the [`WEB Server`](../commands/web-server.md) command with a valid `$settings.rules` are used, the `WEB Server` command has priority.
+Si un fichier **HTTPRules.json** et un appel à la commande [`WEB Server`](../commands/web-server.md) avec un `$settings.rules` valide sont utilisés simultanément, la commande `WEB Server` est prioritaire.
-If the URI of the request does not match any of the RegEx patterns, the web server returns a default response.
+Si l'URI de la requête ne correspond à aucun des *patterns* RegEx, le serveur web renvoie une réponse par défaut.
-## Rules Definition
+## Définition des règles
-The **HTTPRules.json** file or the [`.rules`](../API/WebServerClass.md#rules) property must contain a collection of **rule objects**.
+Le fichier **HTTPRules.json** ou la propriété [`.rules`](../API/WebServerClass.md#rules) doit contenir une collection d'**objets règle**.
-A rule object is defined by:
+Un objet règle est défini par:
-- a RegEx describing a URL pattern, e.g. "^(.\*\\.(jpg|jpeg|png|gif))"
-- the name of the action to execute for the HTTP response, e.g. "removeHeaders"
-- the value of the action, e.g. "X-Unwanted-Header1"
+- un RegEx décrivant un motif d'URL, par exemple "^(.\*\\.(jpg|jpeg|png|gif)"
+- le nom de l'action à exécuter pour la réponse HTTP, par exemple "removeHeaders"
+- la valeur de l'action, par exemple "X-Unwanted-Header1"
-Other properties are ignored.
+Les autres propriétés sont ignorées.
### Motifs d'URL
-URL patterns are given using **regular expressions**. To declare a regular expression pattern, use the "RegExPattern" property name.
+Les motifs d'URL sont donnés en utilisant des **expressions régulières**. Pour déclarer un *pattern* d'expression régulière, utilisez le nom de propriété "RegExPattern".
Ex: `"RegExPattern": "/Test/Authorized/(.*)"`
-When the web server receives a request, **all** URL patterns are triggered sequentially in the given order, and all matching patterns are executed. In case of several actions modifying similar resources, the last executed action is taken into account.
+Lorsque le serveur web reçoit une requête, **tous** les motifs d'URL sont déclenchés séquentiellement dans l'ordre donné, et tous les motifs correspondants sont exécutés. Si plusieurs actions modifient des ressources similaires, la dernière action exécutée est prise en compte.
### Actions
-The following action keywords are supported:
+Les mots-clés d'action suivants sont pris en charge :
-| Mot-clé | Value type | Description |
-| --------------- | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| `removeHeaders` | Text or Collection of texts | Header(s) to remove from the HTTP responses. If a header to remove does not exist in the response header, it is ignored. |
-| `addHeaders` | Object | Name (text) and value (text) of header(s) to add to the HTTP responses. |
-| `setHeaders` | Object | Name (text) and value (text) of header(s) to modify in the HTTP responses. If a header to modify does not exist in the response header, it is added. |
-| `denyAccess` | Boolean | true to deny access to the resource, false to allow access. When the access to a resource is denied, the web server returns a 403 status by default |
-| `redirect` | Text | Redirection URL. When a redirection is triggered, the web server returns a 302 status by default |
-| `status` | Number | HTTP status |
+| Mot-clé | Value type | Description |
+| --------------- | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| `removeHeaders` | Text ou collection de text | En-tête(s) à supprimer des réponses HTTP. Si un en-tête à supprimer n'existe pas dans l'en-tête de la réponse, il est ignoré. |
+| `addHeaders` | Object | Nom (texte) et valeur (texte) des en-têtes à ajouter aux réponses HTTP. |
+| `setHeaders` | Object | Nom (texte) et valeur (texte) des en-têtes à modifier dans les réponses HTTP. Si l'en-tête à modifier n'existe pas dans l'en-tête de la réponse, il est ajouté. |
+| `denyAccess` | Boolean | true pour refuser l'accès à la ressource, false pour l'autoriser. Lorsque l'accès à une ressource est refusé, le serveur web renvoie un statut 403 par défaut |
+| `redirect` | Text | URL de redirection. Lorsqu'une redirection est déclenchée, le serveur web renvoie par défaut un statut 302 |
+| `status` | Number | Statut HTTP |
-### Non-modifiable headers
+### En-têtes non modifiables
-Some headers could not be added, modified or removed:
+Certains en-têtes ne peuvent pas être ajoutés, modifiés ou supprimés :
-| Header | Ajouter | Set | Remove |
-| ---------------- | ------- | ---------- | ------ |
-| Date | Non | Non | Non |
-| Content-Length | Non | Non | Non |
-| Content-Encoding | Non | Non | Non |
-| Vary | Oui | Non | Non |
-| Set-Cookie | Oui | Add cookie | Non |
+| En-tête | Ajout | Modification | Suppression |
+| ---------------- | ----- | ---------------- | ----------- |
+| Date | Non | Non | Non |
+| Content-Length | Non | Non | Non |
+| Content-Encoding | Non | Non | Non |
+| Vary | Oui | Non | Non |
+| Set-Cookie | Oui | Ajoute un cookie | Non |
-Unauthorized changes on these headers do not generate errors, however modifications will be ignored.
+Les modifications non autorisées de ces en-têtes ne génèrent pas d'erreurs, mais les modifications seront ignorées.
-### Current rules
+### Règles de configuration courantes
-You can know the current rules using the [`.rules` property of the Web Server object](../API/WebServerClass.md#rules):
+Vous pouvez connaître les règles en vigueur en utilisant la [propriété `.rules` de l'objet Serveur Web](../API/WebServerClass.md#rules) :
```
var $rules : Collection
-$rules:=WEB Server.rules //current rules
+$rules:=WEB Server.rules //règles de configuration courantes
```
## Exemples
-Rules can be set using a `HTTPRules.json` file or the *settings* parameter of the [`.start()`](../API/WebServerClass.md#start) web server function.
+Les règles de configuration peuvent être définies en utilisant un fichier `HTTPRules.json` ou le paramètre *settings* de la fonction [`.start()`](../API/WebServerClass.md#start) du serveur web.
-### Using a HTTPRules.json file
+### Utilisation d'un fichier HTTPRules.json
```json
[
{
- "comment": "All requests: allow GET method for, remove 'Server' header and set security headers",
+ "comment": "Toutes requêtes: autoriser méthode GET, supprimer en-tête 'Server' et définir en-têtes de sécurité",
"regexPattern": "/(.*)",
"setHeaders": {
"Allow": "GET",
@@ -107,14 +107,14 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
]
},
{
- "comment": "REST requests: allow POST method",
+ "comment": "requêtes REST: autoriser méthode POST",
"regexPattern": "/rest/(.*)",
"addHeaders": {
"Allow": "POST"
}
},
{
- "comment": "HTML files in 'doc' folder: set cache control",
+ "comment": "Fichiers html dans dossier 'doc' : contrôle du cache",
"regexPattern": "/docs/(.*).html",
"setHeaders": {
"Cache-Control": "max-age=3600"
@@ -124,28 +124,28 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
]
},
{
- "comment": "Status 503 on 'maintenance' page",
+ "comment": "Status 503 sur page 'maintenance'",
"regexPattern": "^/maintenance.html",
"status": 503
},
{
- "comment": "Redirect CSS and JS files",
+ "comment": "Redirection fichiers CSS et JS",
"regexPattern": "^(.*\\\\.(css|js))",
"redirect": "https://cdn.example.com/"
},
{
- "comment": "Redirect images with permanent status code",
+ "comment": "Redirection images avec code de statut permanent",
"regexPattern": "^(.*\\\\.(jpg|jpeg|png|gif))",
"redirect": "https://cdn.example.com/images/",
"status": 301
},
{
- "comment": "Deny access for all resources placed in the 'private' folder",
+ "comment": "Refuser accès à toutes les ressources dans le dossier 'private'",
"regexPattern": "/private/(.*)",
"denyAccess": true
},
{
- "comment": "Allow access to all resources placed in the 'private/allowed' folder",
+ "comment": "Autoriser accès à toutes les ressources dans le dossier 'private/allowed'",
"regexPattern": "/private/allowed/(.*)",
"denyAccess": false
}
@@ -153,7 +153,7 @@ Rules can be set using a `HTTPRules.json` file or the *settings* parameter of th
```
-### Using a *settings* parameter
+### Utilisation du paramètre *settings*
```4d
var $rule:={}
@@ -163,7 +163,7 @@ var $settings:={}
$settings.rules:=[]
$rule:={}
-$rule.comment:="All requests: allow GET method for, remove 'Server' header and set security headers"
+$rule.comment:="Toutes requêtes: autoriser méthode GET, supprimer en-tête 'Server' et définir en-têtes de sécurité"
$rule.regexPattern:="/(.*)"
$rule.setHeaders:={Allow: "GET"}
$rule.setHeaders["X-Frame-Options"]:="SAMEORIGIN"
@@ -172,13 +172,13 @@ $rule.removeHeaders:=["Server"]
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="REST requests: allow POST method"
+$rule.comment:="requêtes REST: autoriser méthode POST"
$rule.regexPattern:="/rest/(.*)"
$rule.addHeaders:={Allow: "POST"}
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="HTML files in 'doc' folder: set cache control"
+$rule.comment:="Fichiers html dans dossier 'doc' : contrôle du cache"
$rule.regexPattern:="/docs/(.*).html"
$rule.setHeaders:={}
$rule.setHeaders["Cache-Control"]:="max-age=3600"
@@ -186,32 +186,32 @@ $rule.removeHeaders:=["X-Powered-By"]
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Status 503 on 'maintenance' page"
+$rule.comment:="Status 503 sur page 'maintenance'"
$rule.regexPattern:="^/maintenance.html"
$rule.status:=503
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Redirect CSS and JS files"
+$rule.comment:="Redirection fichiers CSS et JS"
$rule.regexPattern:="^(.*\\\\.(css|js))"
$rule.redirect:="https://cdn.example.com/"
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Redirect images with permanent status code"
+$rule.comment:="Redirection images avec code de statut permanent"
$rule.regexPattern:="^(.*\\\\.(jpg|jpeg|png|gif))"
$rule.redirect:="https://cdn.example.com/images/"
$rule.status:=301
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Deny access for all resources placed in the 'private' folder"
+$rule.comment:="Refuser accès à toutes les ressources dans le dossier 'private'"
$rule.regexPattern:="/private/(.*)"
$rule.denyAccess:=True
$settings.rules.push($rule)
$rule:={}
-$rule.comment:="Allow access to all resources placed in the 'private/allowed' folder"
+$rule.comment:="Autoriser accès à toutes les ressources dans le dossier 'private/allowed'"
$rule.regexPattern:="/private/allowed/(.*)"
$rule.denyAccess:=False
$settings.rules.push($rule)
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/httpRequests.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/httpRequests.md
index 37c63e39561ba5..d2a2ba7edb4d52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/httpRequests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/httpRequests.md
@@ -13,7 +13,7 @@ Le serveur web 4D fournit plusieurs fonctionnalités intégrées pour gérer les
:::info
-You can also implement your own HTTP request handlers for a customized control over incoming requests and outgoing responses. When a custom HTTP request handler is triggered, no database method is called. See [**HTTP Request Handler**](http-request-handler.md) section.
+Vous pouvez également mettre en œuvre vos propres gestionnaires de requêtes HTTP pour un contrôle personnalisé des requêtes entrantes et des réponses sortantes. Lorsqu'un gestionnaire de requête HTTP personnalisé est déclenché, aucune méthode de base de données n'est appelée. Voir la section [**Gestionnaire de requêtes HTTP**](http-request-handler.md).
:::
@@ -23,7 +23,7 @@ La méthode base `On Web Connection` peut être utilisée comme point d'entrée
### Appels des méthodes base
-The `On Web Connection` database method is automatically called when the server receives any URL that is not a valid path to an existing page on the server (and is not a URL with a pattern triggering a [custom HTTP Request Handler](http-request-handler.md)).
+La méthode base `On Web Connection` est automatiquement appelée lorsque le serveur reçoit une URL qui n'est pas un chemin valide vers une page existante sur le serveur (et qui n'est pas une URL avec un motif déclenchant un [gestionnaire de requête HTTP personnalisé](http-request-handler.md)).
La méthode base est appelée avec l'URL.
@@ -56,13 +56,13 @@ Vous devez déclarer ces paramètres :
> Appeler une commande 4D qui affiche un élément d'interface (`DIALOG`, `ALERT`, etc.) n'est pas autorisé et met fin au traitement de la méthode.
-### $url - URL extra data
+### $url - Données supplémentaires de l'URL
-The first parameter ($url) is the URL entered by users in the address area of their web browser, without the host address.
+Le premier paramètre ($url) est l'URL saisi par les utilisateurs dans la zone d'adresse de leur navigateur web, sans l'adresse de l'hôte.
-Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. The following table shows the values of $url depending on the URL entered in the web browser:
+Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votre machine serveur Web 4D est 123.4.567.89. Le tableau suivant indique les valeurs de $url en fonction de l'URL saisie dans le navigateur web :
-| URL entrée dans le navigateur web | Value of parameter $url |
+| URL entrée dans le navigateur web | Valeur du paramètre $url |
| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------- |
| 123.4.567.89 | / |
| http://123.45.67.89 | / |
@@ -72,27 +72,27 @@ Prenons une connexion intranet comme exemple. Supposons que l'adresse IP de votr
Notez que vous êtes libre d'utiliser ce paramètre à votre convenance. 4D ignore simplement la valeur passée au-delà de la partie hôte de l'URL. Par exemple, vous pouvez établir une convention où la valeur "*/Customers/Add*" signifie "accès direct pour ajouter un nouvel enregistrement dans la table `[Customers]`". En proposant aux utilisateurs web une liste de valeurs possibles et/ou des signets par défaut, vous pouvez leur fournir des raccourcis vers différentes parties de votre application. De cette façon, les utilisateurs web peuvent accéder rapidement aux ressources de votre site web sans passer par le chemin de navigation complet à chaque nouvelle connexion.
-### $header - Header and Body of the HTTP request
+### $header - En-tête et corps de la requête HTTP
-The second parameter ($header) is the header and the body of the HTTP request sent by the web browser. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
+Le deuxième paramètre ($header) est l'en-tête et le corps (body) de la requête HTTP envoyée par le navigateur web. Notez que ces informations sont passées telles quelles à votre méthode base `On Web Connection`. Son contenu variera en fonction de la nature du navigateur web qui tente la connexion.
Si votre application utilise ces informations, il vous appartient d'analyser l'en-tête et le corps. Vous pouvez utiliser les commandes `WEB GET HTTP HEADER` et `WEB GET HTTP BODY`.
-> For performance reasons, the size of data passing through the $header parameter must not exceed 32 KB. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
+> Pour des raisons de performance, la taille des données passant par le paramètre $header ne doit pas dépasser 32 Ko. Au-delà de cette taille, ils sont tronqués par le serveur HTTP 4D.
-### $BrowserIP - Web client IP address
+### $BrowserIP - Adresse IP du client Web
-The $BrowserIP parameter receives the IP address of the browser’s machine. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
+Le paramètre $BrowserIP reçoit l'adresse IP de la machine du navigateur. Cette information peut vous permettre de distinguer entre les connexions intranet et internet.
> 4D renvoie les adresses IPv4 dans un format hybride IPv6/IPv4 écrit avec un préfixe de 96 bits, par exemple ::ffff:192.168.2.34 pour l'adresse IPv4 192.168.2.34. Pour plus d'informations, consultez la section [Support IPv6](webServerConfig.md#about-ipv6-support).
-### $ServerIP - Server IP address
+### $ServerIP - Adresse IP du serveur
-The $ServerIP parameter receives the IP address requested by the 4D Web Server. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
+Le paramètre $ServerIP reçoit l'adresse IP demandée du serveur Web 4D. 4D prend en charge le multi-homing, ce qui vous permet d'exploiter des machines avec plus d'une adresse IP. Pour plus d'informations, veuillez consulter la [Page Configuration](webServerConfig.html#ip-address-to-listen).
### $user et $password - Nom d'utilisateur et mot de passe
-The $user and $password parameters receive the user name and password entered by the user in the standard identification dialog box displayed by the browser, if applicable (see the [authentication page](authentication.md)).
+Les paramètres $user et $password reçoivent le nom d'utilisateur et le mot de passe saisis par l'utilisateur dans la boîte de dialogue d'identification standard affichée par le navigateur, le cas échéant (voir la [page d'authentification](authentication.md)).
> Si le nom d'utilisateur envoyé par le navigateur existe dans 4D, le paramètre $password (le mot de passe de l'utilisateur) n'est pas renvoyé pour des raisons de sécurité.
@@ -108,7 +108,7 @@ The $user and $password parameters receive the user name and password entered by
**Utilisation :** URL ou action du formulaire.
-Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. The method will receive this parameter.
+Cette URL vous permet d'appeler la méthode projet 4D *MethodName* avec un paramètre texte *Param* optionnel. La méthode recevra ce paramètre.
- La méthode projet 4D doit avoir été [autorisée pour les requêtes web](allowProject.md) : l'attribut "Disponible via Balises HTML et URLs 4D (4DACTION. .)” doit avoir été coché dans les propriétés de la méthode. Si l'attribut n'est pas coché, la requête web est rejetée.
- Lorsque 4D reçoit une requête `/4DACTION/MethodName/Param`, la méthode base `On Web Authentication` est appelée (si elle existe).
@@ -134,17 +134,17 @@ Cet exemple décrit l'association de l'URL `/4DACTION` avec un objet image HTML
La méthode `getPhoto` est la suivante :
```4d
-#DECLARE ($url : Text) // This parameter must always be declared
+#DECLARE ($url : Text) // Ce paramètre doit toujours être déclaré
var $path : Text
var $PictVar : Picture
var $BlobVar : Blob
- //find the picture in the Images folder within the Resources folder
-$path:=Get 4D folder(Current resources folder)+"Images"+Folder separator+$url+".psd"
+ //trouve l'image dans le dossier Images du dossier Resources
+$path:=Get 4D folder(Current resources folder)+"Images "+Folder separator+$url+".psd"
-READ PICTURE FILE($path;$PictVar) //put the picture in the picture variable
-PICTURE TO BLOB($PictVar;$BLOB;".png") //convert the picture to ".png" format
-WEB SEND BLOB($BLOB;"image/png")
+READ PICTURE FILE($path;$PictVar) //place l'image dans la variable image
+PICTURE TO BLOB($PictVar;$BLOB;".png") //convertit l'image au format ".png"
+WEB SEND BLOB($BLOB; "image/png")
```
### 4DACTION pour poster des formulaires
@@ -191,26 +191,26 @@ OK="Search"
4D appelle la méthode base `On Web Authentication` (si elle existe), puis la méthode de projet `processForm` est appelée, qui est la suivante :
```4d
- #DECLARE ($url : Text) //mandatory for compiled mode
+ #DECLARE ($url : Text)
var $vName : Integer
var vName;vLIST : Text
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrVals;0)
- WEB GET VARIABLES($arrNames;$arrVals) //we retrieve all the variables of the form
- $vName:=Find in array($arrNames;"vName")
- vName:=$arrVals{$vName}
- If(Find in array($arrNames;"vExact")=-1) //If the option has not been checked
- vName:=vName+"@"
+ WEB GET VARIABLES($arrNames;$arrVals) //nous récupérons toutes les variables du formulaire
+ $vName:=Find in array($arrNames; "vName")
+ vName :=$arrVals{$vName}
+ If(Find in array($arrNames; "vExact")=-1) //Si l'option n'a pas été cochée
+ vName :=vName+"@"
End if
- QUERY([Jockeys];[Jockeys]Name=vName)
+ QUERY([Jockeys] ;[Jockeys]Name=vName)
FIRST RECORD([Jockeys])
While(Not(End selection([Jockeys])))
vLIST:=vLIST+[Jockeys]Name+" "+[Jockeys]Tel+"
"
NEXT RECORD([Jockeys])
End while
- WEB SEND FILE("results.htm") //Send the list to the results.htm form
- //which contains a reference to the variable vLIST,
- //for example
+ WEB SEND FILE("results.htm") //Envoie la liste au formulaire results.htm
+ //qui contient une référence à la variable vLIST,
+ //par exemple
//...
End if
```
@@ -219,9 +219,9 @@ End if
Le serveur Web de 4D vous permet de récupérer les données envoyées via des requêtes POST ou GET, en utilisant des formulaires Web ou des URL.
-Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. This principle can be implemented in the case of a Web form, sent for example using [`WEB SEND FILE`](../commands-legacy/web-send-file.md) or [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), where the user enters or modifies values, then clicks on the validation button.
+Lorsque le serveur Web reçoit une requêtes avec des données dans l'en-tête ou dans l'URL, 4D peut récupérer les valeurs de tous les objets HTML qu'elle contient. Ce principe peut être mis en œuvre dans le cas d'un formulaire Web, envoyé par exemple à l'aide de [`WEB SEND FILE`](../commands-legacy/web-send-file.md) ou [`WEB SEND BLOB`](../commands-legacy/web-send-blob.md), où l'utilisateur saisit ou modifie des valeurs, puis clique sur le bouton de validation.
-In this case, 4D can retrieve the values of the HTML objects found in the request using the [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md) command. La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
+Dans ce cas, 4D peut récupérer les valeurs des objets HTML trouvés dans la requête en utilisant la commande [`WEB GET VARIABLES`](../commands-legacy/web-get-variables.md). La commande `WEB GET VARIABLES` récupère les valeurs en tant que texte.
Considérons le code source HTML suivant :
@@ -282,7 +282,7 @@ Les principales caractéristiques de cette page sont les suivantes :
Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisateur clique sur l'un des boutons du formulaire HTML.
```4d
- // Retrieval of value of variables
+ // Récupération de la valeur des variables
ARRAY TEXT($arrNames;0)
ARRAY TEXT($arrValues;0)
WEB GET VARIABLES($arrNames;$arrValues)
@@ -290,26 +290,26 @@ Examinons la méthode 4D `WWW_STD_FORM_POST` qui est appelée lorsque l'utilisat
Case of
- // The Log On button was clicked
- :(Find in array($arrNames;"vsbLogOn")#-1)
- $user :=Find in array($arrNames;"vtUserName")
- QUERY([WWW Users];[WWW Users]UserName=$arrValues{$user})
- $0:=(Records in selection([WWW Users])>0)
+ // Le bouton Log On a été cliqué
+ :(Find in array($arrNames; "vsbLogOn")#-1)
+ $user :=Find in array($arrNames; "vtUserName")
+ QUERY([WWW Users] ;[WWW Users]UserName=$arrValues{$user})
+ $0 :=(Records in selection([WWW Users])>0)
If($0)
WWW POST EVENT("Log On";WWW Log information)
- // The WWW POST EVENT method saves the information in a database table
+ // La méthode WWW POST EVENT enregistre les informations dans une table de la base de données
Else
- $0:=WWW Register
- // The WWW Register method lets a new Web user register
+ $0 :=WWW Register
+ // La méthode WWW Register permet à un nouvel utilisateur Web de s'enregistrer
End if
- // The Register button was clicked
- :(Find in array($arrNames;"vsbRegister")#-1)
+ // Le bouton Register a été cliqué
+ :(Find in array($arrNames; "vsbRegister")#-1)
$0:=WWW Register
- // The Information button was clicked
- :(Find in array($arrNames;"vsbInformation")#-1)
+ // Le bouton Information a été cliqué
+ :(Find in array($arrNames; "vsbInformation")#-1)
WEB SEND FILE("userinfos.html")
End case
```
@@ -325,15 +325,15 @@ Gardez à l'esprit qu'en HTML, tous les objets sont des objets de texte. Si vous
Le serveur web 4D fournit plusieurs commandes web de bas niveau vous permettant de développer un traitement personnalisé des requêtes :
-- the [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) command returns the body as raw text, allowing any parsing you may need
-- the [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) command return the headers of the request. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
-- the [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) and [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) commands to parse the body part of a multi-part request and retrieve text values, but also files posted, using BLOBs.
+- la commande [`WEB GET HTTP BODY`](../commands-legacy/web-get-http-body.md) renvoie le corps du message sous forme de texte brut, ce qui permet de l'analyser si nécessaire
+- la commande [`WEB GET HTTP HEADER`](../commands-legacy/web-get-http-header.md) renvoie les en-têtes de la requête. Elle est utile pour gérer des cookies personnalisés, par exemple (en plus de la commande `WEB SET HTTP HEADER`).
+- les commandes [`WEB GET BODY PART`](../commands-legacy/web-get-body-part.md) et [`WEB Get body part count`](../commands-legacy/web-get-body-part-count.md) pour analyser la partie body d'une requête multi-part et récupérer des valeurs texte, mais aussi des fichiers postés, en utilisant des BLOB.
Ces commandes sont résumées dans le graphique suivant :

-Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. The 4D Web Server also supports chunked transfer encoding from the server to Web clients (using [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
+Le serveur web 4D prend en charge les fichiers envoyés en encodage de transfert par morceaux (chunked transfer encoding) depuis n'importe quel client Web. L'encodage de transfert chunked est un mécanisme de transfert de données spécifié en HTTP/1.1. Il permet le transfert de données sous forme de séries de "chunks" ou "morceaux" (parts) sans connaître la taille finale des données. Le serveur Web 4D prend également en charge le codage de transfert par morceaux du serveur vers les clients Web (en utilisant [`WEB SEND RAW DATA`](../commands-legacy/web-send-raw-data.md)).
## Méthode projet COMPILER_WEB
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
index 7395ed0a06637b..89760d4d57d368 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/preemptiveWeb.md
@@ -5,7 +5,7 @@ title: Utiliser des process web préemptifs
Le Web Server de 4D vous permet de tirer pleinement parti des ordinateurs multi-coeurs en utilisant des process Web préemptifs dans vos applications compilées. Vous pouvez configurer votre code lié au Web, y compris les balises 4D, les méthodes base Web ou les fonctions de classe REST de ORDA, afin qu'il s'exécute simultanément sur le plus grand nombre de coeurs possibles.
-For in-depth information on preemptive process in 4D, please refer to the [Preemptive Processes](../Develop/preemptive.md) section.
+Pour plus d'informations sur les process préemptifs dans 4D, veuillez consulter la section [Process préemptifs](../Develop/preemptive.md).
## Disponibilité du mode préemptif pour les process Web
@@ -26,11 +26,11 @@ Le tableau suivant indique si l'utilisation du mode préemptif pour les process
- Serveur REST : gère les [fonctions de classe du modèle de données ORDA](../REST/ClassFunctions.md)
- Serveur Web : gère les [modèles Web](templates.md), [4DACTION et les méthodes base](httpRequests.md)
- Serveur de services Web : gère les requêtes SOAP
-- ***web setting*** means that the preemptive mode depends on the [**scalable sessions**](sessions.md#enabling-web-sessions) status:
- - if scalable sessions are enabled, the preemptive mode is automatically used for web and web service processes.
- - if scalable sessions are not enabled:
- - for web processes, the [**Use preemptive processes**](webServerConfig.md#use-preemptive-processes) option is taken into account.
- - for web service processes (server or client), preemptive mode is supported at method level.
+- ***paramètres web*** signifie que le mode préemptif dépend du statut [**sessions évolutives**](sessions.md#enabling-web-sessions) :
+ - si les sessions évolutives sont activées, le mode préemptif est automatiquement utilisé pour les process web et web service.
+ - si les sessions évolutives ne sont pas activées :
+ - pour les process web, l'option [**Utiliser des process préemptifs**](webServerConfig.md#use-preemptive-processes) est prise en compte.
+ - pour les process de web services (serveur ou client), le mode préemptif est pris en charge au niveau de la méthode.
## Ecrire du code serveur Web thread-safe
@@ -52,7 +52,7 @@ Tout le code 4D exécuté par le serveur Web doit être thread-safe si vous souh
- [Fonctions de classe du modèle de données ORDA](../REST/ClassFunctions.md) appelées via REST
-For each of these methods and code parts, the compiler will check if the [thread-safety rules are respected](../Develop/preemptive.md#writing-a-thread-safe-method), and will return errors in case of issues.
+Pour chacune de ces parties de méthodes et de code, le compilateur vérifiera si les [règles du thread-safe sont respectées](../Develop/preemptive.md#writing-a-thread-safe-method), et renverra des erreurs en cas de problème.
## Code web 4D thread-safe
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
index 7f76d591b5639f..90ef958ef4ad2e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
@@ -3,7 +3,7 @@ id: sessions
title: Sessions Web
---
-Le serveur Web de 4D offre des fonctions intégrées pour la gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
+Le serveur Web de 4D offre des fonctions intégrées de gestion des **sessions Web**. La création et la maintenance de sessions Web vous permettent de contrôler et d'améliorer l'expérience utilisateur de votre application web. Lorsque les sessions web sont activées, les clients web peuvent réutiliser le même contexte de serveur d'une requête à une autre.
Les sessions Web permettent de :
@@ -25,7 +25,7 @@ Les sessions Web sont utilisées par :
- les [applications Web](gettingStarted.md) envoyant des requêtes http (y compris les [Web services SOAP](../commands/theme/Web_Services_Server.md) et les requêtes [/4DACTION](../WebServer/httpRequests.md#4daction)),
- les appels à l'[API REST](../REST/authUsers.md), qui sont effectués par les [datastores distants](../ORDA/remoteDatastores.md) et les [pages Qodly](qodly-studio.md).
-## Enabling web sessions {#enabling-web-sessions}
+## Activation des sessions web {#enabling-web-sessions}
La gestion de session peut être activée et désactivée sur votre serveur Web 4D. Il y a différentes façons d'activer la gestion de session :
@@ -63,7 +63,7 @@ Le nom du cookie peut être obtenu en utilisant la propriété [`.sessionCookieN
:::note
-La création d'une session web pour une requête REST peut nécessiter qu'une licence soit disponible, consultez [cette page](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +71,6 @@ L'objet `Session` de la session en cours peut ensuite être manipulé via la com

-:::info
-
-Les process Web ne se terminent généralement pas, ils sont recyclés dans un pool pour des raisons d'optimisation. Lorsqu'un process termine l'exécution d'une requête, il est replacé dans le pool et rendu disponible pour la requête suivante. Comme un process web peut être réutilisé par n'importe quelle session, les [variables process](Concepts/variables.md#process-variables) doivent être effacées par votre code à la fin de son exécution (en utilisant [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) par exemple). Ce nettoyage est nécessaire pour toute information liée au process, comme une référence à un fichier ouvert. C'est la raison pour laquelle **il est recommandé** d'utiliser l'objet [Session](API/SessionClass.md) lorsque vous souhaitez conserver les informations relatives à la session.
-
-:::
-
## Stockage et partage des informations de session
Chaque objet `Session` fournit une propriété [`.storage`](API/SessionClass.md#storage) qui est un [objet partagé](Concepts/shared.md). Cette propriété vous permet de partager des informations entre tous les process gérés par la session.
@@ -106,7 +100,7 @@ Vous pouvez fermer une session à partir d'une page Qodly en utilisant la foncti
## Privilèges
-Les privilèges sont associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
+Des privilèges peuvent être associés aux sessions utilisateur web. Sur le serveur web, vous pouvez fournir un accès spécifique ou des fonctionnalités en fonction des privilèges de la session.
Vous assignez des privilèges en utilisant la [fonction `.setPrivileges()`](API/SessionClass.md#setprivileges). Dans votre code, vous pouvez vérifier les privilèges de la session pour autoriser ou refuser l'accès à l'aide de la fonction [`.hasPrivilege()`](API/SessionClass.md#hasprivilege). Par défaut, les nouvelles sessions n'ont aucun privilège : ce sont des sessions **Guest** (la fonction [`isGuest()`](API/SessionClass.md#isguest) retourne true).
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServer.md
index 8349889c2b8268..fe189c6c3eddbb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServer.md
@@ -4,11 +4,11 @@ slug: overview
title: Serveur Web
---
-4D in local mode and 4D Server include a web server engine (aka http server) that enables you to design and publish powerful web applications that can make the most of your 4D databases.
+4D en mode local et 4D Server incluent un moteur de serveur web (aussi appelé serveur HTTP) qui vous permet de concevoir et de publier de puissantes applications web qui peuvent tirer le meilleur parti de vos bases de données 4D.
-:::warning Deprecated feature
+:::warning Fonctionnalité obsolète
-Using the web server on a remote 4D is **deprecated** as of 4D 21. It is no longer recommended to use this feature.
+L'utilisation du serveur web sur un 4D distant est **dépréciée** à partir de 4D 21. Il n'est plus recommandé d'utiliser cette fonctionnalité.
:::
@@ -16,7 +16,7 @@ Using the web server on a remote 4D is **deprecated** as of 4D 21. It is no long
Vous pouvez démarrer ou arrêter la publication de l'application web à tout moment. Pour ce faire, il suffit de sélectionner une commande dans un menu ou d'exécuter une ligne de code.
-Monitoring the 4D web server is easy and can be done using the [4D Server administration window](../ServerWindow/http-server.md) or through [special URLs](webServerAdmin.md#administration-urls).
+Le contrôle du serveur web 4D est facile et peut être effectué à l'aide de la [fenêtre d'administration du serveur 4D](../ServerWindow/http-server.md) ou par le biais d'[URL spéciales](webServerAdmin.md#administration-urls).
## Prêt à l'emploi
@@ -47,13 +47,13 @@ Le serveur Web 4D inclut des fonctionnalités automatiques complètes pour une g
## Point d'accès pour requêtes REST
-Le serveur web 4D permet d'accéder aux données stockées dans vos applications 4D via des requêtes REST. REST requests provide direct access to any [ORDA](../ORDA/overview.md) operation such as adding, reading, editing, ordering, or searching data.
+Le serveur web 4D permet d'accéder aux données stockées dans vos applications 4D via des requêtes REST. Les requêtes REST fournissent un accès direct à toute opération [ORDA](../ORDA/overview.md) telle que l'ajout, la lecture, l'édition, la commande ou la recherche de données.
Les requêtes REST sont détaillées dans la section [serveur REST](../REST/gettingStarted.md).
## Extension des paramètres
-The 4D web server configuration is defined through a comprehensive set of application-level settings that can also be customized for the session using the `webServer` object properties or the [`WEB SET OPTION`](../commands-legacy/web-set-option.md) command.
+La configuration du serveur web 4D est définie par un ensemble complet de paramètres au niveau application qui peuvent également être personnalisés pour la session en utilisant les propriétés de l'objet `webServer` ou la commande [`WEB SET OPTION`](../commands-legacy/web-set-option.md).
## Templates et URLs
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerConfig.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerConfig.md
index 5d9e19398db534..1180cc6c7cb532 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerConfig.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerConfig.md
@@ -606,9 +606,9 @@ Les paramètres suivants sont toujours pris en charge mais reposent sur des fonc
Statut de validation d'adresse IP pour les cookies de session. Pour des raisons de sécurité, le serveur Web vérifie par défaut l'adresse IP de chaque requête contenant un cookie de session et la rejette si cette adresse ne correspond pas à l'adresse IP utilisée pour créer le cookie. Dans certaines applications spécifiques, vous souhaiterez peut-être désactiver cette validation et accepter les cookies de session, même lorsque leurs adresses IP ne correspondent pas. Par exemple, lorsque les appareils mobiles basculent entre les réseaux Wifi et 4G/5G, leur adresse IP change. Dans ce cas, vous devez passer 0 à cette option pour permettre aux clients de continuer à utiliser leurs sessions Web même lorsque les adresses IP changent. Note : ce paramètre réduit le niveau de sécurité de votre application. Une fois modifiée, cette option prend effet immédiatement (il n'est pas nécessaire de redémarrer le serveur HTTP).
-### Generic Web User
+### Utilisateur Web générique
-This option allows you to designate a user, previously defined in the [4D password table](../Users/handling_users_groups.md), as a "Generic Web User". In this case, each browser allowed to connect to the database gets access authorizations and restrictions associated with this user.
+Cette option vous permet de désigner un utilisateur, précédemment défini dans les [utilisateurs 4D](../Users/handling_users_groups.md), comme "utilisateur Web générique". Dans ce cas, chaque navigateur autorisé à se connecter à la base de données obtient les autorisations et les restrictions d'accès associées à cet utilisateur.
#### Envoyer directement les caractères étendus
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerObject.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerObject.md
index 80ee10ccfba2e9..6a03ee09d4103c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerObject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WebServer/webServerObject.md
@@ -1,9 +1,9 @@
---
id: webServerObject
-title: Web Server instances
+title: Instances du serveur Web
---
-A 4D project can start and monitor a web server for the main (host) application as well as each [hosted component](../Concepts/components.md).
+Un projet 4D peut démarrer et contrôler un serveur web pour l'application principale (hôte) ainsi que pour chaque [composant hébergé](../Concepts/components.md).
Par exemple, si vous avez installé deux composants dans votre application principale, vous pouvez démarrer et contrôler jusqu'à trois serveurs Web indépendants à partir de votre application :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
index 64df79f13be0c7..726e7aa1a73796 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
@@ -77,173 +77,3 @@ Le mode d'affichage peut être configuré via le menu contextuel de la zone :
Pour les zones incluses dans les formulaires 4D, le mode d'affichage peut également être défini par défaut à l'aide de la Liste des propriétés. Dans ce cas, le mode d'affichage est une propriété de l'objet de formulaire 4D Write Pro (pour plus d'informations, veuillez vous reporter au paragraphe *Configurer les propriétés d'affichage*).
-
-
-## Les actions standard
-
-L'interface utilisateur des zones 4D Write Pro peut être gérée grâce à un grand nombre d'**actions standard**. Les actions standard peuvent être assignées :
-
-* aux commandes de menu, disponibles via une **barre de menu** ou la commande [Pop up menu dynamique](../../commands/pop-up-menu-dynamique),
-* aux éléments de listes, disponibles via des pop-ups/listes déroulantes ou des pop-up menus hiérarchiques,
-* aux boutons, cases à cocher,
-* ou exécutées avec la commande [APPELER ACTION](../../commands/appeler-action).
-
-Lorsqu'elles sont assignées à des objets d'interface, les actions standard gèrent les activations/désactivations de l'objet en fonction du contexte. Pour plus d'informations, référez-vous à la section [Actions standard](#standard-actions).
-
-Deux catégories d'actions sont disponibles pour les zones 4D Write Pro :
-
-* des actions spécifiques à 4D Write Pro, qui ne peuvent être utilisées qu'avec les zones 4D Write Pro,
-* des *[Autres actions](#other-actions)* plus génériques de gestion des polices, expressions, du correcteur orthographique et des opérations d'édition, qui peuvent être utilisées avec les zones 4D Write Pro et les autres zones 4D. Ces actions sont détaillées dans la section [Actions standard](#standard-actions).
-
-### Actions 4D Write Pro
-
-Les actions standard ci-dessous sont disponibles pour les zones 4D Write Pro :
-
-**Notes :**
-
-* Les actions qui affichent un menu/une liste automatique peuvent uniquement être attachées aux commandes de menus ou aux objets pop-ups/liste déroulantes et pop-up menus hiérarchiques (voir *Sous-menu*).
-* Les cases à cocher et cases à cocher 3D doivent être associées à des actions de statut, telles que "section/differentFirstPage" ou "visibleHorizontalRuler". L'option "Trois états" est prise en charge avec les cases à cocher standard uniquement.
-* Un statut d'action de section est toujours égal au statut courant de la section sélectionnée (statut hérité si l'attribut est hérité de la section parente ou de l'attribut par défaut) car il doit refléter le statut de la section sélectionnée (le statut qui est actuellement appliqué à la section). Cependant, modifier un attribut de section avec une action standard surchargera uniquement l'attribut de la section sélectionnée.
-* *Sous-menu* : Lorsqu'elles sont utilisées sans paramètres et associées à une commande de menu, un objet pop-up/Liste déroulante ou pop-up menu hiérarchqiue, ces actions affichent un sous-menu automatique. Par exemple, si vous assignez l'action "backgroundColor" à une commande de menu, la sélection de cette commande de menu à l'exécution affichera automatiquement les commandes du sous-menu "couleur de fond". Si vous assignez l'action "zoom" à un pop-up menu hiérarchique, il contiendra automatiquement une liste de valeurs de zoom prédéfinies. A noter que ces actions ne peuvent pas être assignées à des boutons.
-* *showDialog* : Ajouter la chaîne "/showDialog**"** au nom de l'action permet d'afficher la boîte de dialogue standard associée à l'action. Par exemple, vous pouvez utiliser "paragraph/styleSheet/showDialog" pour ouvrir le dialogue permettant de saisir le nom d'une nouvelle feuille de style.
-
-| **Nom de l'action** | **Syntaxe** | **Disponible avec** | **Description** |
-|----------------------|-------------|----------------------|------------------|
-| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left | center | right} | Image,
zone de texte,
*Sous-menu* | Définit l'alignement horizontal de l'élément, relatif à **anchorOrigin** pour les images/zones de texte en page ou à la zone de format pour les images/zones de texte en mode inclus. Cette action réinitialise à 0 le décalage horizontal. (non activée pour les images en ligne). |
-| anchoring | {image \| textBox}/anchoring | *Sous-menu* | Sous-menu par défaut avec des actions de paramètres d'ancrage pour les images ou les zones de texte |
-| anchorLayout | image/anchorLayout?value={front \| behind | wrapTopBottom | wrapSquareLeft | wrapSquareRight | wrapSquareLargest | wrapSquare | inline}
textBox/anchorLayout?value={front | behind | wrapTopBottom | wrapSquareLeft | wrapSquareRight | wrapSquareLargest | wrapSquare} | Image,
zone de texte,
*Sous-menu* | Définit le type de position d'ancre pour une image ou une zone de texte. Peut être utilisée pour transformer une image en ligne en image ancrée, ou l'inverse.
Note : Si une image ancrée est transformée en image en ligne, elle est insérée au début du texte sélectionné.
La valeur " en ligne " n'est pas supportée pour les zones de texte.
|
-| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box | header-box | footer-box} | Image,
zone de texte,
*Sous-menu* |
Définit la zone relative à la position absolue d'une image ancrée ou d'une zone de texte. Si l'élément est relative à la zone d'en-tête ou de pied (header-box/footer-box) qui n'est pas visible sur une page, l'image n'est pas affichée. Cette action remet à zéro les valeurs de décalage horizontal et vertical.
Mode Page uniquement, non activée pour les images en ligne.
|
-| anchorPage | {image \| textBox}/anchorPage?value={all | current | currentSubSection} | Image,
zone de texte,
*Sous-menu* |
Définit la ou les page(s) où l'image ou la zone de texte sélectionnée est affichée (non activée pour les images en ligne).
Mode page uniquement.
|
-| anchorSection | {image \| textBox}/anchorSection?value={all | current} | Image,
zone de texte,
*Sous-menu* |
Définit la ou les section(s) où l'image ou la zone de texte sélectionnée est affichée (non activée pour les images en ligne).
Mode page uniquement.
|
-| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top | center | bottom} | Image,
zone de texte,
*Sous-menu* |
Définit l'alignement vertical de l'image ou la zone de texte, relatif à **anchorOrigin** pour une image ou une zone texte en page, ou à la zone de format pour une image ou une zone texte en mode inclus. Cette action réinitialise à 0 le décalage vertical (non activée pour les images en ligne).
Note : Voir l'action "verticalAlign" pour l'alignement vertical à l'intérieur de la zone de texte.
|
-| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraphe |
|
-| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Table, Ligne, Colonne, Cellule, *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu par défaut pour tous les attributs de fond. |
-| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la zone de découpe du fond de la cible (par défaut, la cible est le paragraphe). Paper-box est disponible uniquement avec doc et section. |
-| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu*, *showDialog* | Modifie l'arrière-plan de la cible. |
-| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Définit le mode d'affichage des images utilisées comme arrière-plan. |
-| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu*, *showDialog* | Efface l'image d'arrière-plan de la cible (par défaut, la cible est le paragraphe). |
-| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'origine de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe). Paper-box est disponible uniquement avec doc et section. |
-| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'alignement horizontal de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundPositionH?value=left` |
-| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'alignement vertical de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundPositionV?value=top` |
-| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie le mode de répétition de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe). |
-| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la largeur de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundSizeH?value=100%`, `section/backgroundSizeH?value=cover` |
-| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeV?value={ \| \| auto} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la hauteur de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundSizeV?value=50%`, `section/backgroundSizeV?value=40pt` |
-| bookmark | bookmark?index=\ | *Sous-menu* | Sélectionne le Nième signet.
Ex: *bookmark?index=2 // sélectionne le deuxième signet* |
-| borderCollapse | borderCollapse | Paragraphe | Fusionne les bordures de paragraphes et les marges intérieures (padding). |
-| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu*,
*showDialog* | Modifie la couleur de la bordure de la cible (la cible par défaut est le paragraphe).
Ex: *paragraph/borderColorLeft?value=green* |
-| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
*Sous-menu* | Change le rayon pour les coins arrondis de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderRadius?value=4pt* |
-| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Table,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Sous-menu par défaut pour les bordures de la cible. |
-| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Modifie le style de la bordure de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderStyleLeft?value=double*
Ex: *outside/borderStyle?value=solid*
Ex: *inside/borderStyle?value=none* |
-| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Modifie la largeur de la bordure de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderWidthLeft?value=4pt* |
-| columnCount | {section/}columnCount?value={1<=number<=20} | Document,
Section,
*Sous-menu* | Nombre de colonnes dans le document et/ou la section courante (la cible par défaut est le document).
Ex: *section/columnCount?value=3* |
-| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document,
Section,
*Sous-menu*,
*showDialog* | Couleur de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleColor?value="#FFFFFF"* |
-| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document,
Section,
*Sous-menu* | Style de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleStyle?value=solid* |
-| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document,
Section,
*Sous-menu* | Largeur de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleWidth?value=2pt* |
-| columns | {section/}columns | Document,
Section,
*Sous-menu* | Pour les commandes de menu uniquement. Crée automatiquement un sous-menu **Colonnes** complet avec tous les sous-menus d'action de colonne (hormis *insertColumnBreak*). |
-| columnSpacing | {section/}columnSpacing?value={CSS length} | Document,
Section,
*Sous-menu* | Espacement entre deux colonnes dans le document et/ou la section courante.
Ex: *columnSpacing?value=1cm* |
-| deleteColumns | deleteColumns | Table | Supprime toutes les colonnes sélectionnées. |
-| deleteRows | deleteRows | Table | Supprime toutes les lignes sélectionnées. |
-| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraphe,
Image,
*Sous-menu* | Supprime la Nième feuille de style parmi les feuilles de style stockées pour la cible sélectionnée (par défaut la cible est le paragraphe). Le nom de l'élément de menu est remplacé, au moment de l'exécution, par le nom de la feuille de style sur le point d'être supprimée. |
-| direction | direction?value={ltr \| rtl} | Paragraphe,
*Sous-menu* | Sens de l'écriture du paragraphe (ltr : left to right - rtl : right to left). |
-| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Affiche les références de formules sous la forme d'un symbole . Ne peut être utilisé que lorsque les formules sont affichées en tant que références. |
-| doc | doc | Document,
*Sous-menu* | Sous-menu par défaut pour la disposition du corps du document (attributs du mode inclus ou attributs par défaut des sections - mais pour la marge réservée au mode inclus seulement). |
-| dpi | dpi?value=\ | *Sous-menu* | Modifie le dpi de la vue courante (indépendant de l'attribut de document wk dpi utilisé en interne pour la conversion pixels <-> points).
Ex: *dpi?value=72* |
-| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable} | Table,
*Sous-menu* | Définit la manière dont la table est affichée lorsque sa source de données est vide. |
-| fontStyleWrite | fontStyleWrite | *Sous-menu* | Pour les commandes de menu uniquement. Affiche le sous-menu Style de police par défaut de 4D Write Pro. |
-| fontSubscript | fontSubscript | | Bascule l'attribut de police indice. |
-| fontSuperscript | fontSuperscript | | Bascule l'attribut de police exposant. |
-| footer | footer | *Sous-menu* | Affiche le sous-menu Pied de page. |
-| footer/remove | footer/remove | Pied | Supprime le pied de page sélectionné. |
-| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, *Sous-menu* | Mode de surbrillance de formule pour le document. Peut être utilisé avec un menu déroulant ou un bouton. |
-| formulaHighlightColor | formulaHighlightColor?value= | Document, *Sous-menu*, *showDialog* | Couleur de surbrillance de la formule pour le document. |
-| formulaHighlightReferences | formulaHighlightReferences | Document | Bascule la surbrillance des références de formule. Peut être utilisé avec une case à cocher ou un élément de menu. |
-| formulaHighlightValues | formulaHighlightValues | Document | Active ou désactive la mise en surbrillance des valeurs de formule. Peut être utilisé avec une case à cocher ou un élément de menu. |
-| header | header | *Sous-menu* | Affiche le sous-menu En-tête. |
-| header/remove | header/remove | En-tête | Supprime l'en-tête sélectionné. |
-| height | {image \| textBox \| row}/height?value={ \| auto} | Image, zone de texte, Ligne, *Sous-menu* | Hauteur de la cible.
Ex : image/height?value=50pt.
Pour image/width, voir width.
Ex : row/height?value=12pt |
-| headerRowCount | {table}/headerRowCount | Tableau, *Sous-menu* | Définit le nombre de lignes d’en-tête dans un tableau (5 au maximum). |
-| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Bascule du mode html au mode wysiwyg. |
-| image | image | Image, *Sous-menu* | Affiche le sous-menu Image. |
-| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, *Sous-menu* | Définit le mode d'affichage des images ancrées et des images en ligne.
Ex : image/displayMode?value=scaledToFit |
-| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, *Sous-menu* | Alignement vertical de l'image.
Ex: image/verticalAlign?value=super |
-| insertColumnBreak | insertColumnBreak | Paragraphe | Insère un saut de colonne dans la sélection. |
-| insertColumnToTheLeft | insertColumnToTheLeft | Table | Insère une colonne à gauche de la première colonne sélectionnée. |
-| insertColumnToTheRight | insertColumnToTheRight | Table | Insère une colonne à droite de la dernière colonne sélectionnée. |
-| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraphe | Insère un saut de section continu à la sélection. |
-| insertImage | insertImage | | Ouvre une boîte de dialogue de sélection d'image et insère l'image sélectionnée (le cas échéant) en tant que caractère dans la zone. |
-| insertPageBreak | insertPageBreak | Paragraphe | Insère un saut de page à l'endroit sélectionné. |
-| insertRowAbove | insertRowAbove | Table | Insère une ligne au-dessus de la ligne ou des lignes sélectionnée(s). |
-| insertRowBelow | insertRowBelow | Table | Insère une ligne en-dessous de la ligne ou des lignes sélectionnée(s). |
-| insertSectionBreak | insertSectionBreak | Paragraphe | Insère un saut de section à l'endroit sélectionné. |
-| insertSoftHyphen | insertSoftHyphen | | Insère un trait d'union au niveau du curseur. |
-| keepWithNext | keepWithNext | Paragraphe | Relie un paragraphe au suivant afin qu'ils ne puissent pas être séparés par des sauts de page ou de colonne automatiques.
Si cette action est appliquée au dernier paragraphe de la dernière cellule d'un tableau, la dernière ligne du tableau est reliée au paragraphe suivant. |
-| lineHeight | lineHeight?value={ \| } | Paragraphe, *Sous-menu* | Hauteur de ligne du paragraphe.
Ex: lineHeight?value=120% |
-| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraphe, *Sous-menu* | Numéro de départ de la liste.
Ex: listStartNumber?value=10 |
-| listStyleImage | listStyleImage/showDialog | Paragraphe, *showDialog* | Ouvre un dialogue d'ouverture de fichier pour choisir une image à afficher en tant que puce pour une liste ; définit également un élément de liste sous forme de disque – style à utiliser si l'image n'est pas trouvée. |
-| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading-zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraphe, *Sous-menu* | Type de style de liste de paragraphes. |
-| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table}/{inside \| outside}/{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, *Sous-menu* | Modifie la marge de la cible (la cible par défaut est le paragraphe).
Ex : `margin?value=4pt` – définit toutes les marges du paragraphe sur 4pt.
Ex : `outside/margin?value=4pt` – définit les marges extérieures du paragraphe sur 4pt.
Ex : `doc/marginLeft?value=1cm` – définit la marge gauche à 1cm pour le document, comme dans le mode intégré.
Ex : `section/marginLeft?value=1cm` – définit la marge gauche à 1cm pour les pages de la première section sélectionnée. |
-| merge | {paragraph/}merge cell/merge | Paragraphe, cellule | Utilisé avec les paragraphes : fusionne les paragraphes. Utilisé avec les cellules : fusionne les cellules sélectionnées. |
-| minHeight | {paragraph \| image}/minHeight?value= | Paragraphe, Image, *Sous-menu* | Hauteur minimum de la cible (la cible par défaut est le paragraphe).
Ex: paragraph/minHeight?value=50pt |
-| minWidth | {paragraph \| image}/minWidth?value= | Paragraphe, Image, *Sous-menu* | Largeur minimum de la cible (la cible par défaut est le paragraphe).
Ex: paragraph/minWidth?value=50pt |
-| moveToFront | moveToFront | Image | Place l'image au premier plan (non activée pour les images en ligne). |
-| moveToBack | moveToBack | Image | Place l'image à l'arrière-plan (non activée pour les images en ligne). |
-| newLineStyleSheet | newLineStyleSheet?index={1<=number<=nombre de feuilles de style paragraphe} \| newLineStyleSheet?value=auto | Paragraphe, *Sous-menu* | Les éléments du paragraphe sélectionné utiliseront la Nième feuille de style pour les nouveaux paragraphes créés par Retour Chariot ou lors d'un fractionnement de paragraphes. Si value=auto, les nouveaux paragraphes utiliseront la même feuille de style (fonctionnement par défaut).
(Le libellé de la ligne de menu est remplacé, à l'exécution, par le nom de la feuille de style.) |
-| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row \| cell}/{inside \| outside}/{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom}?value= | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Ligne, Colonne, Cellule, *Sous-menu* | Modifie le padding de la cible (la cible par défaut est le paragraphe). |
-| pageMode | pageMode?value={embedded \| page \| draft} | *Sous-menu* | Change le mode d'affichage.
Ex: pageMode?value=page |
-| pageOrientation | {section}/pageOrientation?value={landscape \| portrait} | Section, *Sous-menu* | Modifie l'orientation de la page de la première section sélectionnée.
Si la section n'est pas spécifiée, l'orientation s'applique à toutes les sections.
Ex: pageOrientation?value=portrait // change l'orientation en Portrait pour tout le document.
Ex: section/pageOrientation?value=landscape // change l'orientation en Paysage pour la première section sélectionnée. |
-| pageSize | pageSize?index= | *Sous-menu* | Modifie la taille de la page du document. `` est la Nième taille de page dans la liste des tailles disponibles.
La liste contient les formats courants de l'imprimante, les formats ISO et les formats personnalisés définis par l'utilisateur. |
-| paragraph | paragraph | Paragraphe, *Sous-menu* | Sous-menu par défaut pour le paragraphe. |
-| print | print | Document | Imprime le document en mode Page avec les paramètres de vue courants de la zone 4D Write Pro qui a le focus. |
-| refreshImages | refreshImages | Image | Recharge les images du réseau pour les images avec URLs. |
-| removeSoftHyphens | removeSoftHyphens | | Supprime tous les traits d'union conditionnels de la sélection courante. Si la sélection est vide, supprime le trait d'union conditionnel avant ou après le curseur, le cas échéant. |
-| row/avoidPageBreakInside | row/avoidPageBreakInside | Tableau, Ligne | Autorise ou désactive les sauts de page à l'intérieur des lignes du tableau.
Cette action est désactivée si :
- la sélection courante ne contient pas de tableau
- le tableau n'autorise pas les sauts de page
- le tableau se trouve dans un en-tête ou un pied de page.
Note : si plusieurs tableaux sont sélectionnés et que certains n'autorisent pas les sauts de page, cette option sera activée mais ne s'appliquera qu'aux tableaux qui les autorisent. |
-| section | section | Section, *Sous-menu* | Sous-menu par défaut de disposition de la page pour la première section sélectionnée. |
-| section/differentFirstPage | section/differentFirstPage | Section | Active ou désactive une première page différente pour la section. |
-| section/differentLeftRightPages | section/differentLeftRightPages | Section | Active ou désactive des pages droites et gauches différentes pour la section. |
-| section/name/showDialog | section/name/showDialog | Section, *showDialog* | Affiche un dialogue permettant d'entrer le nom de la première section sélectionnée. |
-| section/reset | section/reset | Section | Réinitialise tous les attributs de la première section sélectionnée pour les remplacer par les valeurs par défaut :
- héritées du document pour l'arrière-plan, la bordure et les marges intérieures (même en mode inclus)
- 2,5 cm pour les marges de page.
Les propriétés de colonnes de la première section sélectionnée sont également réinitialisées (seules les propriétés par défaut sont appliquées). |
-| split | {paragraph}/split \| cell/split | Paragraphe, Cellule | Utilisé avec un paragraphe : fractionne le paragraphe.
Utilisé avec une cellule : fractionne les cellules sélectionnées (seules les cellules préalablement fusionnées peuvent être fractionnées). |
-| styleSheet | {paragraph \| image}/styleSheet?value={1<=number<=nombre de feuilles de style} | Paragraphe, Image, *Sous-menu*, *showDialog* | Applique la Nième feuille de style aux éléments sélectionnés de la cible.
Avec la boîte de dialogue, la nouvelle feuille de style utilise les attributs courants de la prem
-| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, *Sous-menu* | Définit le caractère utilisé comme séparateur décimal par les tabulations décimales. |
-| tableAlign | tableAlign?value={left \| center \| right}
ou
table/tableAlign?value={left \| center \| right} | Tableau, *Sous-menu* | Indique l'alignement horizontal d'un tableau. |
-| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Active ou désactive les sauts de page dans les tableaux.
Désactivée si :
- la sélection courante ne contient pas de tableau
- le tableau se trouve dans un en-tête ou un pied de page |
-| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Bascule l'affichage des lignes à reporter en bas (voir *Carry-over rows*). |
-| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraphe | Alignement du texte du paragraphe.
(`initial` utilise `right` pour la direction RTL ou `left` pour la direction LTR). |
-| textBox | textBox | *Sous-menu* | Sous-menu avec toutes les actions disponibles pour la zone de texte ciblée ou sélectionnée. |
-| textBox/remove | textBox/remove | Zone de texte | Supprime la zone de texte sélectionnée. |
-| textIndent | textIndent?value= (peut être négatif) | Paragraphe, *Sous-menu* | Indentation de la première ligne du paragraphe.
Ex: textIndent?value=2cm |
-| textLinethrough | textLinethrough | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte barré (avec style et couleur). |
-| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | *Sous-menu*, *showDialog* | Définit la couleur du texte barré.
Ex: textLinethroughColor?value=red |
-| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | *Sous-menu* | Définit le style du texte barré.
Ex: textLinethroughStyle?value=dotted |
-| textShadow | textShadow | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte ombré (avec couleur et décalage). |
-| textShadowColor | textShadowColor?value={ \| none} | *Sous-menu*, *showDialog* | Modifie la couleur de l'ombre du texte.
Ex: textShadowColor?value=green |
-| textShadowOffset | textShadowOffset?value= | *Sous-menu* | Définit le décalage de l'ombre (uniquement en points).
Ex: textShadowOffset?value=2pt |
-| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | *Sous-menu* | Formate le texte.
Ex: textTransform?value=capitalize |
-| textUnderline | textUnderline | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte souligné (avec style et couleur). |
-| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | *Sous-menu*, *showDialog* | Définit la couleur du soulignement.
Ex: textUnderlineColor?value=red |
-| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | *Sous-menu* | Définit le style du soulignement.
Ex: textUnderlineStyle?value=dotted |
-| updateStyleSheet | {paragraph \| image}/updateStyleSheet | Paragraphe, Image, *Sous-menu* | Met à jour la première feuille de style de la cible sélectionnée (la cible par défaut est le paragraphe). |
-| userUnit | userUnit?value={cm \| mm \| in \| pt} | *Sous-menu* | Modifie l'unité de mise en page du document (répercutée sur les règles). |
-| verticalAlign | {paragraph \| row \| column \| cell \| textBox}/verticalAlign?value={top \| middle \| bottom} | Paragraphe, Ligne, Colonne, Cellule, zone de texte, *Sous-menu* | Alignement vertical de la cible (par défaut le paragraphe).
Ex: verticalAlign?value=top
L'effet dépend de la valeur `minHeight` de la cible. |
-| view | view | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu par défaut pour les paramétrages de vue. |
-| visibleBackground | visibleBackground | Document | Affiche ou masque l'arrière-plan, les images ancrées et les zones de texte. |
-| visibleEmptyImages | visibleEmptyImages | Document | Affiche ou masque un rectangle noir par défaut pour les images qui ne peuvent pas être chargées ou calculées (images vides ou dans un format non supporté). |
-| visibleFooters | visibleFooters | Document | Affiche ou masque les pieds de page. |
-| visibleHeaders | visibleHeaders | Document | Affiche ou masque les en-têtes. |
-| visibleHiddenChars | visibleHiddenChars | Document | Affiche ou masque les caractères cachés. |
-| visibleHorizontalRuler | visibleHorizontalRuler | Document | Affiche ou masque la règle horizontale. |
-| visiblePageFrames | visiblePageFrames | Document | Affiche ou masque les cadres des pages. |
-| visibleVerticalRuler | visibleVerticalRuler | Document | Affiche ou masque la règle verticale (Mode Page uniquement). |
-| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraphe | Active ou désactive le contrôle des veuves et orphelines. |
-| width | {paragraph \| image \| textBox \| column}/width?value={ \| auto} | Paragraphe, Image, zone de texte, Colonne, *Sous-menu* | Largeur de la cible (par défaut le paragraphe).
La valeur `auto` n'est pas disponible pour les zones de texte (converties en 8 cm) et pour les colonnes.
Ex: image/width?value=50pt |
-| zoom | zoom?value={25% <= percentage <= 400%} | Document, *Sous-menu* | Modifie le zoom du document.
Ex: zoom?value=120% |
-
-
-### Autres actions
-
-De nombreuses autres actions standard proposées avec les formulaires 4D peuvent être utilisées dans les zones 4D Write Pro :
-
-* *Actions d'édition*, comme les actions Copier/Coller.
-* Actions sur la *Police*, telles que **fontBold** ou **fontSize**.
-* Actions sur les *Expressions dynamiques*, permettant de gérer l'insertion d'expressions.
-* Actions du *Correcteur orthographique*.
\ No newline at end of file
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
new file mode 100644
index 00000000000000..15d39e1cc7f1ce
--- /dev/null
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
@@ -0,0 +1,174 @@
+---
+id: standard-actions
+title: Actions standard
+displayed_sidebar: docs
+slug: /WritePro/standard-actions
+---
+
+
+L'interface utilisateur des zones 4D Write Pro peut être gérée grâce à un grand nombre d'**actions standard**. Les actions standard peuvent être assignées :
+
+* aux commandes de menu, disponibles via une **barre de menu** ou la commande [Pop up menu dynamique](../../commands/pop-up-menu-dynamique),
+* aux éléments de listes, disponibles via des pop-ups/listes déroulantes ou des pop-up menus hiérarchiques,
+* aux boutons, cases à cocher,
+* ou exécutées avec la commande [APPELER ACTION](../../commands/appeler-action).
+
+Lorsqu'elles sont assignées à des objets d'interface, les actions standard gèrent les activations/désactivations de l'objet en fonction du contexte. Pour plus d'informations, référez-vous à la section [Actions standard](#standard-actions).
+
+Deux catégories d'actions sont disponibles pour les zones 4D Write Pro :
+
+* des actions spécifiques à 4D Write Pro, qui ne peuvent être utilisées qu'avec les zones 4D Write Pro,
+* des *[Autres actions](#other-actions)* plus génériques de gestion des polices, expressions, du correcteur orthographique et des opérations d'édition, qui peuvent être utilisées avec les zones 4D Write Pro et les autres zones 4D. Ces actions sont détaillées dans la section [Actions standard](#standard-actions).
+
+### Actions 4D Write Pro
+
+Les actions standard ci-dessous sont disponibles pour les zones 4D Write Pro :
+
+**Notes :**
+
+* Les actions qui affichent un menu/une liste automatique peuvent uniquement être attachées aux commandes de menus ou aux objets pop-ups/liste déroulantes et pop-up menus hiérarchiques (voir *Sous-menu*).
+* Les cases à cocher et cases à cocher 3D doivent être associées à des actions de statut, telles que "section/differentFirstPage" ou "visibleHorizontalRuler". L'option "Trois états" est prise en charge avec les cases à cocher standard uniquement.
+* Un statut d'action de section est toujours égal au statut courant de la section sélectionnée (statut hérité si l'attribut est hérité de la section parente ou de l'attribut par défaut) car il doit refléter le statut de la section sélectionnée (le statut qui est actuellement appliqué à la section). Cependant, modifier un attribut de section avec une action standard surchargera uniquement l'attribut de la section sélectionnée.
+* *Sous-menu* : Lorsqu'elles sont utilisées sans paramètres et associées à une commande de menu, un objet pop-up/Liste déroulante ou pop-up menu hiérarchqiue, ces actions affichent un sous-menu automatique. Par exemple, si vous assignez l'action "backgroundColor" à une commande de menu, la sélection de cette commande de menu à l'exécution affichera automatiquement les commandes du sous-menu "couleur de fond". Si vous assignez l'action "zoom" à un pop-up menu hiérarchique, il contiendra automatiquement une liste de valeurs de zoom prédéfinies. A noter que ces actions ne peuvent pas être assignées à des boutons.
+* *showDialog* : Ajouter la chaîne "/showDialog**"** au nom de l'action permet d'afficher la boîte de dialogue standard associée à l'action. Par exemple, vous pouvez utiliser "paragraph/styleSheet/showDialog" pour ouvrir le dialogue permettant de saisir le nom d'une nouvelle feuille de style.
+
+| **Nom de l'action** | **Syntaxe** | **Disponible avec** | **Description** |
+|----------------------|-------------|----------------------|------------------|
+| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left | center | right} | Image,
zone de texte,
*Sous-menu* | Définit l'alignement horizontal de l'élément, relatif à **anchorOrigin** pour les images/zones de texte en page ou à la zone de format pour les images/zones de texte en mode inclus. Cette action réinitialise à 0 le décalage horizontal. (non activée pour les images en ligne). |
+| anchoring | {image \| textBox}/anchoring | *Sous-menu* | Sous-menu par défaut avec des actions de paramètres d'ancrage pour les images ou les zones de texte |
+| anchorLayout | image/anchorLayout?value={front \| behind | wrapTopBottom | wrapSquareLeft | wrapSquareRight | wrapSquareLargest | wrapSquare | inline}
textBox/anchorLayout?value={front | behind | wrapTopBottom | wrapSquareLeft | wrapSquareRight | wrapSquareLargest | wrapSquare} | Image,
zone de texte,
*Sous-menu* | Définit le type de position d'ancre pour une image ou une zone de texte. Peut être utilisée pour transformer une image en ligne en image ancrée, ou l'inverse.
Note : Si une image ancrée est transformée en image en ligne, elle est insérée au début du texte sélectionné.
La valeur " en ligne " n'est pas supportée pour les zones de texte.
|
+| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box | header-box | footer-box} | Image,
zone de texte,
*Sous-menu* |
Définit la zone relative à la position absolue d'une image ancrée ou d'une zone de texte. Si l'élément est relative à la zone d'en-tête ou de pied (header-box/footer-box) qui n'est pas visible sur une page, l'image n'est pas affichée. Cette action remet à zéro les valeurs de décalage horizontal et vertical.
Mode Page uniquement, non activée pour les images en ligne.
|
+| anchorPage | {image \| textBox}/anchorPage?value={all | current | currentSubSection} | Image,
zone de texte,
*Sous-menu* |
Définit la ou les page(s) où l'image ou la zone de texte sélectionnée est affichée (non activée pour les images en ligne).
Mode page uniquement.
|
+| anchorSection | {image \| textBox}/anchorSection?value={all | current} | Image,
zone de texte,
*Sous-menu* |
Définit la ou les section(s) où l'image ou la zone de texte sélectionnée est affichée (non activée pour les images en ligne).
Mode page uniquement.
|
+| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top | center | bottom} | Image,
zone de texte,
*Sous-menu* |
Définit l'alignement vertical de l'image ou la zone de texte, relatif à **anchorOrigin** pour une image ou une zone texte en page, ou à la zone de format pour une image ou une zone texte en mode inclus. Cette action réinitialise à 0 le décalage vertical (non activée pour les images en ligne).
Note : Voir l'action "verticalAlign" pour l'alignement vertical à l'intérieur de la zone de texte.
|
+| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraphe |
|
+| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Table, Ligne, Colonne, Cellule, *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu par défaut pour tous les attributs de fond. |
+| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la zone de découpe du fond de la cible (par défaut, la cible est le paragraphe). Paper-box est disponible uniquement avec doc et section. |
+| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu*, *showDialog* | Modifie l'arrière-plan de la cible. |
+| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Définit le mode d'affichage des images utilisées comme arrière-plan. |
+| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu*, *showDialog* | Efface l'image d'arrière-plan de la cible (par défaut, la cible est le paragraphe). |
+| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'origine de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe). Paper-box est disponible uniquement avec doc et section. |
+| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'alignement horizontal de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundPositionH?value=left` |
+| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie l'alignement vertical de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundPositionV?value=top` |
+| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie le mode de répétition de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe). |
+| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la largeur de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundSizeH?value=100%`, `section/backgroundSizeH?value=cover` |
+| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeV?value={ \| \| auto} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, Ligne, Colonne, Cellule, *Sous-menu* | Modifie la hauteur de l'image d'arrière-plan de la cible (la cible par défaut est le paragraphe).
Ex: `paragraph/backgroundSizeV?value=50%`, `section/backgroundSizeV?value=40pt` |
+| bookmark | bookmark?index=\ | *Sous-menu* | Sélectionne le Nième signet.
Ex: *bookmark?index=2 // sélectionne le deuxième signet* |
+| borderCollapse | borderCollapse | Paragraphe | Fusionne les bordures de paragraphes et les marges intérieures (padding). |
+| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu*,
*showDialog* | Modifie la couleur de la bordure de la cible (la cible par défaut est le paragraphe).
Ex: *paragraph/borderColorLeft?value=green* |
+| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
*Sous-menu* | Change le rayon pour les coins arrondis de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderRadius?value=4pt* |
+| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Table,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Sous-menu par défaut pour les bordures de la cible. |
+| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Modifie le style de la bordure de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderStyleLeft?value=double*
Ex: *outside/borderStyle?value=solid*
Ex: *inside/borderStyle?value=none* |
+| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value=\ | Document,
Paragraphe,
Image,
zone de texte,
Section,
En-tête,
Pied,
Tableau,
Ligne,
Colonne,
Cellule,
*Sous-menu* | Modifie la largeur de la bordure de la cible (par défaut la cible est le paragraphe).
Ex: *paragraph/borderWidthLeft?value=4pt* |
+| columnCount | {section/}columnCount?value={1<=number<=20} | Document,
Section,
*Sous-menu* | Nombre de colonnes dans le document et/ou la section courante (la cible par défaut est le document).
Ex: *section/columnCount?value=3* |
+| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document,
Section,
*Sous-menu*,
*showDialog* | Couleur de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleColor?value="#FFFFFF"* |
+| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document,
Section,
*Sous-menu* | Style de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleStyle?value=solid* |
+| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document,
Section,
*Sous-menu* | Largeur de la ligne de séparation verticale entre les colonnes du document ou de la section.
Ex: *columnRuleWidth?value=2pt* |
+| columns | {section/}columns | Document,
Section,
*Sous-menu* | Pour les commandes de menu uniquement. Crée automatiquement un sous-menu **Colonnes** complet avec tous les sous-menus d'action de colonne (hormis *insertColumnBreak*). |
+| columnSpacing | {section/}columnSpacing?value={CSS length} | Document,
Section,
*Sous-menu* | Espacement entre deux colonnes dans le document et/ou la section courante.
Ex: *columnSpacing?value=1cm* |
+| deleteColumns | deleteColumns | Table | Supprime toutes les colonnes sélectionnées. |
+| deleteRows | deleteRows | Table | Supprime toutes les lignes sélectionnées. |
+| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraphe,
Image,
*Sous-menu* | Supprime la Nième feuille de style parmi les feuilles de style stockées pour la cible sélectionnée (par défaut la cible est le paragraphe). Le nom de l'élément de menu est remplacé, au moment de l'exécution, par le nom de la feuille de style sur le point d'être supprimée. |
+| direction | direction?value={ltr \| rtl} | Paragraphe,
*Sous-menu* | Sens de l'écriture du paragraphe (ltr : left to right - rtl : right to left). |
+| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Affiche les références de formules sous la forme d'un symbole . Ne peut être utilisé que lorsque les formules sont affichées en tant que références. |
+| doc | doc | Document,
*Sous-menu* | Sous-menu par défaut pour la disposition du corps du document (attributs du mode inclus ou attributs par défaut des sections - mais pour la marge réservée au mode inclus seulement). |
+| dpi | dpi?value=\ | *Sous-menu* | Modifie le dpi de la vue courante (indépendant de l'attribut de document wk dpi utilisé en interne pour la conversion pixels <-> points).
Ex: *dpi?value=72* |
+| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable} | Table,
*Sous-menu* | Définit la manière dont la table est affichée lorsque sa source de données est vide. |
+| fontStyleWrite | fontStyleWrite | *Sous-menu* | Pour les commandes de menu uniquement. Affiche le sous-menu Style de police par défaut de 4D Write Pro. |
+| fontSubscript | fontSubscript | | Bascule l'attribut de police indice. |
+| fontSuperscript | fontSuperscript | | Bascule l'attribut de police exposant. |
+| footer | footer | *Sous-menu* | Affiche le sous-menu Pied de page. |
+| footer/remove | footer/remove | Pied | Supprime le pied de page sélectionné. |
+| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, *Sous-menu* | Mode de surbrillance de formule pour le document. Peut être utilisé avec un menu déroulant ou un bouton. |
+| formulaHighlightColor | formulaHighlightColor?value= | Document, *Sous-menu*, *showDialog* | Couleur de surbrillance de la formule pour le document. |
+| formulaHighlightReferences | formulaHighlightReferences | Document | Bascule la surbrillance des références de formule. Peut être utilisé avec une case à cocher ou un élément de menu. |
+| formulaHighlightValues | formulaHighlightValues | Document | Active ou désactive la mise en surbrillance des valeurs de formule. Peut être utilisé avec une case à cocher ou un élément de menu. |
+| header | header | *Sous-menu* | Affiche le sous-menu En-tête. |
+| header/remove | header/remove | En-tête | Supprime l'en-tête sélectionné. |
+| height | {image \| textBox \| row}/height?value={ \| auto} | Image, zone de texte, Ligne, *Sous-menu* | Hauteur de la cible.
Ex : image/height?value=50pt.
Pour image/width, voir width.
Ex : row/height?value=12pt |
+| headerRowCount | {table}/headerRowCount | Tableau, *Sous-menu* | Définit le nombre de lignes d’en-tête dans un tableau (5 au maximum). |
+| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Bascule du mode html au mode wysiwyg. |
+| image | image | Image, *Sous-menu* | Affiche le sous-menu Image. |
+| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, *Sous-menu* | Définit le mode d'affichage des images ancrées et des images en ligne.
Ex : image/displayMode?value=scaledToFit |
+| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, *Sous-menu* | Alignement vertical de l'image.
Ex: image/verticalAlign?value=super |
+| insertColumnBreak | insertColumnBreak | Paragraphe | Insère un saut de colonne dans la sélection. |
+| insertColumnToTheLeft | insertColumnToTheLeft | Table | Insère une colonne à gauche de la première colonne sélectionnée. |
+| insertColumnToTheRight | insertColumnToTheRight | Table | Insère une colonne à droite de la dernière colonne sélectionnée. |
+| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraphe | Insère un saut de section continu à la sélection. |
+| insertImage | insertImage | | Ouvre une boîte de dialogue de sélection d'image et insère l'image sélectionnée (le cas échéant) en tant que caractère dans la zone. |
+| insertPageBreak | insertPageBreak | Paragraphe | Insère un saut de page à l'endroit sélectionné. |
+| insertRowAbove | insertRowAbove | Table | Insère une ligne au-dessus de la ligne ou des lignes sélectionnée(s). |
+| insertRowBelow | insertRowBelow | Table | Insère une ligne en-dessous de la ligne ou des lignes sélectionnée(s). |
+| insertSectionBreak | insertSectionBreak | Paragraphe | Insère un saut de section à l'endroit sélectionné. |
+| insertSoftHyphen | insertSoftHyphen | | Insère un trait d'union au niveau du curseur. |
+| keepWithNext | keepWithNext | Paragraphe | Relie un paragraphe au suivant afin qu'ils ne puissent pas être séparés par des sauts de page ou de colonne automatiques.
Si cette action est appliquée au dernier paragraphe de la dernière cellule d'un tableau, la dernière ligne du tableau est reliée au paragraphe suivant. |
+| lineHeight | lineHeight?value={ \| } | Paragraphe, *Sous-menu* | Hauteur de ligne du paragraphe.
Ex: lineHeight?value=120% |
+| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraphe, *Sous-menu* | Numéro de départ de la liste.
Ex: listStartNumber?value=10 |
+| listStyleImage | listStyleImage/showDialog | Paragraphe, *showDialog* | Ouvre un dialogue d'ouverture de fichier pour choisir une image à afficher en tant que puce pour une liste ; définit également un élément de liste sous forme de disque – style à utiliser si l'image n'est pas trouvée. |
+| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading-zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraphe, *Sous-menu* | Type de style de liste de paragraphes. |
+| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table}/{inside \| outside}/{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Tableau, *Sous-menu* | Modifie la marge de la cible (la cible par défaut est le paragraphe).
Ex : `margin?value=4pt` – définit toutes les marges du paragraphe sur 4pt.
Ex : `outside/margin?value=4pt` – définit les marges extérieures du paragraphe sur 4pt.
Ex : `doc/marginLeft?value=1cm` – définit la marge gauche à 1cm pour le document, comme dans le mode intégré.
Ex : `section/marginLeft?value=1cm` – définit la marge gauche à 1cm pour les pages de la première section sélectionnée. |
+| merge | {paragraph/}merge cell/merge | Paragraphe, cellule | Utilisé avec les paragraphes : fusionne les paragraphes. Utilisé avec les cellules : fusionne les cellules sélectionnées. |
+| minHeight | {paragraph \| image}/minHeight?value= | Paragraphe, Image, *Sous-menu* | Hauteur minimum de la cible (la cible par défaut est le paragraphe).
Ex: paragraph/minHeight?value=50pt |
+| minWidth | {paragraph \| image}/minWidth?value= | Paragraphe, Image, *Sous-menu* | Largeur minimum de la cible (la cible par défaut est le paragraphe).
Ex: paragraph/minWidth?value=50pt |
+| moveToFront | moveToFront | Image | Place l'image au premier plan (non activée pour les images en ligne). |
+| moveToBack | moveToBack | Image | Place l'image à l'arrière-plan (non activée pour les images en ligne). |
+| newLineStyleSheet | newLineStyleSheet?index={1<=number<=nombre de feuilles de style paragraphe} \| newLineStyleSheet?value=auto | Paragraphe, *Sous-menu* | Les éléments du paragraphe sélectionné utiliseront la Nième feuille de style pour les nouveaux paragraphes créés par Retour Chariot ou lors d'un fractionnement de paragraphes. Si value=auto, les nouveaux paragraphes utiliseront la même feuille de style (fonctionnement par défaut).
(Le libellé de la ligne de menu est remplacé, à l'exécution, par le nom de la feuille de style.) |
+| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row \| cell}/{inside \| outside}/{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom}?value= | Document, Paragraphe, Image, zone de texte, Section, En-tête, Pied, Ligne, Colonne, Cellule, *Sous-menu* | Modifie le padding de la cible (la cible par défaut est le paragraphe). |
+| pageMode | pageMode?value={embedded \| page \| draft} | *Sous-menu* | Change le mode d'affichage.
Ex: pageMode?value=page |
+| pageOrientation | {section}/pageOrientation?value={landscape \| portrait} | Section, *Sous-menu* | Modifie l'orientation de la page de la première section sélectionnée.
Si la section n'est pas spécifiée, l'orientation s'applique à toutes les sections.
Ex: pageOrientation?value=portrait // change l'orientation en Portrait pour tout le document.
Ex: section/pageOrientation?value=landscape // change l'orientation en Paysage pour la première section sélectionnée. |
+| pageSize | pageSize?index= | *Sous-menu* | Modifie la taille de la page du document. `` est la Nième taille de page dans la liste des tailles disponibles.
La liste contient les formats courants de l'imprimante, les formats ISO et les formats personnalisés définis par l'utilisateur. |
+| paragraph | paragraph | Paragraphe, *Sous-menu* | Sous-menu par défaut pour le paragraphe. |
+| print | print | Document | Imprime le document en mode Page avec les paramètres de vue courants de la zone 4D Write Pro qui a le focus. |
+| refreshImages | refreshImages | Image | Recharge les images du réseau pour les images avec URLs. |
+| removeSoftHyphens | removeSoftHyphens | | Supprime tous les traits d'union conditionnels de la sélection courante. Si la sélection est vide, supprime le trait d'union conditionnel avant ou après le curseur, le cas échéant. |
+| row/avoidPageBreakInside | row/avoidPageBreakInside | Tableau, Ligne | Autorise ou désactive les sauts de page à l'intérieur des lignes du tableau.
Cette action est désactivée si :
- la sélection courante ne contient pas de tableau
- le tableau n'autorise pas les sauts de page
- le tableau se trouve dans un en-tête ou un pied de page.
Note : si plusieurs tableaux sont sélectionnés et que certains n'autorisent pas les sauts de page, cette option sera activée mais ne s'appliquera qu'aux tableaux qui les autorisent. |
+| section | section | Section, *Sous-menu* | Sous-menu par défaut de disposition de la page pour la première section sélectionnée. |
+| section/differentFirstPage | section/differentFirstPage | Section | Active ou désactive une première page différente pour la section. |
+| section/differentLeftRightPages | section/differentLeftRightPages | Section | Active ou désactive des pages droites et gauches différentes pour la section. |
+| section/name/showDialog | section/name/showDialog | Section, *showDialog* | Affiche un dialogue permettant d'entrer le nom de la première section sélectionnée. |
+| section/reset | section/reset | Section | Réinitialise tous les attributs de la première section sélectionnée pour les remplacer par les valeurs par défaut :
- héritées du document pour l'arrière-plan, la bordure et les marges intérieures (même en mode inclus)
- 2,5 cm pour les marges de page.
Les propriétés de colonnes de la première section sélectionnée sont également réinitialisées (seules les propriétés par défaut sont appliquées). |
+| split | {paragraph}/split \| cell/split | Paragraphe, Cellule | Utilisé avec un paragraphe : fractionne le paragraphe.
Utilisé avec une cellule : fractionne les cellules sélectionnées (seules les cellules préalablement fusionnées peuvent être fractionnées). |
+| styleSheet | {paragraph \| image}/styleSheet?value={1<=number<=nombre de feuilles de style} | Paragraphe, Image, *Sous-menu*, *showDialog* | Applique la Nième feuille de style aux éléments sélectionnés de la cible.
Avec la boîte de dialogue, la nouvelle feuille de style utilise les attributs courants de la prem
+| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, *Sous-menu* | Définit le caractère utilisé comme séparateur décimal par les tabulations décimales. |
+| tableAlign | tableAlign?value={left \| center \| right}
ou
table/tableAlign?value={left \| center \| right} | Tableau, *Sous-menu* | Indique l'alignement horizontal d'un tableau. |
+| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Active ou désactive les sauts de page dans les tableaux.
Désactivée si :
- la sélection courante ne contient pas de tableau
- le tableau se trouve dans un en-tête ou un pied de page |
+| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Bascule l'affichage des lignes à reporter en bas (voir *Carry-over rows*). |
+| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraphe | Alignement du texte du paragraphe.
(`initial` utilise `right` pour la direction RTL ou `left` pour la direction LTR). |
+| textBox | textBox | *Sous-menu* | Sous-menu avec toutes les actions disponibles pour la zone de texte ciblée ou sélectionnée. |
+| textBox/remove | textBox/remove | Zone de texte | Supprime la zone de texte sélectionnée. |
+| textIndent | textIndent?value= (peut être négatif) | Paragraphe, *Sous-menu* | Indentation de la première ligne du paragraphe.
Ex: textIndent?value=2cm |
+| textLinethrough | textLinethrough | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte barré (avec style et couleur). |
+| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | *Sous-menu*, *showDialog* | Définit la couleur du texte barré.
Ex: textLinethroughColor?value=red |
+| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | *Sous-menu* | Définit le style du texte barré.
Ex: textLinethroughStyle?value=dotted |
+| textShadow | textShadow | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte ombré (avec couleur et décalage). |
+| textShadowColor | textShadowColor?value={ \| none} | *Sous-menu*, *showDialog* | Modifie la couleur de l'ombre du texte.
Ex: textShadowColor?value=green |
+| textShadowOffset | textShadowOffset?value= | *Sous-menu* | Définit le décalage de l'ombre (uniquement en points).
Ex: textShadowOffset?value=2pt |
+| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | *Sous-menu* | Formate le texte.
Ex: textTransform?value=capitalize |
+| textUnderline | textUnderline | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu Texte souligné (avec style et couleur). |
+| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | *Sous-menu*, *showDialog* | Définit la couleur du soulignement.
Ex: textUnderlineColor?value=red |
+| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | *Sous-menu* | Définit le style du soulignement.
Ex: textUnderlineStyle?value=dotted |
+| updateStyleSheet | {paragraph \| image}/updateStyleSheet | Paragraphe, Image, *Sous-menu* | Met à jour la première feuille de style de la cible sélectionnée (la cible par défaut est le paragraphe). |
+| userUnit | userUnit?value={cm \| mm \| in \| pt} | *Sous-menu* | Modifie l'unité de mise en page du document (répercutée sur les règles). |
+| verticalAlign | {paragraph \| row \| column \| cell \| textBox}/verticalAlign?value={top \| middle \| bottom} | Paragraphe, Ligne, Colonne, Cellule, zone de texte, *Sous-menu* | Alignement vertical de la cible (par défaut le paragraphe).
Ex: verticalAlign?value=top
L'effet dépend de la valeur `minHeight` de la cible. |
+| view | view | *Sous-menu* | Pour les commandes de menu uniquement. Sous-menu par défaut pour les paramétrages de vue. |
+| visibleBackground | visibleBackground | Document | Affiche ou masque l'arrière-plan, les images ancrées et les zones de texte. |
+| visibleEmptyImages | visibleEmptyImages | Document | Affiche ou masque un rectangle noir par défaut pour les images qui ne peuvent pas être chargées ou calculées (images vides ou dans un format non supporté). |
+| visibleFooters | visibleFooters | Document | Affiche ou masque les pieds de page. |
+| visibleHeaders | visibleHeaders | Document | Affiche ou masque les en-têtes. |
+| visibleHiddenChars | visibleHiddenChars | Document | Affiche ou masque les caractères cachés. |
+| visibleHorizontalRuler | visibleHorizontalRuler | Document | Affiche ou masque la règle horizontale. |
+| visiblePageFrames | visiblePageFrames | Document | Affiche ou masque les cadres des pages. |
+| visibleVerticalRuler | visibleVerticalRuler | Document | Affiche ou masque la règle verticale (Mode Page uniquement). |
+| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraphe | Active ou désactive le contrôle des veuves et orphelines. |
+| width | {paragraph \| image \| textBox \| column}/width?value={ \| auto} | Paragraphe, Image, zone de texte, Colonne, *Sous-menu* | Largeur de la cible (par défaut le paragraphe).
La valeur `auto` n'est pas disponible pour les zones de texte (converties en 8 cm) et pour les colonnes.
Ex: image/width?value=50pt |
+| zoom | zoom?value={25% <= percentage <= 400%} | Document, *Sous-menu* | Modifie le zoom du document.
Ex: zoom?value=120% |
+
+
+### Autres actions
+
+De nombreuses autres actions standard proposées avec les formulaires 4D peuvent être utilisées dans les zones 4D Write Pro :
+
+* *Actions d'édition*, comme les actions Copier/Coller.
+* Actions sur la *Police*, telles que **fontBold** ou **fontSize**.
+* Actions sur les *Expressions dynamiques*, permettant de gérer l'insertion d'expressions.
+* Actions du *Correcteur orthographique*.
\ No newline at end of file
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png b/i18n/fr/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/fr/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png differ
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
index 5ef9d24e87eb43..dab3ae0c852036 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Vous souhaitez stopper le process sélectionné parmi la collection de process a
| | |
| --- | --- |
| Numéro de commande | 1634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
index e22c835878d53d..bd2d5fabbb4bcb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
@@ -39,6 +39,6 @@ Bien que la commande **ABORT** soit destinée à une utilisation au sein d'une m
| | |
| --- | --- |
| Numéro de commande | 156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
index fd4b6c330de88c..df28ce93183ba2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
@@ -32,6 +32,6 @@ L'exemple suivant retourne la valeur absolue de -10,3, qui est 10,3 :
| | |
| --- | --- |
| Numéro de commande | 99 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
index 85afe0e9ae95aa..1e0d6b3c78a63c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
@@ -41,7 +41,7 @@ La commande **ACCEPT** est autorisée en mode headless, dans le contexte des zon
| | |
| --- | --- |
| Numéro de commande | 269 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
index 204b12a096c9f2..9de542441eacd6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [BREAK LEVEL](break-level.md).
| | |
| --- | --- |
| Numéro de commande | 303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
index 6bb2a8ec128bfd..6bdc713d71ef8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
@@ -71,6 +71,6 @@ Vous voulez savoir si l'action standard **Copier** est disponible (c'est-à-dire
| | |
| --- | --- |
| Numéro de commande | 1442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
index 752ed70b055054..85d36ea12f4188 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 346 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
index e5745c39fc8352..77c1f89a7accf7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
@@ -50,6 +50,6 @@ Vous voulez connaître le statut courant de transaction :
| | |
| --- | --- |
| Numéro de commande | 1387 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
index 5097c6e41a2616..25f99f1432baec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
@@ -110,6 +110,6 @@ Vous obtenez des tableaux du type :
| | |
| --- | --- |
| Numéro de commande | 1277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
index 546f223ef7a8a5..6a7758808bfd7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est validé et 0 s
| | |
| --- | --- |
| Numéro de commande | 56 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
index 50f413c7dde5d9..95f4aacb831b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Alors que les [Self](self.md) vous permettent d'ajouter des jours à une date, *
| | |
| --- | --- |
| Numéro de commande | 393 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
index 9a3adfdb36071c..c104907d014fd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 119 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
index 309fe83c177eb6..e0e8a00849af9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des champs Texte de la table
| | |
| --- | --- |
| Numéro de commande | 1431 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
index 5cdd98432e301c..1aeea30ac57c3b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Vous souhaitez modifier temporairement la priorité des index du champ \[Docs\]C
| | |
| --- | --- |
| Numéro de commande | 1430 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
index 9c7c55d46e60c5..0ef5cebcba591f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ Vous souhaitez modifier temporairement la priorité des champs scalaires de la t
| | |
| --- | --- |
| Numéro de commande | 1429 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
index 3d4ecb4c5cad0b..b4834db24f36e1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **After** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 31 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
index dc2a54be8011c8..f08a92eb1ae653 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Ce code affiche la boîte de dialogue d'alerte suivante :
| | |
| --- | --- |
| Numéro de commande | 41 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
index 8cc26cd141d7fd..375e49ab4b1e08 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ L'exemple suivant affiche tous les enregistrements de la table \[Personnes\] :
| | |
| --- | --- |
| Numéro de commande | 47 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
index c735d2cbee3efe..ee36ff79b11dfa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
@@ -215,7 +215,7 @@ Si les données dans le BLOB sont correctement ajoutées au conteneur, la variab
| | |
| --- | --- |
| Numéro de commande | 403 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
index a4ee7bb3345ca3..ba09631efe2d27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ L'exemple suivant ouvre un document existant qui s'appelle “Note”, ajoute à
| | |
| --- | --- |
| Numéro de commande | 265 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
index c5a0d2036a93a7..ea158f2ef59552 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
@@ -82,7 +82,7 @@ Ensuite, dans toute méthode formulaire ou projet, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 411 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
index 0c1d523b50daa6..ec9002b01c256f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 911 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
index 81927b76c5901c..efe2d05d738f81 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
@@ -153,6 +153,6 @@ Dans le formulaire en exécution, la liste apparaîtra ainsi :
| | |
| --- | --- |
| Numéro de commande | 376 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
index 21b80abb05444a..9c09410d970e93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
@@ -45,6 +45,6 @@ Lorsque vous démarrez votre base sous Windows, vous souhaitez vérifier qu'une
| | |
| --- | --- |
| Numéro de commande | 491 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
index a37afd9ae915a7..8aa569855b6f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Si le code est exécuté sur 4D Server, l'objet contient (par exemple) :
| | |
| --- | --- |
| Numéro de commande | 1599 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
index df868d9b292db7..da50b56934d411 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Quelque part dans votre code, ailleurs que dans la *On Server Startup Database M
| | |
| --- | --- |
| Numéro de commande | 494 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
index 8a0ff339b18462..d3037a2151c725 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
@@ -124,6 +124,6 @@ Le code suivant reconstitue le numéro de version de l'application et permet de
| | |
| --- | --- |
| Numéro de commande | 493 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
index 8be08cbd3ab1b6..9d1d6d57654581 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
@@ -69,7 +69,7 @@ Si l'utilisateur clique sur le bouton Stop dans le thermomètre de progression,
| | |
| --- | --- |
| Numéro de commande | 70 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
index 7e1f3d45d9eb8d..4e4a8cde2546dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ Cet exemple permet d'afficher la valeur de Pi :
| | |
| --- | --- |
| Numéro de commande | 20 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
index b29552c6d890a4..d5810cebcdd590 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Cet exemple crée un tableau local de 100 lignes contenant chacune 50 éléments
| | |
| --- | --- |
| Numéro de commande | 1222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
index cc3f82c411b907..0608aab3f0dd2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
@@ -64,6 +64,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Booléen et a
| | |
| --- | --- |
| Numéro de commande | 223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
index c2bb86df48b40f..72265fdad86812 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type Date et affec
| | |
| --- | --- |
| Numéro de commande | 224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
index f5163b8a64723a..656ddfaaa9b5e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier](# "N
| | |
| --- | --- |
| Numéro de commande | 220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
index 3e048c37c41151..aca7f6bae2706e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Entier long]
| | |
| --- | --- |
| Numéro de commande | 221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
index 5136db0e686f5c..e7244b3e30e38e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Création et remplissage d’un tableau local d’objets :
| | |
| --- | --- |
| Numéro de commande | 1221 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
index 7f9c64916f9869..92d05101516527 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Image](# "Can be
| | |
| --- | --- |
| Numéro de commande | 279 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
index a5b1c2b53eb675..f66a090dfac615 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Cet exemple crée un tableau interprocess d'éléments de type [Pointeur](# "A r
| | |
| --- | --- |
| Numéro de commande | 280 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
index c055689aba3c5e..8b75ed537a50f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
@@ -63,6 +63,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Réel](# "Nu
| | |
| --- | --- |
| Numéro de commande | 219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
index 5d83acc4ad6f95..f87d3e54dd7326 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
@@ -59,6 +59,6 @@ Cet exemple crée un tableau interprocess de 50 éléments de type [Texte](# "Un
| | |
| --- | --- |
| Numéro de commande | 222 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
index 1a290fc5566653..45d2f2e6fe1808 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Comme les tableaux d’heures acceptent des valeurs numériques, le code suivant
| | |
| --- | --- |
| Numéro de commande | 1223 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
index 46d5e34f5443ae..7a067fcaa51e0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Vous souhaiter copier un tableau texte dans une collection partagée :
| | |
| --- | --- |
| Numéro de commande | 1563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
index b6a4665ff008d2..5b8ee77be2bec6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ La commande **ARRAY TO LIST** génère l'erreur *\-9957* lorsqu'elle est appliqu
| | |
| --- | --- |
| Numéro de commande | 287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
index 1ed798cee62a5d..795e5fb2046cc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
@@ -84,7 +84,7 @@ Vous souhaitez recopier la sélection d'enregistrements vers une table d'archive
| | |
| --- | --- |
| Numéro de commande | 261 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
index 99920d7917e046..2b3cae201c5c21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
@@ -58,7 +58,7 @@ Une assertion peut permettre de tester les paramètres passés à une méthode p
| | |
| --- | --- |
| Numéro de commande | 1129 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
index acb68671753940..7e6ffecd5de436 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Insertion d’une assertion dans l’évaluation d’une expression :
| | |
| --- | --- |
| Numéro de commande | 1132 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
index e87efb85327fc0..9525fe0b5f8614 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
@@ -95,7 +95,7 @@ Vous pouvez effectuer les calculs suivants :
| | |
| --- | --- |
| Numéro de commande | 2 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
index cb52f277dcd4cf..04587032ab9753 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Passez dans le paramètre *sélecteur* le type d’information à récupérer. L
| | |
| --- | --- |
| Numéro de commande | 888 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
index 38d48150acfa80..dc0fb8fa856924 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
@@ -43,7 +43,7 @@ En cas d’incident au cours de la sauvegarde, les informations relatives à l'i
| | |
| --- | --- |
| Numéro de commande | 887 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
index 58564ea6dade50..2d65aa1375bd2a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Cet exemple permet de transférer une image via un BLOB :
| | |
| --- | --- |
| Numéro de commande | 896 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
index f8aa37dc866617..965646df24c5c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
@@ -45,6 +45,6 @@ Par défaut, si le paramètre *\** est omis, la commande utilise un encodage Bas
| | |
| --- | --- |
| Numéro de commande | 895 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
index 79604ef5cb55bd..0155883d60495a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
@@ -39,6 +39,6 @@ Dans l'exemple suivant, un bip est émis et une alerte affichée lorsqu'aucun en
| | |
| --- | --- |
| Numéro de commande | 151 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
index d452fc2c9c818f..4e163c3fe1f7da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
@@ -69,6 +69,6 @@ La méthode formulaire suivante est utilisée pendant l'impression d'un état. E
| | |
| --- | --- |
| Numéro de commande | 198 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
index 0d33ab47f687d6..60d2dab6a97432 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
@@ -30,6 +30,6 @@ Si vous souhaitez que la phase **Before** du cycle d'exécution soit générée,
| | |
| --- | --- |
| Numéro de commande | 29 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
index 9c63700e8f9daf..c04d03b842953e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
@@ -49,6 +49,6 @@ A noter que le *Débogueur* de 4D évaluera le code SQL ligne par ligne. Dans ce
| | |
| --- | --- |
| Numéro de commande | 948 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
index 24e34db69789c8..35a8ee7db40177 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
@@ -83,6 +83,6 @@ Lorsque cette méthode est placée dans votre application, vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 536 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
index 406f9bf2d30dd6..0485dc767e015b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ La ligne de code suivante ajoute 100 octets au BLOB *monBlob* :
| | |
| --- | --- |
| Numéro de commande | 605 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
index 4dec390e2c2495..fb672684cbf00a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
@@ -57,7 +57,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
index e7849064cea1d6..444b55d9474c20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
@@ -84,6 +84,6 @@ L'exemple suivant lit 20 valeurs entières d'un BLOB à partir de l'offset 0x200
| | |
| --- | --- |
| Numéro de commande | 549 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
index 601cab16ca93f5..dd5822b0ccfdc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ La variable OK prend la valeur 1 si la liste a été correctement créée, sinon
| | |
| --- | --- |
| Numéro de commande | 557 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
index e112f07a60fc94..ea633eaee88c11 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
@@ -66,6 +66,6 @@ L'exemple suivant lit 20 valeurs de type Entier long dans un BLOB, à partir de
| | |
| --- | --- |
| Numéro de commande | 551 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
index 9ca12877f3da52..5c8afab1324785 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 682 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
index b53c30a3c066d3..f6624e6f5f63a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
@@ -77,6 +77,6 @@ Vous voulez appliquer des paramètres d'impression précédemment stockés sur d
| | |
| --- | --- |
| Numéro de commande | 1434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
index c46ae52d5a8dfe..1613075d684093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
@@ -68,6 +68,6 @@ L'exemple suivant lit 20 valeurs réelles dans un BLOB à partir de l'offset 0x2
| | |
| --- | --- |
| Numéro de commande | 553 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
index 50f4a77b8af6f5..d20ed798e62ecd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
@@ -67,6 +67,6 @@ Après l'exécution de la commande, la variable *offset* est incrémentée du no
| | |
| --- | --- |
| Numéro de commande | 555 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
index e5d02455b9412d..335206935027b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ Si la commande est exécutée correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 850 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
index 296a0e6dd4a2d8..734d7665f3d9c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ La variable OK prend la valeur 1 si la variable a été correctement réécrite,
| | |
| --- | --- |
| Numéro de commande | 533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
index 4c2aebc8c32c4b..ab41540786eb0f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Vous sélectionnez une valeur en fonction d'un attribut de champ objet, en antic
| | |
| --- | --- |
| Numéro de commande | 1537 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
index 38c2adcae4ac81..d54fef6f646b2d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Si vous ne passez pas le paramètre *ensemble*, la commande utilisera l’ensemb
| | |
| --- | --- |
| Numéro de commande | 646 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
index cd623a921164a1..f3cb91e2b1848d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ L'exemple suivant imprime un état avec deux niveaux de rupture. La sélection e
| | |
| --- | --- |
| Numéro de commande | 302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
index c2419a29535807..60e955d5be254b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ L'exemple suivant est une méthode qui peut être exécutée à partir d'une com
| | |
| --- | --- |
| Numéro de commande | 326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
index 999d7d84563bf1..725bf0cbe12fdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
@@ -55,7 +55,7 @@ Si la commande échoue, une erreur est générée, que vous pouvez intercepter
| | |
| --- | --- |
| Numéro de commande | 871 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
index b8f14de06574a4..3e43a463598a6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Vous souhaitez obtenir des informations sur la base courante et tous les composa
| | |
| --- | --- |
| Numéro de commande | 1402 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
index 97c0402a34f905..97829591067fed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Vous pouvez alors ajouter d'autres messages en exécutant à nouveau la commande
| | |
| --- | --- |
| Numéro de commande | 1391 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
index e439c1622d02a5..95cb4395e4a1f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
@@ -19,7 +19,7 @@ displayed_sidebar: docs
Cette commande doit être placée dans la méthode formulaire du sous-formulaire ou dans la méthode objet d’un des objets du sous-formulaire. L’événement sera reçu uniquement dans la méthode objet du conteneur du sous-formulaire.
-Vous pouvez passer dans *événement* tout événement formulaire prédéfini de 4D (vous pouvez utiliser les constantes du thème *Evénements formulaire*) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
+Vous pouvez passer dans *événement* un des [événements formulaire 4D pris en charge par les sous-formulaires](../FormObjects/subform_overview.md#call-subform-container-command) ou toute valeur correspondant à un événement personnalisé. Dans le premier cas, l’événement doit être coché pour le sous-formulaire. Dans le cas d’un événement personnalisé, il est conseillé de passer une valeur négative dans *événement* afin de ne pas risquer d’interférer avec des numéros d’événements existants ou à venir de 4D.
*Principe d’exécution de la commande* **CALL SUBFORM CONTAINER** *:*
@@ -35,6 +35,6 @@ Vous pouvez passer dans *événement* tout événement formulaire prédéfini de
| | |
| --- | --- |
| Numéro de commande | 1086 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
index 5032c1e1a18a4e..87a75e33a09cdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
@@ -82,6 +82,6 @@ Voici le code de *méthodeWorker* :
| | |
| --- | --- |
| Numéro de commande | 1389 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
index 2039b8690d4de8..629bfedfc31ff5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 241 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
index 6c04499adc0520..9a135870415ea4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
@@ -54,7 +54,7 @@ Lorsque la commande [CANCEL](cancel.md) est exécutée (formulaire annulé ou an
| | |
| --- | --- |
| Numéro de commande | 270 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
index c15403d494a97c..6238badc01747f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
index 996d07dfe9841e..8d540503a6f109 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
@@ -72,6 +72,6 @@ L'exemple suivant affiche simplement la boîte de dialogue de connexion :
| | |
| --- | --- |
| Numéro de commande | 289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
index bff4debb28c81e..7a0c3306647354 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ Vous permettrez ainsi à un utilisateur d‘activer des licences sans avoir à m
| | |
| --- | --- |
| Numéro de commande | 637 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
index 397a6109b576a4..041c798287f9b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ L'exemple suivant permet à l'utilisateur de modifier son mot de passe :
| | |
| --- | --- |
| Numéro de commande | 186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
index 521f92522c659e..2144b9030020ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ L'exemple suivant illustre l'utilisation de **Change string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
index feb8d6871f845d..0d5e3d331b996b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
@@ -41,6 +41,6 @@ L'exemple suivant utilise la fonction **Char** pour insérer un retour chariot d
| | |
| --- | --- |
| Numéro de commande | 90 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
index f91068c46800c8..7f3e259a9a129e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
@@ -90,6 +90,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 91 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
index cb24931df030a5..8236366a3a1b27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode de gestion d’
| | |
| --- | --- |
| Numéro de commande | 799 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
index eecdfb02642775..65cc9c9ccae0b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
@@ -85,6 +85,6 @@ Ce code est strictement équivalent à :
| | |
| --- | --- |
| Numéro de commande | 955 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
index 3ed92afb4760f5..dd51f5348b648b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
@@ -57,6 +57,6 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 377 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
index 3413b884a08a57..ea9c614bb6e3fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Si *nom* a été créée par la commande [CUT NAMED SELECTION](cut-named-selecti
| | |
| --- | --- |
| Numéro de commande | 333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
index e764f4d94af88e..3f6cf5c3dfa439 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 402 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
index 708686b746c5ff..81a55e256c7209 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
@@ -37,6 +37,6 @@ Reportez-vous à l'exemple de la fonction [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Numéro de commande | 144 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
index bede235b79222c..0142b69f743912 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Reportez-vous à l'exemple de la commande [USE SET](use-set.md).
| | |
| --- | --- |
| Numéro de commande | 117 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
index c679b316462062..edbf43d65642ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ Dans un formulaire, vous utilisez une liste déroulante appelée *asMalListeD* n
| | |
| --- | --- |
| Numéro de commande | 89 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
index ec50384484c898..8dc1fd64b1d739 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ Les libellés ne sont pas saisissables mais ils peuvent le devenir après un tri
| | |
| --- | --- |
| Numéro de commande | 1332 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
index 80717132cc66c6..4438fdbda107c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ L'exemple suivant permet à l'utilisateur de créer un nouveau document, écrit
| | |
| --- | --- |
| Numéro de commande | 267 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
index 516a0b1ac2795c..eb16556030fa66 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 996 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
index 3422ba4323454f..15e62489cd4bb1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ N'oubliez pas d'appeler finalement **CLOSE RESOURCE FILE** pour un fichier de re
| | |
| --- | --- |
| Numéro de commande | 498 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
index 1838bf3beef1af..95b9d4ed99e9d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ L'exemple suivant ouvre une fenêtre formulaire et crée des enregistrements à
| | |
| --- | --- |
| Numéro de commande | 154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
index 68679f047af2b7..c747b76e557069 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Vous voulez copier différentes valeurs de propriété d'une collection d'objets
| | |
| --- | --- |
| Numéro de commande | 1562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
index 42894544f00556..cbc9d42189069f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
@@ -56,6 +56,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 987 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
index f08b09c19c5819..b0cb3d9d2bf137 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
@@ -74,7 +74,7 @@ Si l’opération de compactage s’est déroulée correctement, la variable sys
| | |
| --- | --- |
| Numéro de commande | 937 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
index ba26e4c0b61ceb..124c72c21afcdb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
@@ -111,6 +111,6 @@ Les exemples suivants illustrent l'incidence des options dans le **contexte de l
| | |
| --- | --- |
| Numéro de commande | 1756 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
index bd6d6f70d99e0f..f4e5a4ec043862 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Pour plus d'informations sur les composants 4D, reportez-vous au manuel *Mode D
| | |
| --- | --- |
| Numéro de commande | 1001 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
index db31e327c94b84..0c92d090c2bd7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
@@ -99,7 +99,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement compressé, sin
| | |
| --- | --- |
| Numéro de commande | 534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
index b089c98dafb223..1d8ba1614d3f27 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
@@ -97,7 +97,7 @@ La ligne :
| | |
| --- | --- |
| Numéro de commande | 162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
index e084653f085616..b3fa3450e550d2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Cette méthode, associée à une zone de défilement, permet de changer la valeu
| | |
| --- | --- |
| Numéro de commande | 713 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
index a0749d976fd3ab..2f87e915365728 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
@@ -92,6 +92,6 @@ Vous souhaitez créer une fenêtre pop up à l'emplacement du curseur de la sour
| | |
| --- | --- |
| Numéro de commande | 1365 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
index 3805c0dd7c414f..391db3f78b5ec9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
@@ -191,7 +191,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1011 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
index fc246ebb5ee70b..75f9d9ce5463ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
@@ -55,6 +55,6 @@ Exemples sous Windows :
| | |
| --- | --- |
| Numéro de commande | 1107 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
index 88fa6781f43873..8dcb3398a8a7b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Exemple sous Windows
| | |
| --- | --- |
| Numéro de commande | 1106 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
index 339982d630da27..5246f06c78dad3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
@@ -55,6 +55,6 @@ Conversion d’une image avec une qualité de 60 % :
| | |
| --- | --- |
| Numéro de commande | 1002 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
index 0487bbc5e02e79..762e0e55161243 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
@@ -36,7 +36,7 @@ Si la commande a été correctement exécutée, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1012 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
index 09c73ebef6fc6e..40be4476e9e96e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ L'exemple suivant remplit un tableau C. Un nouveau tableau, "D", est ensuite cr
| | |
| --- | --- |
| Numéro de commande | 226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
index 765e09fc4c421a..760528e8617070 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ Notez que le BLOB de destination peut être redimensionné si nécessaire.
| | |
| --- | --- |
| Numéro de commande | 558 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
index e0e4a89d50ed2f..0b2e088ac4e1f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
@@ -127,7 +127,7 @@ Les exemples suivants créent différents fichiers et dossiers dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 541 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
index 61536768333afd..c7a8a77e4536db 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Le contenu de la liste copiée est entièrement dupliqué. Une fois que vous en
| | |
| --- | --- |
| Numéro de commande | 626 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
index 77e94ff8ca4b8d..f2c1bfddc2ebd6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
@@ -58,6 +58,6 @@ L'exemple suivant permet de vérifier s'il y a des factures impayées dans la ta
| | |
| --- | --- |
| Numéro de commande | 331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
index 7c201ea4b6ab1c..68f6c472e51131 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Puisque la commande retourne une collection, elle peut être utilisée avec **.j
| | |
| --- | --- |
| Numéro de commande | 1790 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
index 06b5128d50a91f..8da01cf18b4147 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ L'exemple suivant, en client/serveur, copie l'ensemble process "*SetA*", conserv
| | |
| --- | --- |
| Numéro de commande | 600 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
index b6f11190894dec..6c99497fd1f9a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 18 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
index 988fb27f846736..9a9fe278bdac3f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Vous voulez compter les références d'objets dans un tableau d'objets :
| | |
| --- | --- |
| Numéro de commande | 907 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
index 394466a3626a17..c57e645cbfec14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
@@ -64,6 +64,6 @@ Voici la liste *hList* affichée en mode Application :
| | |
| --- | --- |
| Numéro de commande | 380 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
index 568064c1409308..4545b807242275 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Count menu items** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 405 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
index ee18b18db95c24..aa80fa732eec4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Si vous omettez le paramètre *process*, **Count menus** s'applique à la barre
| | |
| --- | --- |
| Numéro de commande | 404 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
index 6dcade77a26b90..c0f992d9906986 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
@@ -96,6 +96,6 @@ ou :
| | |
| --- | --- |
| Numéro de commande | 259 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
index cb878ae7891271..2b21ee5fd6b83f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 437 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
index b4092cc6131554..2676ee0fd467f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Référez-vous à l'exemple de [Process state](process-state.md) et [Semaphore](
| | |
| --- | --- |
| Numéro de commande | 335 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
index 5ad1d8ff21453a..2f742b65d301ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 343 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
index 9c09a2de1c2a8c..a481d3142626be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Dans le cas d'une version monoposte de 4D, **Count users** retourne 1.
| | |
| --- | --- |
| Numéro de commande | 342 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
index f8e140a4cc2fa4..d6f608a78c00ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ La variable système OK prend la valeur 1 si la commande a été correctement ex
| | |
| --- | --- |
| Numéro de commande | 694 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
index b3dd2f75719fed..087590dbd9383b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Avant de lancer l’opération, la commande vérifie que le chemin spécifié ne
| | |
| --- | --- |
| Numéro de commande | 313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
index be0c72ce9e9755..edd55a47c7acee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
@@ -74,7 +74,7 @@ Si le document est correctement créé, la variable système OK prend la valeur
| | |
| --- | --- |
| Numéro de commande | 266 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
index babc548f082caf..8ff2502558382f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Reportez-vous à l'exemple proposé dans la section *Présentation des ensembles
| | |
| --- | --- |
| Numéro de commande | 140 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
index 866a40b6a88ed0..e98327c8121257 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ Création du sous-dossier "\\February\\" dans le dossier existant "C:\\Archives\
| | |
| --- | --- |
| Numéro de commande | 475 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
index 37274def5f72a2..2dcb69a54adaee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Création d’un index composite sur les champs “CodePostal” et “Ville”
| | |
| --- | --- |
| Numéro de commande | 966 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
index 16b27c59308757..5987b75497874c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
index 61ff42c37d8d5e..f2e2401c734c41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ L'exemple suivant archive les enregistrements datant de plus de 30 jours. Cette
| | |
| --- | --- |
| Numéro de commande | 68 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
index cbffa2d80aa586..20954a5740a35a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
@@ -28,6 +28,6 @@ Si un enregistrement lié existe déjà, la commande **CREATE RELATED ONE** a al
| | |
| --- | --- |
| Numéro de commande | 65 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
index 9d2588e029d12a..9666d3615d5364 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
@@ -52,7 +52,7 @@ Si un numéro d'enregistrement est invalide (enregistrement non créé), l’err
| | |
| --- | --- |
| Numéro de commande | 640 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
index cfecc74907514c..9e92004496b727 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ Dans un tableau d'entier longs, si un numéro d'enregistrement est invalide (enr
| | |
| --- | --- |
| Numéro de commande | 641 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
index aaba30d60c69cd..54036244983106 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ L'exemple suivant crée un ensemble après qu'une recherche ait été effectuée
| | |
| --- | --- |
| Numéro de commande | 116 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
index 27c267c7696b54..cab4ae6b0fbb33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
@@ -60,6 +60,6 @@ Le paramètre *profondeur* est ignoré et doit être omis. La commande utilise t
| | |
| --- | --- |
| Numéro de commande | 679 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
index c259c040131506..597690f4c3b612 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
@@ -79,6 +79,6 @@ Avec ce paramétrage, aucune boîte de dialogue d'identification n'est affichée
| | |
| --- | --- |
| Numéro de commande | 1355 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
index 914d279497e406..36df1b7533a16a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ La méthode projet suivante vous permet de traiter cette question :
| | |
| --- | --- |
| Numéro de commande | 33 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
index 11c774d02e3c52..ca2607cc143c10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ La ligne de code suivante inscrit le nom de la table courante par défaut dans l
| | |
| --- | --- |
| Numéro de commande | 363 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
index 615d995fda5c27..c3bf1dd03e082e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Vous souhaitez obtenir le formulaire courant si c’est un formulaire projet :
| | |
| --- | --- |
| Numéro de commande | 1298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
index 002efac3080757..ef9b9e19de9c30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
@@ -65,6 +65,6 @@ Dans votre application, vous utilisez la convention suivante : au moment de l'af
| | |
| --- | --- |
| Numéro de commande | 627 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
index 88c8de0e80f619..3512d449e6aa7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ La fenêtre du formulaire courant peut avoir été générée automatiquement pa
| | |
| --- | --- |
| Numéro de commande | 827 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
index a4f7be8a2fea42..ed7670eee422d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Même si vous n'utilisez pas la version client/serveur de 4D, votre application
| | |
| --- | --- |
| Numéro de commande | 483 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
index 8c36ae9f4a60f1..a49f817b3bfc8f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ Cette commande ne doit pas être appelée depuis une formule 4D.
| | |
| --- | --- |
| Numéro de commande | 684 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
index 8badc5e15ed9bd..97c3de87e6ccb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1201 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
index 769f628c132d7b..b6a78c43da2d38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Vous voulez appeler un process worker et lui passer comme paramètre le nom du p
| | |
| --- | --- |
| Numéro de commande | 1392 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
index 9d45cdb8e72a92..3b6c51df228a12 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Référez-vous aux exemples de [DELAY PROCESS](delay-process.md) et [Process inf
| | |
| --- | --- |
| Numéro de commande | 322 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
index 97a88388162b82..e79db5b4020770 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [Current machine](current-machine.md).
| | |
| --- | --- |
| Numéro de commande | 484 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
index 807ec9df6950eb..bde0ed8d671dd5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ L'exemple suivant extrait les heures, minutes et secondes de l'heure courante :
| | |
| --- | --- |
| Numéro de commande | 178 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
index 6a2d7c183860b8..0cd52458b4ad7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [User in group](user-in-group.md).
| | |
| --- | --- |
| Numéro de commande | 182 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
index 42763fdcef575f..1b60de7b44dfc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ La méthode suivante vide la sélection courante de la table *\[Clients\]* :
| | |
| --- | --- |
| Numéro de commande | 334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
index 18b603ef6d1f5e..6dddd3603c94c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Vous souhaitez connaitre le statut de chiffrement d'un fichier de données corre
| | |
| --- | --- |
| Numéro de commande | 1609 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
index f9775d2b54919f..d30c9738c58140 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Si, par exemple, vous travaillez avec la base MesCDs qui se trouve dans le dossi
| | |
| --- | --- |
| Numéro de commande | 490 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
index 4c52ea04e3f935..006de60f0335cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
@@ -333,6 +333,6 @@ Vous souhaitez obtenir les mesures d'octets lus dans le cache au cours des deux
| | |
| --- | --- |
| Numéro de commande | 1314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
index 395231cef38115..a8fb81371a0923 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
@@ -100,6 +100,6 @@ Vous souhaitez lire une date depuis un attribut d'objet, quelle que soit l'optio
| | |
| --- | --- |
| Numéro de commande | 102 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
index 5e94d1f189a4e7..e72221c271d1a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ L'exemple suivant est une fonction qui retourne le jour d'aujourd'hui sous forme
| | |
| --- | --- |
| Numéro de commande | 114 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
index 2fcefed57bcda5..1e15e72159dada 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 23 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
index 266ccb2c6a0c7c..4348f457429cf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Deactivated** soit généré, vérifi
| | |
| --- | --- |
| Numéro de commande | 347 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
index b613b04df4b264..e87e75044184ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
@@ -36,6 +36,6 @@ L'exemple suivant utilise une valeur monétaire exprimée sous forme numérique
| | |
| --- | --- |
| Numéro de commande | 9 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
index 4b71230e5574c2..023ba4eab53d76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
@@ -41,6 +41,6 @@ Reportez-vous aux exemples de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 690 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
index 5275312b53f791..d27912e39831c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
@@ -64,6 +64,6 @@ Les paramètres *passPhrase* et le *salt* utilisés pour le déchiffrement sont
| | |
| --- | --- |
| Numéro de commande | 1774 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
index 65de92bcf7bb5e..9e7007c2978926 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
@@ -83,6 +83,6 @@ Voici le résultat lorsqu'une table par défaut est définie :
| | |
| --- | --- |
| Numéro de commande | 46 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
index 539e2862d395b3..75ddb70c1fe252 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 323 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
index c264727a3649ce..1d4daa5086b3a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
@@ -53,7 +53,7 @@ La suppression d'un document met la variable système OK à 1\. Si **DELETE DOCU
| | |
| --- | --- |
| Numéro de commande | 159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
index adc143df4615f9..80aa8bbaa9090e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Vous pouvez intercepter ces erreurs à l’aide d’une méthode installée par
| | |
| --- | --- |
| Numéro de commande | 693 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
index fe2e8de7327560..86f12f8f6b6bc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ L'exemple suivant supprime le dernier élément d'un tableau, s'il existe :
| | |
| --- | --- |
| Numéro de commande | 228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
index 31fe0d9adb1dbf..196bf90f78f73d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 560 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
index 1ac23bda142378..293e517bbb4fb4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
@@ -47,6 +47,6 @@ L'exemple suivant supprime l'élément sélectionné de la liste *hList*. Si une
| | |
| --- | --- |
| Numéro de commande | 624 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
index 7cfdc5338092c8..ce5b5fd4a8ed6d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
@@ -51,6 +51,6 @@ Cet exemple illustre les deux syntaxes de la commande :
| | |
| --- | --- |
| Numéro de commande | 967 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
index 19f32460d06af9..ce1ee9ffc0a0e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **DELETE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 413 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
index 674594c4d72423..b3251bd528dac5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ L'exemple suivant permet de supprimer l'enregistrement d'un employé. La méthod
| | |
| --- | --- |
| Numéro de commande | 58 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
index 289fb8c8b7dcbc..11ce3a1903cb98 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
@@ -70,7 +70,7 @@ Lorsqu'un **DELETE SELECTION** rencontre un enregistrement verrouillé, celui-ci
| | |
| --- | --- |
| Numéro de commande | 66 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
index d8e4338ba407ab..321d5f28b57e59 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
@@ -49,6 +49,6 @@ L'exemple suivant illustre l'utilisation de **Delete string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
index 227e3966bc571a..ceac98dd7e6fc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **DELETE USER** ou si u
| | |
| --- | --- |
| Numéro de commande | 615 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
index 5e898e1ce5c2a1..a7fa3058b9d825 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| Numéro de commande | 1044 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
index 8c45b00f8d9c51..e7ab1cde6a8564 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
@@ -61,6 +61,6 @@ Un bouton associé à une méthode objet est placé en bas de la liste. La méth
| | |
| --- | --- |
| Numéro de commande | 122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
index fa48c5b1cd63f4..3956e23c3b56fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **DISABLE MENU ITEM** s'applique à la
| | |
| --- | --- |
| Numéro de commande | 150 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
index 5fea37fdb8f54e..6d28df1c5d9735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Les fichiers de clés (fichiers d'extension ".4DKeyChain") doivent être stocké
| | |
| --- | --- |
| Numéro de commande | 1639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
index 8ad4bae75caa5b..a77a04632aa658 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Sous Windows, la fenêtre du message reste affichée tant qu'aucune activité n'
| | |
| --- | --- |
| Numéro de commande | 910 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
index c72733373efb24..0ea6977fa69cde 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
@@ -44,6 +44,6 @@ L'exemple suivant affiche une série d'enregistrements sous forme de slide show
| | |
| --- | --- |
| Numéro de commande | 105 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
index 57f3d4a194ebf5..6930f2032289fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
@@ -98,7 +98,7 @@ Vous pouvez aussi utiliser d'autres commandes telles que [PRINT SELECTION](print
| | |
| --- | --- |
| Numéro de commande | 59 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
index c83de8de70d376..154355999bb484 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Cet exemple permet d’appliquer une couleur alternée à un formulaire liste af
| | |
| --- | --- |
| Numéro de commande | 897 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
index 46bf8a6a0e9170..e7247b79a8840d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
@@ -75,6 +75,6 @@ Le tableau *aTPaths* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
index e3af90c11f1e1c..75dc3d007782fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
@@ -101,6 +101,6 @@ Le tableau *aLChildNum* reçoit les éléments suivants :
| | |
| --- | --- |
| Numéro de commande | 1397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
index f3a65ed11e8cbe..c7973fecf5ad2a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
@@ -86,6 +86,6 @@ Pour calculer des statistiques, vous voulez trier le nombre de valeurs distincte
| | |
| --- | --- |
| Numéro de commande | 339 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
index a731f34d2bb7fa..36a82ad6344ece 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ Liste de tous les documents en mode récursif POSIX (relatif) :
| | |
| --- | --- |
| Numéro de commande | 474 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
index c5b15bc3ac8037..f82fcc428a5fc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ Dans tous les cas, vous pouvez gérer les erreurs en utilisant la commande [ON E
| | |
| --- | --- |
| Numéro de commande | 525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
index a950413ef1d6a8..8d4bf2d41a099b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Si vous exécutez ce code :
| | |
| --- | --- |
| Numéro de commande | 1236 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
index fe25a3271196bd..5da76f2ba15700 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
@@ -151,6 +151,6 @@ Si le contenu de *valeurEnfant* est invalide, une erreur est retournée.
| | |
| --- | --- |
| Numéro de commande | 1080 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
index 907889822ff242..e3b0633fb25214 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Voir l’exemple de la commande [DOM Insert XML element](dom-insert-xml-element.
| | |
| --- | --- |
| Numéro de commande | 1082 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
index 25f8a09d6eff57..eb5ef180ef2826 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 722 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
index 18cee9814b3916..77251b247b7eb7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 727 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
index 53c391c6324675..1e3c0c7af884c1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 726 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
index cbb7908d560773..66f0a809e15708 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Pour cela, il suffit d'écrire :
| | |
| --- | --- |
| Numéro de commande | 1097 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
index 22ba096c5d5f99..efc92047bf11fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
@@ -157,7 +157,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 865 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
index 7daa0a35ad1f25..1f0735938d5559 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
@@ -103,7 +103,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 861 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
index b012ac2039f92d..ed7987bd8ebbb9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
@@ -67,7 +67,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 862 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
index d8c701c3595602..aa98ad6bf22c80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 863 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
index ea9a0b9d4b083f..f5f5f43feeeeab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ La commande retourne en résultat la référence XML de l’élément trouvé.
| | |
| --- | --- |
| Numéro de commande | 1010 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
index 8c8f1083a572f9..933d6ecb10cf34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
@@ -122,7 +122,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 864 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
index 46e5d9edd08eb8..539b3f1388cb86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 723 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
index 8aac12202e8e70..d9ef7ce50150ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 925 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
index 4f87db782b2006..3434245c78fc5b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -67,7 +67,7 @@ Si la commande a été correctement exécutée et si l’élément analysé n’
| | |
| --- | --- |
| Numéro de commande | 724 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
index ac0f44c96e7e61..fc586d00c472e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
@@ -40,7 +40,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 923 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
index 0e141f2cf57f4b..c5d493bccad775 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée et si l’élément référencé
| | |
| --- | --- |
| Numéro de commande | 924 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
index a517534eae92ec..8cc917b30b6792 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1053 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
index 36532cdd394fe7..0b892a53876f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 729 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
index ac58cfb820b7af..d92704ac5b3e4c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 728 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
index 7101b4091f05bb..acec534452d0b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ Après l’exécution de ces instructions :
| | |
| --- | --- |
| Numéro de commande | 1081 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
index e4cb3ba66043b9..e5563564193952 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ Dans cet exemple nous cherchons à retrouver la déclaration de DTD du document
| | |
| --- | --- |
| Numéro de commande | 1088 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
index a35de86e71ac7d..30b23da9cfac9f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
index b20df8c88c7d70..5ad2b1a44d7e23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
index d7619b9e3801f3..72e446fd6774fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 725 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
index 2de51fe7e5692f..7b7557a50ecb62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ Passez dans *infoXML* un code indiquant le type d’information à récupérer.
| | |
| --- | --- |
| Numéro de commande | 721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
index 47d7d131785673..9f82b5809fa093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
@@ -80,6 +80,6 @@ Pour cela, il suffit d’exécuter le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1083 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
index 253891753b2910..8459a8d5ae3734 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
@@ -99,7 +99,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 719 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
index a73fcee004e9f4..189e5427670077 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
@@ -89,7 +89,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 720 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
index af088c5cd9bca7..e02e04e46ae7fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ Le code suivant permet de supprimer le premier attribut "N=1" :
| | |
| --- | --- |
| Numéro de commande | 1084 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
index e692974c001833..8412adcd5846d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
@@ -32,7 +32,7 @@ Une erreur est générée lorsque la référence de l’élément n’est pas va
| | |
| --- | --- |
| Numéro de commande | 869 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
index 199a00722e4a44..e7f4cb97c49fe7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
@@ -72,7 +72,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 866 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
index 1fb54af71f93f8..9977ecc9ee90de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
@@ -44,6 +44,6 @@ Cet exemple définit l’encodage et l’option standalone de l’élément *ref
| | |
| --- | --- |
| Numéro de commande | 859 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
index 34602d8ff16db4..2c7634cb8c60fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Une erreur est générée lorsque :
| | |
| --- | --- |
| Numéro de commande | 867 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
index a64d1ddb7c3a21..f3b64f4c12a60e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 868 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
index 5d5417e83c3433..71cbacad9137f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ Vous pouvez la déplacer en cliquant sur les bordures.
| | |
| --- | --- |
| Numéro de commande | 452 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
index 115e95f47559a1..859b9cdebdc6f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
@@ -97,6 +97,6 @@ La méthode objet de la list box de gauche (destination) contient le code suivan
| | |
| --- | --- |
| Numéro de commande | 608 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
index 1c48ddd739a18f..210aed1a17b748 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
@@ -47,6 +47,6 @@ Vous souhaitez supprimer un utilisateur distant spécifique :
| | |
| --- | --- |
| Numéro de commande | 1633 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
index af912ec4ecaf9f..e3948649cd009a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
index 58c88a92187dc8..219b9224a7921e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
@@ -96,6 +96,6 @@ paramRef:=Dynamic pop up menu($refMainContextMenu)
| | |
| --- | --- |
| Numéro de commande | 1006 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
index c8b611d414f11f..ecec1d1d7467d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ L'exemple suivant affiche la fenêtre de gestion des utilisateur et des groupes
| | |
| --- | --- |
| Numéro de commande | 281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
index a317d522237d0e..b477d61879014a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
@@ -60,7 +60,7 @@ Si l’utilisateur valide la boîte de dialogue, la variable système OK prend l
| | |
| --- | --- |
| Numéro de commande | 806 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
index a82c431e0d5de3..ac6860abc8f622 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
@@ -78,6 +78,6 @@ Soient deux colonnes d’une list box dont les noms de variables associées sont
| | |
| --- | --- |
| Numéro de commande | 870 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
index 5978b8ecea5a30..1105f036789372 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
@@ -36,7 +36,7 @@ Si vous omettez le paramètre *process*, **ENABLE MENU ITEM** s'applique à la b
| | |
| --- | --- |
| Numéro de commande | 149 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
index 2766f3b31a17f0..e444de76e8531a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
@@ -195,6 +195,6 @@ Dans le cas contraire, pour des raisons de sécurité, le mode synchrone est uti
| | |
| --- | --- |
| Numéro de commande | 689 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
index 21efbf6d59004a..40e7bef56f9bec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ Cryptez un fichier texte situé dans le dossier RESSOURCES de la base de donnée
| | |
| --- | --- |
| Numéro de commande | 1773 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
index fe30b8a2277273..2b93995c0614c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
@@ -142,6 +142,6 @@ $folder:=Encrypt data file(Structure file;"myData.4DD")
| | |
| --- | --- |
| Numéro de commande | 1610 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
index edd9f3b6174d68..d71ccf5c161ae0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ La méthode formulaire de l'exemple suivant est utilisée lors de l'impression d
| | |
| --- | --- |
| Numéro de commande | 36 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
index 6950f429ef92fa..ee856725193c40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Une séquence d'instructions SQL doit être encadrée par les mot-clés [Begin S
| | |
| --- | --- |
| Numéro de commande | 949 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
index 5e9b4dbc25d998..1baaf932582519 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Le code du bouton **Compare** est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1196 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
index ffafbd5b0a87a5..c8f19d2ae3d4fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ Ne confondez pas **ERASE WINDOW**, qui efface le contenu d'une fenêtre, et [GOT
| | |
| --- | --- |
| Numéro de commande | 160 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
index 45366b59790b3b..4ef920857eb83d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
@@ -121,6 +121,6 @@ Voici différents types de conversion pouvant être obtenus à l’aide de cette
| | |
| --- | --- |
| Numéro de commande | 676 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
index 640f1470828bfa..1865d362e6a325 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
@@ -68,6 +68,6 @@ Vous voulez exécuter une formule incluant des appels à des commandes et des ta
| | |
| --- | --- |
| Numéro de commande | 63 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
index 379af07fb34e1c..61feb7e72aeac3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1085 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
index dc445f43b9f49e..5fb50c3638a2a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Si cette commande est exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1007 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
index 85df3888da893b..965fee9d9a4ee9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
@@ -66,7 +66,7 @@ La variable système OK prend la valeur 1 si 4D Server a correctement reçu la r
| | |
| --- | --- |
| Numéro de commande | 651 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
index a288c1633d5e2c..ba9509e4a7abd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
@@ -191,6 +191,6 @@ Reportez-vous à la section *Services basés sur les procédures stockées (exem
| | |
| --- | --- |
| Numéro de commande | 373 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
index b424273f6c399b..fe836c7a183cc8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
@@ -37,6 +37,6 @@ L'exemple suivant assigne l'exponentielle de 1 à *vrE* (le logarithme de *vrE*
| | |
| --- | --- |
| Numéro de commande | 21 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
index 8d9e6f21ed0674..b19dc38a95bedf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
@@ -71,7 +71,7 @@ La variable OK prend la valeur 1 si le BLOB a été correctement décompressé,
| | |
| --- | --- |
| Numéro de commande | 535 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
index 7da12ff0f049c8..09cc2056ff635a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (d'enre
| | |
| --- | --- |
| Numéro de commande | 666 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
index 6f5c1053d8c20e..c3ccc97d18288b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 84 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
index 7bf913003bb49b..1a878f62d018cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
@@ -120,6 +120,6 @@ Vous souhaitez exporter uniquement les méthodes projet et les méthodes base, a
| | |
| --- | --- |
| Numéro de commande | 1565 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
index 949ce03b822419..819aa3269bae69 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
@@ -62,6 +62,6 @@ Vous voulez exporter la structure de la base courante au format html :
| | |
| --- | --- |
| Numéro de commande | 1311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
index 394929b1ef3251..b9f28b36a94ae5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 85 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
index 4535347a31c366..87e72134c0aabd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'export s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 167 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
index bab46c01487b88..d2319000e6b2f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Faux :
| | |
| --- | --- |
| Numéro de commande | 215 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
index 1272508877d466..b9b42a304a7501 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
@@ -54,6 +54,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte. Nous passons à cette
| | |
| --- | --- |
| Numéro de commande | 257 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
index ac5f0a3d69f808..c3a79be7e71161 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
@@ -62,6 +62,6 @@ Dans l'exemple, la variable *champNum* est égale au numéro de champ de \[Table
| | |
| --- | --- |
| Numéro de commande | 253 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
index 35999a55736c66..3d6ca9239ed234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Référez-vous à l'exemple d'[ON EVENT CALL](on-event-call.md).
| | |
| --- | --- |
| Numéro de commande | 321 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
index abbbd24de00e92..ee60e65bd2129e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
@@ -246,6 +246,6 @@ La méthode obtenirTexteSelectionne est la suivante :
| | |
| --- | --- |
| Numéro de commande | 389 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
index 2271330d135789..c37e646943a78d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
@@ -113,6 +113,6 @@ Vous voulez trouver une référence d'objet :
| | |
| --- | --- |
| Numéro de commande | 230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
index 06683930be7511..095e31743c8e9d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ Remarquez le >= qui permet de couvrir tous les cas. En effet, la fonction retour
| | |
| --- | --- |
| Numéro de commande | 653 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
index 414d2d2585d386..c51239a7d7ae68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Soit la liste hiérarchique suivante :
| | |
| --- | --- |
| Numéro de commande | 952 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
index 9928f8c649f948..f84082a3030d0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
@@ -77,6 +77,6 @@ Vous souhaitez trouver le nombre d'occurrences de chaînes débutant par "test"
| | |
| --- | --- |
| Numéro de commande | 1333 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
index 8139bf20c036a7..611a471475c245 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ Le paramètre *partieFenêtre* retourne 3 si une fenêtre est touchée, et 0 sin
| | |
| --- | --- |
| Numéro de commande | 449 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
index 4995f30c72ba3e..d6b28ae7164f15 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ L'exemple suivant charge le premier enregistrement de la table \[Clients\] :
| | |
| --- | --- |
| Numéro de commande | 50 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
index ed741567b813e8..28d99430dc3164 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ En temps normal, vous n'avez pas à appeler cette commande, car 4D sauvegarde r
| | |
| --- | --- |
| Numéro de commande | 297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
index 5152ec32beec86..54fd5e649037b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ L'exemple suivant est une méthode objet pour un bouton. Cette méthode passe le
| | |
| --- | --- |
| Numéro de commande | 278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
index d2fbbeb80a46d8..a2a4bd879f19be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ S'il n'y pas de dossier à cet endroit, la commande retourne un tableau vide. Si
| | |
| --- | --- |
| Numéro de commande | 473 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
index f0d97b3c2bd55a..a6c8c55357e1b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
@@ -55,6 +55,6 @@ Vous souhaitez vérifier que la police utilisée dans une zone de texte est int
| | |
| --- | --- |
| Numéro de commande | 1700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
index 969146904d6be2..02db1ac11ed46d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
@@ -78,6 +78,6 @@ Vous souhaitez obtenir la liste des polices récentes :
| | |
| --- | --- |
| Numéro de commande | 460 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
index 3ce2d6facad1c7..e759097e1b0553 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Vous voulez sélectionner les styles de la famille de police "Verdana" (si elle
| | |
| --- | --- |
| Numéro de commande | 1362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
index 5129600e662aa7..7cdcf113deb26b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
@@ -66,6 +66,6 @@ Si vous exécutez le code :
| | |
| --- | --- |
| Numéro de commande | 1570 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
index b8b538a6549ad0..ed570be1fa62fe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
index 0c12ed9e9896fe..a49fc1a06a12b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Vous souhaitez charger une image en fonction du schéma courant du formulaire :
| | |
| --- | --- |
| Numéro de commande | 1761 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
index 1aa1414c31e9bf..18f67f250694ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ Alors que vous êtes en train d'utiliser un formulaire, si vous choisissez une c
| | |
| --- | --- |
| Numéro de commande | 276 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
index 24e7f9ddaa0482..ba01d6de4c3247 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
@@ -56,6 +56,6 @@ Vous voulez exclure certains objets de l'ordre de saisie :
| | |
| --- | --- |
| Numéro de commande | 1469 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
index 59c47b12568ba5..c62ad02ab5aca2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1077 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
index 0754015f9f7422..beb1252a9024de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
@@ -69,6 +69,6 @@ Exemples d’utilisations type :
| | |
| --- | --- |
| Numéro de commande | 1167 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
index 0e60ccf82c75a4..f26c3c66386162 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
@@ -125,6 +125,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 898 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
index f66a4252f1ae7c..e941482fc99860 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ Le paramètre *titre* retourne le nom de la fenêtre du formulaire, tel qu’il
| | |
| --- | --- |
| Numéro de commande | 674 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
index d491d7fd2ffed9..4c61d9bdd2f392 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1078 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
index f5c4954ffd4e9b..15bf5a21a6a260 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
@@ -53,6 +53,6 @@ L'exemple suivant est la méthode objet d'un bouton affichant la page 3 du formu
| | |
| --- | --- |
| Numéro de commande | 247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
index ceeb9e9f85950b..a37d7d0ff3795d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle affiche la
| | |
| --- | --- |
| Numéro de commande | 251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
index db5719936f13c8..07b1c0ae6570b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
index 7e8be749e1858b..7f51fccc7026dc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ Cet exemple est une méthode appelée par une commande de menu. Elle provoque l'
| | |
| --- | --- |
| Numéro de commande | 249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
index 4d96ee1f08d09c..c392c0bfa51aa1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Par défaut, la commande capture la page 1 du formulaire. Si vous souhaitez capt
| | |
| --- | --- |
| Numéro de commande | 940 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
index 2849949943587e..1a3c40fce3e20a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
@@ -58,6 +58,6 @@ Vous souhaitez fixer l'ordre de saisie des objets du formulaire en vous basant s
| | |
| --- | --- |
| Numéro de commande | 1468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
index 4cb11a633766ee..42c0c63c1bad40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 892 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
index 72bddd33fa5e48..fb39142d394730 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
@@ -108,6 +108,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 55 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
index d2578b637511ef..2453d0563e4ed9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
@@ -91,6 +91,6 @@ L'exemple suivant utilise un formulaire décrit dans un fichier .json :
| | |
| --- | --- |
| Numéro de commande | 54 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
index 8fc94789f55e0d..e8ca505cff4aa9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
@@ -130,6 +130,6 @@ La méthode objet associée à ce bouton est la suivante :
| | |
| --- | --- |
| Numéro de commande | 891 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
index c6c883aefd273c..bf76c012e19bc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Reportez-vous à l'exemple de la commande [FORM SET SIZE](form-set-size.md).
| | |
| --- | --- |
| Numéro de commande | 893 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
index 92b40b1cd2852e..bfb9aa191436e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ L’appel de cette commande est nécessaire lors de l’utilisation de la comman
| | |
| --- | --- |
| Numéro de commande | 1299 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
index 4393fd022c3d9f..5f6b5634dbc6cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Référez-vous à l'exemple de [BRING TO FRONT](bring-to-front.md).
| | |
| --- | --- |
| Numéro de commande | 327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
index 8e29ca4c2dd125..98c32b18024b37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 447 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
index 8903348da0e2ea..e8a2b69c3c43e9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
@@ -88,6 +88,6 @@ Un formulaire “Demande de certificat” comporte les six champs nécessaires
| | |
| --- | --- |
| Numéro de commande | 691 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
index c6bf2ff6534d21..2c6e9940ba3cc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
@@ -88,6 +88,6 @@ Ces exemples illustrent comment récupérer la clé digest d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
index 1f679529637855..b428a3567e6592 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la commande [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Numéro de commande | 688 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
index f0c5bf5865287e..62b823cef47144 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Cet exemple génère un hash de mot de passe à l'aide de bcrypt avec un coût d
| | |
| --- | --- |
| Numéro de commande | 1533 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
index 18707d564fd389..b5df6080244441 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Vous voulez obtenir le chemin d'accès du fichier de sauvegarde le plus récent
| | |
| --- | --- |
| Numéro de commande | 1418 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
index 40d5c663a4f4d0..5cf38ce18106a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
@@ -213,7 +213,7 @@ Si le paramètre *dossier* est invalide ou si le chemin d'accès retourné est v
| | |
| --- | --- |
| Numéro de commande | 485 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
index 237067df5b2530..53d382cbb515c0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1428 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
index dbd931dfa9d987..b9f98b180f0d1c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1427 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
index 3eae6f2edf9cb2..853e4b63122f53 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Les types de données scalaires incluent les types date/heure, numériques et al
| | |
| --- | --- |
| Numéro de commande | 1426 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
index 0472c5a3bb13f0..29c10f34b18f0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Cet exemple permet d’autoriser ponctuellement un ensemble de méthodes spécif
| | |
| --- | --- |
| Numéro de commande | 908 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
index 2a5e60b352080a..f71696e069883f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Pour plus de détails sur les noms des schémas de couleur, veuillez vous report
| | |
| --- | --- |
| Numéro de commande | 1763 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
index 1b75828279d157..85cdebcb41b58b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Par défaut, les assertions sont actives mais elles peuvent avoir été désacti
| | |
| --- | --- |
| Numéro de commande | 1130 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
index 99234b71886b86..b8a698d2ca5eb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
@@ -36,6 +36,6 @@ Reportez-vous à l'exemple de la commande [GET FIELD RELATION](get-field-relatio
| | |
| --- | --- |
| Numéro de commande | 899 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
index c4c05dbcdf5593..d4536fc92254f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Voir l'exemple de la commande [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Numéro de commande | 1432 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
index bff1642a2fd494..e7e95dc98c85d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Si aucune imprimante n'est installée, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 788 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
index 586b032a58929d..c9d64c760e049b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
@@ -56,6 +56,6 @@ La langue courante de la base définit le dossier .lproj dans lequel le programm
| | |
| --- | --- |
| Numéro de commande | 1009 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
index e8375316d3a77b..25ed707ad5f097 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
@@ -826,6 +826,6 @@ Dans la [On Startup database method](on-startup-database-method.md), vous pouvez
| | |
| --- | --- |
| Numéro de commande | 643 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
index 7d48ef3a6e8c48..15195c017c492d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ Si aucun utilisateur par défaut n’est défini, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 826 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
index 299758d2e14b50..256c1119b53e5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
@@ -32,7 +32,7 @@ Le paramètre optionnel *taille* vous permet d’indiquer les dimensions de l’
| | |
| --- | --- |
| Numéro de commande | 700 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
index 2fbe3a891b4ccb..9dcfa15ae7eb24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 481 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
index c30916308c4756..83b891b17fee43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
@@ -208,7 +208,7 @@ Une fois que cela est implémenté dans votre base, il suffit d'écrire la méth
| | |
| --- | --- |
| Numéro de commande | 477 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
index a5fe0bfcc74b05..7231380d2a8602 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Sous Mac OS, si vous ne passez pas le paramètre optionnel *\**, la taille de la
| | |
| --- | --- |
| Numéro de commande | 479 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
index 47ad0663aa0b28..dc2b006940b62c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ Voici un exemple de traitement à la volée des caractères saisis dans un champ
| | |
| --- | --- |
| Numéro de commande | 655 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
index c1ace322e3b603..e0e6bbc8f75fa8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Cette commande vous permet notamment de recopier le fichier externe.
| | |
| --- | --- |
| Numéro de commande | 1133 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
index da70f7453fab11..67e109ca930850 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ Si aucune énumération n’est associée au champ, ou si son type n’admet pas
| | |
| --- | --- |
| Numéro de commande | 685 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
index 8d8e9306c87c3a..154c612b1aaa63 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
@@ -80,6 +80,6 @@ L'exemple suivant récupère dans les variables *vType*, *vLong*, *vIndex*, *vUn
| | |
| --- | --- |
| Numéro de commande | 258 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
index 623deb5ebe8155..6f8e3dc2205e20 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
@@ -90,6 +90,6 @@ Le code ci-dessous illustre les différentes possibilités offertes par les comm
| | |
| --- | --- |
| Numéro de commande | 920 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
index f7d32d58d2ab1a..95670f021038d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
@@ -33,6 +33,6 @@ Dans les deux cas, la commande ne retourne pas les champs déclarés invisibles.
| | |
| --- | --- |
| Numéro de commande | 804 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
index 8d69d1e4ea8fef..ab6ddc08b22aa2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ L’exemple suivant permet de récupérer dans un tableau tous les chemins d’a
| | |
| --- | --- |
| Numéro de commande | 976 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
index 98a74eec9369f9..01701add364892 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Vous souhaitez vérifier si l'utilisateur courant appartient au groupe "plugins"
| | |
| --- | --- |
| Numéro de commande | 1738 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
index b572da2b48801c..6720d79dd09c86 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 610 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
index 96a8d4c8166d88..618e856387c0c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET GROUP
| | |
| --- | --- |
| Numéro de commande | 613 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
index b777c2ff41e0db..0feba47dbded34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ Modification du style du texte sélectionné :
| | |
| --- | --- |
| Numéro de commande | 209 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
index db6b9661494894..aac6393c65ecab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
@@ -48,7 +48,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 902 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
index 09f9ad917ee0e6..e66b7bbf1065f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
@@ -50,7 +50,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 510 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
index abdb45a34deae5..e747295b571804 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
@@ -36,6 +36,6 @@ Vous pouvez enfin passer *\** dans *réfElément* : dans ce cas, la commande s
| | |
| --- | --- |
| Numéro de commande | 954 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
index b2c20a27d3f1cf..6f1213863bd7c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
@@ -43,6 +43,6 @@ Si aucune icône n’est associée à l’élément, la variable icône est reto
| | |
| --- | --- |
| Numéro de commande | 951 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
index 91f79de933c0ae..1bba86b59cf545 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
@@ -80,6 +80,6 @@ Si on souhaite récupérer également les valeurs des paramètres, on peut écri
| | |
| --- | --- |
| Numéro de commande | 1195 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
index d6fac1c1e8ea15..9867f3b5a343ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
@@ -40,6 +40,6 @@ Vous pouvez passer dans *sélecteur* la constante Additional text ou Associated
| | |
| --- | --- |
| Numéro de commande | 985 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
index 7a6475eef9731d..381a6e5f07fcbf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ Pour plus d'informations sur ces propriétés, reportez-vous à la description d
| | |
| --- | --- |
| Numéro de commande | 631 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
index eeb956fa4697d3..dce776270c4b96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
@@ -77,6 +77,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 378 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
index 1c2e04b5e08d1c..ce4a636b802d07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Pour une description complète de ces propriétés d'apparence et de comportemen
| | |
| --- | --- |
| Numéro de commande | 632 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
index 63a95febf3822a..70afc1b4545c42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de [SET MACRO PARAMETER](set-macro-parameter.md).
| | |
| --- | --- |
| Numéro de commande | 997 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
index aac1cc56143e1c..30e91fc17fda9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Reportez-vous à l'exemple de la commande [GET MENU ITEMS](get-menu-items.md).
| | |
| --- | --- |
| Numéro de commande | 979 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
index 0f96efaf6814c1..138b02616c2593 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Si aucune icône n’est associée à la ligne, la commande retourne une valeur
| | |
| --- | --- |
| Numéro de commande | 983 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
index e047bab4dd8837..1fedc73f8d89f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
@@ -54,7 +54,7 @@ Pour obtenir le raccourci clavier associé à une ligne de menu, il est utile de
| | |
| --- | --- |
| Numéro de commande | 424 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
index 4dd4a1c3df7564..b4f34a5fe16265 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ L'exemple suivant inverse l'état marqué d'une ligne de menu :
| | |
| --- | --- |
| Numéro de commande | 428 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
index f62e1a71d8d606..67b2cb86e57dc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
@@ -34,6 +34,6 @@ La commande retourne le nom de la méthode 4D sous la forme d’une chaîne de c
| | |
| --- | --- |
| Numéro de commande | 981 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
index c171de7640db7f..c336718c352eb4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
@@ -52,6 +52,6 @@ Reportez-vous à l'exemple de la commande [Get menu item key](get-menu-item-key.
| | |
| --- | --- |
| Numéro de commande | 980 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
index 30f676513b634f..8d2a922fd0d831 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1003 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
index d89b118978f3cc..a757996d8811f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
@@ -37,6 +37,6 @@ Passez dans le paramètre *propriété* la propriété dont vous souhaitez obten
| | |
| --- | --- |
| Numéro de commande | 972 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
index ee454fdc90081e..20e021fe725815 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Si, par exemple, vous voulez tester si une ligne de menu est affichée en gras,
| | |
| --- | --- |
| Numéro de commande | 426 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
index e826af4b094d7a..eabcf8121fea45 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Si vous ne passez pas le paramètre *process*, **Get menu item** est appliquée
| | |
| --- | --- |
| Numéro de commande | 422 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
index a931e88ae3b3e4..c8b0a9df5c251e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Vous souhaitez connaître le contenu de la barre de menus du process courant :
| | |
| --- | --- |
| Numéro de commande | 977 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
index 4628cbdb88a840..ef12b378086dc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Si vous omettez le paramètre *process*, **Get menu title** s'applique à la bar
| | |
| --- | --- |
| Numéro de commande | 430 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
index 5919dc6699573f..ab762bac19de36 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ Une fois que vous avez identifié les tables manquantes de la base, vous pouvez
| | |
| --- | --- |
| Numéro de commande | 1125 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
index 2789c61dbcae3c..9fd6af125b2268 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
@@ -39,6 +39,6 @@ Pour plus d’informations sur les types de données pris en charge, reportez-vo
| | |
| --- | --- |
| Numéro de commande | 958 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
index 5c5585a2148647..4b46f7707a61d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Si les données sont extraites correctement, la variable OK prend la valeur 1\.
| | |
| --- | --- |
| Numéro de commande | 401 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
index 0bde7f2b2da6fd..495af80126aef7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Si l’image n’a pas de nom par défaut, la commande retourne une chaîne vide
| | |
| --- | --- |
| Numéro de commande | 1171 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
index 51964ab8e4ac6b..23ed6797dcbe5c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
@@ -52,6 +52,6 @@ Vous souhaitez connaître les formats de l'image stockée dans un champ Image de
| | |
| --- | --- |
| Numéro de commande | 1406 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
index 225b082ede5b1e..28ad1787e0a937 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
@@ -67,7 +67,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 565 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
index 604ea7e164e67c..059ed25e9cf10e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Si l'image est correctement extraite, OK prend la valeur 1\. Sinon, OK prend la
| | |
| --- | --- |
| Numéro de commande | 522 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
index c94e86b7d1dacb..6927a454e9beb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Si l’image ne contient pas de mots-clés ou de métadonnées IPTC/Keywords, la
| | |
| --- | --- |
| Numéro de commande | 1142 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
index 73bd17d4cfd4b7..7a2f98cd35a861 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
@@ -104,7 +104,7 @@ La variable système OK retourne 1 si la récupération des métadonnées s’es
| | |
| --- | --- |
| Numéro de commande | 1122 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
index 8b28785ec91faf..e81fad5b3a695d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 502 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
index c18ec13149c8e2..ef0faf6387049b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Passez dans le paramètre *plugIn* le numéro du plug-in duquel vous souhaitez c
| | |
| --- | --- |
| Numéro de commande | 846 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
index f41cf82103e712..85961929e89dc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Utilisation de pointeurs vers des éléments de tableaux à deux dimensions :
| | |
| --- | --- |
| Numéro de commande | 304 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
index fb01769d833437..923d6ee45173b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
@@ -65,6 +65,6 @@ Reportez-vous à l’exemple de la commande [SET PRINT MARKER](set-print-marker.
| | |
| --- | --- |
| Numéro de commande | 708 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
index a6d9710780c56d..dd187ab0365b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
@@ -72,7 +72,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 734 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
index f3029fa8be96cd..ef19ade4b41a87 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ A noter que l’utilisateur peut modifier cette option avant de valider la boît
| | |
| --- | --- |
| Numéro de commande | 1197 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
index 53f433d74cd1c6..f1231093105fc1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Pour connaître la taille totale de la page, vous pouvez :
| | |
| --- | --- |
| Numéro de commande | 703 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
index b9b0519874d51b..026cc734a46b42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
@@ -48,6 +48,6 @@ Il est possible de baser l’impression des formulaires effectuée à l’aide d
| | |
| --- | --- |
| Numéro de commande | 711 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
index 71f635149b3a79..699dfc0eba18d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
@@ -34,6 +34,6 @@ Les marges d’impression gauche et droite n’influent pas sur la valeur retour
| | |
| --- | --- |
| Numéro de commande | 702 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
index 93c7e47e357022..deb69370d5fac8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
@@ -122,6 +122,6 @@ Reportez-vous à l'exemple de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 371 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
index fc13146fa741d5..b57490c61beaf2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Nous souhaitons modifier temporairement la destination de recherche, et rétabli
| | |
| --- | --- |
| Numéro de commande | 1155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
index 671c4cb8a25df1..4b573db0babc78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Par défaut, si aucune limite n’a été définie, la commande retourne 0.
| | |
| --- | --- |
| Numéro de commande | 1156 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
index e22ea4e4de42cc..074b6cecd1ddbb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
@@ -50,7 +50,7 @@ Si l’opération se déroule correctement, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 650 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
index 1eb252f089cd78..0ab45eb5b38b75 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
@@ -48,6 +48,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 686 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
index fd1a04cfc6ede7..075aeed430f8d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Si la ressource n'existe pas, **Get resource name** retourne une chaîne vide.
| | |
| --- | --- |
| Numéro de commande | 513 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
index e5a97653305ba5..e7ecd086f28376 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ La variable OK prend la valeur 0 si la ressource n'existe pas, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 515 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
index 88e55928361598..b64376139ac639 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ S'il n'y a pas assez de mémoire disponible pour charger l'image, une erreur est
| | |
| --- | --- |
| Numéro de commande | 508 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
index b24352bd7357ec..9a8e4987359c3d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ Si aucune ligne de menu n’a été sélectionnée, la commande retourne une cha
| | |
| --- | --- |
| Numéro de commande | 1005 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
index 3fba0cffb27edb..8daa5b61ca3786 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Cette méthode projet permet d'adresser le même port série (sans protocole), q
| | |
| --- | --- |
| Numéro de commande | 909 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
index 40fd34b4e9adc1..0ef5810e087fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 506 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
index 0ee0bc5636ac65..ff0a69a35dc08f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Vous souhaitez connaître la configuration actuelle de la feuille de style "Auto
| | |
| --- | --- |
| Numéro de commande | 1256 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
index 8351679d4cbc8b..b46eb23ba980ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Ce code fonctionnera indifféremment avec un lien spécial ou standard.
| | |
| --- | --- |
| Numéro de commande | 1137 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
index 59f95c473c5e43..8d851254a7fa82 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ Passez dans le paramètre *format* le type de paramètre dont vous souhaitez con
| | |
| --- | --- |
| Numéro de commande | 994 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
index 8f703f569bc458..8eded099e70b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Après l’exécution de la commande :
| | |
| --- | --- |
| Numéro de commande | 687 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
index cab426824cf6f9..208209f47acd1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
@@ -32,6 +32,6 @@ Dans les deux cas, la commande ne retourne pas les tables déclarées invisibles
| | |
| --- | --- |
| Numéro de commande | 803 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
index 8c3a0d6ac37bca..512788666ef0ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Si le texte est correctement extrait, la variable système OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 524 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
index 7e4640a4bcdb39..1f84414fc07f40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Pour compter les mots d’un texte :
| | |
| --- | --- |
| Numéro de commande | 1141 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
index 043642f5694fd8..0cf1d63f022212 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
@@ -48,7 +48,7 @@ OK prend la valeur 1 si la ressource est trouvée, sinon elle prend la valeur 0
| | |
| --- | --- |
| Numéro de commande | 504 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
index 2d685e95ba29f1..e913b832c3fc7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 609 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
index 8b589a059f011c..d9a04cbab46d64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler la commande **GET USER
| | |
| --- | --- |
| Numéro de commande | 611 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
index 270e80490c7a68..e9562bbd984d62 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 443 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
index 5feeef383b47c7..c2a4d377b5e0aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Reportez-vous à l'exemple de la commande [SET WINDOW TITLE](set-window-title.md
| | |
| --- | --- |
| Numéro de commande | 450 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
index 8662d1f45094e7..3abd5b6d98122c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Reportez-vous à l'exemple de la commande [REJECT](reject.md).
| | |
| --- | --- |
| Numéro de commande | 206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
index 0f2f789fbf1a50..885a8601942e74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ Référez-vous à l'exemple de la commande [Record number](record-number.md).
| | |
| --- | --- |
| Numéro de commande | 242 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
index 8d57774d14eadf..987811291928f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ La méthode objet de la zone de défilement *taNoms* suivante sélectionne le bo
| | |
| --- | --- |
| Numéro de commande | 245 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
index 4d6b36cb77b21b..47a14f6e60d6f6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ L'exemple ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 161 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
index 6233ed8dfdc1f9..82b6a24296dcb0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
@@ -47,6 +47,6 @@ Reportez-vous à l'exemple de la commande GRAPHE.
| | |
| --- | --- |
| Numéro de commande | 298 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
index fcf52a5edf9ce6..420da2af343b7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
@@ -282,6 +282,6 @@ Dans cet exemple, on personnalise divers paramètres :
| | |
| --- | --- |
| Numéro de commande | 169 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
index e3802e23d90990..172af73f1b741d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ La méthode suivante passe un enregistrement en plein écran (sous Mac OS) jusqu
| | |
| --- | --- |
| Numéro de commande | 432 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
index 8753399d99532a..edcd7c062ab8ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
@@ -43,6 +43,6 @@ L'exemple suivant cachera toutes les fenêtres appartenant au process courant :
| | |
| --- | --- |
| Numéro de commande | 324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
index 4e9317bcd6f089..5a56a2f1dde77a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Pour cela, dans l'événement On Resize du formulaire de la fenêtre standard, i
| | |
| --- | --- |
| Numéro de commande | 434 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
index 93fd3f98df1e60..0e07d7e4494305 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Cet exemple est la méthode d'un bouton placé dans un formulaire entrée. Ce bo
| | |
| --- | --- |
| Numéro de commande | 436 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
index aaaca6ed6ff38e..68b17ce4c935af 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Lorsque l’utilisateur clique sur le bouton, la boîte de dialogue standard de
| | |
| --- | --- |
| Numéro de commande | 656 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
index edb52e8066c201..dbe44af4a177f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
@@ -68,6 +68,6 @@ Reportez-vous à l'exemple de la commande [FILTER KEYSTROKE](filter-keystroke.md
| | |
| --- | --- |
| Numéro de commande | 210 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
index 1b07a1a8627772..6ec1d2ebd3f780 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
@@ -62,6 +62,6 @@ Exemples de requêtes avec authentification :
| | |
| --- | --- |
| Numéro de commande | 1161 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
index 6027a2c1f056a2..fd0b12c29bea04 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
@@ -46,6 +46,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1307 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
index 1c579ec9fa2ac9..1d5e93eaf0363d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ Passez dans le paramètre *valeur* une variable qui recevra la valeur courante d
| | |
| --- | --- |
| Numéro de commande | 1159 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
index 1868e05d81aa77..aa6a2317c2d6ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
@@ -110,7 +110,7 @@ Récupération d’une vidéo :
| | |
| --- | --- |
| Numéro de commande | 1157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
index c73b3807ca1d3a..f734dc6db3634e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
@@ -131,6 +131,6 @@ Demande d’ajout d’enregistrement en JSON dans une base distante :
| | |
| --- | --- |
| Numéro de commande | 1158 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
index 1215163309613a..5d757a727a5276 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Vous souhaitez changer temporairement de dossier de certificats :
| | |
| --- | --- |
| Numéro de commande | 1306 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
index 001f2e74f5e91a..791df4ea733847 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
@@ -50,6 +50,6 @@ L’ordre d’appel des options n’a pas d’importance. Si une même option es
| | |
| --- | --- |
| Numéro de commande | 1160 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
index a759a24719a009..7729fe09fb0c85 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
@@ -58,6 +58,6 @@ La méthode METHODE EVENEMENT :
| | |
| --- | --- |
| Numéro de commande | 311 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
index 89663ebf9b3e82..e6be653524af6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
@@ -51,7 +51,7 @@ Si l'utilisateur clique sur **Annuler** dans une des boîtes de dialogue (de sé
| | |
| --- | --- |
| Numéro de commande | 665 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
index 48da56ba220984..196b727036a577 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 86 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
index 464601871443fe..34ecde115694d4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Vous souhaitez importer une définiton de structure stockée sur disque dans la
| | |
| --- | --- |
| Numéro de commande | 1310 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
index 14abed30fcdd19..a3ad1337aecb92 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 87 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
index e593c5531c4353..f6a7406bad0577 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK prend la valeur 1 si l'import s'est correctement déroulé, sinon elle prend
| | |
| --- | --- |
| Numéro de commande | 168 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
index 6f3ee1b05bb928..f6031aea000f9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In break** soit généré, assurez
| | |
| --- | --- |
| Numéro de commande | 113 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
index dfad4fde421994..f1870b203068f7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **In footer** soit généré, vérifiez
| | |
| --- | --- |
| Numéro de commande | 191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
index c15d27738d47f7..d8c271d69cb61d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Si vous souhaitez que le cycle d'exécution **In header** soit généré, assure
| | |
| --- | --- |
| Numéro de commande | 112 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
index 1f8f1f47e22ff2..ad4217d23eb2a9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Si vous effectuez l'opération depuis un trigger ou une sous-routine pouvant êt
| | |
| --- | --- |
| Numéro de commande | 397 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
index 5c77735ae9b1c1..07d1287fc84fbd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ L'exemple suivant ajoute un élément à un tableau :
| | |
| --- | --- |
| Numéro de commande | 227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
index 4d8465c791acc7..3319b17ca27bcf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Vous passez dans le paramètre *décalage* la position (relative à l'origine du
| | |
| --- | --- |
| Numéro de commande | 559 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
index 28794e6a04ad0f..957b01ff64a89e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ L'exemple suivant insère un élément (associé à aucune sous-liste) juste dev
| | |
| --- | --- |
| Numéro de commande | 625 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
index e6ca020a94eed8..cab7e1c2598dbf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ L’exemple suivant crée un menu constitué de deux commandes auxquelles il aff
| | |
| --- | --- |
| Numéro de commande | 412 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
index f44f47e0080b0f..987d219e21707a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ L'exemple suivant illustre l'utilisation de **Insert string**. Les résultats so
| | |
| --- | --- |
| Numéro de commande | 231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
index 7ad86579f11969..d316e876055148 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
@@ -36,6 +36,6 @@ L'exemple suivant illustre le fonctionnement de **Int** pour les nombres positif
| | |
| --- | --- |
| Numéro de commande | 8 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
index 2c4032fbf72f9b..8f3e639d0744f1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
index 932538ab482504..13c58818ad083c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
@@ -105,7 +105,7 @@ Si l'intégration s'effectue correctement, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 1312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
index d03df6e04c1a43..7df13a1bd0c3b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ L'exemple suivant recherche les clients en contact avec deux représentants, Jea
| | |
| --- | --- |
| Numéro de commande | 121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
index 6b50873e725b83..471817fa77b1a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Vous souhaitez exécuter l'action standard **Aller a page** (page 3) dans le for
| | |
| --- | --- |
| Numéro de commande | 1439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
index 1962697ce814cf..4ec392973429d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
@@ -35,6 +35,6 @@ Reportez-vous aux exemples de la commande *\_o\_DRAG AND DROP PROPERTIES*.
| | |
| --- | --- |
| Numéro de commande | 621 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
index 0f35fdd13c76cd..111b8de1a3ae77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
index 019958a188ce2f..57bf37ae76896d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ Dans une de vos méthodes, vous avez placé du code pour déboguer la base lorsq
| | |
| --- | --- |
| Numéro de commande | 492 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
index 71e31515d91bac..d834beb1387d9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Cette méthode empêchera l’ouverture de la base si le fichier de données est
| | |
| --- | --- |
| Numéro de commande | 716 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
index 9c20991fa65a96..ca49ebf932372f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Pour permettre à l'utilisateur de sélectionner une ligne commençant par la le
| | |
| --- | --- |
| Numéro de commande | 1744 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
index 14c8662b81e6d4..7d0cfe25cbffcc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Cette commande permet de détecter d’éventuelles suppressions de champs, ce q
| | |
| --- | --- |
| Numéro de commande | 1000 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
index d762353ea5a6d9..2779acd7fafd74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ La valeur retournée par cette commande n'a de sens que si l'option "*Traduire l
| | |
| --- | --- |
| Numéro de commande | 964 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
index 8407c63d47a661..699d1080c3587a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Cet exemple permet de prendre en compte tous les types d’impressions :
| | |
| --- | --- |
| Numéro de commande | 1198 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
index eb8007687bd37b..0591596604c673 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
@@ -40,6 +40,6 @@ L'exemple suivant est la méthode objet d'un bouton testant si l'enregistrement
| | |
| --- | --- |
| Numéro de commande | 273 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
index 83840d8852c758..7de16f18bbbfa8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
@@ -52,6 +52,6 @@ Dans ce cas, la commande retourne Vrai si le plug-in correspondant dispose d’u
| | |
| --- | --- |
| Numéro de commande | 714 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
index ae4566dabbb8c6..eed83a0c77bea9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Vous voulez déterminer si le système d'exploitation courant est macOS :
| | |
| --- | --- |
| Numéro de commande | 1572 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
index e38a3a6ec9a211..30eb27ce50d5d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
@@ -44,6 +44,6 @@ Les deux instructions suivantes sont identiques, la seconde est conseillée pour
| | |
| --- | --- |
| Numéro de commande | 668 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
index 6506a7f51795a8..30166895d18bdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Si vous souhaitez connaître le nom de la variable pointée ou le numéro du cha
| | |
| --- | --- |
| Numéro de commande | 315 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
index a2fef6f4142b3e..656ddb242f2b1b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Si vous ne passez pas le paramètre *\**, la commande teste le fichier en recher
| | |
| --- | --- |
| Numéro de commande | 1113 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
index fca9f29fe61b00..69e7d75899b1da 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
@@ -47,6 +47,6 @@ Au lieu d’utiliser les actions automatiques “Enregistrement suivant” ou
| | |
| --- | --- |
| Numéro de commande | 669 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
index c9ac9b1fcaecf9..ff300f8b69d073 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Cette commande permet de détecter d’éventuelles suppressions de tables, ce q
| | |
| --- | --- |
| Numéro de commande | 999 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
index 8973a9ef6ecdf6..8adb5a58e0c465 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Is user deleted** ou
| | |
| --- | --- |
| Numéro de commande | 616 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
index 4858bd6f76e541..52e53a93d7defc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ Le code suivant peut être utilisé pour gérer le suivi de la souris dans un ob
| | |
| --- | --- |
| Numéro de commande | 1422 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
index 867f042a6cde23..562765db1fd77a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Vous souhaitez passer entre l'état maximisé et l'état précédent :
| | |
| --- | --- |
| Numéro de commande | 1830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
index 8102088f688e27..82d920847b6bf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
index 451a216b852f64..9830e741adf6ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Vous voulez savoir si le système d'exploitation courant est Windows :
| | |
| --- | --- |
| Numéro de commande | 1573 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
index c1a51982b67c0b..860213ca50792f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ Dans cet exemple, les données des champs des enregistrements d’une table sont
| | |
| --- | --- |
| Numéro de commande | 1219 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
index 17607574080d82..54d774c91de053 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Numéro de commande | 1218 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
index 4763694a224fef..d13302dce9325d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
@@ -237,6 +237,6 @@ Si vous exécutez :
| | |
| --- | --- |
| Numéro de commande | 1478 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
index 276c0750bca293..ebf53f8f0838c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversion d’une sélection 4D dans un tableau objet :
| | |
| --- | --- |
| Numéro de commande | 1228 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
index e3b46e174991ef..908970707e5aa6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Numéro de commande | 1217 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
index 49c21725246b29..b25650eddeb1ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Utilisation de la commande **JSON TO SELECTION** pour ajouter des enregistrement
| | |
| --- | --- |
| Numéro de commande | 1235 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
index cc53aca078fa69..921bfb51ddfcb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Vous souhaitez valider un objet JSON avec un schéma et obtenir la liste des err
| | |
| --- | --- |
| Numéro de commande | 1456 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
index 48ba1fee0e3b8a..a9d728afbc9bda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
@@ -170,6 +170,6 @@ A l'aide des possibilités de communication interprocess de 4D, vous pouvez cons
| | |
| --- | --- |
| Numéro de commande | 390 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
index d62c70f3f6e033..c1898d72dff805 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ Dans la méthode du process worker (*leWorker*), vous ajoutez du code pour gére
| | |
| --- | --- |
| Numéro de commande | 1390 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
index 183ad02fdc40cb..ae0d63ad9649c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ La méthode projet suivante crée le tableau *taChamps* avec les noms des champs
| | |
| --- | --- |
| Numéro de commande | 255 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
index 95fa73a2e074c7..d034787c4a606d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ La description du chemin de la dernière recherche peut être comparée à la de
| | |
| --- | --- |
| Numéro de commande | 1045 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
index 153169db7ce973..5f658afe14b3c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
@@ -38,6 +38,6 @@ La description du plan de la dernière recherche peut être comparée à la desc
| | |
| --- | --- |
| Numéro de commande | 1046 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
index e4d5ef62dc8933..29fc97ae1737e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ L'exemple suivant désigne le dernier enregistrement de la table \[Contacts\] co
| | |
| --- | --- |
| Numéro de commande | 200 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
index e8dad352aebf31..5b6ce73bfe1cac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
@@ -46,6 +46,6 @@ L’exemple suivant initialise les éléments du tableau tabTables. Ce tableau p
| | |
| --- | --- |
| Numéro de commande | 254 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
index 2701cd457b96a5..6f968b18e612a2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Cette commande est destinée à être utilisée dans un processus de mise à jou
| | |
| --- | --- |
| Numéro de commande | 1301 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
index eaa1a041100e6a..1e64372f0f5de9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
@@ -154,7 +154,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 811 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
index 5b2c89e18f0b10..26580b0c6f18e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
@@ -101,6 +101,6 @@ Cet exemple tente de se connecter à une application :
| | |
| --- | --- |
| Numéro de commande | 1326 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
index 9895f765cf4a17..f37fe3b05fe217 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1327 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
index 4254cba4f46e5a..bf604dbdf8fd23 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Ces exemples illustrent plus particulièrement l'utilisation du paramètre *attr
| | |
| --- | --- |
| Numéro de commande | 1329 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
index 7d91cacccaf9a8..d83b841ba15a77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Vous voulez obtenir un tableau de toutes les entrées trouvées pour l'attribut
| | |
| --- | --- |
| Numéro de commande | 1328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
index 3d2cf99a15b183..0fec210630afd8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
@@ -35,6 +35,6 @@ L'exemple suivant illustre l'utilisation de **Length**. Les valeurs retournées
| | |
| --- | --- |
| Numéro de commande | 16 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
index e22dbb0b9d8df3..84bf068892708e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
@@ -72,6 +72,6 @@ Cet exemple est une maquette de méthode formulaire. Il traite chaque événemen
| | |
| --- | --- |
| Numéro de commande | 101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
index 8c46f2cc56dc7d..29eb1cc760f726 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
@@ -84,6 +84,6 @@ Ce tableau détaille le contenu de l'objet session des sessions REST :
| | |
| --- | --- |
| Numéro de commande | 1782 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
index f6dfec80699f59..08078d31371123 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
@@ -75,6 +75,6 @@ Voici les numéros de référence des éléments de cette liste :
| | |
| --- | --- |
| Numéro de commande | 633 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
index cd6fbdb6dea9b5..6a96fcf80eb385 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Si l'élément n'existe pas, **List item position** retourne *0*.
| | |
| --- | --- |
| Numéro de commande | 629 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
index 76a9258b5793dd..ad5bef8ba5d4d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Les numéros des énumérations correspondent à leur ordre de création. Dans l
| | |
| --- | --- |
| Numéro de commande | 957 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
index 4fc69dc0f02ce4..8663343eae30a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Si vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1255 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
index aa191062e88767..99fdc0561b673b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Si vous exécutez l’instruction :
| | |
| --- | --- |
| Numéro de commande | 288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
index 829fc89cfdd868..e7fb0501b3fbc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Reportez-vous à l'exemple de la fonction [BLOB to list](blob-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 556 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
index a7ac698779dffe..b049c450931fb7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Cet exemple contracte le premier niveau de lignes de rupture de la sélection de
| | |
| --- | --- |
| Numéro de commande | 1101 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
index 04809fb056b679..b90807ac42b546 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Si le paramètre *positionCol* est supérieur au nombre de colonnes de la list b
| | |
| --- | --- |
| Numéro de commande | 830 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
index 0c1727aaef6c72..32011d93f178c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 914 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
index fffc445355c5a7..bf07f6150416e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
@@ -98,6 +98,6 @@ Vous souhaitez dupliquer dynamiquement une colonne booléenne et modifier son ti
| | |
| --- | --- |
| Numéro de commande | 1273 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
index e8444babd31e1c..11150803f8f250 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
@@ -85,6 +85,6 @@ Cet exemple illustre différents modes d’utilisation de la commande. Soient le
| | |
| --- | --- |
| Numéro de commande | 1100 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
index 17a39f11de3931..06f22943b2f110 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Exemples type d’utilisation :
| | |
| --- | --- |
| Numéro de commande | 1278 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
index df3454aa1bb0d6..f92b448403eaf3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Pour une list box de type sélection, collection ou entity selection, *tabStyles
| | |
| --- | --- |
| Numéro de commande | 832 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
index 4265422979591d..823452f1a26dee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ Vous voulez connaître le nombre de lignes maximum pouvant être affichées dans
| | |
| --- | --- |
| Numéro de commande | 1502 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
index b03717f989ea61..dedefc4454d661 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
@@ -59,6 +59,6 @@ Vous souhaitez afficher un rectangle rouge autour de la cellule sélectionnée d
| | |
| --- | --- |
| Numéro de commande | 1330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
index c14ab2f077ee9a..b5819670fa11c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
@@ -61,6 +61,6 @@ Si la sélection est modifiée via les touches fléchées du clavier, *colonne*
| | |
| --- | --- |
| Numéro de commande | 971 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
index e970834fdc80de..b5b412c8564326 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1202 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
index d6a076f5fa883f..30a48907f0f1df 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
@@ -34,6 +34,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 834 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
index fe52e83a07af8c..a40fa41e9a72cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
@@ -37,6 +37,6 @@ Vous pouvez comparer la valeur retournée aux constantes du thème *List box pie
| | |
| --- | --- |
| Numéro de commande | 1150 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
index ab1693603c3ae3..0e65efc9baea0a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1146 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
index d70bfe615a265b..ed709ded480232 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ La commande retourne dans les paramètres *couleurH* et *couleurV* des valeurs d
| | |
| --- | --- |
| Numéro de commande | 1200 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
index 5b1f7873241717..10254de36feba8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ La commande retourne dans les paramètres *horizontal* et *vertical* la valeur *
| | |
| --- | --- |
| Numéro de commande | 1199 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
index 94a366ce37aed6..0db0f0a447a911 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 1144 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
index 1908bf7e8c995d..8fcb032bfdb873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Si la list box est en mode hiérarchique, la commande remplit le tableau *hiéra
| | |
| --- | --- |
| Numéro de commande | 1099 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
index 3866ec8ae587ac..8640d39cc59188 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
@@ -36,6 +36,6 @@ En revanche, la commande ne tient pas compte du statut visible/invisible des col
| | |
| --- | --- |
| Numéro de commande | 1152 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
index 11c4deb2a6c933..99e0b186f39c1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 831 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
index a69d807ea146fa..ba6e1afab24a45 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 915 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
index eaf1a211e28fc6..966730df567a64 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1302 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
index 13cff053c8975d..972984bea1a7a3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impression d’au moins 500 lignes de la list box, sachant que certaines lignes
| | |
| --- | --- |
| Numéro de commande | 1110 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
index f0609fc3e2db32..423c41c4f82211 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
@@ -62,6 +62,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1271 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
index 3826aad228ed01..2d8d3fab664eb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Considérons la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1658 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
index fe6019112a1c91..0431d9b0236476 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Soit la list box suivante :
| | |
| --- | --- |
| Numéro de commande | 1269 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
index c69509e75989d3..3014028063c4f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ La hauteur de ligne retournée est exprimée:
| | |
| --- | --- |
| Numéro de commande | 1408 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
index 28115376fa7c7c..a2b6806211bd58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur de ligne retourn
| | |
| --- | --- |
| Numéro de commande | 836 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
index 1d426be5abd890..8d6f7ba35294b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
@@ -36,6 +36,6 @@ Si une colonne a été insérée ou supprimée par programmation à l’intérie
| | |
| --- | --- |
| Numéro de commande | 1154 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
index f39d858a1d96cf..7fa700f235b3ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
@@ -37,6 +37,6 @@ Si la list box est associée à des tableaux, *numTable* retourne -1 et *nom*, s
| | |
| --- | --- |
| Numéro de commande | 1014 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
index c50a3a5e9707cd..8cc52380800f8e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
@@ -122,6 +122,6 @@ La colonne est ajoutée à la list box :
| | |
| --- | --- |
| Numéro de commande | 970 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
index 609a139f307b5c..6bb9d5e3c2bb47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
@@ -102,6 +102,6 @@ Vous souhaitez insérer dynamiquement une colonne dans une list box de type tabl
| | |
| --- | --- |
| Numéro de commande | 829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
index 3ddc3599ef397b..9f51ed003d35ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Si le paramètre *positionLigne* est supérieur au nombre de lignes des tableaux
| | |
| --- | --- |
| Numéro de commande | 913 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
index bb9ba2ea13d9f9..e37506331935d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Vous souhaitez intervertir les 2e et 3e colonnes de la list box :
| | |
| --- | --- |
| Numéro de commande | 1274 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
index f54fd5b65166ed..503da08952ca0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 844 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
index ba2a170568be6c..5b9f94d07abbcb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Cette commande doit être utilisée en combinaison avec l’événement formulai
| | |
| --- | --- |
| Numéro de commande | 837 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
index b87028e4e3ab7c..0371b52af3e0c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Voici le résultat :
| | |
| --- | --- |
| Numéro de commande | 1117 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
index df10eebcbdc281..3ec1445cc90a65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
@@ -58,6 +58,6 @@ A l’issue de l’exécution de la méthode, les tableaux sont synchronisés :
| | |
| --- | --- |
| Numéro de commande | 912 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
index 473b8fa7e4604d..8be45ad0478234 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
@@ -90,6 +90,6 @@ Exemple avec une collection d'objets :
| | |
| --- | --- |
| Numéro de commande | 1715 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
index 3eccde3a5aba91..8fd3bc9114a38b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
@@ -72,6 +72,6 @@ Vous voulez associer un tableau de hauteurs de ligne à une list box :
| | |
| --- | --- |
| Numéro de commande | 1279 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
index 4434f5058949ee..4b4a7292a9618d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Dans une list box où les hauteurs de lignes sont automatiques, vous voulez déf
| | |
| --- | --- |
| Numéro de commande | 1501 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
index 85f53c13f582f4..c38dcaab39617a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ Le paramètre *typeDonnées* permet de désigner le type des données issues de
| | |
| --- | --- |
| Numéro de commande | 1203 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
index e32bdd0a04d08a..ba4de528ab3a3f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
@@ -39,6 +39,6 @@ Les paramètres optionnels *largeurMini* et *largeurMaxi* permettent de fixer de
| | |
| --- | --- |
| Numéro de commande | 833 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
index 60c775fa87d69a..7a9ea34210b689 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
@@ -55,6 +55,6 @@ Si le type de données de la colonne ou d’au moins une colonne de la list box
| | |
| --- | --- |
| Numéro de commande | 1140 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
index 06e8ee561db2b1..7e071c1808ff52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
@@ -40,6 +40,6 @@ Passez dans le paramètre *hauteur* la hauteur à définir. Par défaut, si vous
| | |
| --- | --- |
| Numéro de commande | 1145 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
index ecf137dc4a2e90..26c85f9ed420f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Les paramètres *horizontal* et *vertical* vous permettent de spécifier les tra
| | |
| --- | --- |
| Numéro de commande | 842 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
index 26e2ba80358ddb..746898a5b92458 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Passez dans les paramètres *horizontal* et *vertical* des valeurs booléennes i
| | |
| --- | --- |
| Numéro de commande | 841 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
index 6c103cbdbf207d..5bf02a10e3e84e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
@@ -44,6 +44,6 @@ Les en-têtes doivent respecter une hauteur minimale, définie par le système d
| | |
| --- | --- |
| Numéro de commande | 1143 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
index a12e2eb3db054f..5cc88f48404eac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Définition des tableaux tPays, tRegion et tVille comme hiérarchie d’une list
| | |
| --- | --- |
| Numéro de commande | 1098 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
index 53464dd656d43c..3e76b10d438cb1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Si vous passez 0 ou une valeur négative dans *nbColonnes*, le verrouillage des
| | |
| --- | --- |
| Numéro de commande | 1151 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
index 9f5ec044c17234..28f39c8d0d0809 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ Dans une list box tableau, on souhaite définir des paramétrages de couleur pou
| | |
| --- | --- |
| Numéro de commande | 1270 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
index a1ae07cfb5cc34..ab28fefae340c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
@@ -83,6 +83,6 @@ Après la deuxième instruction, toutes les cellules de la troisième ligne pass
| | |
| --- | --- |
| Numéro de commande | 1268 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
index 3790659aa7165b..493f411737291b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
@@ -88,6 +88,6 @@ En revanche, si le code suivant est exécuté :
| | |
| --- | --- |
| Numéro de commande | 1409 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
index c599ef294c7f9b..ef3c6ec759e655 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Par défaut, si vous omettez le paramètre *unité*, la hauteur est exprimée en
| | |
| --- | --- |
| Numéro de commande | 835 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
index df63a096a58bbb..c3287d5bf902e5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ Les colonnes statiques (ou colonnes fixes) ne peuvent pas être déplacées dans
| | |
| --- | --- |
| Numéro de commande | 1153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
index 103e163ca1a057..9562c368bc4374 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
@@ -42,6 +42,6 @@ Si la list box contenait déjà des colonnes, leur contenu est mis à jour à l
| | |
| --- | --- |
| Numéro de commande | 1013 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
index b0225ba0586595..90438881e12aa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
@@ -38,6 +38,6 @@ Conformément au principe de fonctionnement des list box, les colonnes sont sync
| | |
| --- | --- |
| Numéro de commande | 916 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
index 75ea701ae1d4ce..d5e3eab27df1d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Vous obtenez le résultat suivant (objet stringifié) :
| | |
| --- | --- |
| Numéro de commande | 1528 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
index 462ccc841917de..012f0f6626fce7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Imaginons que vous créez une base pour le marché international. Vous voulez po
| | |
| --- | --- |
| Numéro de commande | 383 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
index 6207ade31e8aa2..67d217b33e5921 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ En environnements multi-utilisateurs et multi-process, lorsque vous devez modifi
| | |
| --- | --- |
| Numéro de commande | 52 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
index d4c95c0328904a..cf05be39256787 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
@@ -49,7 +49,7 @@ Si l'utilisateur clique sur Annuler dans la boîte de dialogue d'ouverture de fi
| | |
| --- | --- |
| Numéro de commande | 185 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
index 997545351322d1..67ef0211ec68ef 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ La variable système OK prend la valeur 1 si les variables ont été correctemen
| | |
| --- | --- |
| Numéro de commande | 74 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
index 45cb0946c9dbe4..93394b7f0f5274 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
@@ -72,6 +72,6 @@ Si la langue courante est, par exemple, le français canadien (fr-ca), la comman
| | |
| --- | --- |
| Numéro de commande | 1105 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
index f12783fa9f1265..a6a853c6c31d37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Si la commande a été exécutée correctement, la variable OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 991 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
index c37dd5f7fc1c5d..b0c7317b650cab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ Si l'enregistrement a été verrouillé par une *requête REST $lock*:
| | |
| --- | --- |
| Numéro de commande | 353 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
index afd0a2452275c4..e32ecf26cf7134 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
@@ -94,6 +94,6 @@ Si le code est exécuté sur 4D Server et que le verrouillage est causé par un
| | |
| --- | --- |
| Numéro de commande | 1316 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
index 65e18d4c53e712..bb54ee0c9a8f5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Au cours d'une transaction, [LOAD RECORD](load-record.md) et **Locked** sont sou
| | |
| --- | --- |
| Numéro de commande | 147 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
index 7f9bec9d207125..97c9c41e10ea3e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
@@ -69,6 +69,6 @@ A chaque ouverture de la base, cette information sera inscrite dans l’Observat
| | |
| --- | --- |
| Numéro de commande | 667 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
index eb93adbdf0a992..b9706fea8ad487 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
@@ -101,7 +101,7 @@ La commande **LOG FILE TO JSON** modifie la valeur des variables système OK et
| | |
| --- | --- |
| Numéro de commande | 1352 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
index 0d5a85cfe5eae1..9b2ddf234362ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Si la base fonctionne avec un fichier d’historique, la variable système OK pr
| | |
| --- | --- |
| Numéro de commande | 928 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
index 522c47017141f1..6f1ab436a95fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
@@ -37,6 +37,6 @@ L'exemple suivant affiche 1 :
| | |
| --- | --- |
| Numéro de commande | 22 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
index 3f602bf4e3e191..fca47c5fd46562 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Vous voulez récupérer les numéros des enregistrements de la sélection couran
| | |
| --- | --- |
| Numéro de commande | 647 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
index 701267ffd5bd20..788aa85eebc610 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 550 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
index 54baf844ad520b..d2f3ee32bc5311 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ Cet exemple compare les résultats obtenus suivant que le paramètre *\** a ét
| | |
| --- | --- |
| Numéro de commande | 14 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
index 9e9743d7020943..4af7cb945056dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 546 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
index 79632f5d2ea8f1..c9945c214906b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 544 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
index 7b6df32341d1cf..5214d6f76d3edf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 545 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
index 828f240fcdb82a..0e3cef056dc32f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
@@ -114,7 +114,7 @@ En cas d’erreur, la commande génère une erreur que vous pouvez intercepter v
| | |
| --- | --- |
| Numéro de commande | 1019 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
index 902beeb3572e7b..24d7f939291f28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
@@ -77,7 +77,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 3 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
index 8f65b61616b4ee..eeb449fafc8df0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
@@ -86,6 +86,6 @@ Dans le contexte suivant, si l'utilisateur clique sur le bouton :
| | |
| --- | --- |
| Numéro de commande | 453 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
index 3c03ebf9ebe93b..f706e01a0c4205 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ A l’issue de l’exécution de la commande, les statistiques demandées sont f
| | |
| --- | --- |
| Numéro de commande | 1118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
index f91b987f62a62a..0bf91ac9790520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ La commande retourne 0 :
| | |
| --- | --- |
| Numéro de commande | 440 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
index 9dd3a19f0bdce5..20a081382184c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 441 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
index 90b078aaef14ba..30e8e128c68cf9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ La méthode formulaire suivante utilise la fonction **Menu selected** pour fourn
| | |
| --- | --- |
| Numéro de commande | 152 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
index f71753173a5486..0366c35f7ddba7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
@@ -120,6 +120,6 @@ Voici le résultat (sous Windows) :
| | |
| --- | --- |
| Numéro de commande | 88 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
index ad9b3401384eb6..7cf31e428b9143 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
@@ -68,6 +68,6 @@ L'exemple suivant supprime les thermomètres de progression avant d'effectuer un
| | |
| --- | --- |
| Numéro de commande | 175 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
index c5a692fc128445..63f79df5ffaa14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 181 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
index 969c4d086ed0df..57b75e8ea5607a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Cette commande est particulièrement utile dans le cadre des composants, car ell
| | |
| --- | --- |
| Numéro de commande | 704 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
index 10be1759ab6b6d..924cf2ad3b83c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Si aucune méthode d’appel sur événement n’a été installée, une chaîne
| | |
| --- | --- |
| Numéro de commande | 705 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
index bdb1bd8e23461b..9e81b287a9ebb3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ La commande retourne **Vrai** si un attribut est sélectionné et **Faux** s’i
| | |
| --- | --- |
| Numéro de commande | 1169 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
index 1089d203a46a6e..f19ba9c01c662e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
@@ -66,6 +66,6 @@ A l'issue de l'exécution, $att contient, par exemple :
| | |
| --- | --- |
| Numéro de commande | 1334 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
index 0011a72e23711d..a6b4c9be795349 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
@@ -124,6 +124,6 @@ Le document résultant contient alors :
| | |
| --- | --- |
| Numéro de commande | 1190 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
index 0bc1314a0d5a4e..81e5742566fe2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
@@ -59,6 +59,6 @@ Si la commande est exécutée depuis un composant, elle s’applique par défaut
| | |
| --- | --- |
| Numéro de commande | 1189 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
index 4685d3114acf80..a261bf10055810 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
@@ -36,6 +36,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1206 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
index 5e1caaa319ebb0..559db8777ca3cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Vous souhaitez obtenir les dates de modification des méthodes d'un module, pré
| | |
| --- | --- |
| Numéro de commande | 1170 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
index 7854759562d94a..3d32466cfaf233 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Exemples d’utilisations types :
| | |
| --- | --- |
| Numéro de commande | 1166 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
index e6f59262707ec0..b68c3194270af6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Si la commande est exécutée depuis un composant, elle retourne par défaut les
| | |
| --- | --- |
| Numéro de commande | 1164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
index c11ca8528f70e1..3ac3d6be06c35d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
@@ -74,6 +74,6 @@ Liste de tous les objets des formulaires "input" de la table \[Emp\] à partir d
| | |
| --- | --- |
| Numéro de commande | 1168 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
index 7edaee0f55ffd0..e563a238ac3eab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Reportez-vous à l'exemple de la commande [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Numéro de commande | 1163 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
index ce39b8088a62b0..9e77cc8ee39c7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Vous pouvez exécuter cette commande depuis un composant, mais dans ce cas vous
| | |
| --- | --- |
| Numéro de commande | 1213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
index 0f58430c2209da..0c72896b9c3ddf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ Résolution d’un chemin d’objet de méthode formulaire table :
| | |
| --- | --- |
| Numéro de commande | 1165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
index bd088c7dbc74b8..2d3125acda2f06 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ Passez dans *mode* une des constantes suivantes du thème *Accès objets dévelo
| | |
| --- | --- |
| Numéro de commande | 1191 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
index e11f06339e3104..2794ab8b01e13a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Définition de plusieurs paires attribut/valeur :
| | |
| --- | --- |
| Numéro de commande | 1192 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
index 036276eb1d91a3..6213efd36348f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
@@ -68,6 +68,6 @@ Vous souhaiter modifier un seul attribut :
| | |
| --- | --- |
| Numéro de commande | 1335 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
index 387c73a6b8363a..d54d9b3c5ed29a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
@@ -103,6 +103,6 @@ Cet exemple permet d’exporter et d’importer la totalité des méthodes proje
| | |
| --- | --- |
| Numéro de commande | 1194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
index 140f20e706fb91..8825b9c7a8bc6c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
@@ -67,6 +67,6 @@ Ajout d’une date de modification à une documentation de trigger existante :
| | |
| --- | --- |
| Numéro de commande | 1193 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
index d2967c54b170c2..ee9f70dfb882ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ Le code suivant attend jusqu'à 5 secondes qu'un enregistrement soit déverrouil
| | |
| --- | --- |
| Numéro de commande | 459 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
index b991511083ef55..64ce3c3b4c5ef3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
@@ -83,7 +83,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 4 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
index 3a85daeb9e12ff..3a0dad5d36d235 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
@@ -53,6 +53,6 @@ Mac OS
| | |
| --- | --- |
| Numéro de commande | 454 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
index 242bb34916ac18..3df04fe57de018 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Vous souhaitez réinitialiser toutes les sessions en cours pour toutes les appli
| | |
| --- | --- |
| Numéro de commande | 1596 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
index 90826141b44966..a96f802551ba54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
@@ -39,6 +39,6 @@ L'exemple suivant illustre le fonctionnement de **Mod** dans différents cas de
| | |
| --- | --- |
| Numéro de commande | 98 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
index 9ba3da7c6cffa8..b99f86166fcbab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ L'exemple suivant montre une utilisation typique de **Modified record** :
| | |
| --- | --- |
| Numéro de commande | 314 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
index c29301e5423621..38e7a874581ee5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
@@ -71,6 +71,6 @@ Vous sélectionnez un enregistrement de la table *\[uneTable\]*, puis vous appel
| | |
| --- | --- |
| Numéro de commande | 32 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
index 8701bea1374810..619ab843e29b18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 lorsque l'enregistrement est validé e
| | |
| --- | --- |
| Numéro de commande | 57 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
index 04ba86505554f3..f57fb4a2e34399 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
@@ -37,7 +37,7 @@ Les seules différences entre ces deux commandes sont les suivantes :
| | |
| --- | --- |
| Numéro de commande | 204 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
index d583b59f5e5e66..b0e3545af7cda7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md).**
| | |
| --- | --- |
| Numéro de commande | 1713 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
index 52883c72a0e452..c110afe8ea3b03 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 24 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
index c4687af10bee43..1db9d65812f0e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ Reportez-vous à l'exemple de la commande [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Numéro de commande | 468 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
index 72ec0b244fe9c3..9bb5fc29320a24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ L'exemple suivant déplace le document DocNom :
| | |
| --- | --- |
| Numéro de commande | 540 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
index befde686e8e4b9..de7a9df90c477d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
@@ -113,6 +113,6 @@ Si vous souhaitez que le tableau des noms soit utilisé comme troisième critèr
| | |
| --- | --- |
| Numéro de commande | 718 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
index bba76f3ebf0543..9c452280474c18 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Vous souhaitez sauvegarder une clé de chiffrement dans un fichier .4DKeyChain :
| | |
| --- | --- |
| Numéro de commande | 1611 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
index f4cffe8bfea72d..7198994a958af1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Reportez-vous à l'exemple de la commande [APPEND TO LIST](append-to-list.md).
| | |
| --- | --- |
| Numéro de commande | 375 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
index dab4be473e8c35..694b85a0fdb0b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ Avec cette commande, vous pouvez aisément gérer des objets en boucle :
| | |
| --- | --- |
| Numéro de commande | 1471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
index d43a34a3a7f85a..cb47730d9652d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
@@ -119,6 +119,6 @@ Dans l'éditeur de barres de menus, vous remplacez AJOUT CLIENTS par la méthode
| | |
| --- | --- |
| Numéro de commande | 317 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
index 99bfe1cf5ed8fa..e218b8481dd601 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Vous souhaitez créer et modifier un objet partagé. La structure *Utiliser...Fi
| | |
| --- | --- |
| Numéro de commande | 1526 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
index 4aae8b21cf880a..ad24b42173364a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Reportez-vous à l'exemple de la commande [DISPLAY RECORD](display-record.md).
| | |
| --- | --- |
| Numéro de commande | 51 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
index cd659cc164a355..3d6e4c907d55b6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 448 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
index cdb0832da2fe65..62894fbaa565f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
@@ -47,6 +47,6 @@ Dans une base contenant un formulaire projet nommé “LeForm” et un formulair
| | |
| --- | --- |
| Numéro de commande | 993 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
index 04b2c2bbef0db6..62079b94c8fc90 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
@@ -38,6 +38,6 @@ Dans l'exemple suivant, la valeur [True](true.md) est assignée à une variable.
| | |
| --- | --- |
| Numéro de commande | 34 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
index c910f66046dd45..0ceafbae19af0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
@@ -37,6 +37,6 @@ Le paramétrage courant peut être défini soit :
| | |
| --- | --- |
| Numéro de commande | 1052 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
index 1fe8c683cee21a..d1de72899b5dd4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
@@ -138,6 +138,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 1517 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
index e4acc435074e59..0b3fc90232563c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
@@ -45,6 +45,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1730 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
index 9df2d6c03c36ae..7730f434759a1f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ Nous souhaitons copier *$sharedObj* dans *$sharedColl.* Etant donné qu'ils appa
| | |
| --- | --- |
| Numéro de commande | 1225 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
index d6c07dafc9af59..aaec94c2524c40 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ L'utilisation d'un objet comme une hashmap (système clé/valeur) permet d'accé
| | |
| --- | --- |
| Numéro de commande | 1720 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
index cd33a2d41c89ee..761b0152a39860 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ On souhaite changer une valeur dans le premier élément du tableau :
| | |
| --- | --- |
| Numéro de commande | 1229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
index 638d4aa2918b81..66eb40bd2336ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ Utilisation d’un élément de tableau d’objets :
| | |
| --- | --- |
| Numéro de commande | 1232 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
index 58a513a3f2ddf4..a944a3f6ac9e25 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
@@ -57,6 +57,6 @@ On souhaite obtenir le type de valeurs standard :
| | |
| --- | --- |
| Numéro de commande | 1230 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
index 703e49229cdf22..d68a3cff0071e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
@@ -217,6 +217,6 @@ Vous voulez connaître la taille d'une image stockée dans un objet :
| | |
| --- | --- |
| Numéro de commande | 1224 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
index fe91fbf3f9531b..6d202fe6267287 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
@@ -51,6 +51,6 @@ Puis, dans une méthode, vous pouvez saisir :
| | |
| --- | --- |
| Numéro de commande | 1731 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
index 988e1e4a6fe425..acaede68a7879b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Ce test équivaut à :
| | |
| --- | --- |
| Numéro de commande | 1231 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
index 4ec730c916f725..f04b5e39a9b873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Voici les différents résultats de la commande ainsi que de la commande [OB Is
| | |
| --- | --- |
| Numéro de commande | 1297 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
index 80d15443db8caa..a674ea04f42157 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Cette commande retourne **Vrai** si vous passez une sélection d'entité partage
| | |
| --- | --- |
| Numéro de commande | 1759 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
index 010f705d45bc8d..2cdfaf3fab27e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec tous les noms de propriétés de premier nive
| | |
| --- | --- |
| Numéro de commande | 1719 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
index 7c11f045fe974c..9206c2777b2357 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Vous souhaitez supprimer la propriété "age" d’un objet :
| | |
| --- | --- |
| Numéro de commande | 1226 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
index 87a72632d786f7..51c36db86f6479 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
@@ -126,6 +126,6 @@ Utilisation d'un champ objet :
| | |
| --- | --- |
| Numéro de commande | 1227 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
index b4170c146c9061..d4075b56364cac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
@@ -44,6 +44,6 @@ On souhaite mettre la valeur null dans la propriété "âge" de Léa :
| | |
| --- | --- |
| Numéro de commande | 1233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
index cee377cce0b77b..8c4136f47801cf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ Vous souhaitez stocker une image dans un champ objet. Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 1220 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
index 47d3b667be20e1..14129df421b411 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Vous souhaitez une collection avec toutes les valeurs des propriétés d'un obje
| | |
| --- | --- |
| Numéro de commande | 1718 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
index a86a7c0a43930b..8b3d3c63c943cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
@@ -108,7 +108,7 @@ Création d’un nouveau bouton radio "bRadio6" basé sur le bouton radio exista
| | |
| --- | --- |
| Numéro de commande | 1111 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
index fcb0143b7d60dd..8e0578e141386f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Vous souhaitez associer l'action "Annuler" à tous les objets du formulaire qui
| | |
| --- | --- |
| Numéro de commande | 1457 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
index 3b5e376210f320..f9b3fa648373b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ La commande retourne **Vrai** si la correction automatique est activée pour l
| | |
| --- | --- |
| Numéro de commande | 1174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
index 10ab69b5daf29f..26c5aa65c113fa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
@@ -54,6 +54,6 @@ Reportez-vous à l’exemple de la routine [SET PRINT MARKER](set-print-marker.m
| | |
| --- | --- |
| Numéro de commande | 717 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
index a30a426366c346..7911891a4dc5b9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ La commande retourne une valeur correspondant au style de la bordure. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 1263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
index 23669de56e9cff..259a38e12e63c8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le menu contextuel est activé pour l’objet e
| | |
| --- | --- |
| Numéro de commande | 1252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
index 372b9332a1f5a2..e57bfb466625d5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ La méthode retourne les coordonnées théoriques. Si la list box est redimensio
| | |
| --- | --- |
| Numéro de commande | 663 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
index b80b4c45d349f7..43da43e08e396d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ Le code suivant peut être associé à la méthode d'un bouton :
| | |
| --- | --- |
| Numéro de commande | 1324 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
index 50cdf04f9740bb..7836999ce5f6ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
@@ -45,6 +45,6 @@ Vous exécutez le code suivant :
| | |
| --- | --- |
| Numéro de commande | 1265 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
index 2c8db68d3a4505..5db7301153fa93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Chaque paramètre retourne Vrai ou Faux suivant que l’option correspondante es
| | |
| --- | --- |
| Numéro de commande | 1184 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
index c4d0b458356f16..235ece7a223553 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1079 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
index 56316f93cb1d5d..17471f8b2a1490 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1067 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
index d15d095446d4f1..c93bad0d4fb3e0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Vous souhaitez activer deux événements et obtenir la liste des événements po
| | |
| --- | --- |
| Numéro de commande | 1238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
index 1dba0fb8f3eac1..1c563637f5fcf9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel \*, vous indiquez que le paramètre *obje
| | |
| --- | --- |
| Numéro de commande | 1073 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
index 774305b33cab6c..8d1f8edf9a9247 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ La commande retourne **Vrai** si le rectangle de focus est masqué et **Faux** s
| | |
| --- | --- |
| Numéro de commande | 1178 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
index b9af6fd13257b5..ac0abd88600edf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1070 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
index 8e366263a0d4f1..39def9a799cce7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Vous pouvez comparer la valeur retournée par la commande à la valeur d’une o
| | |
| --- | --- |
| Numéro de commande | 1071 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
index b99822d5197d01..67aafe3b0e941b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1069 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
index 5b2ae29c19280a..12b98bb7982a05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Les formats personnalisés sont retournés inchangés :
| | |
| --- | --- |
| Numéro de commande | 894 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
index 2c86f0641c30a6..d2c4dfdfe9383a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ Le libellé d’un bouton image est stocké sous forme de message d’aide. Ce l
| | |
| --- | --- |
| Numéro de commande | 1182 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
index 4a68a3f2e72c09..4fdb1253a5e3d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels un alignement peut être appliqué sont les su
| | |
| --- | --- |
| Numéro de commande | 707 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
index 88e80f1c8f228c..80c66c8e6d78b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Vous pouvez comparer la valeur retournée par la commande aux constantes suivant
| | |
| --- | --- |
| Numéro de commande | 1247 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
index 6696dca8a74f3d..69927b8ca73843 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ La commande retourne une chaîne indiquant le code de langue utilisé, basé sur
| | |
| --- | --- |
| Numéro de commande | 1180 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
index 6f32b46d047294..3bd61729ade303 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
@@ -42,6 +42,6 @@ Si aucune liste du type défini n’est associée à l’*objet*, la commande re
| | |
| --- | --- |
| Numéro de commande | 1072 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
index 89277de4cd0159..6536e05e6c61aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
@@ -42,6 +42,6 @@ Si aucune liste hiérarchique n’est associée à l’objet pour le *typeListe*
| | |
| --- | --- |
| Numéro de commande | 1267 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
index b6582037e63aca..90ea57520bbd21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1245 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
index a2b378e95a7250..4b4484f8923be5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1243 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
index 12ab1f52932063..5663ae90fe2bed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
@@ -42,6 +42,6 @@ La valeur retournée correspond à l’une des constantes suivantes du thème "*
| | |
| --- | --- |
| Numéro de commande | 1254 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
index 8c8806ae1ce87f..7b019a20c49f1d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Après l’exécution de cette méthode objet, la variable *$nomBtn* contient la
| | |
| --- | --- |
| Numéro de commande | 1087 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
index ae637c0b138483..184a468c5ff625 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Vous souhaitez lire le texte exemple d’un champ :
| | |
| --- | --- |
| Numéro de commande | 1296 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
index 05eb9ebbf9387d..a3a6c01b50a592 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
@@ -59,6 +59,6 @@ Soit un formulaire "SF" utilisé deux fois comme sous-formulaire dans le même f
| | |
| --- | --- |
| Numéro de commande | 1124 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
index d5e4577b193bbe..eb4114e274deba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
@@ -42,6 +42,6 @@ Si l’*objet* est un sous-formulaire et si l’impression en taille variable es
| | |
| --- | --- |
| Numéro de commande | 1241 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
index 32a062a10dd553..cd9e5103dfa89f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ Le paramètre *vertical* retourne une valeur indiquant l’option de redimension
| | |
| --- | --- |
| Numéro de commande | 1176 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
index 860314fdb94667..3697b865917f2d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Pour plus d’informations sur le format des paramètres *couleurAvantPlan*, *co
| | |
| --- | --- |
| Numéro de commande | 1074 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
index 04479e9ea8aede..662a089a11cb2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Si *objet* désigne une image (variable ou champ), *positionLigne* retourne le d
| | |
| --- | --- |
| Numéro de commande | 1114 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
index 5066db6efc2b16..8a190dd83cef13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
@@ -51,6 +51,6 @@ Pour plus d'informations, reportez-vous à la description de la commande [OBJECT
| | |
| --- | --- |
| Numéro de commande | 1076 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
index 25378d2f397e6a..7a7135923a4a43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
@@ -46,6 +46,6 @@ Si aucune touche de modification n’a été définie dans l’équivalent clavi
| | |
| --- | --- |
| Numéro de commande | 1186 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
index 036ae0b3bdea23..e33dbfe879a4d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
@@ -51,6 +51,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1258 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
index a388ec946860b8..854688d407a1eb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
@@ -35,6 +35,6 @@ Cette commande est utile par exemple dans le cas où des objets du sous-formulai
| | |
| --- | --- |
| Numéro de commande | 1148 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
index c0783cc7c5a98b..7fa5547f1fc1d7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
index 9c5e0b5d158ced..ef20fa17a156bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ S’il n’y a pas de formulaire liste, une chaîne vide est retournée dans le
| | |
| --- | --- |
| Numéro de commande | 1139 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
index ce2eac4fd518c8..65c4aa26089140 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Si, à l’exécution du formulaire, vous appelez l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 1283 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
index 29a40e183cf999..8823428630222a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ La propriété "Trois états" peut avoir été définie soit via la Liste des pr
| | |
| --- | --- |
| Numéro de commande | 1250 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
index 12ec6756ece943..dc1c1dbeecbc6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
@@ -38,6 +38,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1068 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
index 90d62431b522d8..54f35d04e3afe4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Vous souhaitez charger un formulaire et obtenir la liste de tous les objets des
| | |
| --- | --- |
| Numéro de commande | 1300 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
index 7d1f720b76142c..bc1563127c3207 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Voir l'exemple de la commande [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Numéro de commande | 1743 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
index 73eb9c4ec91b8f..6c5d86720985d6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
index 9572558049accc..2cd9fb50b2295c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Si vous passez le paramètre optionnel *\**, vous indiquez que le paramètre *ob
| | |
| --- | --- |
| Numéro de commande | 1075 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
index 79163446a27c0c..edb2e8b819dde0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Un formulaire comporte un champ représenté par deux objets différents, l’un
| | |
| --- | --- |
| Numéro de commande | 1261 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
index 37bcf365304c54..4fb3223860cba6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
@@ -67,6 +67,6 @@ L’instruction suivante place le bouton “Bouton\_1” aux coordonnées (10;20
| | |
| --- | --- |
| Numéro de commande | 664 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
index 8a213b0bf2095e..6ca4336230da38 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
@@ -44,6 +44,6 @@ Vous souhaitez associer l’action standard de validation à un bouton :
| | |
| --- | --- |
| Numéro de commande | 1259 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
index 8dd024d7d9222c..31c9fb72a28a68 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Passez **Vrai** dans *correctionAuto* pour activer la correction automatique pou
| | |
| --- | --- |
| Numéro de commande | 1173 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
index 59cda836623b7f..a214abef15c120 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ Passez dans le paramètre *styleBordure* la valeur de style de ligne que vous so
| | |
| --- | --- |
| Numéro de commande | 1262 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
index 80a6af669b987c..e65a86e05a65aa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *menuContext* pour activer le menu contextuel
| | |
| --- | --- |
| Numéro de commande | 1251 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
index ec071fd1c5dd2d..7e66da7fd5b737 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ L’instruction suivante place l’objet "bouton\_1" aux coordonnées (10,20) (3
| | |
| --- | --- |
| Numéro de commande | 1248 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
index fb1da3dff2e33b..b27227c665e64e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
@@ -72,6 +72,6 @@ Notez que pour les zones de texte (ainsi que pour les zones de saisie), contrair
| | |
| --- | --- |
| Numéro de commande | 1323 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
index 2e6352559ec654..eff32bcdffce82 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Modification de la source de données d’une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1264 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
index 110e884e71381e..d5ec83cdd13b70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Définition d’une zone de texte en glisser-déposer auto :
| | |
| --- | --- |
| Numéro de commande | 1183 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
index a49a2968dee763..fc9a7729189d78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Cette commande peut être appliquée aux types d'objets suivants :
| | |
| --- | --- |
| Numéro de commande | 1123 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
index bcf496faf1f5d8..2e9390f3716a08 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Voici la méthode objet d’une case à cocher placée dans l’en-tête d’une
| | |
| --- | --- |
| Numéro de commande | 238 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
index 002594cc9af2cb..66fe753e0984e6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
@@ -169,6 +169,6 @@ Désactivation d’un seul événement du formulaire sans modifier les autres :
| | |
| --- | --- |
| Numéro de commande | 1239 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
index bd1dc626e9151e..b725ff0ae0a257 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ L'exemple suivant autorise uniquement la saisie des lettres “a”, “b”,
| | |
| --- | --- |
| Numéro de commande | 235 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
index bc15fa50714db4..f2703b27c1f1b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ Passez **Vrai** dans le paramètre *invisible* pour cacher le rectangle de focus
| | |
| --- | --- |
| Numéro de commande | 1177 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
index 3d9b9442988132..a48ce463cacdd2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ L'exemple suivant définit la taille de police de tous les objets de formulaire
| | |
| --- | --- |
| Numéro de commande | 165 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
index 4a727c03fe9957..95c3ee153da004 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
@@ -61,6 +61,6 @@ L'exemple suivant définit le style de police Normal pour tous les objets de for
| | |
| --- | --- |
| Numéro de commande | 166 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
index 49af2ace0a04e9..5c4b7439cef58d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ L'exemple suivant utilise l'option spéciale *%password*, destinée à la saisie
| | |
| --- | --- |
| Numéro de commande | 164 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
index 0b1a8753852cf7..dfe0bbb9e25838 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
@@ -364,6 +364,6 @@ Passage d'un thermomètre en mode "Barber shop" :
| | |
| --- | --- |
| Numéro de commande | 236 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
index 322341d9b9367e..8cd1c66d9071cc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
@@ -129,6 +129,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1181 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
index 5d0cb042cc7ea7..1a9b39da7c16d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
@@ -62,6 +62,6 @@ Les objets de formulaire auxquels vous pouvez appliquer cette commande sont les
| | |
| --- | --- |
| Numéro de commande | 706 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
index 546803e762f527..019f175337eeda 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ Passez dans le paramètre *indicateur* le type d’indicateur à afficher. Vous
| | |
| --- | --- |
| Numéro de commande | 1246 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
index 8b0e51adefe820..be1e410239ddc5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ Passez dans le paramètre *codeLangue* une chaîne indiquant le code de langue
| | |
| --- | --- |
| Numéro de commande | 1179 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
index 9788207d368883..b3fa7b5889f9b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
@@ -95,6 +95,6 @@ Vous souhaitez supprimer des associations de listes :
| | |
| --- | --- |
| Numéro de commande | 237 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
index f70fd6b911825a..ff018e27761205 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ Pour pouvoir mettre à jour la liste associée au pop up géré par tableau, il
| | |
| --- | --- |
| Numéro de commande | 1266 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
index 1f0c58d2ad8e60..ed1306623f469c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ Passez dans *valeurMaxi* la nouvelle valeur maximum à affecter à l’*objet* p
| | |
| --- | --- |
| Numéro de commande | 1244 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
index 74ca19d0e21425..56919226ce1df4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ Passez dans *valeurMini* la nouvelle valeur minimum à affecter à l’objet pou
| | |
| --- | --- |
| Numéro de commande | 1242 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
index 2d5502be59915f..f4a990ba864b28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
@@ -49,6 +49,6 @@ Vous souhaitez interdire le multiligne dans une zone de saisie :
| | |
| --- | --- |
| Numéro de commande | 1253 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
index 6bb9e852657c39..dfe1d8a92b41e8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Vous souhaitez afficher le texte exemple "Recherche" dans une combo box :
| | |
| --- | --- |
| Numéro de commande | 1295 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
index dc0c457307c089..71e6e9bd0eed7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
@@ -48,6 +48,6 @@ Le paramètre optionnel *fixeSousForm* vous permet de définir une option suppl
| | |
| --- | --- |
| Numéro de commande | 1240 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
index 2d81f4aa0bca76..8f597f0d1ad99b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
@@ -47,6 +47,6 @@ Passez dans le paramètre *vertical* une valeur indiquant l’option de redimens
| | |
| --- | --- |
| Numéro de commande | 1175 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
index de02e7279f9372..3aa28baa7fd635 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
@@ -110,6 +110,6 @@ Passage du fond en transparent avec couleur de police claire :
| | |
| --- | --- |
| Numéro de commande | 628 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
index 07056c0204523c..ff5e8c80f78c70 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
@@ -96,6 +96,6 @@ Attention dans ce cas, si vous omettez le second paramètre \*, l'image ne défi
| | |
| --- | --- |
| Numéro de commande | 906 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
index b67c15b44ff6ee..f3dd540e7bc9ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ Le tableau suivant indique les valeurs que vous pouvez passer dans les paramètr
| | |
| --- | --- |
| Numéro de commande | 843 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
index e8ed210fee2b98..2c0ba656bebca2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
@@ -95,6 +95,6 @@ Vous voulez associer un équivalent clavier différent en fonction de la langue
| | |
| --- | --- |
| Numéro de commande | 1185 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
index 869b0f72104320..1cfa1eaa7f6b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
@@ -53,6 +53,6 @@ Dans **l'architecture Projet**, seules les trois feuilles de style automatiques
| | |
| --- | --- |
| Numéro de commande | 1257 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
index dc9587f6e3f548..84dcc61c5ca1ea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1784 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
index 9c9f77ec8f026b..984eeb4667c66f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
@@ -49,6 +49,6 @@ Lorsque vous modifiez un sous-formulaire en page, la commande peut être exécut
| | |
| --- | --- |
| Numéro de commande | 1138 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
index 103079391710ab..57c5255c0d1fc8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
@@ -54,6 +54,6 @@ Vous souhaitez appliquer une orientation de 270° à une variable de votre formu
| | |
| --- | --- |
| Numéro de commande | 1284 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
index 51dfe5c02c6f8b..82e38f91933b43 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ Passez **Vrai** dans le paramètre *troisEtat* pour activer le mode "trois état
| | |
| --- | --- |
| Numéro de commande | 1249 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
index e43ed15404e243..e2afb842c9caa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
@@ -77,6 +77,6 @@ Vous souhaitez insérer des libellés sur deux lignes :
| | |
| --- | --- |
| Numéro de commande | 194 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
index d6f382847bf887..489967531e9adf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Vous souhaitez lire la valeur des sources de données d'un objet formulaire, lir
| | |
| --- | --- |
| Numéro de commande | 1742 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
index 670adbabc2b155..ef54577df477f5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ Les objets de formulaire auxquels un alignement vertical peut être appliqué so
| | |
| --- | --- |
| Numéro de commande | 1187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
index a0728e8d36ba07..adf79386f0cc22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
@@ -63,6 +63,6 @@ ou ainsi :
| | |
| --- | --- |
| Numéro de commande | 603 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
index d1f5f306222dda..29a267b04fba4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Nous voulons dupliquer et renommer un fichier dans son dossier actuel :
| | |
| --- | --- |
| Numéro de commande | 1548 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
index 39d4b608db5649..953f8fa8104ce4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 263 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
index c76a773035bb11..4dbc127de13ad3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 44 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
index 9477343f363856..35822368aa003b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
@@ -48,6 +48,6 @@ Pour restaurer la valeur originale d'un champ, assignez-lui la valeur retournée
| | |
| --- | --- |
| Numéro de commande | 35 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
index 7f68f70f6b9fe1..ecc85e2550cec3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
@@ -185,6 +185,6 @@ La méthode de gestion d'erreurs suivante ignore les interruptions de l'utilisat
| | |
| --- | --- |
| Numéro de commande | 155 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
index a57d4f292d0e53..4da92863b1e07c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
@@ -121,7 +121,7 @@ Lorsque vous imprimez un état à l'aide la commande [PRINT SELECTION](print-sel
| | |
| --- | --- |
| Numéro de commande | 190 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
index ab3e8c5d94f0a2..2450f15acaa68d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
@@ -114,6 +114,6 @@ L'exemple suivant illustre un cas typique où vous lancez un ou plusieurs proces
| | |
| --- | --- |
| Numéro de commande | 905252 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
index 8fee2a2733aed8..7b22329a4df906 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ L'[authentification Force login](../REST/authUsers.md) est désormais fortement
| | |
| --- | --- |
| Numéro de commande | 3367 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
index 09dd557d1de1c5..1d641e0cc4110e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ L’exemple suivant interdit toute nouvelle connexion entre 2 et 4 heures du mat
| | |
| --- | --- |
| Numéro de commande | 16001 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
index d80b5fcaa44080..2a88ea3d995b76 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
@@ -51,6 +51,6 @@ Reportez-vous à l'exemple de la section [On Exit database method](on-exit-datab
| | |
| --- | --- |
| Numéro de commande | 905263 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
index dc5be7eeaddde1..e20b57c460e88f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ A l'origine, cette commande était utile pour "replacer" dans la sélection cour
| | |
| --- | --- |
| Numéro de commande | 189 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
index 4e814f73f733b5..27d8aeff5c71bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1047 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
index 8840e7c9b67823..2271a936952851 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Si la couleur a été modifiée, l’événement formulaire On After Edit est g
| | |
| --- | --- |
| Numéro de commande | 1304 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
index b621aeef19b9c6..04901341fac5b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ Dans le contexte du déploiement d'une application fusionnée, vous souhaitez ou
| | |
| --- | --- |
| Numéro de commande | 312 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
index c12b2ad4dfa2aa..a7c18a90b8773c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
@@ -76,6 +76,6 @@ Vous souhaitez sélectionner un serveur au démarrage, à partir d'une applicati
| | |
| --- | --- |
| Numéro de commande | 1321 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
index f8fc63a8a18ba8..9dccc026b6ae6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
@@ -92,7 +92,7 @@ Si vous passez la valeur 3 dans *mode*, la fonction retourne ?00:00:00? (pas de
| | |
| --- | --- |
| Numéro de commande | 264 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
index d03dd2caaa31d9..72ee4dbc3f14bc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Le code du bouton est le suivant :
| | |
| --- | --- |
| Numéro de commande | 1303 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
index a4bef181438c16..59724e2ef730c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
@@ -139,6 +139,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 675 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
index c65eaa8d6329fa..5dc6dee33bfb6b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ La variable système OK est définie sur 1 si la tâche d'impression a été ouv
| | |
| --- | --- |
| Numéro de commande | 995 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
index 9332849b2bd94c..7cea01c30771b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Si le fichier de ressources n'a pas pu être ouvert à la suite d'un problème d
| | |
| --- | --- |
| Numéro de commande | 497 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
index 443fefe6a23fc3..4bb85c9ea62723 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
index 16a34cb67a731c..9d569f925c439a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1018 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
index 2b66dc8fed8c56..1dfe3796c350a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
@@ -144,7 +144,7 @@ Si la boîte de dialogue des préférences/propriétés est validée, la variabl
| | |
| --- | --- |
| Numéro de commande | 903 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
index 2fa4e43c3b8753..4139e316f92f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
@@ -86,6 +86,6 @@ Vous pouvez ouvrir un même fichier texte avec différentes applications en util
| | |
| --- | --- |
| Numéro de commande | 673 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
index b5c2a5a2d8ccd2..df64a52992e0d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
@@ -158,6 +158,6 @@ Cet exemple illustre le mécanisme de “retard” d’affichage des fenêtres f
| | |
| --- | --- |
| Numéro de commande | 153 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
index 99d238f19a9192..e23c63d6943c1a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Les enregistrements sont dans l'ordre suivant :
| | |
| --- | --- |
| Numéro de commande | 1407 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
index ffb24fe1489519..d8bfca6389f256 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
@@ -51,7 +51,7 @@ L'exemple suivant trie les enregistrements de la table \[Personnes\] dans l'ordr
| | |
| --- | --- |
| Numéro de commande | 300 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
index 44e83fe283a5e3..3542d8f31dbc1d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
@@ -207,7 +207,7 @@ Quelle que soit la manière dont le tri est défini, si l'opération risque de p
| | |
| --- | --- |
| Numéro de commande | 49 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
index 988ec05c7026c6..c2e4304f0b2035 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Si vous voulez que le cycle d'exécution **Outside call** soit généré, vérif
| | |
| --- | --- |
| Numéro de commande | 328 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
index 94692337f81fec..12d4415ac2062a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
@@ -50,7 +50,7 @@ Reportez-vous à l'exemple de la commande [SET PRINT MARKER](set-print-marker.md
| | |
| --- | --- |
| Numéro de commande | 6 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
index 411a2befa43247..d99317f17c4d50 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
@@ -108,6 +108,6 @@ Si une erreur de syntaxe est détectée dans la *formule*, un message d'erreur e
| | |
| --- | --- |
| Numéro de commande | 1576 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
index 9142048bac9703..d05a2978fa79ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
@@ -100,7 +100,7 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 400 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
index 9aa6a50b3893da..7237c6669dfc06 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
@@ -182,6 +182,6 @@ Vous voulez connaître le nombre de sous-dossiers contenus dans un chemin :
| | |
| --- | --- |
| Numéro de commande | 1547 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
index 228f122e814b19..6eee27cc20005e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ Exemple de méthode d’import massif de données :
| | |
| --- | --- |
| Numéro de commande | 1293 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
index 3bd8d52154a7b3..929c3181636e4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Lorsqu'un process est suspendu, les fenêtres qui lui appartiennent ne sont pas
| | |
| --- | --- |
| Numéro de commande | 319 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
index 61f247c2f08d46..4e8a6c40e775ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Par défaut, si vous ne passez pas le paramètre *\**, la commande retourne uniq
| | |
| --- | --- |
| Numéro de commande | 992 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
index 7a1fc3110703ca..704c32f835bd96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
@@ -105,6 +105,6 @@ L'exemple suivant exporte la Bibliothèque d’Images vers un document stocké s
| | |
| --- | --- |
| Numéro de commande | 564 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
index 8ec9b99d516b9e..e23573560e827e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Les paramètres *hOffset*, *vOffset* et *mode* reçoivent la position et le mode
| | |
| --- | --- |
| Numéro de commande | 457 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
index 387dbc44c598b8..544801f539605e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 356 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
index 44fe4fd839f27d..36fc9b582f7a77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
@@ -55,7 +55,7 @@ Vous voulez convertir une image depuis un format propriétaire vers le format GI
| | |
| --- | --- |
| Numéro de commande | 692 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
index 83f6e133a3b62f..48e14974f81701 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
@@ -62,6 +62,6 @@ Exemple de son système sous macOS :
| | |
| --- | --- |
| Numéro de commande | 290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
index a64b95e2e24ba3..7d143922c9dc14 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 847 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
index bcb21180d081bf..0e09bbc3e85ad7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
@@ -38,7 +38,7 @@ L'exemple suivant récupère l'enregistrement d'un client dans la pile :
| | |
| --- | --- |
| Numéro de commande | 177 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
index 29f144e0b41f8c..511ee1a4963805 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
@@ -105,6 +105,6 @@ Voici le pop up menu tel qu'il s'affiche sous Windows (à gauche) et sous Mac OS
| | |
| --- | --- |
| Numéro de commande | 542 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
index 4c649c2e27482f..a7e21c5f91595a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
@@ -124,6 +124,6 @@ Dans l'exemple suivant, vous souhaitez recherchez toutes les instances d'une cha
| | |
| --- | --- |
| Numéro de commande | 15 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
index 5f0f6258786c8b..f5e588999a4016 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Si vous passez le paramètre *process*, le clic est envoyé au process dont vous
| | |
| --- | --- |
| Numéro de commande | 466 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
index b2eaf902016c3d..4738254fd060d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
@@ -78,6 +78,6 @@ Si vous passez le paramètre *process*, l'événement est envoyé au process don
| | |
| --- | --- |
| Numéro de commande | 467 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
index 59d4e2f4e0ece0..a8475186f90596 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
@@ -66,6 +66,6 @@ Reportez-vous à l'exemple de la fonction [Process number](../commands/process-n
| | |
| --- | --- |
| Numéro de commande | 465 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
index 5535fafafde04b..d4cd266feb04c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ Reportez-vous à l'exemple de la section [Semaphore](semaphore.md).
| | |
| --- | --- |
| Numéro de commande | 329 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
index 3b536391393b6c..c023f6e340e62c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Si **PREVIOUS RECORD** place le pointeur d'enregistrement courant avant la séle
| | |
| --- | --- |
| Numéro de commande | 110 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
index b8457cb29cd94a..ec6d06a644eec4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
@@ -115,7 +115,7 @@ L'exemple suivant permet à l'utilisateur d'effectuer une recherche sur la table
| | |
| --- | --- |
| Numéro de commande | 39 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
index 6e6bf8b7f1a266..8867e5b3669f17 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
@@ -102,6 +102,6 @@ Exemple d’impression d’une list box complète :
| | |
| --- | --- |
| Numéro de commande | 1095 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
index 9cd7f8d2197389..2f67818ccd486f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
@@ -60,6 +60,6 @@ Toutes les informations retournées par ces commandes sont fournies par le syst
| | |
| --- | --- |
| Numéro de commande | 785 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
index 507d82d927f70b..66c0a128811a21 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
@@ -71,6 +71,6 @@ L'exemple suivant imprime le même enregistrement courant dans deux formulaires
| | |
| --- | --- |
| Numéro de commande | 71 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
index 7dcbc9ce3503d4..f69d985052b38b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
@@ -70,7 +70,7 @@ L'exemple suivant sélectionne la totalité des enregistrements de la table \[Pe
| | |
| --- | --- |
| Numéro de commande | 60 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
index ecbffa8f152d8f..6f871303de7cf6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
@@ -60,6 +60,6 @@ Vous voulez sauvegarder les paramètres d'impression courants sur disque :
| | |
| --- | --- |
| Numéro de commande | 1433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
index 583326a59e827b..306a13851ee547 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Si l'utilisateur clique sur le bouton OK dans chaque boîte de dialogue, la vari
| | |
| --- | --- |
| Numéro de commande | 106 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
index fe664f0008972a..b69f9dcf2a4875 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
@@ -49,7 +49,7 @@ La variable système OK prend la valeur 1 si la commande a été exécutée corr
| | |
| --- | --- |
| Numéro de commande | 789 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
index 253468d1101add..763772731b98ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ L'exemple suivant change la position des numéros de page sur un état pour que
| | |
| --- | --- |
| Numéro de commande | 275 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
index d7a20ff575a57c..69b46226845bce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
@@ -79,6 +79,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Numéro de commande | 816 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
index d9a06cfed17e32..39dd151238359a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Ce statut se produira très rarement. Les process sont généralement arrêtés
| | |
| --- | --- |
| Numéro de commande | 672 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
index 4e850339dbeceb..579fdc367f7999 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ L'exemple suivant retourne le nom et le numéro de référence de chaque process
| | |
| --- | --- |
| Numéro de commande | 330 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
index 9d980c91148fe9..4c3cd23eb2955f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ L'exemple suivant empile l'enregistrement d'un client :
| | |
| --- | --- |
| Numéro de commande | 176 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
index 0a0cda3d4c0e26..065d534b714e1b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ L'instruction suivante affiche l'état stocké dans le champ ChampBlob dans la z
| | |
| --- | --- |
| Numéro de commande | 771 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
index b693961ae2adfe..1a7bffb24636f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ L'exemple suivant permet d'ajouter une colonne supplémentaire à droite de la d
| | |
| --- | --- |
| Numéro de commande | 764 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
index b85255631e10e4..4898adaed67590 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ Cet exemple supprime la troisième colonne de l'état :
| | |
| --- | --- |
| Numéro de commande | 749 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
index 005384e2236f33..a5758bd51d681c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 754 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
index cb1c1fff40d4ac..a86cbd5ee51a3c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 791 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
index 6e16121577c6a0..f0d7d13ac9d40c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
@@ -53,7 +53,7 @@ suivi de :
| | |
| --- | --- |
| Numéro de commande | 776 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
index fd655e83e152fd..254da9c5371c42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 795 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
index 5c612c81c5c5dc..a2fc49f1dec763 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
@@ -74,7 +74,7 @@ Si le paramètre *encadrement* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 798 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
index b2bcdca781b421..1e48683259287e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
@@ -96,7 +96,7 @@ Si le paramètre *numCommande* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 792 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
index fdb1194f43d66c..0f4d7efc162898 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
@@ -40,7 +40,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 756 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
index f8d8eff25db108..b5c52fd4ff0ca1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
@@ -40,6 +40,6 @@ Si la valeur du paramètre *propriété* est incorrecte, l’erreur -9852 est g
| | |
| --- | --- |
| Numéro de commande | 773 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
index 637ce486465ede..137275b3b9e665 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 747 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
index 58536bc19ac515..c7a20a50c482ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
@@ -71,7 +71,7 @@ La méthode suivante affiche le contenu et la hauteur des libellés des en-tête
| | |
| --- | --- |
| Numéro de commande | 775 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
index 3968c49003fa80..687b6e2f9083f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
@@ -32,7 +32,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 751 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
index 094afbd067152a..2f4948596c271e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
@@ -110,7 +110,7 @@ Vous pouvez écrire :
| | |
| --- | --- |
| Numéro de commande | 766 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
index 1d8519b5241ca3..27cfee79f7fdb6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
@@ -45,7 +45,7 @@ Si le paramètre *ligne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 769 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
index db44d3e64938ae..3e971505bd7fc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
@@ -36,7 +36,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 755 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
index d5cdd5f0f1c41c..832c5a67600edc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 758 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
index 8f49cbcb8e75cd..6513eee59c0fa0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 793 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
index ee61f81ed74b2d..8f67e4b99d132f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 753 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
index 9fcc2e3ce6932f..bec77d32b202c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
@@ -71,7 +71,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9854 est générée.
| | |
| --- | --- |
| Numéro de commande | 760 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
index d04a49e5c8577d..4a720aba55ceaa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
@@ -74,7 +74,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 768 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
index 079d5672489c8f..e6e8a4bda7c8ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
@@ -41,7 +41,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 762 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
index f3193e19f0bd30..f89c13a284a134 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ La ligne suivante insère (ou crée) une première colonne dans la zone MaZone e
| | |
| --- | --- |
| Numéro de commande | 748 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
index 36feeb3f4ece02..9edfede2d09b51 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ Vous obtenez :
| | |
| --- | --- |
| Numéro de commande | 1325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
index 4b1889e8ad7347..a3f44b4329dd42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1320 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
index 5e675429f21efd..0998749fdbc82e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 735 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
index 7567b0b96aa691..d6a4e720105f7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
@@ -48,7 +48,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 790 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
index a6cf692eb61f11..ce1a01dcec3ef8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ L'instruction suivante affecte l'état rapide stocké dans la zone MaZone à un
| | |
| --- | --- |
| Numéro de commande | 770 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
index cc780dcf3e7f18..2ee430b2e959ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
@@ -136,7 +136,7 @@ La méthode maCallbackMeth convertit l’état lorsqu’il est généré :
| | |
| --- | --- |
| Numéro de commande | 197 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
index d0c66513f05e92..8a37b00739fd96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 746 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
index edacd73f333580..85cd345f3d006d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
@@ -39,7 +39,7 @@ Si le paramètre *propriété* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 796 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
index 7f5402f75efb2a..31021a064c9dc4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
@@ -81,7 +81,7 @@ Si le paramètre *épaisseur* est incorrect, l’erreur -9855 est générée.
| | |
| --- | --- |
| Numéro de commande | 797 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
index c23ab4977e5be7..6eb65c41ca9096 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
@@ -59,7 +59,7 @@ L'exemple suivant définit le fichier texte "MonDoc.txt" comme type de destinati
| | |
| --- | --- |
| Numéro de commande | 745 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
index 8ca39905b226f8..d926e0ad3a021e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
@@ -40,7 +40,7 @@ Si la valeur du paramètre *propriété* ou *valeur* est incorrecte, l’erreur
| | |
| --- | --- |
| Numéro de commande | 772 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
index 8ff706506de50b..b788b4dfb42301 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
@@ -60,7 +60,7 @@ L'instruction suivante place le libellé “Titre du centre” dans l'en-tête d
| | |
| --- | --- |
| Numéro de commande | 774 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
index 1b003366c55f38..f60471f0dce27e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
@@ -74,7 +74,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 750 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
index bb58dc8873163c..d0506368d07d15 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
@@ -110,7 +110,7 @@ Si le paramètre *numColonne* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 765 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
index a687a216677920..a29f91a0e1342f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
@@ -57,7 +57,7 @@ L'instruction suivante masque le contenu de la ligne Détail :
| | |
| --- | --- |
| Numéro de commande | 763 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
index 3a61f739fa070b..39c836623eb317 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
@@ -39,7 +39,7 @@ Si la valeur de *type* est incorrecte, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 738 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
index 19e566800272ec..95408d055a3918 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ Si le paramètre *numTable* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 757 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
index ef37a50575f37a..879ce33f1b1677 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
@@ -42,7 +42,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 794 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
index 79e3b79b37b847..3f3b2b30199b52 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ Si un numéro de *zone* invalide est passé, l’erreur -9850 est générée.
| | |
| --- | --- |
| Numéro de commande | 752 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
index 4fd6fb8cb3a1ce..68ee2cf84a8637 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Cette méthode définit plusieurs attributs pour l'intitulé de la première col
| | |
| --- | --- |
| Numéro de commande | 759 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
index 704d89c541c64f..e40caba406f360 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
@@ -101,7 +101,7 @@ Si le paramètre *numRupture* est incorrect, l’erreur -9853 est générée.
| | |
| --- | --- |
| Numéro de commande | 767 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
index da5f239420599d..98cc184ac522a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ Si le paramètre *sousTotal* est incorrect, l’erreur -9852 est générée.
| | |
| --- | --- |
| Numéro de commande | 761 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
index fd62c5cf520e20..6b70485b21c2ca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
@@ -415,7 +415,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 1331 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
index 39b261e8a8bc4b..86ce887973144b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Valider ou appuie sur la touche Entrée, l
| | |
| --- | --- |
| Numéro de commande | 292 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
index 0b47c42e65b776..bc10c9de537090 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
@@ -86,7 +86,7 @@ Dans cet exemple, on utilise une jointure pour rechercher toutes les lignes de f
| | |
| --- | --- |
| Numéro de commande | 48 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
index eb04fca59c1dfa..dfef66912dfb28 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
@@ -163,7 +163,7 @@ Si le format de la condition de recherche est correct, la variable système OK p
| | |
| --- | --- |
| Numéro de commande | 942 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
index 923d4aa9384664..b679b652fc420a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ Vous souhaitez trouver les personnes âgées entre 20 et 30 ans parmi les enregi
| | |
| --- | --- |
| Numéro de commande | 1424 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
index ebbeb4a2fba889..6df25916b0550f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Pour plus d'informations, reportez-vous à la description de la commande [QUERY
| | |
| --- | --- |
| Numéro de commande | 207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
index f96120b9a10599..449e025fa073f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Pour plus d’informations, reportez-vous à la description de la commande [QUER
| | |
| --- | --- |
| Numéro de commande | 1050 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
index d445b6aad31e2f..e829cb8f52d423 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Vous trouvez donc toutes les sociétés basées à Paris, dont l'activité est b
| | |
| --- | --- |
| Numéro de commande | 341 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
index fbd4b330172e12..9ffe6ee71b5d8b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ Cet exemple permet de récupérer les enregistrements des clients français et a
| | |
| --- | --- |
| Numéro de commande | 644 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
index aae4c451e4279d..54dc2b93e5cbec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
@@ -314,7 +314,7 @@ La variable OK prend la valeur 0 si :
| | |
| --- | --- |
| Numéro de commande | 277 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
index 74dcb944478538..cb612802066884 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
@@ -70,6 +70,6 @@ La méthode projet suivante est associée à la commande **Quitter** du menu **F
| | |
| --- | --- |
| Numéro de commande | 291 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
index a7557d9170a542..5c0691c40f61d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
@@ -39,6 +39,6 @@ L'exemple suivant assigne une valeur entière aléatoire entre 10 et 30 à la va
| | |
| --- | --- |
| Numéro de commande | 100 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
index 0189c9977ec0e9..72f05262fc7c9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ L'exemple suivant teste le statut de la table \[Factures\]. Si elle est en lectu
| | |
| --- | --- |
| Numéro de commande | 362 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
index e51d8015b64d1a..2d80ddc5891bdb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Vous pouvez utiliser **READ ONLY** lorsqu'il n'est pas utile de modifier les enr
| | |
| --- | --- |
| Numéro de commande | 145 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
index 3c374b30f9dc7f..0dfdb9f55b3f34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
@@ -46,7 +46,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 678 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
index e58edb69075a80..c207010fb176de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilisez **READ WRITE** lorsque vous devez modifier un enregistrement et sauvega
| | |
| --- | --- |
| Numéro de commande | 146 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
index aecf6ba1e592fd..0f29fd1c5ffbca 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
@@ -139,6 +139,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 552 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
index c2ef18e8be2c32..9c40a44f8b68bd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
@@ -70,7 +70,7 @@ Notez que l'accès à la variable interprocess *◊vtBuffer* doit être protég
| | |
| --- | --- |
| Numéro de commande | 172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
index 77acf5760e5fa1..c402c6fb6e2069 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
@@ -118,7 +118,7 @@ Après un appel à **RECEIVE PACKET**, la variable système OK prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 104 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
index 3b74e483faf34d..10a9edd057447f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
@@ -158,7 +158,7 @@ La variable système OK prend la valeur 1 si l'enregistrement est correctement r
| | |
| --- | --- |
| Numéro de commande | 79 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
index 4cf22f80e935f1..3fc58a4ad1a109 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
@@ -45,7 +45,7 @@ La variable système OK prend la valeur 1 si la variable est correctement reçue
| | |
| --- | --- |
| Numéro de commande | 81 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
index 52651b98757e07..ae8b576018ed3e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
@@ -50,6 +50,6 @@ L'exemple suivant sauvegarde le numéro d'enregistrement courant puis cherche da
| | |
| --- | --- |
| Numéro de commande | 243 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
index 1dcaa0a618df73..8a98ff78838d4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ L'exemple suivant propose une technique de boucle couramment utilisée pour se d
| | |
| --- | --- |
| Numéro de commande | 76 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
index 38e36f92bf5abc..121f04a88668c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte qui indique le pourcen
| | |
| --- | --- |
| Numéro de commande | 195 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
index 2efe71f3d4bc2c..f61d1c20a33ad8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ L'exemple suivant affiche une alerte indiquant le nombre d'enregistrements de la
| | |
| --- | --- |
| Numéro de commande | 83 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
index 9ed7c04b92b2be..7b8bbe15116be7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Si vous omettez le paramètre *fenêtre*, **REDRAW WINDOW** s'appliquera à la f
| | |
| --- | --- |
| Numéro de commande | 456 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
index cc6524e1980c1b..51a5b949a222f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ Dans le contexte des list box en mode sélection, l’instruction **REDRAW** app
| | |
| --- | --- |
| Numéro de commande | 174 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
index 4421ea5eb8182a..5264b063234264 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ La commande permet de basculer l'état de la fenêtre :
| | |
| --- | --- |
| Numéro de commande | 1829 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
index 357a7dc24d8015..9696fd7d3e2d7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
@@ -64,7 +64,7 @@ L'exemple suivant établit des statistiques pour une compétition mondiale parmi
| | |
| --- | --- |
| Numéro de commande | 351 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
index d1cef330ed75d6..f5ef4fa4b6b0b4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Vous souhaitez mettre à jour votre licence et recevoir un message à la fin de
| | |
| --- | --- |
| Numéro de commande | 1336 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
index cd686fadeeca17..169bede33b705b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Cette méthode regénère toutes les tables manquantes éventuellement présente
| | |
| --- | --- |
| Numéro de commande | 1126 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
index c6de6c6862c1c3..72f6afbde64a36 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
@@ -134,7 +134,7 @@ Si le poste client est correctement inscrit, la variable système OK prend la va
| | |
| --- | --- |
| Numéro de commande | 648 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
index 2e3d1798686b8d..ff896884dcecee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ Passez le paramètre *phraseSecrèteCour* ou *cléDonnéesCour*, qui définit la
| | |
| --- | --- |
| Numéro de commande | 1638 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
index 362e42e537b98e..01443f44ca3b73 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Vous souhaitez rejeter puis accepter les nouvelles connexions distantes :
| | |
| --- | --- |
| Numéro de commande | 1635 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
index da92414d492099..958b4b746c0ae9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
@@ -68,6 +68,6 @@ L'exemple suivant est une partie de la méthode objet d'un champ *\[Employés\]S
| | |
| --- | --- |
| Numéro de commande | 38 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
index 4cfc3f0fde8810..b82722669a192b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ Prenons l'exemple d'une base de données comportant une table *\[Factures\]* don
| | |
| --- | --- |
| Numéro de commande | 340 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
index f6d5b8bcdc2acd..97e9cc6f01ac6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
@@ -66,7 +66,7 @@ Par exemple, la méthode suivante effectue une boucle sur chaque enregistrement
| | |
| --- | --- |
| Numéro de commande | 262 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
index 2edbf1b376381d..528ec902de60b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
@@ -62,7 +62,7 @@ L'exemple suivant parvient au même résultat que le précédent :
| | |
| --- | --- |
| Numéro de commande | 349 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
index 0ef11c992579a0..b4c79f22adcf69 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
@@ -90,7 +90,7 @@ Si la commande a été correctement exécutée et si les enregistrements liés o
| | |
| --- | --- |
| Numéro de commande | 42 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
index 2d9b321f0257ec..4f5e9adb572565 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Cet exemple illustre les cas d'utilisation de cette commande :
| | |
| --- | --- |
| Numéro de commande | 978 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
index 7f252b34000667..953b06edbe6537 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ Il est alors nécessaire de demander le rechargement des données à l'aide de l
| | |
| --- | --- |
| Numéro de commande | 1135 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
index 314f7781c50a40..e53060bebcea93 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Lorsque la commande est appelée depuis :
| | |
| --- | --- |
| Numéro de commande | 1739 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
index 546ed58c343c47..bdd6533ca07da1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 561 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
index 8f399b3271e64e..e10596d6416377 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
@@ -60,7 +60,7 @@ L’exemple suivant supprime de la bibliothèque d’images celles dont le nom c
| | |
| --- | --- |
| Numéro de commande | 567 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
index c304db143e249c..2c5d2c43caf7b5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
@@ -75,6 +75,6 @@ L'exemple suivant illustre le rôle du paramètre \* dans le cadre d'une évalua
| | |
| --- | --- |
| Numéro de commande | 233 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
index c5fa08187fb9fd..1a256234c8d2be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
@@ -84,7 +84,7 @@ La ligne de code :
| | |
| --- | --- |
| Numéro de commande | 163 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
index 9d8cad76aad25f..0f4c6c3244993c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
@@ -53,6 +53,6 @@ Après l'exécution de cette ligne :
| | |
| --- | --- |
| Numéro de commande | 890 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
index 189a19c3fb3c24..d0164cbf586710 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
@@ -38,7 +38,7 @@ Si *cheminAlias* désigne bien un alias/raccourci, la variable système OK prend
| | |
| --- | --- |
| Numéro de commande | 695 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
index 1c628e461ea489..d28bc69eab307d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
@@ -111,6 +111,6 @@ Voici un exemple de pointeur vers un tableau 2D :
| | |
| --- | --- |
| Numéro de commande | 394 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
index 218d9a744ab4e3..46ab32fe6a9808 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ L'exemple suivant copie dans la bibliothèque d'images de la base les ressources
| | |
| --- | --- |
| Numéro de commande | 500 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
index 3f7307b11ad527..a0977dffde722c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
@@ -85,6 +85,6 @@ Une fois que cette méthode est implémentée dans votre base, vous pouvez écri
| | |
| --- | --- |
| Numéro de commande | 499 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
index d3fde196bc63c5..e65bd670217604 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1292 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
index 869db4504471cd..e120fb676d244d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
@@ -42,6 +42,6 @@ Le type et le contenu des paramètres *info1* et *info2* dépendent de la valeur
| | |
| --- | --- |
| Numéro de commande | 889 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
index ef914d0379f5d3..ddf229692a5ee4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
@@ -39,7 +39,7 @@ La commande **RESTORE** modifie la valeur des variables *OK* et *Document* : si
| | |
| --- | --- |
| Numéro de commande | 918 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
index 7715c876dabaeb..71c1b4f590d026 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ La commande **RESUME INDEXES** ne peut être appelée que depuis 4D Server ou un
| | |
| --- | --- |
| Numéro de commande | 1294 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
index 0297eaf417139c..31be59892eec13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Si *process* a été suspendu, référez-vous aux commandes [PAUSE PROCESS](paus
| | |
| --- | --- |
| Numéro de commande | 320 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
index 24eaea6703acdd..80db79c7d914fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1386 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
index ba3be9a0236bdf..5391b0042de27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Cette commande doit être appelée uniquement dans le cadre de l’événement f
| | |
| --- | --- |
| Numéro de commande | 712 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
index 876bea29a3ec07..97a2396bfc71cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
@@ -43,6 +43,6 @@ L'exemple suivant illustre la manière dont Arrondi fonctionne dans différents
| | |
| --- | --- |
| Numéro de commande | 94 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
index 5b7efe8f0a5fe5..955016b37a76fb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Si une énumération de même nom existe déjà, son contenu est remplacé.
| | |
| --- | --- |
| Numéro de commande | 384 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
index 48fa5d73b24645..6085116c31f99a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ L'exemple suivant est une partie d'une méthode récupérant des enregistrements
| | |
| --- | --- |
| Numéro de commande | 53 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
index 72244f8281736c..f4423e3d024286 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 43 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
index cb29e536d8dd78..bfde6c1a19266a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ Si l'utilisateur clique sur le bouton Annuler dans la boîte de dialogue standar
| | |
| --- | --- |
| Numéro de commande | 184 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
index 18457843828993..727b814669e1a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Si l'opération s'est correctement déroulée, la variable OK prend la valeur 1,
| | |
| --- | --- |
| Numéro de commande | 75 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
index 93f6fa2e07425f..112a37353f004d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
@@ -53,7 +53,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 857 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
index ed30ed70e74ed2..83c07d2c00b48f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 856 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
index 85e0dfd7fbd385..0b0d7281b5324a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 852 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
index bcc164c2e7ba9b..a2414aa004fec5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
@@ -31,8 +31,8 @@ L’instruction suivante :
... inscrira cette ligne dans le document :
-```4d
-
+```xml
+
```
## Variables et ensembles système
@@ -52,7 +52,7 @@ En cas d’erreur, la commande retourne une erreur qui peut être interceptée v
| | |
| --- | --- |
| Numéro de commande | 851 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
index 44edabf1f0475a..fc2afbd060c5c2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
@@ -57,7 +57,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 855 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
index b983af10d51600..b09db28a1343f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ Si le dernier élément ouvert est **, l’instruction suivante :
| | |
| --- | --- |
| Numéro de commande | 854 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
index e3d2d3c3c42fb1..61187012925c07 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 878 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
index e437e6c686f2d0..c7e91ca2a5430c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 874 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
index 17977a7cecf67e..8e033c435ff60a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 873 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
index 87795008e67af1..abde7a6553c829 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 877 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
index 123dfcaf734d3b..1608594760bd0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 876 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
index fe55ddeaf3f3d0..28efad79a14b39 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 879 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
index 414cb10691cd9a..ddb955c05e6536 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Si la commande a été exécutée correctement, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 860 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
index 8d22fab5279282..086c84355cc885 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ L’instruction suivante retournera “PI” dans *vNom* et “TextProcess” da
| | |
| --- | --- |
| Numéro de commande | 875 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
index 8c1443fe95fc32..10c7321d04f628 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
@@ -59,6 +59,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 921 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
index cd79456077d18a..b47b7cc4546b54 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ Si un caractère invalide est passé dans *balise*, une erreur est générée.
| | |
| --- | --- |
| Numéro de commande | 853 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
index 2f53bc968728bf..8b4c4f3139dc61 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ Le code suivant :
| | |
| --- | --- |
| Numéro de commande | 858 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
index 3d1ee83f383e4f..9dee99548228a7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
@@ -56,7 +56,7 @@ L'exemple suivant envoie des lettres aux 50 plus mauvais clients puis aux 50 mei
| | |
| --- | --- |
| Numéro de commande | 350 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
index fce1ea5484475e..980d52b060e4c5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ Les images suivantes illustrent les différences entre la zone de l'écran et la
| | |
| --- | --- |
| Numéro de commande | 438 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
index 0fa170155f2302..577704370f64d8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
@@ -61,6 +61,6 @@ Votre application affiche de nombreux graphiques en couleurs. Vous pouvez écrir
| | |
| --- | --- |
| Numéro de commande | 439 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
index 7de8f874867dea..d4bb22b2ce0f65 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen height** retourne la hauteur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 188 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
index 585505f2521652..844e5ac2751141 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Sous Mac OS, **Screen width** retourne la largeur de l'écran principal, c'est-
| | |
| --- | --- |
| Numéro de commande | 187 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
index 29c0deee7139a0..d490e62f3fcdfb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
@@ -102,7 +102,7 @@ Si aucun fichier n’a été sélectionné (par exemple si l’utilisateur a cli
| | |
| --- | --- |
| Numéro de commande | 905 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
index 310d0b52cee0b1..36eabe836c4c60 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
@@ -89,7 +89,7 @@ L’exemple suivant permet de sélectionner le dossier dans lequel toutes les im
| | |
| --- | --- |
| Numéro de commande | 670 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
index 44097ed6c1de2d..0fe03c9380f7bd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
@@ -77,6 +77,6 @@ Après l'exécution des lignes de code suivantes :
| | |
| --- | --- |
| Numéro de commande | 381 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
index d2e75d5a33457e..02ca36e258ca8c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ En supposant que *hList* est une liste dont les éléments ont des numéros de r
| | |
| --- | --- |
| Numéro de commande | 630 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
index 4703d50d689625..5ab853214854ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
@@ -45,7 +45,7 @@ La prise en compte de la validation de la boîte de dialogue diffère selon la p
| | |
| --- | --- |
| Numéro de commande | 956 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
index 1882bf7e777000..fe50df31c3e0d9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
@@ -89,6 +89,6 @@ Voici la liste *hList* telle qu'elle apparaît en mode Application :
| | |
| --- | --- |
| Numéro de commande | 379 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
index 41da8adce01097..d08b4294e5f3a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
@@ -44,6 +44,6 @@ L'exemple suivant stocke le numéro de l'enregistrement courant de la sélection
| | |
| --- | --- |
| Numéro de commande | 246 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
index 379d0325c5226a..c3b625dcfab8f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
@@ -112,6 +112,6 @@ Utilisation des 50 premiers enregistrements courants de la table \[Factures\] po
| | |
| --- | --- |
| Numéro de commande | 368 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
index c6883940736771..5816882e40c032 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
@@ -83,6 +83,6 @@ Le même exemple peut être écrit :
| | |
| --- | --- |
| Numéro de commande | 260 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
index acea370df30a1c..2fb7667559b0b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
@@ -95,6 +95,6 @@ Vous utilisez la syntaxe avec *template* afin d'exporter des champs de différen
| | |
| --- | --- |
| Numéro de commande | 1234 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
index 771682815cff71..35a7b6c5f60599 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
@@ -44,6 +44,6 @@ Référez-vous à l'exemple de la commande [RESOLVE POINTER](resolve-pointer.md)
| | |
| --- | --- |
| Numéro de commande | 308 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
index 65bf4bcba18d9c..b67756d9eaf80a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
@@ -154,6 +154,6 @@ Syntaxe :
| | |
| --- | --- |
| Numéro de commande | 143 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
index ee583bc04b836a..b2d95fab61172d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ Vous souhaitez envoyer un message à tous les utilisateurs, puis à un utilisate
| | |
| --- | --- |
| Numéro de commande | 1632 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
index ba5d7f701bca73..9efb9664658011 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
@@ -87,6 +87,6 @@ Cet exemple illustre l’envoi et la récupération de caractères étendus via
| | |
| --- | --- |
| Numéro de commande | 103 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
index da733a5aec5f64..1f5abcb191b904 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 78 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
index dacf5954fb242b..d82dc736c6ebe6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Reportez-vous à l'exemple de la commande [RECEIVE RECORD](receive-record.md).
| | |
| --- | --- |
| Numéro de commande | 80 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
index cb8056833af79b..942132f7bd4939 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
@@ -62,6 +62,6 @@ L'exemple suivant fait partie d'une méthode formulaire. Ces lignes de code test
| | |
| --- | --- |
| Numéro de commande | 244 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
index fc4c5768795450..9169fa9d47726e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ L'exemple suivant réinitialise la commande de menu d'A propos de 4D :
| | |
| --- | --- |
| Numéro de commande | 316 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
index 2bed32aaa681da..045366afe130d3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1762 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
index 09b2d2e3ae4848..ee2145872e44f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Désactivation globale des assertions :
| | |
| --- | --- |
| Numéro de commande | 1131 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
index e5cd45cfb6d325..55ee57aecbec95 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ L'exemple suivant rend tous les liens N vers 1 automatiques et rétablit en manu
| | |
| --- | --- |
| Numéro de commande | 310 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
index 9a0d20b2781c53..216b6bb9da0d79 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ L'exemple suivant crée un BLOB de 16 Ko et remplit chaque octet avec la valeur
| | |
| --- | --- |
| Numéro de commande | 606 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
index adc3387304cbdd..03b3edb3cb7431 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les "blobs" de la
| | |
| --- | --- |
| Numéro de commande | 1425 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
index 3ce0d8469b5ade..f3ce4af6b1bd0b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Vous voulez ajouter 100 Mo à la taille du cache de votre base. Vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 1399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
index bb03470410e233..3357adab13583e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
@@ -177,7 +177,7 @@ Reportez-vous aux exemples des commandes [RECEIVE BUFFER](receive-buffer.md), [S
| | |
| --- | --- |
| Numéro de commande | 77 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
index 31a628299afc3e..8638c6a314e6fc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
@@ -70,7 +70,7 @@ Création d'un document PDF sous Windows :
| | |
| --- | --- |
| Numéro de commande | 787 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
index 60e56de25d5008..76a16411fdfabe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ Vous souhaitez que le curseur se transforme en .
| | |
| --- | --- |
| Numéro de commande | 385 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
index 45586fd99cd664..ea931bf26f430d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
@@ -65,6 +65,6 @@ Vous souhaitez interdire le déploiement/contraction sur double-clic. Vous pouve
| | |
| --- | --- |
| Numéro de commande | 387 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
index 01de6d421090ee..5324589a422b33 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
@@ -62,6 +62,6 @@ Cette macro construit un nouveau texte qui sera retourné à la méthode appelan
| | |
| --- | --- |
| Numéro de commande | 998 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
index 08b8a13ef1ffd5..cb47fbd8998624 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
@@ -121,6 +121,6 @@ Dans cet exemple complet, nous allons créer par programmation une barre comport
| | |
| --- | --- |
| Numéro de commande | 67 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
index 360a0f084a1160..61d7ad5aa3b46b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
@@ -50,6 +50,6 @@ Utilisation d'une image se trouvant dans le dossier Resources de la base :
| | |
| --- | --- |
| Numéro de commande | 984 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
index c8ba5d23208d99..3773199817e835 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
@@ -43,7 +43,7 @@ Reportez-vous à l'exemple de la commande [Get menu item mark](get-menu-item-mar
| | |
| --- | --- |
| Numéro de commande | 208 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
index 0c04b7c3605ac6..5f4706995240cb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
@@ -40,6 +40,6 @@ Reportez-vous aux exemple de la commande [SET MENU BAR](set-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 982 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
index 36544d5b0d0635..d49544ed46a4ba 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Ce code permet de proposer un menu comportant le libellé des fenêtres ouvertes
| | |
| --- | --- |
| Numéro de commande | 1004 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
index afc121a8bd05e8..8139c20787bcd1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
@@ -63,6 +63,6 @@ Pour plus d’informations sur les propriétés standard des lignes de menus, re
| | |
| --- | --- |
| Numéro de commande | 973 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
index eb68ce80c1b280..39dd5daeb5ffbd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
@@ -85,7 +85,7 @@ Définition du raccourci F4 pour l'élément de menu "Fermer" :
| | |
| --- | --- |
| Numéro de commande | 423 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
index 1e7e926ab1ba2b..22811401771735 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
@@ -42,7 +42,7 @@ Vous pouvez définir le style de l'élément dans le paramètre *styleLigne*. Vo
| | |
| --- | --- |
| Numéro de commande | 425 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
index 0335865a7bdf1e..dd771833340c5d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Si vous omettez le paramètre *process*, **SET MENU ITEM** s'applique à la barr
| | |
| --- | --- |
| Numéro de commande | 348 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
index 640e2708c506f2..18664edddbff5a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ Le nom par défaut est utilisé comme nom de fichier en cas d’exportation de l
| | |
| --- | --- |
| Numéro de commande | 1172 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
index 8c4dab211037cb..093227986bf27f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
@@ -86,7 +86,7 @@ Lorsque toutes les métadonnées sont manipulées via une référence d’élém
| | |
| --- | --- |
| Numéro de commande | 1121 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
index 3e5639fe584e07..134f24caa1b2f2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
@@ -104,7 +104,7 @@ S'il n'y a pas assez de mémoire pour retourner l’image, l'erreur –108 est g
| | |
| --- | --- |
| Numéro de commande | 566 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | error |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
index be63ac14b7bf6d..3cb729a0f92704 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
@@ -52,7 +52,7 @@ Si une copie de l'image est correctement collée dans le conteneur, la variable
| | |
| --- | --- |
| Numéro de commande | 521 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
index 3fc3849dd2203b..9ab940651182bb 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Passez dans le paramètre *groupe* le nom du groupe dont les utilisateurs seront
| | |
| --- | --- |
| Numéro de commande | 845 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
index 40ee6251a7ecec..d293bfec702ae7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
@@ -186,6 +186,6 @@ La méthode du formulaire Print\_List3 est la suivante :
| | |
| --- | --- |
| Numéro de commande | 709 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
index af21c3042eff48..4d9d3bc691b4fd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
@@ -84,7 +84,7 @@ Si la valeur passée pour une *option* est invalide ou si elle n'est pas disponi
| | |
| --- | --- |
| Numéro de commande | 733 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
index 9495771e549d70..98066b97a7b873 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ L'exemple suivant sélectionne l'option **A l'écran** pour afficher le résulta
| | |
| --- | --- |
| Numéro de commande | 364 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
index 9e142081649b14..c976b2f5b466f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ L’exemple suivant permet d’obtenir la taille du papier :
| | |
| --- | --- |
| Numéro de commande | 710 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
index db3ada98a67faa..ef06d7a6441dbe 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
@@ -103,6 +103,6 @@ L'exemple suivant écrit l'instance des variables *v1*, *v2*, *v3* dans le proce
| | |
| --- | --- |
| Numéro de commande | 370 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
index aaba2cf5759754..a9e4c638616e81 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Si la commande est appelée hors du contexte d’une transaction, une erreur est
| | |
| --- | --- |
| Numéro de commande | 661 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
index 917e9d94763006..dd3f1628e15053 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ Lorsque cette méthode est implémentée dans votre application, vous pouvez éc
| | |
| --- | --- |
| Numéro de commande | 396 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
index ab9b5960e02699..86a73aa2d969ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Référez-vous au deuxième exemple de la commande [SET QUERY DESTINATION](set-q
| | |
| --- | --- |
| Numéro de commande | 395 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
index 9974774985b544..37377fefe67a47 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Modifier l'epsilon affecte seulement la comparaison d'égalité des réels. Cela
| | |
| --- | --- |
| Numéro de commande | 623 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
index 98b55443af2960..8552c904a7e4bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Le menu contient alors :
| | |
| --- | --- |
| Numéro de commande | 1305 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
index 8f77540e51f248..baf14ae1b95d67 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ Dans la , vous souhaitez fixer une priorité très haute pour les données scala
| | |
| --- | --- |
| Numéro de commande | 1400 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
index c1b5064c15a974..d7c15bb4df17ec 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
@@ -181,6 +181,6 @@ Vous voulez supprimer tous les noms de tables et de champs personnalisés défin
| | |
| --- | --- |
| Numéro de commande | 601 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
index 0cea7ee4d9c295..a54cc4911d0464 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Si la copie du texte est correctement placée dans le conteneur de données, la
| | |
| --- | --- |
| Numéro de commande | 523 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
index 9d495a24e55a70..6dd0721a920113 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ L'exemple suivant fixe le port série devant recevoir des données et le timeout
| | |
| --- | --- |
| Numéro de commande | 268 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
index 39d4d832ab65da..e927bab43e19dd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Vous souhaitez que, lorsqu’un formulaire est affiché à l’écran, un bip so
| | |
| --- | --- |
| Numéro de commande | 645 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
index 856065b4ebcbc0..890eb9b25f4204 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
@@ -61,7 +61,7 @@ Vous avez créé un dossier "MesMisesAJour" sur votre disque, dans lequel vous a
| | |
| --- | --- |
| Numéro de commande | 1291 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
index cac407cb6360a9..c066186011e593 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Vos utilisateurs sont gérés via une table personnalisée et utilisent le même
| | |
| --- | --- |
| Numéro de commande | 1666 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
index 61e19f425c1fa6..cc3cffbbaf4785 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
@@ -66,6 +66,6 @@ Si vous n'avez pas les privilèges d'accès pour appeler **Set user properties**
| | |
| --- | --- |
| Numéro de commande | 612 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
index 90b788c3f601b2..2562daade0969a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
@@ -64,6 +64,6 @@ La fenêtre apparaît ainsi :
| | |
| --- | --- |
| Numéro de commande | 444 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
index a58c6f93c854f2..13e163cec2d212 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Vous effectuez une saisie dans un formulaire et vous cliquez sur un bouton qui d
| | |
| --- | --- |
| Numéro de commande | 213 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
index cec028ca507a10..424b2e9a7eee80 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ La méthode objet du bouton *bUnBouton* effectue des actions différentes en fon
| | |
| --- | --- |
| Numéro de commande | 543 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
index 2fe5412d247c23..d44c23fbb728a4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Reportez-vous à l'exemple de la commande [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Numéro de commande | 431 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Interdite sur le serveur ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
index 6b91503ca84d89..780dce3b88782c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
@@ -53,7 +53,7 @@ La variable système OK prend la valeur 1 si la commande est correctement exécu
| | |
| --- | --- |
| Numéro de commande | 922 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
index c3a06f65cc6cfa..840395bbef47c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
@@ -38,6 +38,6 @@ L'exemple suivant affiche le process "Clients", s'il était caché auparavant. L
| | |
| --- | --- |
| Numéro de commande | 325 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
index 55800bddf79bb8..3e8c15e00b947b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Reportez-vous à l'exemple de la commande [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Numéro de commande | 433 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
index a76d2fc6d28e9c..9b823f8cf78b0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Voir l'exemple de la commande [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Numéro de commande | 435 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
index 9b37516099b570..7ae4a3cd328562 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 17 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
index f94ab60f534f31..af6e41283efe4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ L'exemple suivant retourne le nombre de colonnes d'une ligne d'un tableau à deu
| | |
| --- | --- |
| Numéro de commande | 274 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
index c53706657f2da4..05e72e3f53914e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
@@ -184,6 +184,6 @@ Cet exemple illustre l'effet des différents types de déclarations :
| | |
| --- | --- |
| Numéro de commande | 782 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
index 8ccbbda19888c0..e3c89b1e783cf8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ Passez dans le paramètre *numInfo* le numéro du type d’information SOAP à c
| | |
| --- | --- |
| Numéro de commande | 784 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
index bbac832191a062..0133c3fe499e6d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
@@ -42,6 +42,6 @@ Vous souhaitez rejeter les nouvelles requêtes reçues par votre serveur Web Ser
| | |
| --- | --- |
| Numéro de commande | 1636 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
index 14f33327da4ad4..c28b0e977f3040 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Cette commande peut être utilisée pour des raisons de sécurité dans la *Mét
| | |
| --- | --- |
| Numéro de commande | 783 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
index 7643ffe34bf4f6..2ca7177cb0e6e2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
@@ -49,6 +49,6 @@ Pour reprendre l’exemple du Web Service “Racine\_carree” fourni dans la de
| | |
| --- | --- |
| Numéro de commande | 781 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
index 7b19568d2f6ed0..23467e16488a9a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ Vous affichez les noms d'une table \[Personnes\] dans une fenêtre flottante. Ce
| | |
| --- | --- |
| Numéro de commande | 229 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
index 9994f3170ab1ab..18b51c1a1dbb42 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
@@ -61,6 +61,6 @@ Après l'exécution du code suivant :
| | |
| --- | --- |
| Numéro de commande | 391 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
index 19638963a039f6..f468d7394e3a7b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Ajout de noms propres au dictionnaire utilisateur :
| | |
| --- | --- |
| Numéro de commande | 1214 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
index f7db32f24aeb4a..f996a0dcf88bc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
@@ -59,7 +59,7 @@ On souhaite compter le nombre de fautes potentielles dans un texte :
| | |
| --- | --- |
| Numéro de commande | 1215 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
index d9407f03e2160d..7c4f5069573194 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ La vérification débute par le premier mot du champ ou de la variable. Si un mo
| | |
| --- | --- |
| Numéro de commande | 900 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
index 8b4c9d688b85a6..61f937d88c9cc2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ On souhaite afficher la langue du dictionnaire courant :
| | |
| --- | --- |
| Numéro de commande | 1205 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
index 7fc661c6238595..dd2fcf6bf9a693 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Vous avez placé "fr-classique+reforme1990.aff" et "fr-classique+reforme1990.dic
| | |
| --- | --- |
| Numéro de commande | 1204 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
index 05de53cdae08bf..ef359870e3868d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Chargement du dictionnaire "fr-classique" présent dans le dossier Hunspell :
| | |
| --- | --- |
| Numéro de commande | 904 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
index ad5be4d801d28a..3a921b92f03743 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ Le paramètre *séparateur* peut être une chaîne de plusieurs caractères :
| | |
| --- | --- |
| Numéro de commande | 1554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
index cb7a5058edf437..764e3ea9ebbe7d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 824 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
index 28d0608ee13994..be1bc4e4952bc3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Cet exemple retournera dans la variable 4D *vName* les noms (ename) stockés dan
| | |
| --- | --- |
| Numéro de commande | 821 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
index cbf52994d645dd..e44a322ecb71af 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
@@ -63,7 +63,7 @@ Si le script est correctement exécuté (aucune erreur rencontrée), la variable
| | |
| --- | --- |
| Numéro de commande | 1089 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
index 92602b30d2c065..67dbaf85ce051c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
@@ -164,7 +164,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 820 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
index 5ef13b96a46191..b7c6129fa718a5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1065 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
index 54af65415dbda7..2e13cacbb4b98d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Si l’export s’est déroulé correctement, la variable *OK* prend la valeur 1
| | |
| --- | --- |
| Numéro de commande | 1064 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
index e7018320e12099..73a9b45697103b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ Cette commande vous permet de contrôler la source de données courante, génér
| | |
| --- | --- |
| Numéro de commande | 990 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
index 75df4dc3c93de0..44ce11dee2bfc0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ Si la commande est correctement exécutée, la variable système OK prend la val
| | |
| --- | --- |
| Numéro de commande | 989 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
index dd5acffd1f2985..470bc2460d1a58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ Les deux derniers paramètres ne sont remplis que si l’erreur provient de la s
| | |
| --- | --- |
| Numéro de commande | 825 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
index 541663470f20d7..456ecbe8c46093 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 819 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
index 3be6310f9ad3f5..521735f3333c2f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 822 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
index ca8257c8a73a3d..72e1c934fc73ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
@@ -209,7 +209,7 @@ Si la connexion est correctement établie, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 817 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
index e47b95a7ea8934..23ec3cb5914ee7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Si la connexion a été correctement refermée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 872 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
index 20ca5c9069d367..808dbcdf649fd0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
@@ -50,7 +50,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 818 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
index 83789318995b52..1bce00f8d26c2c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
@@ -83,7 +83,7 @@ Si la commande a été correctement exécutée, la variable système OK retourne
| | |
| --- | --- |
| Numéro de commande | 823 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
index 1917ad1acd7a50..b668fb00415cb2 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Par exemple, Hypoténuse (4;3) retourne 5.
| | |
| --- | --- |
| Numéro de commande | 539 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
index 66bff789840310..4639d6fb433e34 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
@@ -73,7 +73,7 @@ Vous souhaitez mettre à jour les références incluses dans la sélection de te
| | |
| --- | --- |
| Numéro de commande | 1285 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
index 15dcacaf1c5ba6..3396aee3276001 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
@@ -71,6 +71,6 @@ Vous souhaitez insérer l’heure courante au début du texte et la figer avant
| | |
| --- | --- |
| Numéro de commande | 1282 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
index d1d2605d4ac893..a87edd8d04e46b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
@@ -104,7 +104,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1094 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
index 2e415b03ebd535..96929d6cae55ed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
@@ -107,7 +107,7 @@ Vous souhaitez afficher des commandes d’un menu contextuel en fonction du type
| | |
| --- | --- |
| Numéro de commande | 1286 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
index 3f7cc98d6b9dca..0a7ffeaa2fe3b7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ Vous souhaitez exécuter une méthode 4D en réponse à un clic sur un lien util
| | |
| --- | --- |
| Numéro de commande | 1287 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
index 7c41b8e3e25791..f05ab37b59d41c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Passez dans *option* le code de l’option à lire. La commande retourne dans *v
| | |
| --- | --- |
| Numéro de commande | 1290 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
index d0840f0df9b9d9..5b76c710b406ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
@@ -113,7 +113,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1092 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
index f24c9a4a8a1699..25c1a9cc628604 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
@@ -65,7 +65,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1116 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
index f8dcdd105c6a01..69a548d2d3de8c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
@@ -76,6 +76,6 @@ Sur un événement double-clic, vous vérifiez que vous êtes bien en présence
| | |
| --- | --- |
| Numéro de commande | 1288 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
index 5884c01b7b3b3a..c416cf2c7784b3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
@@ -90,7 +90,7 @@ Vous souhaitez remplacer le texte sélectionné par la valeur d'un champ :
| | |
| --- | --- |
| Numéro de commande | 1281 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
index 3d6df2d01347b5..4857b5699ae045 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ Vous souhaitez insérer un lien vers le site Web de 4D à la place de la sélect
| | |
| --- | --- |
| Numéro de commande | 1280 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
index ff0d3e85d5c390..b53126e4ed993b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
@@ -106,7 +106,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1093 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
index 9843f365d0dca4..4801c8c5136888 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ Le code suivant vous permet de basculer le mode d’affichage de la zone :
| | |
| --- | --- |
| Numéro de commande | 1289 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
index 2eb7f207feb5e0..429aac464a4dd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ A noter qu’en cas d’erreur, la variable n’est pas modifiée. Lorsqu’une
| | |
| --- | --- |
| Numéro de commande | 1136 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
index af299f6b981b21..c8a752b66205f4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Reportez-vous à l'exemple de la commande [ST SET PLAIN TEXT](st-set-plain-text.
| | |
| --- | --- |
| Numéro de commande | 1115 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
index de258931563616..ed980128deb89b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Vous souhaitez lancer/arrêter le suivi et revoir les activités de données 4D
| | |
| --- | --- |
| Numéro de commande | 1712 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
index d8349ada5a286e..e970fbbfdecc0d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Si le serveur SQL a été correctement lancé, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 962 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
index 5af3db1b934482..8d369e909df9ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A compter de la version 11 de 4D, vous pouvez imbriquer plusieurs transactions (
| | |
| --- | --- |
| Numéro de commande | 239 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
index 2efb5cb288e5d1..d42ab40d1eeec1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
@@ -66,6 +66,6 @@ Cet exemple vous permet d’obtenir l’écart type d’une série de valeurs pl
| | |
| --- | --- |
| Numéro de commande | 26 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
index 0770ead08b2ca6..4640a88e4494ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Voir l'exemple de **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Numéro de commande | 1721 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
index 1a6f69f4e75283..467490132a7c96 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 963 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
index bf5663e565e626..d8b51cf34de249 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Cet exemple montre la manière standard de définir les valeurs de **Storage** :
| | |
| --- | --- |
| Numéro de commande | 1525 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
index c8ab89b634a3bf..bec37a76ebf9c7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
@@ -51,7 +51,7 @@ La variable système OK prend la valeur 1 si la ressource est trouvée, sinon el
| | |
| --- | --- |
| Numéro de commande | 511 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
index 646fcccbd0a3da..2f7701c31e59f0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
@@ -70,6 +70,6 @@ L’exemple suivant permet de savoir si la méthode est appelée depuis un compo
| | |
| --- | --- |
| Numéro de commande | 489 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
index 7ce2ee7c694efb..cfc75ecea2ba4d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
@@ -69,6 +69,6 @@ La méthode projet suivante ajoute au tableau de type texte ou alpha, dont le po
| | |
| --- | --- |
| Numéro de commande | 12 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
index 0a07067943c6b4..65f42f56fe6763 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
@@ -62,6 +62,6 @@ La commande **Subtotal** permet d'afficher des calculs de sous-totaux dans des f
| | |
| --- | --- |
| Numéro de commande | 97 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
index e54b5d03ef44d8..bc8017997b97bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Cet exemple vous permet d’obtenir la somme des carrés des valeurs placées da
| | |
| --- | --- |
| Numéro de commande | 28 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
index 8ecc91f0fd0db1..1eb1b546696cce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
@@ -78,7 +78,7 @@ Pour un exemple de calcul utilisant un attribut de champ objet, veuillez vous re
| | |
| --- | --- |
| Numéro de commande | 1 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
index 21011e78734e92..41f0aae5a48bb5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
@@ -30,6 +30,6 @@ Pour plus d'informations, veuillez vous référer à la section [Suspendre des t
| | |
| --- | --- |
| Numéro de commande | 1385 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
index c45009b9fe4c3f..4f676ba0542947 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
@@ -58,6 +58,6 @@ L’exemple suivant permet d’afficher “Hello World” dans une image 4D :
| | |
| --- | --- |
| Numéro de commande | 1017 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
index 047673a6e83206..4d6527639f59ce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -58,7 +58,7 @@ Si *objetImage* ne contient pas une image SVG valide, la commande retourne une c
| | |
| --- | --- |
| Numéro de commande | 1054 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
index 0fec41307ab9f8..6680965745f4c4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
@@ -46,6 +46,6 @@ Tous les ID d’éléments dont le rectangle englobant est en intersection avec
| | |
| --- | --- |
| Numéro de commande | 1109 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
index 51e6db33044a31..3f2b6f8aad0c41 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ Pour plus d’informations sur les attributs SVG, reportez-vous à la descriptio
| | |
| --- | --- |
| Numéro de commande | 1056 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
index cb5772025b3c3f..5ab358c7827bea 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
@@ -100,7 +100,7 @@ Modification du contenu d’un élément de type texte :
| | |
| --- | --- |
| Numéro de commande | 1055 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
index 70798e209d76e1..fdbd3afd82cf13 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ Si la commande est exécutée en-dehors du contexte d'un formulaire ou si un *ob
| | |
| --- | --- |
| Numéro de commande | 1108 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
index b6303f92cc7d8f..2c7f76026babd7 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
@@ -54,6 +54,6 @@ Vous passez dans *type* un code représentant le type de dossier. 4D fournit les
| | |
| --- | --- |
| Numéro de commande | 487 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
index d58cf75ba6e9e7..a7c56a69fc6ebd 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
@@ -152,6 +152,6 @@ retourne un objet contenant les informations suivantes :
| | |
| --- | --- |
| Numéro de commande | 1571 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
index 9ea48a97259c23..b86ff7a7d7710b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Cette méthode de maintenance permet de demander le compactage du fichier de don
| | |
| --- | --- |
| Numéro de commande | 1127 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
index 62aa73c7e6cc92..1c0870ac988095 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ La méthode suivante est un exemple de méthode générique qui affiche les enre
| | |
| --- | --- |
| Numéro de commande | 256 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
index 9103755cf508d8..cf260eca450925 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
@@ -63,6 +63,6 @@ Dans l'exemple suivant, la variable *numTable* est égale au numéro de la table
| | |
| --- | --- |
| Numéro de commande | 252 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
index f7ea362c226a70..35603baf50802a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 19 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
index 27382eb039bea8..e7905fcadc455d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-dat
| | |
| --- | --- |
| Numéro de commande | 486 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
index 37ffc6a398ca18..b55e7a3036c618 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
@@ -55,6 +55,6 @@ L'exemple suivant teste la présence du document “Journal” dans le dossier d
| | |
| --- | --- |
| Numéro de commande | 476 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
index 415c51a202037d..c72f0271d847c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
@@ -51,6 +51,6 @@ Cet exemple permet de connaître l’état d’un traitement (en l’occurrence,
| | |
| --- | --- |
| Numéro de commande | 652 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
index a8bbb64ef12e48..1318478a7a23ab 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
@@ -113,6 +113,6 @@ Vous devez imprimer dans une zone de 400 pixels de large un texte d’un maximum
| | |
| --- | --- |
| Numéro de commande | 1149 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
index 8e6e390518b251..4094db4d533e6a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
@@ -111,6 +111,6 @@ Après l'exécution de ce code :
| | |
| --- | --- |
| Numéro de commande | 554 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
index 01ca0fd3040b8b..5a90d5dec333f3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
@@ -86,6 +86,6 @@ Exemple permettant à l’utilisateur de désigner l’emplacement du fichier à
| | |
| --- | --- |
| Numéro de commande | 1237 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
index d5a8c7f7358031..c8785ad252b36b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Numéro de commande | 1805 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
index ce264987352ca4..07ddff4ca3c7be 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Référez-vous à l'exemple de la fonction [Milliseconds](milliseconds.md).
| | |
| --- | --- |
| Numéro de commande | 458 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
index 02e9a652150a09..21560d8dc4ca75 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ L'exemple suivant affiche une boîte de dialogue d'alerte avec le message “468
| | |
| --- | --- |
| Numéro de commande | 180 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
index e1c72db9069b9f..44a73ecd104f22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
@@ -57,6 +57,6 @@ Vous pouvez exprimer toute valeur numérique sous forme d’heure :
| | |
| --- | --- |
| Numéro de commande | 179 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
index b49780ea491ba9..bbeeb2a95ed475 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Résultat :
| | |
| --- | --- |
| Numéro de commande | 1445 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
index 35b6fd1f1650a3..dbfd15b7109a7e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1016 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
index a3fe56748c463d..400de2704cca7c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
@@ -67,6 +67,6 @@ La méthode projet DEBUG est listée ci-dessous :
| | |
| --- | --- |
| Numéro de commande | 157 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
index e61279526fb894..430b0ea949191a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 961 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
index 74f8b739fcfc12..65a648399536b1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
@@ -77,6 +77,6 @@ Voici un exemple de recadrage (l’image est affichée dans le formulaire avec l
| | |
| --- | --- |
| Numéro de commande | 988 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
index 61b93e616150f5..faebe01971e9b0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
@@ -57,6 +57,6 @@ Utilisez la fonction **Trigger event** pour structurer vos triggers comme ci-des
| | |
| --- | --- |
| Numéro de commande | 369 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
index 6d86aa9f72d4d6..d08222748477d1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Reportez-vous à la description des *Triggers en cascade*.
| | |
| --- | --- |
| Numéro de commande | 398 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
index 3f5a410c485f62..615e7c38579988 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
@@ -44,6 +44,6 @@ Le numéro de table et d'enregistrement pour l'enregistrement concerné par l'é
| | |
| --- | --- |
| Numéro de commande | 399 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
index 91d369a203f2b8..3027978cea601b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
@@ -35,6 +35,6 @@ L'exemple suivant met la variable *vbOptions* à Vrai :
| | |
| --- | --- |
| Numéro de commande | 214 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
index a70ad6c542ac29..6885e2cfb72a37 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ L'exemple suivant illustre la manière dont **Trunc** fonctionne dans différent
| | |
| --- | --- |
| Numéro de commande | 95 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
index 834a241ccf8bb3..f291b948af8c24 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 1051 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
index 6a5a54a747b723..271aa8b59fd237 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
@@ -151,6 +151,6 @@ Référez-vous à l'exemple de la commande [APPEND DATA TO PASTEBOARD](append-da
| | |
| --- | --- |
| Numéro de commande | 295 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
index 30418a5e49b1a9..6f11759121c6b8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
@@ -64,6 +64,6 @@ Cet exemple compare les différents résultats de la commande [Undefined](undefi
| | |
| --- | --- |
| Numéro de commande | 82 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
index ccda4c9c473135..2435c04a276a4f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
@@ -56,6 +56,6 @@ L'exemple suivant ajoute des enregistrements à l'ensemble des meilleurs clients
| | |
| --- | --- |
| Numéro de commande | 120 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
index a486cf167f6141..836e2006ff04c3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Si les enregistrements contiennent une quantité importante de données, de cham
| | |
| --- | --- |
| Numéro de commande | 212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
index 87a1998cc2a6bb..01d16d7eac6cce 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Si le client est correctement désinscrit, la variable système OK prend la vale
| | |
| --- | --- |
| Numéro de commande | 649 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
index c3477365757ae6..56933253f13d77 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Reportez-vous à l'exemple de [Lowercase](lowercase.md).
| | |
| --- | --- |
| Numéro de commande | 13 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
index daa2b31cf4e7d3..69da5ee374b7a0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
@@ -55,7 +55,7 @@ La variable système OK prend la valeur 1 si le filtre est correctement chargé,
| | |
| --- | --- |
| Numéro de commande | 205 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
index 623a6e20b176b4..62e0184d12df2c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
@@ -36,7 +36,7 @@ Différents événements peuvent rendre une sélection temporaire obsolète : la
| | |
| --- | --- |
| Numéro de commande | 332 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
index 0e5ca85fd5591c..7b38300dffb06d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
@@ -43,7 +43,7 @@ L'exemple suivant utilise [LOAD SET](load-set.md) pour charger un ensemble des s
| | |
| --- | --- |
| Numéro de commande | 118 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Change l'enregistrement courant ||
| Change la sélection courante ||
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
index d4f3f3d7c7a9f3..674ab0c7f21b5b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ L'exemple suivant recherche des factures. Si l'utilisateur courant est dans le g
| | |
| --- | --- |
| Numéro de commande | 338 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
index a5f7269f45b938..13534c424b483a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
@@ -36,7 +36,7 @@ Ce principe permet de conserver une sauvegarde des utilisateurs parmi les donné
| | |
| --- | --- |
| Numéro de commande | 849 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
index 7470926e53ff77..6a3fcc93cebc9b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ Dans la [On REST Authentication database method](on-rest-authentication-database
| | |
| --- | --- |
| Numéro de commande | 638 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
index cd6cb195c219a2..659e960dfa3fad 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
@@ -37,7 +37,7 @@ A noter que lorsque OK vaut 0, la transaction est automatiquement annulée en in
| | |
| --- | --- |
| Numéro de commande | 240 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
index 0e7924d6987593..0ad69836398e7f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ Vous souhaitez obtenir la somme de toutes les valeurs numériques dans une colle
| | |
| --- | --- |
| Numéro de commande | 1509 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
index 7cae435c6f6b16..5e3bfcad3a6519 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
@@ -136,7 +136,7 @@ Lorsque ces méthodes ont été ajoutées à votre application, vous pouvez écr
| | |
| --- | --- |
| Numéro de commande | 532 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
index 33b23a8477d4f6..49ee2e520ee8d0 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
@@ -65,6 +65,6 @@ L'exemple suivant récupère un tableau process depuis le process désigné par
| | |
| --- | --- |
| Numéro de commande | 635 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
index 658908a908b523..f2cafd0796543e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Cet exemple vous permet d’obtenir la variance des valeurs placées dans un tab
| | |
| --- | --- |
| Numéro de commande | 27 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
index f3c87ad358415d..724aa6c518b00c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 1008 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
index ca87c17b217edd..71bf688dd32210 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
@@ -174,7 +174,7 @@ Si la méthode de rétro-appel passée n’existe pas, la vérification n’est
| | |
| --- | --- |
| Numéro de commande | 939 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
index 13cf4529b0a02d..b4279af24eb536 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Cet exemple compare un hash de mot de passe créé par la commande [Generate pas
| | |
| --- | --- |
| Numéro de commande | 1534 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
index 01359837a35611..d3336c26799b05 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Ce test permet d’exécuter du code différent selon que la version est une app
| | |
| --- | --- |
| Numéro de commande | 495 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
index 01e40214b7bab6..9d8a8cc7c2521a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
@@ -103,7 +103,7 @@ Votre application comprend des opérations par lots qui sont exécutées la nuit
| | |
| --- | --- |
| Numéro de commande | 472 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
index 6b4576e045cb95..0450ae6390faa9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ A l'aide de la zone de défilement *ttVolumes*, vous voulez afficher la liste de
| | |
| --- | --- |
| Numéro de commande | 471 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
index 1151266baab7f6..77bcb4cfcd9a01 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1026 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
index f1a15784dde80f..b0da98cde4cc30 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
@@ -68,6 +68,6 @@ Le code suivant pourrait être associé à un bouton 3D avec pop up menu libell
| | |
| --- | --- |
| Numéro de commande | 1049 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
index 50ce5344349c4c..7dd9834c682064 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ Vous pouvez alors évaluer le code JavaScript depuis 4D :
| | |
| --- | --- |
| Numéro de commande | 1029 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
index 36efb5f17148c5..cb2eeb1ade5934 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ La fonction JavaScript "getCustomerInfos" reçoit un identifiant numérique en p
| | |
| --- | --- |
| Numéro de commande | 1043 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
index 97676786f95ccf..80545f0b9879c6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ La commande retourne Vrai si un URL existe et Faux sinon. Cette commande permet
| | |
| --- | --- |
| Numéro de commande | 1027 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
index 31620cf6f843a5..5d296bf74018de 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ La page affichée est l’URL "www.apple.com" et la page "www.4d.com" est en cou
| | |
| --- | --- |
| Numéro de commande | 1025 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
index d829a471113119..07b22ab717c848 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET EXTERNAL LINKS FILTERS](wa-s
| | |
| --- | --- |
| Numéro de commande | 1033 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
index 693559b05190c9..6bfd75d7584fdc 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le contexte des événements fo
| | |
| --- | --- |
| Numéro de commande | 1035 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
index 590a0891702197..dc49f19f127821 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
@@ -39,6 +39,6 @@ Il est judicieux d’appeler cette commande dans le cadre de l’événement for
| | |
| --- | --- |
| Numéro de commande | 1034 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
index 7ed9445cf288da..d352995348271d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide si le contenu de la page courante n’e
| | |
| --- | --- |
| Numéro de commande | 1038 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
index 0f63e801f35f21..37c2d80db78489 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Cette commande retourne une chaîne vide s’il n’y a pas de titre disponible
| | |
| --- | --- |
| Numéro de commande | 1036 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
index 597a74dbf6d3bc..0292e98c324586 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
@@ -42,6 +42,6 @@ Passez dans le paramètre *valeur* une variable devant recevoir la valeur couran
| | |
| --- | --- |
| Numéro de commande | 1042 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
index ff42cde6df250f..a7f918241af484 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Les filtres sont installés par la commande [WA SET URL FILTERS](wa-set-url-filt
| | |
| --- | --- |
| Numéro de commande | 1031 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
index 54fcce2c65bdf6..ccbdf5b2b25d66 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ S’il est passé, le paramètre *tabTitres* contient la liste des noms de fenê
| | |
| --- | --- |
| Numéro de commande | 1048 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
index bd5774b6fd29f7..15382b6f90154e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL précédent, la commande ne fait rien. Vous pouvez te
| | |
| --- | --- |
| Numéro de commande | 1021 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
index 2f712e92555d80..26e121e140e3e3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ S’il n’y a pas d’URL suivant (c’est-à-dire si l’utilisateur n’a jam
| | |
| --- | --- |
| Numéro de commande | 1022 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
index 2a499f834ae06d..9f3ff10b139b58 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Cette commande a le même effet que la modification de la valeur de la variable
| | |
| --- | --- |
| Numéro de commande | 1020 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
index d9305985936b84..5de6fffd614cc6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1736 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
index 4ac336f921d35c..a4e4fa35eb1cd1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1023 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
index 9a6060fd9f9109..9e6f8e0b73bd16 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ La variable système OK est définie sur 0 si le timeout a été atteint ou si l
| | |
| --- | --- |
| Numéro de commande | 1727 |
-| Thread safe | ✗ |
+| Thread safe | no |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
index 3c694da3af6704..3a11a336ad6272 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
@@ -78,6 +78,6 @@ Cet exemple combine des filtrages de sites et de liens externes :
| | |
| --- | --- |
| Numéro de commande | 1032 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
index c5733af429e6d0..017cb9c1473f74 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
@@ -50,6 +50,6 @@ Affichage de la phrase "Hello world !" et définition d’un URL de base "file:/
| | |
| --- | --- |
| Numéro de commande | 1037 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
index ffe742510dc2e0..19c7e3e6dd39f9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ Vous souhaitez autoriser le déposer d'URLs dans la zone Web 'myarea' :
| | |
| --- | --- |
| Numéro de commande | 1041 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
index 30eb2a7a8f9d18..f0b0dc7c83b7ff 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
@@ -136,6 +136,6 @@ Vous souhaitez interdire des adresses IP spécifiques :
| | |
| --- | --- |
| Numéro de commande | 1030 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
index d7d92b4979dc47..4da666f316d92d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Numéro de commande | 1024 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
index ca0d135c2b2cd7..e5faf54d7056ac 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1039 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
index 40fc4ee17897fe..d7443cc2c3778a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Sous Windows, la portée de cette commande est globale : le paramétrage est con
| | |
| --- | --- |
| Numéro de commande | 1040 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
index 1a2d96564404c2..4a91554cd3992f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Reportez-vous à l'exemple de la commande [WEB GET BODY PART](web-get-body-part.
| | |
| --- | --- |
| Numéro de commande | 1211 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
index a7c1211962565c..dab4d67f6f0088 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Voici le code de la méthode GetFile :
| | |
| --- | --- |
| Numéro de commande | 1212 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
index b53fcef91ec06d..27b191fb561f10 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Si cette commande est appelée hors du contexte d’une session Web, elle retour
| | |
| --- | --- |
| Numéro de commande | 1162 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
index bfe1be4d6f24f3..fd21ccb97ca1a6 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Lorsque le formulaire est soumis au serveur Web, la variable $texteRequete reço
| | |
| --- | --- |
| Numéro de commande | 814 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
index 0489e059ab9c94..33aec6b1a2a868 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
@@ -122,6 +122,6 @@ A titre indicatif, voici une liste non exhaustive des champs HTTP pouvant être
| | |
| --- | --- |
| Numéro de commande | 697 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
index dacc13ae931c18..de0e096ce17d0e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Lorsque vous utilisez le *sélecteur* Web debug log, vous pouvez récupérer une
| | |
| --- | --- |
| Numéro de commande | 1209 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
index 3cd0cf80d1e6ab..9c6bdf0276a915 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
@@ -132,6 +132,6 @@ $webServerInfo:=WEB Get server info(True)
| | |
| --- | --- |
| Numéro de commande | 1531 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
index c3d63134ce539c..c2ae01d50a34ee 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
@@ -66,6 +66,6 @@ Vous pouvez envoyer la page "stats.shtm" via un lien URL ou à l'aide de command
| | |
| --- | --- |
| Numéro de commande | 658 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
index e4f707e7307a47..fee413c5cb393a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
@@ -65,6 +65,6 @@ On obtient alors :
| | |
| --- | --- |
| Numéro de commande | 683 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
index c227059ce073c6..aeb5e93e875576 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
@@ -31,6 +31,6 @@ Cette commande permet par exemple, le cas échéant, de refuser les tentatives d
| | |
| --- | --- |
| Numéro de commande | 698 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
index c1571b260be57c..3d7f6fbc5c3e7a 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Vous souhaitez tester si le serveur Web de 4D est lancé :
| | |
| --- | --- |
| Numéro de commande | 1313 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
index 6910df7b397103..424bb671ae2aed 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Après l’exécution de cette commande, si un client Web envoie une requête ut
| | |
| --- | --- |
| Numéro de commande | 1208 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
index dc2a004d9d2085..1bf9fd8852f65c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ Le paramètre *dateExp* reçoit la date d’expiration et le paramètre *heureEx
| | |
| --- | --- |
| Numéro de commande | 1207 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
index c8b161cee97d81..5b722f04fbdce3 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
@@ -48,6 +48,6 @@ Reportez-vous à l’exemple de la routine [PICTURE TO BLOB](picture-to-blob.md)
| | |
| --- | --- |
| Numéro de commande | 654 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
index 4e94c28f1d7320..fe476487e39a9c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
@@ -54,7 +54,7 @@ Si le fichier à envoyer existe et si le timeout n’est pas dépassé, la varia
| | |
| --- | --- |
| Numéro de commande | 619 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
index 1865040bc3492c..d74515a2adbbe1 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
@@ -61,6 +61,6 @@ Dans la [On Web Connection](./on-web-connection-database-method.md), placez les
| | |
| --- | --- |
| Numéro de commande | 659 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
index cc00c2969d8ffa..0cfe8dba9fc96c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
@@ -85,6 +85,6 @@ Cet exemple illustre l’emploi de l’option chunked avec la commande **WEB SEN
| | |
| --- | --- |
| Numéro de commande | 815 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
index 23e2554e92e362..4e7359eb830520 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
@@ -49,6 +49,6 @@ La méthode suivante :
| | |
| --- | --- |
| Numéro de commande | 677 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
index 59eb136b3dc86f..91b233ecd831f8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ Authentification auprès d’un Web Service situé derrière un proxy :
| | |
| --- | --- |
| Numéro de commande | 786 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
index 34f95514c0edb5..427f2c5d0d7c29 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
@@ -154,7 +154,7 @@ Si la requête est correctement acheminée et que le Web Service l’a acceptée
| | |
| --- | --- |
| Numéro de commande | 778 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
index 18c301e8797620..8fb8d6475d50a8 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ Une chaîne vide est retournée lorsqu’aucune information n’est disponible,
| | |
| --- | --- |
| Numéro de commande | 780 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
index ed28b93174d3e2..f000c04a659ce4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
@@ -55,6 +55,6 @@ Imaginons un Web Service retournant l’heure courante dans n’importe quelle v
| | |
| --- | --- |
| Numéro de commande | 779 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
index c99d3efd381b9e..fff371fa520fd5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
@@ -67,6 +67,6 @@ Utilisation de la version 1.2 du protocole SOAP :
| | |
| --- | --- |
| Numéro de commande | 901 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
index f1b82bf445e794..08732dc5562ef5 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
@@ -76,6 +76,6 @@ Cet exemple définit deux paramètres :
| | |
| --- | --- |
| Numéro de commande | 777 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
index 5bbd0294f50363..2a0456f2cb28c9 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Pour ne plus envoyer *homePage* comme page d’accueil pour le process Web coura
| | |
| --- | --- |
| Numéro de commande | 639 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
index efa89950c12c8d..e6304e61dab18f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
@@ -70,6 +70,6 @@ Si vous ne spécifiez pas de statut, celui-ci est automatiquement HTTP/1.0 200 O
| | |
| --- | --- |
| Numéro de commande | 660 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
index d115a66e538143..8b50fa131e9996 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
@@ -86,6 +86,6 @@ Voici un exemple d'entrée enregistrée dans le fichier d'historique :
| | |
| --- | --- |
| Numéro de commande | 5 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
index c133bccd9210dc..8fe27c86fdde78 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
@@ -43,7 +43,7 @@ Si vous passez un chemin d'accès invalide, une erreur liée à la gestion de fi
| | |
| --- | --- |
| Numéro de commande | 634 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | error |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
index 30b0f76caaacde..724ec6a7310971 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Si le serveur Web est correctement démarré, OK prend la valeur 1, sinon OK pre
| | |
| --- | --- |
| Numéro de commande | 617 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
index 9365fb2c90901f..6d9f8f873a6c46 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Si le serveur Web n'était pas lancé, la commande ne fait rien.
| | |
| --- | --- |
| Numéro de commande | 618 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
index 568624a56e88e0..c92d440fbc3ffa 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Exemple de *Méthode base Sur authentification Web* en mode Digest
| | |
| --- | --- |
| Numéro de commande | 946 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
index a2c5036b1794a7..0eb405a6632b4b 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la commande [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Numéro de commande | 445 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
index ba6b365704bc75..4c1baf8a82521d 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ La méthode projet suivante place en "mosaïque" toutes les fenêtres ouvertes (
| | |
| --- | --- |
| Numéro de commande | 442 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
index dc3dfe4e1464a8..c989baca1dc362 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Si vous omettez le paramètre *fenêtre*, **Window process** retourne le numéro
| | |
| --- | --- |
| Numéro de commande | 446 |
-| Thread safe | ✗ |
+| Thread safe | no |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
index b49ee83942b8a4..a809a3878fc09f 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 563 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
index 295cd98630c47a..9a8ea09e79e6bf 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ Reportez-vous à l'exemple de la commande [Shift down](shift-down.md).
| | |
| --- | --- |
| Numéro de commande | 562 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
index 643c8c62899f08..1e8f3439d4db22 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
@@ -52,7 +52,7 @@ Si l’exécution de la commande est correcte, la variable système Document con
| | |
| --- | --- |
| Numéro de commande | 680 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK, Document |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
index 5ccd1fc68b2f51..a5623339a15369 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
@@ -78,6 +78,6 @@ Exemple de document XML :
| | |
| --- | --- |
| Numéro de commande | 1091 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
index b3dc0134cab521..2edf35b74af8e4 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Si la commande a été correctement exécutée, la variable système OK prend la
| | |
| --- | --- |
| Numéro de commande | 732 |
-| Thread safe | ✓ |
+| Thread safe | yes |
| Modifie les variables | OK |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
index f8babe76f6fedc..3ee4637a40ab1e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ Passez dans *sélecteur* une des constantes du thème *XML* ci-dessous, indiquan
| | |
| --- | --- |
| Numéro de commande | 1096 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
index 12f99747fbeef9..e04c8285da4399 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
@@ -71,6 +71,6 @@ Insertion d’une image SVG :
| | |
| --- | --- |
| Numéro de commande | 1090 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
index a09f3a0fdd3398..16f92c387ef414 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Reportez-vous à l'exemple de la fonction [Current date](current-date.md).
| | |
| --- | --- |
| Numéro de commande | 25 |
-| Thread safe | ✓ |
+| Thread safe | yes |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/license-info.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/license-info.md
index 5202784c21cfaa..0ce64bb6a8060e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/license-info.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/license-info.md
@@ -142,9 +142,9 @@ Vous souhaitez obtenir des informations sur votre licence 4D Server courante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1489 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1489 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
index 4d23d3b065c780..0e85e580e09767 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,7 +49,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
+| lk hor scrollbar height | 3 | Hauteur en pixels (peut seulement être lue)
S'applique à : List box |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ Dans le paramètre *property*, passez une constante indiquant la propriété don
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Largeur en pixels (peut seulement être lue)
S'applique à : List box |
\* Ces propriétés ne s'appliquent qu'aux colonnes de la list box ; si vous passez une list box en paramètre avec une de ces propriétés, **LISTBOX Get property** retourne -1, ou une chaîne vide, selon la *property* passée.
@@ -105,9 +104,9 @@ Soit une list box "MyListbox", si vous exécutez l'instruction suivante :
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 917 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | --- |
+| Numéro de commande | 917 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
index dcdd61cc76c92f..e8ee0510a1d0ae 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk column max width | 26 | Propriété **[Largeur maxi](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)**
S'applique à : Colonne \* |
| lk column min width | 25 | Propriété **[Largeur mini](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)**
S'applique à : Colonne \* |
| lk column resizable | 15 | Propriété **[Redimensionnable](../FormObjects/properties_ResizingOptions.md#resizable)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
| lk detail form name | 19 | Propriété **[Nom formulaire détaillé](../FormObjects/properties_ListBox.md#detail-form-name)** pour list box de type sélection
S'applique à : List box |
| lk display footer | 8 | Propriété **[Afficher pieds](../FormObjects/properties_Footers.md#display-footers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
| lk display header | 0 | Propriété **[Afficher en-têtes](../FormObjects/properties_Headers.md#display-headers)**
S'applique à : List box
Valeurs possibles :
lk no (0) : caché
lk yes (1) : affiché |
@@ -47,21 +49,17 @@ Passez dans les paramètres *property* et *value* respectivement la propriété
| lk font style expression | 24 | Propriété **[Expression style](../FormObjects/properties_Text.md#style-expression)** pour les list box de type sélection d'enregistrements, collection ou entity selection
S'applique à : List box ou colonne |
| lk hide selection highlight | 16 | Propriété **[Cacher surlignage sélection](../FormObjects/properties_Appearance.md#hide-selection-highlight)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk highlight set | 27 | Nom de l'**[Ensemble surlignage](../FormObjects/properties_ListBox.md#highlight-set)** pour list box de type sélection
S'applique à : List box |
-| lk hor scrollbar height | 3 | Hauteur en pixels |
| lk meta expression | 34 | Propriété **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** pour les list box de type collection ou entity selection
S'applique à : List box |
| lk movable rows | 35 | Propriété **[Lignes déplaçables](../FormObjects/properties_Action.md#movable-rows)** pour les list box de type tableau
S'applique à : List box (à l'exception du mode hiérarchique)
Valeurs possibles :
lk no (0) : Les lignes ne peuvent pas être déplacées lors de l'exécution
lk yes (1) : Les lignes peuvent être déplacées lors de l'exécution (valeur par défaut). |
| lk multi style | 30 | Propriété **[Multistyle](../FormObjects/properties_Text.md#multi-style)**
S'applique à : Colonne \*
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk named selection | 28 | Propriété **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** pour list box de type sélection
S'applique à : List box |
| lk resizing mode | 11 | Propriété **[Redimensionnement colonnes auto](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)**
S'applique à : List box
Valeurs possibles :
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unité de la propriété **[Hauteur des lignes](../FormObjects/properties_CoordinatesAndSizing.md#row-height)**
S'applique à : List box
Valeurs possibles :
lk lignes (1)
lk pixels (0)
|
+| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
| lk selection mode | 10 | Propriété **[Mode de sélection](../FormObjects/properties_ListBox.md#selection-mode)**
S'applique à : List box
Valeurs possibles :
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | Propriété **[Saisie sur clic unique](../FormObjects/properties_Entry.md#single-click-edit)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk sortable | 20 | Propriété **[Triable](../FormObjects/properties_Action.md#sortable)**
S'applique à : List box
Valeurs possibles :
lk no (0)
lk yes (1) |
| lk truncate | 12 | Propriété **[Tronquer avec ellipse](../FormObjects/properties_Display.md#truncate-with-ellipsis)**
S'applique à : List box ou colonne
Valeurs possibles :
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largeur en pixels |
-| lk current item expression | 38 | Propriété **[Élément courant](../FormObjects/properties_DataSource.md#current-item)**
S'applique à : List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | Propriété **[Position élément courant](../FormObjects/properties_DataSource.md#current-item-position)**
S'applique à : List box (Collection / Entity selection) |
-| lk selected items expression | 40 | Propriété **[Eléments sélectionnés](../FormObjects/properties_DataSource.md#selected-items)**
S'applique à : List box (Collection / Entity selection) |
\* Ces propriétés ne peuvent être appliquées qu'aux colonnes de list box ; si vous passez une list box en paramètre, **LISTBOX SET PROPERTY** appliquera la *property* à chaque colonne de la zone de liste.
@@ -90,9 +88,9 @@ Vous souhaitez modifier la largeur maximale de la colonne nommée "ProductNumber
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1440 |
-| Thread safe | ✗ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1440 |
+| Thread safe | non |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/session.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/session.md
index a2abe5e73f24d4..f9a4c043e98979 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/session.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## Description
-La commande `Session` retourne l'objet `Session` correspondant à la session utilisateur courante.
+The `Session` command returns the `Session` object corresponding to the current session.
-Selon le process à partir duquel la commande est appelée, la session utilisateur courante peut être :
+Depending on the process from which the command is called, the current session can be:
- une session web (lorsque les [sessions évolutives sont activées](WebServer/sessions.md#enabling-web-sessions)),
-- une session de client distant,
-- la session des procédures stockées,
-- la session *designer* dans une application autonome.
+- a remote client session (on the server),
+- a stored procedures session,
+- a standalone session.
Pour plus d'informations, voir le paragraphe [Types de session](../API/SessionClass.md#session-types).
-Si la commande est appelée à partir d'un contexte non pris en charge (par exemple, les sessions évolutives désactivées), elle retourne *Null*.
+The command returns *Null* if:
-## Sessions Web
+- it is called in a web process and scalable sessions are disabled on the web server,
+- it is called on a remote 4D.
+
+### Sessions Web
L'objet `Session` des sessions web est disponible depuis n'importe quel process web :
@@ -51,7 +54,7 @@ L'objet `Session` des sessions web est disponible depuis n'importe quel process
Pour plus d'informations sur les sessions utilisateur web, veuillez consulter la section [Sessions web](../WebServer/sessions.md).
-## Sessions clients distants
+### Sessions clients distants
L'objet `Session` des sessions client distants est disponible depuis :
@@ -60,21 +63,48 @@ L'objet `Session` des sessions client distants est disponible depuis :
- Les [fonctions du modèle de données](../ORDA/ordaClasses.md) ORDA (sauf celles déclarées avec le mot-clé [`local`](../ORDA/ordaClasses.md#local-functions),
- Les méthodes base `On Server Open Connection` et `On Server Shutdown Connection`.
-Pour plus d'informations sur les sessions utilisateur distantes, veuillez vous référer au paragraphe [**Sessions utilisateur client distants**](../Desktop/clientServer.md#remote-user-sessions).
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## Session des procédures stockées
+### Session des procédures stockées
Tous les process des procédures stockées partagent la même session d'utilisateur virtuel. L'objet `Session` des procédures stockées est disponible depuis :
- les méthodes appelées avec la commande [`Execute on server`](../commands-legacy/execute-on-server.md),
- Les méthodes base `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, et `On System event`.
-Pour des informations sur la session d'utilisateur virtuel des procédures stockées, veuillez vous référer à la page [4D Server et langage 4D](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html).
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
-## Session autonome
+### Session autonome
L'objet `Session` est disponible à partir de n'importe quel process dans les applications autonomes (mono-utilisateur) afin que vous puissiez écrire et tester votre code client/serveur en utilisant l'objet `Session` dans votre environnement de développement 4D.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+### `Session` and components
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Exemple
Vous avez défini la méthode `action_Session` ayant l'attribut "Disponible via Balises HTML et URLs 4D". Vous appelez la méthode en saisissant l'URL suivant dans votre navigateur :
@@ -84,31 +114,32 @@ IP:port/4DACTION/action_Session
```
```4d
- //méthode action_Session
+ //action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //appel de la fonction hasPrivilege
- WEB SEND TEXT("4DACTION -- Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION -- Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
- WEB SEND TEXT("4DACTION -- Sesion is null")
+ WEB SEND TEXT("4DACTION --> Session is null")
End case
```
## Voir également
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
-[Sessions Web](../WebServer/sessions.md)
-[*Sessions évolutives pour les applications web avancées* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
+[Web server user sessions](../WebServer/sessions.md)
+[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## Propriétés
-| | |
-| ------------------ | --------------------------- |
-| Numéro de commande | 1714 |
-| Thread safe | ✓ |
+| | |
+| ------------------ | ---- |
+| Numéro de commande | 1714 |
+| Thread safe | oui |
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/client-server.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/client-server.md
index f884369402cd33..8203dde2a0d44e 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/client-server.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/client-server.md
@@ -24,7 +24,7 @@ Si vous modifiez ce paramètre, vous devez redémarrer la base du serveur pour q
#### Nom de publication
-This option lets you change the publication name of a 4D Server database, *i.e.*, the name displayed on the dynamic **Available** tab of the connection dialog box (see the [Opening a remote project](../Desktop/clientServer.md#opening-a-remote-project) paragraph). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
+Cette option permet de modifier le nom de publication d'une base de données 4D Server, c'est-à-dire le nom affiché dans l'onglet dynamique **Disponible** de la boîte de dialogue de connexion (voir le paragraphe [Ouverture d'un projet distant](../Desktop/clientServer.md#opening-a-remote-project)). Par défaut, 4D Server utilise le nom du fichier de projet. Vous pouvez saisir le nom personnalisé de votre choix.
:::note
@@ -39,7 +39,7 @@ Cette option vous permet de modifier le numéro du port TCP sur lequel 4D Server
La personnalisation de cette valeur est nécessaire lorsque vous souhaitez utiliser plusieurs applications 4D sur la même machine ; dans ce cas, vous devez spécifier un numéro de port différent pour chaque application.
Lorsque vous modifiez cette valeur depuis 4D Server ou 4D, elle est automatiquement passée à toutes les machines 4D connectées à la base de données.
-Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 : Par exemple, si le nouveau numéro de port est 19888 :
+Pour mettre à jour les autres machines clientes qui ne sont pas connectées, il suffit de saisir le nouveau numéro de port (précédé de deux points) après l'adresse IP de la machine serveur dans l'onglet **Personnalisé** de la boîte de dialogue de connexion. Par exemple, si le nouveau numéro de port est 19888 :

@@ -79,8 +79,8 @@ Cette liste déroulante contient 3 options de couche réseau : **Historique**, *
- QUIC se connecte automatiquement au port 19813 à la fois pour le serveur d'application et le serveur DB4D.
- Lorsque l'option de couche QUIC est sélectionnée :
- Les paramètres de [délai avant déconnexion client-serveur](#client-server-connections-timeout) sont masqués
- - The [Encrypt Client-Server communication checkbox](#encrypt-client-server-communications) is hidden (QUIC communications are always in TLS, whatever your secured mode is).
- - **Compatibility**: You need to deploy your client/server applications with 4D 20 or higher before switching to the QUIC network layer.
+ - La case à cocher [Crypter les communications Client-Serveur](#encrypt-client-server-communications) est masquée (les communications QUIC sont toujours en TLS, quel que soit votre mode sécurisé).
+ - **Compatibilité** : Vous devez déployer vos applications client/serveur avec 4D 20 ou plus avant de passer à la couche réseau QUIC.
:::note
@@ -92,7 +92,7 @@ En cas de modification, vous devez redémarrer l'application pour que le changem
:::note
-This option is not available when the [QUIC](#network-layer) network layer is selected.
+Cette option n'est pas disponible lorsque la couche réseau [QUIC](#network-layer) est sélectionnée.
:::
@@ -110,7 +110,7 @@ Lorsque cette option est cochée, toutes les machines distantes 4D se connectant
:::note
-This option is not available when the [QUIC](#network-layer) network layer option is selected.
+Cette option n'est pas disponible lorsque l'option de couche réseau [QUIC](#network-layer) est sélectionnée.
:::
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/overview.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/overview.md
index e39b68a6685230..add6034089a802 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/overview.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/overview.md
@@ -57,7 +57,7 @@ Ce bouton réinitialise tous les paramètres de la page courante. Il devient act
4D propose deux modes de fonctionnement pour les Propriétés des projets :
-- **Standard** mode: all settings are stored in the [*settings.4DSettings* file at the project level](../Project/architecture.md#sources) and are applied in all cases. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
+- **Mode Standard** : tous les paramètres sont stockés dans le fichier [*settings.4DSettings* au niveau du projet](../Project/architecture.md#sources) et sont appliqués dans tous les cas. C'est le mode par défaut, adapté à la phase de développement (toutes les applications).
- **Mode propriétés utilisateur** : une partie des paramètres personnalisés sont stockés dans un fichier *settings.4DSettings* [dans le dossier Settings](../Project/architecture.md#settings-user) (pour tous les fichiers de données) ou [dans le dossier Data](../Project/architecture.md#settings-user-data) (pour ce fichier de données) et sont utilisés à la place des paramètres de structure. Ce mode convient à la phase de déploiement pour les applications Desktop. Vous activez ce mode à l'aide d'une option située sur la [page Sécurité](./security.md) des Propriétés.
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/security.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/security.md
index 4668a251012507..0a4dd3097a6886 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/security.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/security.md
@@ -15,7 +15,7 @@ Cette page regroupe les options relatives à la protection des accès et des don
A noter que :
- - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. For more information about this dialog box, refer to [Importing data from files](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
+ - La définition d’un groupe d’accès en Développement permet également de désactiver l’option **Créer une table** de la boîte de dialogue d’import de données. Pour plus d'informations sur cette boîte de dialogue, reportez-vous à [Importer des données depuis des fichiers](https://doc.4d.com/4Dv20/4D/20.2/Importing-data-from-files.300-6750325.en.html).
- Le Super_Utilisateur et l'Administrateur ont toujours accès à l'environnement de développement et à l'Explorateur d'exécution, même s'ils ne font pas explicitement partie du groupe d'accès spécifié. Pour plus d'information sur les utilisateurs et les groupes d'utilisateurs, veuillez vous référer au chapitre [Utilisateurs et groupes](../Users/handling_users_groups.md).
@@ -33,22 +33,22 @@ Cette page regroupe les options relatives à la protection des accès et des don
## Options
-- **Filtering of commands and project methods in the formula editor and in the 4D View Pro and 4D Write Pro documents**:
- For security reasons, by default 4D restricts access to the commands, functions and project methods in the [Formula editor](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) in Application mode or added to multistyle areas (using [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), 4D Write Pro and 4D View Pro documents: only certain 4D functions and project methods that have been explicitly declared using the [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) command can be used. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
+- **Filtrage des commandes et méthodes de projet dans l'éditeur de formules et dans les documents 4D View Pro et 4D Write Pro** :
+ Pour des raisons de sécurité, 4D restreint par défaut l'accès aux commandes, fonctions et méthodes projet dans l'[éditeur de formules](https://doc.4d.com/4Dv20/4D/20.2/Formula-editor.200-6750079.en.html) en mode Application ou ajoutées aux zones multistyles (en utilisant [`ST INSERT EXPRESSION`](../commands-legacy/st-insert-expression.md)), documents 4D Write Pro et 4D View Pro : seules certaines fonctions et méthodes projet 4D qui ont été explicitement déclarées en utilisant la commande [`SET ALLOWED METHODS`](../commands/set-allowed-methods.md) peuvent être utilisées. A l'aide des options suivantes, vous pouvez supprimer complètement ou partiellement ce filtrage.
- **Activé pour tous** (par défaut) : L'accès aux commandes, fonctions et méthodes projets est limité pour tous les utilisateurs, y compris au Super Utilisateur et à l'Administrateur.
- - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. This consists in changing the user (via the [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md) command) before calling a dialog box or starting a printing process that requires full access to the commands, then returning to the original user when the specific operation is completed.
+ - **Désactivé pour le Super Utilisateur et l'Administrateur** : Cette option accorde, uniquement au Super Utilisateur et à l'Administrateur, un accès complet aux commandes et méthodes 4D. Elle peut être utilisée pour définir un mode d'accès illimité aux commandes et méthodes tout en gardant le contrôle des actions effectuées. En phase de développement, ce mode peut être utilisé pour tester librement toutes les formules, les états, etc. En cours d'exploitation, il peut être utilisé pour mettre en oeuvre des solutions sécurisées permettant un accès temporaire à toutes les commandes et méthodes. Cela consiste à changer l'utilisateur (via la commande [`CHANGE CURRENT USER`](../commands-legacy/change-current-user.md)) avant d'appeler une boîte de dialogue ou de démarrer un process d'impression qui nécessite un accès complet aux commandes, puis à retourner à l'utilisateur d'origine lorsque l'opération spécifique est terminée.
**Note :** Si l'accès complet a été activé à l'aide de l'option précédente, cette option n'aura pas d'effet.
- **Désactivé pour tous** : Cette option désactive le contrôle dans les formules. Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles).
Lorsque cette option est cochée, les utilisateurs ont accès à l'ensemble des commandes, plug-ins et méthodes projets (à l'exception de ceux qui sont invisibles). Lorsqu'elle est cochée, cette commande ne fait rien.
- **Autoriser les propriétés utilisateur** : Vous devez cocher cette option si vous souhaitez utiliser la fonctionnalité d’externalisation des propriétés utilisateur. Lorsque cette option est cochée, jusqu'à trois boîtes de dialogue sont disponibles pour définir les propriétés : **Propriétés structure**, **Propriétés utilisateur**, et **Propriétés utilisateur pour fichier de données**. Pour plus d'informations, reportez-vous à la section [User settings](../settings/overview.md#user-settings).
-- **Execute "On Host Database Event" method of the components**: The [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) facilitates the initialization and backup phases for 4D components. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
+- **Exécuter la méthode "Sur événement base hôte" des composants** : La méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) facilite les phases d'initialisation et de sauvegarde des composants 4D. Pour des raisons de sécurité, vous devez autoriser explicitement l’exécution de cette méthode dans chaque base hôte. Pour cela, vous devez cocher l'option. Cette option n'est pas cochée par défaut.
Lorsque cette option est cochée :
- les composants 4D sont chargés,
- - each [On Host Database Event database method](../commands-legacy/on-host-database-event-database-method.md) of the component (if any) is called by the host database,
+ - chaque méthode [On Host Database Event](../commands-legacy/on-host-database-event-database-method.md) du composant (s'il y en a) est appelée par le projet hôte,
- le code de la méthode est exécuté.
Lorsque cette option n’est pas cochée :
diff --git a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/web.md b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/web.md
index fc721bb398efad..659f5e03dc918c 100644
--- a/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/web.md
+++ b/i18n/fr/docusaurus-plugin-content-docs/version-21/settings/web.md
@@ -121,12 +121,12 @@ Permet de définir le délai maximum avant fermeture (timeout) des process Web i
Définit le système d'authentification que vous souhaitez utiliser pour le serveur Web. Trois options sont proposées :
- Authentification personnalisée (par défaut)
-- Passwords with BASIC protocol
-- Passwords with DIGEST protocol
+- Mots de passe protocole BASIC
+- Mots de passe protocole DIGEST
-Il est recommandé d'utiliser l'authentification **personnalisée**. See [**Authentication**](../WebServer/authentication.md) section.
+Il est recommandé d'utiliser l'authentification **personnalisée**. Voir la section [**Authentification**](../WebServer/authentication.md).
-#### Generic Web User
+#### Utilisateur Web générique
Voir [Propriétés obsolètes](../WebServer/webServerConfig.md#propriétés-obsolètes).
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/BlobClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/BlobClass.md
index 17307140842eb9..c70c9e1c040c49 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/BlobClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/BlobClass.md
@@ -27,10 +27,11 @@ Blobクラスを使って、[BLOB オブジェクト](../Concepts/dt_blob.md#BLO
-| 引数 | 型 | | 説明 |
-| ---- | -------------------------------- | :-------------------------: | -------------------------- |
-| blob | BLOB または 4D.Blob | -> | コピーする BLOB |
-| 戻り値 | 4D.Blob | <- | 新規 4D.Blob |
+| 引数 | 型 | | 説明 |
+| -------- | ----------------------- | :-------------------------: | -------------------------- |
+| blobScal | BLOB | -> | コピーする BLOB |
+| blobObj | 4D.Blob | -> | コピーする BLOB |
+| 戻り値 | 4D.Blob | <- | 新規 4D.Blob |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/CollectionClass.md
index f567db353de9bb..5d5fd80f7ec26f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/CollectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/CollectionClass.md
@@ -493,11 +493,11 @@ End use
-| 引数 | 型 | | 説明 |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------------- |
-| value | Text, Number, Boolean, Date, Object, Collection | -> | 数える値 |
-| propertyPath | Text | -> | 計算に使用するオブジェクトプロパティのパス |
-| 戻り値 | Real | <- | 値の出現回数 |
+| 引数 | 型 | | 説明 |
+| ------------ | ---- | :-------------------------: | --------------------- |
+| value | any | -> | 数える値 |
+| propertyPath | Text | -> | 計算に使用するオブジェクトプロパティのパス |
+| 戻り値 | Real | <- | 値の出現回数 |
@@ -861,12 +861,12 @@ $c2:=$c.extract("name";"City";"zc";"Zip") //$c2=[{Zip:35060},{City:null,Zip:3504
-| 引数 | 型 | | 説明 |
-| --------- | ----------------------------------------------- | :-------------------------: | ----------------------------------- |
-| value | number, Text, Collection, Object, Date, Boolean | -> | 代入する値 |
-| startFrom | Integer | -> | 開始インデックス (含まれる) |
-| end | Integer | -> | 終了インデックス (含まれない) |
-| 戻り値 | collection | <- | 値が代入された元のコレクション |
+| 引数 | 型 | | 説明 |
+| --------- | ---------- | :-------------------------: | ----------------------------------- |
+| value | any | -> | 代入する値 |
+| startFrom | Integer | -> | 開始インデックス (含まれる) |
+| end | Integer | -> | 終了インデックス (含まれない) |
+| 戻り値 | Collection | <- | 値が代入された元のコレクション |
@@ -1827,10 +1827,10 @@ $c2:=$c.map(Formula(Round(($1.value/$2)*100; 2)); $c.sum())
-| 引数 | 型 | | 説明 |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------ |
-| propertyPath | Text | -> | 評価するオブジェクトプロパティのパス |
-| 戻り値 | Boolean, Text, Number, Collection, Object, Date | <- | コレクション内の最大値 |
+| 引数 | 型 | | 説明 |
+| ------------ | ---- | :-------------------------: | ------------------ |
+| propertyPath | Text | -> | 評価するオブジェクトプロパティのパス |
+| 戻り値 | any | <- | コレクション内の最大値 |
@@ -1877,10 +1877,10 @@ $c2:=$c.map(Formula(Round(($1.value/$2)*100; 2)); $c.sum())
-| 引数 | 型 | | 説明 |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------ |
-| propertyPath | Text | -> | 評価するオブジェクトプロパティのパス |
-| 戻り値 | Boolean, Text, Number, Collection, Object, Date | <- | コレクション内の最小値 |
+| 引数 | 型 | | 説明 |
+| ------------ | ---- | :-------------------------: | ------------------ |
+| propertyPath | Text | -> | 評価するオブジェクトプロパティのパス |
+| 戻り値 | any | <- | コレクション内の最小値 |
@@ -2709,13 +2709,13 @@ $entitySelection:=ds.Employee.query("birthDate <= :1";Current date-10950)
-| 引数 | 型 | | 説明 |
-| ---------- | ----------------------------------------------- | :-------------------------: | ------------------------------------------------- |
-| formula | 4D.Function | -> | フォーミュラオブジェクト |
-| methodName | Text | -> | メソッド名 |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | *formula* または *methodName* の最初の呼び出しに最初の引数として使用する値 |
-| param | 式 | -> | 渡す引数 |
-| 戻り値 | Text, Number, Object, Collection, Date, Boolean | <- | アキュムレーター値の結果 |
+| 引数 | 型 | | 説明 |
+| ---------- | --------------------------- | :-------------------------: | ------------------------------------------------- |
+| formula | 4D.Function | -> | フォーミュラオブジェクト |
+| methodName | Text | -> | メソッド名 |
+| initValue | any | -> | *formula* または *methodName* の最初の呼び出しに最初の引数として使用する値 |
+| param | 式 | -> | 渡す引数 |
+| 戻り値 | any | <- | アキュムレーター値の結果 |
@@ -2794,13 +2794,13 @@ $r:=$c.reduce(Formula($1.accumulator*=$1.value); 1) // 戻り値は 86400 で
-| 引数 | 型 | | 説明 |
-| ---------- | ----------------------------------------------- | :-------------------------: | ------------------------------------------------- |
-| formula | 4D.Function | -> | フォーミュラオブジェクト |
-| methodName | Text | -> | メソッド名 |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | *formula* または *methodName* の最初の呼び出しに最初の引数として使用する値 |
-| param | 式 | -> | 渡す引数 |
-| 戻り値 | Text, Number, Object, Collection, Date, Boolean | <- | アキュムレーター値の結果 |
+| 引数 | 型 | | 説明 |
+| ---------- | --------------------------- | :-------------------------: | ------------------------------------------------- |
+| formula | 4D.Function | -> | フォーミュラオブジェクト |
+| methodName | Text | -> | メソッド名 |
+| initValue | any | -> | *formula* または *methodName* の最初の呼び出しに最初の引数として使用する値 |
+| param | 式 | -> | 渡す引数 |
+| 戻り値 | any | <- | アキュムレーター値の結果 |
@@ -2936,11 +2936,11 @@ $r:=$c.reduceRight(Formula($1.accumulator*=$1.value); 1) // 戻り値は 86400
-| 引数 | 型 | | 説明 |
-| ------------ | ----------------------------------------------- | :-------------------------: | --------------- |
-| size | Integer | -> | コレクションの新しいサイズ |
-| defaultValue | Number, Text, Object, Collection, Date, Boolean | -> | 新規要素のデフォルト値 |
-| 戻り値 | Collection | <- | リサイズされた元のコレクション |
+| 引数 | 型 | | 説明 |
+| ------------ | ---------- | :-------------------------: | --------------- |
+| size | Integer | -> | コレクションの新しいサイズ |
+| defaultValue | any | -> | 新規要素のデフォルト値 |
+| 戻り値 | Collection | <- | リサイズされた元のコレクション |
@@ -3356,11 +3356,11 @@ $col3:=$col.sort(Formula(String($1.value)
-| 引数 | 型 | | 説明 |
-| ----- | -------------------------------------- | :-------------------------: | ---------------- |
-| value | Text, Number, Object, Collection, Date | -> | コレクションの先頭に挿入する値 |
-| 戻り値 | Collection | <- | 要素の追加された元のコレクション |
-| | | | |
+| 引数 | 型 | | 説明 |
+| ----- | ---------- | :-------------------------: | ---------------- |
+| value | any | -> | コレクションの先頭に挿入する値 |
+| 戻り値 | Collection | <- | 要素の追加された元のコレクション |
+| | | | |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
index 63ef6f2a78d3e4..d64d7b87f09b58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
@@ -333,11 +333,11 @@ ECDSA キーのみ: キーの楕円曲線
-| 引数 | 型 | | 説明 |
-| ------- | ------------- | --------------------------- | ----------------------------------------------- |
-| message | Text または Blob | -> | 署名するメッセージ |
-| options | Object | -> | 署名オプション |
-| 戻り値 | Text | <- | "encoding" オプションに応じて Base64 または Base64URL 形式の署名 |
+| 引数 | 型 | | 説明 |
+| ------- | ---------- | --------------------------- | ----------------------------------------------- |
+| message | Text, Blob | -> | 署名するメッセージ |
+| options | Object | -> | 署名オプション |
+| 戻り値 | Text | <- | "encoding" オプションに応じて Base64 または Base64URL 形式の署名 |
@@ -417,12 +417,12 @@ RSA キーのみ: キーのサイズ (ビッ
-| 引数 | 型 | | 説明 |
-| --------- | ------------- | --------------------------- | ----------------------------------------------------------- |
-| message | Text または Blob | -> | 署名の生成に使用されたメッセージ |
-| signature | Text | -> | 検証の対象である、`options.encoding` に応じて Base64 または Base64URL 形式の署名 |
-| options | Object | -> | 署名オプション |
-| 戻り値 | Object | <- | 検証ステータス |
+| 引数 | 型 | | 説明 |
+| --------- | ---------- | --------------------------- | ----------------------------------------------------------- |
+| message | Text, Blob | -> | 署名の生成に使用されたメッセージ |
+| signature | Text | -> | 検証の対象である、`options.encoding` に応じて Base64 または Base64URL 形式の署名 |
+| options | Object | -> | 署名オプション |
+| 戻り値 | Object | <- | 検証ステータス |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md
index 0b4cd6f91e77a0..1658106d7adab5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/DataClassClass.md
@@ -444,7 +444,7 @@ $ds.Persons.clearRemoteCache()
| 引数 | 型 | | 説明 |
| ---------- | ------------------------- | :-------------------------: | --------------------------------- |
-| primaryKey | Integer または Text | -> | 取得するエンティティのプライマリーキー値 |
+| primaryKey | Integer, Text | -> | 取得するエンティティのプライマリーキー値 |
| settings | Object | -> | ビルドオプション: context |
| 戻り値 | 4D.Entity | <- | 指定したプライマリーキーに合致するエンティティ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/EntitySelectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/EntitySelectionClass.md
index fd9f07e22bf44c..95ac44f2232bc4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/EntitySelectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/EntitySelectionClass.md
@@ -461,7 +461,7 @@ $emp2:=$employees.at(-3) // $employees エンティティセレクションの
デフォルトでは、あるエンティティが削除 ([drop](EntitySelectionClass.md#drop)) された場合、既存のエンティティセレクション内のこのエンティティへの参照は *undefined* になりますが、エンティティセレクションオブジェクト から参照そのものは削除されません。 削除されたエンティティは、[`.length`](#length) プロパティの数にまだ含まれており、リストなどのインターフェースオブジェクトにエンティティセレクションがバインドされている場合、空白の行として表示されます。 この場合、エンティティセレクションに対して `.clean()` 関数を呼び出すことで、*undefined* なエンティティ参照が含まれない、最新のエンティティセレクションを新規に取得することができます。
-結果のエンティティセレクションは、元のエンティティセレクションと種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
+結果のエンティティセレクションは、元のエンティティセレクションと同じ種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
#### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
index 0647498ed71089..8ab8173c7494a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
@@ -38,7 +38,7 @@ Attachment オブジェクトは、次の読み取り専用プロパティや、
| ----------- | --------------------------------- | :-------------------------: | -------------------------------------------------------------------------------------- |
| file | 4D.File | -> | 添付ファイル |
| zipFile | 4D.ZipFile | -> | 添付 Zipファイル |
-| blob | 4D.Blob | -> | 添付を格納した BLOB |
+| blob | 4D.Blob | -> | 添付を格納した Blob |
| path | Text | -> | 添付ファイルのパス |
| name | Text | -> | メールクライアントが添付を指定するのに使用する名前 + 拡張子 |
| cid | Text | -> | 添付の ID (HTMLメッセージのみ)、あるいは cid が不要な場合は "" (空の文字列) |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/SessionClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/SessionClass.md
index 1d30ce38a63ba3..8d9501c5e11350 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/SessionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/SessionClass.md
@@ -17,14 +17,15 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
このクラスは以下の種類のセッションをサポートしています:
-- [**Webユーザーセッション**](WebServer/sessions.md): [プロジェクトにおいてスケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合、Webユーザーセッションが利用可能です。 これらは Web および REST 接続に使用され、権限を割り当てることができます。
-- [**リモートクライアントユーザー セッション**](../Desktop/clientServer.md#リモートユーザーセッション): クライアント/サーバーアプリケーションでは、リモートユーザーは、サーバー上で管理される独自のセッションを持ちます。
-- [**ストアドプロシージャーセッション**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): サーバ上で実行されるすべてのストアドプロシージャーは、同じ仮想ユーザーセッションを共有します。
-- [**スタンドアロンセッション**](../Project/overview.md#development): シングルユーザーアプリケーションで返されるローカルのセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
+- [**Webユーザーセッション**](WebServer/sessions.md): [プロジェクトにおいてスケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合、Webユーザーセッションが利用可能です。 これらは(REST アクセスを含めた)Web 接続に使用され、割り当てられた[権限](../ORDA/privileges.md) によって管理されます。
+- [**デスクトップセッション**](../Desktop/sessions.md)。これには以下のものが含まれます:
+ - [**リモートユーザー セッション**](../Desktop/sessions.md#リモートユーザーセッション): クライアント/サーバーアプリケーションでは、リモートユーザーは、サーバー上で管理される独自のセッションを持ちます。
+ - [**ストアドプロシージャーセッション**](../Desktop/sessions.md#ストアドプロシージャーセッション): サーバー上で実行される全てのストアドプロシージャーセッションの仮想ユーザーセッション。
+ - [**スタンドアロンセッション**](../Desktop/sessions.md#standalone-sessions): シングルユーザーアプリケーションで返されるローカルのセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
-:::note
+:::warning セッション権限について
-`Session` オブジェクトにおいて利用可能なプロパティと関数は、セッションの種類に依存します。
+全てのセッションタイプは権限を管理できますが、**web コンテキスト** 内で実行されたコードに関してだけは、実際にはセッションの権限によって管理されます。
:::
@@ -54,10 +55,10 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
履歴
-| リリース | 内容 |
-| ----- | -------------- |
-| 21 | リモートセッションのサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 18 R6 | 追加 |
@@ -73,33 +74,26 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
#### 説明
-:::note
-
-この関数は、すトアドプロシージャーセッションおよびスタンドアロンセッションでは何もせず、常に **True** を返します。
-
-:::
-
`.clearPrivileges()` 関数は、対象セッションに紐づいているアクセス権をすべて削除し(昇格した権限を除く)、実行が成功した場合に **true** を返します。
-["強制ログイン" モード](../REST/authUsers.md#force-login-mode) でない限り、セッションは自動的にゲストセッションとなります。 "強制ログイン" モードでは、`.clearPrivileges()` はセッションをゲストセッションへと変換するのではなく、セッションの権限を消去するだけです。
-
:::note
この関数は [roles.json](../ORDA/privileges.md#rolesjsonファイル) ファイルで追加されたものであれ [`promote()`](#promote) 関数で追加されたものであれ、Web プロセスから**昇格された権限** を削除しません。
:::
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
```4d
-// Webユーザーセッションを無効にします
-var $isGuest : Boolean
+// Web ユーザーセッションを無効化する
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() // $isGuest は true
```
@@ -110,10 +104,10 @@ $isGuest:=Session.isGuest() // $isGuest は true
履歴
-| リリース | 内容 |
-| ----- | -------------- |
-| 21 | リモートセッションのサポート |
-| 20 R9 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 20 R9 | 追加 |
@@ -121,33 +115,28 @@ $isGuest:=Session.isGuest() // $isGuest は true
-| 引数 | 型 | | 説明 |
-| -------- | ------- | :-------------------------: | ------------------------------------ |
-| lifespan | Integer | -> | セッショントークンの有効期限(秒) |
-| 戻り値 | Text | <- | トークンの UUID |
+| 引数 | 型 | | 説明 |
+| -------- | ------- | :-------------------------: | -------------------------------------------------- |
+| lifespan | Integer | -> | 秒単位のセッショントークンの有効期限(Web セッションのみ) |
+| 戻り値 | Text | <- | トークンの UUID |
#### 説明
-:::note
-
-この関数はWeb ユーザーセッションとリモートセッションにおいて利用可能です。 ストアドプロシージャーとスタンドアロンセッションでは空の文字列を返します。
-
-:::
-
`.createOTP()` 関数は、セッションの新しいOTP(One Time Passcode、ワンタイムパスワード)を作成し、そのトークンUUID を返します。 このトークンはそれが生成されたセッションに固有のものです。
OTP トークンについてのより詳細な情報については、[こちらの章](../WebServer/sessions.md#セッショントークンotp)を参照して下さい。
-*lifespan* に秒単位の値を渡すことで、カスタムのタイムアウト時間を設定することができます。 セッションを復元するために失効したトークンを使用した場合、それは無視されます。 *lifespan* 引数が省略された場合はデフォルトで:
+セッションを復元するために失効したトークンを使用した場合、それは無視されます。
+
+Web セッションに対しては、*lifespan* に秒単位の値を渡すことで、カスタムのタイムアウト時間を設定することができます。 デフォルトで、*lifespan* 引数が省略された場合、トークンはセッションの[`.idleTimeOut`](#idletimeout) と同じ有効期限を持って作成されます。
-- Web ユーザーセッションの場合、トークンはセッションの[`.idleTimeOut`](#idletimeout) と同じ有効期限を持って作成されます。
-- リモートセッションの場合、トークンは10秒の有効期限を持って作成されます。
+デスクトップセッションの場合、トークンは10秒の有効期限を持って作成されます。
-**Web ユーザーセッション** の場合、返されたトークンは、サードパーティアプリケーションや他のWebサイトとのやり取りで使用することでセッションを安全に特定することができます。 例えば、セッションOTP トークンは支払いアプリケーションなどにおいて使用することができます。
+返されたトークンは、サードパーティアプリケーションや他のWebサイトとのやり取りで使用することでセッションを安全に特定することができます。 例えば、セッションOTP トークンは支払いアプリケーションなどにおいて使用することができます。
-**リモートセッション** の場合、返されたトークンを4D Server 上で使用することで[Web エリアでQodly フォームを実行しているリモート 4D](../Desktop/clientServer.md#リモートユーザーセッション) からのリクエストを識別することができます。
+返されたトークンは、Web から入ってきた、[セッションを共有する](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses)リクエストを特定するために4D Server または4D シングルユーザーアプリケーションが使用することができます。
#### 例題
@@ -182,12 +171,6 @@ $token := Session.createOTP( 60 ) // トークンは1分間有効
#### 説明
-:::note
-
-この関数はリモートクライアント、ストアドプロシージャー、スタンドアロンのセッションにおいては何もしません。
-
-:::
-
`.demote()` 関数は *promoteId* 引数に ID を渡した昇格した権限を、Web プロセスから削除します(その権限が [`.promote()`](#promote) 関数を使用して以前追加された場合)。
Web プロセス内において *promoteId* で指定した権限が [`.promote()`](#promote) を使用して昇格したものではなかった場合、この関数は何もしません。
@@ -262,10 +245,10 @@ $expiration:=Session.expirationDate // 例: "2021-11-05T17:10:42Z"
履歴
-| リリース | 内容 |
-| ----- | -------------------- |
-| 21 | リモートクライアントセッションのサポート |
-| 20 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 20 R6 | 追加 |
@@ -289,9 +272,10 @@ $expiration:=Session.expirationDate // 例: "2021-11-05T17:10:42Z"
:::
-リモートクライアントセッションでは、権限は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
-ストアドプロシージャーセッションとスタンドアロンセッションでは、この関数は"WebAdmin" のみを格納したコレクションを返します。
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
@@ -360,10 +344,10 @@ $privileges := Session.getPrivileges()
履歴
-| リリース | 内容 |
-| ----- | ------------------------------------- |
-| 21 | 昇格した権限ならTrue を返す、リモートクライアントセッションのサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ----------------------------------------- |
+| 21 | 昇格した権限ならTrue を返す、リモートおよびスタンドアロンセッションのサポート |
+| 18 R6 | 追加 |
@@ -388,25 +372,27 @@ $privileges := Session.getPrivileges()
:::
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
-ストアドプロシージャーセッションとスタンドアロンセッションの場合、この関数は*privilege* に関わらず必ずTrue を返します。
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
-"WebAdmin" アクセス権が Webユーザーセッションに紐づいているかを確認します:
+"CreateInvoices" アクセス権が Webユーザーセッションに紐づいているかを確認します:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- // アクセス権が付与されているので、何もしません
+If (Session.hasPrivilege("CreateInvoices"))
+ // 請求書作成機能へのアクセスを許可
Else
- // 認証ページを表示します
+ // 請求書作成機能へのアクセスはなし
+
End if
```
#### 参照
-[*この機能に関連するBlog 記事*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog 記事)](https://blog.4d.com/?s=hasPrivilege)
@@ -499,26 +485,16 @@ End if
#### 説明
-:::note
-
-このプロパティは、リモートクライアント、ストアドプロシージャーおよびスタンドアロンセッションの場合にのみ使用できます。
-
-:::
-
-`.info` プロパティは、サーバー上のリモートクライアントまたはストアドプロシージャーセッション、あるいはスタンドアロンセッションの情報を格納します。
+`.info` プロパティは、サーバー上のデスクトップまたはWeb セッションの情報を格納します。
-:::note
-
-- `.info` オブジェクトは、リモートクライアントおよびストアドプロシージャーセッションに対して [`Process activity`](../commands/process-activity.md) コマンドの"session" プロパティによって返されるオブジェクトと同じです。
-- `.info` オブジェクトは、スタンドアロンセッションに対しては[`Session info`](../commands/session-info.md) コマンドによって返されるオブジェクトと同じです。
-
-:::
+- **リモートセッション** および **ストアドプロシージャーセッション**の場合: `.info` オブジェクトは[`Process activity`](../commands/process-activity.md) コマンドの "session" プロパティに返されるオブジェクトと同じです。
+- **スタンドアロンセッションの場合**: `.info` オブジェクトは、[`Session info`](../commands/session-info.md) コマンドで返されるものと同じオブジェクトです。
`.info` オブジェクトには、次のプロパティが格納されています:
| プロパティ | 型 | 説明 |
| ---------------- | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | セッションのタイプ: "remote"、"storedProcedure"、"standalone" |
+| type | Text | セッションのタイプ: "remote"、"storedProcedure"、"standalone"、"rest"、"web" |
| userName | Text | 4Dユーザー名 ([`.userName`](#username) と同じ値) |
| machineName | Text | リモートセッション: リモートマシンの名前。 ストアドプロシージャセッション: サーバーマシンの名前。 スタンドアロンセッションの場合: マシン名 |
| systemUserName | Text | リモートセッション: リモートマシン上で開かれたシステムセッションの名前。 |
@@ -553,9 +529,9 @@ End if
-| 引数 | 型 | | 説明 |
-| --- | ------- | :-------------------------: | ----------------------------- |
-| 戻り値 | Boolean | <- | ゲストセッションの場合は true、それ以外は false |
+| 引数 | 型 | | 説明 |
+| --- | ------- | :-------------------------: | ------------------------------------------------------------------ |
+| 戻り値 | Boolean | <- | セッションがゲストセッションの場合はTrue、それ以外はFalse (Web セッションのみ) |
@@ -563,11 +539,17 @@ End if
:::note
-この関数は、リモートクライアント、ストアドプロシージャ、およびスタンドアロンセッションでは常に**False** を返します。
+この関数はデスクトップセッションに対しては常に **False** を返します。
:::
-`.isGuest()` 関数は、アクセス権のないゲストセッションの場合は true を返します。
+.isGuest()` 関数は セッション内で`setPrivileges()\` が呼ばれていない、あるいはセッション内で[Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) が実行されたあとである場合には True を返します。
+
+:::note 互換性
+
+旧式のセッションでは、`.isGuest()` はセッションに何の権限もない場合に True を返します。
+
+:::
#### 例題
@@ -606,12 +588,6 @@ End if
#### 説明
-:::note
-
-この関数はリモートクライアント、ストアドプロシージャー、スタンドアロンのセッションにおいては何もしません。
-
-:::
-
`.promote()` 関数は、*privilege* 引数で定義された権限を、呼び出し関数の実行中にカレントプロセスに追加し、昇格した権限の ID を返します。
権限を動的に付与することは、アクセス権が実行コンテキストに依存する場合には有用です。この場合 "roles.json" ファイルだけでは完全に定義しきることはできないからです。 これは、異なるアクセスレベルのユーザーによって同じ関数が実行され得る場合に関連します。 `.promote()` を使用することで、他のプロセスに影響することなく、カレントプロセスにのみ必要な権限が与えられるようにすることができます。
@@ -627,6 +603,11 @@ End if
権限を動的に削除するためには、適切なID で `demote()` 関数を呼び出してください。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
+
#### 例題
複数のユーザーが、異なるアプリケーションとして振る舞う単一のエンドポイントに接続する場合を考えます。 #1 のアプリケーションからのユーザーは、"VerySensitiveInfo" を作成しないため、 "super_admin" 権限を必要としません。 一方で#2 のアプリケーションからのユーザーは "super_admin" 権限を必要とします。
@@ -685,12 +666,6 @@ End if
#### 説明
-:::note
-
-この関数は、Webユーザーセッションの場合にのみ使用できます。 それ以外のコンテキストではFalse を返します。
-
-:::
-
`.restore()` 関数は、カレントのWeb ユーザーセッションを*token* 引数のUUIDに対応したオリジナルのセッションで置き換えます。 セッションのストレージと権限は復元されます。
オリジナルのセッションが正常に復元された場合、この関数は`true` を返します。
@@ -727,11 +702,11 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
履歴
-| リリース | 内容 |
-| ----- | -------------------- |
-| 21 | リモートクライアントセッションのサポート |
-| 19 R8 | roles プロパティをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 19 R8 | roles プロパティをサポート |
+| 18 R6 | 追加 |
@@ -750,12 +725,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### 説明
-:::note
-
-この関数は、ストアドプロシージャーセッションおよびスタンドアロンセッションでは何もせず、常に**False** を返します。
-
-:::
-
`.setPrivileges()` 関数は、引数として渡したアクセス権やロールをセッションと紐づけ、実行が成功した場合に **true** を返します。
- *privilege* には、アクセス権の名称を文字列として渡します (複数の場合はカンマ区切り)。
@@ -780,7 +749,10 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
[`userName`](#username) プロパティは Session オブジェクトレベルで利用可能です (読み取り専用)。
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
@@ -812,10 +784,10 @@ End if
履歴
-| リリース | 内容 |
-| ----- | -------------------------------- |
-| 20 R5 | リモートクライアントとストアドプロシージャーセッションをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ---------------- |
+| 20 R5 | デスクトップセッションのサポート |
+| 18 R6 | 追加 |
@@ -837,6 +809,8 @@ End if
:::
+デスクトップセッションとWeb セッションが[OTP を使用して共有している](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses)場合、これらは同じ `.storage` オブジェクトを共有します。
+
#### Webセッションの例題
クライアントの IP を `.storage` プロパティに保存します。 `On Web Authentication` データベースメソッドに以下のように書けます: `On Web Authentication` データベースメソッドに以下のように書けます:
@@ -867,10 +841,10 @@ End use
履歴
-| リリース | 内容 |
-| ----- | -------------------------------- |
-| 20 R5 | リモートクライアントとストアドプロシージャーセッションをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ---------------- |
+| 20 R5 | デスクトップセッションのサポート |
+| 18 R6 | 追加 |
@@ -880,10 +854,10 @@ End use
`.userName` プロパティは、セッションと紐づいたユーザー名を格納します。 このプロパティは、コード内でユーザーを確認するのに使用できます。
-- Webセッションでは、このプロパティはデフォルトで空の文字列です。 これは、[`setPrivileges()`](#setprivileges) 関数の `privileges` プロパティを使って設定することができます。
-- リモートおよびストアドプロシージャーセッションでは、このプロパティは [`Current user`](../commands-legacy/current-user.md) コマンドと同じユーザー名を返します。
-- スタンドアロンセッションでは、このプロパティは"designer" または[`SET USER ALIAS`](../commands-legacy/set-user-alias.md) コマンドで設定された名前が格納されています。
+- **Web セッション**: このプロパティはデフォルトで空の文字列です。 これは、[`setPrivileges()`](#setprivileges) 関数の `privileges` プロパティを使って設定することができます。
+- **リモート/ ストアドプロシージャーセッション**: このプロパティは [`Current user`](../commands-legacy/current-user.md) コマンドと同じユーザー名を返します。
+- **スタンドアロンセッション**: このプロパティは"designer" または[`SET USER ALIAS`](../commands-legacy/set-user-alias.md) コマンドで設定された名前が格納されています。
-このプロパティは **読み取り専用** です。
+このプロパティはデスクトップセッションにおいては**読み取り専用**です。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
index ae195a59ea79d4..eb29f8dff3a252 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
@@ -101,11 +101,11 @@ $myMacWorker:= 4D.SystemWorker.new("chmod +x /folder/myfile.sh")
すべてのコールバック関数は、2つのオブジェクト引数を受け取ります。 その内容は、コールバックに依存します:
-| 引数 | 型 | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
-| ---------------------------- | ------------- | ------------ | ------------ | ------------- | ------------ | ------------- |
-| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
-| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
-| $param2.data | Text または Blob | | 取得データ | エラーデータ | | |
+| 引数 | 型 | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
+| ---------------------------- | ---------- | ------------ | ------------ | ------------- | ------------ | ------------- |
+| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
+| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
+| $param2.data | Text, Blob | | 取得データ | エラーデータ | | |
以下は、コールバック呼び出しの流れです:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
index 6d9056c0177b96..611b0733a0e3f2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
@@ -73,7 +73,7 @@ TCPListener オブジェクトは以下のプロパティや関数を提供し
| 引数 | 型 | | 説明 |
| ------- | ------------------------------ | --------------------------- | --------------------------- |
-| port | Number | -> | リッスンするTCP ポート番号 |
+| port | Real | -> | リッスンするTCP ポート番号 |
| options | Object | -> | リスナーの設定[オプション](#options-引数) |
| 戻り値 | 4D.TCPListener | <- | 新規TCPListener オブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
index c08b3d1c3643f2..ee3a570998f6d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
@@ -45,11 +45,11 @@ UDPSocket オブジェクトは以下のプロパティと関数を提供しま
-| 引数 | 型 | | 説明 |
-| ------- | --------- | --------------------------- | ------------------------------------------------------------------------ |
-| port | Integer | -> | UDP ソケットに使用されるローカルのポート番号(0 または省略時には使用されていないポートを探して使用) |
-| options | Object | -> | ソケットの接続[オプション](#options引数) |
-| 戻り値 | UDPSocket | <- | 新規UDPSocket オブジェクト |
+| 引数 | 型 | | 説明 |
+| ------- | ---------------------------- | --------------------------- | ------------------------------------------------------------------------ |
+| port | Integer | -> | UDP ソケットに使用されるローカルのポート番号(0 または省略時には使用されていないポートを探して使用) |
+| options | Object | -> | ソケットの接続[オプション](#options引数) |
+| 戻り値 | 4D.UDPSocket | <- | 新規UDPSocket オブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/VectorClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/VectorClass.md
index 9c844c4f19a4dc..b247f9098aee33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/VectorClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/VectorClass.md
@@ -47,7 +47,7 @@ AI の世界では、ベクトルとは、機会が複雑なデータを理解
| 引数 | 型 | | 説明 |
| --- | ------------------------- | --------------------------- | ------------------ |
-| 引数 | 実数のCollection | -> | ベクトルを表せる実数値のコレクション |
+| 引数 | Collection | -> | ベクトルを表せる実数値のコレクション |
| 戻り値 | 4D.Vector | <- | 新規ベクトルオブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormClass.md
index ffe3bbb2a96872..ae0037247404c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormClass.md
@@ -60,9 +60,9 @@ shared singleton Class constructor()
-| 引数 | 型 | | 説明 |
-| ----- | ------ | :-: | ----------------------- |
-| state | string | -> | Web ページ上で無効化するstate の名前 |
+| 引数 | 型 | | 説明 |
+| ----- | ---- | :-: | ------------------------ |
+| state | Text | -> | Webフォーム上で無効化する state の名称 |
@@ -85,9 +85,9 @@ Web ページのステートについての詳細な情報については、[Qod
-| 引数 | 型 | | 説明 |
-| ----- | ------ | :-: | ------------------------ |
-| state | string | -> | Web ページ上で有効化する state の名前 |
+| 引数 | 型 | | 説明 |
+| ----- | ---- | :-: | ------------------------ |
+| state | Text | -> | Webフォーム上で有効化する state の名称 |
@@ -121,9 +121,9 @@ Function authenticationError()
-| 引数 | 型 | | 説明 |
-| --- | ------ | :-: | -------------------- |
-| msg | string | -> | Web ページに表示するエラーメッセージ |
+| 引数 | 型 | | 説明 |
+| --- | ---- | :-: | -------------------- |
+| msg | Text | -> | Webフォームに表示するエラーメッセージ |
@@ -156,9 +156,9 @@ myForm.setError("My error message")
-| 引数 | 型 | | 説明 |
-| --- | ------ | :-: | ------------------- |
-| msg | string | -> | Web ページに表示する情報メッセージ |
+| 引数 | 型 | | 説明 |
+| --- | ---- | :-: | ------------------- |
+| msg | Text | -> | Webフォームに表示する情報メッセージ |
@@ -191,9 +191,9 @@ myForm.setMessage("My information message")
-| 引数 | 型 | | 説明 |
-| --- | ------ | :-: | ------------------- |
-| msg | string | -> | Web ページに表示する警告メッセージ |
+| 引数 | 型 | | 説明 |
+| --- | ---- | :-: | ------------------- |
+| msg | Text | -> | Webフォームに表示する警告メッセージ |
@@ -224,4 +224,4 @@ myForm.setWarning("My warning message")
[Web Form](../commands/web-form.md)
[Web Event](../commands/web-event.md)
-[WebFormItem class](../API/WebFormItemClass.md)
\ No newline at end of file
+[WebFormItem class](../API/WebFormItemClass.md)
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
index 629252e50f8b37..00bbaa7098f252 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
@@ -34,9 +34,9 @@ title: WebFormItem
-| 引数 | 型 | | 説明 |
-| --------- | ------ | :-: | ----------------------- |
-| className | string | -> | コンポーネントに追加する CSSクラスの名前。 |
+| 引数 | 型 | | 説明 |
+| --------- | ---- | :-: | ----------------------- |
+| className | Text | -> | コンポーネントに追加する CSSクラスの名前。 |
@@ -86,9 +86,9 @@ exposed Function isHidden()
-| 引数 | 型 | | 説明 |
-| --------- | ------ | :-: | ------------------------ |
-| className | string | -> | コンポーネントから削除する CSSクラスの名前。 |
+| 引数 | 型 | | 説明 |
+| --------- | ---- | :-: | ------------------------ |
+| className | Text | -> | コンポーネントから削除する CSSクラスの名前。 |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
index 209a95527a7cae..a0d47641eaf733 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
@@ -68,9 +68,9 @@ WebSocketConnection オブジェクトは、次のプロパティと関数を提
-| 引数 | 型 | | 説明 |
-| ------- | -------------------- | :-: | --------- |
-| message | Text / Blob / Object | -> | 送信するメッセージ |
+| 引数 | 型 | | 説明 |
+| ------- | ------------------ | :-: | --------- |
+| message | Text, Blob, Object | -> | 送信するメッセージ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
index 14752f7a1265e9..7d80562a37e1a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
@@ -232,7 +232,7 @@ LogFile("!!! サーバーエラー: "+$event.errors.first().message)
| ws | | [`4D.WebSocketConnection`](WebSocketConnectionClass.md) | <- | カレントの WebSocket 接続オブジェクト |
| event | | Object | <- | 引数 |
| | type | Text | | "message" |
-| | data | Text / Blob / Object | | クライアントから送信されたデータ |
+| | data | Text, Blob, Object | | クライアントから送信されたデータ |
WebSocket データ用のコールバックです。 WebSocket がデータを受信するたびに呼び出されます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/cli.md b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/cli.md
index 801536875e0705..8df17eb3aeca6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/cli.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/cli.md
@@ -50,7 +50,7 @@ macOS のターミナルまたは Windows のコンソールを使用して、
| `--skip-onstartup` | | `On Startup` および `On Exit` データベースメソッドを含む "自動" メソッドを一切実行せずにプロジェクトを起動します。 |
| `--startup-method` | プロジェクトメソッド名 (文字列) | (`--skip-onstartup` でスキップされていない場合) `On Startup` データベースメソッドの直後に実行するプロジェクトメソッドです。 |
-(\*) 一部のダイアログはデータベースを開く前に表示されるため、[診断ログファイル](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) に記録することができません (ライセンス警告、変換ダイアログ、データベース選択、データファイル選択)。 このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/licenses.md b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/licenses.md
index 75c64fe3057115..32a77d067eba1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/licenses.md
@@ -32,7 +32,7 @@ title: ライセンスリスト
一部の4D ライセンスには有効期限があり、それを過ぎた場合には更新する必要があります。 ライセンスのサブスクリプションが4D ストア上で更新されると、ウェルカムウィザードから[ログイン](GettingStarted/Installation.md)すると、お使いの4D アプリケーション内のライセンスは自動的に更新されます。
-一部のケースにおいては、ライセンスマネージャダイアログボックス内の[**更新** ボタン](#更新) をクリックする必要があるものもあります。
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## ライセンスの有効化
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/webAdmin.md b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
index 81090d6fc2c115..6eb22a961372e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
@@ -1,21 +1,27 @@
---
id: webAdmin
-title: WebAdmin
+title: Web 管理サーバー
---
-`WebAdmin` とは、4D および 4D Server に使用される組み込みの Webサーバーコンポーネントの名称で、[データエクスプローラー](dataExplorer.md) などの管理機能への安全な Webアクセスを提供します。 ブラウザーや、任意の Webアプリケーションから、ローカルまたはリモートでこの Webサーバーに接続し、関連の 4Dアプリケーションにアクセスすることができます。
+`WebAdmin`, とは、4D および 4D Server に使用される組み込みの Webサーバーコンポーネントの名称で、以下のような特定の機能への安全な Webアクセスを提供します:
-WebAdmin 内部コンポーネントは、"WebAdmin" 権限を持つユーザーの認証を処理し、管理セッションを開いて専用インターフェースにアクセスできるようにします。
+- プロジェクトへのREST アクセス
+- [データエクスプローラー](dataExplorer.md)
+- [Qodly Studio プレビューレンダリング](https://developer.4d.com/qodly/4DQodlyPro/rendering#preview-in-qodly-studio)
+
+ブラウザーや、任意の Webアプリケーションから、ローカルまたはリモートでこの Webサーバーに接続し、関連の 4Dアプリケーションにアクセスすることができます。
+
+Web 管理サーバーは、 `WebAdmin` 権限を持つユーザーの認証を処理し、管理セッションを開いて専用インターフェースにアクセスできるようにします。
この機能は、ヘッドレスで動作する 4Dアプリケーションでも、インターフェースを持つ 4Dアプリケーションでも使用できます。
-## WebAdmin Webサーバーの起動
+## Web管理サーバーの起動
-デフォルトでは、`WebAdmin` Webサーバーは開始しません。 起動時に開始するように設定するか、(インターフェース付きの場合は) メニューから手動で開始する必要があります。
+デフォルトでは、Web 管理サーバーは起動していません。 起動時に開始するように設定するか、(インターフェース付きの場合は) メニューから手動で開始する必要があります。
### 自動スタートアップ
-`WebAdmin` Webサーバーは、4D または 4D Server アプリケーションの起動時 (プロジェクトの読み込み前) に開始するように設定できます。
+Web 管理サーバーは、4D または 4D Server アプリケーションの起動時 (プロジェクトの読み込み前) に開始するように設定できます。
- インターフェースを持つ 4Dアプリケーションを使用している場合は、**ファイル > Web管理 > 設定...** メニュー項目を選択します。
@@ -31,23 +37,23 @@ Web管理設定ダイアログボックスで、**WebAdmin サーバーをスタ
open ~/Desktop/4D.app --webadmin-auto-start true
```
-> `WebAdmin` Webサーバーが使用する TCPポート (設定により、[HTTPS](#https-port) または [HTTP](#http-port)) が開始時に空いていない場合、4D は次の 20個のポートを順に試し、利用できる最初のポートを使用します。 利用可能なポートがない場合、Webサーバーは開始せず、エラーが表示されるか、(ヘッドレスアプリケーションの場合は) コンソールのログに記録されます。
+> Web 管理サーバーが使用する TCPポート (設定により、[HTTPS](#https-port) または [HTTP](#http-port)) が開始時に空いていない場合、4D は次の 20個のポートを順に試し、利用できる最初のポートを使用します。 利用可能なポートがない場合、Webサーバーは開始せず、エラーが表示されるか、(ヘッドレスアプリケーションの場合は) コンソールのログに記録されます。
### 開始と停止
-インターフェースを持つ 4Dアプリケーションを使用している場合、プロジェクトの `WebAdmin` Webサーバーはいつでも開始または停止することができます:
+インターフェースを持つ 4Dアプリケーションを使用している場合、プロジェクトの Web 管理サーバーはいつでも開始または停止することができます:
**ファイル > Web管理 > Webサーバー開始** メニュー項目を選択します。

-サーバーが開始されていると、メニュー項目は **Webサーバー停止** になります。`WebAdmin` Webサーバーを停止するには、これを選択します。
+サーバーが開始されていると、メニュー項目は **Webサーバー停止** になります。Web 管理サーバーを停止するには、これを選択します。
-## WebAdmin 設定
+## 設定 {#settings}
-[**アクセスキー**](#access-key) を定義するには、`WebAdmin` コンポーネントの設定は必須です。 デフォルトで、アクセスキーが設定されていない場合は、URL経由のアクセスは許可されません。
+[**アクセスキー**](#access-key) を定義するには、Web 管理サーバーの設定は必須です。 デフォルトで、アクセスキーが設定されていない場合は、URL経由のアクセスは許可されません。
-`WebAdmin` コンポーネントの設定は、[Web管理設定ダイアログボックス](#settings-dialog-box) (後述参照) でおこないます。
+Web 管理サーバーの設定は、[Web管理設定ダイアログボックス](#settings-dialog-box) (後述参照) でおこないます。
> ヘッドレス4Dアプリケーションを使用している場合は、[*コマンドライン・インターフェース* の引数](#webadmin-headless-configuration) を使用して基本的な設定を定義できます。 高度なパラメーターを定義するには、設定ファイルをカスタマイズする必要があります。
@@ -63,28 +69,30 @@ Web管理の設定ダイアログボックスを開くには、**ファイル
#### WebAdmin サーバーをスタートアップ時に起動
-4D または 4D Server アプリケーションの起動時に `WebAdmin` Webサーバーを自動的に開始させるには、このオプションをチェックします ([前述参照](#自動スタートアップ))。 デフォルトでは、このオプションはチェックされていません。
+4D または 4D Server アプリケーションの起動時に Web 管理サーバーを自動的に開始させるには、このオプションをチェックします ([前述参照](#自動スタートアップ))。 デフォルトでは、このオプションはチェックされていません。
#### ローカルホストでHTTP接続を受け入れる
-このオプションを有効にすると、4Dアプリケーションと同じマシン上で HTTP を介して `WebAdmin` Webサーバーに接続できます。 デフォルトでは、このオプションはチェックされています。
+このオプションを有効にすると、4Dアプリケーションと同じマシン上で HTTP を介して Web 管理サーバーに接続できます。 デフォルトでは、このオプションはチェックされています。
-**注:**
+:::note 注記
- ローカルホスト以外による HTTP接続は受け付けません。
- このオプションがチェックされていても、[HTTPSを受け入れる](#httpsを受け入れる) がチェックされていて、TLS の設定が有効な場合、ローカルホストの接続は HTTPS を使用します。
+:::
+
#### HTTP ポート
-**ローカルホストでHTTP接続を受け入れる** オプションが有効な場合、`WebAdmin` Webサーバーへの HTTP接続に使用するポート番号です。 デフォルト値は 7080 です。
+**ローカルホストでHTTP接続を受け入れる** オプションが有効な場合、Web 管理サーバーへの HTTP接続に使用するポート番号です。 デフォルト値は 7080 です。
#### HTTPSを受け入れる
-このオプションを有効にすると、`WebAdmin` Webサーバーに HTTPS を介して接続できます。 デフォルトでは、このオプションはチェックされています。
+このオプションを有効にすると、Web 管理サーバーに HTTPS を介して接続できます。 デフォルトでは、このオプションはチェックされています。
#### HTTPS ポート
-**HTTPSを受け入れる** オプションが有効な場合、`WebAdmin` Webサーバーへの HTTPS接続に使用するポート番号です。 デフォルト値は 7443 です。
+**HTTPSを受け入れる** オプションが有効な場合、Web 管理サーバーへの HTTPS接続に使用するポート番号です。 デフォルト値は 7443 です。
#### 認証フォルダパス
@@ -102,7 +110,7 @@ HTTPリクエストログファイル (アプリケーションの "Logs" フォ
#### アクセスキー
-`WebAdmin` Webサーバーへの URL経由アクセスのロックを解除するには、アクセスキーの定義は必須です (4Dメニューコマンドによるアクセスにはアクセスキーは必要ありません)。 アクセスキーが定義されていない場合、[データエクスプローラーページ](dataExplorer.md) などの Web管理インターフェースに Webクライアントを使って URLを介した接続はできません。 接続リクエストがあった場合には、エラーページが返されます:
+Web 管理サーバーへの URL経由アクセスのロックを解除するには、アクセスキーの定義は必須です (4Dメニューコマンドによるアクセスにはアクセスキーは必要ありません)。 アクセスキーが定義されていない場合、[データエクスプローラーページ](dataExplorer.md) などの Web管理インターフェースに Webクライアントを使って URLを介した接続はできません。 接続リクエストがあった場合には、エラーページが返されます:

@@ -122,9 +130,15 @@ HTTPリクエストログファイル (アプリケーションの "Logs" フォ
このオプションにより、4Dアプリケーションレベルでの [Qodly Studio](../WebServer/qodly-studio.md) へのユーザーアクセスができるようになります。 また、[各プロジェクトレベルでもアクセスを有効](../settings/web.md#qodly-studio-へのアクセスを有効化する) にする必要があることに注意してください。
-## WebAdmin のヘッドレス設定
+:::note
+
+このオプションは、[ワンクリック設定ダイアログボックス](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration)を使用した場合には自動的にチェックされています。
+
+:::
+
+## ヘッドレス設定
-すべての [WebAdmin 設定](#webadmin-設定) は、`WebAdmin.4DSettings` ファイルに保存されます。 4D および 4D Server アプリケーション毎にデフォルトの `WebAdmin.4DSettings` ファイルが 1つ存在し、同じホストマシン上で複数のアプリケーションを運用することができます。
+すべての [Web 管理サーバー設定](#設定) は、`WebAdmin.4DSettings` ファイルに保存されます。 4D および 4D Server アプリケーション毎にデフォルトの `WebAdmin.4DSettings` ファイルが 1つ存在し、同じホストマシン上で複数のアプリケーションを運用することができます。
4D および 4D Server アプリケーションをヘッドレスで実行している場合、デフォルトの `WebAdmin.4DSettings` ファイルを設定して使用するか、カスタムの `.4DSettings` ファイルを指定することができます。
@@ -143,12 +157,19 @@ HTTPリクエストログファイル (アプリケーションの "Logs" フォ
```
-## 認証とセッション
+## 認証
-- 事前に本人確認せずに URL経由で Web管理ページにアクセスした場合、認証が必要になります。 ユーザーは、認証ダイアログボックスに [アクセスキー](#アクセスキー) を入力する必要があります。 `WebAdmin` 設定でアクセスキーが定義されていない場合には、URL経由のアクセスはできません。
+事前に本人確認せずに、 Web 管理サーバーによって管理されている Web ページにURL経由でアクセスした場合、認証が必要になります。 ユーザーは認証ダイアログボックス内にて[アクセスキー](#アクセスキー) を入力する必要があります:
-- 4D または 4D Server のメニュー項目 (**レコード > データエクスプローラー** または **ウィンドウ > データエクスプローラー** (4D Server) など) から Web管理ページに直接アクセスした場合、アクセスは認証なしで許可され、ユーザーは自動的に認証されます。
+
-アクセスが許可されると、4Dアプリケーション上に "WebAdmin" 権限を持つ Web[セッション](WebServer/sessions.md) が作成されます。 カレントセッションが "WebAdmin" 権限を持っている限り、`WebAdmin` コンポーネントは要求されたページを提供します。
+アクセスキーがWeb 管理サーバー設定内で定義されていなかった場合、URL 経由でのアクセスはできません(特定のメッセージが表示されます)。
+4D または 4D Server のメニュー項目 (**レコード > データエクスプローラー** または **ウィンドウ > データエクスプローラー** (4D Server) など) から Web 管理サーバーページによって管理されているWebページに直接アクセスした場合、アクセスは認証なしで許可され、ユーザーは自動的に認証されます。
+
+:::note
+
+アクセスが許可されると、Web 管理サーバーによって "WebAdmin" 権限を持つ [Web セッション](WebServer/sessions.md) が作成されます。 この権限は[リソースに対して特定の許可が適用](../ORDA/privileges.md) されていない限り、Web プロセスを通して全てのデータへのオープンなアクセスを提供します。
+
+:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
index 8053e42f0dedd2..eae2c9ac05f5b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
@@ -429,5 +429,6 @@ End for
4D ランゲージドキュメントでは、次の表記が使われています:
- 中カッコ `{ }` は、任意のパラメーターを示します。 たとえば、`.delete( { option : Integer } )` という表記の場合、関数を呼び出す際に *option* パラメーターを省略することができます。
-- `{ ; ...param }` という表記は、パラメーターの数に制限がないことを示します。 たとえば、`.concat( value : any { ;...valueN } ) : Collection` という表記の場合、データ型および数に制限なく関数に引数を渡すことができます。
+- `{; ...*param* : Type}` という表記は、同じ型のパラメーターの数に制限がないことを示します。 たとえば、`.concat( value : any { ;...valueN : Text } ) : Collection` という表記の場合、テキスト型の引数を数に制限なく関数に渡すことができます。
+- `{; ...(*param* : Type ; *param2* : Type) }` という表記は、グループでのパラメーターの数に制限がないことを示します。 例えば、`COLLECTION TO ARRAY ( collection : Collection ; array : Array {; propertyName : Text}{; ...(array : Array ; propertyName : Text) } )` という表記は、値またはテキスト型配列のペアを無制限にコマンドに渡すことができるということを意味します。
- `any` キーワードは、あらゆる型(数値、テキスト、ブール、日付、時間、オブジェクト、コレクション、など)が可能な引数に対して使用されます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md
index ce82ec00c69164..2052cbedd93889 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Debugging/debugger.md
@@ -42,7 +42,7 @@ title: デバッガー
:::note 注記
- ヘッドレスモードで実行中のサーバーでは、デバッガーウィンドウを表示することはできません。この場合はリモートデバッガーを使用する必要があります。 [リモートマシンからのデバッグ](./debugging-remote.md) 参照。
-- 運用環境で Qodlyページをデバッグする必要がある場合は、[Qodly Studio のデバッガーを 4D Server アプリケーションで有効化する](../WebServer/qodly-studio.md#4d-server-で-qodlyデバッガーを使用する) こともできます。
+- 運用環境で Qodlyページをデバッグする必要がある場合は、[Qodly Studio のデバッガーを 4D Server アプリケーションで有効化する](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) こともできます。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/building.md b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/building.md
index e13f0a0761d728..e7586ef3e09248 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/building.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/building.md
@@ -407,8 +407,8 @@ Windows用サーバーアプリケーションのビルドに使用される App
この機能を有効化するためには、 *buildApp* 設定ファイルに `DatabaseToEmbedInClientWinFolder` または `DatabaseToEmbedInClientMacFolder` キーを追加します。 いずれかのキーが存在する場合、アプリケーションビルドプロセスの途中で組み込みシングルユーザーアプリケーションが生成され、コンパイルされたストラクチャーが(EnginedServer.4Dlink ファイルの代わりに) "Database" フォルダー内に置かれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがあれば、アプリケーションにはライセンスが埋め込まれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがなければ、データファイルおよびライセンスなしでアプリケーションが実行されます。
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
基本シナリオは以下の通りです:
@@ -497,10 +497,11 @@ Windows用サーバーアプリケーションのビルドに使用される App
- **SpellChecker**: 入力エリアと 4D Write Proエリアで利用可能なビルトインの [スペルチェック機能](../FormObjects/properties_Entry.md#自動スペルチェック) とコマンドに使用されます。
- **4D Updater**: クライアントの [自動更新](#クライアントサーバーアプリケーションとは) をコントロールし、[サーバーの自動更新](#サーバーまたはシングルユーザーアプリケーションの自動更新) のための `SET UPDATE FOLDER` コマンドで使用されます。
+- **4D Qodly Pro and Data Explorer**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/) as well as the [Data Explorer](../Admin/dataExplorer.md).
## ライセンス&証明書ページ
-ライセンス&証明書のページでは、次のようなことができます:
+The Licenses & Certificate page can be used to:
- [スタンドアロン](#アプリケーションページ)アプリケーションまたは[クライアントサーバー](#クライアントサーバーページ) アプリケーションに統合したい[運用ライセンス](../Admin/licenses.md#運用ライセンス) を設定します。
- macOS 環境下では、証明書を使用してアプリケーションに署名をすることができます。
@@ -535,7 +536,7 @@ Windows用サーバーアプリケーションのビルドに使用される App
- [`License info`](../commands/license-info.md) コマンドを使用するとアプリケーションライセンスのタイプ (*.attributes* コレクション) およびそれらの有効期限 (*.expirationDate* オブジェクト) を知ることができます。
- BuildApplication の[`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.ja.html) xml キーを使用すると、評価版を管理することができます。
-- [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) コマンドは、評価版から呼び出された場合には何もしません。
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/clientServer.md b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
index d2fb494d4bbf85..bc2ce514057472 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
@@ -85,93 +85,3 @@ title: クライアント/サーバー管理
> プラグインやコンポーネントを 4D あるいは 4D Server アプリケーションレベルにインストールすることは、推奨されません。
-## リモートユーザーセッション
-
-サーバー上では、[`Session`](../commands/session.md) コマンドはカレントユーザーセッションの情報を格納する `Session` オブジェクトを返します。 このオブジェクトを扱うには、[`Session` クラス](../API/SessionClass.md) の関数とプロパティを使用します。
-
-:::tip 関連したblog 記事
-
-[クライアント/サーバー接続とストアドプロシージャーに対応した新しい 4Dリモートセッションオブジェクト](https://blog.4d.com/ja/new-4d-remote-session-object-with-client-server-connection-and-stored-procedure/)。
-
-:::
-
-### 効果
-
-`session` オブジェクトを使用すると、リモートユーザーセッションに関する情報や権限を管理できます。
-
-ユーザーセッションのすべてのプロセス間でデータを共有するには、[`Session.storage`](../API/SessionClass.md#storage) 共有オブジェクトを使用できます。 たとえば、クライアントがサーバーに接続する際にユーザー認証手続きを開始し、メールや SMS で送信されたコードをアプリケーションに入力させることができます。 次に、ユーザー情報をセッションの storage に追加し、サーバーがユーザーを識別できるようにします。 この方法により、4Dサーバーはすべてのクライアントプロセスのユーザー情報にアクセスできるため、ユーザーの役割に応じてカスタマイズされたコードを用意することができます。
-
-また、リモートユーザーセッションに権限を割り当てることで、Webエリア内で実行されているQodly ページからセッションがきている場合にアクセスを管理することができます。
-
-### 利用可能性
-
-リモートユーザー `Session` オブジェクトは以下から利用できます:
-
-- [サーバー上で実行](../Project/code-overview.md#サーバー上で実行) 属性を持つプロジェクトメソッド (クライアントプロセスの "双子" プロセスで実行されます)
-- トリガー
-- ORDA [データモデル関数](../ORDA/ordaClasses.md) ([`local`](../ORDA/ordaClasses.md#ローカル関数) キーワードで宣言されたものを除く)
-- `On Server Open Connection` および `On Server Shutdown Connection` データベースメソッド
-
-:::info
-
-サーバー上のすべてのストアドプロシージャーは、同じ仮想ユーザーセッションを共有します。 詳細については、[doc.4d.com のこのページ](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.ja.html) を参照ください。
-
-:::
-
-### Webエリア内のQodlyページとセッションを共有する
-
-リモートクライアントセッションを使用して、リモートマシン上で実行中の、[Qodly ページ](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) がインターフェースとして使用されているクライアント/サーバーアプリケーションを管理することができます。 With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
-
-To manage this configuration, you need to use remote client sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip 関連したblog 記事
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### 例題
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-*resetPrivileges()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-*getOTP()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/sessions.md b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/sessions.md
new file mode 100644
index 00000000000000..058ac156032b76
--- /dev/null
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: デスクトップセッション
+---
+
+**デスクトップセッション** とは、4D Server または4D シングルユーザー版のユーザー関連の実行コンテキストであり、Web やREST アクセスに起因するものではないものです。
+
+[**Web ユーザーセッション**](../WebServer/sessions.md) 同様、デスクトップセッションで実行されたコードは[`Session`](../API/SessionClass.md) オブジェクトへのアクセスが可能で、これによって提供される関数やプロパティによって(例えば[`session.storage`](../API/SessionClass.md#storage) オブジェクトを使用することによって)セッションの値を保存したりユーザープロセス間で共有することが可能になります。
+
+しかしながら、Web ユーザーセッション内で実行されたコードとは違い、デスクトップセッション内で実行されたコードは[ロールと権限](../ORDA/privileges.md)によっては管理されません。 これはORDA およびデータモデルクラスを含め、4D アプリケーションのどの部分へもアクセスすることができます。 4D Server 上では、[ユーザー&グループ機能](../Users/handling_users_groups.md) でユーザーアクセスを管理することができます。
+
+それでも、[デスクトップセッションをWeb セッションと**共有** すること](#webアクセス用にデスクトップセッションを共有する) ことができ、これによってデスクトップユーザーは、例えばQodly ページとWeb エリアを使用して、Web インターフェースを通して4D アプリケーションへとアクセスうすることができます。
+
+## セッションの種類
+
+デスクトップセッションには以下のような種類が含まれます:
+
+- **リモートユーザーセッション**: クライアント/サーバーアプリケーションにおいては、サーバー上でユーザープロセスを管理するセッション。
+- **ストアドプロシージャーセッション**: クライアント/サーバーアプリケーションにおいては、サーバー上で実行される全てのストアドプロシージャーを管理する固有のバーチャルユーザーセッション。
+- **スタンドアロンセッション**: シングルユーザーアプリケーション内で返されるローカルセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
+
+:::note
+
+[スケーラブルセッション](../WebServer/sessions.md#webセッションの有効化) 有効化されているときに、4D プロジェクトがWeb またはREST 経由でアクセスがあれば、すぐに[**Web セッション**](../WebServer/sessions.md) が使用されるという点に注意してください。
+
+:::
+
+以下の図は、異なるセッションの種類とそれらがどのように関連するかを表しています:
+
+
+
+## リモートユーザーセッション
+
+サーバー上では、"ユーザープロセス"(つまりリモートユーザーに関連したプロセス)内では、[`Session`](../commands/session.md) コマンドはカレントのユーザーセッションを表す `session` オブジェクトを返します。 このオブジェクトを扱うには、[`Session` クラス](../API/SessionClass.md) の関数とプロパティを使用します。
+
+:::note
+
+リモート4D では、 `session` オブジェクトは常に null を返します。
+
+:::
+
+:::tip 関連したblog 記事
+
+[クライアント/サーバー接続とストアドプロシージャーに対応した新しい 4Dリモートセッションオブジェクト](https://blog.4d.com/ja/new-4d-remote-session-object-with-client-server-connection-and-stored-procedure/)。
+
+:::
+
+### 効果
+
+`session` オブジェクトを使用すると、リモートユーザーセッションに関する情報や権限を管理できます。
+
+ユーザーセッションのすべてのプロセス間でデータを共有するには、[`Session.storage`](../API/SessionClass.md#storage) 共有オブジェクトを使用できます。 たとえば、クライアントがサーバーに接続する際にユーザー認証手続きを開始し、メールや SMS で送信されたコードをアプリケーションに入力させることができます。 次に、ユーザー情報をセッションの storage に追加し、サーバーがユーザーを識別できるようにします。 この方法により、4Dサーバーはすべてのクライアントプロセスのユーザー情報にアクセスできるため、ユーザーの役割に応じてカスタマイズされたコードを用意することができます。
+
+また、リモートユーザーセッションに権限を割り当てることで、Webエリア内で実行されているQodly ページからセッションがきている場合にアクセスを管理することができます。
+
+### 利用可能性
+
+リモートユーザー `Session` オブジェクトは以下から利用できます:
+
+- [サーバー上で実行](../Project/code-overview.md#サーバー上で実行) 属性を持つプロジェクトメソッド (クライアントプロセスの "双子" プロセスで実行されます)
+- トリガー
+- ORDA [データモデル関数](../ORDA/ordaClasses.md) (ただし、[`local`](../ORDA/ordaClasses.md#local-functions) キーワードで宣言されているものを除く)
+- [`On Server Open Connection`](../commands/on-server-open-connection-database-method) と [`On Server Close Connection`](../commands/on-server-close-connection-database-method)などのデータベースメソッド。
+
+## ストアドプロシージャーセッション
+
+サーバー上では、全ての[ストアドプロシージャー](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.ja.html) は同じバーチャルユーザーセッションを共有します。
+
+### 効果
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### 利用可能性
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### 効果
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### 利用可能性
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. この構成では、アプリケーションは現代的なCSS ベースのWeb インターフェースを持ちながらも、統合されたクライアント/サーバーのパワーと単純さの恩恵に預かることができます。 このようなアプリケーションでは、Qodly ページは標準の4D [Web エリア](../FormObjects/webArea_overview.md)内で実行されます。
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+共有セッションは [OTPトークン](../WebServer/sessions.md#session-token-otp) を通して管理されます。 After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. Web サーバー側では、Web リクエストが $4DSID パラメーター内に *OTP id* を格納していた場合、そのOTP トークンに対応したセッションが使用されます。
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip 関連したblog 記事
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### 例題
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Develop/field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/Develop/field-properties.md
index a3dee0bff39419..bd512de3b5bc00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Develop/field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Develop/field-properties.md
@@ -3,7 +3,7 @@ id: field-properties
title: フィールドプロパティ
---
-For other field properties, please refer to [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.en.html).
+他のフィールドプロパティについては、 [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.ja.html) を参照してください。
## Class
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Events/onValidate.md b/i18n/ja/docusaurus-plugin-content-docs/current/Events/onValidate.md
index e71db804f9a9e1..663ac0e6bd8cc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Events/onValidate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Events/onValidate.md
@@ -9,7 +9,7 @@ title: On Validate
## 説明
-This event is triggered when the record data entry has been validated, for example after an `accept` [standard action](FormObjects/properties_Action.md#standard-action).
+このイベントは、例えば `accept` [標準アクションの後](FormObjects/properties_Action.md#標準アクション) など、レコードデータの入力が受け入れられたときにトリガーされます。
### サブフォーム
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Extensions/develop-components.md b/i18n/ja/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
index 48b66b1a723731..b8dbd013774d00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
@@ -114,9 +114,9 @@ title: コンポーネントの開発
- メソッドの実行
- ゴミ箱からの復元、あるいはゴミ箱を空にする。
-### Search and replace
+### 検索と置換
-You can use the [**Search and replace** features](../Project/search-replace.md) of the host project to search elements within the code or the forms of your editable components. The **Search in project** menu allows you to select one or all components as search target:
+ホストプロジェクトの[**検索と置換** 機能](../Project/search-replace.md) を使用して、編集可能なコンポーネントのコードやフォーム内の要素を検索することができます。 **プロジェクト内を検索** メニューを使用することで、ひとつまたは全てのコンポーネントを検索ターゲットとして選択することができます:

@@ -251,16 +251,16 @@ $rect:=cs.eGeometry._Rectangle.new(10;20)
## 変数の渡し方
-Variables are not shared between components and host projects. ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
+変数はコンポーネントとホストプロジェクト間では共有されません。 ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
配列を使用した例:
```4d
-//In the host project:
+//ホストプロジェクト内
ARRAY INTEGER(MyArray;10)
AMethod(->MyArray)
-//In the component, the AMethod project method contains:
+//コンポーネント内、AMethod プロジェクトメソッドには以下の記述があります:
#DECLARE($ptr : Pointer)
APPEND TO ARRAY($ptr->;2)
```
@@ -280,11 +280,11 @@ $p:=component_method2(...)
ポインターを使用しない場合でも、コンポーネント側からホストデータベースの (変数そのものではなく) 変数の値にアクセスすること自体は可能ですし、その逆も可能です:
```4d
-//In the host database
+//ホストデータベース内
var $input_t : Text
$input_t:="DoSomething"
component_method($input_t)
-// component_method gets "DoSomething" in parameter (but not the $input_t variable)
+// component_method は($input_t 変数ではなく) "DoSomething" を引数として受け取ります
```
ホストプロジェクトとコンポーネント間でポインターを使用して通信をおこなうには、以下の点を考慮する必要があります:
@@ -298,7 +298,7 @@ component_method($input_t)
- コンポーネントI が定義する変数 `myIvar` があるとき、コンポーネントC はポインター `->myIvar` を使用しても変数の値にアクセスすることはできません。 このシンタックスは実行エラーを起こします。
-- The comparison of pointers using the [`RESOLVE POINTER`](../commands/resolve-pointer) command is not recommended with components since the principle of partitioning variables allows the coexistence of variables having the same name but with radically different contents in a component and the host project (or another component). 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
+- [`RESOLVE POINTER`](../commands/resolve-pointer) コマンドを使用したポインターの比較はお勧めできません。変数の分離の原則により、ホストプロジェクトとコンポーネント (あるいは他のコンポーネント) で同じ名前の変数が存在することができますが、根本的にそれらは異なる内容を持ちます。 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
```4d
RESOLVE POINTER(myptr1;vVarName1;vtablenum1;vfieldnum1)
@@ -331,7 +331,7 @@ methCreateRec(->[PEOPLE];->[PEOPLE]Name;"Julie Andrews")
コンポーネント内の `methCreateRec` メソッドのコード:
```4d
-#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //Pointer on a table in host project
+#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //ホストプロジェクト内のテーブルへのポインター
CREATE RECORD($tablepointer->)
@@ -451,6 +451,30 @@ SAVE RECORD($tablepointer->)
> セキュリティ上の理由から、`On Host Database Event` データベースメソッドを使用可能にするためには、その実行をホストデータベースで明示的に許可する必要があります。 このためには、ストラクチャー設定画面のセキュリティページ内の、[**コンポーネントの "On Host Database Event" メソッドを実行**](../settings/security.md#オプション) オプションにチェックを入れます:
+## カスタムアイコン
+
+You can use a **custom icon** for your dependency, so that it can be visually distinguished from other components in the [Project Dependencies panel](../Project/components.md#monitoring-project-dependencies).
+
+When no custom icon is defined, components use a **default icon**:
+
+
+
+To declare a custom icon for your component:
+
+1. Create a picture file for the icon and name it `logo.svg` or `logo.png`. Note that the picture will be displayed with a square shape (and automatically resized if necessary). The **svg** format is recommended.
+
+2. Copy the icon file in the [**Resources folder**](../Project/architecture.md#resources) of the component.
+
+The logo file will be used in the Project Dependency window for the component, whether it is interpreted or [built](../Desktop/building.md#build-component).
+
+
+
+:::note
+
+If both a `logo.svg` and `logo.png` files are found, the `logo.svg` takes priority.
+
+:::
+
## Info.plist
コンポーネントは、その[root フォルダ](../Project/architecture.md) にシステム(macOS のみ)と[依存関係マネージャ](../Project/components.md#コンポーネントのロード)が読み取り可能な追加の情報を提供する、 `Info.plist` ファイルを持っています。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md
index 059a184d79ea78..73f92603ea2e4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/formEditor.md
@@ -148,7 +148,7 @@ title: フォームエディター
1. ツールバーの矢印ツールをクリックします。

-
When you move the pointer into the form area, it becomes a standard arrow-shaped pointer.
+
マウスカーソルをフォームエリアに移動させると、カーソルは標準の矢印の形をしたポインターに変わります。
2. 選択したいオブジェクトをクリックします。 サイズ変更ハンドルが表示され、オブジェクトが選択されたことを表わします。

@@ -156,9 +156,8 @@ title: フォームエディター
1. プロパティリストの一番上にあるオブジェクトリストドロップダウンリストからオブジェクト名を選択します。 この方法では、他のオブジェクトの下に隠れているオブジェクトや、カレントウィンドウの表示領域外に置かれているオブジェクトを選択することができます。
オブジェクトの選択を解除するには、オブジェクト境界の外側をクリックするか、またはオブジェクト上で **Shift+クリック** します。
- > "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックして選択することもできます。
-> It is also possible to select objects by double-clicking them in the result window of "Find in design" operation.
+> "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックすることで選択することもできます。
### 複数オブジェクトの選択
@@ -248,7 +247,7 @@ title: フォームエディター
オブジェクトのグループ化を解除するには:
1. グループ化を解除したいグループオブジェクトを選択します。
-2. Choose **Ungroup** from the **Object** menu.
OR
Click the **Ungroup** button (variant of the **Group** button) in the toolbar of the Form editor.
If **Ungroup** is dimmed, this means that the selected object is already separated into its simplest form. 4D は個々のオブジェクトの境界をハンドルで表わします。
+2. **オブジェクト** メニューから **グループ化解除** を選択します。
または
フォームエディターのツールバーで **グループ化解除** ボタン (**グループ化** ボタンのサブ項目) をクリックします。
**グループ化解除** が選択不可の場合、選択したオブジェクトはグループに属していないことを意味します。 4D は個々のオブジェクトの境界をハンドルで表わします。
### オブジェクトの整列
@@ -315,7 +314,7 @@ title: フォームエディター
1. 3つ以上のオブジェクトを選択し、希望する均等配置ツールをクリックします。
-2. In the toolbar, click on the distribution tool that corresponds to the distribution you want to apply.

OR
Select a distribution menu command from the **Align** submenu in the **Object** menu or from the context menu of the editor.
+2. 適用したい均等配置に対応する整列ツールをツールバー上で選択します。

または
**オブジェクト** メニュー、またはエディターのコンテキストメニューの **整列** サブメニューから均等揃えメニューコマンドを選択します。
4D は各オブジェクトを均等に配置します。 各オブジェクトの中心までの間隔、および隣接する 2つのオブジェクトの間隔のうち最も広い間隔が基準として用いられます。
"整列と均等配置" ダイアログボックスを用いてオブジェクトを均等に配置するには:
@@ -353,7 +352,7 @@ title: フォームエディター
:::note
-In binary databases, use **Ctrl+Click / Command+Click** to perform the same action.
+バイナリーデータベースにおいては、同じアクションを実行するためには **Ctrl+クリック / Command+クリック** を使用してください。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/forms.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/forms.md
index 810beed2ab330c..105d0157b3712a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/forms.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormEditor/forms.md
@@ -96,11 +96,11 @@ title: Forms
マルチページフォームには、1つの背景ページと複数の表示ページが存在します。 背景ページ上に置かれたオブジェクトはすべての表示ページに現れますが、それらのオブジェクトの選択や編集は背景ページでのみ可能です。 複数ページフォームでは、ボタンパレットを背景ページに置くべきです。 また、ページ移動ツールオブジェクトを背景ページに配置し、ユーザーに提供する必要があります。
-## Fluent UI rendering (Developer Preview)
+## Fluent UIレンダリング(デベロッパープレビュー)
-On Windows, 4D supports **Fluent UI** form rendering, Microsoft's modern graphical user interface design, based upon **WinUI 3** technology. **WinUI 3** is the foundation of the Windows App SDK and represents the upcoming Windows graphical interfaces.
+Windows では、4D は **Fluent UI** フォームレンダリングをサポートしています。これは **WinUI 3** テクノロジーに基づいた、Microsoft のモダンなグラフィカルユーザーインターフェースデザインです。 **WinUI 3** はWindows App SDK の基礎であり、今後のWindows グラフィカルインターフェースを象徴するものです。
-Fluent UI rendering offers modern and attractive controls, support of dark/light system themes, smoother rendering optimized for high-resolution displays, and consistent user experience aligned with recent Microsoft applications.
+Fluent UI レンダリングは現代的かつ魅力的なコントロールを提供するだけでなく、ダーク/ライトシステムテーマのサポート、高解像度ディスプレイのために最適化されたよりスムーズなレンダリング、そして最近のMicrosoft アプリケーションに沿った、一貫したユーザーエクスペリエンスを提供します。
| ライトテーマ | ダークテーマ |
| --------------------------------------- | -------------------------------------------- |
@@ -108,13 +108,13 @@ Fluent UI rendering offers modern and attractive controls, support of dark/light
:::caution デベロッパー・プレビュー
-Fluent UI support is currently in the Developer Preview phase. 本番環境で使用すべきではありません。
+Fluent UI のサポートは現在デベロッパープレビューのフェーズです。 本番環境で使用すべきではありません。
:::
:::info 利用可能性
-This feature can be used **in 4D projects on Windows**. It is not available on macOS or in binary 4D databases on Windows.
+この機能は、**Windows の4D プロジェクト内** で使用可能です。 macOS や、Windows のバイナリー4D データベースなどではご利用いただけません。
:::
@@ -126,48 +126,48 @@ This feature can be used **in 4D projects on Windows**. It is not available on m
### 要件
-The Fluent UI rendering requires that the [**Windows App SDK version 1.7.3**](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/downloads) be installed. You need to install this SDK on any Windows machine displaying your forms.
+Fluent UI レンダリングには、[**Windows App SDK version 1.7.3**](https://learn.microsoft.com/ja-jp/windows/apps/windows-app-sdk/downloads) がインストールされている必要があります。 フォームを表示するためには、この SDK をWindows マシンにインストールする必要があります。
-If the Windows App SDK is not properly installed, 4D will render all your forms in classic mode with no error.
+Windows App SDK が適切にインストールされていない場合、4D はフォームを全てクラシックモードで、エラーなしに表示します。
-### Enabling the Fluent UI rendering
+### Fluent UI レンダリングを有効化する
-You can enable the Fluent UI rendering mode at the application level or at the form level. Form setting has priority over application setting.
+Fluent UI レンダリングモードは、アプリケーションレベルまたはフォームレベルで有効化することができます。 フォームでの設定の方がアプリケーションの設定より優先されます。
-#### Application setting
+#### アプリケーション設定
-Check the **Use Fluent UI on Windows** option in the "Interface" page of the Settings dialog box.
+ストラクチャー設定ダイアログボックスの"インターフェース" ページ内にある **Windows で Fluent UI を使用する** オプションをチェックします。

-In this case, the Fluent UI rendering mode will be used by default on Windows for all forms.
+この場合、Windows 上ではデフォルトで全てのフォームにおいてFluent UI レンダリングモードが使用されます。
-#### Form setting
+#### フォーム設定
-Each form can define its own rendering via the **Widget appearance** property. 次のオプションから選択することができます:
+それぞれのフォームは、 **Widget appearance** プロパティによって独自のレンダリング設定を定義することができます。 次のオプションから選択することができます:
-- **Inherited**: inherits the global application setting (default),
-- **Classic**: uses the classic Windows style,
-- **Fluent UI**: enables the modern rendering based on Fluent UI.
+- **継承**: グローバルなアプリケーション設定を継承します(デフォルト)
+- **クラシック**: クラシック Windows スタイルを使用します
+- **Fluent UI**: Fluent UI に基づいたモダンなレンダリングを有効化します。

-The corresponding [JSON form property](./properties_JSONref.md) is `fluentUI` with value undefined (i.e. inherited, default value), "true" or "false".
+対応する[JSON フォームプロパティ](./properties_JSONref.md) は `fluentUI` で、値は未定義(つまり継承、デフォルト値)、 "true" または "false"です。
-### Specific behaviors
+### 特定の振る舞い
-When using 4D forms with Fluent UI rendering, you need to pay attention to the following points:
+Fluent UI で4D フォームを使用する場合、以下の点に注意を払う必要があります:
-- The new `FORM Windows theme` command returns the actual display theme of the current form. Possible values: "Classic" or "FluentUI". If there is no current form or the command is called on macOS, and empty string is returned.
-- If [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) is called in the context of a form, the information returned relates to the current appearance of the form (Classic or FluentUI). If the command is called outside the context of a form, the information returned relates to the [global project settings](#application-setting).
-- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) with `Underline` *itemStyle* parameter is not supported (ignored) for pop up menus.
-- [Stepper](../FormObjects/stepper.md) form object does not support [double-click event](../Events/onDoubleClicked.md).
-- [Circle buttons](../FormObjects/button_overview.md#circle) are supported (similar as macOS).
-- The [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) commands are not supported in Web areas with system rendering engine.
-- A focus ring can be added to picture and text [inputs](../FormObjects/input_overview.md).
+- 新しい `FORM Windows theme` コマンドはカレントのフォームの実際の表示テーマを返します。 取り得る値: "Classic" あるいは "FluentUI"。 カレントフォームがない場合、あるいはコマンドがmacOS 上で呼ばれた場合、空の文字列が返されます。
+- [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) がフォームのコンテキストで呼び出された場合、返された情報はフォームのカレントのアピアランス(クラシックあるいはFluent UI)に関連したものです。 コマンドがフォームのコンテキスト外から呼ばれた場合、返された情報は[グローバルプロジェクト設定](#アプリケーション設定) に関連したものです。
+- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) の*itemStyle* 引数での `Underline` はポップアップメニューではサポートされていません(無視されます)。
+- [ステッパー](../FormObjects/stepper.md) フォームオブジェクトは[ダブルクリックイベント](../Events/onDoubleClicked.md) サポートしません。
+- [サークルボタン](../FormObjects/button_overview.md#サークル) はサポートされています(macOS と同様)。
+- [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) コマンドは、システムレンダリングエンジンを使用したWeb エリアではサポートされません。
+- フォーカスの四角はピクチャーおよびテキストの[入力](../FormObjects/input_overview.md) に追加することができます。
-:::info Limitations
+:::info 制約
-This **Developer preview** includes some limitations, which are [listed in the related blog post](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui).
+この **デベロッパープレビュー** にはいくつかの制約があり、それらは[こちらのblog 記事にまとめられています](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui)。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md
index a59b0ea2ab43b9..832f4a665583fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/listbox_overview.md
@@ -72,7 +72,7 @@ title: リストボックス
> 配列タイプのリストボックスは、特別なメカニズムをもつ [階層モード](listbox_overview.md#階層リストボックス) で表示することができます。
配列タイプのリストボックスでは、入力あるいは表示される値は 4Dランゲージで制御します。 列に [選択リスト](properties_DataSource.md#選択リスト) を割り当てて、データ入力を制御することもできます。
-The values of columns are managed using high-level List box commands (such as [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) or `LISTBOX DELETE ROWS`) as well as array manipulation commands. たとえば、列の内容を初期化するには、以下の命令を使用できます:
+リストボックスのハイレベルコマンド ([`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) や `LISTBOX DELETE ROWS` 等) や配列操作コマンドを使用して、列の値を管理します。 たとえば、列の内容を初期化するには、以下の命令を使用できます:
```4d
ARRAY TEXT(varCol;size)
@@ -136,7 +136,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| [ヘッダーを表示](properties_Headers.md#ヘッダーを表示) | X | X | X |
| [フッターを表示](properties_Footers.md#フッターを表示) | X | X | X |
| [行をダブルクリック](properties_ListBox.md#行をダブルクリック) | | X | |
-| [Draggable](properties_Action.md#draggable) | X | X | X |
+| [ドラッグ有効](properties_Action.md#ドラッグ有効) | X | X | X |
| [ドロップ有効](properties_Action.md#ドロップ有効) | X | X | X |
| [フォーカス可](properties_Entry.md#フォーカス可) | X | X | X |
| [フォント](properties_Text.md#フォント) | X | X | X |
@@ -195,7 +195,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> リストボックスの列、ヘッダーおよびフッターにもそれぞれ固有のプロパティがあります。
-### Supported Form Events {#supported-form-events}
+### サポートされるフォームイベント {#supported-form-events}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -232,7 +232,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| On Scroll | [horizontalScroll](#追加プロパティ)[verticalScroll](#追加プロパティ) | |
| On Unload | | |
-#### Additional Properties {additional-properties}
+#### 追加プロパティ {additional-properties}
リストボックスやリストボックス列オブジェクトにて発生するフォームイベントは、次の追加プロパティを返すことがあります:
@@ -266,11 +266,11 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> 配列型リストボックスのカラムについては、[式タイプ](properties_Object.md#式の型-式タイプ)
> (テキスト、数値、整数、ブール、ピクチャー、時間、日付、あるいはオブジェクト) を定義することができます。
-### Column Specific Properties {#column-specific-properties}
+### カラム特有のプロパティ {#column-specific-properties}
-[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type-list) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap)
+[オブジェクト名](properties_Object.md#オブジェクト名) - [変数あるいは式](properties_Object.md#変数あるいは式) - [式の型](properties_Object.md#式の型式タイプ) - [CSSクラス](properties_Object.md#cssクラス) - [選択リスト](properties_DataSource.md#選択リスト-静的リスト) - [式](properties_DataSource.md#式) - [幅](properties_CoordinatesAndSizing.md#幅) - [入力可](properties_Entry.md#入力可) - [フォーカス可](properties_Entry.md#フォーカス可) - [コンテキストメニュー](properties_Entry.md#コンテキストメニュー) - [デフォルト値](properties_DataSource.md#デフォルト値) - [選択リスト](properties_DataSource.md#選択リスト) - [式](properties_DataSource.md#式) - [データタイプ (リスト)](properties_DataSource.md#データタイプ-リスト) - [関連付け](properties_DataSource.md#関連付け) - [自動行高](properties_CoordinatesAndSizing.md#自動行高) - [最小幅](properties_CoordinatesAndSizing.md#最小幅) - [最大幅](properties_CoordinatesAndSizing.md#最大幅) - [横方向パディング](properties_CoordinatesAndSizing.md#横方向パディング) - [縦方向パディング](properties_CoordinatesAndSizing.md#縦方向パディング) - [サイズ変更可](properties_ResizingOptions.md#サイズ変更可) - [指定リスト](properties_RangeOfValues.md#指定リスト) - [除外リスト](properties_RangeOfValues.md#除外リスト) - [表示タイプ](properties_Display.md#d表示タイプ) - [文字フォ-マット](properties_Display.md#文字フォ-マット) - [日付フォーマット](properties_Display.md#日付フォーマット) - [時間フォーマット](properties_Display.md#時間フォーマット) - [数値フォーマット](properties_Display.md#数値フォーマット) - [テキスト (True時)/テキスト (False時)](properties_Display.md#テキスト-true時-テキスト-false時) - [ピクチャーフォーマット](properties_Display.md#ピクチャーフォーマット) - [非表示](properties_Display.md#表示状態) - [ワードラップ](properties_Display.md#ワードラップ) - [エリプシスを使用して省略](properties_Display.md#エリプシスを使用して省略) - [背景色](properties_BackgroundAndBorder.md#背景色-塗りカラー) - [交互に使用する背景色](properties_BackgroundAndBorder.md#交互に使用する背景色) - [背景色式](properties_BackgroundAndBorder.md#背景色式) - [行背景色配列](properties_BackgroundAndBorder.md#行背景色配列) - [フォント](properties_Text.md#フォント) - [太字](properties_Text.md#太字) - [イタリック](properties_Text.md#イタリック) - [下線](properties_Text.md#下線) - [行スタイル配列](properties_Text.md#行スタイル配列) - [スタイル式](properties_Text.md#スタイル式) - [フォントカラー](properties_Text.md#フォントカラー) - [行フォントカラー配列](properties_Text.md#行フォントカラー配列) - [横揃え](properties_Text.md#横揃え) - [縦揃え](properties_Text.md#縦揃え) - [マルチスタイル](properties_Text.md#マルチスタイル) - [メソッド](properties_Action.md#メソッド)
-### Supported Form Events {#supported-form-events-1}
+### サポートされるフォームイベント {#supported-form-events-1}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -313,7 +313,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
ランタイムにおいてヘッダーで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a header, it is applied to all headers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
+ヘッダーに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのヘッダーが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
### ヘッダー特有のプロパティ
@@ -349,7 +349,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
ランタイムにおいてフッターで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a footer, it is applied to all footers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
+フッターに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのフッターが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
### フッター特有のプロパティ
@@ -461,7 +461,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
End if
```
-> The [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command scrolls the list box rows so that the first selected row or a specified row is displayed.
+> [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) コマンドは、最初に選択された行または指定された行を表示するようにリストボックスをスクロールします。
### 選択行の見た目のカスタマイズ
@@ -693,14 +693,14 @@ End if
### 詳細モード
-このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command is used to control the printing of the object.
+このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドはオブジェクトの印刷をコントロールするために使用されるコマンドです。
このモードでは:
-- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 The size of the object actually printed can be obtained via the [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command.
+- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 実際に印刷されたオブジェクトのサイズは [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用することで取得することができます。
- リストボックスオブジェクトは "そのまま" 印刷されます。言い換えれば、ヘッダーやグリッド線の表示、表示/非表示行など、現在の表示設定が考慮されます。
- These parameters also include the first row to be printed: if you call the [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command before launching the printing, the first row printed in the list box will be the one designated by the command.
-- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command can be used to check the status of the printing while it is underway.
+ これらの設定には印刷される最初の行も含みます。印刷を実行する前に [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) を呼び出すと、リストボックスに印刷される最初の行はコマンドで指定した行になります。
+- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用して印刷の状態を進行中にチェックすることができます。
## 階層リストボックス
@@ -716,7 +716,7 @@ End if
- フォームエディターのプロパティリストを使用して階層要素を手作業で設定する (または JSON フォームを編集する)。
- フォームエディターのリストボックス管理メニューを使用して階層を生成する。
-- Use the [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) and [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) commands.
+- [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) と [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) コマンドを使用する。
#### "階層リストボックス" プロパティによる階層化
@@ -839,7 +839,7 @@ Variable 2 も常に表示され、入力できます。 これは二番目の
> 親が折りたたまれているために行が非表示になっていると、それらは選択から除外されます。 (直接あるいはスクロールによって) 表示されている行のみを選択できます。 言い換えれば、行を選択かつ隠された状態にすることはできません。
-As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command will return the same values for a hierarchical list box and a non-hierarchical list box. This means that in both of the examples below, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) will return the same position: (3;2).
+選択と同様に、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは階層リストボックスと非階層リストボックスにおいて同じ値を返します。 つまり以下の両方の例題で、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は同じ位置 (3;2) を返します。
*非階層表示:*

@@ -851,11 +851,11 @@ As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-ce
#### ブレーク行の管理
-If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns the first occurrence of the row in the corresponding array. 以下のケースで:
+ユーザーがブレーク行を選択すると、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は対応する配列の最初のオカレンスを返します。 以下のケースで:

-... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns (2;4). To select a break row by programming, you will need to use the [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) command.
+... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は (2;4) を返します。 プログラムでブレーク行を選択するには [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) コマンドを使用する必要があります。
ブレーク行はリストボックスのグラフィカルな表示 (スタイルやカラー) を管理する内部的な配列では考慮されません。 しかし、オブジェクトのグラフィックを管理するオブジェクト (フォーム) テーマのコマンドを使用してブレーク行の表示を変更できます。 階層を構成する配列に対して、適切なコマンドを実行します。
@@ -884,19 +884,19 @@ If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listb
`On Expand` や `On Collapse` フォームイベントを使用して階層リストボックスの表示を最適化できます。
-階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 This makes it difficult to build large hierarchical list boxes based on arrays generated from data (through the [`SELECTION TO ARRAY`](../commands/selection-to-array) command), not only because of the display speed but also the memory used.
+階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 大量のデータから ([`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドを使用して) 生成される配列をもとに階層リストボックスを構築するのは、表示速度だけでなくメモリ使用量の観点からも困難が伴います。
-`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 In the context of these events, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell where the user clicked in order to expand or collapse a row.
+`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 これらのイベントのコンテキストでは、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは、行を展開/折りたたむためにユーザーがクリックしたセルを返します。
この場合、開発者がコードを使用して配列を空にしたり値を埋めたりしなければなりません。 実装する際注意すべき原則は以下のとおりです:
- リストボックスが表示される際、先頭の配列のみ値を埋めます。 しかし 2番目の配列を空の値で生成し、リストボックスに展開/折りたたみアイコンが表示されるようにしなければなりません:

-- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned and lets you build the appropriate hierarchy: you fill the first array with the repeated values and the second with the values sent from the [`SELECTION TO ARRAY`](../commands/selection-to-array) command and you insert as many rows as needed in the list box using the [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) command.
+- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドはクリックされたセルを返すので、適切な階層を構築します: 先頭の配列に繰り返しの値を設定し、2番目の配列には [`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドから得られる値を設定します。そして[`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) コマンドを使用して必要なだけ行を挿入します。

-- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned: you remove as many rows as needed from the list box using the [`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) command.
+- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは該当するセルを返します。そして[`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) コマンドを使用して必要なだけ行をリストボックスから削除することができます。
## オブジェクト配列の使用
@@ -923,10 +923,10 @@ If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listb
これらのプロパティを定義するには、適切な属性をオブジェクト内に設定する必要があります (使用可能な属性は以下に一覧としてまとめてあります)。 たとえば、以下ような簡単なコードを使用してオブジェクトカラム内に "Hello World!" 書き込むことができます:
```4d
-ARRAY OBJECT(obColumn;0) //column array
- var $ob : Object //first element
- OB SET($ob;"valueType";"text") //defines the value type (mandatory)
- OB SET($ob;"value";"Hello World!") //defines the value
+ARRAY OBJECT(obColumn;0) //カラム配列
+ var $ob : Object //第一要素
+ OB SET($ob;"valueType";"text") //値の型を定義 (必須)
+ OB SET($ob;"value";"Hello World!") //値を定義
APPEND TO ARRAY(obColumn;$ob)
```
@@ -1005,11 +1005,11 @@ ARRAY OBJECT(obColumn;0) //column array
セルの値は "value" 属性に保存されています。 この属性は入力と出力に使用されるほか、 この属性は入力と出力に使用されるほか、 リストを使用する際のデフォルト値を定義するのにも使用できます (以下参照)。 リストを使用する際のデフォルト値を定義するのにも使用できます (以下参照)。
```4d
- ARRAY OBJECT(obColumn;0) //column array
+ ARRAY OBJECT(obColumn;0) //カラム配列
var $ob1;$ob2;$ob3 : Object
var $entry:="Hello world!"
OB SET($ob1;"valueType";"text")
- OB SET($ob1;"value";$entry) // if the user enters a new value, $entry will contain the edited value
+ OB SET($ob1;"value";$entry) // ユーザーが新しい値を入力した場合、編集された値は $entry に格納されます
OB SET($ob2;"valueType";"real")
OB SET($ob2;"value";2/3)
@@ -1100,7 +1100,7 @@ behavior 属性は、値の通常の表示とは異なる表示方法を提供
APPEND TO ARRAY($ChoiceList;100)
var $ob : Object
OB SET($ob;"valueType";"integer")
- OB SET($ob;"value";10) //10 as default value
+ OB SET($ob;"value";10) //10 をデフォルト値として使用
OB SET ARRAY($ob;"choiceList";$ChoiceList)
```
@@ -1142,7 +1142,7 @@ behavior 属性は、値の通常の表示とは異なる表示方法を提供
var $ob : Object
OB SET($ob;"valueType";"integer")
OB SET($ob;"saveAs";"reference")
- OB SET($ob;"value";2) //displays London by default
+ OB SET($ob;"value";2) //デフォルトで London を表示
OB SET($ob;"requiredListReference";<>List)
```
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md
index 6b5575d2aab544..07189a42b6d244 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/pictureButton_overview.md
@@ -54,7 +54,7 @@ title: ピクチャーボタン
- [ロールオーバー効果](properties_Animation.md#ロールオーバー効果)
- [マウス押下中は自動更新](properties_Animation.md#マウス押下中は自動更新)
- [無効時に最終フレームを使用](properties_Animation.md#無効時に最終フレームを使用)
-- [Switch every x seconds](./properties_Animation.md#switch-every-x-seconds)
+- [アニメーション間隔 (秒)](./properties_Animation.md#アニメーション間隔-秒)
> ピクチャーボタンに [関連付けた変数](properties_Object.md#変数あるいは式) は、ピクチャーのサムネールテーブルで現在表示されているピクチャーのインデックス番号を返します。 このテーブル内のピクチャー番号は 0 から始まります。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
index 140dd6f5bccbe0..21758c7656c9c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
@@ -182,12 +182,21 @@ End if
> `GOTO OBJECT` はサブフォームから実行されても、親フォーム内にて目的のオブジェクトを検索します。
-#### CALL SUBFORM CONTAINER コマンド
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
`CALL SUBFORM CONTAINER` コマンドを使用すると、サブフォームインスタンスからサブフォームコンテナーオブジェクトに [イベント](../Events/overview.md) を送信できます。 イベントはコンテナーオブジェクトメソッドで受信されます。 (クリックやドラッグ&ドロップなど) サブフォームにより検知されたすべてのイベントの発生元となりえます。
送信するイベントコードに制限はありません (たとえば 20000 や -100 など)。 既存のイベントに対応するコード (たとえば `On Validate` に対応する 3) を使用することも、カスタムコードを使用することもできます。 前者のケースでは、サブフォームコンテナーのプロパティリストでチェックを入れたイベントのみを使用できます。 後者の場合、使用するコードは既存のフォームイベントに対応してはいけません。 将来の 4Dバージョンで番号が衝突しないようにするために、負数の使用が推奨されます。
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
詳細は `CALL SUBFORM CONTAINER` コマンドの説明を参照してください。
#### EXECUTE METHOD IN SUBFORM コマンド
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md
index df938e63bb41f9..5a162fac438c38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Notes/updates.md
@@ -12,6 +12,7 @@ title: リリースノート
- [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) has been enhanced to provide greater precision in error detection (see [this blog post](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) for more information).
- [4D Write Pro standard actions](../WritePro/user-legacy/standard-actions.md) that apply [lists](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) now automatically adjust paragraph margins to keep markers positioned inside it.
- Built-in support of `order by` in query strings for AI vector searches using [`query()`](../API/DataClassClass.md#query-by-vector-similarity) functions and the [REST API](../REST/$orderby.md).
+- You can [customize the icons of your components](../Extensions/develop-components.md#custom-icon).
- 4D AIKit component: new [File API](../aikit/Classes/OpenAIFilesAPI.md) class to implement **file upload** features.
- [**Find in Design**](../Project/search-replace.md#search-in-components) and [**Replace in contents**](../Project/search-replace.md#replace-in-contents) features can now support editable components.
- [**修正リスト**](https://bugs.4d.fr/fixedbugslist?version=21_R2): 4D 21 R2 で修正されたバグのリストです ([日本語版はこちら](https://4d-jp.github.io/2023/178/release-note-version-20r2/))。
@@ -22,7 +23,7 @@ title: リリースノート
| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 |
| --------- | -------------------------------------- | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | 9b86817 | **21 R2** | QUIC に使用 |
+| BoringSSL | 9b86817 | **21** | QUIC に使用 |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 |
| ICU | 77.1 | **21** | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 |
@@ -32,10 +33,10 @@ title: リリースノート
| Libuv | 1.51.0 | **21** | QUIC に使用 |
| libZip | 1.11.4 | **21** | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.18.0 | **21 R2** | QUIC に使用 |
+| ngtcp2 | 1.18.0 | **21** | QUIC に使用 |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | [`WP Export document`](../WritePro/commands/wp-export-document.md) および [`WP Export variable`](../WritePro/commands/wp-export-variable.md) において使用されます |
-| SpreadJS | 17.1.0 | 20 R7 | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 |
+| SpreadJS | 18.2.0 | 21 R2 | See [this blog post](https://blog.4d.com/4d-view-pro-whats-new-in-4d-21-r2/) for an overview of the new features |
| webKit | WKWebView | 19 | |
| Xerces | 3.3.0 | **21** | XML コマンドにおいて使用されます |
| Zlib | 1.3.1 | **21** | |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md
index c61a659924f96b..c062b04b88d9d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/ORDA/privileges.md
@@ -245,7 +245,7 @@ In Qodly Studio for 4D, the login mode can be set using the [**Force login** opt
:::
-## Restriction Modes
+## 制限モード
The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/Project/compiler.md b/i18n/ja/docusaurus-plugin-content-docs/current/Project/compiler.md
index 4dc3ce5774dd74..1821c8d41a62d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/Project/compiler.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/Project/compiler.md
@@ -41,9 +41,9 @@ title: コンパイル
## コンパイル済み実行
-プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
+プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
-モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
+モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
インタープリターモードでプロジェクトを編集したら、それをコンパイルコードに反映させるには再コンパイルしなければなりません。
@@ -67,7 +67,7 @@ title: コンパイル
### コンパイルコードを削除
-**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 **コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
+**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
### 警告を表示/隠す
@@ -83,7 +83,7 @@ title: コンパイル
## コンパイラー設定
-ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。
+ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。

@@ -136,7 +136,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
変換されたプロジェクトでは、[直接型指定を有効化](#直接型指定の有効化) し、それに準拠した宣言コードを書くことが推奨されます:
- [`var` キーワードを使って](../Concepts/variables.md#変数の宣言) すべての変数を明示的に宣言する。
-- declare explicitely all parameters in function prototypes (i.e. using the `Function` or `Class constructor` keywords) or with `#DECLARE` keywords in methods (see [Declaring parameters](../Concepts/parameters.md#declaring-parameters).
+- 関数のプロトタイプで `Function` や `Class constructor` キーワードを使って、またはメソッド内で `#DECLARE` キーワードを使って、すべてのパラメーターを明示的に宣言する ([パラメーターの宣言](../Concepts/parameters.md#パラメーターの宣言)を参照)。
#### 直接型指定の有効化
@@ -146,21 +146,21 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
:::
-直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
+直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
-柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
+柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
## 警告
警告は、コンパイラーがシンタックスチェックをおこなう際に生成するとメッセージです。 これらのメッセージの目的は、実行時エラーを引き起こす可能性のあるステートメントに注意を向けることです。 警告によりコンパイルが中断されることはありません。
-状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
+状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
### 警告タブ

-このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
+このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
リストを絞り込むには、**コードとラベルを検索** テキストボックスを使用して、警告ラベルやコードを検索します。
@@ -221,7 +221,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### Symbolファイル
-コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています: このドキュメントはいくつかの部分に分かれています:
+コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています:
#### プロセスおよびインタープロセス変数のリスト
@@ -268,7 +268,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### エラーファイル
-コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
+コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
[コンパイラーウインドウ](#コンパイラーウインドウ) からエラーに直接アクセスすることができますが、マシンからマシンへ送信できるエラーファイルがあると便利な場合があります。 エラーファイルは、その内容を自動的に解析しやすいように XMLフォーマットで生成されます。 これを利用して、エラー表示用に独自のインターフェースを作成することもできます。
@@ -288,7 +288,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
- **特定の行に関連するエラー**: これらのエラーは、コンテキスト (エラーが見つかった行) 内に説明とともに表示されます。 コンパイラーは、データ型やシンタックスに関する矛盾を含む式で見つけると、このタイプのエラーをレポートします。 コンパイラーウィンドウでは、検出された各エラーをダブルクリックすると、該当するメソッドが直接 4Dのコードエディターで開かれ、エラーを含む行が反転表示されます。
-- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです: コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
+- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
- プロセス変数のデータ型が決定できなかった。
- 異なる 2つのオブジェクトが同じ名称である。
@@ -302,7 +302,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
コード内で間違いがないと思われる箇所に対して範囲チェックを適用したくないときもあります。 具体的には、かなりの回数繰り返されるループに関し、旧式のマシン上でコンパイル済みデータベースを実行すると、範囲チェックにより処理速度が著しく低下するおそれがあります。 関連するコードに誤りがなく、システムエラーを引き起こさないことが確実であれば、範囲チェックをローカル上で無効にすることができます。
-これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
+これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
```4d
// %R- 範囲チェックを無効化
@@ -346,11 +346,11 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
- **macOS マシン**: Apple Silicon用コンパイラーは Apple のマシン上でのみ実行可能です。
- **4D プロジェクトアーキテクチャー**: Apple Silicon用コンパイラーは [プロジェクトアーキテクチャー](architecture.md) を使った 4D開発でのみ利用できます。
-- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
+- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
- Xcode や Developer Tools をマシン上でインストールされた状態で **すでに持っている場合**、それらのバージョンが 4D の要件と合っていることを確認します。
- マシンにインストールされた状態でこれらのツールを **持っていない場合**、Apple Developer の Webサイトからいずれかをダウンロードする必要があります。
-> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
+> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
いずれにせよ、要件が満たされていない場合には、4D の Apple Silicon用コンパイラーが警告を発します。
@@ -358,5 +358,5 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
Apple Silicon用コンパイラーはインクリメンタルコンパイラーです:
-- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。 これには時間がかかる可能性がありますが、 一度きりです。
+- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。
- 以降のコンパイルにおいては、**新規または編集されたメソッド** のみが処理され、コンパイル時間を大幅に短縮します。
\ No newline at end of file
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/REST/authUsers.md b/i18n/ja/docusaurus-plugin-content-docs/current/REST/authUsers.md
index 5036a5b85ab9a1..6934ec98d20660 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/REST/authUsers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/REST/authUsers.md
@@ -29,7 +29,7 @@ When [scalable sessions are enabled](WebServer/sessions.md#enabling-web-sessions
2. 事前に用意した [`authentify()` 関数](#function-authentify) を呼び出し、ユーザーの資格情報をチェックして、適切な権限で[`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) を呼び出します。 `authentify()` は公開された [データストアクラス関数](../ORDA/ordaClasses.md#datastore-クラス) でなければなりません。
-3. `/rest/$catalog/authentify` リクエストは、ユーザーの資格情報と共にサーバーに送信されます。 このステップでは、データにアクセスしない基本的なログインフォームのみが必要です。`/rest/$getWebForm`リクエストを介して呼び出される [Qodlyページ](../WebServer/qodly-studio.md) を利用できます。
+3. `/rest/$catalog/authentify` リクエストは、ユーザーの資格情報と共にサーバーに送信されます。 このステップでは、データにアクセスしない基本的なログインフォームのみが必要です。`/rest/$getWebForm`リクエストを介して呼び出される [Qodlyページ](https://developer.4d.com/qodly/) を利用できます。
4. ユーザーが正常に認証された場合、4Dライセンスがサーバー上で消費され、すべての RESTリクエストが受け入れられます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md b/i18n/ja/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
index 484c64db7f8b34..d3f0dd87ba810e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ title: モニターページ

-こういった場合には通常、[**ライセンスマネージャー**](Admin/licenses.md) をチェックする必要があります。
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## 詳細エリア
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WebServer/sessions.md b/i18n/ja/docusaurus-plugin-content-docs/current/WebServer/sessions.md
index 8c11c9b7e09f45..9df2a071bbae51 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WebServer/sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WebServer/sessions.md
@@ -10,7 +10,7 @@ Webセッションでは、以下のことが可能です:
- 同一のWebクライアントからの複数のリクエストを、無制限のプリエンプティブプロセスで同時に処理 (Webセッションは **スケーラブル**です)。
- `Session` オブジェクトと [Session API](API/SessionClass.md) を介したセッションの管理。
- セッションの [.storage](../API/SessionClass.md#storage) を使用して、Webクライアントのプロセス間でデータを保存および共有。
-- セッションを実行しているユーザーに権限を関連付ける。
+- associate [privileges](../ORDA/privileges.md) to the user running the session.
:::tip 関連したblog 記事
@@ -18,12 +18,18 @@ Webセッションでは、以下のことが可能です:
:::
+:::note
+
+Destkop applications (client/server and single-user) also provide 4D developers with [specific sessions](../Desktop/sessions.md).
+
+:::
+
## 用途
Webセッションは次のものに使用されます:
- [Web applications](gettingStarted.md) sending http requests (including [SOAP Web services](../commands/theme/Web_Services_Server.md) and [/4DACTION](../WebServer/httpRequests.md#4daction) requests),
-- [リモートデータストア](../ORDA/remoteDatastores.md) や [Qodlyフォーム](qodly-studio.md) が使用する [REST API](../REST/authUsers.md) への呼び出し
+- [リモートデータストア](../ORDA/remoteDatastores.md) や [Qodlyフォーム](https://developer.4d.com/qodly/) が使用する [REST API](../REST/authUsers.md) への呼び出し
## Enabling web sessions {#enabling-web-sessions}
@@ -62,7 +68,7 @@ Webセッションは次のものに使用されます:
:::note
-RESTリクエストのための Webセッションを作成するには、利用可能なライセンスが必要な場合があります。詳細は [こちらのページ](../REST/authUsers.md) を参照ください。
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -70,12 +76,6 @@ RESTリクエストのための Webセッションを作成するには、利用

-:::info
-
-Webプロセスは通常終了せず、効率化のためにプールされリサイクルされます。 プロセスがリクエストの実行を終えると、プールに戻され、次のリクエストに対応できるようになります。 Since a web process can be reused by any session, [process variables](Concepts/variables.md#process-variables) must be cleared by your code at the end of its execution (using [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) for example). このクリア処理は、開かれたファイルへの参照など、プロセスに関連するすべての情報に対して必要です。 これが、セッション関連の情報を保持したい場合には、[Session](API/SessionClass.md) オブジェクトを使用することが **推奨** される理由です。
-
-:::
-
## セッション情報の保存と共有
各 `Session` オブジェクトには、共有オブジェクトである [`.storage`](API/SessionClass.md#storage) プロパティが用意されています。 このプロパティにより、セッションで処理されるすべてのプロセス間で情報を共有することができます。
@@ -99,7 +99,7 @@ Webセッションが閉じられた後に [`Session`](commands/session.md) コ
:::info
-[**ログアウト**](qodly-studio.md#ログアウト) 機能を使用して、Qodly フォームからのセッションを閉じることができます。
+You can close a session from a Qodly form using the [**logout**](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) feature.
:::
@@ -219,6 +219,12 @@ End if
:::
+:::note
+
+Session tokens can be shared with [desktop sessions](../Desktop/sessions.md) to implement applications using hybrid sessions.
+
+:::
+
### 概要
4D Web アプリケーションにおけるOTP セッショントークンの利用の基本的なシーケンスは、以下の通りです:
@@ -475,7 +481,7 @@ Function validateEmail() : 4D.OutgoingMessage
- HTTP とHTTPS スキーマの両方がサポートされます。
- トークンで再使用ができるのは[スケーラブルセッション](#Webセッションの有効化) のみです。
- 再使用ができるのはホストデータベースのセッションのみです(コンポーネントのWeb サーバーで作成されたセッションは復元することができません)。
-- トークンはクライアント/サーバーセッション、あるいはシングルユーザーセッションにおいてはサポートされていません。
+- Tokens can be **shared** with [desktop sessions](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses) for hybrid accesses (desktop and web).
### ライフスパン
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
index bfcbb9b27bd921..1227ad58ef8bb1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-bookmark-range
displayed_sidebar: docs
---
-**WP Bookmark range** ( *wpDoc* ; *bkName* ) -> 戻り値
+**WP Bookmark range** ( *wpDoc* : Object ; *bkName* : Text ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
index 23db1d3435b1fc..43215f2d8c9ec2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-compute-formulas
displayed_sidebar: docs
---
-**WP COMPUTE FORMULAS** ( *targetObj* )
+**WP COMPUTE FORMULAS** ( *targetObj* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
index 466c108115d349..3e489c8a2c89e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-bookmark
displayed_sidebar: docs
---
-**WP DELETE BOOKMARK** ( *wpDoc* ; *bkName* )
+**WP DELETE BOOKMARK** ( *wpDoc* : Object ; *bkName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
index b802af89e84edc..8dadd86ec34c04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-footer
displayed_sidebar: docs
---
-**WP DELETE FOOTER** ( *wpSection* )
+**WP DELETE FOOTER** ( *wpSection* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
index c59b6d90ce63eb..1f83db351c062c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-header
displayed_sidebar: docs
---
-**WP DELETE HEADER** ( *wpSection* )
+**WP DELETE HEADER** ( *wpSection* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
index 4c50d70fcf255e..455a46054d9698 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-picture
displayed_sidebar: docs
---
-**WP DELETE PICTURE** ( *imgObj* )
+**WP DELETE PICTURE** ( *imgObj* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
index 9276c266121e3f..aea250343dfd9f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-style-sheet
displayed_sidebar: docs
---
-**WP DELETE STYLE SHEET** ( *styleSheetObj* ) | (*wpDoc* ; *styleSheetName* )
+**WP DELETE STYLE SHEET** ( *styleSheetObj* : Object ) | (*wpDoc* : Object ; *styleSheetName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
index ef5d7226f45983..029a55c04681e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-text-box
displayed_sidebar: docs
---
-**WP DELETE TEXT BOX** ( *textBox* )
+**WP DELETE TEXT BOX** ( *textBox* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
index 283a0e4b90e747..e23475e86b0bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-all
displayed_sidebar: docs
---
-**WP Find all** ( *targetObj* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) -> 戻り値
+**WP Find all** ( *targetObj* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
index 12f79383a70649..9af43a583a94f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-next
displayed_sidebar: docs
---
-**WP Find next** ( *targetObj* ; *searchAfter* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) -> 戻り値
+**WP Find next** ( *targetObj* : Object ; *searchAfter* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
index c64c5d47dab5c1..3cc80533fa3049 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-previous
displayed_sidebar: docs
---
-**WP Find previous** ( *targetObj* ; *searchBefore* ; *searchValue* ; *searchCondition* {; *replaceValue*} ) -> 戻り値
+**WP Find previous** ( *targetObj* : Object ; *searchBefore* : Object ; *searchValue* : Text ; *searchCondition* : Integer {; *replaceValue* : Text} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
index 161ae1b1ba1cd5..7e0d300e799388 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-freeze-formulas
displayed_sidebar: docs
---
-**WP FREEZE FORMULAS** ( *targetObj* {; *recompute*} )
+**WP FREEZE FORMULAS** ( *targetObj* : Object {; *recompute* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
index 0bbd78530ef947..a5b8a25c7da49f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-body
displayed_sidebar: docs
---
-**WP Get body** ( *wpDoc* ) -> 戻り値
+**WP Get body** ( *wpDoc* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
index 9a27f143553aaa..31cab35839a666 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-bookmarks
displayed_sidebar: docs
---
-**WP GET BOOKMARKS** ( *wpDoc* ; *arrBKNames* )
+**WP GET BOOKMARKS** ( *wpDoc* : Object ; *arrBKNames* : テキスト配列 )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
index 62ac356dab2b5b..e391e6e3c125b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-breaks
displayed_sidebar: docs
---
-**WP Get breaks** ( *targetObj* {; *breakType*} ) -> 戻り値
+**WP Get breaks** ( *targetObj* : Object {; *breakType* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
index 22b8fd4b3bb9b6..3694bbc5362b03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-data-context
displayed_sidebar: docs
---
-**WP Get data context** ( *wpDoc* ) -> 戻り値
+**WP Get data context** ( *wpDoc* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
index f5817f6aa7df80..58c8aa970393b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-element-by-id
displayed_sidebar: docs
---
-**WP Get element by ID** ( *wpDoc* ; *ID* ) -> 戻り値
+**WP Get element by ID** ( *wpDoc* : Object ; *ID* : Text ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
index 060d48e3d6d989..8cf304c8e2c9f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-elements
displayed_sidebar: docs
---
-**WP Get elements** ( *targetObj* {; *elementType*} ) -> 戻り値
+**WP Get elements** ( *targetObj* : Object {; *elementType* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
index 3326095b9eaf80..8804af193dba01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-footer
displayed_sidebar: docs
---
-**WP Get footer** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* {; *sectionSubType*} ) -> 戻り値
+**WP Get footer** ( *targetObj* : Object ) | (*wpDoc* : Object ; *sectionIndex* : Integer {; *sectionSubType* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
index e9cc1abf0389b7..26a76dec35b015 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-formulas
displayed_sidebar: docs
---
-**WP Get formulas** ( *targetObj* ) -> 戻り値
+**WP Get formulas** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
index 3935cb4c9d5477..ac104dbb75cd84 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-frame
displayed_sidebar: docs
---
-**WP Get frame** ( {* ;} *wpArea* {; *textBoxID*} ) -> 戻り値
+**WP Get frame** ( {* ;} *wpArea* : Text {; *textBoxID* : 文字} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
index f4f7ad4290a1f6..46305ead2a6846 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-header
displayed_sidebar: docs
---
-**WP Get header** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* {; *subSectionType*} ) -> 戻り値
+**WP Get header** ( *targetObj* : Object ) | (*wpDoc* : Object ; *sectionIndex* : Integer {; *subSectionType* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
index 7f877701f66dfd..f97d958155b77f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-links
displayed_sidebar: docs
---
-**WP Get links** ( *targetObj* ) -> 戻り値
+**WP Get links** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
index 7b4d300a20f6ab..0ad4518e05e87a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-page-count
displayed_sidebar: docs
---
-**WP Get page count** ( *wpDoc* ) -> 戻り値
+**WP Get page count** ( *wpDoc* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
index 7630619441d1b4..493263ec545d38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-position
displayed_sidebar: docs
---
-**WP Get position** ( *targetObj* {; *layout*} ) -> 戻り値
+**WP Get position** ( *targetObj* : Object {; *layout* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
index 23889ec4970d32..abf23043b71ab1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-section
displayed_sidebar: docs
---
-**WP Get section** ( *targetObj* ) | (*wpDoc* ; *sectionIndex* ) -> 戻り値
+**WP Get section** ( *targetObj* : Object ) | (*wpDoc* : Object ; *sectionIndex* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
index 00f8ff51c37876..1b5031c7f6fe8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-sections
displayed_sidebar: docs
---
-**WP Get sections** ( *targetObj* ) -> 戻り値
+**WP Get sections** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
index 427590824029c4..c21275f2090c96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheet
displayed_sidebar: docs
---
-**WP Get style sheet** ( *wpDoc* ; *styleSheetName* ) -> 戻り値
+**WP Get style sheet** ( *wpDoc* : Object ; *styleSheetName* : Text ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
index 23e25c4287e70c..864db814625264 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheets
displayed_sidebar: docs
---
-**WP Get style sheets** ( *wpDoc* ; *type* ) -> 戻り値
+**WP Get style sheets** ( *wpDoc* : Object ; *type* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
index 51685dfc989454..4a33885fedb7ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-subsection
displayed_sidebar: docs
---
-**WP Get subsection** ( *targetObj* ) | (*wpSection* ; *subSectionType* ) -> 戻り値
+**WP Get subsection** ( *targetObj* : Object ) | (*wpSection* : Object ; *subSectionType* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
index 768cea6ecb0d9a..8d8d13909ae08e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-text
displayed_sidebar: docs
---
-**WP Get text** ( *targetObj* {; *expressions*} ) -> 戻り値
+**WP Get text** ( *targetObj* : Object {; *expressions* : Number} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
index 3a0c919400a344..e5cf10eb0f7126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-view-properties
displayed_sidebar: docs
---
-**WP Get view properties** ( * ; *wpArea* ) -> 戻り値
+**WP Get view properties** ( * ; *wpArea* : Text, Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
index 453a1fdde30dc3..cc72dd1e01c9d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-import-style-sheets
displayed_sidebar: docs
---
-**WP IMPORT STYLE SHEETS** ( *targetDoc* ; *sourceDoc* )
+**WP IMPORT STYLE SHEETS** ( *targetDoc* : Object ; *sourceDoc* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
index 5851907d942a0d..255ef1e92f6789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-insert-table
displayed_sidebar: docs
---
-**WP Insert table** ( *targetObj* ; *mode* {; *rangeUpdate* {; *nbCols* {; *nbRows*}}} ) -> 戻り値
+**WP Insert table** ( *targetObj* : Object ; *mode* : Integer {; *rangeUpdate* : Integer {; *nbCols* : Integer {; *nbRows* : Integer}}} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
index a87b0162567cb3..b88f866c915af7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-is-font-style-supported
displayed_sidebar: docs
---
-**WP Is font style supported** ( *targetObj* ; *wpFontStyle* ) -> 戻り値
+**WP Is font style supported** ( *targetObj* : Object ; *wpFontStyle* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
index 54d3280122076c..104ecaddb7a6ed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-bookmark
displayed_sidebar: docs
---
-**WP NEW BOOKMARK** ( *targetObj* ; *bkName* )
+**WP NEW BOOKMARK** ( *targetObj* : Object ; *bkName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
index f80f3e40f544cd..04429073792fa3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-footer
displayed_sidebar: docs
---
-**WP New footer** ( *wpSection* ) -> 戻り値
+**WP New footer** ( *wpSection* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
index 0b3b8389458ee5..904311076b5b76 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-header
displayed_sidebar: docs
---
-**WP New header** ( *wpSection* ) -> 戻り値
+**WP New header** ( *wpSection* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
index c495686ec3ff61..fb8c0bb2a4dca0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-style-sheet
displayed_sidebar: docs
---
-**WP New style sheet** ( *wpDoc* ; *styleSheetType* ; *styleSheetName* ) -> 戻り値
+**WP New style sheet** ( *wpDoc* : Object ; *styleSheetType* : Integer ; *styleSheetName* : Text ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
index 2f0eee6d1851b3..9ea9a5028614ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-subsection
displayed_sidebar: docs
---
-**WP New subsection** ( *wpSection* ; *subSectionType* ) -> 戻り値
+**WP New subsection** ( *wpSection* : Object ; *subSectionType* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
index bb42b5848cf2a5..d8cabd2465b82b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-text-box
displayed_sidebar: docs
---
-**WP New text box** ( *wpDoc* ; *pageNum* ) -> 戻り値
+**WP New text box** ( *wpDoc* : Object ; *pageNum* : Number ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
index 2f1eba7a229715..ceae002d20760c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new
displayed_sidebar: docs
---
-**WP New** {( *source* {; *option*} )} -> 戻り値
+**WP New** ( *source* : Text, Blob, Object {; *option* : Integer} )} -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
index d7125105419f8e..faf30445855752 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-paragraph-range
displayed_sidebar: docs
---
-**WP Paragraph range** ( *targetObj* ) -> 戻り値
+**WP Paragraph range** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
index 05867f67041f1f..32ffb0839abb52 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-picture-range
displayed_sidebar: docs
---
-**WP Picture range** ( *targetObj* ) -> 戻り値
+**WP Picture range** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
index 9cd1c32f918cec..2a1e5eb5926705 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-print
displayed_sidebar: docs
---
-**WP PRINT** ( *wpDoc* {; *printOptions*} )
+**WP PRINT** ( *wpDoc* : Object {; *printOptions* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
index bfedcc83666b18..5d23eac8dd98a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-select
displayed_sidebar: docs
---
-**WP SELECT** ( {{* ;} *wpArea*;} {*targetObj*} {; *startRange* ; *endRange*} )
+**WP SELECT** ( {{* ;} *wpArea* : Text, Object;} {*targetObj* : Object} {; *startRange* : Integer ; *endRange* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
index b75b27680bc342..ccdc49c5b67db5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-selection-range
displayed_sidebar: docs
---
-**WP Selection range** ( {* ;} *wpArea* ) -> 戻り値
+**WP Selection range** ( {* ;} *wpArea* : Text ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
index 47caf59b3e2ff5..a302ecfcb54225 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-data-context
displayed_sidebar: docs
---
-**WP SET DATA CONTEXT** ( *wpDoc* ; *contextData* )
+**WP SET DATA CONTEXT** ( *wpDoc* : Object ; *contextData* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
index 7a2afa96ed1a7f..07a6b4ae4eed8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-frame
displayed_sidebar: docs
---
-**WP SET FRAME** ( {* ;} *wpArea* ; *frameSelector* {; *textBoxID*} )
+**WP SET FRAME** ( {* ;} *wpArea* : Text ; *frameSelector* : Integer {; *textBoxID* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
index c49d557f4b2328..6e8cbc089bad79 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-link
displayed_sidebar: docs
---
-**WP SET LINK** ( *targetObj* ; *linkObj* )
+**WP SET LINK** ( *targetObj* : Object ; *linkObj* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
index d517dd88120b3f..e3f4b403134b60 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-text
displayed_sidebar: docs
---
-**WP SET TEXT** ( *targetObj* ; *newText* ; *textPosition* {; *rangeUpdate*} )
+**WP SET TEXT** ( *targetObj* : Object ; *newText* : Text ; *textPosition* : Number {; *rangeUpdate* : Number} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
index 34f8d78f48d879..e924cb7152425d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-view-properties
displayed_sidebar: docs
---
-**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* ; *wpViewProps* )
+**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* : Text, Object ; *wpViewProps* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
index 15be85ab68f5c7..f178459e0c3c62 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-columns
displayed_sidebar: docs
---
-**WP TABLE DELETE COLUMNS** ( *targetObj* ) | ( *tableRef* ; *colNumber* {; *numColumns*} )
+**WP TABLE DELETE COLUMNS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *colNumber* : Integer {; *numColumns* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
index 07830e0f468a0a..a7d1e49470be17 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-rows
displayed_sidebar: docs
---
-**WP TABLE DELETE ROWS** ( *targetObj* ) | ( *tableRef* ; *rowNumber* {; *numRows*} )
+**WP TABLE DELETE ROWS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *rowNumber* : Integer {; *numRows* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
index 2d7068923ee3cf..431df9c3f9c238 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-cells
displayed_sidebar: docs
---
-**WP Table get cells** ( *targetObj* ) | ( *tableRef* ; *startCol* ; *startRow* {; *numCols*{; *numRows*}} ) -> 戻り値
+**WP Table get cells** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startCol* : Integer ; *startRow* : Integer {; *numCols* : Integer{; *numRows* : Integer}} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
index 7be79e26a89a14..b0352a6fd81dd1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-columns
displayed_sidebar: docs
---
-**WP Table get columns** ( *targetObj* ) | ( *tableRef* ; *startCol* {; *numCols*} ) -> 戻り値
+**WP Table get columns** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startCol* : Integer {; *numCols* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
index 0de89f2d7ce208..b6df543238b33a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-rows
displayed_sidebar: docs
---
-**WP Table get rows** ( *targetObj* ) | ( *tableRef* ; startRow | wk header rows {; *numRows*} ) -> 戻り値
+**WP Table get rows** ( *targetObj* : Object ) | ( *tableRef* : Object ; startRow | wk header rows {; *numRows* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
index 2161a2b0ad930f..d9fd5ca46c6d8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-columns
displayed_sidebar: docs
---
-**WP Table insert columns** ( targetObj | {*tableRef* ; *colNumber*} {; *numColumns*} ) -> 戻り値
+**WP Table insert columns** ( targetObj | {*tableRef* : Object ; *colNumber* : Integer} {; *numColumns* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
index 77ae2af58adfbd..1a158908664fd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-rows
displayed_sidebar: docs
---
-**WP Table insert rows** ( targetObj | {*tableRef* ; *rowNumber*} {; *numRows*} ) -> 戻り値
+**WP Table insert rows** ( targetObj | {*tableRef* : Object ; *rowNumber* : Integer} {; *numRows* : Integer} ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
index b27111e8c89621..2ff087a876037c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-merge-cells
displayed_sidebar: docs
---
-**WP TABLE MERGE CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE MERGE CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
index 07f74087402058..0fcba3db523655 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-range
displayed_sidebar: docs
---
-**WP Table range** ( *targetObj* ) -> 戻り値
+**WP Table range** ( *targetObj* : Object ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
index 00af38b4e5baea..492034ee898de9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-split-cells
displayed_sidebar: docs
---
-**WP TABLE SPLIT CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE SPLIT CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
index c62f2213c77507..0695f427816937 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-text-range
displayed_sidebar: docs
---
-**WP Text range** ( *targetObj* ; *startRange* ; *endRange* ) -> 戻り値
+**WP Text range** ( *targetObj* : Object ; *startRange* : Integer ; *endRange* : Integer ) -> 戻り値
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
index 837ab29f389ffa..13e47ccd8394e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-use-page-setup
displayed_sidebar: docs
---
-**WP USE PAGE SETUP** ( *wpDoc* )
+**WP USE PAGE SETUP** ( *wpDoc* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
index e25a76d713e869..ac0637e4947397 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
@@ -4,7 +4,7 @@ title: WP Add picture
displayed_sidebar: docs
---
-**WP Add picture** ( *wpDoc* {; *picture*} ) : Object
**WP Add picture** ( *wpDoc* {; *picturePath*} ) : Object
**WP Add picture** ( *wpDoc* {; *pictureFileObj*} ) : Object
+**WP Add picture** ( *wpDoc* : Object {; *picture* : Picture} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *picturePath* : Text} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *pictureFileObj* : 4D.File} ) : Object
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
index 8666dee046a8dd..d821ba947c0c80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-section
displayed_sidebar: docs
---
-**WP DELETE SECTION** ( *section* )
**WP DELETE SECTION** ( *wpDoc* ; *indexNumber* {; *count*} )
+**WP DELETE SECTION** ( *section* : Object )
**WP DELETE SECTION** ( *wpDoc* : Object ; *indexNumber* : Integer {; *count* : Integer} )
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
index 0554d136ec3e95..67190807e16dd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-subsection
displayed_sidebar: docs
---
-**WP DELETE SUBSECTION** ( *wpSection* ; *subSectionType* )
**WP DELETE SUBSECTION** ( *subSection* )
+**WP DELETE SUBSECTION** ( *wpSection* : Object ; *subSectionType* : Integer )
**WP DELETE SUBSECTION** ( *subSection* : Object )
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
index fd9e6d6d78da8e..df134c70a19425 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
@@ -4,7 +4,7 @@ title: WP EXPORT DOCUMENT
displayed_sidebar: docs
---
-**WP EXPORT DOCUMENT** ( *wpDoc* ; *filePath* {; *format* {; *option*}} )
**WP EXPORT DOCUMENT** ( *wpDoc* ; *fileObj* {; *format* {; *option*}} )
+**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *filePath* : Text {; *format* : Integer {; *option* : Object, Integer}} )
**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *fileObj* : 4D.File {; *format* : Integer {; *option* : Object, Integer}} )
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
index 4817ba6934cdb2..76c87f3062ade2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-export-variable
displayed_sidebar: docs
---
-**WP EXPORT VARIABLE** ( *wpDoc* ; *destination* ; *format* {; *option*} )
+**WP EXPORT VARIABLE** ( *wpDoc* : Object ; *destination* : Text, Blob ; *format* : Integer {; *option* : Object, Integer} )
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
index 00127fc47458f2..96628e8d6edb04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
@@ -4,17 +4,17 @@ title: WP Get attributes
displayed_sidebar: docs
---
-**WP Get attributes** ( *targetObj* ; *...attribName* ; *...attribValue* ) : Object
**WP Get attributes** ( *targetObj* ; *attribColl* ) : Object
+**WP Get attributes** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any ) : Object
**WP Get attributes** ( *targetObj* : Object ; *attribColl* : Collection ) : Object
-| 引数 | 型 | | 説明 |
-| ----------- | ---------------------------------------------- | --------------------------- | ------------------------------ |
-| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント |
-| attribName | Text | → | 取得する属性の名前 |
-| attribValue | Text, Number, Array, Collection, Picture, Date | ← | ターゲットの属性のカレントの値 |
-| attribColl | Collection | → | 取得する属性名のコレクション |
-| 戻り値 | Object | ← | 属性名と値 |
+| 引数 | 型 | | 説明 |
+| ----------- | ---------- | --------------------------- | ------------------------------ |
+| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント |
+| attribName | Text | → | 取得する属性の名前 |
+| attribValue | any | ← | ターゲットの属性のカレントの値 |
+| attribColl | Collection | → | 取得する属性名のコレクション |
+| 戻り値 | Object | ← | 属性名と値 |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
index 03a3d1a0e4e8c8..a189bced81d8d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
@@ -4,7 +4,7 @@ title: WP Import document
displayed_sidebar: docs
---
-**WP Import document** ( *filePath* {; *option*} ) : Object
**WP Import document** ( *fileObj* {; *option*} ) : Object
+**WP Import document** ( *filePath* : Text {; *option* : Integer, Object} ) : Object
**WP Import document** ( *fileObj* : 4D.File {; *option* : Integer, Object} ) : Object
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
index 9de16429321acb..5eb040f12d6d3f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
@@ -4,7 +4,7 @@ title: WP Insert break
displayed_sidebar: docs
---
-**WP Insert break** ( *targetObj* ; *breakType* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert break** ( *targetObj* : Object ; *breakType* : Integer ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
index f0e5c9d984ab9e..dff7e2df31fec9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
@@ -4,7 +4,7 @@ title: WP Insert document body
displayed_sidebar: docs
---
-**WP Insert document body** ( *targetObj* ; *wpDoc* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert document body** ( *targetObj* : Object ; *wpDoc* : Object ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
index d088dc7068ba38..3a7295e1d16eda 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
@@ -4,7 +4,7 @@ title: WP Insert formula
displayed_sidebar: docs
---
-**WP Insert formula** ( *targetObj* ; *formula* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert formula** ( *targetObj* : Object ; *formula* : Object ; *mode* : Real {; *rangeUpdate* : Real} ) : Object
@@ -12,8 +12,8 @@ displayed_sidebar: docs
| ----------- | ------ | --------------------------- | -------------------------------------------- |
| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント |
| formula | Object | → | フォーミュラオブジェクト、またはformula とname プロパティを持つオブジェクト |
-| mode | Number | → | 挿入モード |
-| rangeUpdate | Number | → | 挿入されたコンテンツをレンジ内に含めるか含めないかを指定 |
+| mode | Real | → | 挿入モード |
+| rangeUpdate | Real | → | 挿入されたコンテンツをレンジ内に含めるか含めないかを指定 |
| 戻り値 | Object | ← | フォーミュラの結果を表すテキストレンジオブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
index 87612c74082c6b..428d6813865eb9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
@@ -4,7 +4,7 @@ title: WP Insert picture
displayed_sidebar: docs
---
-**WP Insert picture** ( *targetObj* ; *picture* ; *mode* {; *rangeUpdate*} ): Object
**WP Insert picture** ( *targetObj* ; *pictureFileObj*; *mode* {; *rangeUpdate*}): Object
+**WP Insert picture** ( *targetObj* : Object ; *picture* : Picture ; *mode* : Integer {; *rangeUpdate* : Integer} ): Object
**WP Insert picture** ( *targetObj* : Object ; *pictureFileObj* : 4D.File; *mode* : Integer {; *rangeUpdate* : Integer}): Object
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
index 368b1df0e0f68d..2d6e00742b5cb0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
@@ -4,7 +4,7 @@ title: WP RESET ATTRIBUTES
displayed_sidebar: docs
---
-**WP RESET ATTRIBUTES** ( *targetObj* ; *...attribName* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *...attribName* })
**WP RESET ATTRIBUTES** ( *targetObj* ; *attribColl* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *attribColl*})
+**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *...attribName* : Text })
**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *attribColl* : Collection )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *attribColl* : Collection})
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
index 70c4e79cbb1085..74e6e11c2a9b1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
@@ -4,16 +4,16 @@ title: WP SET ATTRIBUTES
displayed_sidebar: docs
---
-**WP SET ATTRIBUTES** ( *targetObj* ; *...attribName* ; *...attribValue* )
**WP SET ATTRIBUTES** ( *targetObj* ; *attribObj* )
+**WP SET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any )
**WP SET ATTRIBUTES** ( *targetObj* : Object ; *attribObj* : Object )
-| 引数 | 型 | | 説明 |
-| ----------- | ----------------------------------------------- | --------------------------- | ----------------------------------- |
-| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント |
-| attribName | Text | → | 設定する属性名 |
-| attribValue | Text, Number, Object, Collection, Picture, Date | → | 新しい属性の値 |
-| attribObj | Object | → | 設定したい属性の名前とそれに対応する設定したい値を格納したオブジェクト |
+| 引数 | 型 | | 説明 |
+| ----------- | ------ | --------------------------- | ----------------------------------- |
+| targetObj | Object | → | レンジまたは要素または4D Write Pro ドキュメント |
+| attribName | Text | → | 設定する属性名 |
+| attribValue | any | → | 新しい属性の値 |
+| attribObj | Object | → | 設定したい属性の名前とそれに対応する設定したい値を格納したオブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
index d632e00e042b7a..b0880803cf9ed8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
@@ -4,16 +4,16 @@ title: WP Table append row
displayed_sidebar: docs
---
-**WP Table append row** ( *tableRef* ; *...value* ) : Object
**WP Table append row** ( *tableRef* ; *valueColl* ) : Object
+**WP Table append row** ( *tableRef* : Object ; *...value* : any ) : Object
**WP Table append row** ( *tableRef* : Object ; *valueColl* : Collection ) : Object
-| 引数 | 型 | | 説明 |
-| --------- | ----------------------------------------- | --------------------------- | --------------- |
-| tableRef | Object | → | 表組の参照 |
-| value | Text, Number, Time, Date, Picture, Object | → | 行内に設定する値 |
-| valueColl | Collection | → | 行内に設定する値のコレクション |
-| 戻り値 | Object | ← | 行レンジオブジェクト |
+| 引数 | 型 | | 説明 |
+| --------- | ---------- | --------------------------- | --------------- |
+| tableRef | Object | → | 表組の参照 |
+| value | any | → | 行内に設定する値 |
+| valueColl | Collection | → | 行内に設定する値のコレクション |
+| 戻り値 | Object | ← | 行レンジオブジェクト |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md
index b273ac1f017f53..c9c586bb598bea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/WritePro/writeprointerface.md
@@ -317,7 +317,7 @@ AI 機能を有効化すると、4D Write Pro ドキュメント上にチャッ
:::
-### Limitations
+### 制約
現在の実装では、この機能では以下のような制約があります:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeleted.md b/i18n/ja/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeleted.md
index 3c24405e9ece42..05aa846bbddccc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeleted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/aikit/Classes/OpenAIFileDeleted.md
@@ -5,17 +5,17 @@ title: OpenAIFileDeleted
# OpenAIFileDeleted
-The `OpenAIFileDeleted` class represents the deletion status of a file in the OpenAI API.
+`OpenAIFileDeleted` クラスは、OpenAI API 内のファイルの削除ステータスを表します。
## プロパティ
-| プロパティ名 | 型 | 説明 |
-| --------- | ------- | -------------------------------------------------------------------------------------------------------------------- |
-| `id` | Text | The ID of the deleted file (e.g., "file-abc123"). |
-| `deleted` | Boolean | Whether the file was successfully deleted. `True` if deletion succeeded. |
-| `object` | Text | オブジェクトタイプ。常に"file"。 |
+| プロパティ名 | 型 | 説明 |
+| --------- | ------- | ------------------------------------------------------------------- |
+| `id` | Text | 削除されたファイルのID (例: "file-abc123")。 |
+| `deleted` | Boolean | ファイルが正常に削除されたかどうか。 削除が成功した場合には `True`。 |
+| `object` | Text | オブジェクトタイプ。常に"file"。 |
-## Example Response
+## レスポンスの例
```json
{
@@ -25,7 +25,7 @@ The `OpenAIFileDeleted` class represents the deletion status of a file in the Op
}
```
-## Used by
+## 使用されるクラス
- [OpenAIFileDeletedResult](OpenAIFileDeletedResult.md)
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png
index 293036a14b5daa..50f2d9e129f93a 100644
Binary files a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png
new file mode 100644
index 00000000000000..4c0128bc351b26
Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png
new file mode 100644
index 00000000000000..dc2f7389acf6eb
Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png
new file mode 100644
index 00000000000000..a0b979c2a19216
Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/code-editor/write-class-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/code-editor/write-class-method.md
index e716fbab6260a7..c1ff1c6101c1d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/code-editor/write-class-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/code-editor/write-class-method.md
@@ -681,9 +681,9 @@ Windows では、日本語や中国語を入力するために IME (Input Method
このコマンドの結果は新規ウィンドウに表示されます。
-## Rename
+## 名称変更
-A global renaming feature can be used with **variables** and **project methods**, allowing you to rename them safely throughout the whole project. To do this, highlight the variable or project method name in the editor and select **Rename...** from the **Method** menu or the context menu. A dialog box is then displayed, allowing you to write the new name. For more information, refer to [Renaming project methods and variables](../Project/search-replace.md#renaming-project-methods-and-variables) section.
+グローバル名称変更機能は、**変数** と **プロジェクトメソッド** に対して使用でき、これによってプロジェクト全体において安全に名称を変更することができます。 これをするためには、エディター内において変数またはプロジェクトメソッド名をハイライトし、コンテキストメニューの**メソッド** メニューから**名称変更...** を選択します。 すると新しい名前を入力するためのダイアログボックスが表示されます。 より詳細な情報については、[プロジェクトメソッドと変数の名称変更](../Project/search-replace.md#プロジェクトメソッドと変数の名称変更) の章を参照してください。
## マクロ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
index 2c7b2cd95e01ee..ad9cc706bd33a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
@@ -5,11 +5,11 @@ slug: /commands/abort-process-by-id
displayed_sidebar: docs
---
-**ABORT PROCESS BY ID** ( *uniqueID* )
+**ABORT PROCESS BY ID** ( *uniqueID* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| uniqueID | Integer | → | 固有のプロセスID |
+| uniqueID | Integer | → | 固有のプロセスID |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
index dfe4906f159138..634f169835ed3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
@@ -41,6 +41,6 @@ ABORT コマンドはエラー処理プロジェクトメソッド内でのみ
| | |
| --- | --- |
| コマンド番号 | 156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
index f8363e7fbe1dc9..3eea4de35de609 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
@@ -5,11 +5,11 @@ slug: /commands/abs
displayed_sidebar: docs
---
-**Abs** ( *number* ) : Real
+**Abs** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 絶対値を求める数値 |
+| number | Real | → | 絶対値を求める数値 |
| 戻り値 | Real | ← | 絶対値 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 99 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
index 0c2ecdc245fa3d..cff847a38e8fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
index 978eca3cfa162d..be847c0ac99fa7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
@@ -5,11 +5,11 @@ slug: /commands/accumulate
displayed_sidebar: docs
---
-**ACCUMULATE** ( *...data* )
+**ACCUMULATE** ( *...data* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| data | Field, Variable | → | 累計する数値型のフィールドまたは変数 |
+| data | Field, Variable | → | 累計する数値型のフィールドまたは変数 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
index 9a8a46817dadd5..bb520c2e21ea2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
@@ -5,12 +5,12 @@ slug: /commands/action-info
displayed_sidebar: docs
---
-**Action info** ( *action* {; *target*} ) : Object
+**Action info** ( *action* : Text {; *target* : Integer} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| action | Text | → | 標準アクション名、あるいは(必要であれば)引数を含めたパターン |
-| target | Integer | → | アクションの情報を取得するターゲットを定義します。メインフォームあるいはカレントフォーム |
+| action | Text | → | 標準アクション名、あるいは(必要であれば)引数を含めたパターン |
+| target | Integer | → | アクションの情報を取得するターゲットを定義します。メインフォームあるいはカレントフォーム |
| 戻り値 | Object | ← | アクションのステータスを表したブール型のプロパティを格納するオブジェクト: isEnabled、isVisible、isChecked、isMixed、isUnknownState |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
index 536745e2b05588..9b91a9781573ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 346 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
index 3f95e4f9ce8bbd..4d2ab3698b54be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1387 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
index 1649bd8582b6f9..f6021b2c0f3931 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
@@ -5,7 +5,7 @@ slug: /commands/activity-snapshot
displayed_sidebar: docs
---
-**ACTIVITY SNAPSHOT** ( *arrActivities* {; *} )
**ACTIVITY SNAPSHOT** ( *arrUUID* ; *arrStart* ; *arrDuration* ; *arrInfo* {; *arrDetails*}{; *} )
+**ACTIVITY SNAPSHOT** ( *arrActivities* : Object array, テキスト配列 {; *} )
**ACTIVITY SNAPSHOT** ( *arrUUID* : Object array, テキスト配列 ; *arrStart* : Text array ; *arrDuration* : Integer array ; *arrInfo* : Text array {; *arrDetails* : Object array}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| arrDuration | Integer array | ← | オペレーションの所要時間(ミリ秒単位) |
| arrInfo | Text array | ← | オペレーションを説明するラベル |
| arrDetails | Object array | ← | コンテキストと、(あれば)サブオペレーションの詳細 |
-| * | 演算子 | → | 渡した場合、サーバーの状態を取得 |
+| * | 演算子 | → | 渡した場合、サーバーの状態を取得 |
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
index d81787643a8dbc..5d195c039284b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
@@ -5,12 +5,12 @@ slug: /commands/add-record
displayed_sidebar: docs
---
-**ADD RECORD** ( {*aTable*}{;}{*} )
+**ADD RECORD** ( {*aTable* : Table}{;}{*} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データ入力に使用するテーブル, または 省略した場合デフォルトテーブル |
-| * | Operator | → | スクロールバーを隠す |
+| aTable | Table | → | データ入力に使用するテーブル, または 省略した場合デフォルトテーブル |
+| * | Operator | → | スクロールバーを隠す |
@@ -95,7 +95,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 56 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
index 97d43e55dd0b6c..0d2f154877660a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
@@ -5,14 +5,14 @@ slug: /commands/add-to-date
displayed_sidebar: docs
---
-**Add to date** ( *date* ; *years* ; *months* ; *days* ) : Date
+**Add to date** ( *date* : Date ; *years* : Integer ; *months* : Integer ; *days* : Integer ) : Date
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| date | Date | → | 年月日を加算する日付 |
-| years | Integer | → | 日付に加算する年 |
-| months | Integer | → | 日付に加算する月 |
-| days | Integer | → | 日付に加算する日 |
+| date | Date | → | 年月日を加算する日付 |
+| years | Integer | → | 日付に加算する年 |
+| months | Integer | → | 日付に加算する月 |
+| days | Integer | → | 日付に加算する日 |
| 戻り値 | Date | ← | 結果の日付 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 393 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
index 10abf2a5bd5caf..4ea8257e61a208 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
@@ -5,12 +5,12 @@ slug: /commands/add-to-set
displayed_sidebar: docs
---
-**ADD TO SET** ( {*aTable* ;} *set* )
+**ADD TO SET** ( {*aTable* : Table ;} *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードのテーブル, または 省略時デフォルトテーブル |
-| set | Text | → | カレントレコードを追加するセットの名前 |
+| aTable | Table | → | カレントレコードのテーブル, または 省略時デフォルトテーブル |
+| set | Text | → | カレントレコードを追加するセットの名前 |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 119 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
index 61350e0bf10bdb..dfdaaf7aebe4fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-blobs-cache-priority
displayed_sidebar: docs
---
-**ADJUST BLOBS CACHE PRIORITY** ( *aTable* ; *priority* )
+**ADJUST BLOBS CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | "blob"データの優先度値を調節するテーブル |
-| priority | Integer | → | テーブル内のBLOBのキャッシュ優先度値 |
+| aTable | Table | → | "blob"データの優先度値を調節するテーブル |
+| priority | Integer | → | テーブル内のBLOBのキャッシュ優先度値 |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1431 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
index 36d38f5512c2e1..03e0e96add3fc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-index-cache-priority
displayed_sidebar: docs
---
-**ADJUST INDEX CACHE PRIORITY** ( *aField* ; *priority* )
+**ADJUST INDEX CACHE PRIORITY** ( *aField* : Field ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | 優先度値を調整したいインデックスのフィールド |
-| priority | Integer | → | フィールドインデックスのキャッシュ優先度値 |
+| aField | Field | → | 優先度値を調整したいインデックスのフィールド |
+| priority | Integer | → | フィールドインデックスのキャッシュ優先度値 |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1430 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
index f9d52511f032ed..d229690ba518de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-table-cache-priority
displayed_sidebar: docs
---
-**ADJUST TABLE CACHE PRIORITY** ( *aTable* ; *priority* )
+**ADJUST TABLE CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | スカラーデータの優先度値を調整したいテーブル |
-| priority | Integer | → | テーブルのキャッシュ優先度値 |
+| aTable | Table | → | スカラーデータの優先度値を調整したいテーブル |
+| priority | Integer | → | テーブルのキャッシュ優先度値 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1429 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md
index 4e6adde2cdc21b..f2a3fd8903cd58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/after.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 31 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
index 9f1a0eabfc9a5e..f573029d19d5c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
@@ -5,12 +5,12 @@ slug: /commands/alert
displayed_sidebar: docs
---
-**ALERT** ( *message* {; OK button title} )
+**ALERT** ( *message* : Text {; OK button title} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | アラートダイアログボックスに表示するメッセージ |
-| OK button title | 文字 | → | OKボタンのタイトル |
+| message | Text | → | アラートダイアログボックスに表示するメッセージ |
+| OK button title | 文字 | → | OKボタンのタイトル |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 41 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
index 1245d35e2fe2be..603881e53f3c1b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
@@ -5,11 +5,11 @@ slug: /commands/all-records
displayed_sidebar: docs
---
-**ALL RECORDS** {( *aTable* )}
+**ALL RECORDS** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | すべてのレコードを選択するテーブル 省略時、デフォルトテーブル |
+| aTable | Table | → | すべてのレコードを選択するテーブル 省略時、デフォルトテーブル |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 47 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
index 51b2207bae11a3..141de8be31a15c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/append-data-to-pasteboard
displayed_sidebar: docs
---
-**APPEND DATA TO PASTEBOARD** ( *dataType* ; *data* )
+**APPEND DATA TO PASTEBOARD** ( *dataType* : Text ; *data* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dataType | Text | → | 追加するデータのタイプ |
-| data | Blob | → | ペーストボードに追加するデータ |
+| dataType | Text | → | 追加するデータのタイプ |
+| data | Blob | → | ペーストボードに追加するデータ |
@@ -225,7 +225,7 @@ GET RECORD FROM PASTEBOARDメソッドを使用して、このレコードイメ
| | |
| --- | --- |
| コマンド番号 | 403 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
index 9a111a0bdedb95..69dedfe94b8352 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
@@ -5,12 +5,12 @@ slug: /commands/append-document
displayed_sidebar: docs
---
-**Append document** ( *document* {; *fileType*} ) : Time
+**Append document** ( *document* : Text {; *fileType* : Text} ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名、または 完全なドキュメントパス名、または 標準ファイルダイアログボックスの空の文字列 |
-| fileType | Text | → | スクリーンされるドキュメントタイプのリスト、または ドキュメントをスクリーンしない場合 "*" |
+| document | Text | → | ドキュメント名、または 完全なドキュメントパス名、または 標準ファイルダイアログボックスの空の文字列 |
+| fileType | Text | → | スクリーンされるドキュメントタイプのリスト、または ドキュメントをスクリーンしない場合 "*" |
| 戻り値 | Time | ← | ドキュメント参照番号 |
@@ -44,7 +44,7 @@ Append documentの使用についての詳細は、[Open document](open-document
| | |
| --- | --- |
| コマンド番号 | 265 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
index 7a5679e9bf968a..347445f2a4b03a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/append-menu-item
displayed_sidebar: docs
---
-**APPEND MENU ITEM** ( *menu* ; *itemText* {; *subMenu* {; *process* {; *}}} )
+**APPEND MENU ITEM** ( *menu* : Integer ; *itemText* : Text {; *subMenu* : Text {; *process* : Integer {; *}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer | → | メニュー番号またはメニュー参照 |
-| itemText | Text | → | 新しいメニュー項目のテキスト |
-| subMenu | Text | → | 項目に関連付けるサブメニューの参照 |
-| process | Integer | → | プロセス参照番号 |
-| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
+| menu | Integer | → | メニュー番号またはメニュー参照 |
+| itemText | Text | → | 新しいメニュー項目のテキスト |
+| subMenu | Text | → | 項目に関連付けるサブメニューの参照 |
+| process | Integer | → | プロセス参照番号 |
+| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
@@ -85,7 +85,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 411 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
index 8441b0c02186d1..a03badd5d92885 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
@@ -5,12 +5,12 @@ slug: /commands/append-to-array
displayed_sidebar: docs
---
-**APPEND TO ARRAY** ( *array* ; *value* )
+**APPEND TO ARRAY** ( *array* : Array ; *value* : Expression )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 要素を追加する配列 |
-| value | Expression | → | 追加する値 |
+| array | Array | → | 要素を追加する配列 |
+| value | Expression | → | 追加する値 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 911 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
index d5598f77cc27c8..e1f538f35faf39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
@@ -5,15 +5,15 @@ slug: /commands/append-to-list
displayed_sidebar: docs
---
-**APPEND TO LIST** ( *list* ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
+**APPEND TO LIST** ( *list* : Integer ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| itemText | Text | → | 新規リスト項目のテキスト |
-| itemRef | Integer | → | 新規リスト項目の参照番号 |
-| sublist | Integer | → | 新規リスト項目に付属するオプションのサブリスト |
-| expanded | Boolean | → | オプションのサブリストの展開/折りたたみ |
+| list | Integer | → | リスト参照番号 |
+| itemText | Text | → | 新規リスト項目のテキスト |
+| itemRef | Integer | → | 新規リスト項目の参照番号 |
+| sublist | Integer | → | 新規リスト項目に付属するオプションのサブリスト |
+| expanded | Boolean | → | オプションのサブリストの展開/折りたたみ |
@@ -166,6 +166,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 376 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
index 09e0acb57c2020..569c24c1be41b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Windows上で、4Dの起動時に、DLLライブラリが4D実行形式のファ
| | |
| --- | --- |
| コマンド番号 | 491 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
index 43db97ae1eed08..9d6bf9add715fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1599 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
index 2ccadbf1d756bf..caf2d6459b12c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 494 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
index 49760df3a43d77..a905f3b77ce5fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
@@ -5,12 +5,12 @@ slug: /commands/application-version
displayed_sidebar: docs
---
-**Application version** {( *buildNum* {; *} )} : Text
+**Application version** ( *buildNum* : Integer {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| buildNum | Integer | ← | ビルド番号 |
-| * | 演算子 | → | 指定した場合、ロングバージョン番号 指定しなかった場合、ショートバージョン番号 |
+| * | 演算子 | → | 指定した場合、ロングバージョン番号 指定しなかった場合、ショートバージョン番号 |
| 戻り値 | Text | ← | バージョン番号のエンコードされた文字列 |
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 493 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
index 2c372e7de77176..1e10e46b13ee09 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/apply-to-selection
displayed_sidebar: docs
---
-**APPLY TO SELECTION** ( *aTable* ; *statement* )
+**APPLY TO SELECTION** ( *aTable* : Table ; *statement* : Expression )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | ステートメントを適用するテーブル |
-| statement | Expression | → | 1行のコードで記述されたメソッド |
+| aTable | Table | → | ステートメントを適用するテーブル |
+| statement | Expression | → | 1行のコードで記述されたメソッド |
@@ -68,7 +68,7 @@ APPLY TO SELECTION実行中にレコードを修正して、そのレコード
| | |
| --- | --- |
| コマンド番号 | 70 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
index 97b21bc9c4715b..0ed00236e75052 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
@@ -5,11 +5,11 @@ slug: /commands/arctan
displayed_sidebar: docs
---
-**Arctan** ( *number* ) : Real
+**Arctan** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 角度を求めるタンジェント値 |
+| number | Real | → | 角度を求めるタンジェント値 |
| 戻り値 | Real | ← | ラジアン角度 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 20 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
index a5ef248ba2e03a..cc3aaf688ddc03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
@@ -5,13 +5,13 @@ slug: /commands/array-blob
displayed_sidebar: docs
---
-**ARRAY BLOB** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY BLOB** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
-| size2 | Integer | → | 2次元配列の要素の数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
+| size2 | Integer | → | 2次元配列の要素の数 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
index ccef871828c0c6..408eec11d62e55 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
@@ -5,13 +5,13 @@ slug: /commands/array-boolean
displayed_sidebar: docs
---
-**ARRAY BOOLEAN** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY BOOLEAN** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -68,6 +68,6 @@ ARRAY BOOLEANを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
index 2cbd53a3fca02a..b05199438c88c3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
@@ -5,13 +5,13 @@ slug: /commands/array-date
displayed_sidebar: docs
---
-**ARRAY DATE** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY DATE** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -63,6 +63,6 @@ ARRAY DATEを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
index b7e0d59cfae2e2..34fa09cdc0759e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
@@ -5,13 +5,13 @@ slug: /commands/array-integer
displayed_sidebar: docs
---
-**ARRAY INTEGER** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY INTEGER** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -67,6 +67,6 @@ ARRAY INTEGERを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
index 43c8dff2cb6c2f..affe6b6593fd8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
@@ -5,13 +5,13 @@ slug: /commands/array-longint
displayed_sidebar: docs
---
-**ARRAY LONGINT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY LONGINT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -67,6 +67,6 @@ ARRAY LONGINTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
index eb7e293b7b9345..09d656233626d5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
@@ -5,13 +5,13 @@ slug: /commands/array-object
displayed_sidebar: docs
---
-**ARRAY OBJECT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY OBJECT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
-| size2 | Integer | → | 2次元配列の要素の数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
+| size2 | Integer | → | 2次元配列の要素の数 |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
index 1237eb226645a5..037b25f0b5e4f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
@@ -5,13 +5,13 @@ slug: /commands/array-picture
displayed_sidebar: docs
---
-**ARRAY PICTURE** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY PICTURE** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -70,6 +70,6 @@ ARRAY PICTURE を既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 279 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
index 9f1bc887e641f1..35fdec16525071 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/array-pointer
displayed_sidebar: docs
---
-**ARRAY POINTER** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY POINTER** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 280 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
index 1bf09a8784a2e3..47c60a5e10e347 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
@@ -5,13 +5,13 @@ slug: /commands/array-real
displayed_sidebar: docs
---
-**ARRAY REAL** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY REAL** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -67,6 +67,6 @@ ARRAY REALを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
index f1e23fc9d243c9..c5c788ed4612aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
@@ -5,13 +5,13 @@ slug: /commands/array-text
displayed_sidebar: docs
---
-**ARRAY TEXT** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY TEXT** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
-| size2 | Integer | → | 2次元配列の列数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素数、またはsize2を指定した場合は配列の行数 |
+| size2 | Integer | → | 2次元配列の列数 |
@@ -64,6 +64,6 @@ ARRAY TEXTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
index 18a1ceeef41b40..53d980fa5d4e68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
@@ -5,13 +5,13 @@ slug: /commands/array-time
displayed_sidebar: docs
---
-**ARRAY TIME** ( *arrayName* ; *size* {; *size2*} )
+**ARRAY TIME** ( *arrayName* : Array ; *size* : Integer {; *size2* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| arrayName | Array | → | 配列名 |
-| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
-| size2 | Integer | → | 2次元配列の要素の数 |
+| arrayName | Array | → | 配列名 |
+| size | Integer | → | 配列の要素の数、もしくはsize2が指定されていた場合は配列の数 |
+| size2 | Integer | → | 2次元配列の要素の数 |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
index ec4cd45627a57f..5d16a2f0e347cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-collection
displayed_sidebar: docs
---
-**ARRAY TO COLLECTION** ( *...collection* ; *...array* {; *...propertyName*} )
+**ARRAY TO COLLECTION** ( *...collection* : Collection ; *...array* : Array {; *...propertyName* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| collection | Collection | ← | 配列のデータを受け取るコレクション |
-| array | Array | → | コレクションにコピーする配列。propertyName引数指定時はコレクションのpropertyNameの値にコピーする配列。 |
-| propertyName | Text | → | 配列の要素を値として格納するオブジェクトのプロパティ名 |
+| array | Array | → | コレクションにコピーする配列。propertyName引数指定時はコレクションのpropertyNameの値にコピーする配列。 |
+| propertyName | Text | → | 配列の要素を値として格納するオブジェクトのプロパティ名 |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
index 0e9ae465925fc7..3eb52f14a8d423 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-list
displayed_sidebar: docs
---
-**ARRAY TO LIST** ( *array* ; *list* {; *itemRefs*} )
+**ARRAY TO LIST** ( *array* : Array ; *list* : Text, Integer {; *itemRefs* : Array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 配列要素のコピー元配列 |
-| list | Text, Integer | → | 配列要素のコピー先リスト |
-| itemRefs | Array | → | 項目参照番号の数値配列 |
+| array | Array | → | 配列要素のコピー元配列 |
+| list | Text, Integer | → | 配列要素のコピー先リスト |
+| itemRefs | Array | → | 項目参照番号の数値配列 |
@@ -66,7 +66,7 @@ ARRAY TO LIST コマンドを使い、配列の要素に基づくリストを作
| | |
| --- | --- |
| コマンド番号 | 287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
index 25e599a6cdfe12..05c8511fcab1e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-selection
displayed_sidebar: docs
---
-**ARRAY TO SELECTION** {( *array* ; *aField* {; *array2* ; *aField2* ; ... ; *arrayN* ; *aFieldN*}{; *} )}
+**ARRAY TO SELECTION** ({ *array* : Array ; *aField* : Field {; ...(*array* : Array, *aField* : Field)}{; *} })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | コピー元の配列 |
+| array | Array | → | コピー元の配列 |
| aField | Field | ← | 配列データを受け取るフィールド |
-| * | 演算子 | → | 実行をスタックする |
+| * | 演算子 | → | 実行をスタックする |
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 261 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
index 34299114216048..c5b466e5abfff0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
@@ -5,12 +5,12 @@ slug: /commands/assert
displayed_sidebar: docs
---
-**ASSERT** ( *boolExpression* {; *messageText*} )
+**ASSERT** ( *boolExpression* : Boolean {; *messageText* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| boolExpression | Boolean | → | ブール式 |
-| messageText | Text | → | エラーメッセージテキスト |
+| boolExpression | Boolean | → | ブール式 |
+| messageText | Text | → | エラーメッセージテキスト |
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1129 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
index 6d7c67e2f26a32..d67666de0ac703 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
@@ -5,12 +5,12 @@ slug: /commands/asserted
displayed_sidebar: docs
---
-**Asserted** ( *boolExpression* {; *messageText*} ) : Boolean
+**Asserted** ( *boolExpression* : Boolean {; *messageText* : Text} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| boolExpression | Boolean | → | ブール式 |
-| messageText | Text | → | エラーメッセージテキスト |
+| boolExpression | Boolean | → | ブール式 |
+| messageText | Text | → | エラーメッセージテキスト |
| 戻り値 | Boolean | ← | boolExpressionの評価結果 |
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1132 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md
index f01e32588b6229..c512c69291323e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/average.md
@@ -5,12 +5,12 @@ slug: /commands/average
displayed_sidebar: docs
---
-**Average** ( *series* {; *attributePath*} ) : Real
+**Average** ( *series* : Field, Array {; *attributePath* : Text} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 平均を求めるデータ |
-| attributePath | Text | → | 平均を取得したい属性のパス |
+| series | Field, Array | → | 平均を求めるデータ |
+| attributePath | Text | → | 平均を取得したい属性のパス |
| 戻り値 | Real | ← | seriesの平均値 |
@@ -96,7 +96,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 2 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
index ddf0e987376153..46848024691cb5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
@@ -5,11 +5,11 @@ slug: /commands/backup-info
displayed_sidebar: docs
---
-**BACKUP INFO** ( *selector* ; *info1* ; *info2* )
+**BACKUP INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Time, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | 取得する情報のタイプ |
+| selector | Integer | → | 取得する情報のタイプ |
| info1 | Integer, Date | ← | セレクタの値1 |
| info2 | Time, Text | ← | セレクタの値2 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 888 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
index bf4823b4aec5de..9e0c25fcad859d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 887 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
index e29cc3d31f05d5..3929b5e35a367a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-decode
displayed_sidebar: docs
---
-**BASE64 DECODE** ( *encodedText* {; *decoded*}{; *} )
+**BASE64 DECODE** ( *encodedText* : Text, Blob {; *decoded* : Text, Blob}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| encodedText | Text, Blob | → | デコードする、エンコード済みの値 |
-| ← | デコードされた値(decoded 引数省略時) |
+| encodedText | Text, Blob | ↔ | *in:* Encoded value to decode
*out:* Decoded value (if decoded parameter omitted) |
| decoded | Text, Blob | ← | デコードされた値 |
-| * | 演算子 | → | デコードにBase64URL フォーマットを指定 |
+| * | 演算子 | → | デコードにBase64URL フォーマットを指定 |
@@ -61,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 896 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
index a4da7281c43058..65c9fd83d48ee4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-encode
displayed_sidebar: docs
---
-**BASE64 ENCODE** ( *BLOB* {; *encoded*}{; *} )
+**BASE64 ENCODE** ( *BLOB* : Blob, Text {; *encoded* : Blob, Text}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob, Text | → | Base 64フォーマットでコード化するBLOB |
-| ← | Base 64フォーマットでコード化したBLOB |
+| Blob | Blob, Text | ↔ | *in:* Value to encode
*out:* Encoded value (if encoded parameter omitted) |
| encoded | Blob, Text | ← | エンコードされた値 |
-| * | 演算子 | → | Base64URL フォーマットでエンコードする |
+| * | 演算子 | → | Base64URL フォーマットでエンコードする |
@@ -44,6 +43,6 @@ Bse64 エンコーディングは、8-bit のコードされたデータを編
| | |
| --- | --- |
| コマンド番号 | 895 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
index cef8fe8348b662..d5be48566b0144 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 151 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
index 9b996977eccc74..6c59d462520509 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
@@ -5,11 +5,11 @@ slug: /commands/before-selection
displayed_sidebar: docs
---
-**Before selection** {( *aTable* )} : Boolean
+**Before selection** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードポインタがセレクションの先頭より前に あるかをテストするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードポインタがセレクションの先頭より前に あるかをテストするテーブル, または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | Yes (TRUE) または No (FALSE) |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 198 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md
index eeadf19a13f586..73b09d57c8b22f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/before.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 29 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
index 484ba831bf1360..ea6a80a32bd281 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 948 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
index a69180c5316539..d54dab22e82ccc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
@@ -5,11 +5,11 @@ slug: /commands/blob-properties
displayed_sidebar: docs
---
-**BLOB PROPERTIES** ( *BLOB* ; *compressed* {; *expandedSize* {; *currentSize*}} )
+**BLOB PROPERTIES** ( *BLOB* : Blob ; *compressed* : Integer {; *expandedSize* : Integer {; *currentSize* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 情報を取得するBLOB |
+| Blob | Blob | → | 情報を取得するBLOB |
| compressed | Integer | ← | 0 = BLOBは圧縮されていない 1 = BLOBは圧縮率優先で圧縮されている 2 = BLOBは速度優先で圧縮されている |
| expandedSize | Integer | ← | 非圧縮時のBLOBのサイズ (バイト単位) |
| currentSize | Integer | ← | BLOBの現在のサイズ (バイト単位) |
@@ -84,6 +84,6 @@ BLOBが圧縮された後、以下のプロジェクトメソッドは圧縮で
| | |
| --- | --- |
| コマンド番号 | 536 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
index 29b9aa07b21ca7..0a9e23483e8425 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/blob-size
displayed_sidebar: docs
---
-**BLOB size** ( *BLOB* ) : Integer
+**BLOB size** ( *BLOB* : Blob ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOBフィールドまたは変数 |
+| Blob | Blob | → | BLOBフィールドまたは変数 |
| 戻り値 | Integer | ← | バイト単位のBLOBサイズ |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 605 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
index b84bf5443c815e..398638d368680d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-document
displayed_sidebar: docs
---
-**BLOB TO DOCUMENT** ( *document* ; *BLOB* )
+**BLOB TO DOCUMENT** ( *document* : Text ; *BLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名 |
-| Blob | Blob | → | ドキュメントの新しいコンテンツ |
+| document | Text | → | ドキュメント名 |
+| Blob | Blob | → | ドキュメントの新しいコンテンツ |
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
index 922f475f75ae7d..909d9412ac22bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-integer
displayed_sidebar: docs
---
-**BLOB to integer** ( *BLOB* ; *byteOrder* {; *offset*} ) : Integer
+**BLOB to integer** ( *BLOB* : Blob ; *byteOrder* : Integer {; *offset* : Variable} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 整数値を取り出すBLOB |
-| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
+| Blob | Blob | → | 整数値を取り出すBLOB |
+| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | Variable | ↔ | BLOB中のオフセット (バイト単位) |
-| || | 読み込み後、新しいオフセット |
+| | | | 読み込み後、新しいオフセット |
| 戻り値 | Integer | ← | 2バイト整数値 |
@@ -68,6 +68,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 549 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
index 4db21b7553c518..18479cab901c96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-list
displayed_sidebar: docs
---
-**BLOB to list** ( *BLOB* {; *offset*} ) : Integer
+**BLOB to list** ( *BLOB* : Blob {; *offset* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 階層リストが格納されたBLOB |
-| offset | Integer | ↔ | BLOB内のオフセット (バイト単位) |
-| || | 読み込み後の新しいオフセット |
+| Blob | Blob | → | 階層リストが格納されたBLOB |
+| offset | Integer | ↔ | BLOB内のオフセット (バイト単位) |
+| | | | 読み込み後の新しいオフセット |
| 戻り値 | Integer | ← | 新しく作成されたリスト参照 |
@@ -67,7 +67,7 @@ BLOB to listや[LIST TO BLOB](list-to-blob.md "LIST TO BLOB")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 557 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
index a9134ffefa5591..51372e264422f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-longint
displayed_sidebar: docs
---
-**BLOB to longint** ( *BLOB* ; *byteOrder* {; *offset*} ) : Integer
+**BLOB to longint** ( *BLOB* : Blob ; *byteOrder* : Integer {; *offset* : Variable} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 倍長整数値を取り出すBLOB |
-| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
-| offset | Variable | ↔ | BLOB中のオフセット (バイト単位) |
-| || | 読み込み後、新しいオフセット |
+| Blob | Blob | → | 倍長整数値を取り出すBLOB |
+| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
+| offset | Variable | ↔ | BLOB中のオフセット (バイト単位) |
+| | | | 読み込み後、新しいオフセット |
| 戻り値 | Integer | ← | 4バイト整数値 |
@@ -66,6 +66,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 551 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
index f29c68234c0887..1cd58ea5d688a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-picture
displayed_sidebar: docs
---
-**BLOB TO PICTURE** ( *pictureBlob* ; *picture* {; *codec*} )
+**BLOB TO PICTURE** ( *pictureBlob* : Blob ; *picture* : Picture {; *codec* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pictureBlob | Blob | → | ピクチャを格納したBLOB |
+| pictureBlob | Blob | → | ピクチャを格納したBLOB |
| picture | Picture | ← | BLOBから取り出したピクチャ |
-| codec | Text | → | ピクチャcodec ID |
+| codec | Text | → | ピクチャcodec ID |
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 682 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
index ea177236f178e8..ebc101fbee1fc9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-print-settings
displayed_sidebar: docs
---
-**BLOB to print settings** ( *printSettings* {; *params*} ) : Integer
+**BLOB to print settings** ( *printSettings* : Blob {; *params* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| printSettings | Blob | → | 印刷設定を格納したBLOB |
-| params | Integer | → | 0 = 部数と印刷範囲に関して、BLOB に保存された値を復元;1 = デフォルト値にリセット |
+| printSettings | Blob | → | 印刷設定を格納したBLOB |
+| params | Integer | → | 0 = 部数と印刷範囲に関して、BLOB に保存された値を復元;1 = デフォルト値にリセット |
| 戻り値 | Integer | ← | 1 = 処理に成功, 0 = カレントのプリンターがない, -1 = 引数が不正, 2 = プリンターが変更された |
@@ -81,6 +81,6 @@ The **BLOB to print settings** コマンドは、コマンドに比べてより
| | |
| --- | --- |
| コマンド番号 | 1434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
index b66106b809689e..d4f66f2fbdd52a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-real
displayed_sidebar: docs
---
-**BLOB to real** ( *BLOB* ; *realFormat* {; *offset*} ) : Real
+**BLOB to real** ( *BLOB* : Blob ; *realFormat* : Integer {; *offset* : Variable} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 実数値を取り出すBLOB |
-| realFormat | Integer | → | 0 Native real format 1 Extended real format 2 Macintosh Double real format 3 Windows Double real format |
+| Blob | Blob | → | 実数値を取り出すBLOB |
+| realFormat | Integer | → | 0 Native real format 1 Extended real format 2 Macintosh Double real format 3 Windows Double real format |
| offset | Variable | ↔ | BLOB中のオフセット (バイト単位) |
-| || | 読み込み後、新しいオフセット |
+| | | | 読み込み後、新しいオフセット |
| 戻り値 | Real | ← | 実数値 |
@@ -67,6 +67,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 553 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
index f9b0a3893cf5e9..be7605d67913c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
@@ -5,15 +5,15 @@ slug: /commands/blob-to-text
displayed_sidebar: docs
---
-**BLOB to text** ( *BLOB* ; *textFormat* {; *offset* {; *textLength*}} ) : Text
+**BLOB to text** ( *BLOB* : Blob ; *textFormat* : Integer {; *offset* : Variable {; *textLength* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | テキストを取り出すBLOB |
-| textFormat | Integer | → | テキストのフォーマットと文字セット |
-| offset | Variable |↔ | BLOB内のオフセット (バイト単位) |
-| ||| 読み込み後の新しいオフセット |
-| textLength | Integer | → | 読み込む文字数 |
+| Blob | Blob | → | テキストを取り出すBLOB |
+| textFormat | Integer | → | テキストのフォーマットと文字セット |
+| offset | Variable | ↔ | BLOB内のオフセット (バイト単位) |
+| | | | 読み込み後の新しいオフセット |
+| textLength | Integer | → | 読み込む文字数 |
| 戻り値 | Text | ← | 取り出したテキスト |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 555 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
index a97832a583980c..2a73b80194b191 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-users
displayed_sidebar: docs
---
-**BLOB TO USERS** ( *users* )
+**BLOB TO USERS** ( *users* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| users | Blob | → | データベース管理者によって作成・保存されたデータベースユーザーアカウントを格納している、暗号化された BLOB |
+| users | Blob | → | データベース管理者によって作成・保存されたデータベースユーザーアカウントを格納している、暗号化された BLOB |
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 850 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
index 075ee345c0572c..963b92176b46a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-variable
displayed_sidebar: docs
---
-**BLOB TO VARIABLE** ( *BLOB* ; *variable* {; *offset*} )
+**BLOB TO VARIABLE** ( *BLOB* : Blob ; *variable* : Variable {; *offset* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 4D変数を格納したBLOB |
+| Blob | Blob | → | 4D変数を格納したBLOB |
| variable | Variable | ← | BLOBの内容を書き込む変数 |
-| offset | Integer |↔ | BLOB内の変数の位置 |
-| || | BLOB内の次の変数の位置 |
+| offset | Integer | ↔ | BLOB内の変数の位置 |
+| | | | BLOB内の次の変数の位置 |
@@ -50,7 +50,7 @@ BLOB TO VARIABLEと[VARIABLE TO BLOB](variable-to-blob.md)は4Dの内部フォ
| | |
| --- | --- |
| コマンド番号 | 533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
index b2bdd26a2e12ff..1611cbb8e5c744 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
@@ -5,11 +5,11 @@ slug: /commands/bool
displayed_sidebar: docs
---
-**Bool** ( *expression* ) : Boolean
+**Bool** ( *expression* : Expression ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| expression | Expression | → | ブール形式で返したい式 |
+| expression | Expression | → | ブール形式で返したい式 |
| 戻り値 | Boolean | ← | 式のブール型 |
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1537 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
index 07825bd74b8d88..09b1c616b008fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/boolean-array-from-set
displayed_sidebar: docs
---
-**BOOLEAN ARRAY FROM SET** ( *booleanArr* {; *set*} )
+**BOOLEAN ARRAY FROM SET** ( *booleanArr* : Boolean array {; *set* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| booleanArr | Boolean array | ← | レコードがセットに含まれているかいないかを示す配列 |
-| set | Text | → | セット名、または 引数が省略された場合UserSet |
+| set | Text | → | セット名、または 引数が省略された場合UserSet |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 646 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
index f747bfe3923e61..c72b7a9679527d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
@@ -5,12 +5,12 @@ slug: /commands/break-level
displayed_sidebar: docs
---
-**BREAK LEVEL** ( *level* {; *pageBreak*} )
+**BREAK LEVEL** ( *level* : Integer {; *pageBreak* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| level | Integer | → | ブレークレベルの数 |
-| pageBreak | Integer | → | 改ページを行うブレークレベル |
+| level | Integer | → | ブレークレベルの数 |
+| pageBreak | Integer | → | 改ページを行うブレークレベル |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
index 4a28d23fc6644e..4c49f7601ba05b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
@@ -5,11 +5,11 @@ slug: /commands/bring-to-front
displayed_sidebar: docs
---
-**BRING TO FRONT** ( *process* )
+**BRING TO FRONT** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | 最前面に移動させるプロセスのプロセス番号 |
+| process | Integer | → | 最前面に移動させるプロセスのプロセス番号 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
index 380e4478f40124..4faed6459be8ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
@@ -5,11 +5,11 @@ slug: /commands/build-application
displayed_sidebar: docs
---
-**BUILD APPLICATION** {( *projectName* )}
+**BUILD APPLICATION** ({ *projectName* : Text })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| projectName | Text | → | 使用する設定ファイルのフルアクセスパス |
+| projectName | Text | → | 使用する設定ファイルのフルアクセスパス |
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 871 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
index 23e8711740f3ea..4b293e33003c15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
@@ -5,11 +5,11 @@ slug: /commands/cache-info
displayed_sidebar: docs
---
-**Cache info** {( *dbFilter* )} : Object
+**Cache info** ( *dbFilter* : Object ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dbFilter | Object | → | 返す属性の一覧を定義(データベースごとにフィルター) |
+| dbFilter | Object | → | 返す属性の一覧を定義(データベースごとにフィルター) |
| 戻り値 | Object | ← | キャッシュについての情報 |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1402 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
index a20620a8df9a5d..4647ffad72e321 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
@@ -5,13 +5,13 @@ slug: /commands/call-form
displayed_sidebar: docs
---
-**CALL FORM** ( *window* ; *formula* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL FORM** ( *window* : Integer ; *formula* : Object, Text {; *...param* : Expression} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
-| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
-| param | Expression | → | メソッドに渡す引数 |
+| window | Integer | → | ウィンドウ参照番号 |
+| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
+| param | Expression | → | メソッドに渡す引数 |
@@ -107,6 +107,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1391 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
index 39abc573861ca2..febc9e525b1672 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
@@ -5,11 +5,11 @@ slug: /commands/call-subform-container
displayed_sidebar: docs
---
-**CALL SUBFORM CONTAINER** ( *event* )
+**CALL SUBFORM CONTAINER** ( *event* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| event | Integer | → | 送信するイベント |
+| event | Integer | → | 送信するイベント |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1086 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
index af6c4bdeb0718e..e89f292ff18239 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
@@ -5,13 +5,13 @@ slug: /commands/call-worker
displayed_sidebar: docs
---
-**CALL WORKER** ( *process* ; *formula* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL WORKER** ( *process* : Text, Integer ; *formula* : Object, Text {; *...param* : Expression} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Text, Integer | → | プロセス番号、またはプロセス名 |
-| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
-| param | Expression | → | メソッドに渡す引数 |
+| process | Text, Integer | → | プロセス番号、またはプロセス名 |
+| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
+| param | Expression | → | メソッドに渡す引数 |
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1389 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
index 6a9ab76d670f15..7d30d827446631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 241 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
index 5b308eae57b500..ccb215bb16e110 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ CANCELコマンドが実行される (フォームや印刷がキャンセルさ
| | |
| --- | --- |
| コマンド番号 | 270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
index c33bffa86206fd..65784d4074c5b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
index 930a00b3976ea2..660b49073cd658 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
@@ -5,12 +5,12 @@ slug: /commands/change-current-user
displayed_sidebar: docs
---
-**CHANGE CURRENT USER** {( *user* ; *password* )}
+**CHANGE CURRENT USER** ({ *user* : Text, Integer ; *password* : Text })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| user | Text, Integer | → | 名前またはユニークなユーザーID |
-| password | Text | → | (暗号化されていない)パスワード |
+| user | Text, Integer | → | 名前またはユニークなユーザーID |
+| password | Text | → | (暗号化されていない)パスワード |
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
index 1a13461b3fb78b..d37733b0771832 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ CHANGE LICENSES は、顧客に配付されたコンパイル済みのシング
| | |
| --- | --- |
| コマンド番号 | 637 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
index 699484d83de190..06b33379df20dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
@@ -5,11 +5,11 @@ slug: /commands/change-password
displayed_sidebar: docs
---
-**CHANGE PASSWORD** ( *password* )
+**CHANGE PASSWORD** ( *password* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| password | Text | → | 新しいパスワード |
+| password | Text | → | 新しいパスワード |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
index 0473dd90e7db27..8e515718351b48 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
@@ -5,13 +5,13 @@ slug: /commands/change-string
displayed_sidebar: docs
---
-**Change string** ( *source* ; *newChars* ; *where* ) : Text
+**Change string** ( *source* : Text ; *newChars* : Text ; *where* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Text | → | 元の文字列 |
-| newChars | Text | → | 新しい文字 |
-| where | Integer | → | 入れ替え開始位置 |
+| source | Text | → | 元の文字列 |
+| newChars | Text | → | 新しい文字 |
+| where | Integer | → | 入れ替え開始位置 |
| 戻り値 | Text | ← | 結果の文字列 |
@@ -44,6 +44,6 @@ Change stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md
index ece1395d153dcc..b27fa44e984793 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/char.md
@@ -5,11 +5,11 @@ slug: /commands/char
displayed_sidebar: docs
---
-**Char** ( *charCode* ) : Text
+**Char** ( *charCode* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| charCode | Integer | → | 文字コード |
+| charCode | Integer | → | 文字コード |
| 戻り値 | Text | ← | 文字コードによって表現された文字 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 90 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
index f64fe50eb1f7c0..c9eb29fbedae2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
@@ -5,11 +5,11 @@ slug: /commands/character-code
displayed_sidebar: docs
---
-**Character code** ( *character* ) : Integer
+**Character code** ( *character* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| character | Text | → | 取得したい文字を得るためのコード |
+| character | Text | → | 取得したい文字を得るためのコード |
| 戻り値 | Integer | ← | 文字コード |
@@ -89,6 +89,6 @@ characterが1文字より多い場合、 **Character code** は最初の文字
| | |
| --- | --- |
| コマンド番号 | 91 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
index f2914478858fca..d35c8a06bea502 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 799 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
index 239ae4390e7470..9f557dcef784c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
@@ -5,12 +5,12 @@ slug: /commands/choose
displayed_sidebar: docs
---
-**Choose** ( *criterion* ; *value* {; *value2* ; ... ; *valueN*} ) : any
+**Choose** ( *criterion* : Boolean, Integer ; *value* : Expression {; *...value* : Expression} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| criterion | Boolean, Integer | → | テストする値 |
-| value | Expression | → | 可能な値 |
+| criterion | Boolean, Integer | → | テストする値 |
+| value | Expression | → | 可能な値 |
| 戻り値 | any | ← | 条件の値 |
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 955 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
index b70510972cf22e..a052ec2737e206 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
@@ -5,12 +5,12 @@ slug: /commands/clear-list
displayed_sidebar: docs
---
-**CLEAR LIST** ( *list* {; *} )
+**CLEAR LIST** ( *list* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| * | Operator | → | 指定した場合, サブリストがあればそれもメモリからクリア 省略した場合, サブリストがあってもそれをクリアしない |
+| list | Integer | → | リスト参照番号 |
+| * | Operator | → | 指定した場合, サブリストがあればそれもメモリからクリア 省略した場合, サブリストがあってもそれをクリアしない |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 377 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
index 2aed7978835bad..bafb26bb43753a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/clear-named-selection
displayed_sidebar: docs
---
-**CLEAR NAMED SELECTION** ( *name* )
+**CLEAR NAMED SELECTION** ( *name* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| name | Text | → | クリアする命名セレクション名 |
+| name | Text | → | クリアする命名セレクション名 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
index 83b86e4aa54070..fbb2bdc9506ce5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ CLEAR PASTEBOARDを1回呼び出してから、[APPEND DATA TO PASTEBOARD](appen
| | |
| --- | --- |
| コマンド番号 | 402 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
index cc8f70475ff84f..d73f1de58d83af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/clear-semaphore
displayed_sidebar: docs
---
-**CLEAR SEMAPHORE** ( *semaphore* )
+**CLEAR SEMAPHORE** ( *semaphore* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| semaphore | Text | → | クリアするセマフォ |
+| semaphore | Text | → | クリアするセマフォ |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 144 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
index 1a2ead7432ae4c..6a94cab016545a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
@@ -5,11 +5,11 @@ slug: /commands/clear-set
displayed_sidebar: docs
---
-**CLEAR SET** ( *set* )
+**CLEAR SET** ( *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | メモリからクリアするセットの名前 |
+| set | Text | → | メモリからクリアするセットの名前 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 117 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
index 7957e47693d527..5ae3c28f19d78f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
@@ -5,11 +5,11 @@ slug: /commands/clear-variable
displayed_sidebar: docs
---
-**CLEAR VARIABLE** ( *variable* )
+**CLEAR VARIABLE** ( *variable* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| variable | Variable | → | クリアする変数 |
+| variable | Variable | → | クリアする変数 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 89 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
index 8b7215fd80e552..2fc9b6c082157d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ On Clicked と On Double Clicked フォームイベントが両方とも有効
| | |
| --- | --- |
| コマンド番号 | 1332 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
index b6a06b81090992..65b7027f5d2d36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号 |
+| Time | Time | → | ドキュメント参照番号 |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 267 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
index fb06cd3c73cb00..11d355f6ae5c65 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 996 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
index a8f91cd02039d5..0dc2cbd3841c6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
@@ -5,11 +5,11 @@ slug: /commands/close-resource-file
displayed_sidebar: docs
---
-**CLOSE RESOURCE FILE** ( *resFile* )
+**CLOSE RESOURCE FILE** ( *resFile* : Time )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resFile | Time | → | リソースファイル参照番号 |
+| resFile | Time | → | リソースファイル参照番号 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 498 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
index 8e3144ec81c1d7..505d64a3411edd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
@@ -5,11 +5,11 @@ slug: /commands/close-window
displayed_sidebar: docs
---
-**CLOSE WINDOW** {( *window* )}
+**CLOSE WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号, または 省略した場合、カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号, または 省略した場合、カレントプロセスの最前面ウィンドウ |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
index 2d601f590bcb42..869844cd329d02 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/collection-to-array
displayed_sidebar: docs
---
-**COLLECTION TO ARRAY** ( *collection* ; *array* {; *propertyName*}{; *array2* ; *propertyName2* ; ... ; *arrayN* ; *propertyNameN*} )
+**COLLECTION TO ARRAY** ( *collection* : Collection ; *array* : Array {; *propertyName* : Text}{; ...(*array* : Array ; *propertyName* : Text) } )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| collection | Collection | → | 配列へとコピーしたいコレクション |
+| collection | Collection | → | 配列へとコピーしたいコレクション |
| array | Array | ← | コレクションの要素を受け取る配列。propertyName引数指定時はコレクションのpropertyNameの値を受け取る配列。 |
-| propertyName | Text | → | 配列へとコピーしたいオブジェクトのプロパティ名(""を指定で全要素をコピー) |
+| propertyName | Text | → | 配列へとコピーしたいオブジェクトのプロパティ名(""を指定で全要素をコピー) |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
index 73f5d0893142f0..bec7db82abaa0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
@@ -5,16 +5,16 @@ slug: /commands/combine-pictures
displayed_sidebar: docs
---
-**COMBINE PICTURES** ( *resultingPict* ; *pict1* ; *operator* ; *pict2* {; *horOffset* ; *vertOffset*} )
+**COMBINE PICTURES** ( *resultingPict* : Picture ; *pict1* : Picture ; *operator* : Integer ; *pict2* : Picture {; *horOffset* : Integer ; *vertOffset* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| resultingPict | Picture | ← | 重ね合わせた結果のピクチャ |
-| pict1 | Picture | → | 重ね合わせる1つ目のピクチャ |
-| operator | Integer | → | 重ね合わせのタイプ |
-| pict2 | Picture | → | 重ね合わせる2つ目のピクチャ |
-| horOffset | Integer | → | 重ね合わせの横オフセット |
-| vertOffset | Integer | → | 重ね合わせの縦オフセット |
+| pict1 | Picture | → | 重ね合わせる1つ目のピクチャ |
+| operator | Integer | → | 重ね合わせのタイプ |
+| pict2 | Picture | → | 重ね合わせる2つ目のピクチャ |
+| horOffset | Integer | → | 重ね合わせの横オフセット |
+| vertOffset | Integer | → | 重ね合わせの縦オフセット |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 987 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
index 2bca4a7bcaa9b5..e883f24a2be3ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/compact-data-file
displayed_sidebar: docs
---
-**Compact data file** ( *structurePath* ; *dataPath* {; *archiveFolder* {; *option* {; *method*}}} ) : Text
+**Compact data file** ( *structurePath* : Text ; *dataPath* : Text {; *archiveFolder* : Text {; *option* : Integer {; *method* : Text}}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| structurePath | Text | → | ストラクチャーファイルのパス名 |
-| dataPath | Text | → | 圧縮するデータファイルのパス名 |
-| archiveFolder | Text | → | 元のデータファイルを置く、フォルダーのパス名 |
-| option | Integer | → | 圧縮オプション |
-| method | Text | → | 4Dコールバックメソッド名 |
+| structurePath | Text | → | ストラクチャーファイルのパス名 |
+| dataPath | Text | → | 圧縮するデータファイルのパス名 |
+| archiveFolder | Text | → | 元のデータファイルを置く、フォルダーのパス名 |
+| option | Integer | → | 圧縮オプション |
+| method | Text | → | 4Dコールバックメソッド名 |
| 戻り値 | Text | ← | 元のデータファイルが置かれたフォルダーの完全パス名 |
@@ -74,7 +74,7 @@ Timestamp log file nameオプションを渡していた場合、ログファイ
| | |
| --- | --- |
| コマンド番号 | 937 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
index 82a0c096c5cb78..b2977c66e719e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
@@ -5,13 +5,13 @@ slug: /commands/compare-strings
displayed_sidebar: docs
---
-**Compare strings** ( *aString* ; *bString* {; *options*} ) : Integer
+**Compare strings** ( *aString* : Text ; *bString* : Text {; *options* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aString | Text | → | 比較する文字列 |
-| bString | Text | → | 比較する文字列 |
-| options | Integer | → | 比較ルール |
+| aString | Text | → | 比較する文字列 |
+| bString | Text | → | 比較する文字列 |
+| options | Integer | → | 比較ルール |
| 戻り値 | Integer | ← | 文字列比較の結果 |
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1756 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
index a071d254e7a6a6..bb978fd974c59a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
@@ -5,7 +5,7 @@ slug: /commands/component-list
displayed_sidebar: docs
---
-**COMPONENT LIST** ( *componentsArray* )
+**COMPONENT LIST** ( *componentsArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1001 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
index c4e38150f832d4..6789b75ab3bb55 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
@@ -5,12 +5,12 @@ slug: /commands/compress-blob
displayed_sidebar: docs
---
-**COMPRESS BLOB** ( *BLOB* {; *compression*} )
+**COMPRESS BLOB** ( *BLOB* : Blob {; *compression* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 圧縮するBLOB |
-| compression | Integer | → | 省略されない場合: 1, 圧縮率優先で圧縮 2, 速度優先で圧縮 |
+| Blob | Blob | → | 圧縮するBLOB |
+| compression | Integer | → | 省略されない場合: 1, 圧縮率優先で圧縮 2, 速度優先で圧縮 |
@@ -97,7 +97,7 @@ BLOBが正しく圧縮されると、システム変数OKは1に設定されま
| | |
| --- | --- |
| コマンド番号 | 534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
index b86bc320460467..28caf45c0a5f5d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
@@ -5,13 +5,13 @@ slug: /commands/confirm
displayed_sidebar: docs
---
-**CONFIRM** ( *message* {; OK button title {; cancel button title}} )
+**CONFIRM** ( *message* : Text {; OK button title {; cancel button title}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | 確認ダイアログボックスに表示するメッセージ |
-| OK button title | 文字 | → | OKボタンのタイトル |
-| cancel button title | 文字 | → | キャンセルボタンのタイトル |
+| message | Text | → | 確認ダイアログボックスに表示するメッセージ |
+| OK button title | 文字 | → | OKボタンのタイトル |
+| cancel button title | 文字 | → | キャンセルボタンのタイトル |
@@ -96,7 +96,7 @@ Windowsにおいて以下のような確認ダイアログボックスを表示
| | |
| --- | --- |
| コマンド番号 | 162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
index c4c0f39ab36cde..028a6775879bec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 713 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
index 988278c70b8503..ab8dd604a5a7b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
@@ -5,16 +5,14 @@ slug: /commands/convert-coordinates
displayed_sidebar: docs
---
-**CONVERT COORDINATES** ( *xCoord* ; *yCoord* ; *from* ; *to* )
+**CONVERT COORDINATES** ( *xCoord* : Integer ; *yCoord* : Integer ; *from* : Integer ; *to* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| xCoord | Integer | → | 点の水平方向の座標(変換前) |
-| ← | 点の水平方向の座標(変換後) |
-| yCoord | Integer | → | 点の垂直方向の座標(変換前) |
-| ← | 点の垂直方向の座標(変換後) |
-| from | Integer | → | 変換前の座標系 |
-| to | Integer | → | 変換後の座標系 |
+| xCoord | Integer | ↔ | *in:* Horizontal coordinate of a point (initial)
*out:* Horizontal coordinate of a point (converted) |
+| yCoord | Integer | ↔ | *in:* Vertical coordinate of a point (initial)
*out:* Vertical coordinate of a point (converted) |
+| from | Integer | → | 変換前の座標系 |
+| to | Integer | → | 変換後の座標系 |
@@ -90,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1365 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
index 1b34862147a6d2..b2237bbeb41aab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-from-text
displayed_sidebar: docs
---
-**CONVERT FROM TEXT** ( *4Dtext* ; *charSet* ; *convertedBLOB* )
+**CONVERT FROM TEXT** ( *4Dtext* : Text ; *charSet* : Text, Integer ; *convertedBLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| 4Dtext | Text | → | 現在の4Dの文字セットで記述されているテキスト |
-| charSet | Text, Integer | → | 文字セットの番号または名前 |
+| 4Dtext | Text | → | 現在の4Dの文字セットで記述されているテキスト |
+| charSet | Text, Integer | → | 文字セットの番号または名前 |
| convertedBlob | Blob | ← | 変換されたテキストを含むBLOB |
@@ -196,7 +196,7 @@ CONVERT FROM TEXTと[Convert to text](convert-to-text.md "Convert to text")コ
| | |
| --- | --- |
| コマンド番号 | 1011 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
index 20aa66e9851bd2..b331bd5e0db196 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-posix-to-system
displayed_sidebar: docs
---
-**Convert path POSIX to system** ( *posixPath* {; *} ) : Text
+**Convert path POSIX to system** ( *posixPath* : Text {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| posixPath | Text | → | POSIXパス名 |
-| * | 演算子 | → | エンコーディングオプション |
+| posixPath | Text | → | POSIXパス名 |
+| * | 演算子 | → | エンコーディングオプション |
| 戻り値 | Text | ← | システムシンタックスで表現されたパス名 |
@@ -60,6 +60,6 @@ Windowsでの例題:
| | |
| --- | --- |
| コマンド番号 | 1107 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
index 561f34cef1603f..57e433307ff907 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-system-to-posix
displayed_sidebar: docs
---
-**Convert path system to POSIX** ( *systemPath* {; *} ) : Text
+**Convert path system to POSIX** ( *systemPath* : Text {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| systemPath | Text | → | システムシンタックスで表現された、相対または絶対パス名 |
-| * | 演算子 | → | エンコーディングオプション |
+| systemPath | Text | → | システムシンタックスで表現された、相対または絶対パス名 |
+| * | 演算子 | → | エンコーディングオプション |
| 戻り値 | Text | ← | POSIX (Unix) シンタックスで表現されたパス名 |
@@ -67,6 +67,6 @@ Windowsでの例題
| | |
| --- | --- |
| コマンド番号 | 1106 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
index 9e41c3c2662f86..1b832e0d97eb72 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
@@ -5,14 +5,13 @@ slug: /commands/convert-picture
displayed_sidebar: docs
---
-**CONVERT PICTURE** ( *picture* ; *codec* {; *compression*} )
+**CONVERT PICTURE** ( *picture* : Picture ; *codec* : Text {; *compression* : Real} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | 変換するピクチャ |
-| ← | 変換されたピクチャ |
-| codec | Text | → | ピクチャCodec ID |
-| compression | Real | → | 圧縮の品質 |
+| picture | Picture | ↔ | *in:* Picture to be converted
*out:* Converted picture |
+| codec | Text | → | ピクチャCodec ID |
+| compression | Real | → | 圧縮の品質 |
@@ -53,6 +52,6 @@ vpPhoto ピクチャをjpegフォーマットに変換:
| | |
| --- | --- |
| コマンド番号 | 1002 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
index 63d8698db7c1d7..d16b228cf6e5e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-to-text
displayed_sidebar: docs
---
-**Convert to text** ( *BLOB* ; *charSet* ) : Text
+**Convert to text** ( *BLOB* : Blob ; *charSet* : Text, Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 特定の文字セットで記述されている テキストを含むBLOB |
-| charSet | Text, Integer | → | BLOB文字セットの番号または名前 |
+| Blob | Blob | → | 特定の文字セットで記述されている テキストを含むBLOB |
+| charSet | Text, Integer | → | BLOB文字セットの番号または名前 |
| 戻り値 | Text | ← | 4Dの文字セットで表現されたBLOBの内容 |
@@ -36,7 +36,7 @@ Convert to textはByte Order Marks (BOM) をサポートします。指定され
| | |
| --- | --- |
| コマンド番号 | 1012 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
index 0c0ea7c4e2a18f..0e094b8eb67323 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
@@ -5,11 +5,11 @@ slug: /commands/copy-array
displayed_sidebar: docs
---
-**COPY ARRAY** ( *source* ; *destination* )
+**COPY ARRAY** ( *source* : Array ; *destination* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Array | → | コピー元の配列 |
+| source | Array | → | コピー元の配列 |
| destination | Array | ← | コピー先の配列 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
index 586c3e2750da89..eec950fe1c653a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
@@ -5,15 +5,15 @@ slug: /commands/copy-blob
displayed_sidebar: docs
---
-**COPY BLOB** ( *srcBLOB* ; *dstBLOB* ; *srcOffset* ; *dstOffset* ; *len* )
+**COPY BLOB** ( *srcBLOB* : Blob ; *dstBLOB* : Blob ; *srcOffset* : Integer ; *dstOffset* : Integer ; *len* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| srcBlob | Blob | → | コピー元BLOB |
-| dstBlob | Blob | → | コピー先BLOB |
-| srcOffset | Integer | → | コピー元のコピー開始位置 |
-| dstOffset | Integer | → | コピー先のコピー開始位置 |
-| len | Integer | → | コピーするバイト数 |
+| srcBlob | Blob | → | コピー元BLOB |
+| dstBlob | Blob | → | コピー先BLOB |
+| srcOffset | Integer | → | コピー元のコピー開始位置 |
+| dstOffset | Integer | → | コピー先のコピー開始位置 |
+| len | Integer | → | コピーするバイト数 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 558 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
index 797d2837de656b..577a6669d9b692 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
@@ -5,14 +5,14 @@ slug: /commands/copy-document
displayed_sidebar: docs
---
-**COPY DOCUMENT** ( *sourceName* ; *destinationName* {; *newName*} {; *} )
+**COPY DOCUMENT** ( *sourceName* : Text ; *destinationName* : Text {; *newName* : Text} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| sourceName | Text | → | コピーするファイルやフォルダーのパス名 |
-| destinationName | Text | → | ファイルやフォルダーコピーの配置先名またはパス名 |
-| newName | Text | → | コピーされたファイルまたはフォルダの新しい名前 |
-| * | 演算子 | → | 存在する場合、既存のドキュメントを上書きする |
+| sourceName | Text | → | コピーするファイルやフォルダーのパス名 |
+| destinationName | Text | → | ファイルやフォルダーコピーの配置先名またはパス名 |
+| newName | Text | → | コピーされたファイルまたはフォルダの新しい名前 |
+| * | 演算子 | → | 存在する場合、既存のドキュメントを上書きする |
@@ -126,7 +126,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 541 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
index 8e09f046946091..7812ce349b2dc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
@@ -5,11 +5,11 @@ slug: /commands/copy-list
displayed_sidebar: docs
---
-**Copy list** ( *list* ) : Integer
+**Copy list** ( *list* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | コピーするリストの参照 |
+| list | Integer | → | コピーするリストの参照 |
| 戻り値 | Integer | ← | 複製されたリストのリスト参照番号 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 626 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
index 192a3092576ab3..cba52246b9ac7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/copy-named-selection
displayed_sidebar: docs
---
-**COPY NAMED SELECTION** ( {*aTable* ;} *name* )
+**COPY NAMED SELECTION** ( {*aTable* : Table ;} *name* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションをコピーするテーブル, または 省略した場合デフォルトテーブル |
-| name | Text | → | 作成する命名セレクションの名前 |
+| aTable | Table | → | セレクションをコピーするテーブル, または 省略した場合デフォルトテーブル |
+| name | Text | → | 作成する命名セレクションの名前 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
index ae373da7ac2aed..8019886d82e8a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
@@ -5,11 +5,11 @@ slug: /commands/copy-parameters
displayed_sidebar: docs
---
-**Copy parameters** {( *startFrom* )} : Collection
+**Copy parameters** ( *startFrom* : Integer ) : Collection
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| startFrom | Integer | → | 開始インデックス(指定した引数含む) |
+| startFrom | Integer | → | 開始インデックス(指定した引数含む) |
| 戻り値 | Collection | ← | 実際に渡された引数を格納した新しいコレクション |
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1790 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
index ba340a961cf76e..7053385c16d4e5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
@@ -5,12 +5,12 @@ slug: /commands/copy-set
displayed_sidebar: docs
---
-**COPY SET** ( *srcSet* ; *dstSet* )
+**COPY SET** ( *srcSet* : Text ; *dstSet* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| srcSet | Text | → | コピー元のセット名 |
-| dstSet | Text | → | コピー先セット名 |
+| srcSet | Text | → | コピー元のセット名 |
+| dstSet | Text | → | コピー先セット名 |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 600 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
index 6581e359e2f9be..61eb6d34c16bc4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
@@ -5,11 +5,11 @@ slug: /commands/cos
displayed_sidebar: docs
---
-**Cos** ( *number* ) : Real
+**Cos** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | コサインを求めるラジアン値 |
+| number | Real | → | コサインを求めるラジアン値 |
| 戻り値 | Real | ← | コサイン値 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 18 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
index dda78e04e03b47..567a9c0c86f226 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
@@ -5,12 +5,12 @@ slug: /commands/count-in-array
displayed_sidebar: docs
---
-**Count in array** ( *array* ; *value* ) : Integer
+**Count in array** ( *array* : Array ; *value* : Expression ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | カウントを行う配列 |
-| value | Expression | → | カウントする値 |
+| array | Array | → | カウントを行う配列 |
+| value | Expression | → | カウントする値 |
| 戻り値 | Integer | ← | 見つかったインスタンスの数 |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 907 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
index 67bb90b85b1ee8..49a59a1cd8d0fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
@@ -5,13 +5,13 @@ slug: /commands/count-list-items
displayed_sidebar: docs
---
-**Count list items** ( {* ;} *list* {; *} ) : Integer
+**Count list items** ( {* ;} *list* : Integer, Text {; *} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 渡された場合, listはオブジェクト名 (文字列) 省略すると, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* が省略された場合), または リストタイプオブジェクト名 (* が渡された場合) |
-| * | 演算子 | → | 省略すると (デフォルト): 表示されたリスト項目を返す (展開) 指定すると: すべてのリスト項目を返す |
+| * | 演算子 | → | 渡された場合, listはオブジェクト名 (文字列) 省略すると, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* が省略された場合), または リストタイプオブジェクト名 (* が渡された場合) |
+| * | 演算子 | → | 省略すると (デフォルト): 表示されたリスト項目を返す (展開) 指定すると: すべてのリスト項目を返す |
| 戻り値 | Integer | ← | (展開されて) 表示中のリスト項目数 (2番目の * が省略された場合) またはリスト項目の総数 (2番目の * が指定された場合) |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 380 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
index 0e4f61d6b06db8..0edddf6108f4e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
@@ -5,12 +5,12 @@ slug: /commands/count-menu-items
displayed_sidebar: docs
---
-**Count menu items** ( *menu* {; *process*} ) : Integer
+**Count menu items** ( *menu* : Integer, Text {; *process* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Integer | ← | メニュー中のメニュー項目数 |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 405 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
index f4853166431192..a6f6cc80ad98f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
@@ -5,11 +5,11 @@ slug: /commands/count-menus
displayed_sidebar: docs
---
-**Count menus** {( *process* )} : Integer
+**Count menus** ( *process* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス参照番号 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Integer | ← | カレントメニューバー中のメニュー数 |
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 404 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
index 09cd2c71e66138..48921ae87ef60b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ MyMethod内でCount parametersを使用し、実際の引数の数を取得し
| | |
| --- | --- |
| コマンド番号 | 259 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
index f7f9d877523cf7..0ed15edb6f2c2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 437 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
index 8ee9bd905fba91..fe2f70bed8d4cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 335 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
index af2ce8ce33d618..c49786eecd3bc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
@@ -30,6 +30,6 @@ Count user processesは、ユーザが直接あるいは間接に開いたプロ
| | |
| --- | --- |
| コマンド番号 | 343 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
index 41dbff2df7cdfc..56e3fc37800c0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 342 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
index be8c65dab8bb81..905d6d1a46d8c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
@@ -5,12 +5,12 @@ slug: /commands/create-alias
displayed_sidebar: docs
---
-**CREATE ALIAS** ( *targetPath* ; *aliasPath* )
+**CREATE ALIAS** ( *targetPath* : Text ; *aliasPath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetPath | Text | → | エイリアス/ショートカットターゲットのアクセスパスまたは名前 |
-| aliasPath | Text | → | エイリアスまたはショートカットの完全なパス名または名前 |
+| targetPath | Text | → | エイリアス/ショートカットターゲットのアクセスパスまたは名前 |
+| aliasPath | Text | → | エイリアスまたはショートカットの完全なパス名または名前 |
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 694 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
index 3bea36dcfaf2a6..3a4636d4833b4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/create-data-file
displayed_sidebar: docs
---
-**CREATE DATA FILE** ( *accessPath* )
+**CREATE DATA FILE** ( *accessPath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| accessPath | Text | → | 作成するデータファイルの名前または完全パス名 |
+| accessPath | Text | → | 作成するデータファイルの名前または完全パス名 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
index 08554709af78dc..8e73002f0879ed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
@@ -5,12 +5,12 @@ slug: /commands/create-document
displayed_sidebar: docs
---
-**Create document** ( *document* {; *fileType*} ) : Time
+**Create document** ( *document* : Text {; *fileType* : Text} ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名、または 完全なドキュメントのパス名、または 標準ファイルダイアログボックスの空の文字列 |
-| fileType | Text | → | スクリーンされるドキュメントタイプのリスト、または ドキュメントをスクリーンしない場合 "*" |
+| document | Text | → | ドキュメント名、または 完全なドキュメントのパス名、または 標準ファイルダイアログボックスの空の文字列 |
+| fileType | Text | → | スクリーンされるドキュメントタイプのリスト、または ドキュメントをスクリーンしない場合 "*" |
| 戻り値 | Time | ← | ドキュメント参照番号 |
@@ -75,7 +75,7 @@ Windowsでは、Windowsのファイル拡張子を渡すか、*\_o\_MAP FILE TYP
| | |
| --- | --- |
| コマンド番号 | 266 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
index bd8dced4f68deb..60508b49d5a262 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-empty-set
displayed_sidebar: docs
---
-**CREATE EMPTY SET** ( {*aTable* ;} *set* )
+**CREATE EMPTY SET** ( {*aTable* : Table ;} *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 空のセットを作成するテーブル, または 省略時、デフォルトテーブル |
-| set | Text | → | 新しい空のセットの名前 |
+| aTable | Table | → | 空のセットを作成するテーブル, または 省略時、デフォルトテーブル |
+| set | Text | → | 新しい空のセットの名前 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 140 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
index 944f8d9e965db6..e15a1cac4fbb89 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
@@ -5,12 +5,12 @@ slug: /commands/create-folder
displayed_sidebar: docs
---
-**CREATE FOLDER** ( *folderPath* {; *} )
+**CREATE FOLDER** ( *folderPath* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folderPath | Text | → | 作成する新しいフォルダーのパス名 |
-| * | 演算子 | → | パス中に存在しないフォルダーを作成する |
+| folderPath | Text | → | 作成する新しいフォルダーのパス名 |
+| * | 演算子 | → | パス中に存在しないフォルダーを作成する |
@@ -77,7 +77,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 475 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
index e1d42f565d26c3..0863e4eaef6622 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
@@ -5,15 +5,15 @@ slug: /commands/create-index
displayed_sidebar: docs
---
-**CREATE INDEX** ( *aTable* ; *fieldsArray* ; *indexType* ; *indexName* {; *} )
+**CREATE INDEX** ( *aTable* : Table ; *fieldsArray* : Pointer array ; *indexType* : Integer ; *indexName* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | インデックスを作成するためのテーブル |
-| fieldsArray | Pointer array | → | インデックスされるフィールドへのポインタ |
-| indexType | Integer | → | 作成されるインデックスのタイプ: -1 = キーワード、 0 = デフォルト、 1 = 標準 B-Tree、 3 = クラスタ B-Tree |
-| indexName | Text | → | 作成するインデックスの名前 |
-| * | 演算子 | → | 渡されると = 非同期インデックス |
+| aTable | Table | → | インデックスを作成するためのテーブル |
+| fieldsArray | Pointer array | → | インデックスされるフィールドへのポインタ |
+| indexType | Integer | → | 作成されるインデックスのタイプ: -1 = キーワード、 0 = デフォルト、 1 = 標準 B-Tree、 3 = クラスタ B-Tree |
+| indexName | Text | → | 作成するインデックスの名前 |
+| * | 演算子 | → | 渡されると = 非同期インデックス |
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 966 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
index 6e6d83718aae1c..015fc14e73b2c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
@@ -5,11 +5,11 @@ slug: /commands/create-menu
displayed_sidebar: docs
---
-**Create menu** {( *menu* )} : Text
+**Create menu** ( *menu* : Text, Integer, Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Text, Integer, Text | → | メニュー参照 または 番号 または メニューバー名 |
+| menu | Text, Integer, Text | → | メニュー参照 または 番号 または メニューバー名 |
| 戻り値 | Text | ← | メニュー参照 |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
index b78271d4a9db7e..8683ee12c644ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
@@ -5,11 +5,11 @@ slug: /commands/create-record
displayed_sidebar: docs
---
-**CREATE RECORD** {( *aTable* )}
+**CREATE RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 新規レコードを作成するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | 新規レコードを作成するテーブル, または 省略時、デフォルトテーブル |
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 68 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
index 9947360b44e13a..0f54abbfe01d4f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/create-related-one
displayed_sidebar: docs
---
-**CREATE RELATED ONE** ( *aField* )
+**CREATE RELATED ONE** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | nフィールド |
+| aField | Field | → | nフィールド |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 65 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
index 3964aec7381660..94c1df3c1b747c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-selection-from-array
displayed_sidebar: docs
---
-**CREATE SELECTION FROM ARRAY** ( *aTable* ; *recordArray* {; *selectionName*} )
+**CREATE SELECTION FROM ARRAY** ( *aTable* : Table ; *recordArray* : Integer, Boolean array {; *selectionName* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションを作成するテーブル |
-| recordArray | Integer, Boolean array | → | レコード番号の配列, または ブール配列 (True = レコードをセレクションに含める False = レコードをセレクションに含めない) |
-| selectionName | Text | → | 作成する命名セレクションの名前, または 引数を省略した場合、コマンドをカレント セレクションに適用する |
+| aTable | Table | → | セレクションを作成するテーブル |
+| recordArray | Integer, Boolean array | → | レコード番号の配列, または ブール配列 (True = レコードをセレクションに含める False = レコードをセレクションに含めない) |
+| selectionName | Text | → | 作成する命名セレクションの名前, または 引数を省略した場合、コマンドをカレント セレクションに適用する |
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 640 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
index 6096227ded4bca..efc25fd3eea0d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-set-from-array
displayed_sidebar: docs
---
-**CREATE SET FROM ARRAY** ( *aTable* ; *recordsArray* {; *setName*} )
+**CREATE SET FROM ARRAY** ( *aTable* : Table ; *recordsArray* : Integer, Boolean array {; *setName* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セットのテーブル |
-| recordsArray | Integer, Boolean array | → | レコード番号配列、または ブール配列 (True = レコードはセットに含まれる, False = レコードはセットに含まれない) |
-| setName | Text | → | 作成するセットの名前, または 省略時、UserSetに適用する |
+| aTable | Table | → | セットのテーブル |
+| recordsArray | Integer, Boolean array | → | レコード番号配列、または ブール配列 (True = レコードはセットに含まれる, False = レコードはセットに含まれない) |
+| setName | Text | → | 作成するセットの名前, または 省略時、UserSetに適用する |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 641 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
index 1ea0a4f22bd72e..bbeb522ebe5e5c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-set
displayed_sidebar: docs
---
-**CREATE SET** ( {*aTable* ;} *set* )
+**CREATE SET** ( {*aTable* : Table ;} *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションからセットを作成するテーブル、または 省略時、デフォルトテーブル |
-| set | Text | → | 新規に作成するセットの名前 |
+| aTable | Table | → | セレクションからセットを作成するテーブル、または 省略時、デフォルトテーブル |
+| set | Text | → | 新規に作成するセットの名前 |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 116 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
index 500f6b4f02d6fc..73b596044abe11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
@@ -5,16 +5,16 @@ slug: /commands/create-thumbnail
displayed_sidebar: docs
---
-**CREATE THUMBNAIL** ( *source* ; *dest* {; *width* {; *height* {; *mode* {; *depth*}}}} )
+**CREATE THUMBNAIL** ( *source* : Picture ; *dest* : Picture {; *width* : Integer {; *height* : Integer {; *mode* : Integer {; *depth* : Integer}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Picture | → | サムネイルに変換する4Dピクチャフィールド または変数 |
+| source | Picture | → | サムネイルに変換する4Dピクチャフィールド または変数 |
| dest | Picture | ← | 結果のサムネイル |
-| width | Integer | → | サムネイル幅 (ピクセル), デフォルト値 = 48 |
-| height | Integer | → | サムネイル高 (ピクセル), デフォルト値 = 48 |
-| mode | Integer | → | サムネイル作成モード デフォルト値 = Scaled to fit prop centered (6) |
-| depth | Integer | → | 廃止。使用しないでください |
+| width | Integer | → | サムネイル幅 (ピクセル), デフォルト値 = 48 |
+| height | Integer | → | サムネイル高 (ピクセル), デフォルト値 = 48 |
+| mode | Integer | → | サムネイル作成モード デフォルト値 = Scaled to fit prop centered (6) |
+| depth | Integer | → | 廃止。使用しないでください |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 679 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
index 3b8d769a9d15e0..4306e4e0a5af42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
@@ -5,7 +5,7 @@ slug: /commands/current-client-authentication
displayed_sidebar: docs
---
-**Current client authentication** {( *domain* ; *protocol* )} : Text
+**Current client authentication** ( *domain* : Text ; *protocol* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -79,6 +79,6 @@ Windows セッションのログインに基づいてクライアントにアク
| | |
| --- | --- |
| コマンド番号 | 1355 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
index e2feadb8b6b38a..4913c21c3aae6d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
@@ -5,11 +5,11 @@ slug: /commands/current-date
displayed_sidebar: docs
---
-**Current date** {( * )} : Date
+**Current date** ( * ) : Date
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | サーバの日付を返す |
+| * | 演算子 | → | サーバの日付を返す |
| 戻り値 | Date | ← | 現在の日付 |
@@ -103,6 +103,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 33 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
index cdcc4f04f0e721..4768fec320c80d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 363 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
index c8e5dcda360f97..e22b048ad233e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
index bfaaf45661f508..1fc8652e8d53d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 627 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
index 697b28538ff998..61fee595de5f54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 827 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
index 16c253ac3c33af..a9b072e554b13b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 483 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
index 318b4fb8f5bc55..0b5c0b9907cbea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 684 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
index 1a633a40d60d67..5350e5a2678d25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1201 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
index c406f6a04e4de6..e94bed87f571b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
index 0bf47168782113..95bcc6823e937f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 322 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
index 38d705f65d1774..45913c1522ede3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 484 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
index c871d99d787150..135b99ca1a2ed3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
@@ -5,11 +5,11 @@ slug: /commands/current-time
displayed_sidebar: docs
---
-**Current time** {( * )} : Time
+**Current time** ( * ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | サーバの時刻を返す |
+| * | 演算子 | → | サーバの時刻を返す |
| 戻り値 | Time | ← | 現在の時刻 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 178 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
index bb2bad88c87932..f81cc6e6ff37e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
@@ -5,11 +5,11 @@ slug: /commands/current-user
displayed_sidebar: docs
---
-**Current user** {( *user* )} : Text
+**Current user** ( *user* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| user | Integer | → | ユーザーエイリアスまたは4Dユーザーアカウント |
+| user | Integer | → | ユーザーエイリアスまたは4Dユーザーアカウント |
| 戻り値 | Text | ← | カレントユーザのユーザ名 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 182 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
index 03600bfe2dc729..bb1bcd8a30bdee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/cut-named-selection
displayed_sidebar: docs
---
-**CUT NAMED SELECTION** ( {*aTable* ;} *name* )
+**CUT NAMED SELECTION** ( {*aTable* : Table ;} *name* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションをカットするテーブル, または 省略した場合デフォルトテーブル |
-| name | Text | → | 作成する命名セレクションの名前 |
+| aTable | Table | → | セレクションをカットするテーブル, または 省略した場合デフォルトテーブル |
+| name | Text | → | 作成する命名セレクションの名前 |
@@ -42,7 +42,7 @@ CUT NAMED SELECTIONは[COPY NAMED SELECTION](copy-named-selection.md "COPY NAMED
| | |
| --- | --- |
| コマンド番号 | 334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
index bd88dba43b8f82..768986104c8c0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| structurePath | Text | → | チェックする4Dストラクチャーファイルへのパス名 |
-| dataPath | Text | → | チェックするデータファイルへのパス名 |
+| structurePath | Text | → | チェックする4Dストラクチャーファイルへのパス名 |
+| dataPath | Text | → | チェックするデータファイルへのパス名 |
| 戻り値 | Object | ← | データファイルとそれぞれのテーブルの暗号化についての情報 |
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1609 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
index 9aa62526a90285..6f08cf38c84efa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
@@ -5,11 +5,11 @@ slug: /commands/data-file
displayed_sidebar: docs
---
-**Data file** {( *segment* )} : Text
+**Data file** ( *segment* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| segment | Integer | → | 廃止、使用されません |
+| segment | Integer | → | 廃止、使用されません |
| 戻り値 | Text | ← | データベースのデータファイルのロング名 |
@@ -38,6 +38,6 @@ Macintosh上
| | |
| --- | --- |
| コマンド番号 | 490 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
index 9e69b034c5b312..c9b2f7b2c27821 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
@@ -5,11 +5,11 @@ slug: /commands/database-measures
displayed_sidebar: docs
---
-**Database measures** {( *options* )} : Object
+**Database measures** ( *options* : Object ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| options | Object | → | 戻り値を指定するオプション |
+| options | Object | → | 戻り値を指定するオプション |
| 戻り値 | Object | ← | データベースの計測値を含んだオブジェクト |
@@ -335,6 +335,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md
index 205f9bbf7cc2ad..598024e0ea5d74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/date.md
@@ -5,11 +5,11 @@ slug: /commands/date
displayed_sidebar: docs
---
-**Date** ( *expression* ) : Date
+**Date** ( *expression* : Text, Date ) : Date
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| expression | Text, Date | → | 日付を表す文字列か、日付型の式 |
+| expression | Text, Date | → | 日付を表す文字列か、日付型の式 |
| 戻り値 | Date | ← | 日付 |
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 102 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
index 53408c1e261281..94744ef16bf9c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
@@ -5,11 +5,11 @@ slug: /commands/day-number
displayed_sidebar: docs
---
-**Day number** ( *aDate* ) : Integer
+**Day number** ( *aDate* : Date ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aDate | Date | → | 曜日に対応する数値を得る日付 |
+| aDate | Date | → | 曜日に対応する数値を得る日付 |
| 戻り値 | Integer | ← | 曜日を示す数値 |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 114 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
index 88dbb5171797ff..88f543e26f2eea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
@@ -5,11 +5,11 @@ slug: /commands/day-of
displayed_sidebar: docs
---
-**Day of** ( *date* ) : Integer
+**Day of** ( *date* : Date ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| date | Date | → | 日を取り出す日付 |
+| date | Date | → | 日を取り出す日付 |
| 戻り値 | Integer | ← | 日を表す数値 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 23 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
index d97236b18d6c4a..c21cb7dfc992f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 347 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
index 81fb9d71a3eaaf..1153bd8d14779d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
@@ -5,11 +5,11 @@ slug: /commands/dec
displayed_sidebar: docs
---
-**Dec** ( *number* ) : Real
+**Dec** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 小数部を求める数値 |
+| number | Real | → | 小数部を求める数値 |
| 戻り値 | Real | ← | 小数部の数値 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 9 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
index 1739c6d48e0e24..186954bbaf769c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/decrypt-blob
displayed_sidebar: docs
---
-**DECRYPT BLOB** ( *toDecrypt* ; *sendPubKey* {; *recipPrivKey*} )
+**DECRYPT BLOB** ( *toDecrypt* : Blob ; *sendPubKey* : Blob {; *recipPrivKey* : Blob} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| toDecrypt | Blob | ↔ | 復号するデータ |
-||| | 複合されたデータ |
-| sendPubKey | Blob | → | 送信者の公開鍵 |
-| recipPrivKey | Blob | → | 受信者の秘密鍵 |
+| | | | 複合されたデータ |
+| sendPubKey | Blob | → | 送信者の公開鍵 |
+| recipPrivKey | Blob | → | 受信者の秘密鍵 |
@@ -40,6 +40,6 @@ DECRYPT BLOBコマンドは、(意図的かどうかに関わらず)BLOB内
| | |
| --- | --- |
| コマンド番号 | 690 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
index 020519f4d3e932..7981ee291fd715 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/decrypt-data-blob
displayed_sidebar: docs
---
-**Decrypt data BLOB** ( *blobToDecrypt* ; *keyObject* ; *salt* ; *decryptedBLOB* ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* ; *passPhrase* ; *salt* ; *decryptedBLOB* ) : Boolean
+**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *keyObject* : オブジェクト, テキスト ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
**Decrypt data BLOB** ( *blobToDecrypt* : Blob ; *passPhrase* : オブジェクト, テキスト ; *salt* : Integer ; *decryptedBLOB* : Blob ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| blobToDecrypt | Blob | → | 復号化したいBLOB |
-| keyObject | passPhrase | オブジェクト, テキスト | → | 暗号化鍵を格納したJSON オブジェクト、または直接暗号化鍵を生成するためのパスフレーズ(テキスト) |
-| salt | Integer | → | アルゴリズムのための追加のsalt |
+| blobToDecrypt | Blob | → | 復号化したいBLOB |
+| keyObject | passPhrase | オブジェクト, テキスト | → | 暗号化鍵を格納したJSON オブジェクト、または直接暗号化鍵を生成するためのパスフレーズ(テキスト) |
+| salt | Integer | → | アルゴリズムのための追加のsalt |
| decryptedBlob | Blob | ← | 復号化されたBLOB |
| 戻り値 | Boolean | ← | 復号化が正常に実行された場合にはTrue、それ以外の場合にはFalse |
@@ -65,6 +65,6 @@ BLOB を復号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1774 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
index 46cd649a9ae948..d1fa25d1752520 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
@@ -5,11 +5,11 @@ slug: /commands/default-table
displayed_sidebar: docs
---
-**DEFAULT TABLE** ( *aTable* )
+**DEFAULT TABLE** ( *aTable* : Table )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | デフォルトとして設定するテーブル |
+| aTable | Table | → | デフォルトとして設定するテーブル |
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 46 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
index 97514f2a2b2d03..ee7bd8dc0b9ff1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
@@ -5,12 +5,12 @@ slug: /commands/delay-process
displayed_sidebar: docs
---
-**DELAY PROCESS** ( *process* ; *duration* )
+**DELAY PROCESS** ( *process* : Integer ; *duration* : Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス番号 |
-| duration | Real | → | 遅延時間 (tick) |
+| process | Integer | → | プロセス番号 |
+| duration | Real | → | 遅延時間 (tick) |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 323 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
index a7124ccff2e5c4..8cf75ca74f6f1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
@@ -5,11 +5,11 @@ slug: /commands/delete-document
displayed_sidebar: docs
---
-**DELETE DOCUMENT** ( *document* )
+**DELETE DOCUMENT** ( *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名、または 完全なドキュメントのパス名 |
+| document | Text | → | ドキュメント名、または 完全なドキュメントのパス名 |
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
index 6d761fd5d41f72..31065b1d55e3f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
@@ -5,12 +5,12 @@ slug: /commands/delete-folder
displayed_sidebar: docs
---
-**DELETE FOLDER** ( *folder* {; *deleteOption*} )
+**DELETE FOLDER** ( *folder* : Text {; *deleteOption* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folder | Text | → | 削除されるフォルダーの名称またはフルパス |
-| deleteOption | Integer | → | フォルダー削除オプション |
+| folder | Text | → | 削除されるフォルダーの名称またはフルパス |
+| deleteOption | Integer | → | フォルダー削除オプション |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 693 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
index e69021cb2526fe..49a70537a7b098 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-array
displayed_sidebar: docs
---
-**DELETE FROM ARRAY** ( *array* ; *where* {; *howMany*} )
+**DELETE FROM ARRAY** ( *array* : Array ; *where* : Integer {; *howMany* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 要素を削除する配列 |
-| where | Integer | → | 削除を開始する要素番号 |
-| howMany | Integer | → | 削除する要素数, または 省略時は1要素 |
+| array | Array | → | 要素を削除する配列 |
+| where | Integer | → | 削除を開始する要素番号 |
+| howMany | Integer | → | 削除する要素数, または 省略時は1要素 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
index 8046219a7de6e8..3041adaed472f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-blob
displayed_sidebar: docs
---
-**DELETE FROM BLOB** ( *BLOB* ; *offset* ; *len* )
+**DELETE FROM BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *len* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | バイト列を削除するBLOB |
-| offset | Integer | → | バイト削除開始位置 |
-| len | Integer | → | 削除するバイト数 |
+| Blob | Blob | → | バイト列を削除するBLOB |
+| offset | Integer | → | バイト削除開始位置 |
+| len | Integer | → | 削除するバイト数 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 560 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
index ae582acc799ac6..be747898bdc2b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
@@ -5,14 +5,14 @@ slug: /commands/delete-from-list
displayed_sidebar: docs
---
-**DELETE FROM LIST** ( {* ;} *list* ; itemRef | * {; *} )
+**DELETE FROM LIST** ( * ; *list* : Text ; *itemRef* : Integer, Operator {; *} )
**DELETE FROM LIST** ( *list* : Integer ; *itemRef* : Integer, Operator {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定した場合, listはオブジェクト名 (文字列) 省略した場合, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* が省略された場合), または リストタイプオブジェクト名 (* を渡した場合) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0 はリストに最後に追加された項目 または * 現在選択されているリスト項目 |
-| * | Operator | → | 指定した場合, サブリストがあればそれもメモリから消去 省略した場合, サブリストがあってもそれを消去しない |
+| * | 演算子 | → | 指定した場合, listはオブジェクト名 (文字列) 省略した場合, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* が省略された場合), または リストタイプオブジェクト名 (* を渡した場合) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0 はリストに最後に追加された項目 または * 現在選択されているリスト項目 |
+| * | Operator | → | 指定した場合, サブリストがあればそれもメモリから消去 省略した場合, サブリストがあってもそれを消去しない |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 624 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
index 2841472f3afcbf..225d921b73c32d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
@@ -5,12 +5,12 @@ slug: /commands/delete-index
displayed_sidebar: docs
---
-**DELETE INDEX** ( *fieldPtr* {; *} )
**DELETE INDEX** ( *indexName* {; *} )
+**DELETE INDEX** ( *fieldPtr* : ポインター, 文字 {; *} )
**DELETE INDEX** ( *indexName* : ポインター, 文字 {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldPtr | indexName | ポインター, 文字 | → | インデックスを削除するフィールドを指すポインタ 削除されるインデックスの名前 |
-| * | 演算子 | → | 渡されると = 非同期オペレーション |
+| fieldPtr | indexName | ポインター, 文字 | → | インデックスを削除するフィールドを指すポインタ 削除されるインデックスの名前 |
+| * | 演算子 | → | 渡されると = 非同期オペレーション |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 967 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
index 1379e76b620b82..58206c67549544 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/delete-menu-item
displayed_sidebar: docs
---
-**DELETE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**DELETE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス参照番号 |
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 413 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
index 702660b0dc4d81..31d63de2221ec2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
@@ -5,11 +5,11 @@ slug: /commands/delete-record
displayed_sidebar: docs
---
-**DELETE RECORD** {( *aTable* )}
+**DELETE RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを削除するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードを削除するテーブル, または 省略時、デフォルトテーブル |
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 58 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
index 5329045d9a16a5..64fbde2a5dfbf7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
@@ -5,11 +5,11 @@ slug: /commands/delete-selection
displayed_sidebar: docs
---
-**DELETE SELECTION** {( *aTable* )}
+**DELETE SELECTION** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントセレクションを削除するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントセレクションを削除するテーブル, または 省略時、デフォルトテーブル |
@@ -71,7 +71,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 66 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
index dc1636a8e935af..273762a093a9a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
@@ -5,13 +5,13 @@ slug: /commands/delete-string
displayed_sidebar: docs
---
-**Delete string** ( *source* ; *where* ; *numChars* ) : Text
+**Delete string** ( *source* : Text ; *where* : Integer ; *numChars* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Text | → | 文字を削除する文字列 |
-| where | Integer | → | 削除開始位置 |
-| numChars | Integer | → | 削除する文字数 |
+| source | Text | → | 文字を削除する文字列 |
+| where | Integer | → | 削除開始位置 |
+| numChars | Integer | → | 削除する文字数 |
| 戻り値 | Text | ← | 結果の文字列 |
@@ -50,6 +50,6 @@ Delete stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
index 1c464fbd4f9596..5d47a3095ffd9b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
@@ -5,11 +5,11 @@ slug: /commands/delete-user
displayed_sidebar: docs
---
-**DELETE USER** ( *userID* )
+**DELETE USER** ( *userID* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userID | Integer | → | 削除するユーザのID番号 |
+| userID | Integer | → | 削除するユーザのID番号 |
@@ -39,7 +39,7 @@ DesignerとAdministratorのみがユーザを削除できます。Administrator
| | |
| --- | --- |
| コマンド番号 | 615 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
index 1070611d21ac78..b890b10f989d6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
@@ -5,11 +5,11 @@ slug: /commands/describe-query-execution
displayed_sidebar: docs
---
-**DESCRIBE QUERY EXECUTION** ( *status* )
+**DESCRIBE QUERY EXECUTION** ( *status* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| status | Boolean | → | True=内部クエリ分析を有効にする, False=内部クエリ分析を無効にする |
+| status | Boolean | → | True=内部クエリ分析を有効にする, False=内部クエリ分析を無効にする |
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| コマンド番号 | 1044 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
index 1ca499137164fa..1a101794e8ace9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
@@ -5,13 +5,13 @@ slug: /commands/difference
displayed_sidebar: docs
---
-**DIFFERENCE** ( *set* ; *subtractSet* ; *resultSet* )
+**DIFFERENCE** ( *set* : Text ; *subtractSet* : Text ; *resultSet* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | セット |
-| subtractSet | Text | → | 取り除くセット |
-| resultSet | Text | → | 結果のセット |
+| set | Text | → | セット |
+| subtractSet | Text | → | 取り除くセット |
+| resultSet | Text | → | 結果のセット |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
index 6ea13aa257210f..a6afdc4cb9fba1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/disable-menu-item
displayed_sidebar: docs
---
-**DISABLE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**DISABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス参照番号 |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
index 924953731e9228..003177e546389e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
index 087c439a63a41d..5a3e3a661be52e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
@@ -5,13 +5,13 @@ slug: /commands/display-notification
displayed_sidebar: docs
---
-**DISPLAY NOTIFICATION** ( *title* ; *text* {; *duration*} )
+**DISPLAY NOTIFICATION** ( *title* : Text ; *text* : Text {; *duration* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| title | Text | → | 通知タイトル |
-| text | Text | → | 通知テキスト |
-| duration | Integer | → | 表示時間 (秒) |
+| title | Text | → | 通知タイトル |
+| text | Text | → | 通知テキスト |
+| duration | Integer | → | 表示時間 (秒) |
@@ -46,6 +46,6 @@ Windows 環境下では、メッセージウィンドウは何らかの動作が
| | |
| --- | --- |
| コマンド番号 | 910 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
index 0aa8af76e48144..a5ee86bb8b1372 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
@@ -5,11 +5,11 @@ slug: /commands/display-record
displayed_sidebar: docs
---
-**DISPLAY RECORD** {( *aTable* )}
+**DISPLAY RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを表示するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードを表示するテーブル, または 省略時、デフォルトテーブル |
@@ -46,6 +46,6 @@ DISPLAY RECORDは、しばしばオリジナルの進捗メッセージを表示
| | |
| --- | --- |
| コマンド番号 | 105 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
index 81860290a78ff0..cf6357b0deee39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
@@ -5,15 +5,16 @@ slug: /commands/display-selection
displayed_sidebar: docs
---
-**DISPLAY SELECTION** ( {*aTable*}{; *selectMode*}{; *enterList*}{; *}{; *} )
+**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *})
**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean} ; * {; *} )
+
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 表示するテーブル, または 省略時、デフォルトテーブル |
-| selectMode | Integer | → | 選択モード |
-| enterList | Boolean | → | リスト入力を許可するオプション |
-| * | Operator | → | 1レコードセレクションの場合にも出力フォームを使用し、 入力フォームのスクロールバーを隠す |
-| * | Operator | → | 入力フォームでスクロールバーを表示する (最初の*の2番目のオプションを上書きする) |
+| aTable | Table | → | 表示するテーブル, または 省略時、デフォルトテーブル |
+| selectMode | Integer | → | 選択モード |
+| enterList | Boolean | → | リスト入力を許可するオプション |
+| * | Operator | → | 1レコードセレクションの場合にも出力フォームを使用し、 入力フォームのスクロールバーを隠す |
+| * | Operator | → | 入力フォームでスクロールバーを表示する (最初の*の2番目のオプションを上書きする) |
@@ -100,7 +101,7 @@ c. 以下のプロジェクトメソッドをメニューに関連付けます:
| | |
| --- | --- |
| コマンド番号 | 59 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
index 43ff67644ea57e..cb7b419e479f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 897 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
index 369927f80be7a9..123c07b76ff3cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
@@ -5,11 +5,11 @@ slug: /commands/distinct-attribute-paths
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE PATHS** ( *objectField* ; *pathArray* )
+**DISTINCT ATTRIBUTE PATHS** ( *objectField* : Field ; *pathArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectField | Field | → | インデックスされたオブジェクトフィールド |
+| objectField | Field | → | インデックスされたオブジェクトフィールド |
| pathArray | Text array | ← | 重複しないパスのリストを取得させる配列 |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
index 1425322cfdd1ea..fd237449bba8c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-attribute-values
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE VALUES** ( *objectField* ; *path* ; *valuesArray* )
+**DISTINCT ATTRIBUTE VALUES** ( *objectField* : Field ; *path* : Text ; *valuesArray* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectField | Field | → | 重複しない属性値の一覧を取得したいオブジェクトフィールド |
-| path | Text | → | 重複しない値を取得したい属性へのパス |
-| valuesArray | Text array, Integer array, Boolean array, Date array, Time array | ← | 属性パス内の重複しない値 |
+| objectField | Field | → | 重複しない属性値の一覧を取得したいオブジェクトフィールド |
+| path | Text | → | 重複しない値を取得したい属性へのパス |
+| valuesArray | Array | ← | 属性パス内の重複しない値 |
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
index 482d7a24129ee2..df1673440c1729 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-values
displayed_sidebar: docs
---
-**DISTINCT VALUES** ( *aField* ; *array* {; *countArray*} )
+**DISTINCT VALUES** ( *aField* : Field ; *array* : Array {; *countArray* : Integer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | データとして使用する、インデックス可能なフィールド |
+| aField | Field | → | データとして使用する、インデックス可能なフィールド |
| array | Array | ← | フィールドデータを受け取る配列 |
-| countArray | Integer array, Real array | ← | それぞれの値の数を受け取る配列 |
+| countArray | Integer array | ← | それぞれの値の数を受け取る配列 |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 339 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
index 932c9b50366cea..f1bf7adcdfa0dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
@@ -5,13 +5,13 @@ slug: /commands/document-list
displayed_sidebar: docs
---
-**DOCUMENT LIST** ( *pathname* ; *documents* {; *options*} )
+**DOCUMENT LIST** ( *pathname* : Text ; *documents* : Text array {; *options* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathname | Text | → | ボリューム、ディレクトリ、またはフォルダーへのパス名 |
+| pathname | Text | → | ボリューム、ディレクトリ、またはフォルダーへのパス名 |
| documents | Text array | ← | この場所にあるドキュメントの名前 |
-| options | Integer | → | 取得するリストを指定するオプション |
+| options | Integer | → | 取得するリストを指定するオプション |
@@ -119,7 +119,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 474 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
index 366409701ea190..cc95e466986a3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-blob
displayed_sidebar: docs
---
-**DOCUMENT TO BLOB** ( *document* ; *BLOB* )
+**DOCUMENT TO BLOB** ( *document* : Text ; *BLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名 |
-| Blob | Blob |↔ | ドキュメントを受け取るBLOBフィールドまたは変数 |
-||| | ドキュメントの内容 |
+| document | Text | → | ドキュメント名 |
+| Blob | Blob | ↔ | ドキュメントを受け取るBLOBフィールドまたは変数 |
+| | | | ドキュメントの内容 |
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
index 02892ac0a3c792..09107921396c4b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-text
displayed_sidebar: docs
---
-**Document to text** ( *fileName* {; *charSet* {; *breakMode*}} ) : Text
+**Document to text** ( *fileName* : Text {; *charSet* : Text, Integer {; *breakMode* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | ドキュメント名またはドキュメントへのパス名 |
-| charSet | Text, Integer | → | 文字コード名の名前または数字 |
-| breakMode | Integer | → | 改行の処理モード |
+| fileName | Text | → | ドキュメント名またはドキュメントへのパス名 |
+| charSet | Text, Integer | → | 文字コード名の名前または数字 |
+| breakMode | Integer | → | 改行の処理モード |
| 戻り値 | Text | ← | ドキュメントから取得したテキスト |
@@ -81,6 +81,6 @@ id name price vat3 4D Tags 99 19.6
| | |
| --- | --- |
| コマンド番号 | 1236 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
index 8ba81ef5b579b3..5090e5f6a7137d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
@@ -5,13 +5,13 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---
-**DOM Append XML child node** ( *elementRef* ; *childType* ; *childValue* ) : Text
+**DOM Append XML child node** ( *elementRef* : Text ; *childType* : Integer ; *childValue* : Text, Blob ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| childType | Integer | → | 追加する子のタイプ |
-| childValue | Text, Blob | → | 子ノードとして挿入するテキストまたは (テキストあるいはBlob) 変数 |
+| elementRef | Text | → | XML要素参照 |
+| childType | Integer | → | 追加する子のタイプ |
+| childValue | Text, Blob | → | 子ノードとして挿入するテキストまたは (テキストあるいはBlob) 変数 |
| 戻り値 | Text | ← | 子XML要素参照 |
@@ -152,6 +152,6 @@ Result:
| | |
| --- | --- |
| コマンド番号 | 1080 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
index e61182a2505e15..ab1b6cf02ee68c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-append-xml-element
displayed_sidebar: docs
---
-**DOM Append XML element** ( *targetElementRef* ; *sourceElementRef* ) : Text
+**DOM Append XML element** ( *targetElementRef* : Text ; *sourceElementRef* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetElementRef | Text | → | XML親要素の参照 |
-| sourceElementRef | Text | → | 追加するXML要素の参照 |
+| targetElementRef | Text | → | XML親要素の参照 |
+| sourceElementRef | Text | → | 追加するXML要素の参照 |
| 戻り値 | Text | ← | 新しいXML要素参照 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1082 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
index e2e290c45a23e5..459e172ed0cd36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
@@ -5,11 +5,11 @@ slug: /commands/dom-close-xml
displayed_sidebar: docs
---
-**DOM CLOSE XML** ( *elementRef* )
+**DOM CLOSE XML** ( *elementRef* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XMLルート要素参照 |
+| elementRef | Text | → | XMLルート要素参照 |
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 722 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
index c313d8f5ec80ed..ff15c94fdbf2bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-count-xml-attributes
displayed_sidebar: docs
---
-**DOM Count XML attributes** ( *elementRef* ) : Integer
+**DOM Count XML attributes** ( *elementRef* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| 戻り値 | Integer | ← | 属性数 |
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 727 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
index fd1fa70afa23b9..b75c7c96ebaa81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
@@ -5,12 +5,12 @@ slug: /commands/dom-count-xml-elements
displayed_sidebar: docs
---
-**DOM Count XML elements** ( *elementRef* ; *elementName* ) : Integer
+**DOM Count XML elements** ( *elementRef* : Text ; *elementName* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| elementName | Text | → | 数えるXML要素名 |
+| elementRef | Text | → | XML要素参照 |
+| elementName | Text | → | 数えるXML要素名 |
| 戻り値 | Integer | ← | 要素数 |
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 726 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
index f346e38e7b2fc1..08682704702a8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element-arrays
displayed_sidebar: docs
---
-**DOM Create XML element arrays** ( *elementRef* ; *xPath* {; *attribNamesArray* ; *attribValuesArray*} {; *attribNamesArray2* ; *attribValuesArray2* ; ... ; *attribNamesArrayN* ; *attribValuesArrayN*} ) : Text
+**DOM Create XML element arrays** ( *elementRef* : Text ; *xPath* : Text {; *attribNamesArray* : Text array ; *attribValuesArray* : Text array} {; ...(*attribNamesArray* : Text array, *attribValuesArray* : Text array)} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XMLルート要素参照 |
-| xPath | Text | → | 作成するXML要素のXPathパス |
-| attribNamesArray | Text array | → | 属性名配列 |
-| attribValuesArray | Text array | → | 属性値配列 |
+| elementRef | Text | → | XMLルート要素参照 |
+| xPath | Text | → | 作成するXML要素のXPathパス |
+| attribNamesArray | Text array | → | 属性名配列 |
+| attribValuesArray | Text array | → | 属性値配列 |
| 戻り値 | Text | ← | 作成されたXML要素の参照 |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1097 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
index a2d0e441d73e86..4bb5d7fa3508f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element
displayed_sidebar: docs
---
-**DOM Create XML element** ( *elementRef* ; *xPath* {; *attrName* ; *attrValue*} {; *attrName2* ; *attrValue2* ; ... ; *attrNameN* ; *attrValueN*} ) : Text
+**DOM Create XML element** ( *elementRef* : Text ; *xPath* : Text {; *attrName* : Text ; *attrValue* : Text, Boolean, Integer, Real, Time, Date} {; ...(*attrName* : Text, *attrValue* : Text, Boolean, Integer, Real, Time, Date)} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | ルートXML要素参照 |
-| xPath | Text | → | 作成するXML要素のXPathパス |
-| attrName | Text | → | 設定する属性 |
-| attrValue | Text, Boolean, Integer, Real, Time, Date | → | 新しい属性値 |
+| elementRef | Text | → | ルートXML要素参照 |
+| xPath | Text | → | 作成するXML要素のXPathパス |
+| attrName | Text | → | 設定する属性 |
+| attrValue | Text, Boolean, Integer, Real, Time, Date | → | 新しい属性値 |
| 戻り値 | Text | ← | 作成されたXML要素の参照 |
@@ -164,7 +164,7 @@ $aAttrName1:="Font"
| | |
| --- | --- |
| コマンド番号 | 865 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
index 44af3006212670..14964dc31dc6ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-ref
displayed_sidebar: docs
---
-**DOM Create XML Ref** ( *root* {; *nameSpace*} {; *nameSpaceName* ; *nameSpaceValue*} {; *nameSpaceName2* ; *nameSpaceValue2* ; ... ; *nameSpaceNameN* ; *nameSpaceValueN*} ) : Text
+**DOM Create XML Ref** ( *root* : Text {; *nameSpace* : Text} {; *nameSpaceName* : Text ; *nameSpaceValue* : Text} {; ...(*nameSpaceName* : Text, *nameSpaceValue* : Text)} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| root | Text | → | ルート要素名 |
-| nameSpace | Text | → | 名前空間の値 |
-| nameSpaceName | Text | → | 名前空間名 |
-| nameSpaceValue | Text | → | 名前空間値 |
+| root | Text | → | ルート要素名 |
+| nameSpace | Text | → | 名前空間の値 |
+| nameSpaceName | Text | → | 名前空間名 |
+| nameSpaceValue | Text | → | 名前空間値 |
| 戻り値 | Text | ← | ルートXML要素参照 |
@@ -101,7 +101,7 @@ NSName2="http://www.4D.com/Mkt/namespace"/>
| | |
| --- | --- |
| コマンド番号 | 861 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
index 7128c485f1deb3..b0888fcd0ac534 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
@@ -5,12 +5,12 @@ slug: /commands/dom-export-to-file
displayed_sidebar: docs
---
-**DOM EXPORT TO FILE** ( *elementRef* ; *filePath* )
+**DOM EXPORT TO FILE** ( *elementRef* : Text ; *filePath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | ルートXML要素参照 |
-| filePath | Text | → | ファイルへのフルパス |
+| elementRef | Text | → | ルートXML要素参照 |
+| filePath | Text | → | ファイルへのフルパス |
@@ -62,7 +62,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 862 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
index 974479d21b2760..7d3514a8033a3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
@@ -5,11 +5,11 @@ slug: /commands/dom-export-to-var
displayed_sidebar: docs
---
-**DOM EXPORT TO VAR** ( *elementRef* ; *vXmlVar* )
+**DOM EXPORT TO VAR** ( *elementRef* : Text ; *vXmlVar* : Text, Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | ルートXML要素参照 |
+| elementRef | Text | → | ルートXML要素参照 |
| vXmlVar | Text, Blob | ← | XMLツリーを受け取る変数 |
@@ -57,7 +57,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 863 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
index 905895fc301213..fd6bd1f84a2157 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element-by-id
displayed_sidebar: docs
---
-**DOM Find XML element by ID** ( *elementRef* ; *id* ) : Text
+**DOM Find XML element by ID** ( *elementRef* : Text ; *id* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| id | Text | → | 検索する要素のID属性値 |
+| elementRef | Text | → | XML要素参照 |
+| id | Text | → | 検索する要素のID属性値 |
| 戻り値 | Text | ← | 見つけた要素の参照 (該当する場合) |
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1010 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
index 38e26df7e1d674..056dcfc3136ce0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element
displayed_sidebar: docs
---
-**DOM Find XML element** ( *elementRef* ; *xPath* {; *arrElementRefs*} ) : Text
+**DOM Find XML element** ( *elementRef* : Text ; *xPath* : Text {; *arrElementRefs* : Text array} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| xPath | Text | → | 検索する要素のXPathパス |
+| elementRef | Text | → | XML要素参照 |
+| xPath | Text | → | 検索する要素のXPathパス |
| arrElementRefs | Text array | ← | 見つかった要素参照のリスト (該当する場合) |
| 戻り値 | Text | ← | 見つかった要素の参照 (該当する場合) |
@@ -123,7 +123,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 864 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
index ce18324aab102e..8f96c1ad6ad216 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-first-child-xml-element
displayed_sidebar: docs
---
-**DOM Get first child XML element** ( *elementRef* {; *childElemName* {; *childElemValue*}} ) : Text
+**DOM Get first child XML element** ( *elementRef* : Text {; *childElemName* : Text {; *childElemValue* : Text}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| childElemName | Text | ← | 子要素名 |
| childElemValue | Text | ← | 子要素値 |
| 戻り値 | Text | ← | 子要素参照 |
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 723 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
index 4e554672a9ac2b..825f7017fb54ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-last-child-xml-element
displayed_sidebar: docs
---
-**DOM Get last child XML element** ( *elementRef* {; *childElemName* {; *childElemValue*}} ) : Text
+**DOM Get last child XML element** ( *elementRef* : Text {; *childElemName* : Text {; *childElemValue* : Text}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| childElemName | Text | ← | 子要素名 |
| childElemValue | Text | ← | 子要素値 |
| 戻り値 | Text | ← | XML要素参照 |
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 925 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
index 081f8391756e4d..930e3e6dccd630 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-next-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get next sibling XML element** ( *elementRef* {; *siblingElemName* {; *siblingElemValue*}} ) : Text
+**DOM Get next sibling XML element** ( *elementRef* : Text {; *siblingElemName* : Text {; *siblingElemValue* : Text}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| siblingElemName | Text | ← | 兄弟XML要素名 |
| siblingElemValue | Text | ← | 兄弟XML要素値 |
| 戻り値 | Text | ← | 兄弟XML要素参照 |
@@ -66,7 +66,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 724 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
index 9908d07e813f8e..0f3c2e58ab282a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-parent-xml-element
displayed_sidebar: docs
---
-**DOM Get parent XML element** ( *elementRef* {; *parentElemName* {; *parentElemValue*}} ) : Text
+**DOM Get parent XML element** ( *elementRef* : Text {; *parentElemName* : Text {; *parentElemValue* : Text}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| parentElemName | Text | ← | 親XML要素名 |
| parentElemValue | Text | ← | 親XML要素値 |
| 戻り値 | Text | ← | 親XML要素参照 |
@@ -40,7 +40,7 @@ documentノードにこのコマンドを適用すると、コマンドはヌル
| | |
| --- | --- |
| コマンド番号 | 923 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
index 59542d95ab870f..541d076b7ccb5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-previous-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get previous sibling XML element** ( *elementRef* {; *siblingElemName* {; *siblingElemValue*}} ) : Text
+**DOM Get previous sibling XML element** ( *elementRef* : Text {; *siblingElemName* : Text {; *siblingElemValue* : Text}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| siblingElemName | Text | ← | 兄弟XML要素名 |
| siblingElemValue | Text | ← | 兄弟XML要素値 |
| 戻り値 | Text | ← | 兄弟XML要素参照 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 924 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
index 67f41d080080cf..eb68f210e9a6cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-root-xml-element
displayed_sidebar: docs
---
-**DOM Get root XML element** ( *elementRef* ) : Text
+**DOM Get root XML element** ( *elementRef* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| 戻り値 | Text | ← | ルート要素参照 またはエラーの場合 "" |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1053 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
index 9f5da880fb9919..166ea882cdaf9e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-index
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* ; *attribIndex* ; *attribName* ; *attribValue* )
+**DOM GET XML ATTRIBUTE BY INDEX** ( *elementRef* : Text ; *attribIndex* : Integer ; *attribName* : Variable ; *attribValue* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| attribIndex | Integer | → | 属性のインデックス番号 |
+| elementRef | Text | → | XML要素参照 |
+| attribIndex | Integer | → | 属性のインデックス番号 |
| attribName | Variable | ← | 属性名 |
| attribValue | Variable | ← | 属性値 |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 729 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
index 449239e9cf04e5..41291cadd90af2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-name
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* ; *attribName* ; *attribValue* )
+**DOM GET XML ATTRIBUTE BY NAME** ( *elementRef* : Text ; *attribName* : Text ; *attribValue* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| attribName | Text | → | 属性名 |
+| elementRef | Text | → | XML要素参照 |
+| attribName | Text | → | 属性名 |
| attribValue | Variable | ← | 属性値 |
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 728 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
index c4e8f3c30d1426..ca3c082bef3bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-child-nodes
displayed_sidebar: docs
---
-**DOM GET XML CHILD NODES** ( *elementRef* ; *childTypesArr* ; *nodeRefsArr* )
+**DOM GET XML CHILD NODES** ( *elementRef* : Text ; *childTypesArr* : Integer array ; *nodeRefsArr* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| childTypesArr | Integer array | ← | 子ノードのタイプ |
| nodeRefsArr | Text array | ← | 子ノードの参照または値 |
@@ -68,6 +68,6 @@ $typeArrと$textArr配列には以下の値が含まれます:
| | |
| --- | --- |
| コマンド番号 | 1081 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
index f386e468bce7be..24571ed042cdd3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-document-ref
displayed_sidebar: docs
---
-**DOM Get XML document ref** ( *elementRef* ) : Text
+**DOM Get XML document ref** ( *elementRef* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | DOMツリー中の既存の要素の参照 |
+| elementRef | Text | → | DOMツリー中の既存の要素の参照 |
| 戻り値 | Text | ← | DOMツリーの最初の要素の参照 (ドキュメントノード) |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1088 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
index 6db926bd7b5778..111fe60cf2a7c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-name
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT NAME** ( *elementRef* ; *elementName* )
+**DOM GET XML ELEMENT NAME** ( *elementRef* : Text ; *elementName* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| elementName | Variable | ← | 要素の名前 |
@@ -46,7 +46,7 @@ XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照
| | |
| --- | --- |
| コマンド番号 | 730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
index 36a4aecbb26386..96f7a45ac73873 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-value
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT VALUE** ( *elementRef* ; *elementValue* {; *cDATA*} )
+**DOM GET XML ELEMENT VALUE** ( *elementRef* : Text ; *elementValue* : Variable {; *cDATA* : Variable} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| elementValue | Variable | ← | 要素値 |
| cDATA | Variable | ← | CDATAセクションの内容 |
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
index a154c6b75f2c17..9df32fd594bde9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-get-xml-element
displayed_sidebar: docs
---
-**DOM Get XML element** ( *elementRef* ; *elementName* ; *index* ; *elementValue* ) : Text
+**DOM Get XML element** ( *elementRef* : Text ; *elementName* : Text ; *index* : Integer ; *elementValue* : Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| elementName | Text | → | 取得する要素の名前 |
-| index | Integer | → | 取得する要素のインデックス番号 |
+| elementRef | Text | → | XML要素参照 |
+| elementName | Text | → | 取得する要素の名前 |
+| index | Integer | → | 取得する要素のインデックス番号 |
| elementValue | Variable | ← | 要素値 |
| 戻り値 | Text | ← | XML参照 (16 文字) |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 725 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
index e40785c25e349d..e615b905c30739 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-information
displayed_sidebar: docs
---
-**DOM Get XML information** ( *elementRef* ; *xmlInfo* ) : Text
+**DOM Get XML information** ( *elementRef* : Text ; *xmlInfo* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XMLルート要素参照 |
-| xmlInfo | Integer | → | 取得する情報のタイプ |
+| elementRef | Text | → | XMLルート要素参照 |
+| xmlInfo | Integer | → | 取得する情報のタイプ |
| 戻り値 | Text | ← | XML情報の値 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
index 0af19bf4b3c8a3..2a1610f8f07599 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-insert-xml-element
displayed_sidebar: docs
---
-**DOM Insert XML element** ( *targetElementRef* ; *sourceElementRef* ; *childIndex* ) : Text
+**DOM Insert XML element** ( *targetElementRef* : Text ; *sourceElementRef* : Text ; *childIndex* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetElementRef | Text | → | 親XML要素参照 |
-| sourceElementRef | Text | → | 挿入するXML要素参照 |
-| childIndex | Integer | → | 新しい要素を挿入するターゲットとなる子要素のインデックス |
+| targetElementRef | Text | → | 親XML要素参照 |
+| sourceElementRef | Text | → | 挿入するXML要素参照 |
+| childIndex | Integer | → | 新しい要素を挿入するターゲットとなる子要素のインデックス |
| 戻り値 | Text | ← | 新しいXML要素の参照 |
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1083 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
index 2916bccbc29f77..2e2d3718a7e667 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-source
displayed_sidebar: docs
---
-**DOM Parse XML source** ( *document* {; *validation* {; *dtd* }} ) : Text
**DOM Parse XML source** ( *document* {; *validation* {; *schema* }} ) : Text
+**DOM Parse XML source** ( *document* : Text {; *validation* : Boolean {; *dtd* : 文字 }} ) : Text
**DOM Parse XML source** ( *document* : Text {; *validation* : Boolean {; *schema* : 文字 }} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメントのパス名 |
-| validation | Boolean | → | True = 検証を行う False = 検証を行わない |
-| dtd | schema | 文字 | → | DTDまたはXMLスキーマの場所 |
+| document | Text | → | ドキュメントのパス名 |
+| validation | Boolean | → | True = 検証を行う False = 検証を行わない |
+| dtd | schema | 文字 | → | DTDまたはXMLスキーマの場所 |
| 戻り値 | Text | ← | XML要素参照 |
@@ -100,7 +100,7 @@ DTDやXSDが存在しなかったりURLが正しくない場合など検証が
| | |
| --- | --- |
| コマンド番号 | 719 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
index dba2310d499e34..baf870a0970285 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-variable
displayed_sidebar: docs
---
-**DOM Parse XML variable** ( *variable* {; *validation* {; *dtd* }} ) : Text
**DOM Parse XML variable** ( *variable* {; *validation* {; *schema*}} ) : Text
+**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *dtd* : 文字 }} ) : Text
**DOM Parse XML variable** ( *variable* : Blob, Text {; *validation* : Boolean {; *schema* : 文字}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| variable | Blob, Text | → | 変数名 |
-| validation | Boolean | → | True = DTDによる検証を行う False = 検証なし |
-| dtd | schema | 文字 | → | DTDまたはXMLスキーマの場所 |
+| variable | Blob, Text | → | 変数名 |
+| validation | Boolean | → | True = DTDによる検証を行う False = 検証なし |
+| dtd | schema | 文字 | → | DTDまたはXMLスキーマの場所 |
| 戻り値 | Text | ← | XML要素参照 |
@@ -90,7 +90,7 @@ DTDやXSDが存在しなかったり、URLが正しくない場合など検証
| | |
| --- | --- |
| コマンド番号 | 720 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
index 9ac43b2bd303eb..57a131d45d8b4f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
@@ -5,12 +5,12 @@ slug: /commands/dom-remove-xml-attribute
displayed_sidebar: docs
---
-**DOM REMOVE XML ATTRIBUTE** ( *elementRef* ; *attribName* )
+**DOM REMOVE XML ATTRIBUTE** ( *elementRef* : Text ; *attribName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| attribName | Text | → | 取り除く属性 |
+| elementRef | Text | → | XML要素参照 |
+| attribName | Text | → | 取り除く属性 |
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1084 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
index 2bebd0522f8d6f..a12bfc9b60dff7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-remove-xml-element
displayed_sidebar: docs
---
-**DOM REMOVE XML ELEMENT** ( *elementRef* )
+**DOM REMOVE XML ELEMENT** ( *elementRef* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 869 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
index 98977973282393..829caaa82e06fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/dom-set-xml-attribute
displayed_sidebar: docs
---
-**DOM SET XML ATTRIBUTE** ( *elementRef* ; *attrName* ; *attrValue* {; *attrName2* ; *attrValue2* ; ... ; *attrNameN* ; *attrValueN*} )
+**DOM SET XML ATTRIBUTE** ( *elementRef* : Text ; *attrName* : Text ; *attrValue* : Text, Boolean, Integer, Real, Time, Date {; ...(*attrName* : Text, *attrValue* : Text, Boolean, Integer, Real, Time, Date)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| attrName | Text | → | 設定する属性 |
-| attrValue | Text, Boolean, Integer, Real, Time, Date | → | 新しい属性値 |
+| elementRef | Text | → | XML要素参照 |
+| attrName | Text | → | 設定する属性 |
+| attrValue | Text, Boolean, Integer, Real, Time, Date | → | 新しい属性値 |
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 866 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
index 64a422f7918993..0986cf02632378 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-declaration
displayed_sidebar: docs
---
-**DOM SET XML DECLARATION** ( *elementRef* ; *encoding* {; *standalone* {; *indentation*}} )
+**DOM SET XML DECLARATION** ( *elementRef* : Text ; *encoding* : Text {; *standalone* : Boolean {; *indentation* : Boolean}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| encoding | Text | → | XMLドキュメント文字セット |
-| standalone | Boolean | → | True = ドキュメントはスタンドアロン False (デフォルト) = ドキュメントはスタンドアロンではない |
-| indentation | Boolean | → | ***廃止予定、使用しないでください*** |
+| elementRef | Text | → | XML要素参照 |
+| encoding | Text | → | XMLドキュメント文字セット |
+| standalone | Boolean | → | True = ドキュメントはスタンドアロン False (デフォルト) = ドキュメントはスタンドアロンではない |
+| indentation | Boolean | → | ***廃止予定、使用しないでください*** |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 859 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
index d0ad65a18b9988..36232ce8db01f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-set-xml-element-name
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT NAME** ( *elementRef* ; *elementName* )
+**DOM SET XML ELEMENT NAME** ( *elementRef* : Text ; *elementName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| elementName | Text | → | 要素の新しい名前 |
+| elementRef | Text | → | XML要素参照 |
+| elementName | Text | → | 要素の新しい名前 |
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 867 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
index 8bcd5680ed9eda..d2090bfb148a9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-element-value
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT VALUE** ( *elementRef* {; *xPath*}; *elementValue* {; *} )
+**DOM SET XML ELEMENT VALUE** ( *elementRef* : Text {; *xPath* : Text}; *elementValue* : Text, Variable {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
-| xPath | Text | → | XML要素のXPathパス |
-| elementValue | Text, Variable | → | 要素の新しい値 |
-| * | 演算子 | → | 指定時: 値をCDATAに設定 |
+| elementRef | Text | → | XML要素参照 |
+| xPath | Text | → | XML要素のXPathパス |
+| elementValue | Text, Variable | → | 要素の新しい値 |
+| * | 演算子 | → | 指定時: 値をCDATAに設定 |
@@ -122,7 +122,7 @@ XML処理のルールに準拠するため、行末文字シークエンス(CR
| | |
| --- | --- |
| コマンド番号 | 868 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
index adb20ef3eaa271..1ed0fa9fbcb8c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 452 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
index b38d3f2f1c7ffb..71bd4e862c4dcd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
@@ -5,7 +5,7 @@ slug: /commands/drop-position
displayed_sidebar: docs
---
-**Drop position** {( *columnNumber* )} : Integer
**Drop position** {( *pictPosY* )} : Integer
+**Drop position** ( *columnNumber* : 倍長整数 ) : Integer
**Drop position** ( *pictPosY* : 倍長整数 ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 608 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
index 7b56b95355ad16..82f83be111fcbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
@@ -5,11 +5,11 @@ slug: /commands/drop-remote-user
displayed_sidebar: docs
---
-**DROP REMOTE USER** ( *userSession* )
+**DROP REMOTE USER** ( *userSession* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userSession | Text | → | ユーザーのセッションID |
+| userSession | Text | → | ユーザーのセッションID |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1633 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
index 0f0e8bb961ddc4..771983ff6dd601 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
@@ -5,11 +5,11 @@ slug: /commands/duplicate-record
displayed_sidebar: docs
---
-**DUPLICATE RECORD** {( *aTable* )}
+**DUPLICATE RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを複製するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードを複製するテーブル, または 省略時、デフォルトテーブル |
@@ -30,7 +30,7 @@ DUPLICATE RECORDはデータ入力中にも実行可能です。これにより
| | |
| --- | --- |
| コマンド番号 | 225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
index c34f1cd2a90655..32cfacd7558cbd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/dynamic-pop-up-menu
displayed_sidebar: docs
---
-**Dynamic pop up menu** ( *menu* {; *default* {; *xCoord* ; *yCoord*}} ) : Text
+**Dynamic pop up menu** ( *menu* : Text {; *default* : Text {; *xCoord* : Integer ; *yCoord* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Text | → | メニュー参照 |
-| default | Text | → | デフォルトで選択される項目のパラメーター |
-| xCoord | Integer | → | 左上隅のx座標 |
-| yCoord | Integer | → | 左上隅のy座標 |
+| menu | Text | → | メニュー参照 |
+| default | Text | → | デフォルトで選択される項目のパラメーター |
+| xCoord | Integer | → | 左上隅のx座標 |
+| yCoord | Integer | → | 左上隅のy座標 |
| 戻り値 | Text | ← | 選択されたメニュー項目のパラメーター |
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1006 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
index 8be1285b4d1717..a9e0691767c573 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ DesignerとAdministratorは新規ユーザの追加、およびグループへ
| | |
| --- | --- |
| コマンド番号 | 281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
index e6df970f16c0d1..aeff1382f55eca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
@@ -5,13 +5,12 @@ slug: /commands/edit-formula
displayed_sidebar: docs
---
-**EDIT FORMULA** ( *aTable* ; *formula* )
+**EDIT FORMULA** ( *aTable* : Table ; *formula* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フォーミュラエディタにデフォルトで表示するテーブル |
-| formula | Text | → | フォーミュラエディタに表示するフォーミュラを含む変 またはエディタの実を表示するには "" |
-| ← | ユーザが確定したフォーミュラ |
+| aTable | Table | → | フォーミュラエディタにデフォルトで表示するテーブル |
+| formula | Text | ↔ | *in:* Variable containing the formula to display in the Formula editor or "" to display editor only
*out:* Formula validated by the user |
@@ -59,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 806 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
index 5161c2c9110868..2f4d319757ac28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
@@ -5,13 +5,13 @@ slug: /commands/edit-item
displayed_sidebar: docs
---
-**EDIT ITEM** ( {* ;} *object* {; *item*} )
+**EDIT ITEM** ( * ; *object* : Text {; *item* : Integer} )
**EDIT ITEM** ( *object* : Field, Variable {; *item* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定した場合オブジェクト名(文字列) 省略するとテーブルまたは変数 |
-| object | any | → | オブジェクト名 (*が指定されている場合) または テーブルまたは変数 (*が省略された場合) |
-| item | Integer | → | 項目番号 |
+| * | 演算子 | → | 指定した場合オブジェクト名(文字列) 省略するとテーブルまたは変数 |
+| object | any | → | オブジェクト名 (*が指定されている場合) または テーブルまたは変数 (*が省略された場合) |
+| item | Integer | → | 項目番号 |
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 870 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
index 95987ff4b093d3..eb0fbdd5506370 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/enable-menu-item
displayed_sidebar: docs
---
-**ENABLE MENU ITEM** ( *menu* ; *menuItem* {; *process*} )
+**ENABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス参照番号 |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
index 521ed721cc4b66..f0a31c6fa02bd4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/encrypt-blob
displayed_sidebar: docs
---
-**ENCRYPT BLOB** ( *toEncrypt* ; *sendPrivKey* {; *recipPubKey*} )
+**ENCRYPT BLOB** ( *toEncrypt* : Blob ; *sendPrivKey* : Blob {; *recipPubKey* : Blob} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| toEncrypt | Blob | ↔ | 暗号化するデータ |
-||| | 暗号化されたデータ |
-| sendPrivKey | Blob | → | 送信者の秘密鍵 |
-| recipPubKey | Blob | → | 受信者の公開鍵 |
+| | | | 暗号化されたデータ |
+| sendPrivKey | Blob | → | 送信者の秘密鍵 |
+| recipPubKey | Blob | → | 受信者の公開鍵 |
@@ -186,6 +186,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 689 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
index 8ccc16f963f32d..05728b2c349025 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/encrypt-data-blob
displayed_sidebar: docs
---
-**Encrypt data BLOB** ( *blobToEncrypt* ; *keyObject* ; *salt* ; *encryptedBLOB* ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* ; *passPhrase* ; *salt* ; *encryptedBLOB* ) : Boolean
+**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *keyObject* : オブジェクト, テキスト ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
**Encrypt data BLOB** ( *blobToEncrypt* : Blob ; *passPhrase* : オブジェクト, テキスト ; *salt* : Integer ; *encryptedBLOB* : Blob ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| blobToEncrypt | Blob | → | 暗号化したいBLOB |
-| keyObject | passPhrase | オブジェクト, テキスト | → | 暗号化鍵を格納したJSON オブジェクト、または直接暗号化鍵を生成するためのパスフレーズ(テキスト) |
-| salt | Integer | → | アルゴリズムのための追加のsalt |
+| blobToEncrypt | Blob | → | 暗号化したいBLOB |
+| keyObject | passPhrase | オブジェクト, テキスト | → | 暗号化鍵を格納したJSON オブジェクト、または直接暗号化鍵を生成するためのパスフレーズ(テキスト) |
+| salt | Integer | → | アルゴリズムのための追加のsalt |
| encryptedBlob | Blob | ← | 暗号化されたBLOB |
| 戻り値 | Boolean | ← | 暗号化が正常に実行された場合にはTrue、それ以外の場合にはFalse |
@@ -65,6 +65,6 @@ BLOB を暗号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1773 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
index 9d94e763af8630..d4f5aab67f06b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
@@ -5,16 +5,16 @@ slug: /commands/encrypt-data-file
displayed_sidebar: docs
---
-**Encrypt data file** ( *structurePath* ; *dataPath* {; *newPassPhrase* {; *archiveFolder* {; *curPassPhrase* {; *methodName*}}}} ) : Text
**Encrypt data file** ( *structurePath* ; *dataPath* {; *newDataKey* {; *archiveFolder* {; *curDataKey* {; *methodName*}}}} ) : Text
+**Encrypt data file** ( *structurePath* : Text ; *dataPath* : Text {; *newPassPhrase* : テキスト, オブジェクト {; *archiveFolder* : Text {; *curPassPhrase* : テキスト, オブジェクト {; *methodName* : Text}}}} ) : Text
**Encrypt data file** ( *structurePath* : Text ; *dataPath* : Text {; *newDataKey* : テキスト, オブジェクト {; *archiveFolder* : Text {; *curDataKey* : テキスト, オブジェクト {; *methodName* : Text}}}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| structurePath | Text | → | ストラクチャーファイルのパス名 |
-| dataPath | Text | → | 暗号化するデータファイルへのパス名 |
-| newPassPhrase | newDataKey | テキスト, オブジェクト | → | 更新したい場合: 新しいパスフレーズ (テキスト)または新しい暗号化キー(オブジェクト) |
-| archiveFolder | Text | → | 元のファイルを保存しておくフォルダのパス名 |
-| curPassPhrase | curDataKey | テキスト, オブジェクト | → | カレントのパスフレーズ(テキスト)またはカレントの暗号化キー(オブジェクト) |
-| methodName | Text | → | 4Dコールバックメソッド名 |
+| structurePath | Text | → | ストラクチャーファイルのパス名 |
+| dataPath | Text | → | 暗号化するデータファイルへのパス名 |
+| newPassPhrase | newDataKey | テキスト, オブジェクト | → | 更新したい場合: 新しいパスフレーズ (テキスト)または新しい暗号化キー(オブジェクト) |
+| archiveFolder | Text | → | 元のファイルを保存しておくフォルダのパス名 |
+| curPassPhrase | curDataKey | テキスト, オブジェクト | → | カレントのパスフレーズ(テキスト)またはカレントの暗号化キー(オブジェクト) |
+| methodName | Text | → | 4Dコールバックメソッド名 |
| 戻り値 | Text | ← | 元のファイルが保存されたフォルダの完全なパス名 |
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
index 2f67c6d9d5d282..8393fdb90b291a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
@@ -5,11 +5,11 @@ slug: /commands/end-selection
displayed_sidebar: docs
---
-**End selection** {( *aTable* )} : Boolean
+**End selection** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードポインタがセレクションの最後のレコードよりも 後ろにあるかテストするテーブル、または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードポインタがセレクションの最後のレコードよりも 後ろにあるかテストするテーブル、または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | Yes (TRUE) or No (FALSE) |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 36 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
index 7f866411a4e026..f3626dad7f24b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 949 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
index 8a9a365fd6f2d4..fbbf059d479b16 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
@@ -5,12 +5,12 @@ slug: /commands/equal-pictures
displayed_sidebar: docs
---
-**Equal pictures** ( *picture1* ; *picture2* ; *mask* ) : Boolean
+**Equal pictures** ( *picture1* : Picture, Picture ; *picture2* : Picture, Picture ; *mask* : Picture, Picture ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture1 | Picture, Picture | → | 元のソースピクチャー |
-| picture2 | Picture, Picture | → | 比較するピクチャー |
+| picture1 | Picture, Picture | → | 元のソースピクチャー |
+| picture2 | Picture, Picture | → | 比較するピクチャー |
| mask | Picture, Picture | ← | 結果のマスク |
| 戻り値 | Boolean | ← | 2つのピクチャーが同じ場合True、そうでなければFalse |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1196 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
index 77728b2fa0db24..f82ba3074cc6a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
@@ -5,11 +5,11 @@ slug: /commands/erase-window
displayed_sidebar: docs
---
-**ERASE WINDOW** {( *window* )}
+**ERASE WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号, または 省略時、カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号, または 省略時、カレントプロセスの最前面ウィンドウ |
@@ -33,6 +33,6 @@ ERASE WINDOWはウィンドウの内容をクリアします。スクリーン
| | |
| --- | --- |
| コマンド番号 | 160 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
index 4faa5fb3ed3c4e..55c03a006e152b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
@@ -5,13 +5,13 @@ slug: /commands/euro-converter
displayed_sidebar: docs
---
-**Euro converter** ( *value* ; *fromCurrency* ; *toCurrency* ) : Real
+**Euro converter** ( *value* : Real ; *fromCurrency* : Text ; *toCurrency* : Text ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| value | Real | → | 変換する値 |
-| fromCurrency | Text | → | valueの通貨コード |
-| toCurrency | Text | → | 変換先通貨コード |
+| value | Real | → | 変換する値 |
+| fromCurrency | Text | → | valueの通貨コード |
+| toCurrency | Text | → | 変換先通貨コード |
| 戻り値 | Real | ← | 変換された値 |
@@ -87,6 +87,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 676 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
index 420ef2e18edb40..396c441e89af0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
@@ -5,11 +5,11 @@ slug: /commands/execute-formula
displayed_sidebar: docs
---
-**EXECUTE FORMULA** ( *statement* )
+**EXECUTE FORMULA** ( *statement* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| statement | Text | → | 実行するコード |
+| statement | Text | → | 実行するコード |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 63 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
index e7a532bc5d96bb..50366785b413c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
@@ -5,15 +5,15 @@ slug: /commands/execute-method-in-subform
displayed_sidebar: docs
---
-**EXECUTE METHOD IN SUBFORM** ( *subformObject* ; *formula* {; *return* {; *param*} {; *param2* ; ... ; *paramN*}} )
+**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; *return* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; * {; ...*param* : Expression} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| subformObject | Text | → | サブフォームオブジェクトの名称 |
-| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
-| return | *, Variable | → | メソッドが値を戻さない場合 * |
-| ← | メソッドから返される値 |
-| param | Expression | → | メソッドに渡す引数 |
+| subformObject | Text | → | サブフォームオブジェクトの名称 |
+| formula | Object, Text | → | 実行するプロジェクトメソッドの名前、または Formulaオブジェクト |
+| return | Variable | ← | Value returned by formula (if any) |
+| \* | Operator | → | Formula does not return a value |
+| param | Expression | → | メソッドに渡す引数 |
@@ -79,7 +79,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1085 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
index 7e932fc35c0d32..f6350400cfacfa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
@@ -5,13 +5,13 @@ slug: /commands/execute-method
displayed_sidebar: docs
---
-**EXECUTE METHOD** ( *methodName* {; result | * {; *param*}}{; *param2* ; ... ; *paramN*} )
+**EXECUTE METHOD** ( *methodName* : Text ; *result* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD** ( *methodName* : Text ; * {; ...*param* : Expression} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| methodName | Text | → | 実行するプロジェクトメソッド名 |
-| result | * | 変数, 演算子 | ← | メソッドの結果を受け取る変数 または *: メソッドが結果を返さない場合 |
-| param | Expression | → | メソッドの引数 |
+| methodName | Text | → | 実行するプロジェクトメソッド名 |
+| result | * | Variable, Operator | ← | メソッドの結果を受け取る変数 または *: メソッドが結果を返さない場合 |
+| param | Expression | → | メソッドの引数 |
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1007 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
index 207c139194f609..e4d8f0fcf32085 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
@@ -5,13 +5,13 @@ slug: /commands/execute-on-client
displayed_sidebar: docs
---
-**EXECUTE ON CLIENT** ( *clientName* ; *methodName* {; *param*}{; *param2* ; ... ; *paramN*} )
+**EXECUTE ON CLIENT** ( *clientName* : Text ; *methodName* : Text {; *...param* : any} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| clientName | Text | → | 4D Clientの登録名 |
-| methodName | Text | → | 実行するメソッドの名前 |
-| param | → | メソッドの引数 |
+| clientName | Text | → | 4D Clientの登録名 |
+| methodName | Text | → | 実行するメソッドの名前 |
+| param | any | → | Method’s parameter(s) |
@@ -67,7 +67,7 @@ OKシステム変数は、4D Serverがメソッドの実行要求を正しく受
| | |
| --- | --- |
| コマンド番号 | 651 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
index 5eb402446d736b..535205dea3189d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
@@ -5,15 +5,15 @@ slug: /commands/execute-on-server
displayed_sidebar: docs
---
-**Execute on server** ( *procedure* ; *stack* {; *name* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**Execute on server** ( *procedure* : Text ; *stack* : Integer {; *name* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| procedure | Text | → | プロセス中で実行するメソッド |
-| stack | Integer | → | スタックサイズ (バイト) |
-| name | Text | → | 作成するプロセスの名前 |
-| param | Expression | → | メソッドの引数 |
-| * | 演算子 | → | 重複しないプロセス |
+| procedure | Text | → | プロセス中で実行するメソッド |
+| stack | Integer | → | スタックサイズ (バイト) |
+| name | Text | → | 作成するプロセスの名前 |
+| param | Expression | → | メソッドの引数 |
+| * | 演算子 | → | 重複しないプロセス |
| 戻り値 | Integer | ← | 新規プロセスのプロセス番号 または既存のプロセス番号 |
@@ -193,6 +193,6 @@ WriteLog メソッドはサーバー側で実行されます。メソッドの
| | |
| --- | --- |
| コマンド番号 | 373 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
index ae3d62f0705c70..cd71c148ce8900 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
@@ -5,11 +5,11 @@ slug: /commands/exp
displayed_sidebar: docs
---
-**Exp** ( *number* ) : Real
+**Exp** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 評価する数値 |
+| number | Real | → | 評価する数値 |
| 戻り値 | Real | ← | 指数関数値 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 21 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
index 2a565e9215a2c3..b35603c26cea1f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
@@ -5,11 +5,11 @@ slug: /commands/expand-blob
displayed_sidebar: docs
---
-**EXPAND BLOB** ( *BLOB* )
+**EXPAND BLOB** ( *BLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | 展開するBLOB |
+| Blob | Blob | → | 展開するBLOB |
@@ -70,7 +70,7 @@ BLOBが正しく解凍されるとOK変数は1に、そうでなければ0に設
| | |
| --- | --- |
| コマンド番号 | 535 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
index 1c0ffc12842315..e8b0304231f79b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
@@ -5,14 +5,13 @@ slug: /commands/export-data
displayed_sidebar: docs
---
-**EXPORT DATA** ( *fileName* {; *project* {; *}} )
+**EXPORT DATA** ( *fileName* : Text {; *project* : Text, Blob {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | エクスポートファイルのフルパス名 |
-| project | Text, Blob | → | エクスポートプロジェクト |
-| ← | エクスポートプロジェクトの新しい内容 (*引数指定時) |
-| * | 演算子 | → | エクスポートダイアログを表示し プロジェクトの内容を更新 |
+| fileName | Text | → | エクスポートファイルのフルパス名 |
+| project | Text, Blob | ↔ | *in:* Contents of the export project
*out:* New contents of the export project (if the * parameter has been passed) |
+| * | 演算子 | → | エクスポートダイアログを表示し プロジェクトの内容を更新 |
@@ -103,7 +102,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 666 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
index 8bbee1925eb4e6..7be116be8b1494 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
@@ -5,12 +5,12 @@ slug: /commands/export-dif
displayed_sidebar: docs
---
-**EXPORT DIF** ( {*aTable* ;} *document* )
+**EXPORT DIF** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データが書き出されるDIFドキュメント |
+| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データが書き出されるDIFドキュメント |
@@ -55,7 +55,7 @@ EXPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 84 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
index b0ef2e21fff4ad..46bc794d472a2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure-file
displayed_sidebar: docs
---
-**Export structure file** ( *folderPath* {; *options*} ) : Object
+**Export structure file** ( *folderPath* : Text {; *options* : Object} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folderPath | Text | → | プロジェクトファイルの保存先フォルダのパス |
-| options | Object | → | 書き出しオプション |
+| folderPath | Text | → | プロジェクトファイルの保存先フォルダのパス |
+| options | Object | → | 書き出しオプション |
| 戻り値 | Object | ← | 書き出しステータスと(あれば)エラーについてのメッセージ |
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
index 79f2c4664218f0..7feecee28ca393 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure
displayed_sidebar: docs
---
-**EXPORT STRUCTURE** ( *exportedStructure* {; *format*} )
+**EXPORT STRUCTURE** ( *exportedStructure* : Text {; *format* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| exportedStructure | Text | ← | 4D データベースストラクチャーを書き出したXML定義ファイル |
-| format | Text | → | Export format: xml format (default) or html format |
+| format | Text | → | Export format: xml format (default) or html format |
@@ -62,6 +62,6 @@ XML フォーマットで書き出されたストラクチャー定義は他の
| | |
| --- | --- |
| コマンド番号 | 1311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
index cccdf5d1286448..e299fca77949b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/export-sylk
displayed_sidebar: docs
---
-**EXPORT SYLK** ( {*aTable* ;} *document* )
+**EXPORT SYLK** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データが書き出されるSYLKドキュメント |
+| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データが書き出されるSYLKドキュメント |
@@ -55,7 +55,7 @@ EXPORT SYLKを使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 85 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
index 447129e07d2c61..b1406c937b944e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
@@ -5,12 +5,12 @@ slug: /commands/export-text
displayed_sidebar: docs
---
-**EXPORT TEXT** ( {*aTable* ;} *document* )
+**EXPORT TEXT** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データが書き出されるテキストドキュメント |
+| aTable | Table | → | データを書き出すテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データが書き出されるテキストドキュメント |
@@ -57,7 +57,7 @@ EXPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md
index d392138cb39914..66cb96f62c59e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/false.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 215 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
index 7995b4ed2bc7be..8eae330aa83d05 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
@@ -5,12 +5,12 @@ slug: /commands/field-name
displayed_sidebar: docs
---
-**Field name** ( *fieldPtr* ) : Text
**Field name** ( *tableNum* ; *fieldNum* ) : Text
+**Field name** ( *fieldPtr* : ポインター, 倍長整数 ) : Text
**Field name** ( *tableNum* : ポインター, 倍長整数 ; *fieldNum* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldPtr | tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
-| fieldNum | Integer | → | 最初の引数にテーブル番号を渡した場合は、 フィールド番号 |
+| fieldPtr | tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
+| fieldNum | Integer | → | 最初の引数にテーブル番号を渡した場合は、 フィールド番号 |
| 戻り値 | Text | ← | フィールド名 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 257 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md
index 1466f54e6a4fd0..cbe5552495f346 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/field.md
@@ -5,28 +5,23 @@ slug: /commands/field
displayed_sidebar: docs
---
-**Field** ( *tableNum* ; *fieldNum* ) -> 戻り値
-
- Field ( *fieldPtr* ) -> 戻り値
+**Field** ( *tableNum* : Integer ; *fieldNum* : Integer ) -> Pointer
**Field** ( *fieldPtr* : Pointer ) -> Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | Integer | → | テーブル番号 |
-| fieldNum | Integer | → | フィールド番号 |
-| 戻り値 | Pointer | ← | フィールドポインタ |
-| Field ( fieldPtr ) -> 戻り値 |
-| 引数 | 型 | 説明 |
-| fieldPtr | Pointer | → | フィールドポインタ |
-| 戻り値 | Integer | ← | フィールド番号 |
+| tableNum | Integer | → | テーブル番号 |
+| fieldNum | Integer | → | フィールド番号 |
+| fieldPtr | Pointer | → | フィールドポインタ |
+| 戻り値 | Pointer, Integer | ← | フィールドポインタまたはフィールド番号 |
## 説明
-Field コマンドには、2つの形式があります。
+Field コマンドには、2つの形式があります。
* *tableNum*と*fieldNum*を指定した場合、Fieldはフィールドへのポインタを返します。
-* *fieldPtr*を指定した場合には、Fieldはフィールド番号を返します。
+* *fieldPtr*を指定した場合には、Fieldはフィールド番号を返します。
## 例題 1
@@ -65,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 253 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
index d1f4147a906bc7..f3d8030f0c7644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 321 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
index de39c82dee0210..278233cd1a58ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
@@ -5,11 +5,11 @@ slug: /commands/filter-keystroke
displayed_sidebar: docs
---
-**FILTER KEYSTROKE** ( *filteredChar* )
+**FILTER KEYSTROKE** ( *filteredChar* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| filteredChar | Text | → | フィルタされたキーストローク文字、または 空文字の場合キーストロークをキャンセル |
+| filteredChar | Text | → | フィルタされたキーストローク文字、または 空文字の場合キーストロークをキャンセル |
@@ -251,6 +251,6 @@ Get highlighted text メソッド:
| | |
| --- | --- |
| コマンド番号 | 389 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
index 22ce01b1fef531..2ee117cd4ec0c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-array
displayed_sidebar: docs
---
-**Find in array** ( *array* ; *value* {; *start*} ) : Integer
+**Find in array** ( *array* : Array ; *value* : Expression {; *start* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 検索を行う配列 |
-| value | Expression | → | 配列タイプと同じタイプの検索値 |
-| start | Integer | → | 検索を開始する配列要素番号 |
+| array | Array | → | 検索を行う配列 |
+| value | Expression | → | 配列タイプと同じタイプの検索値 |
+| start | Integer | → | 検索を開始する配列要素番号 |
| 戻り値 | Integer | ← | 検索値が見つかった最初の要素番号 |
@@ -116,6 +116,6 @@ $arrPtr->:=Find in array($arrPtr->; $varPtr->)
| | |
| --- | --- |
| コマンド番号 | 230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
index 16650409531c97..1a4dc090036b64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
@@ -5,13 +5,12 @@ slug: /commands/find-in-field
displayed_sidebar: docs
---
-**Find in field** ( *targetField* ; *value* ) : Integer
+**Find in field** ( *targetField* : Field ; *value* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetField | Field | → | 検索を実行するフィールド |
-| value | Field, Variable | → | 検索する値 |
-| ← | 検索された値 |
+| targetField | Field | → | 検索を実行するフィールド |
+| value | Field, Variable | ↔ | *in:* Value to search
*out:* Value found |
| 戻り値 | Integer | ← | 検索されたレコード番号 または レコードが検索されなかった場合、-1 |
@@ -69,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 653 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
index 164223afce1af3..1e83a91f6e7175 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
@@ -5,16 +5,16 @@ slug: /commands/find-in-list
displayed_sidebar: docs
---
-**Find in list** ( {* ;} *list* ; *value* ; *scope* {; *itemsArray* {; *}} ) : Integer
+**Find in list** ( {* ;} *list* : Integer, Text ; *value* : Text ; *scope* : Integer {; *itemsArray* : Integer array {; *}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定した場合, listはオブジェクト名 (文字列) 省略した場合, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時) リストオブジェクト名 (* 指定時) |
-| value | Text | → | 検索する値 |
-| scope | Integer | → | 0=メインリスト, 1=サブリスト |
+| * | 演算子 | → | 指定した場合, listはオブジェクト名 (文字列) 省略した場合, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時) リストオブジェクト名 (* 指定時) |
+| value | Text | → | 検索する値 |
+| scope | Integer | → | 0=メインリスト, 1=サブリスト |
| itemsArray | Integer array | ← | 2番目の * 省略時: 見つけた項目の位置配列 - 2番目の * 指定時: 見つけた項目の項目参照番号配列 |
-| * | 演算子 | → | - 省略時: 項目位置を使用 - 指定時: 項目参照番号使用 |
+| * | 演算子 | → | - 省略時: 項目位置を使用 - 指定時: 項目参照番号使用 |
| 戻り値 | Integer | ← | - 2番目の * 省略時: 見つけた項目の位置 - 2番目の * 指定時: 見つけた項目の項目参照番号 |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 952 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
index 0c25bd76fed4f3..3e6bd4a468816c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-sorted-array
displayed_sidebar: docs
---
-**Find in sorted array** ( *array* ; *value* ; > or < {; *posFirst* {; *posLast*}} ) : Boolean
+**Find in sorted array** ( *array* : Array ; *value* : Expression ; > or < {; *posFirst* : Integer {; *posLast* : Integer}} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 検索する配列 |
-| value | Expression | → | 配列内で検索する値(配列と同じ型) |
-| > or < | 演算子 | → | 配列が昇順になっている場合には>、降順になっている場合には< |
+| array | Array | → | 検索する配列 |
+| value | Expression | → | 配列内で検索する値(配列と同じ型) |
+| > or < | 演算子 | → | 配列が昇順になっている場合には>、降順になっている場合には< |
| posFirst | Integer | ← | 値が見つかった場合にはそれが見つかった最初の位置/そうでない場合には値が挿入されるべき位置 |
| posLast | Integer | ← | 値が見つかった場合にはそれが見つかった最後の位置/そうでない場合にはposFirstと同じ |
| 戻り値 | Boolean | ← | 配列内にて値と合致する要素が少なくとも一つある場合にはTrue、そうでない場合にはFalse |
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
index 7dc856606f27a8..4e4b01fb99db8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
@@ -5,12 +5,12 @@ slug: /commands/find-window
displayed_sidebar: docs
---
-**Find window** ( *left* ; *top* {; *windowPart*} ) : Integer
+**Find window** ( *left* : Integer ; *top* : Integer {; *windowPart* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| left | Integer | → | グローバル左座標 |
-| top | Integer | → | グローバル上座標 |
+| left | Integer | → | グローバル左座標 |
+| top | Integer | → | グローバル上座標 |
| windowPart | Integer | ← | ウィンドウパーツID番号 |
| 戻り値 | Integer | ← | ウィンドウ参照番号 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 449 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
index 7a95962ad9cf6d..b66025c68b4e8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
@@ -5,11 +5,11 @@ slug: /commands/first-record
displayed_sidebar: docs
---
-**FIRST RECORD** {( *aTable* )}
+**FIRST RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションの先頭をカレントレコードにするテーブル または省略時デフォルトテーブル |
+| aTable | Table | → | セレクションの先頭をカレントレコードにするテーブル または省略時デフォルトテーブル |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 50 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
index f39461b97f6bf0..bde479ac57d16d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
@@ -5,11 +5,11 @@ slug: /commands/flush-cache
displayed_sidebar: docs
---
-**FLUSH CACHE** {( size )}
**FLUSH CACHE** {( * )}
+**FLUSH CACHE** ({ size })
**FLUSH CACHE** ({ * })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| size | * | 実数, 演算子 | → | 解放するキャッシュサイズ(バイト単位)、* 指定時はキャッシュメモリを完全に空にする |
+| size | * | 実数, 演算子 | → | 解放するキャッシュサイズ(バイト単位)、* 指定時はキャッシュメモリを完全に空にする |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
index 726b537220b972..3712b8ebe4f27d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
@@ -50,6 +50,6 @@ Focus object はカレントフォーム中でフォーカスを持つオブジ
| | |
| --- | --- |
| コマンド番号 | 278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
index a3a66ba3a7df7d..65be0e0f79e126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
@@ -5,11 +5,11 @@ slug: /commands/folder-list
displayed_sidebar: docs
---
-**FOLDER LIST** ( *pathname* ; *directories* )
+**FOLDER LIST** ( *pathname* : Text ; *directories* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathname | Text | → | ボリュームのパス名、ディレクトリ、またはフォルダ |
+| pathname | Text | → | ボリュームのパス名、ディレクトリ、またはフォルダ |
| directories | Text array | ← | ロケーションにあるディレクトリの名前 |
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 473 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
index acfdf3f1cf3237..cf4632b4faef2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
@@ -5,12 +5,12 @@ slug: /commands/font-file
displayed_sidebar: docs
---
-**Font file** ( *fontFamily* {; *fontStyle*} ) : any
+**Font file** ( *fontFamily* : Text {; *fontStyle* : Integer} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fontFamily | Text | → | フォントファミリー名 |
-| fontStyle | Integer | → | フォントスタイル: 0=通常 (デフォルト)、1=太字、2=斜体字 |
+| fontFamily | Text | → | フォントファミリー名 |
+| fontStyle | Integer | → | フォントスタイル: 0=通常 (デフォルト)、1=太字、2=斜体字 |
| 戻り値 | Null, Object | ← | フォントファイルオブジェクト |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
index a58da962d63dfb..30a69250dcb2dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
@@ -5,12 +5,12 @@ slug: /commands/font-list
displayed_sidebar: docs
---
-**FONT LIST** ( *fonts* {; *listType* } )
**FONT LIST** ( *fonts* {; *} )
+**FONT LIST** ( *fonts* : Text array {; *listType* : 倍長整数, 演算子 } )
**FONT LIST** ( *fonts* : Text array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| fonts | Text array | ← | フォント名の配列 |
-| listType | * | 倍長整数, 演算子 | → | 取得したいフォント型のリスト、フォント名を取得するために*を指定(OS Xのみ) |
+| listType | * | 倍長整数, 演算子 | → | 取得したいフォント型のリスト、フォント名を取得するために*を指定(OS Xのみ) |
@@ -77,6 +77,6 @@ Windows環境下では、この原理は4D v15 R4から採用されています
| | |
| --- | --- |
| コマンド番号 | 460 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
index 12b76e8583f647..faaf2925adcce4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
@@ -5,11 +5,11 @@ slug: /commands/font-style-list
displayed_sidebar: docs
---
-**FONT STYLE LIST** ( *fontFamily* ; *fontStyleList* ; *fontNameList* )
+**FONT STYLE LIST** ( *fontFamily* : Text ; *fontStyleList* : Text array ; *fontNameList* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fontFamily | Text | → | フォントファミリー名 |
+| fontFamily | Text | → | フォントファミリー名 |
| fontStyleList | Text array | ← | フォントファミリーによってサポートされるフォントスタイルの一覧 |
| fontNameList | Text array | ← | フォントファミリーによってサポートされるフォント名の完全な一覧 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
index fc3459d78b9bda..a5d19bc0ef2a02 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
@@ -5,12 +5,12 @@ slug: /commands/form-convert-to-dynamic
displayed_sidebar: docs
---
-**FORM Convert to dynamic** ( {*aTable* ;} *formName* ) : Object
+**FORM Convert to dynamic** ( {*aTable* : Table ;} *formName* : Text ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フォームテーブル |
-| formName | Text | → | "クラシック"プロジェクトフォーム名またはテーブルフォーム名 |
+| aTable | Table | → | フォームテーブル |
+| formName | Text | → | "クラシック"プロジェクトフォーム名またはテーブルフォーム名 |
| 戻り値 | Object | ← | formNameのフォームをダイナミックフォームに変換したもの |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1570 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
index 99fbc02fdd9d22..6edcee77d6cc89 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
index 92d5c242b33848..a9d9775055be7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
index 29c8aab210b9a0..807f92e60e8015 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
@@ -5,11 +5,11 @@ slug: /commands/form-get-current-page
displayed_sidebar: docs
---
-**FORM Get current page** {( * )} : Integer
+**FORM Get current page** ( * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | カレントサブフォームページ番号を返す |
+| * | 演算子 | → | カレントサブフォームページ番号を返す |
| 戻り値 | Integer | ← | 現在表示されているページ番号 |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 276 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
index 592f0da6c167e2..da37309ea32046 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-entry-order
displayed_sidebar: docs
---
-**FORM GET ENTRY ORDER** ( *objectNames* {; *pageNumber* } )
**FORM GET ENTRY ORDER** ( *objectNames* {; *} )
+**FORM GET ENTRY ORDER** ( *objectNames* : Text array {; *pageNumber* : 倍長整数, 演算子 } )
**FORM GET ENTRY ORDER** ( *objectNames* : Text array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| objectNames | Text array | ← | 入力順に並べられたオブジェクト名の配列 |
-| pageNumber | * | 倍長整数, 演算子 | → | 定義された入力順を取得するページの番号 (省略時はカレントページ)、または * でカレントページの実際の入力順 |
+| pageNumber | * | 倍長整数, 演算子 | → | 定義された入力順を取得するページの番号 (省略時はカレントページ)、または * でカレントページの実際の入力順 |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
index ddea95d7c08c8b..5820d42d4bc0b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-horizontal-resizing
displayed_sidebar: docs
---
-**FORM GET HORIZONTAL RESIZING** ( *resize* {; *minWidth* {; *maxWidth*}} )
+**FORM GET HORIZONTAL RESIZING** ( *resize* : Boolean {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1077 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
index ef365b85c07810..43654bf97c4a7e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
@@ -5,16 +5,15 @@ slug: /commands/form-get-names
displayed_sidebar: docs
---
-**FORM GET NAMES** ( {*aTable* ;} *arrNames* {; *filter* {; *marker*}}{; *} )
+**FORM GET NAMES** ( {*aTable* : Table ;} *arrNames* : Text array {; *filter* : Text {; *marker* : Real}}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | テーブル参照 |
+| aTable | Table | → | テーブル参照 |
| arrNames | Text array | ← | フォーム名の配列 |
-| filter | Text | → | 名前のフィルター |
-| marker | Real | → | 返す最古のカウンター |
-| ← | 最新のカウンター |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| filter | Text | → | 名前のフィルター |
+| marker | Real | ↔ | *in:* Marker for minimum version to return
*out:* New value |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -67,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
index 27b63fb7d8627a..41dcc9bbc4f746 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
@@ -5,14 +5,14 @@ slug: /commands/form-get-objects
displayed_sidebar: docs
---
-**FORM GET OBJECTS** ( *objectsArray* {; *variablesArray* {; *pagesArray*}} {; *formPageOption*} )
**FORM GET OBJECTS** ( *objectsArray* {; *variablesArray* {; *pagesArray*}} {; *} )
+**FORM GET OBJECTS** ( *objectsArray* : Text array {; *variablesArray* : Pointer array {; *pagesArray* : Integer array}} {; *formPageOption* : 倍長整数, 演算子} )
**FORM GET OBJECTS** ( *objectsArray* : Text array {; *variablesArray* : Pointer array {; *pagesArray* : Integer array}} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| objectsArray | Text array | ← | フォームオブジェクト名 |
| variablesArray | Pointer array | ← | オブジェクトに関連付けられた 変数やフィールドへのポインタ |
-| pagesArray | Array integer | ← | オブジェクトごとのページ番号 |
-| formPageOption | * | 倍長整数, 演算子 | → | 1=Form current page, 2=Form all pages, 4=Form inherited
* 指定時(廃止予定) = Form current pageとForm inherited |
+| pagesArray | Integer array | ← | オブジェクトごとのページ番号 |
+| formPageOption | * | 倍長整数, 演算子 | → | 1=Form current page, 2=Form all pages, 4=Form inherited
* 指定時(廃止予定) = Form current pageとForm inherited |
@@ -129,6 +129,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 898 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
index 2d3b37be150633..c1d653eef9bc2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-properties
displayed_sidebar: docs
---
-**FORM GET PROPERTIES** ( {*aTable* ;} *formName* ; *width* ; *height* {; *numPages* {; *fixedWidth* {; *fixedHeight* {; *title*}}}} )
+**FORM GET PROPERTIES** ( {*aTable* : Table ;} *formName* : Text ; *width* : Integer ; *height* : Integer {; *numPages* : Integer {; *fixedWidth* : Boolean {; *fixedHeight* : Boolean {; *title* : Text}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フォームが属するテーブル、省略時はデフォルトテーブル |
-| formName | Text | → | フォーム名 |
+| aTable | Table | → | フォームが属するテーブル、省略時はデフォルトテーブル |
+| formName | Text | → | フォーム名 |
| width | Integer | ← | フォームの幅 (ピクセル) |
| height | Integer | ← | フォームの高さ (ピクセル) |
| numPages | Integer | ← | フォームのページ数 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 674 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
index 2ce481bbab6de5..4a4821685fd1e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-vertical-resizing
displayed_sidebar: docs
---
-**FORM GET VERTICAL RESIZING** ( *resize* {; *minHeight* {; *maxHeight*}} )
+**FORM GET VERTICAL RESIZING** ( *resize* : Boolean {; *minHeight* : Integer {; *maxHeight* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1078 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
index ba594cf0258074..835667031f7476 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
@@ -5,12 +5,12 @@ slug: /commands/form-goto-page
displayed_sidebar: docs
---
-**FORM GOTO PAGE** ( *pageNumber* {; *} )
+**FORM GOTO PAGE** ( *pageNumber* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pageNumber | Integer | → | 表示するフォームページ |
-| * | 演算子 | → | カレントサブフォームのページを変更 |
+| pageNumber | Integer | → | 表示するフォームページ |
+| * | 演算子 | → | カレントサブフォームのページを変更 |
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
index 2d9b73a7cfbb19..41b4d21b015684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
index 3bdf85138077bd..311975f772acca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
index 422d38bb5ec2cf..9e824b2fa3b1b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
index 84c569b3059e5f..64751030ae8954 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
@@ -5,14 +5,14 @@ slug: /commands/form-screenshot
displayed_sidebar: docs
---
-**FORM SCREENSHOT** ( {{*aTable* ;} *formName* ;} *formPict* {; *pageNum*} )
+**FORM SCREENSHOT** ( {{*aTable* : Table ;} *formName* : Text ;} *formPict* : Picture {; *pageNum* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フォームテーブル |
-| formName | Text | → | フォーム名 |
+| aTable | Table | → | フォームテーブル |
+| formName | Text | → | フォーム名 |
| formPict | Picture | ← | 第一引数が省略された場合実行中のフォームのピクチャー。フォーム名がが渡された場合フォームエディター中のフォームのピクチャー |
-| pageNum | Integer | → | フォームページ番号 |
+| pageNum | Integer | → | フォームページ番号 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 940 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
index 693c594258bc36..d30d1bc32cfb09 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-set-entry-order
displayed_sidebar: docs
---
-**FORM SET ENTRY ORDER** ( *objectNames* {; *pageNumber*} )
+**FORM SET ENTRY ORDER** ( *objectNames* : Text array {; *pageNumber* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectNames | Text array | → | 入力順に並べられたオブジェクト名の配列 |
-| pageNumber | Integer | → | 入力順を指定するページの番号 (省略時はカレントページ) |
+| objectNames | Text array | → | 入力順に並べられたオブジェクト名の配列 |
+| pageNumber | Integer | → | 入力順を指定するページの番号 (省略時はカレントページ) |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
index 07bddddce5e2f9..bf14010e968415 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-horizontal-resizing
displayed_sidebar: docs
---
-**FORM SET HORIZONTAL RESIZING** ( *resize* {; *minWidth* {; *maxWidth*}} )
+**FORM SET HORIZONTAL RESIZING** ( *resize* : Boolean {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resize | Boolean | → | True: フォームを横方向にリサイズ可能 False: フォームを横方向にリサイズ不可 |
-| minWidth | Integer | → | 最小幅 (ピクセル) |
-| maxWidth | Integer | → | 最大幅 (ピクセル) |
+| resize | Boolean | → | True: フォームを横方向にリサイズ可能 False: フォームを横方向にリサイズ不可 |
+| minWidth | Integer | → | 最小幅 (ピクセル) |
+| maxWidth | Integer | → | 最大幅 (ピクセル) |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 892 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
index 88232bcba283ce..633809050455d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-input
displayed_sidebar: docs
---
-**FORM SET INPUT** ( {*aTable* ;} *form* {; *userForm* {; *}} )
+**FORM SET INPUT** ( {*aTable* : Table ;} *form* : Text, Object {; *userForm* : Text {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 入力フォームを設定するテーブル, または 省略した場合、デフォルトテーブル |
-| form | Text, Object | → | (プロジェクトまたはテーブル)フォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
-| userForm | Text | → | 使用するユーザフォーム名 |
-| * | Operator | → | 自動ウィンドウサイズ |
+| aTable | Table | → | 入力フォームを設定するテーブル, または 省略した場合、デフォルトテーブル |
+| form | Text, Object | → | (プロジェクトまたはテーブル)フォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
+| userForm | Text | → | 使用するユーザフォーム名 |
+| * | Operator | → | 自動ウィンドウサイズ |
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 55 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
index f10a3533c4efc8..78dd6ea2a68522 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-output
displayed_sidebar: docs
---
-**FORM SET OUTPUT** ( {*aTable* ;} *form* {; *userForm*} )
+**FORM SET OUTPUT** ( {*aTable* : Table ;} *form* : Text, Object {; *userForm* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 出力フォームを設定するテーブル, または 省略した場合、デフォルトテーブル |
-| form | Text, Object | → | (プロジェクトまたはテーブル)フォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
-| userForm | Text | → | 使用するユーザフォーム名 |
+| aTable | Table | → | 出力フォームを設定するテーブル, または 省略した場合、デフォルトテーブル |
+| form | Text, Object | → | (プロジェクトまたはテーブル)フォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
+| userForm | Text | → | 使用するユーザフォーム名 |
@@ -75,6 +75,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 54 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
index 03786bff2aced9..b1dd52a306be3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-size
displayed_sidebar: docs
---
-**FORM SET SIZE** ( {*object* ;} *horizontal* ; *vertical* {; *} )
+**FORM SET SIZE** ( {*object* : Text ;} *horizontal* : Integer ; *vertical* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Text | → | フォームの境界を指定するオブジェクト名 |
-| horizontal | Integer | → | * が渡されていれば: 水平マージン (ピクセル) * が省略されていれば: 幅 (ピクセル) |
-| vertical | Integer | → | * が渡されていれば: 垂直マージン (ピクセル) * が省略されていれば: 高さ (ピクセル) |
-| * | 演算子 | → | 渡されれば: horizontalとvertical引数で 指定されたマージンを加える (自動サイズまたはobjectが指定されればそれを基ととしたサイズ) 省略すれば: horizontalとverticalをフォームの幅と高さにする |
+| object | Text | → | フォームの境界を指定するオブジェクト名 |
+| horizontal | Integer | → | * が渡されていれば: 水平マージン (ピクセル) * が省略されていれば: 幅 (ピクセル) |
+| vertical | Integer | → | * が渡されていれば: 垂直マージン (ピクセル) * が省略されていれば: 高さ (ピクセル) |
+| * | 演算子 | → | 渡されれば: horizontalとvertical引数で 指定されたマージンを加える (自動サイズまたはobjectが指定されればそれを基ととしたサイズ) 省略すれば: horizontalとverticalをフォームの幅と高さにする |
@@ -127,6 +127,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 891 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
index abd4765147f7a3..72ac5148a127e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-vertical-resizing
displayed_sidebar: docs
---
-**FORM SET VERTICAL RESIZING** ( *resize* {; *minHeight* {; *maxHeight*}} )
+**FORM SET VERTICAL RESIZING** ( *resize* : Boolean {; *minHeight* : Integer {; *maxHeight* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resize | Boolean | → | True: フォームを縦方向にリサイズ可 False: フォームを縦方向にリサイズ不可 |
-| minHeight | Integer | → | 最小高さ (ピクセル) |
-| maxHeight | Integer | → | 最大高さ (ピクセル) |
+| resize | Boolean | → | True: フォームを縦方向にリサイズ可 False: フォームを縦方向にリサイズ不可 |
+| minHeight | Integer | → | 最小高さ (ピクセル) |
+| maxHeight | Integer | → | 最大高さ (ピクセル) |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 893 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
index a166eb4aec3d10..ce9cbc4e3204c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1299 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
index 9e6a1d44fbeb48..13f51ccff01228 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-process
displayed_sidebar: docs
---
-**Frontmost process** {( * )} : Integer
+**Frontmost process** ( * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | フローティングウインドウ以外の最前面のプロセス番号 |
+| * | 演算子 | → | フローティングウインドウ以外の最前面のプロセス番号 |
| 戻り値 | Integer | ← | 最前面にあるウィンドウのプロセス番号 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
index 162a844127dcc6..3a053c6e6d522a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-window
displayed_sidebar: docs
---
-**Frontmost window** {( * )} : Integer
+**Frontmost window** ( * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, フローティングウィンドウを考慮する 省略時, フローティングウィンドウを無視 |
+| * | 演算子 | → | 指定時, フローティングウィンドウを考慮する 省略時, フローティングウィンドウを無視 |
| 戻り値 | Integer | ← | ウィンドウ参照番号 |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 447 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
index ba1a06f57dd2b0..9292e0bc53d37c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
@@ -5,14 +5,14 @@ slug: /commands/generate-certificate-request
displayed_sidebar: docs
---
-**GENERATE CERTIFICATE REQUEST** ( *privKey* ; *certifRequest* ; *codeArray* ; *nameArray* )
+**GENERATE CERTIFICATE REQUEST** ( *privKey* : Blob ; *certifRequest* : Blob ; *codeArray* : Integer array ; *nameArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| privKey | Blob | → | 秘密鍵BLOB |
+| privKey | Blob | → | 秘密鍵BLOB |
| certifRequest | Blob | ← | CSRを受け取るBLOB |
-| codeArray | Integer array | → | 情報コードリスト |
-| nameArray | Text array | → | 名前リスト |
+| codeArray | Integer array | → | 情報コードリスト |
+| nameArray | Text array | → | 名前リスト |
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 691 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
index 2e6bccbf0138ee..6cb8cda7d5e379 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
@@ -5,13 +5,13 @@ slug: /commands/generate-digest
displayed_sidebar: docs
---
-**Generate digest** ( *param* ; *algorithm* {; *} ) : Text
+**Generate digest** ( *param* : Blob, Text ; *algorithm* : Integer {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| param | Blob, Text | → | Digestキーを取得するBLOBやテキスト |
-| algorithm | Integer | → | キーの生成に使用するアルゴリズム0= MD5、1 = SHA1、 2=4Dダイジェスト |
-| * | 演算子 | → | ダイジェストをBase64URL でエンコード |
+| param | Blob, Text | → | Digestキーを取得するBLOBやテキスト |
+| algorithm | Integer | → | キーの生成に使用するアルゴリズム0= MD5、1 = SHA1、 2=4Dダイジェスト |
+| * | 演算子 | → | ダイジェストをBase64URL でエンコード |
| 戻り値 | Text | ← | Digestキーの値 |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
index 4448ce911d1778..496e01a2734e9b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
@@ -5,13 +5,13 @@ slug: /commands/generate-encryption-keypair
displayed_sidebar: docs
---
-**GENERATE ENCRYPTION KEYPAIR** ( *privKey* ; *pubKey* {; *length*} )
+**GENERATE ENCRYPTION KEYPAIR** ( *privKey* : Blob ; *pubKey* : Blob {; *length* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| privKey | Blob | ← | 秘密鍵を受け取るBLOB |
| pubKey | Blob | ← | 公開鍵を受け取るBLOB |
-| length | Integer | → | キー長 (ビット) [512...2048] デフォルト値 = 512 |
+| length | Integer | → | キー長 (ビット) [512...2048] デフォルト値 = 512 |
@@ -57,6 +57,6 @@ TLS/SSLプロトコルの暗号化機能はこの原理に基づいており、
| | |
| --- | --- |
| コマンド番号 | 688 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
index d6b58b73707161..dd9f04c6ef13bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/generate-password-hash
displayed_sidebar: docs
---
-**Generate password hash** ( *password* {; *options*} ) : Text
+**Generate password hash** ( *password* : Text {; *options* : Object} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| password | Text | → | ユーザーのパスワード。最初の72文字のみ使用。 |
-| options | Object | → | オプションを格納したオブジェクト |
+| password | Text | → | ユーザーのパスワード。最初の72文字のみ使用。 |
+| options | Object | → | オプションを格納したオブジェクト |
| 戻り値 | Text | ← | ハッシュされたパスワードを返します。 |
@@ -71,6 +71,6 @@ bcryptは、Blowfish暗号に基づいたパスワードハッシュ機能です
| | |
| --- | --- |
| コマンド番号 | 1533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
index f440fc73d0912e..08e4cec2cd5e9e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
@@ -5,12 +5,12 @@ slug: /commands/get-4d-file
displayed_sidebar: docs
---
-**Get 4D file** ( *file* {; *} ) : Text
+**Get 4D file** ( *file* : Integer {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| file | Integer | → | ファイルタイプ |
-| * | 演算子 | → | ホストデータベースのファイルを返す |
+| file | Integer | → | ファイルタイプ |
+| * | 演算子 | → | ホストデータベースのファイルを返す |
| 戻り値 | Text | ← | 指定したファイルのパス名 |
@@ -73,6 +73,6 @@ User settings file for data および User settings file の両ファイルに
| | |
| --- | --- |
| コマンド番号 | 1418 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
index 307e4b24592ac0..4d1b34a6f92be1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
@@ -5,13 +5,13 @@ slug: /commands/get-4d-folder
displayed_sidebar: docs
---
-**Get 4D folder** {( *folder* {; *options*} {; *})} : Text
+**Get 4D folder** ( *folder* : Integer {; *options* : Object} {; *}) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folder | Integer | → | フォルダータイプ (省略時 = Active 4D folder) |
-| options | Object | → | 4D Client database folder path configuration |
-| * | 演算子 | → | ホストデータベースのフォルダーを返す |
+| folder | Integer | → | フォルダータイプ (省略時 = Active 4D folder) |
+| options | Object | → | 4D Client database folder path configuration |
+| * | 演算子 | → | ホストデータベースのフォルダーを返す |
| 戻り値 | Text | ← | 指定したフォルダーのパス名 |
@@ -213,7 +213,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 485 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
index 1acdb2ceb8a1fa..5f03d2e6ec1037 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-blobs-cache-priority
displayed_sidebar: docs
---
-**Get adjusted blobs cache priority** ( *aTable* ) : Integer
+**Get adjusted blobs cache priority** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | "blob"優先度値を取得したいテーブル |
+| aTable | Table | → | "blob"優先度値を取得したいテーブル |
| 戻り値 | Integer | ← | "blob"フィールドのカレントの優先度値 |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1428 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
index 5b7b257a5bbd48..04c5302aa96a8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-index-cache-priority
displayed_sidebar: docs
---
-**Get adjusted index cache priority** ( *aField* ) : Integer
+**Get adjusted index cache priority** ( *aField* : Field ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | インデックスの優先度を取得したいフィールド |
+| aField | Field | → | インデックスの優先度を取得したいフィールド |
| 戻り値 | Integer | ← | インデックスのカレントの優先度値 |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1427 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
index 38f23a5882b0af..2bfba2b1119fcf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
@@ -5,11 +5,11 @@ slug: /commands/get-adjusted-table-cache-priority
displayed_sidebar: docs
---
-**Get adjusted table cache priority** ( *aTable* ) : Integer
+**Get adjusted table cache priority** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | スカラー優先度値を取得するテーブル |
+| aTable | Table | → | スカラー優先度値を取得するテーブル |
| 戻り値 | Integer | ← | スカラーフィールドのカレントの優先度値 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1426 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
index 945d6d6773af90..e9fdccd89f9bc8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/get-allowed-methods
displayed_sidebar: docs
---
-**GET ALLOWED METHODS** ( *methodsArray* )
+**GET ALLOWED METHODS** ( *methodsArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ GET ALLOWED METHODSコマンドは、[SET ALLOWED METHODS](../commands/set-allow
| | |
| --- | --- |
| コマンド番号 | 908 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
index 86fbccc19a94e3..62259ec7d9b499 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/get-application-color-scheme
displayed_sidebar: docs
---
-**Get Application color scheme** {( * )} : Text
+**Get Application color scheme** ( * ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | ホストデータベースのカラースキームを返す |
+| * | 演算子 | → | ホストデータベースのカラースキームを返す |
| 戻り値 | Text | ← | カレントアプリケーションのカラースキーム |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
index 18a880fd9450f6..4a5e7aeba83a28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1130 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
index cc69fd50a7a07e..db247010b15e15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/get-automatic-relations
displayed_sidebar: docs
---
-**GET AUTOMATIC RELATIONS** ( *one* ; *many* )
+**GET AUTOMATIC RELATIONS** ( *one* : Boolean ; *many* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 899 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
index d00eca84c9547f..b5abce4604f167 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1432 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
index a5f9db97cd1023..de7ea54a9d42fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 788 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
index 04610886c5dda4..c1f476b67c0c14 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-localization
displayed_sidebar: docs
---
-**Get database localization** {( {*languageType*}{;}{*} )} : Text
+**Get database localization** ( {*languageType* : Integer}{;}{*} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| languageType | Integer | → | ランゲージの種類 |
-| * | 演算子 | → | ホストデータベースについての情報を返す |
+| languageType | Integer | → | ランゲージの種類 |
+| * | 演算子 | → | ホストデータベースについての情報を返す |
| 戻り値 | Text | ← | データベースのカレントランゲージ |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1009 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
index 72a44938ecd316..86a4e862af352d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-parameter
displayed_sidebar: docs
---
-**Get database parameter** ( {*aTable* ;} *selector* {; *stringValue*} ) : Real
+**Get database parameter** ( {*aTable* : Table ;} *selector* : Integer {; *stringValue* : Text} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | パラメタを取得するテーブル、または 引数が省略された場合デフォルトテーブル |
-| selector | Integer | → | データベースパラメタコード |
+| aTable | Table | → | パラメタを取得するテーブル、または 引数が省略された場合デフォルトテーブル |
+| selector | Integer | → | データベースパラメタコード |
| stringValue | Text | ← | パラメタの文字列値 |
| 戻り値 | Real | ← | パラメタの現在の値 |
@@ -1077,6 +1077,6 @@ QUERY BY FORMULA Joinsセレクタで、カレントプロセスの、フォー
| | |
| --- | --- |
| コマンド番号 | 643 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
index 87486bb3e74f18..86e006b3f9fe78 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 826 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
index 8e210ed6229f20..14fbf3eca92304 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-document-icon
displayed_sidebar: docs
---
-**GET DOCUMENT ICON** ( *docPath* ; *icon* {; *size*} )
+**GET DOCUMENT ICON** ( *docPath* : Text ; *icon* : Picture, Picture {; *size* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| docPath | Text | → | アイコンを取得するドキュメントのパスまたは名前、 または空の文字列の場合標準のファイルを開くダイアログ |
+| docPath | Text | → | アイコンを取得するドキュメントのパスまたは名前、 または空の文字列の場合標準のファイルを開くダイアログ |
| icon | Picture, Picture | ← | ドキュメントアイコン |
-| size | Integer | → | 返されたピクチャのサイズ(ピクセルで) |
+| size | Integer | → | 返されたピクチャのサイズ(ピクセルで) |
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
index 83b29b1418f766..21cdc9426f0cc2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号 |
+| Time | Time | → | ドキュメント参照番号 |
| 戻り値 | Real | ← | ドキュメント開始位置からの ファイル位置(バイト単位) |
@@ -31,6 +31,6 @@ Get document positionは、ドキュメントの最初から見て、次の読
| | |
| --- | --- |
| コマンド番号 | 481 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
index fc0fb8bc5ca615..c4d15c8764903b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-properties
displayed_sidebar: docs
---
-**GET DOCUMENT PROPERTIES** ( *document* ; *locked* ; *invisible* ; created on ; created at ; modified on ; modified at )
+**GET DOCUMENT PROPERTIES** ( *document* : Text ; *locked* : Boolean ; *invisible* : Boolean ; created on ; created at ; modified on ; modified at )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメントの名前 |
+| document | Text | → | ドキュメントの名前 |
| locked | Boolean | ← | Trueの場合はロック、またはFalseの場合はアンロック |
| invisible | Boolean | ← | Trueの場合は非表示、またはFalseは表示 |
| created on | 日付 | ← | 作成日 |
@@ -205,7 +205,7 @@ return !01/01/95!+($timeStamp\86400)
| | |
| --- | --- |
| コマンド番号 | 477 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
index fe25b98f9e24e9..ad04b49fde4147 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/get-document-size
displayed_sidebar: docs
---
-**Get document size** ( *document* {; *} ) : Real
+**Get document size** ( *document* : Text, Time {; *} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text, Time | → | ドキュメント参照番号 または、ドキュメントの名前 |
-| * | 演算子 | → | Mac OSのみ: 省略した場合、データフォークのサイズ 指定した場合、リソースフォークのサイズ |
+| document | Text, Time | → | ドキュメント参照番号 または、ドキュメントの名前 |
+| * | 演算子 | → | Mac OSのみ: 省略した場合、データフォークのサイズ 指定した場合、リソースフォークのサイズ |
| 戻り値 | Real | ← | ドキュメントのサイズ(バイト単位) |
@@ -35,7 +35,7 @@ Macintoshでは、任意の引数 *\** を渡さない場合、データフォ
| | |
| --- | --- |
| コマンド番号 | 479 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
index afa0c5280308f1..4adb5223c9465d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 655 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
index ddaa8263ac6262..4f3be75dd166e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
@@ -5,11 +5,11 @@ slug: /commands/get-external-data-path
displayed_sidebar: docs
---
-**Get external data path** ( *aField* ) : Text
+**Get external data path** ( *aField* : Text, Blob, Picture ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Text, Blob, Picture | → | 外部ストレージの場所を取得するフィールド |
+| aField | Text, Blob, Picture | → | 外部ストレージの場所を取得するフィールド |
| 戻り値 | Text | ← | 外部ストレージファイルのフルパス名 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1133 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
index 3adc50e06477a3..528d6b3a6e37d5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-entry-properties
displayed_sidebar: docs
---
-**GET FIELD ENTRY PROPERTIES** ( *fieldPtr* ; *list* ; *mandatory* ; *nonEnterable* ; *nonModifiable* )
**GET FIELD ENTRY PROPERTIES** ( *tableNum* ; *fieldNum* ; *list* ; *mandatory* ; *nonEnterable* ; *nonModifiable* )
+**GET FIELD ENTRY PROPERTIES** ( *fieldPtr* : ポインター, 倍長整数 ; *list* : Text ; *mandatory* : Boolean ; *nonEnterable* : Boolean ; *nonModifiable* : Boolean )
**GET FIELD ENTRY PROPERTIES** ( *tableNum* : ポインター, 倍長整数 ; *fieldNum* : Integer ; *list* : Text ; *mandatory* : Boolean ; *nonEnterable* : Boolean ; *nonModifiable* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldPtr|tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
-| fieldNum | Integer | → | 第1引数がテーブル番号の場合、 フィールド番号 |
+| fieldPtr|tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
+| fieldNum | Integer | → | 第1引数がテーブル番号の場合、 フィールド番号 |
| list | Text | ← | 関連づけられた選択リストの名前、または空の文字列 |
| mandatory | Boolean | ← | True = 必須入力、 False = 任意 |
| nonEnterable | Boolean | ← | True = 表示のみ、 False = 入力可 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 685 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
index 1a770f0a195c72..4c10705f8b0fb8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-properties
displayed_sidebar: docs
---
-**GET FIELD PROPERTIES** ( *fieldPtr* ; *fieldType* {; *fieldLength* {; *indexed* {; *unique* {; *invisible*}}}} )
**GET FIELD PROPERTIES** ( *tableNum* ; *fieldNum* ; *fieldType* {; *fieldLength* {; *indexed* {; *unique* {; *invisible*}}}} )
+**GET FIELD PROPERTIES** ( *fieldPtr* : ポインター, 倍長整数 ; *fieldType* : Integer {; *fieldLength* : Integer {; *indexed* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
**GET FIELD PROPERTIES** ( *tableNum* : ポインター, 倍長整数 ; *fieldNum* : Integer ; *fieldType* : Integer {; *fieldLength* : Integer {; *indexed* : Boolean {; *unique* : Boolean {; *invisible* : Boolean}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldPtr | tableNum | ポインター, 倍長整数 | → | テーブル番号、またはフィールドポインタ |
-| fieldNum | Integer | → | テーブル番号を渡した場合は、フィールド番号 |
+| fieldPtr | tableNum | ポインター, 倍長整数 | → | テーブル番号、またはフィールドポインタ |
+| fieldNum | Integer | → | テーブル番号を渡した場合は、フィールド番号 |
| fieldType | Integer | ← | フィールドのタイプ |
| fieldLength | Integer | ← | 文字フィールドの場合、長さ |
| indexed | Boolean | ← | True = インデックス付き、False = インデックスなし |
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 258 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
index bf265a65e3b233..b1be16098ceac7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
@@ -5,14 +5,14 @@ slug: /commands/get-field-relation
displayed_sidebar: docs
---
-**GET FIELD RELATION** ( *manyField* ; *one* ; *many* {; *} )
+**GET FIELD RELATION** ( *manyField* : Field ; *one* : Integer ; *many* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| manyField | Field | → | リレート開始フィールド |
+| manyField | Field | → | リレート開始フィールド |
| one | Integer | ← | n対1リレートの状態 |
| many | Integer | ← | 1対nリレートの状態 |
-| * | 演算子 | → | 指定時: oneとmanyにはリレーション の現在の状態が返る (値は2または3のみ) 省略時 (デフォルト): プログラムでリレーションが 変更されていなければ、oneとmanyに1が返される |
+| * | 演算子 | → | 指定時: oneとmanyにはリレーション の現在の状態が返る (値は2または3のみ) 省略時 (デフォルト): プログラムでリレーションが 変更されていなければ、oneとmanyに1が返される |
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 920 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
index 4c180933ffecb0..91b0932bd932aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
@@ -5,11 +5,11 @@ slug: /commands/get-field-titles
displayed_sidebar: docs
---
-**GET FIELD TITLES** ( *aTable* ; *fieldTitles* ; *fieldNums* )
+**GET FIELD TITLES** ( *aTable* : Table ; *fieldTitles* : Text array ; *fieldNums* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フィールド名を取得したいテーブル |
+| aTable | Table | → | フィールド名を取得したいテーブル |
| fieldTitles | Text array | ← | カレントフィールドの名前 |
| fieldNums | Integer array | ← | フィールド番号 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 804 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
index 7d2e139b14d452..ce7aaf8860a05f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/get-file-from-pasteboard
displayed_sidebar: docs
---
-**Get file from pasteboard** ( *xIndex* ) : Text
+**Get file from pasteboard** ( *xIndex* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| xIndex | Integer | → | ドラッグアクションに含まれるx番目のファイル |
+| xIndex | Integer | → | ドラッグアクションに含まれるx番目のファイル |
| 戻り値 | Text | ← | ペーストボードから取り出した、ファイルのパス名 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 976 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
index 04b44b449ee963..8f0791268c33b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1738 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
index f1da449fe0dd32..2cb9c82df09cad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-group-list
displayed_sidebar: docs
---
-**GET GROUP LIST** ( *groupNames* ; *groupNumbers* )
+**GET GROUP LIST** ( *groupNames* : Text array ; *groupNumbers* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
index a02fb32b60c331..ecd547b3d05f2e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-group-properties
displayed_sidebar: docs
---
-**GET GROUP PROPERTIES** ( *groupID* ; *name* ; *owner* {; *members*} )
+**GET GROUP PROPERTIES** ( *groupID* : Integer ; *name* : Text ; *owner* : Integer {; *members* : Integer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| groupID | Integer | → | ユニークなグループID番号 |
+| groupID | Integer | → | ユニークなグループID番号 |
| name | Text | ← | グループの名前 |
| owner | Integer | ← | グループオーナーのユーザーID番号 (バイナリデータベースのみ) |
| members | Integer array | ← | グループメンバー |
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 613 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
index f0ba9df15c3d00..1c0e3010f8944e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlight
displayed_sidebar: docs
---
-**GET HIGHLIGHT** ( {* ;} *object* ; *startSel* ; *endSel* )
+**GET HIGHLIGHT** ( {* ;} *object* : Field, Variable, any ; *startSel* : Integer ; *endSel* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectはフィールドまたは変数 |
-| object | Field, Variable, any | → | オブジェクト名 (*指定時)、またはフィールドや変数 (*省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectはフィールドまたは変数 |
+| object | Field, Variable, any | → | オブジェクト名 (*指定時)、またはフィールドや変数 (*省略時) |
| startSel | Integer | ← | 反転表示された先頭位置 |
| endSel | Integer | ← | 反転表示された最終位置 |
@@ -68,6 +68,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 209 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
index 91eb6293f37cf3..da9dca17c557f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlighted-records
displayed_sidebar: docs
---
-**GET HIGHLIGHTED RECORDS** ( {*aTable* ;} *setName* )
+**GET HIGHLIGHTED RECORDS** ( {*aTable* : Table ;} *setName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | ハイライトされたレコードを読みだすテーブル 省略した場合、カレントフォームのテーブル |
-| setName | Text | → | ハイライトしたレコードを格納するセット |
+| aTable | Table | → | ハイライトされたレコードを読みだすテーブル 省略した場合、カレントフォームのテーブル |
+| setName | Text | → | ハイライトしたレコードを格納するセット |
@@ -48,7 +48,7 @@ GET HIGHLIGHTED RECORDSコマンドはフォーム以外のコンテキストで
| | |
| --- | --- |
| コマンド番号 | 902 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
index feae8fdb3b78a6..311e77c0b288bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
@@ -5,13 +5,13 @@ slug: /commands/get-indexed-string
displayed_sidebar: docs
---
-**Get indexed string** ( *resID* ; *strID* {; *resFile*} ) : Text
+**Get indexed string** ( *resID* : Integer ; *strID* : Integer {; *resFile* : Time} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resID | Integer | → | リソースID番号、または 'group'要素の'id'属性 (XLIFF) |
-| strID | Integer | → | ストリング番号、または 'trans-unit'要素の'id'属性 (XLIFF) |
-| resFile | Time | → | リソースファイル参照番号、または 省略時: すべてのXLIFFファイル、または 開かれているリソースファイル |
+| resID | Integer | → | リソースID番号、または 'group'要素の'id'属性 (XLIFF) |
+| strID | Integer | → | ストリング番号、または 'trans-unit'要素の'id'属性 (XLIFF) |
+| resFile | Time | → | リソースファイル参照番号、または 省略時: すべてのXLIFFファイル、または 開かれているリソースファイル |
| 戻り値 | Text | ← | インデックス付きストリングの値 |
@@ -50,7 +50,7 @@ Get indexed string コマンドは以下の値を返します:
| | |
| --- | --- |
| コマンド番号 | 510 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
index f6f3efc3177c8b..7f8e9e8cbb8b9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-font
displayed_sidebar: docs
---
-**Get list item font** ( {* ;} *list* ; *itemRef* ) : Text
**Get list item font** ( * ; *list* ; * ) : Text
+**Get list item font** ( {* ;} *list* : Integer, Text ; *itemRef* : 倍長整数, 演算子 ) : Text
**Get list item font** ( * ; *list* : Integer, Text ; * ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0 の場合最後に追加された項目 または *の場合リストのカレント項目 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0 の場合最後に追加された項目 または *の場合リストのカレント項目 |
| 戻り値 | Text | ← | フォント名 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 954 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
index de833eaceeb81d..abb241de463af1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-icon
displayed_sidebar: docs
---
-**GET LIST ITEM ICON** ( {* ;} *list* ; *itemRef* ; *icon* )
**GET LIST ITEM ICON** ( * ; *list* ; * ; *icon*
+**GET LIST ITEM ICON** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ; *icon* : Picture )
**GET LIST ITEM ICON** ( * ; *list* : Integer, Text ; * ; *icon* : Picture
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: リストのカレントの項目 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: リストのカレントの項目 |
| icon | Picture | ← | 項目に関連付けられたアイコン |
@@ -42,6 +42,6 @@ iconにはピクチャ変数を渡します。コマンド実行後、(スタテ
| | |
| --- | --- |
| コマンド番号 | 951 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
index 52ef57592fa292..7d975dd098c09c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-parameter-arrays
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* ; *itemRef* ; *arrSelection* {; *arrValues*} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *list* ; * ; *arrSelection* {; *arrValues*} )
+**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* : Integer, Text ; *itemRef* : 倍長整数, 演算子 ; *arrSelection* : Text array {; *arrValues* : Text array} )
**GET LIST ITEM PARAMETER ARRAYS** ( * ; *list* : Integer, Text ; * ; *arrSelection* : Text array {; *arrValues* : Text array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時listはオブジェクト名 (文字列)省略時listはリスト参照番号 |
-| list | Integer, Text | → | リストタイプのオブジェクト名 (* 指定時)またはリスト参照番号 (* 省略時) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号、または0 = リストに最後に追加された項目、または* = カレントリスト項目 |
+| * | 演算子 | → | 指定時listはオブジェクト名 (文字列)省略時listはリスト参照番号 |
+| list | Integer, Text | → | リストタイプのオブジェクト名 (* 指定時)またはリスト参照番号 (* 省略時) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号、または0 = リストに最後に追加された項目、または* = カレントリスト項目 |
| arrSelection | Text array | ← | パラメーター名配列 |
| arrValues | Text array | ← | パラメーター値配列 |
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1195 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
index 4e05d294dfbaf5..2169e6c3e888ed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
@@ -5,14 +5,14 @@ slug: /commands/get-list-item-parameter
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER** ( {* ;} *list* ; *itemRef* ; *selector* ; *value* )
**GET LIST ITEM PARAMETER** ( * ; *list* ; * ; *selector* ; *value* )
+**GET LIST ITEM PARAMETER** ( {* ;} *list* : Integer, Text ; *itemRef* : 倍長整数, 演算子 ; *selector* : Text ; *value* : Text, Boolean, Real )
**GET LIST ITEM PARAMETER** ( * ; *list* : Integer, Text ; * ; *selector* : Text ; *value* : Text, Boolean, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: カレントのリスト項目 |
-| selector | Text | → | パラメタ定数 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時) または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: カレントのリスト項目 |
+| selector | Text | → | パラメタ定数 |
| value | Text, Boolean, Real | ← | パラメタの現在値 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 985 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
index 01672e67ecbf9c..1ab8378b4432a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-properties
displayed_sidebar: docs
---
-**GET LIST ITEM PROPERTIES** ( {* ;} *list* ; *itemRef* ; *enterable* {; *styles* {; *icon* {; *color*}}} )
**GET LIST ITEM PROPERTIES** ( * ; *list* ; * ; *enterable* {; *styles* {; *icon* {; *color*}}} )
+**GET LIST ITEM PROPERTIES** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ; *enterable* : Boolean {; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}}} )
**GET LIST ITEM PROPERTIES** ( * ; *list* : Integer, Text ; * ; *enterable* : Boolean {; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: カレントのリスト項目 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: カレントのリスト項目 |
| enterable | Boolean | ← | TRUE = 入力可, FALSE = 入力不可 |
| styles | Integer | ← | 項目のフォントスタイル |
| icon | Text, Integer | ← | ピクチャー名または番号 |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 631 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
index 4dcecb44e9e6df..8df813fdcd2221 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item
displayed_sidebar: docs
---
-**GET LIST ITEM** ( {* ;} *list* ; *itemPos* ; *itemRef* ; *itemText* {; *sublist* ; *expanded*} )
**GET LIST ITEM** ( {* ;} *list* ; * ; *itemRef* ; *itemText* {; *sublist* ; *expanded*} )
+**GET LIST ITEM** ( {* ;} *list* : Integer, Text ; *itemPos* : 演算子, 倍長整数 ; *itemRef* : Integer ; *itemText* : Text {; *sublist* : Integer ; *expanded* : Boolean} )
**GET LIST ITEM** ( {* ;} *list* : Integer, Text ; * ; *itemRef* : Integer ; *itemText* : Text {; *sublist* : Integer ; *expanded* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemPos | * | 演算子, 倍長整数 | → | 展開/折りたたまれたリスト中の項目位置 * の場合、リスト中のカレント項目 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemPos | * | 演算子, 倍長整数 | → | 展開/折りたたまれたリスト中の項目位置 * の場合、リスト中のカレント項目 |
| itemRef | Integer | ← | 項目参照番号 |
| itemText | Text | ← | リスト項目テキスト |
| sublist | Integer | ← | サブリストリスト参照番号 (サブリストがある場合) |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 378 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
index 2100c6ecd47b24..f5e6b5452c0fdf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-list-properties
displayed_sidebar: docs
---
-**GET LIST PROPERTIES** ( *list* ; *appearance* {; *icon* {; *lineHeight* {; *doubleClick* {; *multiSelections* {; *editable*}}}}} )
+**GET LIST PROPERTIES** ( *list* : Integer ; *appearance* : Integer {; *icon* : Integer {; *lineHeight* : Integer {; *doubleClick* : Integer {; *multiSelections* : Integer {; *editable* : Integer}}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
+| list | Integer | → | リスト参照番号 |
| appearance | Integer | ← | リストの描画スタイル 1 = Macスタイル 2 = Windowsスタイル |
| icon | Integer | ← | *** 廃止予定、常に0を返します *** |
| lineHeight | Integer | ← | 行の最小高さ (ピクセル単位) |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 632 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
index d6418f5d0f9768..f04683cf2775da 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
@@ -5,11 +5,11 @@ slug: /commands/get-macro-parameter
displayed_sidebar: docs
---
-**GET MACRO PARAMETER** ( *selector* ; *textParam* )
+**GET MACRO PARAMETER** ( *selector* : Integer ; *textParam* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | 使用するセレクション |
+| selector | Integer | → | 使用するセレクション |
| textParam | Text | ← | 返されたテキスト |
@@ -40,6 +40,6 @@ Full method textを*selector*に渡すと、メソッドのテキストはすべ
| | |
| --- | --- |
| コマンド番号 | 997 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
index e0dcf2b2af084e..e011237ba0fce7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-bar-reference
displayed_sidebar: docs
---
-**Get menu bar reference** {( *process* )} : Text
+**Get menu bar reference** ( *process* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス参照番号 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Text | ← | メニューバーID |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 979 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
index bda71b70f106d9..e9bd4ecf647400 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/get-menu-item-icon
displayed_sidebar: docs
---
-**GET MENU ITEM ICON** ( *menu* ; *menuItem* ; *iconRef* {; *process*} )
+**GET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *iconRef* : Text, Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
| iconRef | Text, Integer | ← | メニュー項目に関連付けられたアイコンの ピクチャー名または番号 |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 983 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
index 0b1a53309d64df..cf15c7b27c1935 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-key
displayed_sidebar: docs
---
-**Get menu item key** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item key** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス番号 |
| 戻り値 | Integer | ← | メニュー項目に関連付ける 標準ショートカットキーの文字コード |
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 424 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
index 45539b4d76259c..4ac9e06390607c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-mark
displayed_sidebar: docs
---
-**Get menu item mark** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item mark** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス番号 |
| 戻り値 | Text | ← | カレントメニュー項目のマーク |
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 428 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
index df63dc410619a1..19aaea4fff6ddb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-method
displayed_sidebar: docs
---
-**Get menu item method** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item method** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス番号 |
| 戻り値 | Text | ← | メソッド名 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 981 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
index 29aef7eeae1737..636ce8dcc5c494 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-modifiers
displayed_sidebar: docs
---
-**Get menu item modifiers** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item modifiers** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス番号 |
| 戻り値 | Integer | ← | メニュー項目に割り当てられたモディファイアキー |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 980 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
index 2e6d5269425e11..4eb7b14f4608ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-item-parameter
displayed_sidebar: docs
---
-**Get menu item parameter** ( *menu* ; *menuItem* ) : Text
+**Get menu item parameter** ( *menu* : Integer, Text ; *menuItem* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
| 戻り値 | Text | ← | メニュー項目のカスタムパラメタ |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1003 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
index 41ffae363df63c..814c62279da2da 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/get-menu-item-property
displayed_sidebar: docs
---
-**GET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *property* ; *value* {; *process*} )
+**GET MENU ITEM PROPERTY** ( *menu* : Integer ; *menuItem* : Integer ; *property* : Text ; *value* : any {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| property | Text | → | プロパティタイプ |
+| menu | Integer | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| property | Text | → | プロパティタイプ |
| value | any | ← | プロパティ値 |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 972 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
index a67021fa4140ef..4c5631d1de7332 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-style
displayed_sidebar: docs
---
-**Get menu item style** ( *menu* ; *menuItem* {; *process*} ) : Integer
+**Get menu item style** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Integer | ← | 現在のメニュー項目スタイル |
@@ -52,7 +52,7 @@ Get menu item style はテーマの定義済み定数 (ひとつまたは和)
| | |
| --- | --- |
| コマンド番号 | 426 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
index 17db80776a97b4..c2fdb67557b0b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item
displayed_sidebar: docs
---
-**Get menu item** ( *menu* ; *menuItem* {; *process*} ) : Text
+**Get menu item** ( *menu* : Integer, Text ; *menuItem* : Integer {; *process* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Text | ← | メニュー項目のテキスト |
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
index 2f154237d29009..f1c3e51b6aeb04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-items
displayed_sidebar: docs
---
-**GET MENU ITEMS** ( *menu* ; *menuTitlesArray* ; *menuRefsArray* )
+**GET MENU ITEMS** ( *menu* : Integer, Text ; *menuTitlesArray* : Text array ; *menuRefsArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
| menuTitlesArray | Text array | ← | メニュータイトル配列 |
| menuRefsArray | Text array | ← | メニュー参照配列 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 977 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
index 132ccdbf3bedc9..e90d8d210ca715 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-title
displayed_sidebar: docs
---
-**Get menu title** ( *menu* {; *process*} ) : Text
+**Get menu title** ( *menu* : Integer, Text {; *process* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| process | Integer | → | プロセス参照番号 |
| 戻り値 | Text | ← | メニューのタイトル |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 430 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
index 5ec6b257cd720d..744b1ada693289 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
@@ -5,7 +5,7 @@ slug: /commands/get-missing-table-names
displayed_sidebar: docs
---
-**GET MISSING TABLE NAMES** ( *missingTables* )
+**GET MISSING TABLE NAMES** ( *missingTables* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1125 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
index 7878b064a81430..69a167589c685f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
@@ -5,13 +5,13 @@ slug: /commands/get-pasteboard-data-type
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA TYPE** ( *4Dsignatures* ; *nativeTypes* {; *formatNames*} )
+**GET PASTEBOARD DATA TYPE** ( *4Dsignatures* : Text array ; *nativeTypes* : Text array {; *formatNames* : Text array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| 4Dsignatures | Text array | ← | データタイプの4D シグネチャ |
| nativeTypes | Text array | ← | ネイティブデータタイプ |
-| formatNames | Text array | ← | フォーマット名|
+| formatNames | Text array | ← | フォーマット名 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 958 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
index c6af1521379259..a8d45430a44f01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
@@ -5,11 +5,11 @@ slug: /commands/get-pasteboard-data
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA** ( *dataType* ; *data* )
+**GET PASTEBOARD DATA** ( *dataType* : Text ; *data* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dataType | Text | → | ペーストボードから取り出すデータのタイプ |
+| dataType | Text | → | ペーストボードから取り出すデータのタイプ |
| data | Blob | ← | ペーストボードから取り出されたデータ |
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 401 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
index f4993d0a701c38..1d6471788c45c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-file-name
displayed_sidebar: docs
---
-**Get picture file name** ( *picture* ) : Text
+**Get picture file name** ( *picture* : Picture, Picture ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture, Picture | → | デフォルト名を取得するピクチャー |
+| picture | Picture, Picture | → | デフォルト名を取得するピクチャー |
| 戻り値 | Text | ← | ピクチャーファイルのデフォルト名 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1171 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
index f941f3d3a6bd9c..a3d93cc5bff9a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-formats
displayed_sidebar: docs
---
-**GET PICTURE FORMATS** ( *picture* ; *codecIDs* )
+**GET PICTURE FORMATS** ( *picture* : Picture ; *codecIDs* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | 解析するピクチャーフィールドあるいは変数 |
+| picture | Picture | → | 解析するピクチャーフィールドあるいは変数 |
| codecIDs | Text array | ← | ピクチャーのコーデックID |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1406 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
index 945f2a2520ef85..22d5bd013604fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-from-library
displayed_sidebar: docs
---
-**GET PICTURE FROM LIBRARY** ( *picRef * ; *picture* )
**GET PICTURE FROM LIBRARY** ( *picName* ; *picture* )
+**GET PICTURE FROM LIBRARY** ( *picRef* : 倍長整数, 文字 ; *picture* : Picture )
**GET PICTURE FROM LIBRARY** ( *picName* : 倍長整数, 文字 ; *picture* : Picture )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picRef | picName | 倍長整数, 文字 | → | ピクチャライブラリ画像の参照番号 または ピクチャライブラリ画像の名前 |
+| picRef | picName | 倍長整数, 文字 | → | ピクチャライブラリ画像の参照番号 または ピクチャライブラリ画像の名前 |
| picture | Picture | ← | ピクチャライブラリのピクチャ |
@@ -66,7 +66,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
index 2b6bd61cf1df43..156d02f7ebd128 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-pasteboard
displayed_sidebar: docs
---
-**GET PICTURE FROM PASTEBOARD** ( *picture* )
+**GET PICTURE FROM PASTEBOARD** ( *picture* : Picture )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 522 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
index d25e7f7578125b..e8050b3786576f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-picture-keywords
displayed_sidebar: docs
---
-**GET PICTURE KEYWORDS** ( *picture* ; *arrKeywords* {; *} )
+**GET PICTURE KEYWORDS** ( *picture* : Picture, Picture ; *arrKeywords* : Text array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture, Picture | → | 割り当てられたキーワードを取得するピクチャー |
+| picture | Picture, Picture | → | 割り当てられたキーワードを取得するピクチャー |
| arrKeywords | Text array | ← | キーワードを受け取る配列 |
-| * | 演算子 | → | 指定時: 重複するキーワードを取り除く |
+| * | 演算子 | → | 指定時: 重複するキーワードを取り除く |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1142 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
index 6efa86f95fbc64..cd5fa897d1a201 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
@@ -5,12 +5,12 @@ slug: /commands/get-picture-metadata
displayed_sidebar: docs
---
-**GET PICTURE METADATA** ( *picture* ; *metaName* ; *metaContents* {; *metaName2* ; *metaContents2* ; ... ; *metaNameN* ; *metaContentsN*} )
+**GET PICTURE METADATA** ( *picture* : Picture ; *metaName* : Text ; *metaContents* : Variable {; ...(*metaName* : Text, *metaContents* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | メタデータを読むピクチャ |
-| metaName | Text | → | 取得するブロックの名前またはパス |
+| picture | Picture | → | メタデータを読むピクチャ |
+| metaName | Text | → | 取得するブロックの名前またはパス |
| metaContents | Variable | ← | メタデータの内容 |
@@ -106,7 +106,7 @@ DOMツリーストラクチャを使用する
| | |
| --- | --- |
| コマンド番号 | 1122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
index c282081a7408e1..eafd4aea2f3928 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
@@ -5,14 +5,13 @@ slug: /commands/get-picture-resource
displayed_sidebar: docs
---
-**GET PICTURE RESOURCE** ( *resID* ; *resData* {; *resFile*} )
+**GET PICTURE RESOURCE** ( *resID* : Integer ; *resData* : Field, Variable {; *resFile* : Time} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resID | Integer | → | リソースID番号 |
-| resData | Field, Variable | → | ピクチャを受け取る、ピクチャフィールドまたは変数 |
-| ← | PICTリソースの内容 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resID | Integer | → | リソースID番号 |
+| resData | Field, Variable | ↔ | *in:* Picture field or variable to receive the picture
*out:* Contents of the PICT resource |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
@@ -47,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
index 2b0275de76d7b6..eb23d29d18dd12 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
@@ -5,11 +5,11 @@ slug: /commands/get-plugin-access
displayed_sidebar: docs
---
-**Get plugin access** ( *plugIn* ) : Text
+**Get plugin access** ( *plugIn* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| plugIn | Integer | → | プラグイン番号 |
+| plugIn | Integer | → | プラグイン番号 |
| 戻り値 | Text | ← | プラグインに割り当てられたグループ名 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 846 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
index 0a8be1a4e15785..5d447b3f67d062 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/get-pointer
displayed_sidebar: docs
---
-**Get pointer** ( *varName* ) : Pointer
+**Get pointer** ( *varName* : Text ) : Pointer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| varName | Text | → | プロセスまたはインタプロセス変数の名前 |
+| varName | Text | → | プロセスまたはインタプロセス変数の名前 |
| 戻り値 | Pointer | ← | プロセスまたはインタープロセス変数へのポインタ |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 304 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
index b8a71ac5e221b9..b4c5e6b5a5ba7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-marker
displayed_sidebar: docs
---
-**Get print marker** ( *markNum* ) : Integer
+**Get print marker** ( *markNum* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| markNum | Integer | → | マーカ番号 |
+| markNum | Integer | → | マーカ番号 |
| 戻り値 | Integer | ← | マーカの位置 |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 708 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
index 4ddc1911446ce9..ea59251d3d5597 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-option
displayed_sidebar: docs
---
-**GET PRINT OPTION** ( *option* ; *value1* {; *value2*} )
+**GET PRINT OPTION** ( *option* : Integer ; *value1* : Integer, Text {; *value2* : Integer, Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | オプション番号 |
+| option | Integer | → | オプション番号 |
| value1 | Integer, Text | ← | オプションの値1 |
| value2 | Integer, Text | ← | オプションの値2 |
@@ -55,7 +55,7 @@ PDFオプションコードは2つの部分、OptionT*ype*と*OptionName*から
| | |
| --- | --- |
| コマンド番号 | 734 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
index 836ad1e9a477a6..d584fce46326f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
index a4a17ccb33c994..774e8cf739e459 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-area
displayed_sidebar: docs
---
-**GET PRINTABLE AREA** ( *height* {; *width*} )
+**GET PRINTABLE AREA** ( *height* : Integer {; *width* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 703 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
index c57e4848a857fc..b762b73ddb6595 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-margin
displayed_sidebar: docs
---
-**GET PRINTABLE MARGIN** ( *left* ; *top* ; *right* ; *bottom* )
+**GET PRINTABLE MARGIN** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 711 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
index d309979812a359..18da94eb4926c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 702 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
index de15bfb2e5c251..2c450834766940 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
@@ -5,12 +5,12 @@ slug: /commands/get-process-variable
displayed_sidebar: docs
---
-**GET PROCESS VARIABLE** ( *process* ; *srcVar* ; *dstVar* {; *srcVar2* ; *dstVar2* ; ... ; *srcVarN* ; *dstVarN*} )
+**GET PROCESS VARIABLE** ( *process* : Integer ; *srcVar* : Variable ; *dstVar* : Variable {; ...(*srcVar* : Variable, *dstVar* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | ソースプロセス番号 |
-| srcVar | Variable | → | ソース変数 |
+| process | Integer | → | ソースプロセス番号 |
+| srcVar | Variable | → | ソース変数 |
| dstVar | Variable | ← | 受け取る変数 |
@@ -122,6 +122,6 @@ DRAG AND DROP PROPERTIESコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 371 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
index 81fe8012aa89a0..efcc2f013547fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/get-query-destination
displayed_sidebar: docs
---
-**GET QUERY DESTINATION** ( *destinationType* ; *destinationObject* ; *destinationPtr* )
+**GET QUERY DESTINATION** ( *destinationType* : Integer ; *destinationObject* : Text ; *destinationPtr* : Pointer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
index 9d767b43102cc0..2053a944110261 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
index 2e70cad0cc3c1e..8ea3c65ecb4fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
@@ -5,7 +5,7 @@ slug: /commands/get-registered-clients
displayed_sidebar: docs
---
-**GET REGISTERED CLIENTS** ( *clientList* ; *methods* )
+**GET REGISTERED CLIENTS** ( *clientList* : Text array ; *methods* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 650 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
index fdc2cffb7b6fdd..41beec9609ab90 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-relation-properties
displayed_sidebar: docs
---
-**GET RELATION PROPERTIES** ( *fieldPtr* ; *oneTable* ; *oneField* {; *choiceField* {; *autoOne* {; *autoMany*}}} )
**GET RELATION PROPERTIES** ( *tableNum* ; *fieldNum* ; *oneTable* ; *oneField* {; *choiceField* {; *autoOne* {; *autoMany*}}} )
+**GET RELATION PROPERTIES** ( *fieldPtr* : ポインター, 倍長整数 ; *oneTable* : Integer ; *oneField* : Integer {; *choiceField* : Integer {; *autoOne* : Boolean {; *autoMany* : Boolean}}} )
**GET RELATION PROPERTIES** ( *tableNum* : ポインター, 倍長整数 ; *fieldNum* : Integer ; *oneTable* : Integer ; *oneField* : Integer {; *choiceField* : Integer {; *autoOne* : Boolean {; *autoMany* : Boolean}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldPtr|tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
-| fieldNum | Integer | → | 第一引数がテーブル番号の場合、 フィールド番号 |
+| fieldPtr|tableNum | ポインター, 倍長整数 | → | フィールドポインタ、またはテーブル番号 |
+| fieldNum | Integer | → | 第一引数がテーブル番号の場合、 フィールド番号 |
| oneTable | Integer | ← | 1テーブルのテーブル番号、または リレーションが未定義の場合は0(ゼロ) |
| oneField | Integer | ← | 1フィールド番号、または リレーションが未定義の場合は0(ゼロ) |
| choiceField | Integer | ← | 選択フィールド番号、または選択フィールドが未定義の場合は0(ゼロ) |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 686 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
index d9e4594090def9..d5666d96645d63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-name
displayed_sidebar: docs
---
-**Get resource name** ( *resType* ; *resID* {; *resFile*} ) : Text
+**Get resource name** ( *resType* : Text ; *resID* : Integer {; *resFile* : Time} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resType | Text | → | 4文字のリソースタイプ |
-| resID | Integer | → | リソースID番号 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resType | Text | → | 4文字のリソースタイプ |
+| resID | Integer | → | リソースID番号 |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
| 戻り値 | Text | ← | リソースの名前 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 513 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
index b58cf82f751541..38c732f05e79dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-properties
displayed_sidebar: docs
---
-**Get resource properties** ( *resType* ; *resID* {; *resFile*} ) : Integer
+**Get resource properties** ( *resType* : Text ; *resID* : Integer {; *resFile* : Time} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resType | Text | → | 4文字のリソースタイプ |
-| resID | Integer | → | リソースID番号 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resType | Text | → | 4文字のリソースタイプ |
+| resID | Integer | → | リソースID番号 |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
| 戻り値 | Integer | ← | リソースの属性 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 515 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
index fdce7c0e787064..4843e0a6574942 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
@@ -5,15 +5,14 @@ slug: /commands/get-resource
displayed_sidebar: docs
---
-**GET RESOURCE** ( *resType* ; *resID* ; *resData* {; *resFile*} )
+**GET RESOURCE** ( *resType* : Text ; *resID* : Integer ; *resData* : Blob {; *resFile* : Time} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resType | Text | → | 4文字のリソースタイプ |
-| resID | Integer | → | リソースID番号 |
-| resData | Blob | → | データを受け取るBLOBフィールドまたは変数 |
-| ← | リソースの内容 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resType | Text | → | 4文字のリソースタイプ |
+| resID | Integer | → | リソースID番号 |
+| resData | Blob | ↔ | *in:* BLOB field or variable to receive the data
*out:* Contents of the resource |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
@@ -33,9 +32,6 @@ displayed_sidebar: docs
Mac OSベースのリソースに対して作業していることを忘れないでください。プラットフォームが何であろうと、倍長整数のような内部リソースデータは Macintoshバイトオーダーで格納されます。Windows上では、(ストリングリストリソースおよびピクチャリソース等の) 標準リソースデータは必要に応じて自動的にバイトスワップされます。これに対して、カスタム内部データストラクチャを作成および使用する場合は、BLOB から取り出すデータのバイトスワップは開発者に任されています ([BLOB to longint](blob-to-longint.md "BLOB to longint")コマンドにMacintosh byte ordering定数を渡すなど)。
-## 例題
-
-SET RESOURCEコマンドの例題参照
## システム変数およびセット
@@ -54,7 +50,7 @@ SET RESOURCEコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 508 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
index 68346ae4a3058e..c587b549c21a34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1005 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
index 51091cbd510a69..5cc8c65e2c3664 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
@@ -5,7 +5,7 @@ slug: /commands/get-serial-port-mapping
displayed_sidebar: docs
---
-**GET SERIAL PORT MAPPING** ( *numArray* ; *nameArray* )
+**GET SERIAL PORT MAPPING** ( *numArray* : Integer array ; *nameArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Mac OS Xでは、USBシリアルアダプターの使用時に、OSがポート
| | |
| --- | --- |
| コマンド番号 | 909 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
index 7a83886e4b4633..f35b6c07bcffa1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-string-resource
displayed_sidebar: docs
---
-**Get string resource** ( *resID* {; *resFile*} ) : Text
+**Get string resource** ( *resID* : Integer {; *resFile* : Time} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resID | Integer | → | リソースID番号 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resID | Integer | → | リソースID番号 |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
| 戻り値 | Text | ← | 'STR 'リソースの内容 |
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 506 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
index 108a98e9bbdf5f..d429a5527bd1e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
@@ -5,11 +5,11 @@ slug: /commands/get-style-sheet-info
displayed_sidebar: docs
---
-**GET STYLE SHEET INFO** ( *styleSheetName* ; *font* ; *size* ; *styles* )
+**GET STYLE SHEET INFO** ( *styleSheetName* : Text ; *font* : Text ; *size* : Integer ; *styles* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| styleSheetName | Text | → | スタイルシート名 |
+| styleSheetName | Text | → | スタイルシート名 |
| font | Text | ← | フォント名 |
| size | Integer | ← | フォントサイズ |
| styles | Integer | ← | 書体 |
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1256 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
index 9818dd3a325f15..8177a41b2a6859 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
@@ -5,11 +5,11 @@ slug: /commands/get-subrecord-key
displayed_sidebar: docs
---
-**Get subrecord key** ( *idField* ) : Integer
+**Get subrecord key** ( *idField* : Field ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| idField | Field | → | 以前のサブテーブルリレーションの"サブテーブルリレーション"または"倍長整数"型のフィールド |
+| idField | Field | → | 以前のサブテーブルリレーションの"サブテーブルリレーション"または"倍長整数"型のフィールド |
| 戻り値 | Integer | ← | リレーションの内部キー |
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1137 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
index b8a390f0393535..37c68052591dcf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
@@ -5,11 +5,11 @@ slug: /commands/get-system-format
displayed_sidebar: docs
---
-**GET SYSTEM FORMAT** ( *format* ; *value* )
+**GET SYSTEM FORMAT** ( *format* : Integer ; *value* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| format | Integer | → | 取得するシステムフォーマット |
+| format | Integer | → | 取得するシステムフォーマット |
| value | Text | ← | システムで定義されるフォーマットの値 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 994 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
index 1c30fd45d65722..1ea7a3230a52dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-table-properties
displayed_sidebar: docs
---
-**GET TABLE PROPERTIES** ( tablePtr| tableNum ; *invisible* {; *trigSaveNew* {; *trigSaveRec* {; *trigDelRec* {; *trigLoadRec*}}}} )
+**GET TABLE PROPERTIES** ( tablePtr| tableNum ; *invisible* : Boolean {; *trigSaveNew* : Boolean {; *trigSaveRec* : Boolean {; *trigDelRec* : Boolean {; *trigLoadRec* : Boolean}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tablePtr| tableNum | ポインター, 倍長整数 | → | テーブルポインタ、またはテーブル番号 |
+| tablePtr| tableNum | ポインター, 倍長整数 | → | テーブルポインタ、またはテーブル番号 |
| invisible | Boolean | ← | True = 非表示、False = 表示 |
| trigSaveNew | Boolean | ← | True = トリガ“新規レコード保存時”が有効、 False = それ以外 |
| trigSaveRec | Boolean | ← | True = トリガ“既存レコード保存時”が有効、 False = それ以外 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 687 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
index 084e54d7209698..3ca88c3dd7ca23 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
@@ -5,7 +5,7 @@ slug: /commands/get-table-titles
displayed_sidebar: docs
---
-**GET TABLE TITLES** ( *tableTitles* ; *tableNums* )
+**GET TABLE TITLES** ( *tableTitles* : Text array ; *tableNums* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 803 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
index 9a628be006f188..63b96cae74c099 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 524 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
index 706414d574f5ca..cf95cefd4b1064 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-text-keywords
displayed_sidebar: docs
---
-**GET TEXT KEYWORDS** ( *text* ; *arrKeywords* {; *} )
+**GET TEXT KEYWORDS** ( *text* : Text ; *arrKeywords* : Text array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| text | Text | → | 元のテキスト |
+| text | Text | → | 元のテキスト |
| arrKeywords | Text array | ← | キーワードを受け取る配列 |
-| * | 演算子 | → | 指定した場合、ユニークキーワード |
+| * | 演算子 | → | 指定した場合、ユニークキーワード |
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1141 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
index 0b2b1476a8cb4a..97f6c65b29de8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-text-resource
displayed_sidebar: docs
---
-**Get text resource** ( *resID* {; *resFile*} ) : Text
+**Get text resource** ( *resID* : Integer {; *resFile* : Time} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resID | Integer | → | リソースID番号 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resID | Integer | → | リソースID番号 |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
| 戻り値 | Text | ← | TEXTリソースの内容 |
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 504 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
index 6c00a8147d979e..2354a877c0ef82 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-user-list
displayed_sidebar: docs
---
-**GET USER LIST** ( *userNames* ; *userNumbers* )
+**GET USER LIST** ( *userNames* : Text array ; *userNumbers* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 609 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
index e2b2ece7328d32..2568f2ba279f0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-user-properties
displayed_sidebar: docs
---
-**GET USER PROPERTIES** ( *userID* ; *name* ; *startup* ; *password* ; *nbLogin* ; *lastLogin* {; *memberships* {; *groupOwner*}} )
+**GET USER PROPERTIES** ( *userID* : Integer ; *name* : Text ; *startup* : Text ; *password* : Text ; *nbLogin* : Integer ; *lastLogin* : Date {; *memberships* : Integer array {; *groupOwner* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userID | Integer | → | ユニークなユーザーID番号 |
+| userID | Integer | → | ユニークなユーザーID番号 |
| name | Text | ← | ユーザー名 |
| startup | Text | ← | スタートアップメソッドの名前 |
| password | Text | ← | 常に空の文字列 |
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 611 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
index 5af6ba2c080cea..3889a359ae83af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-rect
displayed_sidebar: docs
---
-**GET WINDOW RECT** ( *left* ; *top* ; *right* ; *bottom* {; *window*} )
+**GET WINDOW RECT** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *window* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| top | Integer | ← | ウィンドウの内容領域の上座標 |
| right | Integer | ← | ウィンドウの内容領域の右座標 |
| bottom | Integer | ← | ウィンドウの内容領域の下座標 |
-| window | Integer | → | ウィンドウ参照番号, または 省略時はカレントプロセスの最前面ウィンドウ, または -1のときはMDIウィンドウ (Windows) |
+| window | Integer | → | ウィンドウ参照番号, または 省略時はカレントプロセスの最前面ウィンドウ, または -1のときはMDIウィンドウ (Windows) |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 443 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
index fc8f421b680f1c..581f2d2295e977 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
@@ -5,11 +5,11 @@ slug: /commands/get-window-title
displayed_sidebar: docs
---
-**Get window title** {( *window* )} : Text
+**Get window title** ( *window* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号, または 省略時はカレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号, または 省略時はカレントプロセスの最前面ウィンドウ |
| 戻り値 | Text | ← | ウィンドウタイトル |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 450 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
index bb96181d7815db..3cdc070660c21e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
@@ -5,12 +5,12 @@ slug: /commands/goto-object
displayed_sidebar: docs
---
-**GOTO OBJECT** ( {* ;} *object* )
+**GOTO OBJECT** ( {* ;} *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定した場合 = objectはオブジェクト名 (文字列) 省略した場合 = object はフィールドまたは変数参照 |
-| object | Field, Variable | → | オブジェクト名 (* を指定した場合) または フィールドまたは変数 (* を省略した場合) |
+| * | 演算子 | → | 指定した場合 = objectはオブジェクト名 (文字列) 省略した場合 = object はフィールドまたは変数参照 |
+| object | Field, Variable | → | オブジェクト名 (* を指定した場合) または フィールドまたは変数 (* を省略した場合) |
@@ -55,6 +55,6 @@ GOTO OBJECTコマンドは以下のように使用します:
| | |
| --- | --- |
| コマンド番号 | 206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
index f05640a1d077dc..c39152d6f7d3cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-record
displayed_sidebar: docs
---
-**GOTO RECORD** ( {*aTable* ;} *record* )
+**GOTO RECORD** ( {*aTable* : Table ;} *record* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードを移動するテーブル, または 省略時、デフォルトテーブル |
-| record | Integer | → | Record numberで返される番号 |
+| aTable | Table | → | レコードを移動するテーブル, または 省略時、デフォルトテーブル |
+| record | Integer | → | Record numberで返される番号 |
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 242 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
index 5db38ec2c90cf1..83c8f5c400bc51 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-selected-record
displayed_sidebar: docs
---
-**GOTO SELECTED RECORD** ( {*aTable* ;} *record* )
+**GOTO SELECTED RECORD** ( {*aTable* : Table ;} *record* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 指定したレコードをカレントレコードとするテーブル, または 省略時、デフォルトテーブル |
-| record | Integer | → | セレクション中のレコード位置番号 |
+| aTable | Table | → | 指定したレコードをカレントレコードとするテーブル, または 省略時、デフォルトテーブル |
+| record | Integer | → | セレクション中のレコード位置番号 |
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 245 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
index 49bf384c569410..87c1a76fbf4f1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
@@ -5,12 +5,12 @@ slug: /commands/goto-xy
displayed_sidebar: docs
---
-**GOTO XY** ( *x* ; *y* )
+**GOTO XY** ( *x* : Integer ; *y* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| x | Integer | → | x カーソルの水平位置 |
-| y | Integer | → | y カーソルの垂直位置 |
+| x | Integer | → | x カーソルの水平位置 |
+| y | Integer | → | y カーソルの垂直位置 |
@@ -64,6 +64,6 @@ GOTO XY コマンドでカーソルの位置を指定してから、[MESSAGE](me
| | |
| --- | --- |
| コマンド番号 | 161 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
index 5f976c797b7f6c..e6e0263507f7c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
@@ -5,19 +5,19 @@ slug: /commands/graph-settings
displayed_sidebar: docs
---
-**GRAPH SETTINGS** ( *graph* ; *xmin* ; *xmax* ; *ymin* ; *ymax* ; *xprop* ; *xgrid* ; *ygrid* ; *title* {; *title2* ; ... ; *titleN*} )
+**GRAPH SETTINGS** ( *graph* : Picture ; *xmin* : Integer, Date, Time ; *xmax* : Integer, Date, Time ; *ymin* : Integer ; *ymax* : Integer ; *xprop* : Boolean ; *xgrid* : Boolean ; *ygrid* : Boolean ; *title* : Text {; *...title* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| graph | Picture | → | グラフエリアまたはピクチャ変数 |
-| xmin | Integer, Date, Time | → | 比例グラフのx軸の最小値 (線または点グラフのプロットのみ) |
-| xmax | Integer, Date, Time | → | 比例グラフのx軸の最大値 (線または点グラフのプロットのみ) |
-| ymin | Integer | → | y軸の最小値 |
-| ymax | Integer | → | y軸の最大値 |
-| xprop | Boolean | → | TRUE: プロポーショナルX軸; FALSE: 通常のX軸 (線または点グラフのプロットのみ) |
-| xgrid | Boolean | → | TRUE: X軸グリッド; FALSE: X軸グリッドなし (xprop=TRUEの場合のみ) |
-| ygrid | Boolean | → | TRUE: Y軸グリッド; FALSE:Y軸グリッドなし |
-| title | Text | → | 凡例 |
+| graph | Picture | → | グラフエリアまたはピクチャ変数 |
+| xmin | Integer, Date, Time | → | 比例グラフのx軸の最小値 (線または点グラフのプロットのみ) |
+| xmax | Integer, Date, Time | → | 比例グラフのx軸の最大値 (線または点グラフのプロットのみ) |
+| ymin | Integer | → | y軸の最小値 |
+| ymax | Integer | → | y軸の最大値 |
+| xprop | Boolean | → | TRUE: プロポーショナルX軸; FALSE: 通常のX軸 (線または点グラフのプロットのみ) |
+| xgrid | Boolean | → | TRUE: X軸グリッド; FALSE: X軸グリッドなし (xprop=TRUEの場合のみ) |
+| ygrid | Boolean | → | TRUE: Y軸グリッド; FALSE:Y軸グリッドなし |
+| title | Text | → | 凡例 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
index f385fa81e5e189..08c56efebb529b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
@@ -5,14 +5,14 @@ slug: /commands/graph
displayed_sidebar: docs
---
-**GRAPH** ( *graphArea* ; *graphNumber* ; *xLabels* {; *yElements*} {; *yElements2* ; ... ; *yElementsN*} )
+**GRAPH** ( *graphArea* : Picture ; *graphNumber* : Integer, Object ; *xLabels* : Array {; *...yElements* : Array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| graphArea | Picture | → | ピクチャー変数 |
-| graphNumber | Integer, Object | → | 倍長整数:グラフタイプ番号 オブジェクト(64-bit版のみ):グラフ設定 |
-| xLabels | Array | → | X軸ラベル |
-| yElements | Array | → | グラフにするデータ (最大8個) |
+| graphArea | Picture | → | ピクチャー変数 |
+| graphNumber | Integer, Object | → | 倍長整数:グラフタイプ番号 オブジェクト(64-bit版のみ):グラフ設定 |
+| xLabels | Array | → | X軸ラベル |
+| yElements | Array | → | グラフにするデータ (最大8個) |
@@ -283,6 +283,6 @@ SVGグラフ中で見つけられる要素には自動で特定のIDが割り当
| | |
| --- | --- |
| コマンド番号 | 169 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
index 9b1fe301bf2daf..378be301c64a0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 432 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
index 5a7b3b879e1ee0..3c25c418a87edd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
@@ -5,11 +5,11 @@ slug: /commands/hide-process
displayed_sidebar: docs
---
-**HIDE PROCESS** ( *process* )
+**HIDE PROCESS** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | 隠すプロセスのプロセス番号 |
+| process | Integer | → | 隠すプロセスのプロセス番号 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
index e81479492e3cb4..87e51dde84dac7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ macOS において、カスタムのツールバーとHas full screen mode Mac
| | |
| --- | --- |
| コマンド番号 | 434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
index a265583358f6e4..29cfc1a419d729 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
@@ -5,11 +5,11 @@ slug: /commands/hide-window
displayed_sidebar: docs
---
-**HIDE WINDOW** {( *window* )}
+**HIDE WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号、または 省略時、カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号、または 省略時、カレントプロセスの最前面ウィンドウ |
@@ -51,6 +51,6 @@ HIDE WINDOWコマンドで画したウィンドウを表示するには:
| | |
| --- | --- |
| コマンド番号 | 436 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
index e63b828bb54c52..917fd06f0324c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
@@ -5,13 +5,13 @@ slug: /commands/highlight-records
displayed_sidebar: docs
---
-**HIGHLIGHT RECORDS** ( {*aTable* }{;}{ *setName* {; *}} )
+**HIGHLIGHT RECORDS** ( {*aTable* : Table }{;}{ *setName* : Text {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードをハイライトするテーブル 省略時、カレントフォームのテーブル |
-| setName | Text | → | ハイライトさせるレコードのセット、または 省略時、Userset |
-| * | 演算子 | → | リストの自動スクロールを無効 |
+| aTable | Table | → | レコードをハイライトするテーブル 省略時、カレントフォームのテーブル |
+| setName | Text | → | ハイライトさせるレコードのセット、または 省略時、Userset |
+| * | 演算子 | → | リストの自動スクロールを無効 |
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 656 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
index d7476d797b6423..4a73232e6ec157 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
@@ -5,14 +5,14 @@ slug: /commands/highlight-text
displayed_sidebar: docs
---
-**HIGHLIGHT TEXT** ( {* ;} *object* ; *startSel* ; *endSel* )
+**HIGHLIGHT TEXT** ( {* ;} *object* : Field, Variable, any ; *startSel* : Integer ; *endSel* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectはフィールドまたは変数 |
-| object | Field, Variable, any | → | オブジェクト名 (*指定時)、またはフィールドや変数 (*省略時) |
-| startSel | Integer | → | 反転表示の先頭位置 |
-| endSel | Integer | → | 反転表示の最終位置 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectはフィールドまたは変数 |
+| object | Field, Variable, any | → | オブジェクト名 (*指定時)、またはフィールドや変数 (*省略時) |
+| startSel | Integer | → | 反転表示の先頭位置 |
+| endSel | Integer | → | 反転表示の最終位置 |
@@ -68,6 +68,6 @@ HIGHLIGHT TEXT コマンドは、サブフォームのコンテキストにお
| | |
| --- | --- |
| コマンド番号 | 210 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
index a268f08e8a9b1e..c353a1d6c7fa10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/http-authenticate
displayed_sidebar: docs
---
-**HTTP AUTHENTICATE** ( *name* ; *password* {; *authMethod*} {; *} )
+**HTTP AUTHENTICATE** ( *name* : Text ; *password* : Text {; *authMethod* : Integer} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| name | Text | → | ユーザー名 |
-| password | Text | → | ユーザーパスワード |
-| authMethod | Integer | → | 認証方式: 0または省略時=指定しない、1=BASIC、2=DIGEST |
-| * | 演算子 | → | 指定時: プロクシ認証 |
+| name | Text | → | ユーザー名 |
+| password | Text | → | ユーザーパスワード |
+| authMethod | Integer | → | 認証方式: 0または省略時=指定しない、1=BASIC、2=DIGEST |
+| * | 演算子 | → | 指定時: プロクシ認証 |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1161 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
index a0502fff7388ef..079e05302d1729 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1307 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
index 47ae5c85b12551..6fa164ae89d32f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/http-get-option
displayed_sidebar: docs
---
-**HTTP GET OPTION** ( *option* ; *value* )
+**HTTP GET OPTION** ( *option* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | 取得するオプションのコード |
+| option | Integer | → | 取得するオプションのコード |
| value | Integer | ← | オプションの現在の値 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
index 3dfe3d6f1fe888..53342639ffaa9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
@@ -5,17 +5,15 @@ slug: /commands/http-get
displayed_sidebar: docs
---
-**HTTP Get** ( *url* ; *response* {; *headerNames* ; *headerValues*}{; *} ) : Integer
+**HTTP Get** ( *url* : Text ; *response* : Text, Blob, Picture, Object {; *headerNames* : Text array ; *headerValues* : Text array}{; *} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| url | Text | → | リクエスト送信先URL |
+| url | Text | → | リクエスト送信先URL |
| response | Text, Blob, Picture, Object | ← | リクエストの結果 |
-| headerNames | Text array | → | リクエストのヘッダー名 |
-| ← | 返されたヘッダー名 |
-| headerValues | Text array | → | リクエストのヘッダー値 |
-| ← | 返されたヘッダー値 |
-| * | 演算子 | → | 指定時: 接続を保持する (keep-alive)省略時: 自動で接続を閉じる |
+| headerNames | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| headerValues | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | 演算子 | → | 指定時: 接続を保持する (keep-alive)省略時: 自動で接続を閉じる |
| 戻り値 | Integer | ← | HTTPステータスコード |
@@ -109,7 +107,7 @@ RFCを取得する:
| | |
| --- | --- |
| コマンド番号 | 1157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
index c47ecaf6a766c2..103fefcf817f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
@@ -5,19 +5,17 @@ slug: /commands/http-request
displayed_sidebar: docs
---
-**HTTP Request** ( *httpMethod* ; *url* ; *contents* ; *response* {; *headerNames* ; *headerValues*}{; *} ) : Integer
+**HTTP Request** ( *httpMethod* : Text ; *url* : Text ; *contents* : Text, Blob, Picture, Object ; *response* : Text, Blob, Picture, Object {; *headerNames* : Text array ; *headerValues* : Text array}{; *} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| httpMethod | Text | → | リクエストで使用するHTTPメソッド |
-| url | Text | → | リクエストの送信先URL |
-| contents | Text, Blob, Picture, Object | → | リクエストボディの内容 |
+| httpMethod | Text | → | リクエストで使用するHTTPメソッド |
+| url | Text | → | リクエストの送信先URL |
+| contents | Text, Blob, Picture, Object | → | リクエストボディの内容 |
| response | Text, Blob, Picture, Object | ← | レスポンスの内容 |
-| headerNames | Text array | → | リクエストのヘッダー名 |
-| ← | 返されたヘッダー名 |
-| headerValues | Text array | → | リクエストのヘッダー値 |
-| ← | 返されたヘッダー値 |
-| * | 演算子 | → | 指定時: 接続を保持する (keep-alive)省略時: 自動で接続を閉じる |
+| headerNames | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| headerValues | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | 演算子 | → | 指定時: 接続を保持する (keep-alive)省略時: 自動で接続を閉じる |
| 戻り値 | Integer | ← | HTTPステータスコード |
@@ -128,6 +126,6 @@ http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}]
| | |
| --- | --- |
| コマンド番号 | 1158 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
index 6e46b31e381224..06e0132d038560 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
@@ -5,11 +5,11 @@ slug: /commands/http-set-certificates-folder
displayed_sidebar: docs
---
-**HTTP SET CERTIFICATES FOLDER** ( *certificatesFolder* )
+**HTTP SET CERTIFICATES FOLDER** ( *certificatesFolder* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| certificatesFolder | Text | → | クライアント証明書フォルダのパス名と名前 |
+| certificatesFolder | Text | → | クライアント証明書フォルダのパス名と名前 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1306 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
index 38b3398eba2252..31cc362d8b9fa3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/http-set-option
displayed_sidebar: docs
---
-**HTTP SET OPTION** ( *option* ; *value* )
+**HTTP SET OPTION** ( *option* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | 設定するオプションのコード |
-| value | Integer | → | オプションの値 |
+| option | Integer | → | 設定するオプションのコード |
+| value | Integer | → | オプションの値 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1160 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
index add3e1421ac31c..17fbe444fb3dfa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
@@ -57,6 +57,6 @@ EVENT METHODは以下のとおりです:
| | |
| --- | --- |
| コマンド番号 | 311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
index ec260709b5ed2c..79f921d683aceb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
@@ -5,14 +5,13 @@ slug: /commands/import-data
displayed_sidebar: docs
---
-**IMPORT DATA** ( *fileName* {; *project* {; *}} )
+**IMPORT DATA** ( *fileName* : Text {; *project* : Text, Blob {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | インポートファイルのフルパス名 |
-| project | Text, Blob | → | インポートプロジェクト |
-| ← | インポートプロジェクトの新しい内容 (*引数指定時) |
-| * | 演算子 | → | インポートダイアログを表示し プロジェクトの内容を更新 |
+| fileName | Text | → | インポートファイルのフルパス名 |
+| project | Text, Blob | ↔ | *in:* Contents of the import project
*out:* New contents of the import project (if the * parameter has been passed) |
+| * | 演算子 | → | インポートダイアログを表示し プロジェクトの内容を更新 |
@@ -53,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 665 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
index bc3e35c71e4dd0..9fc0818d60cfff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
@@ -5,12 +5,12 @@ slug: /commands/import-dif
displayed_sidebar: docs
---
-**IMPORT DIF** ( {*aTable* ;} *document* )
+**IMPORT DIF** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データを読み込むDIFドキュメント |
+| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データを読み込むDIFドキュメント |
@@ -57,7 +57,7 @@ IMPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 86 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
index aa43ab1bc4ea17..f7e1f291a87f26 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
@@ -5,11 +5,11 @@ slug: /commands/import-structure
displayed_sidebar: docs
---
-**IMPORT STRUCTURE** ( *xmlStructure* )
+**IMPORT STRUCTURE** ( *xmlStructure* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| xmlStructure | Text | → | 4D データベースストラクチャーのXML定義ファイル |
+| xmlStructure | Text | → | 4D データベースストラクチャーのXML定義ファイル |
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1310 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
index cf022396fde90b..7f801b9c1deacc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/import-sylk
displayed_sidebar: docs
---
-**IMPORT SYLK** ( {*aTable* ;} *document* )
+**IMPORT SYLK** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データを読み込むSYLKドキュメント |
+| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データを読み込むSYLKドキュメント |
@@ -57,7 +57,7 @@ IMPORT SYLK を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 87 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
index c4487c96d5628b..67bf137219c9e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
@@ -5,12 +5,12 @@ slug: /commands/import-text
displayed_sidebar: docs
---
-**IMPORT TEXT** ( {*aTable* ;} *document* )
+**IMPORT TEXT** ( {*aTable* : Table ;} *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
-| document | Text | → | データを読み込むテキストドキュメント |
+| aTable | Table | → | データを読み込むテーブル, または 省略した場合, デフォルトテーブル |
+| document | Text | → | データを読み込むテキストドキュメント |
@@ -59,7 +59,7 @@ IMPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
index 234d3e69a62cc7..8338578eb4c2a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 113 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
index aaa16a9d5d994e..54300e5914ed39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
index de748245c86240..d2aea9edd87739 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 112 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
index 1f88df906a921a..dec99384f58b39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
index a823af2c8827a6..87cbe6ca2b0918 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/insert-in-array
displayed_sidebar: docs
---
-**INSERT IN ARRAY** ( *array* ; *where* {; *howMany*} )
+**INSERT IN ARRAY** ( *array* : Array ; *where* : Integer {; *howMany* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | 配列名 |
-| where | Integer | → | 要素を挿入する位置 |
-| howMany | Integer | → | 挿入する要素数, または 省略時は1 |
+| array | Array | → | 配列名 |
+| where | Integer | → | 要素を挿入する位置 |
+| howMany | Integer | → | 挿入する要素数, または 省略時は1 |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
index aa1b8321a0c180..00bf68fee0debc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
@@ -5,14 +5,14 @@ slug: /commands/insert-in-blob
displayed_sidebar: docs
---
-**INSERT IN BLOB** ( *BLOB* ; *offset* ; *len* {; *filler*} )
+**INSERT IN BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *len* : Integer {; *filler* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | バイト列を挿入するBLOB |
-| offset | Integer | → | バイト列挿入開始位置 |
-| len | Integer | → | 挿入するバイト数 |
-| filler | Integer | → | デフォルトのバイト値 (0x00..0xFF) 省略した場合0x00 |
+| Blob | Blob | → | バイト列を挿入するBLOB |
+| offset | Integer | → | バイト列挿入開始位置 |
+| len | Integer | → | 挿入するバイト数 |
+| filler | Integer | → | デフォルトのバイト値 (0x00..0xFF) 省略した場合0x00 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 559 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
index 0c38a93b15d113..79a85885836747 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
@@ -5,17 +5,17 @@ slug: /commands/insert-in-list
displayed_sidebar: docs
---
-**INSERT IN LIST** ( {* ;} *list* ; *beforeItemRef* ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
**INSERT IN LIST** ( * ; *list* ; * ; *itemText* ; *itemRef* {; *sublist* ; *expanded*} )
+**INSERT IN LIST** ( {* ;} *list* : Integer, Text ; *beforeItemRef* : 倍長整数, 演算子 ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
**INSERT IN LIST** ( * ; *list* : Integer, Text ; * ; *itemText* : Text ; *itemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| beforeItemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: 現在選択されている項目 |
-| itemText | Text | → | 新しいリスト項目のテキスト |
-| itemRef | Integer | → | 新しいリスト項目のユニークな参照番号 |
-| sublist | Integer | → | 新しいリスト項目に添付するオプションのサブリスト |
-| expanded | Boolean | → | サブリストの展開/折りたたみ状態を指定 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| beforeItemRef | * | 倍長整数, 演算子 | → | 項目参照番号 または 0: リストに最後に追加された項目 または *: 現在選択されている項目 |
+| itemText | Text | → | 新しいリスト項目のテキスト |
+| itemRef | Integer | → | 新しいリスト項目のユニークな参照番号 |
+| sublist | Integer | → | 新しいリスト項目に添付するオプションのサブリスト |
+| expanded | Boolean | → | サブリストの展開/折りたたみ状態を指定 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 625 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
index b24d9a93076321..2f93ecbdb99c9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
@@ -5,16 +5,16 @@ slug: /commands/insert-menu-item
displayed_sidebar: docs
---
-**INSERT MENU ITEM** ( *menu* ; *afterItem* ; *itemText* {; *subMenu* {; *process*}}{; *} )
+**INSERT MENU ITEM** ( *menu* : Integer ; *afterItem* : Integer ; *itemText* : Text {; *subMenu* : Text {; *process* : Integer}}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer | → | メニュー番号またはメニュー参照 |
-| afterItem | Integer | → | メニュー項目番号 |
-| itemText | Text | → | 挿入するメニュー項目のテキスト |
-| subMenu | Text | → | 項目に割り当てるサブメニュの参照 |
-| process | Integer | → | プロセス参照番号 |
-| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
+| menu | Integer | → | メニュー番号またはメニュー参照 |
+| afterItem | Integer | → | メニュー項目番号 |
+| itemText | Text | → | 挿入するメニュー項目のテキスト |
+| subMenu | Text | → | 項目に割り当てるサブメニュの参照 |
+| process | Integer | → | プロセス参照番号 |
+| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
@@ -60,7 +60,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 412 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
index dd3080de82e3a5..0361a8843f0187 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
@@ -5,13 +5,13 @@ slug: /commands/insert-string
displayed_sidebar: docs
---
-**Insert string** ( *source* ; *what* ; *where* ) : Text
+**Insert string** ( *source* : Text ; *what* : Text ; *where* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Text | → | 文字列を挿入する文字列 |
-| what | Text | → | 挿入する文字列 |
-| where | Integer | → | 挿入する位置 |
+| source | Text | → | 文字列を挿入する文字列 |
+| what | Text | → | 挿入する文字列 |
+| where | Integer | → | 挿入する位置 |
| 戻り値 | Text | ← | 結果の文字列 |
@@ -47,6 +47,6 @@ Insert string関数の使用例を次に示します。結果を変数*vtResult*
| | |
| --- | --- |
| コマンド番号 | 231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md
index 71a9d0b945025f..f08fff316e23e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/int.md
@@ -5,11 +5,11 @@ slug: /commands/int
displayed_sidebar: docs
---
-**Int** ( *number* ) : Real
+**Int** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 整数部を求める数値 |
+| number | Real | → | 整数部を求める数値 |
| 戻り値 | Real | ← | 整数部の数値 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 8 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
index 528f98b94676bb..8658a0eeacaf70 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/integer-to-blob
displayed_sidebar: docs
---
-**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; offset} )
**INTEGER TO BLOB** ( *integer* ; *blob* ; *byteOrder* {; *} )
+**INTEGER TO BLOB** ( *integer* ; *blob* : Blob ; *byteOrder* {; offset} )
**INTEGER TO BLOB** ( *integer* ; *blob* : Blob ; *byteOrder* {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| entier | Integer | → | BLOBに書き込む整数値 |
-| Blob | Blob | → | 整数値を受け取るBLOB |
-| ordreOctet | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
+| entier | Integer | → | BLOBに書き込む整数値 |
+| Blob | Blob | → | 整数値を受け取るBLOB |
+| ordreOctet | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | * | 変数, 演算子 | ↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
-| || | *でない場合、書き込み後の新しいオフセット |
+| | | | *でない場合、書き込み後の新しいオフセット |
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
index 4159f57b0efd99..ab2b96f0999597 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
@@ -5,14 +5,13 @@ slug: /commands/integrate-mirror-log-file
displayed_sidebar: docs
---
-**INTEGRATE MIRROR LOG FILE** ( *pathName* ; *operationNum* {; *mode* {; *errObject*}} )
+**INTEGRATE MIRROR LOG FILE** ( *pathName* : Text ; *operationNum* : Real {; *mode* : Integer {; *errObject* : Object}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathName | Text | → | 統合されるログファイルの名前もしくはパス名 |
-| operationNum | Real | → | 統合が開始されるオペレーションの番号 |
-| ← | 最後に統合されたオペレーションの番号 |
-| mode | Integer | → | 0=厳格な統合モード(デフォルトモード)、1=自動修復モード |
+| pathName | Text | → | 統合されるログファイルの名前もしくはパス名 |
+| operationNum | Real | ↔ | *in:* Number of last operation integrated or -2 to integrate the whole file
*out:* New number of last operation integrated |
+| mode | Integer | → | 0=厳格な統合モード(デフォルトモード)、1=自動修復モード |
| errObject | Object | ← | 失われたオペレーション |
@@ -105,7 +104,7 @@ Blobまたはピクチャーの値の場合、その保存場所に応じて異
| | |
| --- | --- |
| コマンド番号 | 1312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
index f9c6a7513bc220..ce4cb3b4b7ea9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
@@ -5,13 +5,13 @@ slug: /commands/intersection
displayed_sidebar: docs
---
-**INTERSECTION** ( *set1* ; *set2* ; *resultSet* )
+**INTERSECTION** ( *set1* : Text ; *set2* : Text ; *resultSet* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set1 | Text | → | 最初のセット |
-| set2 | Text | → | 2番目のセット |
-| resultSet | Text | → | 結果のセット |
+| set1 | Text | → | 最初のセット |
+| set2 | Text | → | 2番目のセット |
+| resultSet | Text | → | 結果のセット |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
index 4f18059aa50749..341608498a2ca3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
@@ -5,12 +5,12 @@ slug: /commands/invoke-action
displayed_sidebar: docs
---
-**INVOKE ACTION** ( *action* {; *target*} )
+**INVOKE ACTION** ( *action* : Text {; *target* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| action | Text | → | 標準アクション名、あるいは(必要であれば)引数を含めたパターン |
-| target | Integer | → | アクションを実行する場所を定義: カレントフォーム(デフォルト)あるいはメインフォーム |
+| action | Text | → | 標準アクション名、あるいは(必要であれば)引数を含めたパターン |
+| target | Integer | → | アクションを実行する場所を定義: カレントフォーム(デフォルト)あるいはメインフォーム |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
index 0a2f2b819532b7..f2df3195302e17 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-list
displayed_sidebar: docs
---
-**Is a list** ( *list* ) : Boolean
+**Is a list** ( *list* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | テストするListRef値 |
+| list | Integer | → | テストするListRef値 |
| 戻り値 | Boolean | ← | TRUE: listは階層リスト FALSE: listは階層リストでない |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 621 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
index 936b1ed936ee52..077a13689b96b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-variable
displayed_sidebar: docs
---
-**Is a variable** ( *aPointer* ) : Boolean
+**Is a variable** ( *aPointer* : Pointer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aPointer | Pointer | → | テストするポインタ |
+| aPointer | Pointer | → | テストするポインタ |
| 戻り値 | Boolean | ← | TRUE = 変数のポインタ FALSE = 変数以外のポインタ |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
index d9515d66323283..9c1fb2b97e00b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
@@ -5,11 +5,11 @@ slug: /commands/is-compiled-mode
displayed_sidebar: docs
---
-**Is compiled mode** {( * )} : Boolean
+**Is compiled mode** ( * ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | ホストデータベースの情報を返す |
+| * | 演算子 | → | ホストデータベースの情報を返す |
| 戻り値 | Boolean | ← | コンパイル済み (True), インタプリタ (False) |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 492 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
index 14dd2bd92c0023..01ae4d07c89610 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 716 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
index 28290965e304e1..6e63bd089fa31e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1744 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
index 9f95c8445cca8a..efa13da0699997 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
@@ -5,12 +5,12 @@ slug: /commands/is-field-number-valid
displayed_sidebar: docs
---
-**Is field number valid** ( *tablePtr* ; *fieldNum* ) : Boolean
**Is field number valid** ( *tableNum* ; *fieldNum* ) : Boolean
+**Is field number valid** ( *tablePtr* : 倍長整数, ポインター ; *fieldNum* : Integer ) : Boolean
**Is field number valid** ( *tableNum* : 倍長整数, ポインター ; *fieldNum* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号またはテーブルへのポインタ |
-| fieldNum | Integer | → | フィールド番号 |
+| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号またはテーブルへのポインタ |
+| fieldNum | Integer | → | フィールド番号 |
| 戻り値 | Boolean | ← | True = テーブルにあるフィールド False = フィールドがテーブルに存在しない |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1000 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
index 6339d1a40e4deb..9f2c13316613a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
@@ -5,11 +5,11 @@ slug: /commands/is-field-value-null
displayed_sidebar: docs
---
-**Is field value Null** ( *aField* ) : Boolean
+**Is field value Null** ( *aField* : Field ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | 評価するフィールド |
+| aField | Field | → | 評価するフィールド |
| 戻り値 | Boolean | ← | True = フィールドはNULL, False = フィールドはNULLでない |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 964 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
index 22a348b6fff38f..45cf0e7b876617 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1198 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
index da5ed2a8b22ed2..557039e44b9197 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/is-in-set
displayed_sidebar: docs
---
-**Is in set** ( *set* ) : Boolean
+**Is in set** ( *set* : Text ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | テストするセットの名前 |
+| set | Text | → | テストするセットの名前 |
| 戻り値 | Boolean | ← | True=カレントレコードがセットに含まれる False=カレントレコードがセットに含まれない |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 273 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
index 06c7ae89c9b185..20c5df851a9d66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
@@ -5,11 +5,11 @@ slug: /commands/is-license-available
displayed_sidebar: docs
---
-**Is license available** {( *license* )} : Boolean
+**Is license available** ( *license* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| license | Integer | → | ライセンスの有効性テストを行うプラグイン |
+| license | Integer | → | ライセンスの有効性テストを行うプラグイン |
| 戻り値 | Boolean | ← | プラグインが利用可能な場合はTrue、その他の場合はFalse |
@@ -51,6 +51,6 @@ Is license available コマンドは次のような3通りの使用が可能で
| | |
| --- | --- |
| コマンド番号 | 714 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
index b123aa9669682b..eaa14ff41dff3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1572 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
index 843d496d877224..406deec202b3ac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
@@ -5,11 +5,11 @@ slug: /commands/is-new-record
displayed_sidebar: docs
---
-**Is new record** {( *aTable* )} : Boolean
+**Is new record** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードを検査するテーブル または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードを検査するテーブル または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | True: レコードは未保存の新規レコード, そうでなければFalse |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 668 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
index 3fa203463444b0..de3edc37a5844e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/is-nil-pointer
displayed_sidebar: docs
---
-**Is nil pointer** ( *aPointer* ) : Boolean
+**Is nil pointer** ( *aPointer* : Pointer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aPointer | Pointer | → | テストするポインタ |
+| aPointer | Pointer | → | テストするポインタ |
| 戻り値 | Boolean | ← | TRUE = Nil ポインタ (->[]) FALSE = 既存のオブジェクトへの有効なポインタ |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 315 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
index 8fdd888a2f9263..4ea704c0f38509 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
@@ -5,12 +5,12 @@ slug: /commands/is-picture-file
displayed_sidebar: docs
---
-**Is picture file** ( *filePath* {; *} ) : Boolean
+**Is picture file** ( *filePath* : Text {; *} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| filePath | Text | → | ファイルパス名 |
-| * | 演算子 | → | データの検証 |
+| filePath | Text | → | ファイルパス名 |
+| * | 演算子 | → | データの検証 |
| 戻り値 | Boolean | ← | True = filePathはピクチャファイルである、そうでなければFalse |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1113 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
index df5fe133987a7e..a2340f3721a53d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
@@ -5,11 +5,11 @@ slug: /commands/is-record-loaded
displayed_sidebar: docs
---
-**Is record loaded** {( *aTable* )} : Boolean
+**Is record loaded** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードを検査するテーブル または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードを検査するテーブル または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | True: レコードはロードされている そうでなければFalse |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 669 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
index 40b019308bb3f6..e3b06d3d52868c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
@@ -5,11 +5,11 @@ slug: /commands/is-table-number-valid
displayed_sidebar: docs
---
-**Is table number valid** ( *tableNum* ) : Boolean
+**Is table number valid** ( *tableNum* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | Integer | → | テーブル番号 |
+| tableNum | Integer | → | テーブル番号 |
| 戻り値 | Boolean | ← | True = テーブルがデータベースに存在する False = テーブルがデータベースに存在しない |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 999 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
index 42067faeee3e97..a12c2f8649f8cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
@@ -5,11 +5,11 @@ slug: /commands/is-user-deleted
displayed_sidebar: docs
---
-**Is user deleted** ( *userNumber* ) : Boolean
+**Is user deleted** ( *userNumber* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userNumber | Integer | → | ユーザーID番号 |
+| userNumber | Integer | → | ユーザーID番号 |
| 戻り値 | Boolean | ← | TRUE = ユーザーアカウントが削除されている、または存在しない場合;FALSE = ユーザーアカウントがアクティブな場合 |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 616 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
index f4414d0a60d3ac..6f6efda3b41d4b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
index 0ab53a8554199d..3ba2b9fdbbe033 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-maximized
displayed_sidebar: docs
---
-**Is window maximized** ( *window* ) : Boolean
+**Is window maximized** ( *window* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
+| window | Integer | → | ウィンドウ参照番号 |
| 戻り値 | Boolean | ← | ウィンドウが最大化されていればTrue、それ以外の場合にはFalse |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
index fe6f88a9396744..dfdd152334639d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-reduced
displayed_sidebar: docs
---
-**Is window reduced** ( *window* ) : Boolean
+**Is window reduced** ( *window* : Integer ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
+| window | Integer | → | ウィンドウ参照番号 |
| 戻り値 | Boolean | ← | ウィンドウがタスクバーかDockに収納されていればTrue、それ以外の場合にはFalse |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
index b3e8cc5393586f..1bf6684c94dc34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1573 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
index 3f063ace99df67..e8ba358fc1236a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse-array
displayed_sidebar: docs
---
-**JSON PARSE ARRAY** ( *jsonString* ; *array* )
+**JSON PARSE ARRAY** ( *jsonString* : Text ; *array* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| jsonString | Text | → | 解析したいJSON文字列 |
+| jsonString | Text | → | 解析したいJSON文字列 |
| array | Array | ← | JSON文字列を解析した結果を含む配列 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
index e58867220e3403..8d9cc47ab2c25b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
@@ -5,13 +5,13 @@ slug: /commands/json-parse
displayed_sidebar: docs
---
-**JSON Parse** ( *jsonString* {; *type*}{; *} ) : any
+**JSON Parse** ( *jsonString* : Text {; *type* : Integer}{; *} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| jsonString | Text | → | 解析したいJSON文字列 |
-| type | Integer | → | 値を変換したい型 |
-| * | 演算子 | → | 返された値がオブジェクトの場合、各プロパティの行の位置とオフセットを追加 |
+| jsonString | Text | → | 解析したいJSON文字列 |
+| type | Integer | → | 値を変換したい型 |
+| * | 演算子 | → | 返された値がオブジェクトの場合、各プロパティの行の位置とオフセットを追加 |
| 戻り値 | any, Object | ← | JSON文字列から取り出した値 |
@@ -191,6 +191,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| コマンド番号 | 1218 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
index a90b3d99d36300..289b22a1467ea5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
@@ -5,13 +5,12 @@ slug: /commands/json-resolve-pointers
displayed_sidebar: docs
---
-**JSON Resolve pointers** ( *object* {; *options*} ) : Object
+**JSON Resolve pointers** ( *object* : Object {; *options* : Object} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | 解決するJSONポインターを含んだオブジェクト型 |
-| ← | 解決したJSONポインターを含んだオブジェクト型(結果がオブジェクト型の場合のみ) |
-| options | Object | → | ポインター解決のオプション |
+| object | Object | ↔ | *in:* Object containing JSON pointers to resolve
*out:* Object with JSON pointers resolved (only if result is an object) |
+| options | Object | → | ポインター解決のオプション |
| 戻り値 | Object | ← | 処理の結果を含んだオブジェクト型 |
@@ -236,6 +235,6 @@ JSON ポインターは再帰的に解決されます。これはつまりポイ
| | |
| --- | --- |
| コマンド番号 | 1478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
index 0fa06cab9587ca..cfda71025e497b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify-array
displayed_sidebar: docs
---
-**JSON Stringify array** ( *array* {; *} ) : Text
+**JSON Stringify array** ( *array* : Text array, Real array, Boolean array, Pointer array, Object array {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Text array, Real array, Boolean array, Pointer array, Object array | → | 内容をシリアライズしたい配列 |
-| * | 演算子 | → | 整形フォーマット |
+| array | Text array, Real array, Boolean array, Pointer array, Object array | → | 内容をシリアライズしたい配列 |
+| * | 演算子 | → | 整形フォーマット |
| 戻り値 | Text | ← | シリアライズされたJSON配列を含む文字列 |
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
index cc88c5d6f8718a..1b420c6fe48577 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify
displayed_sidebar: docs
---
-**JSON Stringify** ( *value* {; *} ) : Text
+**JSON Stringify** ( *value* : Object, any {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| value | Object, any | → | JSON文字列に変換したいデータ |
-| * | 演算子 | → | 整形フォーマット |
+| value | Object, any | → | JSON文字列に変換したいデータ |
+| * | 演算子 | → | 整形フォーマット |
| 戻り値 | Text | ← | シリアライズされたJSONテキストを含む文字列 |
@@ -179,6 +179,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| コマンド番号 | 1217 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
index 1241462ab9e411..eb93eee573c751 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/json-to-selection
displayed_sidebar: docs
---
-**JSON TO SELECTION** ( *aTable* ; *jsonArray* )
+**JSON TO SELECTION** ( *aTable* : Table ; *jsonArray* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 要素の複製先の4Dテーブル |
-| jsonArray | Text | → | JSON形式の文字列 |
+| aTable | Table | → | 要素の複製先の4Dテーブル |
+| jsonArray | Text | → | JSON形式の文字列 |
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1235 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
index e3416c75212289..fb644b6052149c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
@@ -5,12 +5,12 @@ slug: /commands/json-validate
displayed_sidebar: docs
---
-**JSON Validate** ( *vJson* ; *vSchema* ) : Object
+**JSON Validate** ( *vJson* : Object ; *vSchema* : Object ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| vJson | Object | → | 評価するJSONオブジェクト |
-| vSchema | Object | → | JSONオブジェクトを評価するのに使用するJSONスキーマ |
+| vJson | Object | → | 評価するJSONオブジェクト |
+| vSchema | Object | → | JSONオブジェクトを評価するのに使用するJSONスキーマ |
| 戻り値 | Object | ← | 評価ステータスあるいはエラー(あれば) |
@@ -110,6 +110,6 @@ JSON オブジェクトをスキーマで評価して、その評価エラーの
| | |
| --- | --- |
| コマンド番号 | 1456 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
index 17a1ac33a2a4ed..c6044d8e079f7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ $curValue->:=$vtNewValue
| | |
| --- | --- |
| コマンド番号 | 390 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
index 6821d64da0b5a7..19aeadfbdd1630 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
@@ -5,11 +5,11 @@ slug: /commands/kill-worker
displayed_sidebar: docs
---
-**KILL WORKER** {( *process* )}
+**KILL WORKER** ({ *process* : Text, Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Text, Integer | → | 終了させるプロセスの番号または名称 (省略の場合はカレントプロセス) |
+| process | Text, Integer | → | 終了させるプロセスの番号または名称 (省略の場合はカレントプロセス) |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1390 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
index 03bf54c7071792..7f74dd9ada5376 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
@@ -5,11 +5,11 @@ slug: /commands/last-field-number
displayed_sidebar: docs
---
-**Last field number** ( *tableNum* ) : Integer
**Last field number** ( *tablePtr* ) : Integer
+**Last field number** ( *tableNum* : 倍長整数, ポインター ) : Integer
**Last field number** ( *tablePtr* : 倍長整数, ポインター ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号、またはテーブルポインタ |
+| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号、またはテーブルポインタ |
| 戻り値 | Integer | ← | テーブルの最大フィールド番号 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 255 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
index 2a816a11282cfa..beb20e8b0745dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-path
displayed_sidebar: docs
---
-**Last query path** ( *descFormat* ) : Text
+**Last query path** ( *descFormat* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| descFormat | Integer | → | 説明フォーマット (テキストまたはXML) |
+| descFormat | Integer | → | 説明フォーマット (テキストまたはXML) |
| 戻り値 | Text | ← | 最後に実行されたクエリパスの説明 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1045 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
index fb6e4bcc89b77b..8a2013a0cf1b35 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-plan
displayed_sidebar: docs
---
-**Last query plan** ( *descFormat* ) : Text
+**Last query plan** ( *descFormat* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| descFormat | Integer | → | 説明フォーマット (テキストまたはXML) |
+| descFormat | Integer | → | 説明フォーマット (テキストまたはXML) |
| 戻り値 | Text | ← | 最後に実行されたクエリプランの説明 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1046 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
index 8a4a87f23112ff..5e9b4fbb051fab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
@@ -5,11 +5,11 @@ slug: /commands/last-record
displayed_sidebar: docs
---
-**LAST RECORD** {( *aTable* )}
+**LAST RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードをセレクションの最後に移動する テーブル、または省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードをセレクションの最後に移動する テーブル、または省略時、デフォルトテーブル |
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 200 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
index 6edeca977e691f..399229b12337b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 254 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
index 6cbe2026cd68c4..c39ecafa706e27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1301 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
index dc3404931443de..20c272f6f8f829 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
@@ -5,12 +5,12 @@ slug: /commands/launch-external-process
displayed_sidebar: docs
---
-**LAUNCH EXTERNAL PROCESS** ( *fileName* {; *inputStream* {; *outputStream* {; *errorStream*}}}{; *pid*} )
+**LAUNCH EXTERNAL PROCESS** ( *fileName* : Text {; *inputStream* : Text, Blob {; *outputStream* : Text, Blob {; *errorStream* : Text, Blob}}}{; *pid* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | ファイルパスと起動するファイルの引数 |
-| inputStream | Text, Blob | → | 入力ストリーム(stdin) |
+| fileName | Text | → | ファイルパスと起動するファイルの引数 |
+| inputStream | Text, Blob | → | 入力ストリーム(stdin) |
| outputStream | Text, Blob | ← | 出力ストリーム(stdout) |
| errorStream | Text, Blob | ← | エラーストリーム(stderr) |
| pid | Integer | ← | 外部プロセスの固有識別子 |
@@ -146,7 +146,7 @@ Application/UtilitiesフォルダにあるmacOS ターミナルを使用しま
| | |
| --- | --- |
| コマンド番号 | 811 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
index fb32f0e87549c2..c089f058b60e47 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
@@ -5,14 +5,14 @@ slug: /commands/ldap-login
displayed_sidebar: docs
---
-**LDAP LOGIN** ( *url* ; *login* ; *password* {; *digest*} )
+**LDAP LOGIN** ( *url* : Text ; *login* : Text ; *password* : Text {; *digest* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| url | Text | → | 接続するLDAPサーバーのURL |
-| login | Text | → | ログインエントリー |
-| password | Text | → | ログインエントリーのパスワード |
-| digest | Integer | → | 0 = パスワードをMD5ダイジェストで送るMD5(デフォルト)、
1 = パスワードを暗号化なしで送る |
+| url | Text | → | 接続するLDAPサーバーのURL |
+| login | Text | → | ログインエントリー |
+| password | Text | → | ログインエントリーのパスワード |
+| digest | Integer | → | 0 = パスワードをMD5ダイジェストで送るMD5(デフォルト)、
1 = パスワードを暗号化なしで送る |
@@ -101,6 +101,6 @@ LDAPサーバーにログインして、検索をしたい場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
index 09677a5a737817..591398813849ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
index e9b8e6015599a7..ed7fb36c7ad048 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
@@ -5,16 +5,16 @@ slug: /commands/ldap-search-all
displayed_sidebar: docs
---
-**LDAP SEARCH ALL** ( *dnRootEntry* ; *arrResult* ; *filter* {; *scope* {; *attributes* {; *attributesAsArray*}}} )
+**LDAP SEARCH ALL** ( *dnRootEntry* : Text ; *arrResult* : Object array ; *filter* : Text {; *scope* : Text {; *attributes* : Text array {; *attributesAsArray* : Boolean array}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | 検索を開始するルートエントリーの識別名 |
+| dnRootEntry | Text | → | 検索を開始するルートエントリーの識別名 |
| arrResult | Object array | ← | 検索の結果 |
-| filter | Text | → | LDAP検索フィルター |
-| scope | Text | → | 検索のスコープ: "base" (デフォルト)、"one"、または"sub" |
-| attributes | Text array | → | 取得する属性 |
-| attributesAsArray | Boolean array | → | True = 属性を配列として返す; false = 属性を単純な変数として返す |
+| filter | Text | → | LDAP検索フィルター |
+| scope | Text | → | 検索のスコープ: "base" (デフォルト)、"one"、または"sub" |
+| attributes | Text array | → | 取得する属性 |
+| attributesAsArray | Boolean array | → | True = 属性を配列として返す; false = 属性を単純な変数として返す |
@@ -121,6 +121,6 @@ LDAPサーバーには通常、検索のために受け付けられるエント
| | |
| --- | --- |
| コマンド番号 | 1329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
index 818b0e30f2ad5e..2dc4c763ee1a0d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
@@ -5,15 +5,15 @@ slug: /commands/ldap-search
displayed_sidebar: docs
---
-**LDAP Search** ( *dnRootEntry* ; *filter* {; *scope* {; *attributes* {; *attributesAsArray*}}} ) : Object
+**LDAP Search** ( *dnRootEntry* : Text ; *filter* : Text {; *scope* : Text {; *attributes* : Text array {; *attributesAsArray* : Boolean array}}} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | 検索を開始するルートエントリーの識別名 |
-| filter | Text | → | LDAP検索フィルター |
-| scope | Text | → | 検索のスコープ: "base" (デフォルト)、"one"、または"sub" |
-| attributes | Text array | → | 取得する属性 |
-| attributesAsArray | Boolean array | → | True = 属性を強制的に配列として返す;
False = 属性を強制的に単純な変数として返す |
+| dnRootEntry | Text | → | 検索を開始するルートエントリーの識別名 |
+| filter | Text | → | LDAP検索フィルター |
+| scope | Text | → | 検索のスコープ: "base" (デフォルト)、"one"、または"sub" |
+| attributes | Text array | → | 取得する属性 |
+| attributesAsArray | Boolean array | → | True = 属性を強制的に配列として返す;
False = 属性を強制的に単純な変数として返す |
| 戻り値 | Object | ← | キー/値 属性 |
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md
index 177f1f3ce01494..c8e680524b7644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/length.md
@@ -5,11 +5,11 @@ slug: /commands/length
displayed_sidebar: docs
---
-**Length** ( *string* ) : Integer
+**Length** ( *string* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| string | Text | → | 長さを調べる文字列 |
+| string | Text | → | 長さを調べる文字列 |
| 戻り値 | Integer | ← | 文字列の長さ |
@@ -35,6 +35,6 @@ Lengthの使用例を次に示します。結果を変数*vlResult*に代入し
| | |
| --- | --- |
| コマンド番号 | 16 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md
index 73f04777d57f6e..bd804c51377b4a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/level.md
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
index 27d336e7d918d6..452788819488ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1782 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
index 5efcbd955d48c6..3e5e41abaaa6b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-parent
displayed_sidebar: docs
---
-**List item parent** ( {* ;} *list* ; *itemRef* ) : Integer
**List item parent** ( * ; *list* ; * ) : Integer
+**List item parent** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ) : Integer
**List item parent** ( * ; *list* : Integer, Text ; * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: カレントのリスト項目 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: カレントのリスト項目 |
| 戻り値 | Integer | ← | 親項目の項目参照番号 または ない場合0 |
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 633 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
index 5368c77e8c21d2..87a9d0f9aba209 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-position
displayed_sidebar: docs
---
-**List item position** ( {* ;} *list* ; *itemRef* ) : Integer
+**List item position** ( {* ;} *list* : Integer, Text ; *itemRef* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | Integer | → | 項目参照番号 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | Integer | → | 項目参照番号 |
| 戻り値 | Integer | ← | 展開/折りたたまれたリストにおける項目位置 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 629 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
index e8b59ef9f3d9ca..78e76f4731c900 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-choice-lists
displayed_sidebar: docs
---
-**LIST OF CHOICE LISTS** ( *numsArray* ; *namesArray* )
+**LIST OF CHOICE LISTS** ( *numsArray* : Integer array ; *namesArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 957 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
index 4cf4a6e47b846f..2fea6ae0edeca4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-style-sheets
displayed_sidebar: docs
---
-**LIST OF STYLE SHEETS** ( *arrStyleSheets* )
+**LIST OF STYLE SHEETS** ( *arrStyleSheets* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1255 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
index 4998c5f3219b3e..7bf4c0f973f5c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
@@ -5,11 +5,11 @@ slug: /commands/list-to-array
displayed_sidebar: docs
---
-**LIST TO ARRAY** ( *list* ; *array* {; *itemRefs*} )
+**LIST TO ARRAY** ( *list* : Text, Integer ; *array* : Array {; *itemRefs* : Array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Text, Integer | → | 一番目の項目をコピーするコピー元のリスト |
+| list | Text, Integer | → | 一番目の項目をコピーするコピー元のリスト |
| array | Array | ← | コピー先の配列 |
| itemRefs | Array | ← | リスト項目の参照番号 |
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
index d3dbdbf4d05772..124006aa683d22 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/list-to-blob
displayed_sidebar: docs
---
-**LIST TO BLOB** ( *list* ; *BLOB* {; *} )
+**LIST TO BLOB** ( *list* : Integer ; *BLOB* : Blob {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | BLOBに格納する階層リスト |
-| Blob | Blob | → | 階層リストを受け取るBLOB |
-| * | 演算子 | → | 値を追加するには* |
+| list | Integer | → | BLOBに格納する階層リスト |
+| Blob | Blob | → | 階層リストを受け取るBLOB |
+| * | 演算子 | → | 値を追加するには* |
@@ -53,7 +53,7 @@ LIST TO BLOBや[BLOB to list](blob-to-list.md "BLOB to list")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 556 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
index 097e4199121579..9450d14d99218b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-collapse
displayed_sidebar: docs
---
-**LISTBOX COLLAPSE** ( {* ;} *object* {; *recursive* {; *selector* {; *line* {; *column*}}}} )
+**LISTBOX COLLAPSE** ( * ; *object* : Text {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
**LISTBOX COLLAPSE** ( *object* : Field, Variable {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| recursive | Boolean | → | True = サブレベルを折りたたむ
False = サブレベルを折りたたまない |
-| selector | Integer | → | 折りたたむリストボックスのパーツ |
-| line | Integer | → | 折り畳むブレーク行の番号、または折り畳むリストボックスレベルの番号 |
-| column | Integer | → | 折り畳むブレーク列の番号 |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| recursive | Boolean | → | True = サブレベルを折りたたむ
False = サブレベルを折りたたまない |
+| selector | Integer | → | 折りたたむリストボックスのパーツ |
+| line | Integer | → | 折り畳むブレーク行の番号、または折り畳むリストボックスレベルの番号 |
+| column | Integer | → | 折り畳むブレーク列の番号 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
index 6e0220021c687e..44e808db583d30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-column
displayed_sidebar: docs
---
-**LISTBOX DELETE COLUMN** ( {* ;} *object* ; *colPosition* {; *number*} )
+**LISTBOX DELETE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer {; *number* : Integer} )
**LISTBOX DELETE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer {; *number* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| colPosition | Integer | → | 削除する列番号 |
-| number | Integer | → | 削除する列数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| colPosition | Integer | → | 削除する列番号 |
+| number | Integer | → | 削除する列数 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
index 8b364121c56a26..5e46778a3e82d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-rows
displayed_sidebar: docs
---
-**LISTBOX DELETE ROWS** ( {* ;} *object* ; *rowPosition* {; *numRows*} )
+**LISTBOX DELETE ROWS** ( * ; *object* : Text ; *rowPosition* : Integer {; *numRows* : Integer} )
**LISTBOX DELETE ROWS** ( *object* : Field, Variable ; *rowPosition* : Integer {; *numRows* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| rowPosition | Integer | → | 削除する行の位置 |
-| numRows | Integer | → | 削除する行の数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| rowPosition | Integer | → | 削除する行の位置 |
+| numRows | Integer | → | 削除する行の数 |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 914 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
index 79f2f60ac99558..7edc117c774d66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-duplicate-column
displayed_sidebar: docs
---
-**LISTBOX DUPLICATE COLUMN** ( {* ;} *object* ; *colPosition* ; *colName* ; *colVariable* ; *headerName* ; *headerVar* {; *footerName* ; *footerVar*} )
+**LISTBOX DUPLICATE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX DUPLICATE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、 Object はオブジェクト名 (文字列) 省略時、 Object は変数 |
-| object | any | → | 複製したい列のオブジェクト名( * 指定時)、 または変数 ( * 省略時) |
-| colPosition | Integer | → | 新しく複製した列の位置 |
-| colName | Text | → | 新しい列の名前 |
-| colVariable | Array, Field, Variable, Pointer | → | 列の配列変数またはフィールド、変数 |
-| headerName | Text | → | 列のヘッダーのオブジェクト名 |
-| headerVar | Integer, Pointer | → | 列のヘッダーの変数 |
-| footerName | Text | → | 列のフッターのオブジェクト名 |
-| footerVar | Variable, Pointer | → | 列のフッターの変数 |
+| * | 演算子 | → | 指定時、 Object はオブジェクト名 (文字列) 省略時、 Object は変数 |
+| object | any | → | 複製したい列のオブジェクト名( * 指定時)、 または変数 ( * 省略時) |
+| colPosition | Integer | → | 新しく複製した列の位置 |
+| colName | Text | → | 新しい列の名前 |
+| colVariable | Array, Field, Variable, Pointer | → | 列の配列変数またはフィールド、変数 |
+| headerName | Text | → | 列のヘッダーのオブジェクト名 |
+| headerVar | Integer, Pointer | → | 列のヘッダーの変数 |
+| footerName | Text | → | 列のフッターのオブジェクト名 |
+| footerVar | Variable, Pointer | → | 列のフッターの変数 |
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1273 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
index 5572cf556751e3..d75c31de741e8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-expand
displayed_sidebar: docs
---
-**LISTBOX EXPAND** ( {* ;} *object* {; *recursive* {; *selector* {; *line* {; *column*}}}} )
+**LISTBOX EXPAND** ( * ; *object* : Text {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
**LISTBOX EXPAND** ( *object* : Field, Variable {; *recursive* : Boolean {; *selector* : Integer {; *line* : Integer {; *column* : Integer}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| recursive | Boolean | → | True = サブレベルを展開
False = サブレベルを展開しない |
-| selector | Integer | → | 展開するリストボックスのパーツ |
-| line | Integer | → | 展開するブレーク行の番号、または
展開するリストボックスレベルの番号 |
-| column | Integer | → | 展開するブレーク列の番号 |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| recursive | Boolean | → | True = サブレベルを展開
False = サブレベルを展開しない |
+| selector | Integer | → | 展開するリストボックスのパーツ |
+| line | Integer | → | 展開するブレーク行の番号、または
展開するリストボックスレベルの番号 |
+| column | Integer | → | 展開するブレーク列の番号 |
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1100 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
index 0a071c34ab74a6..24a751c00ec01a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-array
displayed_sidebar: docs
---
-**LISTBOX Get array** ( {* ;} *object* ; *arrType* ) : Pointer
+**LISTBOX Get array** ( * ; *object* : Text ; *arrType* : Integer ) : Pointer
**LISTBOX Get array** ( *object* : Field, Variable ; *arrType* : Integer ) : Pointer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
-| arrType | Integer | → | 配列のタイプ |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
+| arrType | Integer | → | 配列のタイプ |
| 戻り値 | Pointer | ← | プロパティに関連付けられた配列へのポインター |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
index 33587b876fee76..148cce1862b356 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-arrays
displayed_sidebar: docs
---
-**LISTBOX GET ARRAYS** ( {* ;} *object* ; *arrColNames* ; *arrHeaderNames* ; *arrColVars* ; *arrHeaderVars* ; *arrColsVisible* ; *arrStyles* {; *arrFooterNames* ; *arrFooterVars*} )
+**LISTBOX GET ARRAYS** ( * ; *object* : Text ; *arrColNames* : Text array ; *arrHeaderNames* : Text array ; *arrColVars* : Pointer array ; *arrHeaderVars* : Pointer array ; *arrColsVisible* : Boolean array ; *arrStyles* : Pointer array {; *arrFooterNames* : Text array ; *arrFooterVars* : Pointer array} )
**LISTBOX GET ARRAYS** ( *object* : Field, Variable ; *arrColNames* : Text array ; *arrHeaderNames* : Text array ; *arrColVars* : Pointer array ; *arrHeaderVars* : Pointer array ; *arrColsVisible* : Boolean array ; *arrStyles* : Pointer array {; *arrFooterNames* : Text array ; *arrFooterVars* : Pointer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| arrColNames | Text array | ← | 列オブジェクト名 |
| arrHeaderNames | Text array | ← | ヘッダーオブジェクト名 |
| arrColVars | Pointer array | ← | 列変数へのポインターまたは列フィールドへのポインターまたはNil |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 832 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
index 178a95bf9246aa..dbb1336e7b66e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX Get auto row height** ( {* ;} *object* ; *selector* {; *unit*} ) : Integer
+**LISTBOX Get auto row height** ( * ; *object* : Text ; *selector* : Integer {; *unit* : Integer} ) : Integer
**LISTBOX Get auto row height** ( *object* : Field, Variable ; *selector* : Integer {; *unit* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
-| selector | Integer | → | 取得する高さの値:lk row min height あるいは lk row max height |
-| unit | Integer | → | 行の高さの最小値、あるいは最大値 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
+| selector | Integer | → | 取得する高さの値:lk row min height あるいは lk row max height |
+| unit | Integer | → | 行の高さの最小値、あるいは最大値 |
| 戻り値 | Integer | ← | 選択された行の高さの値 |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
index 55f661c69e7088..c6652c9e99f41e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-coordinates
displayed_sidebar: docs
---
-**LISTBOX GET CELL COORDINATES** ( {* ;} *object* ; *column* ; *row* ; *left* ; *top* ; *right* ; *bottom* )
+**LISTBOX GET CELL COORDINATES** ( * ; *object* : Text ; *column* : Integer ; *row* : Integer ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
**LISTBOX GET CELL COORDINATES** ( *object* : Field, Variable ; *column* : Integer ; *row* : Integer ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| column | Integer | → | カラム番号 |
-| row | Integer | → | 行番号 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| column | Integer | → | カラム番号 |
+| row | Integer | → | 行番号 |
| left | Integer | ← | オブジェクトの左座標 |
| top | Integer | ← | オブジェクトの上の座標 |
| right | Integer | ← | オブジェクトの右座標 |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
index 17e2014784c252..e6e4d72e64ce7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-position
displayed_sidebar: docs
---
-**LISTBOX GET CELL POSITION** ( {* ;} *object* {; *X* ; *Y* }; *column* ; *row* {; *colVar*} )
+**LISTBOX GET CELL POSITION** ( * ; *object* : Text {; *X* : Real ; *Y* : Real }; *column* : Integer ; *row* : Integer {; *colVar* : Pointer} )
**LISTBOX GET CELL POSITION** ( *object* : Field, Variable {; *X* : Real ; *Y* : Real }; *column* : Integer ; *row* : Integer {; *colVar* : Pointer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| X | Real | → | マウスカーソルの X座標 |
-| Y | Real | → | マウスカーソルの Y座標 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| X | Real | → | マウスカーソルの X座標 |
+| Y | Real | → | マウスカーソルの Y座標 |
| column | Integer | ← | 列番号 |
| row | Integer | ← | 行番号 |
| colVar | Pointer | ← | 列変数へのポインタ |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 971 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
index a6b00f95a464ea..d2be2fd4e7d8e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-formula
displayed_sidebar: docs
---
-**LISTBOX Get column formula** ( {* ;} *object* ) : Text
+**LISTBOX Get column formula** ( * ; *object* : Text ) : Text
**LISTBOX Get column formula** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| 戻り値 | Text | ← | 列に割り当てられたフォーミュラ |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1202 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
index f7f3cee327df7c..bb3eecac307ca7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-width
displayed_sidebar: docs
---
-**LISTBOX Get column width** ( {* ;} *object* {; *minWidth* {; *maxWidth*}} ) : Integer
+**LISTBOX Get column width** ( * ; *object* : Text {; *minWidth* : Integer {; *maxWidth* : Integer}} ) : Integer
**LISTBOX Get column width** ( *object* : Field, Variable {; *minWidth* : Integer {; *maxWidth* : Integer}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| minWidth | Integer | ← | 列の最小幅 (ピクセル単位) |
| maxWidth | Integer | ← | 列の最大幅 (ピクセル単位) |
| 戻り値 | Integer | ← | 列幅 (ピクセル単位) |
@@ -35,6 +35,6 @@ LISTBOX Get column width は列サイズ変更の制限値を *minWidth* と *ma
| | |
| --- | --- |
| コマンド番号 | 834 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
index e0f67702fb8aab..96f596913a2e5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX Get footer calculation** ( {* ;} *object* ) : Integer
+**LISTBOX Get footer calculation** ( * ; *object* : Text ) : Integer
**LISTBOX Get footer calculation** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| 戻り値 | Integer | ← | 計算タイプ |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
index 19cafca7867942..0a623875cdb66a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-footers-height
displayed_sidebar: docs
---
-**LISTBOX Get footers height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get footers height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get footers height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
| 戻り値 | Integer | ← | 行の高さ |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1146 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
index 98b19a43691664..634181cd0383bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid-colors
displayed_sidebar: docs
---
-**LISTBOX GET GRID COLORS** ( {* ;} *object* ; *hColor* ; *vColor* )
+**LISTBOX GET GRID COLORS** ( * ; *object* : Text ; *hColor* : Text, Integer ; *vColor* : Text, Integer )
**LISTBOX GET GRID COLORS** ( *object* : Field, Variable ; *hColor* : Text, Integer ; *vColor* : Text, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| hColor | Text, Integer | ← | 横グリッドのRGBカラー値 |
| vColor | Text, Integer | ← | 縦グリッドのRGBカラー値 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1200 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
index f3e26e8aa3d460..17d48d6d99b33f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid
displayed_sidebar: docs
---
-**LISTBOX GET GRID** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**LISTBOX GET GRID** ( * ; *object* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX GET GRID** ( *object* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| horizontal | Boolean | ← | True: 表示、False: 非表示 |
| vertical | Boolean | ← | True: 表示、False: 非表示 |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1199 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
index c9bddc0990a039..77d786e54393a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-headers-height
displayed_sidebar: docs
---
-**LISTBOX Get headers height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get headers height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get headers height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
| 戻り値 | Integer | ← | 行の高さ |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1144 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
index c5b75ef8365d7d..a28f6b4e44027a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-hierarchy
displayed_sidebar: docs
---
-**LISTBOX GET HIERARCHY** ( {* ;} *object* ; *hierarchical* {; *hierarchy*} )
+**LISTBOX GET HIERARCHY** ( * ; *object* : Text ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
**LISTBOX GET HIERARCHY** ( *object* : Field, Variable ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
| hierarchical | Boolean | ← | True = 階層リストボックス
False = 非階層リストボックス |
| hierarchy | Pointer array | ← | ポインタの配列 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1099 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
index 1a41fb439ea0b8..1f2027bc829933 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-locked-columns
displayed_sidebar: docs
---
-**LISTBOX Get locked columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get locked columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get locked columns** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Integer | ← | 横スクロールしない列数 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
index ccf30bcfaa6727..09e6bd967090cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-columns
displayed_sidebar: docs
---
-**LISTBOX Get number of columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get number of columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get number of columns** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Integer | ← | 列数 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
index 5c1b2d61b6ffe9..18922d28aedb5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-rows
displayed_sidebar: docs
---
-**LISTBOX Get number of rows** ( {* ;} *object* ) : Integer
+**LISTBOX Get number of rows** ( * ; *object* : Text ) : Integer
**LISTBOX Get number of rows** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Integer | ← | 行数 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 915 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
index 8c08e8ff520a85..05fbafb29cfe85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-objects
displayed_sidebar: docs
---
-**LISTBOX GET OBJECTS** ( {* ;} *object* ; *arrObjectNames* )
+**LISTBOX GET OBJECTS** ( * ; *object* : Text ; *arrObjectNames* : Text array )
**LISTBOX GET OBJECTS** ( *object* : Field, Variable ; *arrObjectNames* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、 Object はオブジェクト名(文字列)
省略時、 Object は変数 |
-| object | any | → | オブジェクト名(* 指定時)、
または変数(* 省略時) |
+| * | 演算子 | → | 指定時、 Object はオブジェクト名(文字列)
省略時、 Object は変数 |
+| object | any | → | オブジェクト名(* 指定時)、
または変数(* 省略時) |
| arrObjectNames | Text array | ← | リストボックスを構成するサブオブジェクト名(ヘッダー、列、フッター) |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
index 857353bcf6a9f5..57178032410453 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-print-information
displayed_sidebar: docs
---
-**LISTBOX GET PRINT INFORMATION** ( {* ;} *object* ; *selector* ; *info* )
+**LISTBOX GET PRINT INFORMATION** ( * ; *object* : Text ; *selector* : Integer ; *info* : Integer )
**LISTBOX GET PRINT INFORMATION** ( *object* : Field, Variable ; *selector* : Integer ; *info* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| selector | Integer | → | 取得する情報 |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| selector | Integer | → | 取得する情報 |
| info | Integer | ← | 現在の値 |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1110 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
index fcbc09b1d7c3e5..7ff475f3168e88 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color-as-number
displayed_sidebar: docs
---
-**LISTBOX Get row color as number** ( {* ;} *object* ; *row* {; *colorType*} ) : Integer
+**LISTBOX Get row color as number** ( * ; *object* : Text ; *row* : Integer {; *colorType* : Integer} ) : Integer
**LISTBOX Get row color as number** ( *object* : Field, Variable ; *row* : Integer {; *colorType* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
-| row | Integer | → | 列番号 |
-| colorType | Integer | → | Listbox font color (デフォルト値) または Listbox background color |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
+| row | Integer | → | 列番号 |
+| colorType | Integer | → | Listbox font color (デフォルト値) または Listbox background color |
| 戻り値 | Integer | ← | カラーの値 |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1271 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
index c549f4614480b2..059c4d053d54a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color
displayed_sidebar: docs
---
-**LISTBOX Get row color** ( {* ;} *object* ; *row* {; *colorType*} ) : Text
+**LISTBOX Get row color** ( * ; *object* : Text ; *row* : Integer {; *colorType* : Integer} ) : Text
**LISTBOX Get row color** ( *object* : Field, Variable ; *row* : Integer {; *colorType* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、オブジェクトをオブジェクト名(文字列)で指定。省略時、オブジェクトを変数で指定 |
-| object | any | → | オブジェクト名(* 指定時)変数(* 省略時) |
-| row | Integer | → | 行番号 |
-| colorType | Integer | → | リストボックスのフォントカラー(デフォルト)またはリストボックスの背景色 |
+| * | 演算子 | → | 指定時、オブジェクトをオブジェクト名(文字列)で指定。省略時、オブジェクトを変数で指定 |
+| object | any | → | オブジェクト名(* 指定時)変数(* 省略時) |
+| row | Integer | → | 行番号 |
+| colorType | Integer | → | リストボックスのフォントカラー(デフォルト)またはリストボックスの背景色 |
| 戻り値 | Text | ← | カラー値 |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1658 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
index 19436e608f5464..88d7df3574bfd9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-font-style
displayed_sidebar: docs
---
-**LISTBOX Get row font style** ( {* ;} *object* ; *row* ) : Integer
+**LISTBOX Get row font style** ( * ; *object* : Text ; *row* : Integer ) : Integer
**LISTBOX Get row font style** ( *object* : Field, Variable ; *row* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
-| row | Integer | → | 列番号 |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
+| row | Integer | → | 列番号 |
| 戻り値 | Integer | ← | スタイルの値 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
index f95b0a526a7e0b..a76a46d0ed6f71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-height
displayed_sidebar: docs
---
-**LISTBOX Get row height** ( {* ;} *object* ; *row* ) : Integer
+**LISTBOX Get row height** ( * ; *object* : Text ; *row* : Integer ) : Integer
**LISTBOX Get row height** ( *object* : Field, Variable ; *row* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| row | Integer | → | 高さの値を取得するリストボックスの行 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| row | Integer | → | 高さの値を取得するリストボックスの行 |
| 戻り値 | Integer | ← | 行の高さ |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
index 115614b6743307..a375393153849c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-rows-height
displayed_sidebar: docs
---
-**LISTBOX Get rows height** ( {* ;} *object* {; *unit*} ) : Integer
+**LISTBOX Get rows height** ( * ; *object* : Text {; *unit* : Integer} ) : Integer
**LISTBOX Get rows height** ( *object* : Field, Variable {; *unit* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| unit | Integer | → | 高さを表す単位: 0または省略時はピクセル、1の場合行単位 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| unit | Integer | → | 高さを表す単位: 0または省略時はピクセル、1の場合行単位 |
| 戻り値 | Integer | ← | 行の高さ |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 836 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
index fc675e61cd116a..2cd6ca06c4ab58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-static-columns
displayed_sidebar: docs
---
-**LISTBOX Get static columns** ( {* ;} *object* ) : Integer
+**LISTBOX Get static columns** ( * ; *object* : Text ) : Integer
**LISTBOX Get static columns** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| 戻り値 | Integer | ← | ドラッグで移動しない列数 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
index de5cef1b36518e..fc6d660f3c18f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-table-source
displayed_sidebar: docs
---
-**LISTBOX GET TABLE SOURCE** ( {* ;} *object* ; *tableNum* {; *name* {; *highlightName*}} )
+**LISTBOX GET TABLE SOURCE** ( * ; *object* : Text ; *tableNum* : Integer {; *name* : Text {; *highlightName* : Text}} )
**LISTBOX GET TABLE SOURCE** ( *object* : Field, Variable ; *tableNum* : Integer {; *name* : Text {; *highlightName* : Text}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| tableNum | Integer | ← | セレクションのテーブル番号 |
| name | Text | ← | 命名セレクション名 またはカレントセレクションの場合"" |
| highlightName | Text | ← | ハイライトセット名 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1014 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
index 4d8cae575078fe..edb14f73c15a66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
@@ -5,20 +5,20 @@ slug: /commands/listbox-insert-column-formula
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN FORMULA** ( {* ;} *object* ; *colPosition* ; *colName* ; *formula* ; *dataType* ; *headerName* ; *headerVariable* {; *footerName* ; *footerVar*} )
+**LISTBOX INSERT COLUMN FORMULA** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *formula* : Text ; *dataType* : Integer ; *headerName* : Text ; *headerVariable* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN FORMULA** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *formula* : Text ; *dataType* : Integer ; *headerName* : Text ; *headerVariable* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| colPosition | Integer | → | 列挿入位置 |
-| colName | Text | → | 列オブジェクト名 |
-| formula | Text | → | 列に関連付ける4Dフォーミュラ |
-| dataType | Integer | → | フォーミュラの結果型 |
-| headerName | Text | → | 列ヘッダーオブジェクト名 |
-| headerVariable | Integer, Pointer | → | 列ヘッダー変数 |
-| footerName | Text | → | 列フッターオブジェクト名 |
-| footerVar | Variable, Pointer | → | 列フッター変数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| colPosition | Integer | → | 列挿入位置 |
+| colName | Text | → | 列オブジェクト名 |
+| formula | Text | → | 列に関連付ける4Dフォーミュラ |
+| dataType | Integer | → | フォーミュラの結果型 |
+| headerName | Text | → | 列ヘッダーオブジェクト名 |
+| headerVariable | Integer, Pointer | → | 列ヘッダー変数 |
+| footerName | Text | → | 列フッターオブジェクト名 |
+| footerVar | Variable, Pointer | → | 列フッター変数 |
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 970 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
index 40c1fe08809dc0..c15f6c2564f8b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-insert-column
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN** ( {* ;} *object* ; *colPosition* ; *colName* ; *colVariable* ; *headerName* ; *headerVar* {; *footerName* ; *footerVar*} )
+**LISTBOX INSERT COLUMN** ( * ; *object* : Text ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer ; *colName* : Text ; *colVariable* : Array, Field, Variable, Pointer ; *headerName* : Text ; *headerVar* : Integer, Pointer {; *footerName* : Text ; *footerVar* : Variable, Pointer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| colPosition | Integer | → | 列の挿入場所 |
-| colName | Text | → | 列オブジェクト名 |
-| colVariable | Array, Field, Variable, Pointer | → | 列配列名 または フィールド または 変数 |
-| headerName | Text | → | 列ヘッダオブジェクト名 |
-| headerVar | Integer, Pointer | → | 列ヘッダ変数 |
-| footerName | Text | → | 列フッターオブジェクト名 |
-| footerVar | Variable, Pointer | → | 列フッター変数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| colPosition | Integer | → | 列の挿入場所 |
+| colName | Text | → | 列オブジェクト名 |
+| colVariable | Array, Field, Variable, Pointer | → | 列配列名 または フィールド または 変数 |
+| headerName | Text | → | 列ヘッダオブジェクト名 |
+| headerVar | Integer, Pointer | → | 列ヘッダ変数 |
+| footerName | Text | → | 列フッターオブジェクト名 |
+| footerVar | Variable, Pointer | → | 列フッター変数 |
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
index fb72eb0d7efa5e..59bd4d5ff2173c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-insert-rows
displayed_sidebar: docs
---
-**LISTBOX INSERT ROWS** ( {* ;} *object* ; *rowPosition* {; *numRows*} )
+**LISTBOX INSERT ROWS** ( * ; *object* : Text ; *rowPosition* : Integer {; *numRows* : Integer} )
**LISTBOX INSERT ROWS** ( *object* : Field, Variable ; *rowPosition* : Integer {; *numRows* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| rowPosition | Integer | → | 行挿入位置 |
-| numRows | Integer | → | 挿入する行数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| rowPosition | Integer | → | 行挿入位置 |
+| numRows | Integer | → | 挿入する行数 |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 913 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
index f400e8e0513d05..902d504c53f45f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-move-column
displayed_sidebar: docs
---
-**LISTBOX MOVE COLUMN** ( {* ;} *object* ; *colPosition* )
+**LISTBOX MOVE COLUMN** ( * ; *object* : Text ; *colPosition* : Integer )
**LISTBOX MOVE COLUMN** ( *object* : Field, Variable ; *colPosition* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字) 省略時: objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| colPosition | Integer | → | 列の新しい位置 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字) 省略時: objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| colPosition | Integer | → | 列の新しい位置 |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1274 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
index 7c447c72dbbc30..f1a98da91b3ff3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-column-number
displayed_sidebar: docs
---
-**LISTBOX MOVED COLUMN NUMBER** ( {* ;} *object* ; *oldPosition* ; *newPosition* )
+**LISTBOX MOVED COLUMN NUMBER** ( * ; *object* : Text ; *oldPosition* : Integer ; *newPosition* : Integer )
**LISTBOX MOVED COLUMN NUMBER** ( *object* : Field, Variable ; *oldPosition* : Integer ; *newPosition* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| oldPosition | Integer | ← | 移動された列の前の位置 |
| newPosition | Integer | ← | 移動された列の新しい位置 |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 844 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
index f4e03a08890e6a..89411ca6b2f5be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-row-number
displayed_sidebar: docs
---
-**LISTBOX MOVED ROW NUMBER** ( {* ;} *object* ; *oldPosition* ; *newPosition* )
+**LISTBOX MOVED ROW NUMBER** ( * ; *object* : Text ; *oldPosition* : Integer ; *newPosition* : Integer )
**LISTBOX MOVED ROW NUMBER** ( *object* : Field, Variable ; *oldPosition* : Integer ; *newPosition* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| oldPosition | Integer | ← | 移動された行の以前の位置 |
| newPosition | Integer | ← | 移動された行の新しい位置 |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 837 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
index e6c0a16895b569..89a66c7cc9333b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-select-break
displayed_sidebar: docs
---
-**LISTBOX SELECT BREAK** ( {* ;} *object* ; *row* ; *column* {; *action*} )
+**LISTBOX SELECT BREAK** ( * ; *object* : Text ; *row* : Integer ; *column* : Integer {; *action* : Integer} )
**LISTBOX SELECT BREAK** ( *object* : Field, Variable ; *row* : Integer ; *column* : Integer {; *action* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| row | Integer | → | ブレーク行の番号 |
-| column | Integer | → | ブレーク列の番号 |
-| action | Integer | → | 選択アクション |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| row | Integer | → | ブレーク行の番号 |
+| column | Integer | → | ブレーク列の番号 |
+| action | Integer | → | 選択アクション |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1117 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
index 6b1743f1e84447..7ee0bf81a41b63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-row
displayed_sidebar: docs
---
-**LISTBOX SELECT ROW** ( {* ;} *object* ; *rowPosition* {; *action*} )
+**LISTBOX SELECT ROW** ( * ; *object* : Text ; *rowPosition* : Integer {; *action* : Integer} )
**LISTBOX SELECT ROW** ( *object* : Field, Variable ; *rowPosition* : Integer {; *action* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| rowPosition | Integer | → | 選択する行番号 |
-| action | Integer | → | 選択アクション |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| rowPosition | Integer | → | 選択する行番号 |
+| action | Integer | → | 選択アクション |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 912 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
index 4016e5539d4a4e..657624a2c1267f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-rows
displayed_sidebar: docs
---
-**LISTBOX SELECT ROWS** ( {* ;} *object* ; *selection* {; *action*} )
+**LISTBOX SELECT ROWS** ( * ; *object* : Text ; *selection* : Object, Collection {; *action* : Integer} )
**LISTBOX SELECT ROWS** ( *object* : Field, Variable ; *selection* : Object, Collection {; *action* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、 Object はオブジェクト名(文字列) 省略時、 Object は変数 |
-| object | any | → | オブジェクト名(* 指定時)、 または変数(* 省略時) |
-| selection | Object, Collection | → | 選択する行を指定するオブジェクトまたはコレクション |
-| action | Integer | → | lk replace selection (省略時のデフォルト)、lk add to selection、lk remove from selection |
+| * | 演算子 | → | 指定時、 Object はオブジェクト名(文字列) 省略時、 Object は変数 |
+| object | any | → | オブジェクト名(* 指定時)、 または変数(* 省略時) |
+| selection | Object, Collection | → | 選択する行を指定するオブジェクトまたはコレクション |
+| action | Integer | → | lk replace selection (省略時のデフォルト)、lk add to selection、lk remove from selection |
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1715 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
index 328f14ee54efc0..a95531454e77a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-array
displayed_sidebar: docs
---
-**LISTBOX SET ARRAY** ( {* ;} *object* ; *arrType* ; *arrPtr* )
+**LISTBOX SET ARRAY** ( * ; *object* : Text ; *arrType* : Integer ; *arrPtr* : Pointer )
**LISTBOX SET ARRAY** ( *object* : Field, Variable ; *arrType* : Integer ; *arrPtr* : Pointer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
-| arrType | Integer | → | 配列のタイプ |
-| arrPtr | Pointer | → | プロパティに関連付ける配列を指定 |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
+| arrType | Integer | → | 配列のタイプ |
+| arrPtr | Pointer | → | プロパティに関連付ける配列を指定 |
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1279 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
index eb5dc3631dc592..ec800acefd7fb9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX SET AUTO ROW HEIGHT** ( {* ;} *object* ; *selector* ; *value* ; *unit* )
+**LISTBOX SET AUTO ROW HEIGHT** ( * ; *object* : Text ; *selector* : Integer ; *value* : Integer ; *unit* : Integer )
**LISTBOX SET AUTO ROW HEIGHT** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Integer ; *unit* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
-| selector | Integer | → | 設定する高さの値:lk row min height あるいは lk row max height |
-| value | Integer | → | 行の高さの最小値、あるいは最大値 |
-| unit | Integer | → | 高さの値の単位: 0=ピクセル単位、1=行単位 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
+| selector | Integer | → | 設定する高さの値:lk row min height あるいは lk row max height |
+| value | Integer | → | 行の高さの最小値、あるいは最大値 |
+| unit | Integer | → | 高さの値の単位: 0=ピクセル単位、1=行単位 |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1501 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
index 0e0480d960e64c..59f028d8652f4c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-column-formula
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN FORMULA** ( {* ;} *object* ; *formula* ; *dataType* )
+**LISTBOX SET COLUMN FORMULA** ( * ; *object* : Text ; *formula* : Text ; *dataType* : Integer )
**LISTBOX SET COLUMN FORMULA** ( *object* : Field, Variable ; *formula* : Text ; *dataType* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または変数 (* 省略時) |
-| formula | Text | → | 列に割り当てる4Dフォーミュラ |
-| dataType | Integer | → | フォーミュラの結果型 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または変数 (* 省略時) |
+| formula | Text | → | 列に割り当てる4Dフォーミュラ |
+| dataType | Integer | → | フォーミュラの結果型 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1203 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
index 13334e8b79523d..b61f1c8cd14849 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-column-width
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN WIDTH** ( {* ;} *object* ; *width* {; *minWidth* {; *maxWidth*}} )
+**LISTBOX SET COLUMN WIDTH** ( * ; *object* : Text ; *width* : Integer {; *minWidth* : Integer {; *maxWidth* : Integer}} )
**LISTBOX SET COLUMN WIDTH** ( *object* : Field, Variable ; *width* : Integer {; *minWidth* : Integer {; *maxWidth* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| width | Integer | → | 列幅 (ピクセル単位) |
-| minWidth | Integer | → | 列の最小幅 (ピクセル単位) |
-| maxWidth | Integer | → | 列の最大幅 (ピクセル単位) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| width | Integer | → | 列幅 (ピクセル単位) |
+| minWidth | Integer | → | 列の最小幅 (ピクセル単位) |
+| maxWidth | Integer | → | 列の最大幅 (ピクセル単位) |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 833 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
index aaaebdcea3abb2..e2a7bfd509ba97 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX SET FOOTER CALCULATION** ( {* ;} *object* ; *calculation* )
+**LISTBOX SET FOOTER CALCULATION** ( * ; *object* : Text ; *calculation* : Integer )
**LISTBOX SET FOOTER CALCULATION** ( *object* : Field, Variable ; *calculation* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| calculation | Integer | → | フッターエリアの計算タイプ |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)、省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| calculation | Integer | → | フッターエリアの計算タイプ |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1140 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
index e52ad57ba7076e..95b58e6e6330f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-footers-height
displayed_sidebar: docs
---
-**LISTBOX SET FOOTERS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET FOOTERS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET FOOTERS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| height | Integer | → | 行の高さ |
-| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| height | Integer | → | 行の高さ |
+| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1145 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
index 52c1c0c743b143..65de0241939bb3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-grid-color
displayed_sidebar: docs
---
-**LISTBOX SET GRID COLOR** ( {* ;} *object* ; *color* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID COLOR** ( * ; *object* : Text ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID COLOR** ( *object* : Field, Variable ; *color* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| color | Text, Integer | → | RGBカラー値 |
-| horizontal | Boolean | → | 水平グリッドラインにカラーを適用 |
-| vertical | Boolean | → | 垂直グリッドラインにカラーを適用 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| color | Text, Integer | → | RGBカラー値 |
+| horizontal | Boolean | → | 水平グリッドラインにカラーを適用 |
+| vertical | Boolean | → | 垂直グリッドラインにカラーを適用 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 842 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
index 73bec7cae6aab0..d22c8fe74e279e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-grid
displayed_sidebar: docs
---
-**LISTBOX SET GRID** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID** ( * ; *object* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID** ( *object* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| horizontal | Boolean | → | True = 表示, False = 非表示 |
-| vertical | Boolean | → | True = 表示, False = 非表示 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| horizontal | Boolean | → | True = 表示, False = 非表示 |
+| vertical | Boolean | → | True = 表示, False = 非表示 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 841 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
index 92fbf1c0fbb054..0aac6bd0f9b939 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-headers-height
displayed_sidebar: docs
---
-**LISTBOX SET HEADERS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET HEADERS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET HEADERS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| height | Integer | → | ヘッダーの高さ |
-| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| height | Integer | → | ヘッダーの高さ |
+| unit | Integer | → | 高さを指定する単位:0または省略時 = ピクセル、1 = 行 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1143 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
index af2c1507651782..3fcafe43a4b50b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-hierarchy
displayed_sidebar: docs
---
-**LISTBOX SET HIERARCHY** ( {* ;} *object* ; *hierarchical* {; *hierarchy*} )
+**LISTBOX SET HIERARCHY** ( * ; *object* : Text ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
**LISTBOX SET HIERARCHY** ( *object* : Field, Variable ; *hierarchical* : Boolean {; *hierarchy* : Pointer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| hierarchical | Boolean | → | True = 階層リストボックス
False = 非階層リストボックス |
-| hierarchy | Pointer array | → | ポインタの配列 |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)
省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| hierarchical | Boolean | → | True = 階層リストボックス
False = 非階層リストボックス |
+| hierarchy | Pointer array | → | ポインタの配列 |
@@ -57,6 +57,6 @@ aCountry、aRegion、そしてaCity配列をリストボックスの階層とし
| | |
| --- | --- |
| コマンド番号 | 1098 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
index 50e12180db484f..e62e233691857b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-locked-columns
displayed_sidebar: docs
---
-**LISTBOX SET LOCKED COLUMNS** ( {* ;} *object* ; *numColumns* )
+**LISTBOX SET LOCKED COLUMNS** ( * ; *object* : Text ; *numColumns* : Integer )
**LISTBOX SET LOCKED COLUMNS** ( *object* : Field, Variable ; *numColumns* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| numColumns | Integer | → | 横スクロールしない列の数 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| numColumns | Integer | → | 横スクロールしない列の数 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1151 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
index 900288847215f0..b6cbd2f67d2c56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-row-color
displayed_sidebar: docs
---
-**LISTBOX SET ROW COLOR** ( {* ;} *object* ; *row* ; *color* {; *colorType*} )
+**LISTBOX SET ROW COLOR** ( * ; *object* : Text ; *row* : Integer ; *color* : Text, Integer {; *colorType* : Integer} )
**LISTBOX SET ROW COLOR** ( *object* : Field, Variable ; *row* : Integer ; *color* : Text, Integer {; *colorType* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
-| row | Integer | → | 列番号 |
-| color | Text, Integer | → | RGBカラー |
-| colorType | Integer | → | Listbox font color(デフォルトの値) またはListbox background color |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
+| row | Integer | → | 列番号 |
+| color | Text, Integer | → | RGBカラー |
+| colorType | Integer | → | Listbox font color(デフォルトの値) またはListbox background color |
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
index dc6b5ea61e8af1..efd708f4e03657 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-font-style
displayed_sidebar: docs
---
-**LISTBOX SET ROW FONT STYLE** ( {* ;} *object* ; *row* ; *style* )
+**LISTBOX SET ROW FONT STYLE** ( * ; *object* : Text ; *row* : Integer ; *style* : Integer )
**LISTBOX SET ROW FONT STYLE** ( *object* : Field, Variable ; *row* : Integer ; *style* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
-| row | Integer | → | 列番号 |
-| style | Integer | → | フォントスタイル |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(*指定時)、または変数(*省略時) |
+| row | Integer | → | 列番号 |
+| style | Integer | → | フォントスタイル |
@@ -83,6 +83,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1268 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
index a273e62af755d5..8a996b27a5753b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-height
displayed_sidebar: docs
---
-**LISTBOX SET ROW HEIGHT** ( {* ;} *object* ; *row* ; *height* )
+**LISTBOX SET ROW HEIGHT** ( * ; *object* : Text ; *row* : Integer ; *height* : Integer )
**LISTBOX SET ROW HEIGHT** ( *object* : Field, Variable ; *row* : Integer ; *height* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| row | Integer | → | 高さを指定するリストボックスの行 |
-| height | Integer | → | 行の高さ |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| row | Integer | → | 高さを指定するリストボックスの行 |
+| height | Integer | → | 行の高さ |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1409 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
index 450327815bfe19..53284867fedba2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-rows-height
displayed_sidebar: docs
---
-**LISTBOX SET ROWS HEIGHT** ( {* ;} *object* ; *height* {; *unit*} )
+**LISTBOX SET ROWS HEIGHT** ( * ; *object* : Text ; *height* : Integer {; *unit* : Integer} )
**LISTBOX SET ROWS HEIGHT** ( *object* : Field, Variable ; *height* : Integer {; *unit* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| height | Integer | → | 行の高さ |
-| unit | Integer | → | 高さを表す単位: 0または省略時はピクセル、1の場合行単位 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| height | Integer | → | 行の高さ |
+| unit | Integer | → | 高さを表す単位: 0または省略時はピクセル、1の場合行単位 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 835 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
index a99cc2f2445023..d666507ff19c81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-static-columns
displayed_sidebar: docs
---
-**LISTBOX SET STATIC COLUMNS** ( {* ;} *object* ; *numColumn* )
+**LISTBOX SET STATIC COLUMNS** ( * ; *object* : Text ; *numColumn* : Integer )
**LISTBOX SET STATIC COLUMNS** ( *object* : Field, Variable ; *numColumn* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| numColumn | Integer | → | ドラッグで移動しない列数 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| numColumn | Integer | → | ドラッグで移動しない列数 |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
index 9ed2ff7024f2ec..c027643f1729cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-table-source
displayed_sidebar: docs
---
-**LISTBOX SET TABLE SOURCE** ( {* ;} *object* ; tableNum | name {; *highlightName*} )
+**LISTBOX SET TABLE SOURCE** ( * ; *object* : Text ; tableNum | name {; *highlightName* : Text} )
**LISTBOX SET TABLE SOURCE** ( *object* : Field, Variable ; tableNum | name {; *highlightName* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| tableNum | name | 倍長整数, 文字 | → | カレントセレクションが使用されるテーブル番号 または使用される命名セレクション |
-| highlightName | Text | → | ハイライトセットの名前 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| tableNum | name | 倍長整数, 文字 | → | カレントセレクションが使用されるテーブル番号 または使用される命名セレクション |
+| highlightName | Text | → | ハイライトセットの名前 |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1013 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
index 8beff8119e6aea..77a2bcce4636ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-sort-columns
displayed_sidebar: docs
---
-**LISTBOX SORT COLUMNS** ( {* ;} *object* ; *colNum* ; *order* {; *colNum2* ; *order2* ; ... ; *colNumN* ; *orderN*} )
+**LISTBOX SORT COLUMNS** ( * ; *object* : Text ; *colNum* : Integer ; *order* : Operator {; ...(*colNum* : Integer, *order* : Operator)} )
**LISTBOX SORT COLUMNS** ( *object* : Field, Variable ; *colNum* : Integer ; *order* : Operator {; ...(*colNum* : Integer, *order* : Operator)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| colNum | Integer | → | 並び替える列番号 |
-| order | * | → | ">": 昇順ソート または "<": 降順ソート |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| colNum | Integer | → | 並び替える列番号 |
+| order | Operator | → | `>` to sort in ascending order or `<` to sort in descending order |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 916 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
index bbcf6f595389c7..51b3f2ae855429 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
@@ -5,11 +5,11 @@ slug: /commands/load-4d-view-document
displayed_sidebar: docs
---
-**Load 4D View document** ( *4DViewDocument* ) : Object
+**Load 4D View document** ( *4DViewDocument* : Blob ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| 4DViewDocument | Blob | → | 4D View ドキュメント |
+| 4DViewDocument | Blob | → | 4D View ドキュメント |
| 戻り値 | Object | ← | 4D View ドキュメントの情報を格納したオブジェクト |
@@ -201,6 +201,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1528 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
index 300f1f829f78e6..06e22b4191d804 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
@@ -5,11 +5,11 @@ slug: /commands/load-list
displayed_sidebar: docs
---
-**Load list** ( *listName* ) : Integer
+**Load list** ( *listName* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| listName | Text | → | デザインモードのリストエディタで 作成されたリスト名 |
+| listName | Text | → | デザインモードのリストエディタで 作成されたリスト名 |
| 戻り値 | Integer | ← | 新しく作成されたリストのリスト参照番号 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 383 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
index e4f08f88106082..98808209317edd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
@@ -5,11 +5,11 @@ slug: /commands/load-record
displayed_sidebar: docs
---
-**LOAD RECORD** {( *aTable* )}
+**LOAD RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードをロードするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードをロードするテーブル, または 省略時、デフォルトテーブル |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 52 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
index 40d40feafe703e..a0680708e9ff2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
@@ -5,13 +5,13 @@ slug: /commands/load-set
displayed_sidebar: docs
---
-**LOAD SET** ( {*aTable* ;} *set* ; *document* )
+**LOAD SET** ( {*aTable* : Table ;} *set* : Text ; *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セットの属しているテーブル、または 省略時、デフォルトテーブル |
-| set | Text | → | 作成するセットの名前 |
-| document | Text | → | セットを保存したドキュメントの名前 |
+| aTable | Table | → | セットの属しているテーブル、または 省略時、デフォルトテーブル |
+| set | Text | → | 作成するセットの名前 |
+| document | Text | → | セットを保存したドキュメントの名前 |
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 185 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
index 04f5bca539d82c..8b44b1b444e34e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
@@ -5,11 +5,11 @@ slug: /commands/load-variables
displayed_sidebar: docs
---
-**LOAD VARIABLES** ( *document* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**LOAD VARIABLES** ( *document* : Text ; *variable* : Variable {; *...variable* : Variable} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | 4D変数を保存したドキュメント |
+| document | Text | → | 4D変数を保存したドキュメント |
| variable | Variable | ← | 値を受け取る変数 |
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 74 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
index 129afa9b8baa4f..23722bf2655108 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
@@ -5,11 +5,11 @@ slug: /commands/localized-document-path
displayed_sidebar: docs
---
-**Localized document path** ( *relativePath* ) : Text
+**Localized document path** ( *relativePath* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| relativePath | Text | → | ローカライズされたバージョンを取得したいドキュメントの相対パス名 |
+| relativePath | Text | → | ローカライズされたバージョンを取得したいドキュメントの相対パス名 |
| 戻り値 | Text | ← | ローカライズされたドキュメントの絶対パス名 |
@@ -72,6 +72,6 @@ Resources フォルダの中身は以下のようになっています:
| | |
| --- | --- |
| コマンド番号 | 1105 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
index 372fbe7e9c08eb..8fdcf3982a38ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
@@ -5,11 +5,11 @@ slug: /commands/localized-string
displayed_sidebar: docs
---
-**Localized string** ( *resName* ) : Text
+**Localized string** ( *resName* : Text ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resName | Text | → | resname属性値 |
+| resName | Text | → | resname属性値 |
| 戻り値 | Text | ← | カレントランゲージで resNameによって指定された文字列の値 |
@@ -61,7 +61,7 @@ Note: XLIFFは大文字小文字を区別します。
| | |
| --- | --- |
| コマンド番号 | 991 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
index a1ebc3d690f256..ba1eff6502650c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
@@ -5,11 +5,11 @@ slug: /commands/locked-by
displayed_sidebar: docs
---
-**LOCKED BY** ( {*aTable* ;} *process* ; *4Duser* ; *sessionUser* ; *processName* )
+**LOCKED BY** ( {*aTable* : Table ;} *process* : Integer ; *4Duser* : Text ; *sessionUser* : Text ; *processName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードロックをテストするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードロックをテストするテーブル, または 省略時、デフォルトテーブル |
| process | Integer | ← | プロセス参照番号 |
| 4Duser | Text | ← | 4Dユーザ名 |
| sessionUser | Text | ← | ワークセッションを開いているユーザ |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 353 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
index 223a49425b1a2a..b0627a89e7627f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
@@ -5,11 +5,11 @@ slug: /commands/locked-records-info
displayed_sidebar: docs
---
-**Locked records info** ( *aTable* ) : Object
+**Locked records info** ( *aTable* : Table ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | ロックされたレコードの情報を取得したいテーブル |
+| aTable | Table | → | ロックされたレコードの情報を取得したいテーブル |
| 戻り値 | Object | ← | ロックされたレコードの詳細(あれば) |
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1316 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
index 5c43a261ee7b31..0618fc8a1d55fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
@@ -5,11 +5,11 @@ slug: /commands/locked
displayed_sidebar: docs
---
-**Locked** {( *aTable* )} : Boolean
+**Locked** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | ロックを検証するレコードが属するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | ロックを検証するレコードが属するテーブル, または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | TRUE: レコードはロックされている FALSE: レコードはロックされていない |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
index 6face7c7e8145d..f33752b8ad6aa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
@@ -5,13 +5,13 @@ slug: /commands/log-event
displayed_sidebar: docs
---
-**LOG EVENT** ( {*outputType* ;} *message* {; *importance*} )
+**LOG EVENT** ( {*outputType* : Integer ;} *message* : Text {; *importance* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| outputType | Integer | → | メッセージの出力タイプ |
-| message | Text | → | メッセージの内容 |
-| importance | Integer | → | メッセージの重要度レベル |
+| outputType | Integer | → | メッセージの出力タイプ |
+| message | Text | → | メッセージの内容 |
+| importance | Integer | → | メッセージの重要度レベル |
@@ -68,6 +68,6 @@ Windowsでデータベースが開かれた時の情報をログしたい場合
| | |
| --- | --- |
| コマンド番号 | 667 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
index cde38feefa6a56..69eeb14fe88943 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
@@ -5,14 +5,14 @@ slug: /commands/log-file-to-json
displayed_sidebar: docs
---
-**LOG FILE TO JSON** ( *destFolderPath* {; *maxSize* {; *logPath* {; *fieldAtt*}}} )
+**LOG FILE TO JSON** ( *destFolderPath* : Text {; *maxSize* : Integer {; *logPath* : Text {; *fieldAtt* : Integer}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| destFolderPath | Text | → | 保存されているファイルの保存先フォルダへのパス |
-| maxSize | Integer | → | 作成するJSONファイルの最大サイズ(バイト単位) |
-| logPath | Text | → | 書き出すログファイルのパス名; 省略時はカレントログファイルを使用 |
-| fieldAtt | Integer | → | フィールド詳細属性: 1 = 数字を使用(デフォルト)、2 = 名前を使用 |
+| destFolderPath | Text | → | 保存されているファイルの保存先フォルダへのパス |
+| maxSize | Integer | → | 作成するJSONファイルの最大サイズ(バイト単位) |
+| logPath | Text | → | 書き出すログファイルのパス名; 省略時はカレントログファイルを使用 |
+| fieldAtt | Integer | → | フィールド詳細属性: 1 = 数字を使用(デフォルト)、2 = 名前を使用 |
@@ -102,7 +102,7 @@ Blobおよびピクチャーフィールドの場合、保存場所によって
| | |
| --- | --- |
| コマンド番号 | 1352 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
index 7d6b42773c9312..d24ee018b5c0fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 928 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md
index 0991c10a19b1f2..311ad6e63c7db3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/log.md
@@ -5,11 +5,11 @@ slug: /commands/log
displayed_sidebar: docs
---
-**Log** ( *number* ) : Real
+**Log** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 自然対数を求める数値 |
+| number | Real | → | 自然対数を求める数値 |
| 戻り値 | Real | ← | 自然対数値 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 22 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
index 3118c5a2f97420..bba85a7c1eb3e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
@@ -5,13 +5,13 @@ slug: /commands/longint-array-from-selection
displayed_sidebar: docs
---
-**LONGINT ARRAY FROM SELECTION** ( *aTable* ; *recordArray* {; *selection*} )
+**LONGINT ARRAY FROM SELECTION** ( *aTable* : Table ; *recordArray* : Integer array {; *selection* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントセレクションのテーブル |
+| aTable | Table | → | カレントセレクションのテーブル |
| recordArray | Integer array | ← | レコード番号配列 |
-| selection | Text | → | 命名セレクション名、または 省略した場合カレントセレクション |
+| selection | Text | → | 命名セレクション名、または 省略した場合カレントセレクション |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 647 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
index f7cd5d0bf8f407..63da3ce7f06955 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/longint-to-blob
displayed_sidebar: docs
---
-**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; offset } )
**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; *} )
+**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; offset } )
**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| longint | Integer | → | BLOBに書き込む倍長整数値 |
-| Blob | Blob | → | 倍長整数値を受け取るBLOB |
-| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
+| longint | Integer | → | BLOBに書き込む倍長整数値 |
+| Blob | Blob | → | 倍長整数値を受け取るBLOB |
+| byteOrder | Integer | → | 0 Native byte ordering 1 Macintosh byte ordering 2 PC byte ordering |
| offset | * | 変数, 演算子 | ↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
-| || | *でない場合、書き込み後の新しいオフセット |
+| | | | *でない場合、書き込み後の新しいオフセット |
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 550 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
index 9ddec511cdeecf..6232354731b757 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
@@ -5,12 +5,12 @@ slug: /commands/lowercase
displayed_sidebar: docs
---
-**Lowercase** ( *aString* {; *} ) : Text
+**Lowercase** ( *aString* : Text {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aString | Text | → | 英小文字に変換する文字列 |
-| * | 演算子 | → | 渡した場合アクセントを保持 |
+| aString | Text | → | 英小文字に変換する文字列 |
+| * | 演算子 | → | 渡した場合アクセントを保持 |
| 戻り値 | Text | ← | 英小文字の文字列 |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 14 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
index 44b7ee4c8f4c5e..fba82f8b147be1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 546 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
index c6bfc4896a5e56..ae316ca2cf6aad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 544 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
index d6fb15455cb05e..e48db56f5175d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 545 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
index bf964b1f016302..b28b78751bff5c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
@@ -10,18 +10,13 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pattern | Text | → | 通常の式 |
-| aString | Text | → | 検索が実行される文字列 |
-| start | Integer | → | aStringで検索が開始する位置 |
-| pos_found | Integer array, Integer | ← | オカレンスの位置 |
-| length_found | Integer array, Integer | ← | オカレンスの長さ |
-| * | 演算子 | → | 渡された場合、示された位置で検索するのみ |
+| pattern | Text | → | Regular expression (complete equality with two-parameters syntax) |
+| aString | Text | → | 検索が実行される文字列 |
+| start | Integer | → | aStringで検索が開始する位置 |
+| pos_found | Integer, Integer array | ← | オカレンスの位置 |
+| length_found | Integer, Integer array | ← | オカレンスの長さ |
+| * | 演算子 | → | 渡された場合、示された位置で検索するのみ |
| 戻り値 | Boolean | ← | True = 検索がオカレンスを発見した場合 その他の場合はFalse |
-| Match regex ( pattern ; aString ) -> 戻り値 |
-| 引数 | 型 | 説明 |
-| pattern | Text | → | 通常の式(完全に一致) |
-| aString | Text | → | 検索が行われる文字列 |
-| 戻り値 | Boolean | ← | True = 検索でオカレンスが見つかった; それ以外の場合にはFalse |
@@ -115,7 +110,7 @@ vfound:=Match regex( pattern;mytext; start; pos\_found\_array; length\_found\_ar
| | |
| --- | --- |
| コマンド番号 | 1019 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md
index d1ee49123d0e5b..0dd1f54110c468 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/max.md
@@ -5,13 +5,13 @@ slug: /commands/max
displayed_sidebar: docs
---
-**Max** ( *series* {; *attributePath*} ) : any
+**Max** ( *series* : Field, Array {; *attributePath* : Text} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 最大値を求めるデータ |
-| attributePath | Text | → | 最大値を取得したい属性のパス |
-| 戻り値 | Number, Date | ← | series中の最大値 |
+| series | Field, Array | → | 最大値を求めるデータ |
+| attributePath | Text | → | 最大値を取得したい属性のパス |
+| 戻り値 | Date, Real | ← | series中の最大値 |
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
index 63e73721335066..c31f6142bdd109 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
@@ -5,11 +5,11 @@ slug: /commands/maximize-window
displayed_sidebar: docs
---
-**MAXIMIZE WINDOW** {( *window* )}
+**MAXIMIZE WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号、または省略時は すべてのカレントプロセス最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (macOS) |
+| window | Integer | → | ウィンドウ参照番号、または省略時は すべてのカレントプロセス最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (macOS) |
@@ -90,6 +90,6 @@ Mac OSのズームボックス
| | |
| --- | --- |
| コマンド番号 | 453 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
index 110a7f5e0aefdf..39ccd2026a295a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
@@ -5,11 +5,11 @@ slug: /commands/memory-statistics
displayed_sidebar: docs
---
-**MEMORY STATISTICS** ( *infoType* ; *arrNames* ; *arrValues* ; *arrCount* )
+**MEMORY STATISTICS** ( *infoType* : Integer ; *arrNames* : Text array ; *arrValues* : Real array ; *arrCount* : Real array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| infoType | Integer | → | 取得する情報のセレクター |
+| infoType | Integer | → | 取得する情報のセレクター |
| arrNames | Text array | ← | 情報のタイトル |
| arrValues | Real array | ← | 情報の値 |
| arrCount | Real array | ← | 関連するオブジェクトの数 (利用可能な場合) |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
index cd5766099fb6f6..14791a715f1fd4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 440 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
index 2bafbf55d6095c..a27e4a60d06fa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 441 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
index e42f81692af9e7..1aef440f30fc77 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
@@ -5,7 +5,7 @@ slug: /commands/menu-selected
displayed_sidebar: docs
---
-**Menu selected** {( *subMenu* )} : Integer
+**Menu selected** ( *subMenu* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md
index 77017589b5455a..b470ab43713716 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/message.md
@@ -5,11 +5,11 @@ slug: /commands/message
displayed_sidebar: docs
---
-**MESSAGE** ( *message* )
+**MESSAGE** ( *message* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | 表示するメッセージ |
+| message | Text | → | 表示するメッセージ |
@@ -118,6 +118,6 @@ MESSAGEをコールするたびに、以下のウィンドウが表示されて
| | |
| --- | --- |
| コマンド番号 | 88 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
index ff6f7706c3e67c..4cefd4ca30eb7a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 175 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
index e62c533019965c..e795afea06bf0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 181 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
index c59c78c193eaee..88fa7931c08afc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
@@ -5,11 +5,11 @@ slug: /commands/method-called-on-error
displayed_sidebar: docs
---
-**Method called on error** {( *scope* )} : Text
+**Method called on error** ( *scope* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| scope | Integer | → | エラーメソッドのスコープ |
+| scope | Integer | → | エラーメソッドのスコープ |
| 戻り値 | Text | ← | エラー時に呼び出されるメソッド名 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 704 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
index dac4ab6cb6e6d5..9d50de0a301496 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 705 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
index fa5d2822248933..b5b55f67ccef10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attribute
displayed_sidebar: docs
---
-**METHOD Get attribute** ( *path* ; *attribType* {; *} ) : Boolean
+**METHOD Get attribute** ( *path* : Text ; *attribType* : Integer {; *} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | プロジェクトメソッドのパス |
-| attribType | Integer | → | 取得する属性タイプ |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| path | Text | → | プロジェクトメソッドのパス |
+| attribType | Integer | → | 取得する属性タイプ |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
| 戻り値 | Boolean | ← | True: 属性が選択されている、False: 選択されていない |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1169 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
index dd4d8946194a01..6bbad6bf98a8f1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attributes
displayed_sidebar: docs
---
-**METHOD GET ATTRIBUTES** ( *path* ; *attributes* {; *} )
+**METHOD GET ATTRIBUTES** ( *path* : Text, Text配列 ; *attributes* : Object, Object array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドのパス |
+| path | Text, Text配列 | → | メソッドのパス |
| attributes | Object, Object array | ← | 選択したメソッドの属性 |
-| * | 演算子 | → | 指定すると、コマンドはコンポーネントから実行されたときにホストデータベースへと適用されます
(このコンテキスト外ではこの引数は無視されます) |
+| * | 演算子 | → | 指定すると、コマンドはコンポーネントから実行されたときにホストデータベースへと適用されます
(このコンテキスト外ではこの引数は無視されます) |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
index 16a200a0fda792..286ad92f15dda1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-code
displayed_sidebar: docs
---
-**METHOD GET CODE** ( *path* ; *code* {; *option*} {; *} )
+**METHOD GET CODE** ( *path* : Text, Text配列 ; *code* : Text, Text配列 {; *option* : Integer} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
+| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
| code | Text, Text配列 | ← | 指定したメソッドのコード |
-| option | Integer | → | 0 または省略時 = 単純な書き出し(トークンなし)、1 = トークンを使用して書き出し |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| option | Integer | → | 0 または省略時 = 単純な書き出し(トークンなし)、1 = トークンを使用して書き出し |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -124,6 +124,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
index 25fb34215c9526..c5c248662fe499 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-comments
displayed_sidebar: docs
---
-**METHOD GET COMMENTS** ( *path* ; *comments* {; *} )
+**METHOD GET COMMENTS** ( *path* : Text, Text配列 ; *comments* : Text, Text配列 {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
+| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
| comments | Text, Text配列 | ← | メソッドのコメント |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1189 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
index 0d9fc0499b2bb4..a190c8c1ba80d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-folders
displayed_sidebar: docs
---
-**METHOD GET FOLDERS** ( *arrNames* {; *filter*}{; *} )
+**METHOD GET FOLDERS** ( *arrNames* : Text array {; *filter* : Text}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| arrNames | Text array | ← | ホームページのフォルダー名配列 |
-| filter | Text | → | 名前フィルター |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| filter | Text | → | 名前フィルター |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
index 68440936610b94..fca818b8f53216 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-modification-date
displayed_sidebar: docs
---
-**METHOD GET MODIFICATION DATE** ( *path* ; *modDate* ; *modTime* {; *} )
+**METHOD GET MODIFICATION DATE** ( *path* : Text, Text配列 ; *modDate* : Date, Date配列 ; *modTime* : Time, Integer array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
+| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
| modDate | Date, Date配列 | ← | メソッド更新日 |
| modTime | Time, Integer array | ← | メソッド更新時刻 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1170 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
index 1d050f8acc4922..8f6cf0316d4617 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-names
displayed_sidebar: docs
---
-**METHOD GET NAMES** ( *arrNames* {; *filter*}{; *} )
+**METHOD GET NAMES** ( *arrNames* : Text array {; *filter* : Text}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| arrNames | Text array | ← | プロジェクトメソッド名配列 |
-| filter | Text | → | 名前フィルター |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| filter | Text | → | 名前フィルター |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1166 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
index 5144614fdeda30..2b1b441ad67622 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
@@ -5,15 +5,15 @@ slug: /commands/method-get-path
displayed_sidebar: docs
---
-**METHOD Get path** ( *methodType* {; *aTable*}{; *objectName*{; *formObjectName*}}{; *} ) : Text
+**METHOD Get path** ( *methodType* : Integer {; *aTable* : Table}{; *objectName* : Text{; *formObjectName* : Text}}{; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| methodType | Integer | → | オブジェクトタイプセレクターを指定 |
-| aTable | Table | → | テーブル参照 |
-| objectName | Text | → | フォームまたはメソッド名 |
+| methodType | Integer | → | オブジェクトタイプセレクターを指定 |
+| aTable | Table | → | テーブル参照 |
+| objectName | Text | → | フォームまたはメソッド名 |
| formObjectName | Text | ← | フォームオブジェクト名 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
| 戻り値 | Text | ← | オブジェクトのフルパス |
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
index 9348437c6c5d77..328be6ee12ec3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths-form
displayed_sidebar: docs
---
-**METHOD GET PATHS FORM** ( {*aTable* ;} *arrPaths* {; *filter*}{; *stamp*}{; *} )
+**METHOD GET PATHS FORM** ( {*aTable* : Table ;} *arrPaths* : Text array {; *filter* : Text}{; *stamp* : Real}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | テーブル参照 |
+| aTable | Table | → | テーブル参照 |
| arrPaths | Text array | ← | メソッドパスと名前の配列 |
-| filter | Text | → | 名前フィルター |
-| stamp | Real | → | スタンプの最小値 |
-| ← | 新しい現在値 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| filter | Text | → | 名前フィルター |
+| stamp | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -75,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
index 8808aa66e3180a..cb1b68de9d3cee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths
displayed_sidebar: docs
---
-**METHOD GET PATHS** ( {*folderName* ;} *methodType* ; *arrPaths* {; *stamp*}{; *} )
+**METHOD GET PATHS** ( {*folderName* : Text ;} *methodType* : Integer ; *arrPaths* : Text array {; *stamp* : Real}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folderName | Text | → | ホームページのフォルダー名 |
-| methodType | Integer | → | 取得するメソッドタイプセレクター |
+| folderName | Text | → | ホームページのフォルダー名 |
+| methodType | Integer | → | 取得するメソッドタイプセレクター |
| arrPaths | Text array | ← | メソッドパスおよび名前の配列 |
-| stamp | Real | → | スタンプの最小値 |
-| ← | 新しい現在値 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| stamp | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -90,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1163 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
index 6470828e50b662..78e4c8a7aa34ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
@@ -5,13 +5,13 @@ slug: /commands/method-open-path
displayed_sidebar: docs
---
-**METHOD OPEN PATH** ( *path* {; *line*}{; *} )
+**METHOD OPEN PATH** ( *path* : Text {; *line* : Real}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | 開くメソッドのパス |
-| line | Number | → | Line number |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| path | Text | → | 開くメソッドのパス |
+| line | Real | → | Line number |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
index a8c55d521c17d1..b532652f3fb969 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
@@ -5,16 +5,16 @@ slug: /commands/method-resolve-path
displayed_sidebar: docs
---
-**METHOD RESOLVE PATH** ( *path* ; *methodType* ; *ptrTable* ; *objectName* ; *formObjectName* {; *} )
+**METHOD RESOLVE PATH** ( *path* : Text ; *methodType* : Integer ; *ptrTable* : Pointer ; *objectName* : Text ; *formObjectName* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | 解決するパス |
+| path | Text | → | 解決するパス |
| methodType | Integer | ← | オブジェクトタイプセレクター |
| ptrTable | Pointer | ← | テーブル参照 |
| objectName | Text | ← | フォームまたはデータベースメソッド名 |
| formObjectName | Text | ← | フォームオブジェクト名 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドはホストデータベースに適用される (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
index 801ad3d73cfca8..ec668c6a1a986f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
@@ -5,11 +5,11 @@ slug: /commands/method-set-access-mode
displayed_sidebar: docs
---
-**METHOD SET ACCESS MODE** ( *mode* )
+**METHOD SET ACCESS MODE** ( *mode* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| mode | Integer | → | ロックされたオブジェクトのアクセスモード |
+| mode | Integer | → | ロックされたオブジェクトのアクセスモード |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
index f6c762c783713f..3932fd4e19234a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/method-set-attribute
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTE** ( *path* ; *attribType* ; *attribValue* {; *attribType2* ; *attribValue2* ; ... ; *attribTypeN* ; *attribValueN*}{; *} )
+**METHOD SET ATTRIBUTE** ( *path* : Text ; *attribType* : Integer ; *attribValue* : Boolean, Text {; ...(*attribType* : Integer, *attribValue* : Boolean, Text)}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | プロジェクトメソッドのパス |
-| attribType | Integer | → | 属性タイプ |
-| attribValue | Boolean, Text | → | True: 属性を選択False: 属性の選択解除 |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| path | Text | → | プロジェクトメソッドのパス |
+| attribType | Integer | → | 属性タイプ |
+| attribValue | Boolean, Text | → | True: 属性を選択False: 属性の選択解除 |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1192 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
index 7903302f6d8dd2..373020b4a65d4f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-attributes
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTES** ( *path* ; *attributes* {; *} )
+**METHOD SET ATTRIBUTES** ( *path* : Text, Text配列 ; *attributes* : Object, Object array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドのパス |
-| attributes | Object, Object array | → | メソッドに対して設定する属性 |
-| * | 演算子 | → | 指定時 = コンポーネントから実行された場合、コマンドをホストデータベースに適用する
(このコンテキスト外ではこの引数は無視されます) |
+| path | Text, Text配列 | → | メソッドのパス |
+| attributes | Object, Object array | → | メソッドに対して設定する属性 |
+| * | 演算子 | → | 指定時 = コンポーネントから実行された場合、コマンドをホストデータベースに適用する
(このコンテキスト外ではこの引数は無視されます) |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1335 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
index 499284e4ab90c7..c6a956181c493c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-code
displayed_sidebar: docs
---
-**METHOD SET CODE** ( *path* ; *code* {; *} )
+**METHOD SET CODE** ( *path* : Text, Text配列 ; *code* : Text, Text配列 {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
-| code | Text, Text配列 | → | 指定したメソッドのコード |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
+| code | Text, Text配列 | → | 指定したメソッドのコード |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -105,6 +105,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
index 4ba04b202ae1c2..3df7bd486b30b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-comments
displayed_sidebar: docs
---
-**METHOD SET COMMENTS** ( *path* ; *comments* {; *} )
+**METHOD SET COMMENTS** ( *path* : Text, Text配列 ; *comments* : Text, Text配列 {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
-| comments | Text, Text配列 | → | メソッドに設定するコメント |
-| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
+| path | Text, Text配列 | → | メソッドパスを格納したテキストまたはテキスト配列 |
+| comments | Text, Text配列 | → | メソッドに設定するコメント |
+| * | 演算子 | → | 指定時 = コンポーネントで実行されたとき、コマンドをホストデータベースに適用する (コンポーネントのコンテキスト以外ではこの引数は無視されます) |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1193 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
index 31f9e21ccfc3fe..ed4498f344e471 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 459 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md
index ea37932072611c..73fc77a111444e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/min.md
@@ -5,13 +5,13 @@ slug: /commands/min
displayed_sidebar: docs
---
-**Min** ( *series* {; *attributePath*} ) : any
+**Min** ( *series* : Field, Array {; *attributePath* : Text} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 最小値を求めるデータ |
-| attributePath | Text | → | 最小値を取得したい属性のパス |
-| 戻り値 | Number, Date | ← | series中の最小値 |
+| series | Field, Array | → | 最小値を求めるデータ |
+| attributePath | Text | → | 最小値を取得したい属性のパス |
+| 戻り値 | Date, Real | ← | series中の最小値 |
@@ -83,7 +83,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 4 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
index dd83b8f9e95578..78b7f48eb71f59 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
@@ -5,11 +5,11 @@ slug: /commands/minimize-window
displayed_sidebar: docs
---
-**MINIMIZE WINDOW** {( *window* )}
+**MINIMIZE WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号、または省略時は すべてのカレントプロセス最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (macOS) |
+| window | Integer | → | ウィンドウ参照番号、または省略時は すべてのカレントプロセス最前面ウィンドウ (Windows) またはカレントプロセスの最前面ウィンドウ (macOS) |
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| コマンド番号 | 454 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
index dcecc17896b5f9..8c1f301e354e1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1596 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
index 5501c8eb32d6e5..45fa77ea4ed9e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
@@ -5,12 +5,12 @@ slug: /commands/mod
displayed_sidebar: docs
---
-**Mod** ( *number1* ; *number2* ) : Real
+**Mod** ( *number1* : Integer ; *number2* : Integer ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number1 | Integer | → | 除算される数値 |
-| number2 | Integer | → | 除算する数値 |
+| number1 | Integer | → | 除算される数値 |
+| number2 | Integer | → | 除算する数値 |
| 戻り値 | Real | ← | 余り |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 98 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
index 6b15aa8e7073df..3343996134685c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
@@ -5,11 +5,11 @@ slug: /commands/modified-record
displayed_sidebar: docs
---
-**Modified record** {( *aTable* )} : Boolean
+**Modified record** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードが修正されているかテストするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードが修正されているかテストするテーブル, または 省略時、デフォルトテーブル |
| 戻り値 | Boolean | ← | True: レコードは修正されている False: レコードは修正されていない |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
index eacc88f66dcae8..d9320a532236cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
@@ -5,11 +5,11 @@ slug: /commands/modified
displayed_sidebar: docs
---
-**Modified** ( *aField* ) : Boolean
+**Modified** ( *aField* : Field ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | テストするフィールド |
+| aField | Field | → | テストするフィールド |
| 戻り値 | Boolean | ← | フィールドに新しい値が代入されていればTrue, そうでなければFalse |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 32 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
index 49e0c3171185fa..2dbd8be1b44528 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
@@ -5,12 +5,12 @@ slug: /commands/modify-record
displayed_sidebar: docs
---
-**MODIFY RECORD** ( {*aTable*}{;}{*} )
+**MODIFY RECORD** ( {*aTable* : Table}{;}{*} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | データ入力に使用するテーブル, または 省略した場合デフォルトテーブル |
-| * | Operator | → | スクロールバーを隠す |
+| aTable | Table | → | データ入力に使用するテーブル, または 省略した場合デフォルトテーブル |
+| * | Operator | → | スクロールバーを隠す |
@@ -51,7 +51,7 @@ MODIFY RECORDを使用したが、ユーザがレコードのデータを変更
| | |
| --- | --- |
| コマンド番号 | 57 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
index 315bb3f60c29d6..83ac1eeb68fc96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
@@ -5,15 +5,15 @@ slug: /commands/modify-selection
displayed_sidebar: docs
---
-**MODIFY SELECTION** ( {*aTable*}{; *selectMode*}{; *enterList*}{; *}{; *} )
+**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *} )
**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}; * {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 表示および更新を行うテーブル, または 省略時、デフォルトテーブル |
-| selectMode | Integer | → | 選択モード |
-| enterList | Boolean | → | リスト入力を許可するオプション |
-| * | Operator | → | 1レコードセレクションの場合にも出力フォームを使用し、 入力フォームのスクロールバーを隠す |
-| * | Operator | → | 入力フォームでスクロールバーを表示する (最初の*の2番目のオプションを上書きする) |
+| aTable | Table | → | 表示および更新を行うテーブル, または 省略時、デフォルトテーブル |
+| selectMode | Integer | → | 選択モード |
+| enterList | Boolean | → | リスト入力を許可するオプション |
+| * | Operator | → | 1レコードセレクションの場合にも出力フォームを使用し、 入力フォームのスクロールバーを隠す |
+| * | Operator | → | 入力フォームでスクロールバーを表示する (最初の*の2番目のオプションを上書きする) |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
index 3d7f196b139788..86eb40810ec8af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1713 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
index 8f0620571826cb..b9258e2b7073f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
@@ -5,11 +5,11 @@ slug: /commands/month-of
displayed_sidebar: docs
---
-**Month of** ( *aDate* ) : Integer
+**Month of** ( *aDate* : Date ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aDate | Date | → | 月を取り出す日付 |
+| aDate | Date | → | 月を取り出す日付 |
| 戻り値 | Integer | ← | 日付の月を示す数値 |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 24 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
index e352925a2921d9..8c1ac1ced69366 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
@@ -5,14 +5,14 @@ slug: /commands/mouse-position
displayed_sidebar: docs
---
-**MOUSE POSITION** ( *mouseX* ; *mouseY* ; *mouseButton* {; *} )
+**MOUSE POSITION** ( *mouseX* : Real ; *mouseY* : Real ; *mouseButton* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| mouseX | Real | ← | マウスの水平座標 |
| mouseY | Real | ← | マウスの垂直座標 |
| mouseButton | Integer | ← | マウスボタンンのステータス 0 = 何もしていない 1 = ボタンの押下 2 = 右マウスボタンの押下 3 = 両方のボタンの押下 |
-| * | 演算子 | → | 指定した場合、グローバルの座標システムが使用される。 省略した場合、ローカルの座標システムが使用される |
+| * | 演算子 | → | 指定した場合、グローバルの座標システムが使用される。 省略した場合、ローカルの座標システムが使用される |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
index d40d41dc851e31..7d6cbff27cf28f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
@@ -5,12 +5,12 @@ slug: /commands/move-document
displayed_sidebar: docs
---
-**MOVE DOCUMENT** ( *srcPathname* ; *dstPathname* )
+**MOVE DOCUMENT** ( *srcPathname* : Text ; *dstPathname* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| srcPathname | Text | → | 既存ドキュメントへの完全なパス名 |
-| dstPathname | Text | → | 移動先のパス名 |
+| srcPathname | Text | → | 既存ドキュメントへの完全なパス名 |
+| dstPathname | Text | → | 移動先のパス名 |
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 540 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
index 405443d24283f3..837040899b9c56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
@@ -5,15 +5,14 @@ slug: /commands/multi-sort-array
displayed_sidebar: docs
---
-**MULTI SORT ARRAY** ( *array* {; *sort*}{; *array2* ; *sort2* ; ... ; *arrayN* ; *sortN*} )
-**MULTI SORT ARRAY** ( *ptrArrayName* ; *sortArrayName* )
+**MULTI SORT ARRAY** ( *array* : Array {; *sort* : Operator}{; ...*array* : Array ; ...*sort* : Operator} )
**MULTI SORT ARRAY** ( *ptrArrayName* : Pointer array ; *sortArrayName* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | ソートする配列 |
-| sort | * | → | ">" : 昇順ソート, または "<" : 降順ソート, または 省略した場合、ソートしない |
-| ptrArrayName | Pointer array | → | 配列ポインタの配列 |
-| sortArrayName | Integer array | → | ソート順配列 (1 = 昇順にソート、-1 = 降順にソート、0 = 前のソートに同期) |
+| array | Array | → | ソートする配列 |
+| sort | Operator | → | `>` to sort by increasing order or `<` to sort by decreasing order; if omitted no sort |
+| ptrArrayName | Pointer array | → | 配列ポインタの配列 |
+| sortArrayName | Integer array | → | ソート順配列 (1 = 昇順にソート、-1 = 降順にソート、0 = 前のソートに同期) |
@@ -116,6 +115,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 718 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
index 057144fdbf9a35..82a0ef9e991fb3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/new-data-key
displayed_sidebar: docs
---
-**New data key** ( *passPhrase* ) : Object
+**New data key** ( *passPhrase* : Text ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| passPhrase | Text | → | AESデータ暗号化キーを生成するために使用するパスフレーズ |
+| passPhrase | Text | → | AESデータ暗号化キーを生成するために使用するパスフレーズ |
| 戻り値 | Object | ← | キーを格納しているオブジェクト(encodedKeyプロパティに格納) |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1611 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
index 5093f25ada1f68..09c9de93c84e7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ New listを使用して階層リストを作成した後は、以下のことが
| | |
| --- | --- |
| コマンド番号 | 375 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
index ca72808b29dc0a..a37629d4486e38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-object
displayed_sidebar: docs
---
-**New object** {( *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )} : Object
+**New object** ( *property* : Text ; *value* : any {; ...(*property* : Text, *value* : any)} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| property | Text | → | 作成するプロパティ名 |
-| value | any | → | プロパティの値 |
+| property | Text | → | 作成するプロパティ名 |
+| value | any | → | プロパティの値 |
| 戻り値 | Object | ← | 新しいランゲージオブジェクト |
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
index 7ae4e5168ea256..97eca58506f684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
@@ -14,15 +14,15 @@ displayed_sidebar: docs
-**New process** ( *method* ; *stack* {; *name* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**New process** ( *method* : Text ; *stack* : Integer {; *name* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| method | Text | → | プロセスで実行させるメソッド |
-| stack | Integer | → | スタックサイズ (バイト) |
-| name | Text | → | 作成するプロセスの名前 |
-| param | Expression | → | メソッドに渡す引数 |
-| * | 演算子 | → | 重複しないプロセス |
+| method | Text | → | プロセスで実行させるメソッド |
+| stack | Integer | → | スタックサイズ (バイト) |
+| name | Text | → | 作成するプロセスの名前 |
+| param | Expression | → | メソッドに渡す引数 |
+| * | 演算子 | → | 重複しないプロセス |
| 戻り値 | Integer | ← | 新規に作成されたプロセス番号 または既存のプロセス番号 |
@@ -118,6 +118,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 317 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
index 218f9d1b42aa9b..7dd334f3c34ef1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-shared-object
displayed_sidebar: docs
---
-**New shared object** {( *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )} : Object
+**New shared object** ( *property* : Text ; *value* : any {; ...(*property* : Text, *value* : any)} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| property | Text | → | 作成するプロパティ名 |
-| value | Text, Date, Boolean, Pointer, Number, Object | → | プロパティの値 |
+| property | Text | → | 作成するプロパティ名 |
+| value | any | → | プロパティの値 |
| 戻り値 | Object | ← | 新しい共有オブジェクト |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
index d611607a45a501..ab6e4b6aaeee2e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
@@ -5,11 +5,11 @@ slug: /commands/next-record
displayed_sidebar: docs
---
-**NEXT RECORD** {( *aTable* )}
+**NEXT RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードをセレクションの次のレコードに 移動するテーブル、省略時はデフォルトテーブル |
+| aTable | Table | → | カレントレコードをセレクションの次のレコードに 移動するテーブル、省略時はデフォルトテーブル |
@@ -36,7 +36,7 @@ NEXT RECORDでカレントセレクションの最後を超えてカレントレ
| | |
| --- | --- |
| コマンド番号 | 51 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
index 91b68595d6a4b1..a73065a2a029ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
@@ -5,11 +5,11 @@ slug: /commands/next-window
displayed_sidebar: docs
---
-**Next window** ( *window* ) : Integer
+**Next window** ( *window* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
+| window | Integer | → | ウィンドウ参照番号 |
| 戻り値 | Integer | ← | ウィンドウ参照番号 |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 448 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
index ee6148f14769f9..089e82cc9221cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 993 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md
index c650f578590f66..88c88e4410c2a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/not.md
@@ -5,11 +5,11 @@ slug: /commands/not
displayed_sidebar: docs
---
-**Not** ( *boolean* ) : Boolean
+**Not** ( *boolean* : Boolean ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| boolean | Boolean | → | 否定を求めるブール値 |
+| boolean | Boolean | → | 否定を求めるブール値 |
| 戻り値 | Boolean | ← | 反対のブール値 |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 34 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
index a72bcff079cb1c..982912cc272e46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1052 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md
index 61dfe51832d4fd..c95d587ddb6009 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/null.md
@@ -21,16 +21,13 @@ displayed_sidebar: docs
| **ランゲージ要素** | **補足** |
| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| オブジェクトプロパティ値 | **Null** をオブジェクトプロパティと比較すると、プロパティ値がnull あるいはプロパティがオブジェクト内に存在しない場合にtrue を返します。 |
| オブジェクトプロパティ値 | **Null** をオブジェクトプロパティと比較すると、プロパティ値がnull の場合にはtrue、それ以外の場合にはfalseが返されます。コードの単純化のため、**Null** をオブジェクト内に存在しないプロパティ(つまり[Undefined](undefined.md))と比較した場合にもtrue を返します。詳細は例題4を参照してください。 |
| コレクション要素 | コレクションが連続しない要素を追加したことで拡張されたとき、その中間の要素は全て**null** 値を自動的に受け取ります。 |
-| オブジェクト変数(*C\_OBJECT*) | 以下の(\*)を参照のこと |
-| コレクション変数(*C\_COLLECTION*) | 以下の(\*)を参照のこと |
-| ポインター変数(*C\_POINTER*) | 以下の(\*)を参照のこと |
-| ピクチャー変数(*C\_PICTURE*) | (\*) これらの型の変数に**null** 値を割り当てると、コンテンツがクリアされます。この場合、[CLEAR VARIABLE](clear-variable.md) コマンドを呼び出すのと同じ効果があります。 |
-| バリアント変数(*C\_VARIANT*) | |
-
-**Null** 値は引数としてメソッドに渡したり、あるいは戻り値として返すことはできません。
+| オブジェクト変数 | 以下の(\*)を参照のこと |
+| コレクション変数 | 以下の(\*)を参照のこと |
+| ポインター変数 | 以下の(\*)を参照のこと |
+| ピクチャー変数 | (\*) これらの型の変数に**null** 値を割り当てると、コンテンツがクリアされます。この場合、[CLEAR VARIABLE](clear-variable.md) コマンドを呼び出すのと同じ効果があります。 |
+| バリアント変数 | |
**注:** このコマンドはスカラーデータベースフィールドと使用することはできません。データベース内のNull 値はSQL エンジンによって管理されており、[Is field value Null](is-field-value-null.md) と[SET FIELD VALUE NULL](set-field-value-null.md) コマンドを通して管理されているからです。
@@ -39,17 +36,17 @@ displayed_sidebar: docs
**null** 値をオブジェクトプロパティに割り当ててテストをしたい場合を考えます:
```4d
- var vEmp : Object
- vEmp:=New object
- vEmp.name:="Smith"
- vEmp.children:=Null
-
- If(vEmp.children=Null) //true
- End if
- If(vEmp.name=Null) //false
- End if
- If(vEmp.parent=Null) //true
- End if
+ var vEmp : Object
+ vEmp:=New object
+ vEmp.name:="Smith"
+ vEmp.children:=Null
+
+ If(vEmp.children=Null) //true
+ End if
+ If(vEmp.name=Null) //false
+ End if
+ If(vEmp.parent=Null) //true
+ End if
```
**注:** この例題ではデータベースでオブジェクト記法が有効化されている必要があります。
@@ -59,13 +56,13 @@ displayed_sidebar: docs
コレクション要素に**null** 値を割り当てて比較をしたい場合を考えます:
```4d
- var myCol : Collection
- myCol:=New collection(10;20;Null)
- ...
- If(myCol[2]=Null)
- // 第3要素がnull であるなら
- ...
- End if
+ var myCol : Collection
+ myCol:=New collection(10;20;Null)
+ ...
+ If(myCol[2]=Null)
+ // 第3要素がnull であるなら
+ ...
+ End if
```
## 例題 3
@@ -73,59 +70,59 @@ displayed_sidebar: docs
以下の例では、**null** 値を変数に割り当てて比較する様々な方法を紹介しています:
```4d
- //オブジェクト変数
- var $o : Object
- $o:=New object
- $o:=Null //CLEAR VARIABLE($o) に相等
- If($o#Null) //If (OB Is defined($o)) に相等
- End if
+ //オブジェクト変数
+ var $o : Object
+ $o:=New object
+ $o:=Null //CLEAR VARIABLE($o) に相等
+ If($o#Null) //If (OB Is defined($o)) に相等
+ End if
```
```4d
- //コレクション変数
- var $c : Collection
- $c:=New collection
- $c:=Null //CLEAR VARIABLE($c) に相等
- If($c#Null)
- End if
+ //コレクション変数
+ var $c : Collection
+ $c:=New collection
+ $c:=Null //CLEAR VARIABLE($c) に相等
+ If($c#Null)
+ End if
```
```4d
- //ポインター変数
- var $p : Pointer
- $p:=->$v
- $p:=Null //CLEAR VARIABLE($p) に相等
- If($p=Null) //If (Is Nil pointer($p)) に相等
- End if
+ //ポインター変数
+ var $p : Pointer
+ $p:=->$v
+ $p:=Null //CLEAR VARIABLE($p) に相等
+ If($p=Null) //If (Is Nil pointer($p)) に相等
+ End if
```
```4d
- //ピクチャー変数
- var $i : Picture
- $i:=$vpicture
- $i:=Null //CLEAR VARIABLE($i) に相等
- If($i#Null) //If (Picture size($i)#0) に相等
- End if
+ //ピクチャー変数
+ var $i : Picture
+ $i:=$vpicture
+ $i:=Null //CLEAR VARIABLE($i) に相等
+ If($i#Null) //If (Picture size($i)#0) に相等
+ End if
```
## 例題 4
-オブジェクトプロパティを対象に、このコマンドおよび [Null](null.md) コマンドを使用した場合の結果の例です:
+異なるコンテキストにおいて、オブジェクトプロパティを対象に、[Undefined](undefined.md) コマンドおよび [Null](null.md) コマンドを使用した場合の結果の例です:
```4d
- var vEmp : Object
- vEmp:=New object
- vEmp.name:="Smith"
- vEmp.children:=Null
-
- $undefined:=Null(vEmp.name) // False
- $null:=(vEmp.name=Null) //False
-
- $undefined:=Null(vEmp.children) // False
- $null:=(vEmp.children=Null) //True
-
- $undefined:=Null(vEmp.parent) // True
- $null:=(vEmp.parent=Null) //True
+ var vEmp : Object
+ vEmp:=New object
+ vEmp.name:="Smith"
+ vEmp.children:=Null
+
+ $undefined:=Null(vEmp.name) // False
+ $null:=(vEmp.name=Null) //False
+
+ $undefined:=Null(vEmp.children) // False
+ $null:=(vEmp.children=Null) //True
+
+ $undefined:=Null(vEmp.parent) // True
+ $null:=(vEmp.parent=Null) //True
```
## 参照
@@ -141,4 +138,3 @@ displayed_sidebar: docs
| コマンド番号 | 1517 |
| スレッドセーフである | ✓ |
-
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
index 5862489f390fbe..1d5acbf42b0f87 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
@@ -5,11 +5,11 @@ slug: /commands/ob-class
displayed_sidebar: docs
---
-**OB Class** ( *object* ) : any
+**OB Class** ( *object* : Object ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | クラスを返してほしいオブジェクト |
+| object | Object | → | クラスを返してほしいオブジェクト |
| 戻り値 | Null, Object | ← | オブジェクトのクラス |
@@ -48,6 +48,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
index 580aa2d447fa7a..c6eb6d56bcc287 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
@@ -5,14 +5,14 @@ slug: /commands/ob-copy
displayed_sidebar: docs
---
-**OB Copy** ( *object* {; resolvePtrs } ) : Object
**OB Copy** ( *object* {; *option* {; *groupWith*}} ) : Object
+**OB Copy** ( *object* : Object, Object {; resolvePtrs } ) : Object
**OB Copy** ( *object* : Object, Object {; *option* : Integer {; *groupWith* : Collection, Object}} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| resolvePtrs | Boolean | → | True = ポインターを解決
False または省略時 = ポインターを解決しない |
-| option | Integer | → | ck shared: 共有オブジェクトを返すck resolve pointers: コピーの前にポインターを解決する |
-| groupWith | Collection, Object | → | 返されるオブジェクトが所属することになる共有コレクションまたは共有オブジェクト |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| resolvePtrs | Boolean | → | True = ポインターを解決
False または省略時 = ポインターを解決しない |
+| option | Integer | → | ck shared: 共有オブジェクトを返すck resolve pointers: コピーの前にポインターを解決する |
+| groupWith | Collection, Object | → | 返されるオブジェクトが所属することになる共有コレクションまたは共有オブジェクト |
| 戻り値 | Object | ← | 複製されたオブジェクト |
@@ -170,6 +170,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
index f1d5c2e91610b0..a09c36f43f51c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
@@ -5,11 +5,11 @@ slug: /commands/ob-entries
displayed_sidebar: docs
---
-**OB Entries** ( *object* ) : Collection
+**OB Entries** ( *object* : Object ) : Collection
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | コンテンツを返すオブジェクト |
+| object | Object | → | コンテンツを返すオブジェクト |
| 戻り値 | Collection | ← | キー/値プロパティを格納したオブジェクトのコレクション |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1720 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
index bf139f9dfaeedf..f40ec61ef178f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-array
displayed_sidebar: docs
---
-**OB GET ARRAY** ( *object* ; *property* ; *array* )
+**OB GET ARRAY** ( *object* : Object ; *property* : Text ; *array* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 情報を取得したいプロパティ名 |
-| array | Text array, Real array, Boolean array, Object array, Pointer array, Integer array | ← | プロパティの値の配列 |
+| object | Object | → | 構造化されたオブジェクト |
+| property | Text | → | 情報を取得したいプロパティ名 |
+| array | Array | ← | プロパティの値の配列 |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
index 2180cb0560476f..5479cb7cad50b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
@@ -5,11 +5,11 @@ slug: /commands/ob-get-property-names
displayed_sidebar: docs
---
-**OB GET PROPERTY NAMES** ( *object* ; *arrProperties* {; *arrTypes*} )
+**OB GET PROPERTY NAMES** ( *object* : Object ; *arrProperties* : Text array {; *arrTypes* : Integer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | 構造化されたオブジェクト |
+| object | Object | → | 構造化されたオブジェクト |
| arrProperties | Text array | ← | プロパティ名 |
| arrTypes | Integer array | ← | プロパティの型 |
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
index 70f161b361bf21..2d3e1a95be20e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/ob-get-type
displayed_sidebar: docs
---
-**OB Get type** ( *object* ; *property* ) : Integer
+**OB Get type** ( *object* : Object ; *property* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | 構造化されたオブジェクト |
-| property | Text | → | 読み出したいプロパティ名 |
+| object | Object | → | 構造化されたオブジェクト |
+| property | Text | → | 読み出したいプロパティ名 |
| 戻り値 | Integer | ← | プロパティの値のタイプ |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
index 959bbd6aa4e88d..ad9789d6effe8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get
displayed_sidebar: docs
---
-**OB Get** ( *object* ; *property* {; *type*} ) : any
+**OB Get** ( *object* : Object, Object ; *property* : Text {; *type* : Integer} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 情報を取得したいプロパティ名 |
-| type | Integer | → | 値を変換したい型 |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | 情報を取得したいプロパティ名 |
+| type | Integer | → | 値を変換したい型 |
| 戻り値 | any | ← | プロパティのカレントの値 |
@@ -228,6 +228,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
index dc3c1c280786e4..6f93b5a752f280 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
@@ -5,12 +5,12 @@ slug: /commands/ob-instance-of
displayed_sidebar: docs
---
-**OB Instance of** ( *object* ; *class* ) : Boolean
+**OB Instance of** ( *object* : Object ; *class* : Object ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | クラスをテストするオブジェクト |
-| class | Object | → | 属しているかをテストするクラス |
+| object | Object | → | クラスをテストするオブジェクト |
+| class | Object | → | 属しているかをテストするクラス |
| 戻り値 | Boolean | ← | オブジェクトが指定されたクラスまたはその子クラスに属する場合にはTrue、それ以外の場合にはfalse |
@@ -56,6 +56,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
index 88b41d0354a1e7..9f5a1a9cc82024 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
@@ -5,12 +5,12 @@ slug: /commands/ob-is-defined
displayed_sidebar: docs
---
-**OB Is defined** ( *object* {; *property*} ) : Boolean
+**OB Is defined** ( *object* : Object, Object {; *property* : Text} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 指定時にはプロパティをチェック、省略時にはオブジェクトをチェック |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | 指定時にはプロパティをチェック、省略時にはオブジェクトをチェック |
| 戻り値 | Boolean | ← | property 省略時:object が定義済みの場合はTrue を、それ以外は False を返す
property 指定時:property が定義済みの場合はTrue を、それ以外は False を返す |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
index 74aad11d78371d..07a82abc45114c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-empty
displayed_sidebar: docs
---
-**OB Is empty** ( *object* ) : Boolean
+**OB Is empty** ( *object* : Object, Object ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
+| object | Object, Object | → | 構造化されたオブジェクト |
| 戻り値 | Boolean | ← | object が空か未定義のときには True 、それ以外のときには False |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
index 35ef4769f78a7d..f75bf989e83919 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-shared
displayed_sidebar: docs
---
-**OB Is shared** ( *toCheck* ) : Boolean
+**OB Is shared** ( *toCheck* : Object, Collection ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| toCheck | Object, Collection | → | チェックするオブジェクトまたはコレクション |
+| toCheck | Object, Collection | → | チェックするオブジェクトまたはコレクション |
| 戻り値 | Boolean | ← | オブジェクトまたはコレクションが共有可能であればTrue、編集可能であればFalse |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1759 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
index 888971585b90f5..51a90d77a3b29d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
@@ -5,11 +5,11 @@ slug: /commands/ob-keys
displayed_sidebar: docs
---
-**OB Keys** ( *object* ) : Collection
+**OB Keys** ( *object* : Object ) : Collection
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | プロパティ名を返すオブジェクト |
+| object | Object | → | プロパティ名を返すオブジェクト |
| 戻り値 | Collection | ← | プロパティ名(文字列)のコレクション |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1719 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
index 3b5d9f9b98453a..f019016d05daa1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
@@ -5,12 +5,12 @@ slug: /commands/ob-remove
displayed_sidebar: docs
---
-**OB REMOVE** ( *object* ; *property* )
+**OB REMOVE** ( *object* : Object, Object ; *property* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 削除したいプロパティの名前 |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | 削除したいプロパティの名前 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
index 5505e7c901ed5c..dc411300563c99 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set-array
displayed_sidebar: docs
---
-**OB SET ARRAY** ( *object* ; *property* ; *array* )
+**OB SET ARRAY** ( *object* : Object, Object ; *property* : Text ; *array* : Array, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 設定したいプロパティ名 |
-| array | Array, Variable | → | プロパティに保存したい配列 |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | 設定したいプロパティ名 |
+| array | Array, Variable | → | プロパティに保存したい配列 |
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
index 9adaecaa96b410..62bfa8636f7e36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
@@ -5,12 +5,12 @@ slug: /commands/ob-set-null
displayed_sidebar: docs
---
-**OB SET NULL** ( *object* ; *property* )
+**OB SET NULL** ( *object* : Object, Object ; *property* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | null 値を適用したいプロパティ名 |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | null 値を適用したいプロパティ名 |
@@ -45,6 +45,6 @@ Lea の "age" というプロパティにnull を入れる場合:
| | |
| --- | --- |
| コマンド番号 | 1233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
index d1d0abc9316246..245e9209fabbb4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set
displayed_sidebar: docs
---
-**OB SET** ( *object* ; *property* ; *value* {; *property2* ; *value2* ; ... ; *propertyN* ; *valueN*} )
+**OB SET** ( *object* : Object, Object ; *property* : Text ; *value* : Expression {; ...(*property* : Text, *value* : Expression)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object, Object | → | 構造化されたオブジェクト |
-| property | Text | → | 設定したいプロパティの名前 |
-| value | Expression | → | プロパティの新しい値 |
+| object | Object, Object | → | 構造化されたオブジェクト |
+| property | Text | → | 設定したいプロパティの名前 |
+| value | Expression | → | プロパティの新しい値 |
@@ -202,6 +202,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
index 650f357d5fda83..7ce971a194539b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
@@ -5,11 +5,11 @@ slug: /commands/ob-values
displayed_sidebar: docs
---
-**OB Values** ( *object* ) : Collection
+**OB Values** ( *object* : Object ) : Collection
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | プロパティ値を取得したいオブジェクト |
+| object | Object | → | プロパティ値を取得したいオブジェクト |
| 戻り値 | Collection | ← | プロパティ値の(バリアント型の)コレクション |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1718 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
index 6d2d28bdd907c3..175da230898b88 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
@@ -5,20 +5,20 @@ slug: /commands/object-duplicate
displayed_sidebar: docs
---
-**OBJECT DUPLICATE** ( {* ;} *object* {; *newName* {; *newVar* {; *boundTo* {; *moveH* {; *moveV* {; *resizeH* {; *resizeV*}}}}}}} {; *} )
+**OBJECT DUPLICATE** ( * ; *object* : Text {; *newName* : Text {; *newVar* : Pointer {; *boundTo* : Text {; *moveH* : Integer {; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer}}}}}}} {; *} )
**OBJECT DUPLICATE** ( *object* : Field, Variable {; *newName* : Text {; *newVar* : Pointer {; *boundTo* : Text {; *moveH* : Integer {; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer}}}}}}} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (*指定時)、または変数やフィールド (*省略時) |
-| newName | Text | → | 新しいオブジェクトの名前 |
-| newVar | Pointer | → | 新しいオブジェクトの変数へのポインター |
-| boundTo | Text | → | 直前の入力順の入力可能オブジェクトまたはラジオボタングループ |
-| moveH | Integer | → | 新しいオブジェクトの横シフト (>0 = 右方向, <0 = 左方向) |
-| moveV | Integer | → | 新しいオブジェクトの縦シフト (>0 = 下方向, <0 = 上方向) |
-| resizeH | Integer | → | オブジェクトの横リサイズ |
-| resizeV | Integer | → | 新しいオブジェクトの縦リサイズ |
-| * | 演算子 | → | 指定時= 絶対座標, 省略時= 相対座標 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (*指定時)、または変数やフィールド (*省略時) |
+| newName | Text | → | 新しいオブジェクトの名前 |
+| newVar | Pointer | → | 新しいオブジェクトの変数へのポインター |
+| boundTo | Text | → | 直前の入力順の入力可能オブジェクトまたはラジオボタングループ |
+| moveH | Integer | → | 新しいオブジェクトの横シフト (>0 = 右方向, <0 = 左方向) |
+| moveV | Integer | → | 新しいオブジェクトの縦シフト (>0 = 下方向, <0 = 上方向) |
+| resizeH | Integer | → | オブジェクトの横リサイズ |
+| resizeV | Integer | → | 新しいオブジェクトの縦リサイズ |
+| * | 演算子 | → | 指定時= 絶対座標, 省略時= 相対座標 |
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1111 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
index ca962c575ba315..8e037a9d1b3f19 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-action
displayed_sidebar: docs
---
-**OBJECT Get action** ( {* ;} *object* ) : Text
+**OBJECT Get action** ( * ; *object* : Text ) : Text
**OBJECT Get action** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| 戻り値 | Text | ← | 関連付けられた標準アクション名と(あれば)引数の文字列 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1457 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
index 8cd16c00b88308..20a21994a541cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT Get auto spellcheck** ( {* ;} *object* ) : Boolean
+**OBJECT Get auto spellcheck** ( * ; *object* : Text ) : Boolean
**OBJECT Get auto spellcheck** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
| 戻り値 | Boolean | ← | True = 自動スペルチェックFalse = 自動スペルチェックなし |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
index 13802f4fe5f0c0..cc512e6cd9f178 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
@@ -5,15 +5,15 @@ slug: /commands/object-get-best-size
displayed_sidebar: docs
---
-**OBJECT GET BEST SIZE** ( {* ;} *object* ; *bestWidth* ; *bestHeight* {; *maxWidth*} )
+**OBJECT GET BEST SIZE** ( * ; *object* : Text ; *bestWidth* : Integer ; *bestHeight* : Integer {; *maxWidth* : Integer} )
**OBJECT GET BEST SIZE** ( *object* : Field, Variable ; *bestWidth* : Integer ; *bestHeight* : Integer {; *maxWidth* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| bestWidth | Integer | ← | 最適オブジェクト幅 |
| bestHeight | Integer | ← | 最適オブジェクト高さ |
-| maxWidth | Integer | → | 最大オブジェクト幅 |
+| maxWidth | Integer | → | 最大オブジェクト幅 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 717 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
index bd76f6a7257771..c8e88eeee31a4f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-border-style
displayed_sidebar: docs
---
-**OBJECT Get border style** ( {* ;} *object* ) : Integer
+**OBJECT Get border style** ( * ; *object* : Text ) : Integer
**OBJECT Get border style** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (*指定時)、または変数やフィールド (*省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字列)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (*指定時)、または変数やフィールド (*省略時) |
| 戻り値 | Integer | ← | 境界線スタイル |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
index f1fe87da8a09f0..a4bc8dcb930980 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-context-menu
displayed_sidebar: docs
---
-**OBJECT Get context menu** ( {* ;} *object* ) : Boolean
+**OBJECT Get context menu** ( * ; *object* : Text ) : Boolean
**OBJECT Get context menu** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| 戻り値 | Boolean | ← | True = コンテキストメニュー有効、False = コンテキストメニュー無効 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
index 95ad466c935b90..2ba42c7364943a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-coordinates
displayed_sidebar: docs
---
-**OBJECT GET COORDINATES** ( {* ;} *object* ; *left* ; *top* ; *right* ; *bottom* )
+**OBJECT GET COORDINATES** ( * ; *object* : Text ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
**OBJECT GET COORDINATES** ( *object* : Field, Variable ; *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| left | Integer | ← | オブジェクトの左座標 |
| top | Integer | ← | オブジェクトの上座標 |
| right | Integer | ← | オブジェクトの右座標 |
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 663 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
index 1e70824b173ed5..11c80bef635891 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-corner-radius
displayed_sidebar: docs
---
-**OBJECT Get corner radius** ( {* ;} *object* ) : Integer
+**OBJECT Get corner radius** ( * ; *object* : Text ) : Integer
**OBJECT Get corner radius** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列) 省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列) 省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
| 戻り値 | Integer | ← | 丸い角の半径(ピクセル単位) |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
index 940ac3391ab508..666d3fdf0a5426 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-data-source
displayed_sidebar: docs
---
-**OBJECT Get data source** ( {* ;} *object* ) : Pointer
+**OBJECT Get data source** ( * ; *object* : Text ) : Pointer
**OBJECT Get data source** ( *object* : Field, Variable ) : Pointer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Pointer | ← | オブジェクトのカレントデータソースに対するポインター |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1265 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
index aab2ffddd290d9..57bbe21cd4b046 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT GET DRAG AND DROP OPTIONS** ( {* ;} *object* ; *draggable* ; *automaticDrag* ; *droppable* ; *automaticDrop* )
+**OBJECT GET DRAG AND DROP OPTIONS** ( * ; *object* : Text ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
**OBJECT GET DRAG AND DROP OPTIONS** ( *object* : Field, Variable ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| draggable | Boolean | ← | ドラッグ可能ならTrue、そうでなければFalse |
| automaticDrag | Boolean | ← | 自動ドラッグならTrue、そうでなければFalse |
| droppable | Boolean | ← | ドロップ可能ならTrue、そうでなければFalse |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1184 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
index d7a7a5406a9fc6..7f42186315ee83 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enabled
displayed_sidebar: docs
---
-**OBJECT Get enabled** ( {* ;} *object* ) : Boolean
+**OBJECT Get enabled** ( * ; *object* : Text ) : Boolean
**OBJECT Get enabled** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
| 戻り値 | Boolean | ← | True = オブジェクトは有効; そうでなければFalse |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1079 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
index fda04b02fa16ea..652553a3ade568 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enterable
displayed_sidebar: docs
---
-**OBJECT Get enterable** ( {* ;} *object* ) : Boolean
+**OBJECT Get enterable** ( * ; *object* : Text ) : Boolean
**OBJECT Get enterable** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
| 戻り値 | Boolean | ← | True = 入力可; そうでなければ false |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1067 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
index 0059cb64222b62..f349cf7bac22f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-events
displayed_sidebar: docs
---
-**OBJECT GET EVENTS** ( {* ;} *object* ; *arrEvents* )
+**OBJECT GET EVENTS** ( * ; *object* : Text ; *arrEvents* : Integer array )
**OBJECT GET EVENTS** ( *object* : Field, Variable ; *arrEvents* : Integer array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| arrEvents | Integer array | ← | Array of enabled events |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
index 8d022747e34319..59ac12ec0c25ed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-filter
displayed_sidebar: docs
---
-**OBJECT Get filter** ( {* ;} *object* ) : Text
+**OBJECT Get filter** ( * ; *object* : Text ) : Text
**OBJECT Get filter** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
| 戻り値 | Text | ← | フィルター名 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1073 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
index dbaf796d01c011..2444b7658d2d80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT Get focus rectangle invisible** ( {* ;} *object* ) : Boolean
+**OBJECT Get focus rectangle invisible** ( * ; *object* : Text ) : Boolean
**OBJECT Get focus rectangle invisible** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
| 戻り値 | Boolean | ← | True = フォーカスの四角を隠すFalse = フォーカスの四角を表示する |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1178 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
index da5e8e2fc4ed00..87e8874e06479f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-size
displayed_sidebar: docs
---
-**OBJECT Get font size** ( {* ;} *object* ) : Integer
+**OBJECT Get font size** ( * ; *object* : Text ) : Integer
**OBJECT Get font size** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
| 戻り値 | Integer | ← | ポイント単位のフォントサイズ |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1070 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
index ccf4b6489ac1fc..ca2de709676eb8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-style
displayed_sidebar: docs
---
-**OBJECT Get font style** ( * ; *object* ) : Integer
+**OBJECT Get font style** ( * ; *object* : any ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字) 、
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字) 、
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
| 戻り値 | Integer | ← | フォントスタイル |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1071 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
index 3430f7fc270b99..1038777b04d3cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font
displayed_sidebar: docs
---
-**OBJECT Get font** ( {* ;} *object* ) : Text
+**OBJECT Get font** ( * ; *object* : Text ) : Text
**OBJECT Get font** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
| 戻り値 | Text | ← | フォント名 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1069 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
index b2fc34a02b6682..b46eee990392ed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-format
displayed_sidebar: docs
---
-**OBJECT Get format** ( {* ;} *object* ) : Text
+**OBJECT Get format** ( * ; *object* : Text ) : Text
**OBJECT Get format** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| 戻り値 | Text | ← | オブジェクト表示フォーマット |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 894 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
index 2d68405c55cb86..e55ae8f0404138 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-help-tip
displayed_sidebar: docs
---
-**OBJECT Get help tip** ( {* ;} *object* ) : Text
+**OBJECT Get help tip** ( * ; *object* : Text ) : Text
**OBJECT Get help tip** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| 戻り値 | Text | ← | オブジェクトのヘルプメッセージ |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1182 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
index 56ebc1fa0f1daf..498b25e716c232 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT Get horizontal alignment** ( {* ;} *object* ) : Integer
+**OBJECT Get horizontal alignment** ( * ; *object* : Text ) : Integer
**OBJECT Get horizontal alignment** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
| 戻り値 | Integer | ← | 整列コード |
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 707 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
index ee246f6bf42cb5..c8f6f30b1b469b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-indicator-type
displayed_sidebar: docs
---
-**OBJECT Get indicator type** ( {* ;} *object* ) : Integer
+**OBJECT Get indicator type** ( * ; *object* : Text ) : Integer
**OBJECT Get indicator type** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Integer | ← | インジケータータイプ |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
index 9f668348b35f4c..033405feb622df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT Get keyboard layout** ( {* ;} *object* ) : Text
+**OBJECT Get keyboard layout** ( * ; *object* : Text ) : Text
**OBJECT Get keyboard layout** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
| 戻り値 | Text | ← | レイアウトのランゲージコード、"" = レイアウトなし |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1180 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
index 95d65c6a43ebde..069b46c67a9b42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-name
displayed_sidebar: docs
---
-**OBJECT Get list name** ( {* ;} *object* {; *listType*} ) : Text
+**OBJECT Get list name** ( * ; *object* : Text {; *listType* : Integer} ) : Text
**OBJECT Get list name** ( *object* : Field, Variable {; *listType* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
-| listType | Integer | → | Type of list: Choice list, Required list or Excluded list |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| listType | Integer | → | Type of list: Choice list, Required list or Excluded list |
| 戻り値 | Text | ← | (デザインモードで指定された) 選択リストの名前 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1072 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
index 222bc6cfe9ba19..c6f292c933d85b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-reference
displayed_sidebar: docs
---
-**OBJECT Get list reference** ( {* ;} *object* {; *listType*} ) : Integer
+**OBJECT Get list reference** ( * ; *object* : Text {; *listType* : Integer} ) : Integer
**OBJECT Get list reference** ( *object* : Field, Variable {; *listType* : Integer} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| listType | Integer | → | リストの種類:選択リスト、指定リスト、除外リスト |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| listType | Integer | → | リストの種類:選択リスト、指定リスト、除外リスト |
| 戻り値 | Integer | ← | リストの参照番号 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1267 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
index 11c8dbed8e3d5f..ea273f1950fae0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-maximum-value
displayed_sidebar: docs
---
-**OBJECT GET MAXIMUM VALUE** ( {* ;} *object* ; *maxValue* )
+**OBJECT GET MAXIMUM VALUE** ( * ; *object* : Text ; *maxValue* : Date, Time, Real )
**OBJECT GET MAXIMUM VALUE** ( *object* : Field, Variable ; *maxValue* : Date, Time, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| maxValue | Date, Time, Number | ← | オブジェクトのカレントの最大値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| maxValue | Date, Time, Real | ← | オブジェクトのカレントの最大値 |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1245 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
index aa86f6eb124211..e6551948227794 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-minimum-value
displayed_sidebar: docs
---
-**OBJECT GET MINIMUM VALUE** ( {* ;} *object* ; *minValue* )
+**OBJECT GET MINIMUM VALUE** ( * ; *object* : Text ; *minValue* : Date, Time, Real )
**OBJECT GET MINIMUM VALUE** ( *object* : Field, Variable ; *minValue* : Date, Time, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| minValue | Date, Time, Number | ← | オブジェクトのカレントの最小値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| minValue | Date, Time, Real | ← | オブジェクトのカレントの最小値 |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1243 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
index 5743d9a362a3ec..decbce2915a8fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-multiline
displayed_sidebar: docs
---
-**OBJECT Get multiline** ( {* ;} *object* ) : Integer
+**OBJECT Get multiline** ( * ; *object* : Text ) : Integer
**OBJECT Get multiline** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Integer | ← | 複数行の状態 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1254 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
index 8e30190a2a6465..6f0ad05d52a37c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-name
displayed_sidebar: docs
---
-**OBJECT Get name** {( *selector* )} : Text
+**OBJECT Get name** ( *selector* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | オブジェクトカテゴリ |
+| selector | Integer | → | オブジェクトカテゴリ |
| 戻り値 | Text | ← | オブジェクトの名前 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1087 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
index 03a0043c74068a..def08e50a05047 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-placeholder
displayed_sidebar: docs
---
-**OBJECT Get placeholder** ( {* ;} *object* ) : Text
+**OBJECT Get placeholder** ( * ; *object* : Text ) : Text
**OBJECT Get placeholder** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Text | ← | オブジェクトと関連付けられたプレースホルダーテキスト |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1296 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
index a2a55e1d7e743c..00f92ae40cea63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-pointer
displayed_sidebar: docs
---
-**OBJECT Get pointer** {( *selector* {; *objectName* {; *subformName*}})} : Pointer
+**OBJECT Get pointer** ( *selector* : Integer {; *objectName* : Text {; *subformName* : Text}}) : Pointer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | オブジェクトカテゴリ |
-| objectName | Text | → | オブジェクト名 |
-| subformName | Text | → | サブフォームオブジェクト名 |
+| selector | Integer | → | オブジェクトカテゴリ |
+| objectName | Text | → | オブジェクト名 |
+| subformName | Text | → | サブフォームオブジェクト名 |
| 戻り値 | Pointer | ← | オブジェクト変数へのポインタ |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1124 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
index 13e2eeaeccbfc5..1993c96afa5fba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT GET PRINT VARIABLE FRAME** ( {* ;} *object* ; *variableFrame* {; *fixedSubform*} )
+**OBJECT GET PRINT VARIABLE FRAME** ( * ; *object* : Text ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
**OBJECT GET PRINT VARIABLE FRAME** ( *object* : Field, Variable ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| variableFrame | Boolean | ← | True = 可変長フレームを使用、False = 固定長フレームを使用 |
| fixedSubform | Integer | ← | 固定長フレーム時のサブフォームに対するオプション |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1241 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
index b5b75ac156340b..fbed4007a5db07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-resizing-options
displayed_sidebar: docs
---
-**OBJECT GET RESIZING OPTIONS** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT GET RESIZING OPTIONS** ( * ; *object* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT GET RESIZING OPTIONS** ( *object* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| horizontal | Integer | ← | 横リサイズオプション |
| vertical | Integer | ← | 縦リサイズオプション |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1176 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
index 8103008aa31f54..6eaa5b43773098 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-rgb-colors
displayed_sidebar: docs
---
-**OBJECT GET RGB COLORS** ( {* ;} *object* ; *foregroundColor* {; *backgroundColor* {; *altBackgrndColor*}} )
+**OBJECT GET RGB COLORS** ( * ; *object* : Text ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
**OBJECT GET RGB COLORS** ( *object* : Field, Variable ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
| foregroundColor | Text, Integer | ← | 描画色のRGBカラー値 |
| backgroundColor | Text, Integer | ← | 背景色のRGBカラー値 |
| altBackgrndColor | Text, Integer | ← | 奇数行の色のRGBカラー値 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1074 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
index 045137c13fc169..69e629358b6956 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scroll-position
displayed_sidebar: docs
---
-**OBJECT GET SCROLL POSITION** ( {* ;} *object* ; *vPosition* {; *hPosition*} )
+**OBJECT GET SCROLL POSITION** ( * ; *object* : Text ; *vPosition* : Integer {; *hPosition* : Integer} )
**OBJECT GET SCROLL POSITION** ( *object* : Field, Variable ; *vPosition* : Integer {; *hPosition* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
変数、フィールドまたはテーブル (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
変数、フィールドまたはテーブル (* 省略時) |
| vPosition | Integer | ← | 表示されている最初の行数、または ピクセル単位の縦スクロール (ピクチャ) |
| hPosition | Integer | ← | 表示されている最初の列数、または
ピクセル単位の横スクロール (ピクチャ) |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1114 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
index 53c387656729be..6c0ba9334e700b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scrollbar
displayed_sidebar: docs
---
-**OBJECT GET SCROLLBAR** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT GET SCROLLBAR** ( * ; *object* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT GET SCROLLBAR** ( *object* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
| horizontal | Boolean, Integer | ← | True=表示, False=非表示 |
| vertical | Boolean, Integer | ← | True=表示, False=非表示 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1076 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
index 13ec0b33298026..b87acaaef15a4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-shortcut
displayed_sidebar: docs
---
-**OBJECT GET SHORTCUT** ( {* ;} *object* ; *key* ; *modifiers* )
+**OBJECT GET SHORTCUT** ( * ; *object* : Text ; *key* : Text ; *modifiers* : Integer )
**OBJECT GET SHORTCUT** ( *object* : Field, Variable ; *key* : Text ; *modifiers* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| key | Text | ← | オブジェクトに割り当てられたキー |
| modifiers | Integer | ← | モディファイアーキーマスクまたはマスクの組み合わせ |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
index 10bd20dbf593a1..36934840b7a555 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-style-sheet
displayed_sidebar: docs
---
-**OBJECT Get style sheet** ( {* ;} *object* ) : Text
+**OBJECT Get style sheet** ( * ; *object* : Text ) : Text
**OBJECT Get style sheet** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Text | ← | スタイルシート名 |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1258 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
index 18c3f261eb3701..f476063e62993f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform-container-size
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM CONTAINER SIZE** ( *width* ; *height* )
+**OBJECT GET SUBFORM CONTAINER SIZE** ( *width* : Integer ; *height* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1148 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
index 502cbd3859f081..afa7cec219abf5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
index 725e5a5263f3f8..3054735d7b349f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-subform
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM** ( {* ;} *object* ; *tablePtr* ; *detailSubform* {; *listSubform*} )
+**OBJECT GET SUBFORM** ( * ; *object* : Text ; *tablePtr* : Table ; *detailSubform* : Text {; *listSubform* : Text} )
**OBJECT GET SUBFORM** ( *object* : Field, Variable ; *tablePtr* : Table ; *detailSubform* : Text {; *listSubform* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| tablePtr | Table | ← | フォームが属するテーブルへのポインター |
| detailSubform | Text | ← | サブフォームの詳細フォーム名 |
| listSubform | Text | ← | サブフォームのリストフォーム名 (テーブルフォーム) |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1139 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
index d35e705bf0d974..09e71d7ced7282 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-text-orientation
displayed_sidebar: docs
---
-**OBJECT Get text orientation** ( {* ;} *object* ) : Integer
+**OBJECT Get text orientation** ( * ; *object* : Text ) : Integer
**OBJECT Get text orientation** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Integer | ← | テキストの回転角度 |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1283 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
index 25cbbb175d96ff..659a6229608ef2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT Get three states checkbox** ( {* ;} *object* ) : Boolean
+**OBJECT Get three states checkbox** ( * ; *object* : Text ) : Boolean
**OBJECT Get three states checkbox** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Boolean | ← | True = スリーステートチェックボックス、False = 標準のチェックボックス |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
index b891ff8e79a076..360354fd2d3bbf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-title
displayed_sidebar: docs
---
-**OBJECT Get title** ( {* ;} *object* ) : Text
+**OBJECT Get title** ( * ; *object* : Text ) : Text
**OBJECT Get title** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)、省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または、フィールドまたは変数 (* 省略時) |
| 戻り値 | Text | ← | ボタンのタイトル |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1068 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
index 2400211a1a9e52..05a2d038b176cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-type
displayed_sidebar: docs
---
-**OBJECT Get type** ( {* ;} *object* ) : Integer
+**OBJECT Get type** ( * ; *object* : Text ) : Integer
**OBJECT Get type** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| 戻り値 | Integer | ← | オブジェクトのタイプ |
@@ -100,6 +100,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1300 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
index 206a9fb4861449..10e32a6f862871 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-value
displayed_sidebar: docs
---
-**OBJECT Get value** ( *objectName* ) : any
+**OBJECT Get value** ( *objectName* : Text ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectName | Text | → | オブジェクト名 |
+| objectName | Text | → | オブジェクト名 |
| 戻り値 | any | ← | フォームオブジェクトのデータソースのカレント値 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1743 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
index 8991ad306e48f3..970576c70d6782 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT Get vertical alignment** ( {* ;} *object* ) : Integer
+**OBJECT Get vertical alignment** ( * ; *object* : Text ) : Integer
**OBJECT Get vertical alignment** ( *object* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
| 戻り値 | Integer | ← | 行揃えのタイプ |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
index 50789763b2a3e7..d7fc3d9e7c7946 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-visible
displayed_sidebar: docs
---
-**OBJECT Get visible** ( {* ;} *object* ) : Boolean
+**OBJECT Get visible** ( * ; *object* : Text ) : Boolean
**OBJECT Get visible** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
| 戻り値 | Boolean | ← | True = オブジェクトは表示; そうでなければFalse |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1075 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
index 2d57bc0f90c526..8a065db7c55344 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
@@ -5,12 +5,12 @@ slug: /commands/object-is-styled-text
displayed_sidebar: docs
---
-**OBJECT Is styled text** ( {* ;} *object* ) : Boolean
+**OBJECT Is styled text** ( * ; *object* : Text ) : Boolean
**OBJECT Is styled text** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
-| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
+| * | 演算子 | → | 指定時:objectはオブジェクト名(文字列)省略時:objectは変数 |
+| object | any | → | オブジェクト名(* 指定時)、または変数(* 省略時) |
| 戻り値 | Boolean | ← | オブジェクトがマルチスタイルテキストであれば True 、そうでなければ False |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1261 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
index 3046c90cbe08de..48faf78b2bdbf8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
@@ -5,17 +5,17 @@ slug: /commands/object-move
displayed_sidebar: docs
---
-**OBJECT MOVE** ( {* ;} *object* ; *moveH* ; *moveV* {; *resizeH* {; *resizeV* {; *}}} )
+**OBJECT MOVE** ( * ; *object* : Text ; *moveH* : Integer ; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer {; *}}} )
**OBJECT MOVE** ( *object* : Field, Variable ; *moveH* : Integer ; *moveV* : Integer {; *resizeH* : Integer {; *resizeV* : Integer {; *}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| moveH | Integer | → | オブジェクトの水平移動量 (>0 = 右方向, <0 =左方向) |
-| moveV | Integer | → | オブジェクトの垂直移動量 (>0 = 下方向, <0 = 上方向) |
-| resizeH | Integer | → | オブジェクトの水平方向へのサイズ変更値 |
-| resizeV | Integer | → | オブジェクトの垂直方向へのサイズ変更値 |
-| * | 演算子 | → | 指定時 = 絶対座標 省略時 = 相対座標 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| moveH | Integer | → | オブジェクトの水平移動量 (>0 = 右方向, <0 =左方向) |
+| moveV | Integer | → | オブジェクトの垂直移動量 (>0 = 下方向, <0 = 上方向) |
+| resizeH | Integer | → | オブジェクトの水平方向へのサイズ変更値 |
+| resizeV | Integer | → | オブジェクトの垂直方向へのサイズ変更値 |
+| * | 演算子 | → | 指定時 = 絶対座標 省略時 = 相対座標 |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 664 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
index 421518db9d67f2..a82e451d6fb836 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-action
displayed_sidebar: docs
---
-**OBJECT SET ACTION** ( {* ;} *object* ; *action* )
+**OBJECT SET ACTION** ( * ; *object* : Text ; *action* : Text )
**OBJECT SET ACTION** ( *object* : Field, Variable ; *action* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| action | Text | → | 関連付けるアクション |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| action | Text | → | 関連付けるアクション |
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1259 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
index afe895a6c6fc8d..8a4b67172cb11e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT SET AUTO SPELLCHECK** ( {* ;} *object* ; *autoSpellcheck* )
+**OBJECT SET AUTO SPELLCHECK** ( * ; *object* : Text ; *autoSpellcheck* : Boolean )
**OBJECT SET AUTO SPELLCHECK** ( *object* : Field, Variable ; *autoSpellcheck* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
-| autoSpellcheck | Boolean | → | True = 自動スペルチェックFalse = 自動スペルチェックなし |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| autoSpellcheck | Boolean | → | True = 自動スペルチェックFalse = 自動スペルチェックなし |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1173 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
index 71833b0fd3df91..60964c88e4f9b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-border-style
displayed_sidebar: docs
---
-**OBJECT SET BORDER STYLE** ( {* ;} *object* ; *borderStyle* )
+**OBJECT SET BORDER STYLE** ( * ; *object* : Text ; *borderStyle* : Integer )
**OBJECT SET BORDER STYLE** ( *object* : Field, Variable ; *borderStyle* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| borderStyle | Integer | → | 境界線スタイル |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| borderStyle | Integer | → | 境界線スタイル |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1262 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
index 4a91fe219a445d..c10c675640e70a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-context-menu
displayed_sidebar: docs
---
-**OBJECT SET CONTEXT MENU** ( {* ;} *object* ; *contextMenu* )
+**OBJECT SET CONTEXT MENU** ( * ; *object* : Text ; *contextMenu* : Boolean )
**OBJECT SET CONTEXT MENU** ( *object* : Field, Variable ; *contextMenu* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| contextMenu | Boolean | → | True = コンテキストメニュー有効、False = コンテキストメニュー無効 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| contextMenu | Boolean | → | True = コンテキストメニュー有効、False = コンテキストメニュー無効 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
index f815f6557b325c..6e4b8611a849b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-coordinates
displayed_sidebar: docs
---
-**OBJECT SET COORDINATES** ( {* ;} *object* ; *left* ; *top* {; *right* ; *bottom*} )
+**OBJECT SET COORDINATES** ( {* ;} *object* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer ; *bottom* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
-| object | Integer | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| left | Integer | → | オブジェクトの左端の絶対座標(ピクセル) |
-| top | Integer | → | オブジェクトの上端の絶対座標(ピクセル) |
-| right | Integer | → | オブジェクトの右端の絶対座標(ピクセル) |
-| bottom | Integer | → | オブジェクトの下端の絶対座標(ピクセル) |
+| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
+| object | Integer | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| left | Integer | → | オブジェクトの左端の絶対座標(ピクセル) |
+| top | Integer | → | オブジェクトの上端の絶対座標(ピクセル) |
+| right | Integer | → | オブジェクトの右端の絶対座標(ピクセル) |
+| bottom | Integer | → | オブジェクトの下端の絶対座標(ピクセル) |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
index 72c3e836b7bf1e..c481f7a20cb473 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-corner-radius
displayed_sidebar: docs
---
-**OBJECT SET CORNER RADIUS** ( {* ;} *object* ; *radius* )
+**OBJECT SET CORNER RADIUS** ( * ; *object* : Text ; *radius* : Integer )
**OBJECT SET CORNER RADIUS** ( *object* : Field, Variable ; *radius* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列) 省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
-| radius | Integer | → | 丸い角の新しい半径(ピクセル単位) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列) 省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)、またはフィールドまたは変数 (* 省略時) |
+| radius | Integer | → | 丸い角の新しい半径(ピクセル単位) |
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1323 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
index 47686dcb9efd6a..22505018c16d87 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-data-source
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE** ( {* ;} *object* ; *dataSource* )
+**OBJECT SET DATA SOURCE** ( * ; *object* : Text ; *dataSource* : Pointer )
**OBJECT SET DATA SOURCE** ( *object* : Field, Variable ; *dataSource* : Pointer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
-| dataSource | Pointer | → | オブジェクトの新しいデータソースへのポインター |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
+| dataSource | Pointer | → | オブジェクトの新しいデータソースへのポインター |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1264 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
index 599ee023c682d1..00655cabaeb194 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT SET DRAG AND DROP OPTIONS** ( {* ;} *object* ; *draggable* ; *automaticDrag* ; *droppable* ; *automaticDrop* )
+**OBJECT SET DRAG AND DROP OPTIONS** ( * ; *object* : Text ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
**OBJECT SET DRAG AND DROP OPTIONS** ( *object* : Field, Variable ; *draggable* : Boolean ; *automaticDrag* : Boolean ; *droppable* : Boolean ; *automaticDrop* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| draggable | Boolean | → | ドラッグ可能ならTrue、そうでなければFalse |
-| automaticDrag | Boolean | → | 自動ドラッグならTrue、そうでなければFalse |
-| droppable | Boolean | → | ドロップ可能ならTrue、そうでなければFalse |
-| automaticDrop | Boolean | → | 自動ドロップ可能ならTrue、そうでなければFalse |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| draggable | Boolean | → | ドラッグ可能ならTrue、そうでなければFalse |
+| automaticDrag | Boolean | → | 自動ドラッグならTrue、そうでなければFalse |
+| droppable | Boolean | → | ドロップ可能ならTrue、そうでなければFalse |
+| automaticDrop | Boolean | → | 自動ドロップ可能ならTrue、そうでなければFalse |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1183 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
index 786bf62b29a1b4..a8cfd4d05d3545 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enabled
displayed_sidebar: docs
---
-**OBJECT SET ENABLED** ( {* ;} *object* ; *active* )
+**OBJECT SET ENABLED** ( * ; *object* : Text ; *active* : Boolean )
**OBJECT SET ENABLED** ( *object* : Field, Variable ; *active* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| active | Boolean | → | True = オブジェクトは有効; そうでなければFalse |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| active | Boolean | → | True = オブジェクトは有効; そうでなければFalse |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1123 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
index f506505d8a0e97..ff8c4ce9a8e84a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enterable
displayed_sidebar: docs
---
-**OBJECT SET ENTERABLE** ( {* ;} *object* ; *enterable* )
+**OBJECT SET ENTERABLE** ( * ; *object* : Text ; *enterable* : Boolean, Integer )
**OBJECT SET ENTERABLE** ( *object* : Field, Variable ; *enterable* : Boolean, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または テーブルまたはフィールドまたは変数 (* 省略時) |
-| enterable | Boolean, Integer | → | ブール値 True=入力可, False=入力不可倍長整数: 0=入力不可, 1=入力可能, 2=入力不可かつフォーカス不可 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または テーブルまたはフィールドまたは変数 (* 省略時) |
+| enterable | Boolean, Integer | → | ブール値 True=入力可, False=入力不可倍長整数: 0=入力不可, 1=入力可能, 2=入力不可かつフォーカス不可 |
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
index 7ee9e50f358161..69d77ba592e2fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-events
displayed_sidebar: docs
---
-**OBJECT SET EVENTS** ( {* ;} *object* ; *arrEvents* ; *mode* )
+**OBJECT SET EVENTS** ( * ; *object* : Text ; *arrEvents* : Integer array ; *mode* : Integer )
**OBJECT SET EVENTS** ( *object* : Field, Variable ; *arrEvents* : Integer array ; *mode* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
-| object | any | → | オブジェクト名または""( * 指定時)、または変数やフィールド( * 省略時) |
-| arrEvents | Integer array | → | 設定したいイベントの配列 |
-| mode | Integer | → | arrEvents 引数で定義されたイベントの起動モード |
+| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
+| object | any | → | オブジェクト名または""( * 指定時)、または変数やフィールド( * 省略時) |
+| arrEvents | Integer array | → | 設定したいイベントの配列 |
+| mode | Integer | → | arrEvents 引数で定義されたイベントの起動モード |
@@ -172,6 +172,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1239 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
index 03dac1dd6ddf68..8bd6924cff43f1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-filter
displayed_sidebar: docs
---
-**OBJECT SET FILTER** ( {* ;} *object* ; *entryFilter* )
+**OBJECT SET FILTER** ( * ; *object* : Text ; *entryFilter* : Text )
**OBJECT SET FILTER** ( *object* : Field, Variable ; *entryFilter* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| entryFilter | Text | → | 入力可エリアの新しい入力フィルタ |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| entryFilter | Text | → | 入力可エリアの新しい入力フィルタ |
@@ -61,6 +61,6 @@ OBJECT SET FILTER は、入力フォームおよびダイアログ用フォー
| | |
| --- | --- |
| コマンド番号 | 235 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
index 8c60e69b40498d..59b003b913f3c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( {* ;} *object* ; *invisible* )
+**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( * ; *object* : Text ; *invisible* : Boolean )
**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( *object* : Field, Variable ; *invisible* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
-| invisible | Boolean | → | True = フォーカスの四角を隠すFalse = フォーカスの四角を表示する |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| invisible | Boolean | → | True = フォーカスの四角を隠すFalse = フォーカスの四角を表示する |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1177 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
index 32af2c060926ed..6455dde41d9c3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-size
displayed_sidebar: docs
---
-**OBJECT SET FONT SIZE** ( {* ;} *object* ; *size* )
+**OBJECT SET FONT SIZE** ( * ; *object* : Text ; *size* : Integer )
**OBJECT SET FONT SIZE** ( *object* : Field, Variable ; *size* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| size | Integer | → | フォントサイズ (ポイント) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| size | Integer | → | フォントサイズ (ポイント) |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
index 7a9424554da4ea..f5919a8795b3b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-style
displayed_sidebar: docs
---
-**OBJECT SET FONT STYLE** ( {* ;} *object* ; *styles* )
+**OBJECT SET FONT STYLE** ( * ; *object* : Text ; *styles* : Integer )
**OBJECT SET FONT STYLE** ( *object* : Field, Variable ; *styles* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| styles | Integer | → | フォントスタイル |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| styles | Integer | → | フォントスタイル |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 166 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
index 9bbcab401003cb..055d794a42a721 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font
displayed_sidebar: docs
---
-**OBJECT SET FONT** ( {* ;} *object* ; *font* )
+**OBJECT SET FONT** ( * ; *object* : Text ; *font* : Text )
**OBJECT SET FONT** ( *object* : Field, Variable ; *font* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| font | Text | → | フォント名またはフォント番号 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| font | Text | → | フォント名またはフォント番号 |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
index 94091e29755b04..331b9e9042e3ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-format
displayed_sidebar: docs
---
-**OBJECT SET FORMAT** ( {* ;} *object* ; *displayFormat* )
+**OBJECT SET FORMAT** ( * ; *object* : Text ; *displayFormat* : Text )
**OBJECT SET FORMAT** ( *object* : Field, Variable ; *displayFormat* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| displayFormat | Text | → | オブジェクトに設定する表示フォーマット |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| displayFormat | Text | → | オブジェクトに設定する表示フォーマット |
@@ -335,6 +335,6 @@ This example formats a date variable and a time variable using [customized forma
| | |
| --- | --- |
| コマンド番号 | 236 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
index 2d23668d9f6c2a..db59724cc858bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-help-tip
displayed_sidebar: docs
---
-**OBJECT SET HELP TIP** ( {* ;} *object* ; *helpTip* )
+**OBJECT SET HELP TIP** ( * ; *object* : Text ; *helpTip* : Text )
**OBJECT SET HELP TIP** ( *object* : Field, Variable ; *helpTip* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| helpTip | Text | → | ヘルプメッセージの内容 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| helpTip | Text | → | ヘルプメッセージの内容 |
@@ -134,6 +134,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1181 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
index 895935c9fb653d..cd36d1526f80ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT SET HORIZONTAL ALIGNMENT** ( {* ;} *object* ; *alignment* )
+**OBJECT SET HORIZONTAL ALIGNMENT** ( * ; *object* : Text ; *alignment* : Integer )
**OBJECT SET HORIZONTAL ALIGNMENT** ( *object* : Field, Variable ; *alignment* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| alignment | Integer | → | 整列コード |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| alignment | Integer | → | 整列コード |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 706 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
index 3e222ba9883031..d71a7751f4b930 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-indicator-type
displayed_sidebar: docs
---
-**OBJECT SET INDICATOR TYPE** ( {* ;} *object* ; *indicator* )
+**OBJECT SET INDICATOR TYPE** ( * ; *object* : Text ; *indicator* : Integer )
**OBJECT SET INDICATOR TYPE** ( *object* : Field, Variable ; *indicator* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| indicator | Integer | → | インジケータータイプ |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| indicator | Integer | → | インジケータータイプ |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1246 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
index 590df5ac2f3e1a..da64cc9b6da581 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT SET KEYBOARD LAYOUT** ( {* ;} *object* ; *languageCode* )
+**OBJECT SET KEYBOARD LAYOUT** ( * ; *object* : Text ; *languageCode* : Text )
**OBJECT SET KEYBOARD LAYOUT** ( *object* : Field, Variable ; *languageCode* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
-| languageCode | Text | → | RFC3066 ISO639 そして ISO3166 言語コード
"" = 変更しない |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| languageCode | Text | → | RFC3066 ISO639 そして ISO3166 言語コード
"" = 変更しない |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1179 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
index af3f197d530059..91d4cda22a52f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-name
displayed_sidebar: docs
---
-**OBJECT SET LIST BY NAME** ( {* ;} *object* {; *listType*}; *list* )
+**OBJECT SET LIST BY NAME** ( * ; *object* : Text {; *listType* : Integer}; *list* : Text )
**OBJECT SET LIST BY NAME** ( *object* : Field, Variable {; *listType* : Integer}; *list* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| listType | Integer | → | リストの種類: 選択リスト、必須リスト、除外リスト |
-| list | Text | → | 選択リストとして使用するリストの名前 (デザインモードで定義) |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| listType | Integer | → | リストの種類: 選択リスト、必須リスト、除外リスト |
+| list | Text | → | 選択リストとして使用するリストの名前 (デザインモードで定義) |
@@ -95,6 +95,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 237 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
index 277661eee070f2..0c855d9bdb7413 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-reference
displayed_sidebar: docs
---
-**OBJECT SET LIST BY REFERENCE** ( {* ;} *object* {; *listType*}; *list* )
+**OBJECT SET LIST BY REFERENCE** ( * ; *object* : Text {; *listType* : Integer}; *list* : Integer )
**OBJECT SET LIST BY REFERENCE** ( *object* : Field, Variable {; *listType* : Integer}; *list* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| listType | Integer | → | リストの種類:選択リスト、指定リスト、除外リスト |
-| list | Integer | → | リストの参照番号 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| listType | Integer | → | リストの種類:選択リスト、指定リスト、除外リスト |
+| list | Integer | → | リストの参照番号 |
@@ -133,6 +133,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1266 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
index cbd7dd656ac7f4..0f604c60a2cd8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-maximum-value
displayed_sidebar: docs
---
-**OBJECT SET MAXIMUM VALUE** ( {* ;} *object* ; *maxValue* )
+**OBJECT SET MAXIMUM VALUE** ( * ; *object* : Text ; *maxValue* : Date, Time, Real )
**OBJECT SET MAXIMUM VALUE** ( *object* : Field, Variable ; *maxValue* : Date, Time, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| maxValue | Date, Time, Number | → | オブジェクトの最大値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| maxValue | Date, Time, Real | → | オブジェクトの最大値 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1244 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
index 3c50aee350e282..a9f89495a7383e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-minimum-value
displayed_sidebar: docs
---
-**OBJECT SET MINIMUM VALUE** ( {* ;} *object* ; *minValue* )
+**OBJECT SET MINIMUM VALUE** ( * ; *object* : Text ; *minValue* : Date, Time, Real )
**OBJECT SET MINIMUM VALUE** ( *object* : Field, Variable ; *minValue* : Date, Time, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| minValue | Date, Time, Number | → | オブジェクトの最小値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| minValue | Date, Time, Real | → | オブジェクトの最小値 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1242 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
index 1ad37a93d2e1e5..b6b446e4812099 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-multiline
displayed_sidebar: docs
---
-**OBJECT SET MULTILINE** ( {* ;} *object* ; *multiline* )
+**OBJECT SET MULTILINE** ( * ; *object* : Text ; *multiline* : Integer )
**OBJECT SET MULTILINE** ( *object* : Field, Variable ; *multiline* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| multiline | Integer | → | 複数行プロパティの状態 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| multiline | Integer | → | 複数行プロパティの状態 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1253 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
index b76735055d34d2..2793cbb75d98b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-placeholder
displayed_sidebar: docs
---
-**OBJECT SET PLACEHOLDER** ( {* ;} *object* ; *placeholderText* )
+**OBJECT SET PLACEHOLDER** ( * ; *object* : Text ; *placeholderText* : Text )
**OBJECT SET PLACEHOLDER** ( *object* : Field, Variable ; *placeholderText* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| placeholderText | Text | → | オブジェクトに関連付けるプレースホルダーテキスト |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| placeholderText | Text | → | オブジェクトに関連付けるプレースホルダーテキスト |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1295 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
index 97ca66781ba9ff..fca51fceefeb2d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT SET PRINT VARIABLE FRAME** ( {* ;} *object* ; *variableFrame* {; *fixedSubform*} )
+**OBJECT SET PRINT VARIABLE FRAME** ( * ; *object* : Text ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
**OBJECT SET PRINT VARIABLE FRAME** ( *object* : Field, Variable ; *variableFrame* : Boolean {; *fixedSubform* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
-| variableFrame | Boolean | → | True = 可変長フレーム印刷、 False = 固定長フレーム印刷 |
-| fixedSubform | Integer | → | サブフォームを固定サイズで印刷する際のオプション |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
+| variableFrame | Boolean | → | True = 可変長フレーム印刷、 False = 固定長フレーム印刷 |
+| fixedSubform | Integer | → | サブフォームを固定サイズで印刷する際のオプション |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1240 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
index 8fc6d1040d6f5b..b8a3e242a4b95d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-resizing-options
displayed_sidebar: docs
---
-**OBJECT SET RESIZING OPTIONS** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT SET RESIZING OPTIONS** ( * ; *object* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT SET RESIZING OPTIONS** ( *object* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| horizontal | Integer | → | 横リサイズオプション |
-| vertical | Integer | → | 縦リサイズオプション |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| horizontal | Integer | → | 横リサイズオプション |
+| vertical | Integer | → | 縦リサイズオプション |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1175 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
index 5212d5229878ca..84196bcec14c7d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-rgb-colors
displayed_sidebar: docs
---
-**OBJECT SET RGB COLORS** ( {* ;} *object* ; *foregroundColor* {; *backgroundColor* {; *altBackgrndColor*}} )
+**OBJECT SET RGB COLORS** ( * ; *object* : Text ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
**OBJECT SET RGB COLORS** ( *object* : Field, Variable ; *foregroundColor* : Text, Integer {; *backgroundColor* : Text, Integer {; *altBackgrndColor* : Text, Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| foregroundColor | Text, Integer | → | 前景色のRGBカラー |
-| backgroundColor | Text, Integer | → | 背景色のRGBカラー |
-| altBackgrndColor | Text, Integer | → | 奇数行の背景色RGBカラー |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| foregroundColor | Text, Integer | → | 前景色のRGBカラー |
+| backgroundColor | Text, Integer | → | 背景色のRGBカラー |
+| altBackgrndColor | Text, Integer | → | 奇数行の背景色RGBカラー |
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 628 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
index 033f1f02c5298f..1e6a096aebb97d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-scroll-position
displayed_sidebar: docs
---
-**OBJECT SET SCROLL POSITION** ( * ; *object* {; *vPosition* {; *hPosition*}}{; *} )
+**OBJECT SET SCROLL POSITION** ( * ; *object* : any {; *vPosition* : Integer {; *hPosition* : Integer}}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定された場合、オブジェクトがオブジェクト名 (文字列) 省略された場合、オブジェクトがテーブルまたは変数 |
-| object | any | → | オブジェクト名 ( * が指定された場合) または テーブルまたは変数 ( * が省略された場合) |
-| vPosition | Integer | → | 表示する行番号、またはピクチャーの場合縦スクロール量 (ピクセル) |
-| hPosition | Integer | → | リストボックスの場合表示する列番号、またはピクチャーの場合縦スクロール量 (ピクセル) |
-| * | 演算子 | → | スクロール後の最初の位置に行を表示 (hPositionが渡された場合、列も対象) |
+| * | 演算子 | → | 指定された場合、オブジェクトがオブジェクト名 (文字列) 省略された場合、オブジェクトがテーブルまたは変数 |
+| object | any | → | オブジェクト名 ( * が指定された場合) または テーブルまたは変数 ( * が省略された場合) |
+| vPosition | Integer | → | 表示する行番号、またはピクチャーの場合縦スクロール量 (ピクセル) |
+| hPosition | Integer | → | リストボックスの場合表示する列番号、またはピクチャーの場合縦スクロール量 (ピクセル) |
+| * | 演算子 | → | スクロール後の最初の位置に行を表示 (hPositionが渡された場合、列も対象) |
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 906 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
index 68361413d80cd2..82c98441f97402 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-scrollbar
displayed_sidebar: docs
---
-**OBJECT SET SCROLLBAR** ( {* ;} *object* ; *horizontal* ; *vertical* )
+**OBJECT SET SCROLLBAR** ( * ; *object* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT SET SCROLLBAR** ( *object* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
-| horizontal | Boolean, Integer | → | True = 表示, False = 非表示 |
-| vertical | Boolean, Integer | → | True = 表示, False = 非表示 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または 変数 (* 省略時) |
+| horizontal | Boolean, Integer | → | True = 表示, False = 非表示 |
+| vertical | Boolean, Integer | → | True = 表示, False = 非表示 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 843 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
index 9303ebae6d3695..fd0bd1e5ebceae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-shortcut
displayed_sidebar: docs
---
-**OBJECT SET SHORTCUT** ( {* ;} *object* ; *key* {; *modifiers*} )
+**OBJECT SET SHORTCUT** ( * ; *object* : Text ; *key* : Text {; *modifiers* : Integer} )
**OBJECT SET SHORTCUT** ( *object* : Field, Variable ; *key* : Text {; *modifiers* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
-| key | Text | → | オブジェクトに割り当てるキー |
-| modifiers | Integer | → | モディファイアーキーマスクまたはマスクの組み合わせ |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)変数またはフィールド (* 省略時) |
+| key | Text | → | オブジェクトに割り当てるキー |
+| modifiers | Integer | → | モディファイアーキーマスクまたはマスクの組み合わせ |
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1185 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
index fde8f8575f35ed..25bd9d45cb12f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-style-sheet
displayed_sidebar: docs
---
-**OBJECT SET STYLE SHEET** ( {* ;} *object* ; *styleSheetName* )
+**OBJECT SET STYLE SHEET** ( * ; *object* : Text ; *styleSheetName* : Text )
**OBJECT SET STYLE SHEET** ( *object* : Field, Variable ; *styleSheetName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
-| styleSheetName | Text | → | スタイルシート名 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
+| styleSheetName | Text | → | スタイルシート名 |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1257 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
index 0baf893bcc5f94..f86c2ee91c29ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-set-subform-container-value
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* )
+**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* : any )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| value | any | → | データソースの新しい値 |
+| value | any | → | データソースの新しい値 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1784 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
index 7db91a2b1cc85d..5fd76f50d45ecb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-subform
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM** ( {* ;} *object* {; *aTable*}; *detailSubform* {; *listSubform*} )
+**OBJECT SET SUBFORM** ( * ; *object* : Text {; *aTable* : Table}; *detailSubform* : Text, Object {; *listSubform* : Text, Object} )
**OBJECT SET SUBFORM** ( *object* : Field, Variable {; *aTable* : Table}; *detailSubform* : Text, Object {; *listSubform* : Text, Object} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| aTable | Table | → | フォームのテーブル (テーブルフォームの場合) |
-| detailSubform | Text, Object | → | 詳細フォーム名(テキスト)あるいは詳細フォームを定義した.jsonファイルへのPOSIXパス(テキスト)、あるいはサブフォームの詳細フォームを定義したオブジェクト |
-| listSubform | Text, Object | → | リストフォーム名(テキスト)、あるいはリストフォームを定義した.jsonファイルへのPOSIXパス(テキスト)、あるいはサブフォームのリストフォーム(テーブルフォーム)を定義したオブジェクト |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| aTable | Table | → | フォームのテーブル (テーブルフォームの場合) |
+| detailSubform | Text, Object | → | 詳細フォーム名(テキスト)あるいは詳細フォームを定義した.jsonファイルへのPOSIXパス(テキスト)、あるいはサブフォームの詳細フォームを定義したオブジェクト |
+| listSubform | Text, Object | → | リストフォーム名(テキスト)、あるいはリストフォームを定義した.jsonファイルへのPOSIXパス(テキスト)、あるいはサブフォームのリストフォーム(テーブルフォーム)を定義したオブジェクト |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1138 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
index 3cbd457f0483ec..d5b9bf442259fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-text-orientation
displayed_sidebar: docs
---
-**OBJECT SET TEXT ORIENTATION** ( {* ;} *object* ; *orientation* )
+**OBJECT SET TEXT ORIENTATION** ( * ; *object* : Text ; *orientation* : Integer )
**OBJECT SET TEXT ORIENTATION** ( *object* : Field, Variable ; *orientation* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| orientation | Integer | → | オブジェクトの方向を決める値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| orientation | Integer | → | オブジェクトの方向を決める値 |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1284 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
index 8aed09e93f19e1..05a8914309108e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT SET THREE STATES CHECKBOX** ( {* ;} *object* ; *threeStates* )
+**OBJECT SET THREE STATES CHECKBOX** ( * ; *object* : Text ; *threeStates* : Boolean )
**OBJECT SET THREE STATES CHECKBOX** ( *object* : Field, Variable ; *threeStates* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
-| object | any | → | オブジェクト名(*指定時)、または変数やフィールド(*省略時) |
-| threeStates | Boolean | → | True = スリーステートチェックボックス、False = 標準のチェックボックス |
+| * | 演算子 | → | 指定時:object はオブジェクト名(文字列)、省略時:object は変数またはフィールド |
+| object | any | → | オブジェクト名(*指定時)、または変数やフィールド(*省略時) |
+| threeStates | Boolean | → | True = スリーステートチェックボックス、False = 標準のチェックボックス |
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
index aa5a064baf1613..46ffdfbeb8d661 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-title
displayed_sidebar: docs
---
-**OBJECT SET TITLE** ( {* ;} *object* ; *title* )
+**OBJECT SET TITLE** ( * ; *object* : Text ; *title* : Text )
**OBJECT SET TITLE** ( *object* : Field, Variable ; *title* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| title | Text | → | オブジェクトの新しいタイトル |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| title | Text | → | オブジェクトの新しいタイトル |
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
index 8d951451496f06..c0a740ea2f1fe3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
@@ -5,12 +5,12 @@ slug: /commands/object-set-value
displayed_sidebar: docs
---
-**OBJECT SET VALUE** ( *objectName* ; *value* )
+**OBJECT SET VALUE** ( *objectName* : Text ; *value* : any )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectName | Text | → | オブジェクト名 |
-| value | any | → | フォームオブジェクトのデータソースの新しい値 |
+| objectName | Text | → | オブジェクト名 |
+| value | any | → | フォームオブジェクトのデータソースの新しい値 |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1742 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
index 7aecb8283afa23..b46763eb5f38aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT SET VERTICAL ALIGNMENT** ( {* ;} *object* ; *alignment* )
+**OBJECT SET VERTICAL ALIGNMENT** ( * ; *object* : Text ; *alignment* : Integer )
**OBJECT SET VERTICAL ALIGNMENT** ( *object* : Field, Variable ; *alignment* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
-| alignment | Integer | → | 行揃えコード |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)省略時objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時)または変数 (* 省略時) |
+| alignment | Integer | → | 行揃えコード |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
index 0ca9bd5a0f88e6..d472dd8e090a3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-visible
displayed_sidebar: docs
---
-**OBJECT SET VISIBLE** ( {* ;} *object* ; *visible* )
+**OBJECT SET VISIBLE** ( * ; *object* : Text ; *visible* : Boolean )
**OBJECT SET VISIBLE** ( *object* : Field, Variable ; *visible* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
-| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
-| visible | Boolean | → | True: 表示, False: 非表示 |
+| * | 演算子 | → | 指定時, Objectはオブジェクト名 (文字列) 省略時, Objectはフィールドまたは変数 |
+| object | any | → | オブジェクト名 (* 指定時), または フィールドまたは変数 (* 省略時) |
+| visible | Boolean | → | True: 表示, False: 非表示 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 603 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
index bf70a09c0eb162..b99cf504dbd014 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
@@ -5,11 +5,11 @@ slug: /commands/object-to-path
displayed_sidebar: docs
---
-**Object to path** ( *pathObject* ) : Text
+**Object to path** ( *pathObject* : Object ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathObject | Object | → | パスの中身を定義するオブジェクト |
+| pathObject | Object | → | パスの中身を定義するオブジェクト |
| 戻り値 | Text | ← | パス名 |
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
index 82fc67ddeadbfa..2414a8024ec0de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
@@ -5,11 +5,11 @@ slug: /commands/old-related-many
displayed_sidebar: docs
---
-**OLD RELATED MANY** ( *aField* )
+**OLD RELATED MANY** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | 1フィールド |
+| aField | Field | → | 1フィールド |
@@ -31,7 +31,7 @@ OLD RELATED MANYはリレートテーブルのセレクションを変更し、
| | |
| --- | --- |
| コマンド番号 | 263 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
index 85572db65bf7e3..c090ce8c915b1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/old-related-one
displayed_sidebar: docs
---
-**OLD RELATED ONE** ( *aField* )
+**OLD RELATED ONE** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | nフィールド |
+| aField | Field | → | nフィールド |
@@ -37,7 +37,7 @@ OLD RELATED ONEは、更新前のカレントレコードの内容にリレー
| | |
| --- | --- |
| コマンド番号 | 44 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md
index 77b10bf6ab68ea..576e870e22b858 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/old.md
@@ -5,11 +5,11 @@ slug: /commands/old
displayed_sidebar: docs
---
-**Old** ( *aField* ) : any
+**Old** ( *aField* : Field ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | 元の値を取得するフィールド |
+| aField | Field | → | 元の値を取得するフィールド |
| 戻り値 | any | ← | 元のフィールド値 |
@@ -47,6 +47,6 @@ Oldは、すべてのフィールドタイプに適用できます。
| | |
| --- | --- |
| コマンド番号 | 35 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
index 9941a782d88619..a1e6c12063c4da 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-err-call
displayed_sidebar: docs
---
-**ON ERR CALL** ( *errorMethod* {; *scope*} )
+**ON ERR CALL** ( *errorMethod* : Text {; *scope* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| errorMethod | Text | → | 実行されるエラーメソッド, または 空の文字列でエラーのトラップ停止 |
-| scope | Integer | → | エラーメソッドのスコープ |
+| errorMethod | Text | → | 実行されるエラーメソッド, または 空の文字列でエラーのトラップ停止 |
+| scope | Integer | → | エラーメソッドのスコープ |
@@ -187,6 +187,6 @@ IO ERROR HANDLERプロジェクトメソッドは以下のようになります:
| | |
| --- | --- |
| コマンド番号 | 155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
index 1d3e16f90c4217..e3f009f011f342 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-event-call
displayed_sidebar: docs
---
-**ON EVENT CALL** ( *eventMethod* {; *processName*} )
+**ON EVENT CALL** ( *eventMethod* : Text {; *processName* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| eventMethod | Text | → | 発動されるイベントメソッド, または 空の文字の場合イベントの遮断を停止 |
-| processName | Text | → | プロセス名 |
+| eventMethod | Text | → | 発動されるイベントメソッド, または 空の文字の場合イベントの遮断を停止 |
+| processName | Text | → | プロセス名 |
@@ -120,7 +120,7 @@ Ctrl+ピリオドが押されると、イベント処理メソッド内で*<>vbW
| | |
| --- | --- |
| コマンド番号 | 190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
index 6e60022595d47f..5b3cd7413f786a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-exit-database-method.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
index 4e5b8befa197a7..b268b80d18c7b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| mobileInfo | Object | → | モバイルアプリケーションから渡された情報 |
+| mobileInfo | Object | → | モバイルアプリケーションから渡された情報 |
| 戻り値 | Object | ← | アクションステータス&データ同期 |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
index 97f78d20eebb97..c296ecc78bad5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
@@ -5,11 +5,11 @@ slug: /commands/on-mobile-app-authentication-database-method
displayed_sidebar: docs
---
-On Mobile App Authentication データベースメソッド ( *mobileInfo* ; *status* )
+On Mobile App Authentication データベースメソッド ( *mobileInfo* : Object ; *status* : Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| mobileInfo | Object | → | モバイルアプリケーションから渡された情報 |
+| mobileInfo | Object | → | モバイルアプリケーションから渡された情報 |
| status | Object | ← | 認証ステータス |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
index 5ee2d0edd9b56e..3118af1400826e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3367 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
index 2a46d487876dc1..acad53d62f5c07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 16001 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
index 7ecce07bac10ba..d92d2440c98df9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/on-startup-database-method.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
index 57154ec143a506..88d4678bd1c109 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
@@ -5,11 +5,11 @@ slug: /commands/one-record-select
displayed_sidebar: docs
---
-**ONE RECORD SELECT** {( *aTable* )}
+**ONE RECORD SELECT** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードをカレントセレクションにする テーブル、または省略時デフォルトテーブル |
+| aTable | Table | → | カレントレコードをカレントセレクションにする テーブル、または省略時デフォルトテーブル |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 189 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
index cdbd83be334b38..a96bd6679570c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1047 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
index 73f8256a80f7bc..110dc49c27f824 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
@@ -5,11 +5,11 @@ slug: /commands/open-color-picker
displayed_sidebar: docs
---
-**OPEN COLOR PICKER** {( *textOrBackground* )}
+**OPEN COLOR PICKER** ({ *textOrBackground* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| textOrBackground | Integer | → | 0または省略 = テキストカラーを選択、1 = テキスト背景色を選択 |
+| textOrBackground | Integer | → | 0または省略 = テキストカラーを選択、1 = テキスト背景色を選択 |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1304 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
index 7d3e3a1792a4dc..623de41e126d93 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/open-data-file
displayed_sidebar: docs
---
-**OPEN DATA FILE** ( *accessPath* )
+**OPEN DATA FILE** ( *accessPath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| accessPath | Text | → | 開くデータファイルの名前または完全アクセスパス |
+| accessPath | Text | → | 開くデータファイルの名前または完全アクセスパス |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
index ea702509bf79a8..38b407f3a67d28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
@@ -5,11 +5,11 @@ slug: /commands/open-database
displayed_sidebar: docs
---
-**OPEN DATABASE** ( *filePath* )
+**OPEN DATABASE** ( *filePath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| filePath | Text | → | 開きたいファイル名(.4db、.4dc、.4dbase または .4dlink)、
または開きたいデータベースへの完全なアクセスパス |
+| filePath | Text | → | 開きたいファイル名(.4db、.4dc、.4dbase または .4dlink)、
または開きたいデータベースへの完全なアクセスパス |
@@ -79,6 +79,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 1321 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
index 1ef3f9f55880a6..5c038ddfaf1a03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
@@ -5,13 +5,13 @@ slug: /commands/open-document
displayed_sidebar: docs
---
-**Open document** ( *document* {; *fileType*}{; *mode*} ) : Time
+**Open document** ( *document* : Text {; *fileType* : Text}{; *mode* : Integer} ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名、または ドキュメントへの完全なパス名、または 空の文字列の場合、標準のファイルダイアログボックス表示 |
-| fileType | Text | → | 表示されるドキュメントタイプのリスト、または ドキュメントを表示しない"*" |
-| mode | Integer | → | ドキュメントを開くモード |
+| document | Text | → | ドキュメント名、または ドキュメントへの完全なパス名、または 空の文字列の場合、標準のファイルダイアログボックス表示 |
+| fileType | Text | → | 表示されるドキュメントタイプのリスト、または ドキュメントを表示しない"*" |
+| mode | Integer | → | ドキュメントを開くモード |
| 戻り値 | Time | ← | ドキュメント参照番号 |
@@ -92,7 +92,7 @@ Open documentを3のモードで呼ぶと、関数は?00:00:00? (ドキュメン
| | |
| --- | --- |
| コマンド番号 | 264 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
index f06c54e09e5300..1a401e6e383182 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
index 08037ecbaa8c44..f37fa4ccf853d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
@@ -5,16 +5,16 @@ slug: /commands/open-form-window
displayed_sidebar: docs
---
-**Open form window** ( {*aTable* ;} *formName* {; *type* {; *hPos* {; *vPos* {; *}}}} ) : Integer
+**Open form window** ( {*aTable* : Table ;} *formName* : Text, Object {; *type* : Integer {; *hPos* : Integer {; *vPos* : Integer {; *}}}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フォームが属するテーブル、または省略時デフォルトテーブル |
-| formName | Text, Object | → | プロジェクトフォームまたはテーブルフォームのフォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
-| type | Integer | → | ウィンドウタイプ |
-| hPos | Integer | → | ウィンドウの横位置 |
-| vPos | Integer | → | ウィンドウの縦位置 |
-| * | 演算子 | → | ウィンドウの現在の位置とサイズを保存 |
+| aTable | Table | → | フォームが属するテーブル、または省略時デフォルトテーブル |
+| formName | Text, Object | → | プロジェクトフォームまたはテーブルフォームのフォーム名(文字列)、
あるいはフォームを定義した.jsonファイルへのPOSIXパス(文字列)、
あるいは開くフォームを定義したオブジェクト |
+| type | Integer | → | ウィンドウタイプ |
+| hPos | Integer | → | ウィンドウの横位置 |
+| vPos | Integer | → | ウィンドウの縦位置 |
+| * | 演算子 | → | ウィンドウの現在の位置とサイズを保存 |
| 戻り値 | Integer | ← | ウィンドウ参照番号 |
@@ -145,6 +145,6 @@ $myWin :=Open form window("/RESOURCES/OutputPersonnel.json";Plain form window)
| | |
| --- | --- |
| コマンド番号 | 675 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
index c4095f21a2a8b5..9af93550e519a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 995 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
index 59bd9470f60a8b..60644964a32d32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
@@ -5,12 +5,12 @@ slug: /commands/open-resource-file
displayed_sidebar: docs
---
-**Open resource file** ( *resFilename* {; *fileType*} ) : Time
+**Open resource file** ( *resFilename* : Text {; *fileType* : Text} ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resFilename | Text | → | リソースファイルのファイル名またはフルパス名, または 空の文字列を指定するとファイルを開くダイアログボックスを表示 |
-| fileType | Text | → | Mac OSファイルタイプ (4文字)、または Windowsファイル拡張子(1から3文字)、または 省略時、すべてのファイル |
+| resFilename | Text | → | リソースファイルのファイル名またはフルパス名, または 空の文字列を指定するとファイルを開くダイアログボックスを表示 |
+| fileType | Text | → | Mac OSファイルタイプ (4文字)、または Windowsファイル拡張子(1から3文字)、または 省略時、すべてのファイル |
| 戻り値 | Time | ← | リソースファイル参照番号 |
@@ -103,7 +103,7 @@ Macintosh上で、この例は“MyPrefs”ファイルを開きます。
| | |
| --- | --- |
| コマンド番号 | 497 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
index 3847d29ccbdeef..da72aafd23c1ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
index 3caf1d9fdabb52..366498f8b14b8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1018 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
index d7c73cfd6a4cbc..5392d4f1516d0d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
@@ -5,13 +5,13 @@ slug: /commands/open-settings-window
displayed_sidebar: docs
---
-**OPEN SETTINGS WINDOW** ( *selector* {; *access* {; *settingsType*}} )
+**OPEN SETTINGS WINDOW** ( *selector* : Text {; *access* : Boolean {; *settingsType* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Text | → | 環境設定やデータベース設定ダイアログボックス中のテーマやページ、またはパラメーターグループを指定するキー |
-| access | Boolean | → | True=ダイアログボックスの他のページをロックする
Falseまたは省略=ダイアログの他のページもアクティブにする |
-| settingsType | Integer | → | 0または省略時 = ストラクチャー設定、1 = ユーザー設定 |
+| selector | Text | → | 環境設定やデータベース設定ダイアログボックス中のテーマやページ、またはパラメーターグループを指定するキー |
+| access | Boolean | → | True=ダイアログボックスの他のページをロックする
Falseまたは省略=ダイアログの他のページもアクティブにする |
+| settingsType | Integer | → | 0または省略時 = ストラクチャー設定、1 = ユーザー設定 |
@@ -144,7 +144,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 903 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
index 9935a5f669bdd3..5a864bc067c79d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
@@ -5,13 +5,13 @@ slug: /commands/open-url
displayed_sidebar: docs
---
-**OPEN URL** ( *path* {; *appName*}{; *} )
+**OPEN URL** ( *path* : Text {; *appName* : Text}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | 開くドキュメントまたはURL |
-| appName | Text | → | 使用するアプリケーション名 |
-| * | 演算子 | → | 指定した場合 = URLをエンコードしない, 省略した場合 = URLをエンコードする |
+| path | Text | → | 開くドキュメントまたはURL |
+| appName | Text | → | 使用するアプリケーション名 |
+| * | 演算子 | → | 指定した場合 = URLをエンコードしない, 省略した場合 = URLをエンコードする |
@@ -85,6 +85,6 @@ macOS 環境下では、アプリケーションを探すのに、インスト
| | |
| --- | --- |
| コマンド番号 | 673 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
index d36b82b1e38b3c..7e4b42634f5a84 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
@@ -5,17 +5,17 @@ slug: /commands/open-window
displayed_sidebar: docs
---
-**Open window** ( *left* ; *top* ; *right* ; *bottom* {; *type* {; *title* {; *controlMenuBox*}}} ) : Integer
+**Open window** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *type* : Integer {; *title* : Text {; *controlMenuBox* : Text}}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| left | Integer | → | ウィンドウ内容領域のグローバル左座標 |
-| top | Integer | → | ウィンドウ内容領域のグローバル上座標 |
-| right | Integer | → | ウィンドウ内容領域のグローバル右座標, または-1でフォームのデフォルトサイズを使用 |
-| bottom | Integer | → | ウィンドウ内容領域のグローバル下座標, または-1でフォームのデフォルトサイズを使用 |
-| type | Integer | → | ウィンドウタイプ |
-| title | Text | → | ウィンドウのタイトル または "" でデフォルトのフォームタイトルを使用 |
-| controlMenuBox | Text | → | コントロールメニューボックスがダブルクリック またはクローズボックスがクリックされたときに 呼び出すメソッド |
+| left | Integer | → | ウィンドウ内容領域のグローバル左座標 |
+| top | Integer | → | ウィンドウ内容領域のグローバル上座標 |
+| right | Integer | → | ウィンドウ内容領域のグローバル右座標, または-1でフォームのデフォルトサイズを使用 |
+| bottom | Integer | → | ウィンドウ内容領域のグローバル下座標, または-1でフォームのデフォルトサイズを使用 |
+| type | Integer | → | ウィンドウタイプ |
+| title | Text | → | ウィンドウのタイトル または "" でデフォルトのフォームタイトルを使用 |
+| controlMenuBox | Text | → | コントロールメニューボックスがダブルクリック またはクローズボックスがクリックされたときに 呼び出すメソッド |
| 戻り値 | Integer | ← | ウィンドウ参照番号 |
@@ -140,6 +140,6 @@ CloseColorPalette メソッドは[CANCEL](cancel.md)コマンドを呼び出し
| | |
| --- | --- |
| コマンド番号 | 153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
index 732343dbb82a7a..d3f4014e66c34b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
@@ -5,15 +5,15 @@ slug: /commands/order-by-attribute
displayed_sidebar: docs
---
-**ORDER BY ATTRIBUTE** ( {*aTable* ;} *objectField* ; *attributePath* ; > or < {; *objectField2* ; *attributePath2* ; > or <2 ; ... ; *objectFieldN* ; *attributePathN* ; > or
+**ORDER BY ATTRIBUTE** ( {*aTable* : Table ;} {; ...(*objectField* : Field ; *attributePath* : Text {; >,<})} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションをソートするテーブル (省略時はデフォルトテーブル) |
-| objectField | Object | → | ソートの基準とする属性を含むオブジェクトフィールド |
-| attributePath | Text | → | ソートの基準とする属性の名前またはパス |
-| > or < | 演算子 | → | ソート方向: >: 昇順, または <: 降順 |
-| * | 演算子 | → | ソート継続フラグ |
+| aTable | Table | → | セレクションをソートするテーブル (省略時はデフォルトテーブル) |
+| objectField | Object | → | ソートの基準とする属性を含むオブジェクトフィールド |
+| attributePath | Text | → | ソートの基準とする属性の名前またはパス |
+| > or < | 演算子 | → | ソート方向: >: 昇順, または <: 降順 |
+| * | 演算子 | → | ソート継続フラグ |
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1407 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
index 6cd6fbcde06d03..e0fb191dc37a40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
@@ -5,13 +5,13 @@ slug: /commands/order-by-formula
displayed_sidebar: docs
---
-**ORDER BY FORMULA** ( *aTable* ; *expression* {; > or <}{; *expression2* ; > or <2 ; ... ; *expressionN* ; > or
+**ORDER BY FORMULA** ( *aTable* : Table ; *formula* : Expression {; >,<} {; ...(*formula* : Expression {; >,<})} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションをソートするテーブル |
-| expression | Expression | → | 各レベルのソートに設定する式 (文字, 実数, 整数, 倍長整数, 日付, 時間または ブール) |
-| > or < | 演算子 | → | 各レベルのソート方向: >: 昇順, または <: 降順 |
+| aTable | Table | → | セレクションをソートするテーブル |
+| expression | Expression | → | 各レベルのソートに設定する式 (文字, 実数, 整数, 倍長整数, 日付, 時間または ブール) |
+| > or < | 演算子 | → | 各レベルのソート方向: >: 昇順, または <: 降順 |
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 300 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
index c93b3d92b76d46..79d5582ab8714a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
@@ -5,14 +5,14 @@ slug: /commands/order-by
displayed_sidebar: docs
---
-**ORDER BY** ( {*aTable* ;}{ *aField* }{; > または < }{; *aField2* ; > または <2 ; ... ; *aFieldN* ; > または
+**ORDER BY** ( {*aTable* : Table ;}{; ...(*aField* : Field {; >,<}) } {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションをソートするテーブル, または 省略した場合、デフォルトテーブル |
-| aField | Field | → | 各レベルのソートするフィールド |
-| > または < | 演算子 | → | 各レベルのソート方向: >: 昇順, または <: 降順 |
-| * | 演算子 | → | ソート継続フラグ |
+| aTable | Table | → | セレクションをソートするテーブル, または 省略した場合、デフォルトテーブル |
+| aField | Field | → | 各レベルのソートするフィールド |
+| > または < | 演算子 | → | 各レベルのソート方向: >: 昇順, または <: 降順 |
+| * | 演算子 | → | ソート継続フラグ |
@@ -205,7 +205,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 49 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
index b6b0d361cb84e1..38bdbf8a1839b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
index 60a36795cc8362..524a933d30fdd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
@@ -5,11 +5,12 @@ slug: /commands/page-break
displayed_sidebar: docs
---
-**PAGE BREAK** {( * )}
**PAGE BREAK** {( > )}
+**PAGE BREAK** ({ * })
**PAGE BREAK** ({ > })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | > |Operator| → | *: Print formで開始されたプリントジョブをキャンセル, または >: 1つのプリントジョブを強制 |
+| * | Operator | → | Cancel printing job started with Print form |
+| > | Operator | → | Force one printing job |
@@ -49,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 6 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
index f22a8f3f504534..d6812df1486fa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
@@ -5,12 +5,12 @@ slug: /commands/parse-formula
displayed_sidebar: docs
---
-**Parse formula** ( *formula* {; *options*}{; *errorMessage*} ) : Text
+**Parse formula** ( *formula* : Text {; *options* : Integer}{; *errorMessage* : Text} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| formula | Text | → | 標準テキストのフォーミュラ |
-| options | Integer | → | 入力/出力の形式の指示 |
+| formula | Text | → | 標準テキストのフォーミュラ |
+| options | Integer | → | 入力/出力の形式の指示 |
| errorMessage | Text | ← | エラーメッセージ(エラーなしの場合には空の文字列) |
| 戻り値 | Text | ← | 変換されたフォーミュラ(標準テキスト) |
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1576 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
index 57c8d170aaf5d4..e7536235e0c600 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
@@ -5,11 +5,11 @@ slug: /commands/pasteboard-data-size
displayed_sidebar: docs
---
-**Pasteboard data size** ( *dataType* ) : Integer
+**Pasteboard data size** ( *dataType* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dataType | Text | → | データタイプ |
+| dataType | Text | → | データタイプ |
| 戻り値 | Integer | ← | ペーストボード中のデータサイズ (バイト) またはエラーコード |
@@ -98,7 +98,7 @@ You want to drag some private data from different objects in your form. You can
| | |
| --- | --- |
| コマンド番号 | 400 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
index 30873331f1b0ee..0319368ca5e71b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
@@ -5,12 +5,12 @@ slug: /commands/path-to-object
displayed_sidebar: docs
---
-**Path to object** ( *path* {; *pathType*} ) : Object
+**Path to object** ( *path* : Text {; *pathType* : Integer} ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| path | Text | → | パス名 |
-| pathType | Integer | → | パスシンタックスのタイプ:システム(デフォルト)あるいはPosix |
+| path | Text | → | パス名 |
+| pathType | Integer | → | パスシンタックスのタイプ:システム(デフォルト)あるいはPosix |
| 戻り値 | Object | ← | パスの中身を説明したオブジェクト |
@@ -178,6 +178,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
index 682ce3516bbd13..f25fe8787dbe2a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
@@ -5,11 +5,11 @@ slug: /commands/pause-indexes
displayed_sidebar: docs
---
-**PAUSE INDEXES** ( *aTable* )
+**PAUSE INDEXES** ( *aTable* : Table )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | インデックスを停止するテーブル |
+| aTable | Table | → | インデックスを停止するテーブル |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1293 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
index a46ffbdd5ed860..e5f45168ae68e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
@@ -5,11 +5,11 @@ slug: /commands/pause-process
displayed_sidebar: docs
---
-**PAUSE PROCESS** ( *process* )
+**PAUSE PROCESS** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 319 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
index 7368d31cb1453b..65c127c482486c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
@@ -5,13 +5,13 @@ slug: /commands/picture-codec-list
displayed_sidebar: docs
---
-**PICTURE CODEC LIST** ( *codecArray* {; *namesArray*}{; *} )
+**PICTURE CODEC LIST** ( *codecArray* : Text array {; *namesArray* : Text array}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| codecArray | Text array | ← | 利用可能なピクチャCodecのID |
| namesArray | Text array | ← | ピクチャCodecの名前 |
-| * | 演算子 | → | 読み込み (デコード) CODECのリストを返す |
+| * | 演算子 | → | 読み込み (デコード) CODECのリストを返す |
@@ -41,6 +41,6 @@ Codec IDは以下の異なるフォーマットで*codecArray* 配列に返さ
| | |
| --- | --- |
| コマンド番号 | 992 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
index 48b466f846b89e..1f41f2aae74e19 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
@@ -5,7 +5,7 @@ slug: /commands/picture-library-list
displayed_sidebar: docs
---
-**PICTURE LIBRARY LIST** ( *picRefs* ; *picNames* )
+**PICTURE LIBRARY LIST** ( *picRefs* : Integer array ; *picNames* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -105,6 +105,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 564 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
index a5466828360fb2..dd9dfee8cf183a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
@@ -5,11 +5,11 @@ slug: /commands/picture-properties
displayed_sidebar: docs
---
-**PICTURE PROPERTIES** ( *picture* ; *width* ; *height* {; *hOffset* {; *vOffset* {; *mode*}}} )
+**PICTURE PROPERTIES** ( *picture* : Picture ; *width* : Real ; *height* : Real {; *hOffset* : Integer {; *vOffset* : Integer {; *mode* : Integer}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | 情報を取得するピクチャ |
+| picture | Picture | → | 情報を取得するピクチャ |
| width | Real | ← | ピクチャの幅 (ピクセル) |
| height | Real | ← | ピクチャの高さ (ピクセル) |
| hOffset | Integer | ← | バックグランド表示の時の水平方向のオフセット |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 457 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
index 2aa8e3e98a5014..3180ab1a75fdb1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
@@ -5,11 +5,11 @@ slug: /commands/picture-size
displayed_sidebar: docs
---
-**Picture size** ( *picture* ) : Integer
+**Picture size** ( *picture* : Picture ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | サイズを知りたいピクチャ |
+| picture | Picture | → | サイズを知りたいピクチャ |
| 戻り値 | Integer | ← | ピクチャのサイズ (バイト) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 356 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
index 9b1ef6e57d6f31..f243d33c9bd7ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/picture-to-blob
displayed_sidebar: docs
---
-**PICTURE TO BLOB** ( *picture* ; *pictureBlob* ; *codec* )
+**PICTURE TO BLOB** ( *picture* : Picture ; *pictureBlob* : Blob ; *codec* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | ピクチャフィールドまたは変数 |
+| picture | Picture | → | ピクチャフィールドまたは変数 |
| pictureBlob | Blob | ← | 変換されたピクチャを受け取るBLOB |
-| codec | Text | → | ピクチャCodec ID |
+| codec | Text | → | ピクチャCodec ID |
@@ -55,7 +55,7 @@ Codecは拡張子 (例 “.gif”), または Mimeタイプ (例 “image/jpeg
| | |
| --- | --- |
| コマンド番号 | 692 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md
index bdcee83682e224..95e68310ec5ecc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/play.md
@@ -5,12 +5,12 @@ slug: /commands/play
displayed_sidebar: docs
---
-**PLAY** ( *objectName* {; *channel*} )
+**PLAY** ( *objectName* : Text {; *channel* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objectName | Text | → | サウンドファイル名、またはMac OSの"snd "リソース、またはシステムサウンド非同期再生を中断する場合、空の文字列 |
-| channel | Integer | → | 指定した場合、シンセサイザーチャネルと非同期実行、省略した場合同期実行 |
+| objectName | Text | → | サウンドファイル名、またはMac OSの"snd "リソース、またはシステムサウンド非同期再生を中断する場合、空の文字列 |
+| channel | Integer | → | 指定した場合、シンセサイザーチャネルと非同期実行、省略した場合同期実行 |
@@ -62,6 +62,6 @@ Windows上でのWAVファイルの再生方法を以下の例題で示します:
| | |
| --- | --- |
| コマンド番号 | 290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
index b25f430a722109..366f7b1a5ed74e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
@@ -5,7 +5,7 @@ slug: /commands/plugin-list
displayed_sidebar: docs
---
-**PLUGIN LIST** ( *numbersArray* ; *namesArray* )
+**PLUGIN LIST** ( *numbersArray* : Integer array ; *namesArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ PLUGIN LISTは、4Dに統合されたプラグイン (例: 4D Chart) やサー
| | |
| --- | --- |
| コマンド番号 | 847 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
index f0467efc848b55..e247cf810032ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
@@ -5,11 +5,11 @@ slug: /commands/pop-record
displayed_sidebar: docs
---
-**POP RECORD** {( *aTable* )}
+**POP RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードをポップするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードをポップするテーブル, または 省略時、デフォルトテーブル |
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 177 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
index ceeed1471b2075..4a5b00d79efde3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/pop-up-menu
displayed_sidebar: docs
---
-**Pop up menu** ( *contents* {; *default* {; *xCoord* ; *yCoord*}} ) : Integer
+**Pop up menu** ( *contents* : Text {; *default* : Integer {; *xCoord* : Integer ; *yCoord* : Integer}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| contents | Text | → | 定義された項目テキスト |
-| default | Integer | → | デフォルトで選択された項目番号 |
-| xCoord | Integer | → | 左上角のX座標 |
-| yCoord | Integer | → | 左上角のY座標 |
+| contents | Text | → | 定義された項目テキスト |
+| default | Integer | → | デフォルトで選択された項目番号 |
+| xCoord | Integer | → | 左上角のX座標 |
+| yCoord | Integer | → | 左上角のY座標 |
| 戻り値 | Integer | ← | 選択された項目番号 |
@@ -105,6 +105,6 @@ Windows上 (左) とMacintosh上 (右)で表示されるポップアップメニ
| | |
| --- | --- |
| コマンド番号 | 542 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md
index 154c3834e4367e..b5ad2c8f07c475 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/position.md
@@ -5,24 +5,17 @@ slug: /commands/position
displayed_sidebar: docs
---
-**Position** ( *find* ; *aString* {; *start* {; *lengthFound*}}{; *} ) -> 戻り値
-**Position** ( *find* ; *aString* ; *start* ; *lengthFound* ; *options* ) -> 戻り値
+**Position** ( *find* : Text ; *aString* : Text {; *start* : Integer {; *lengthFound* : Integer}}{; *} ) -> Integer
**Position** ( *find* : Text ; *aString* : Text; *start* : Integer ; *lengthFound* : Integer ; *options* : Integer ) -> Integer
+
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| find | Text | → | 見つける文字列 |
-| aString | Text | → | 調べる文字列 |
-| start | Integer | → | aString引数内で検索を開始する位置 |
+| find | Text | → | 見つける文字列 |
+| aString | Text | → | 調べる文字列 |
+| start | Integer | → | aString引数内で検索を開始する位置 |
| lengthFound | Integer | ← | 見つかった文字列の長さ |
-| * | 演算子 | → | 渡されると、文字コードに基づいて評価 |
-| 戻り値 | Integer | ← | 最初に見つかった位置 |
-| Position ( find ; aString ; start ; lengthFound ; options ) -> 戻り値 |
-| 引数 | 型 | 説明 |
-| find | Text | → | 見つける文字列 |
-| aString | Text | → | 調べる文字列 |
-| start | Integer | → | aString引数内で検索を開始する位置 |
-| lengthFound | Integer | → | 見つかった文字列の長さ |
-| options | Integer | → | 検索条件 |
+| * | 演算子 | → | 渡されると、文字コードに基づいて評価 |
+| options | Integer | → | 検索条件 |
| 戻り値 | Integer | ← | 最初に見つかった位置 |
@@ -121,6 +114,6 @@ Position関数の使用例を次に示します。結果を変数*vlResult*に
| | |
| --- | --- |
| コマンド番号 | 15 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
index 6ec74faf414aee..dbaec008ee90fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
@@ -5,14 +5,14 @@ slug: /commands/post-click
displayed_sidebar: docs
---
-**POST CLICK** ( *mouseX* ; *mouseY* {; *process*} {; *} )
+**POST CLICK** ( *mouseX* : Integer ; *mouseY* : Integer {; *process* : Integer} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| mouseX | Integer | → | 水平座標 |
-| mouseY | Integer | → | 垂直座標 |
-| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
-| * | Operator | → | 指定された場合はグローバルな座標システムが使用される 省略された場合はローカルな座標システムが使用される |
+| mouseX | Integer | → | 水平座標 |
+| mouseY | Integer | → | 垂直座標 |
+| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
+| * | Operator | → | 指定された場合はグローバルな座標システムが使用される 省略された場合はローカルな座標システムが使用される |
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 466 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
index d0b8e33f2202bd..89d532dac69e9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
@@ -5,17 +5,17 @@ slug: /commands/post-event
displayed_sidebar: docs
---
-**POST EVENT** ( *what* ; *message* ; *when* ; *mouseX* ; *mouseY* ; *modifiers* {; *process*} )
+**POST EVENT** ( *what* : Integer ; *message* : Integer ; *when* : Integer ; *mouseX* : Integer ; *mouseY* : Integer ; *modifiers* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| what | Integer | → | イベントのタイプ |
-| message | Integer | → | イベントメッセージ |
-| when | Integer | → | Tick単位でのイベント時間 |
-| mouseX | Integer | → | マウスの水平座標 |
-| mouseY | Integer | → | マウスの垂直座標 |
-| modifiers | Integer | → | モディファイアキーのステータス |
-| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
+| what | Integer | → | イベントのタイプ |
+| message | Integer | → | イベントメッセージ |
+| when | Integer | → | Tick単位でのイベント時間 |
+| mouseX | Integer | → | マウスの水平座標 |
+| mouseY | Integer | → | マウスの垂直座標 |
+| modifiers | Integer | → | モディファイアキーのステータス |
+| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 467 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
index 1793597723b6fd..15ed80d91fb9e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
@@ -5,13 +5,13 @@ slug: /commands/post-key
displayed_sidebar: docs
---
-**POST KEY** ( *code* {; *modifiers* {; *process*}} )
+**POST KEY** ( *code* : Integer {; *modifiers* : Integer {; *process* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| code | Integer | → | 文字コードまたはファンクションキーコード |
-| modifiers | Integer | → | モディファイアキーのステータス |
-| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
+| code | Integer | → | 文字コードまたはファンクションキーコード |
+| modifiers | Integer | → | モディファイアキーのステータス |
+| process | Integer | → | 送信先のプロセス参照番号、 省略または0の場合、アプリケーションイベントキュー |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 465 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
index 0a99f79ae92d18..2ba07d90d42d08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
@@ -5,11 +5,11 @@ slug: /commands/post-outside-call
displayed_sidebar: docs
---
-**POST OUTSIDE CALL** ( *process* )
+**POST OUTSIDE CALL** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
index 184a0ceb286890..76ca8754e4fcd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
@@ -5,11 +5,11 @@ slug: /commands/previous-record
displayed_sidebar: docs
---
-**PREVIOUS RECORD** {( *aTable* )}
+**PREVIOUS RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションの前レコードをカレントレコードにする テーブル、省略時はデフォルトテーブル |
+| aTable | Table | → | セレクションの前レコードをカレントレコードにする テーブル、省略時はデフォルトテーブル |
@@ -32,7 +32,7 @@ PREVIOUS RECORDで、カレントセレクションの前にカレントレコ
| | |
| --- | --- |
| コマンド番号 | 110 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
index 481ed22a49dc5d..10e0131e721571 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
@@ -5,13 +5,13 @@ slug: /commands/print-label
displayed_sidebar: docs
---
-**PRINT LABEL** ( *aTable* {; *document* {; * }} )
**PRINT LABEL** ( *aTable* {; *document* {; >}} )
+**PRINT LABEL** ( *aTable* : Table {; *document* : Text {; * }} )
**PRINT LABEL** ( *aTable* : Table {; *document* : Text {; >}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 印刷するテーブル, または 省略した場合、デフォルトテーブル |
-| document | Text | → | ディスクに保存したラベルドキュメント名 |
-| * | > |Operator| → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
+| aTable | Table | → | 印刷するテーブル, または 省略した場合、デフォルトテーブル |
+| document | Text | → | ディスクに保存したラベルドキュメント名 |
+| * | > | Operator | → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
@@ -113,7 +113,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 39 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
index 80ff710d7a2b94..cbd4035d77ccdf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
@@ -5,16 +5,16 @@ slug: /commands/print-object
displayed_sidebar: docs
---
-**Print object** ( {* ;} *object* {; *posX* {; *posY* {; *width* {; *height*}}}} ) : Boolean
+**Print object** ( * ; *object* : Text {; *posX* : Integer {; *posY* : Integer {; *width* : Integer {; *height* : Integer}}}} ) : Boolean
**Print object** ( *object* : Field, Variable {; *posX* : Integer {; *posY* : Integer {; *width* : Integer {; *height* : Integer}}}} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)
省略時 objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| posX | Integer | → | オブジェクトの横位置 |
-| posY | Integer | → | オブジェクトの縦位置 |
-| width | Integer | → | オブジェクトの幅 (ピクセル) |
-| height | Integer | → | オブジェクトの高さ (ピクセル) |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)
省略時 objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| posX | Integer | → | オブジェクトの横位置 |
+| posY | Integer | → | オブジェクトの縦位置 |
+| width | Integer | → | オブジェクトの幅 (ピクセル) |
+| height | Integer | → | オブジェクトの高さ (ピクセル) |
| 戻り値 | Boolean | ← | True = オブジェクトが完全に印刷された; そうでなければFalse |
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1095 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
index 8e17afd8d5e49f..f912608b3578c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
@@ -5,11 +5,11 @@ slug: /commands/print-option-values
displayed_sidebar: docs
---
-**PRINT OPTION VALUES** ( *option* ; *namesArray* {; *info1Array* {; *info2Array*}} )
+**PRINT OPTION VALUES** ( *option* : Integer ; *namesArray* : Text array {; *info1Array* : Integer array {; *info2Array* : Integer array}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | オプション番号 |
+| option | Integer | → | オプション番号 |
| namesArray | Text array | ← | 値の名前 |
| info1Array | Integer array | ← | オプションの値(1) |
| info2Array | Integer array | ← | オプションの値(2) |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
index 675d61165fe4d2..917b651e5b377c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
@@ -5,12 +5,12 @@ slug: /commands/print-record
displayed_sidebar: docs
---
-**PRINT RECORD** ( *aTable* {; *} )
**PRINT RECORD** ( *aTable* {; >} )
+**PRINT RECORD** ( *aTable* : Table {; *} )
**PRINT RECORD** ( *aTable* : Table {; >} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを印刷するテーブル または 省略した場合はデフォルトテーブル |
-| * | > | 演算子 | → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
+| aTable | Table | → | カレントレコードを印刷するテーブル または 省略した場合はデフォルトテーブル |
+| * | > | 演算子 | → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 71 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
index 1e299999d57baf..13dab5a5db2f4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
@@ -5,12 +5,12 @@ slug: /commands/print-selection
displayed_sidebar: docs
---
-**PRINT SELECTION** ( *aTable* {; *} )
**PRINT SELECTION** ( *aTable* {; >} )
+**PRINT SELECTION** ( *aTable* : Table {; *} )
**PRINT SELECTION** ( *aTable* : Table {; >} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションを印刷するテーブル, または 省略した場合、デフォルトテーブル |
-| * | > | 演算子 | → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
+| aTable | Table | → | セレクションを印刷するテーブル, または 省略した場合、デフォルトテーブル |
+| * | > | 演算子 | → | *: 印刷ダイアログを省略, または >: 印刷設定の再初期化をしない |
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 60 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
index 8d24a6c132ffd8..fd774223c391d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings-to-blob
displayed_sidebar: docs
---
-**Print settings to BLOB** ( *printSettings* ) : Integer
+**Print settings to BLOB** ( *printSettings* : Blob ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -58,6 +58,6 @@ BLOB が正しく生成されるとコマンドは 1を返します。カレン
| | |
| --- | --- |
| コマンド番号 | 1433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
index 45509868dc2fc4..1e8c146453ff8a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
@@ -5,11 +5,11 @@ slug: /commands/print-settings
displayed_sidebar: docs
---
-**PRINT SETTINGS** {( *dialType* )}
+**PRINT SETTINGS** ({ *dialType* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dialType | Integer | → | 表示するダイアログボックス |
+| dialType | Integer | → | 表示するダイアログボックス |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 106 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
index c724e890655c40..bd45d6a2885a83 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
@@ -5,7 +5,7 @@ slug: /commands/printers-list
displayed_sidebar: docs
---
-**PRINTERS LIST** ( *namesArray* {; *altNamesArray* {; *modelsArray*}} )
+**PRINTERS LIST** ( *namesArray* : Text array {; *altNamesArray* : Text array {; *modelsArray* : Text array}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ macOS上では、プリンタ名 (プリンタサーバの名前) を使用し
| | |
| --- | --- |
| コマンド番号 | 789 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
index e84ffb8a2d9a07..13ab2e56a4e16f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 275 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
index ee980a70662a56..a1513ea715a7f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
@@ -5,13 +5,13 @@ slug: /commands/process-4d-tags
displayed_sidebar: docs
---
-**PROCESS 4D TAGS** ( *inputData* ; *outputData* {; *param*}{; *param2* ; ... ; *paramN*} )
+**PROCESS 4D TAGS** ( *inputData* : Text ; *outputData* : Text {; *...param* : Expression} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| inputData | Text | → | 処理する4Dタグを格納しているデータ |
+| inputData | Text | → | 処理する4Dタグを格納しているデータ |
| outputData | Text | ← | 処理されたデータ |
-| param | Expression | → | 実行されるテンプレートへと渡される引数 |
+| param | Expression | → | 実行されるテンプレートへと渡される引数 |
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| コマンド番号 | 816 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
index 409ec43d9d7326..a1f78b8fc9bfaa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 672 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
index 67589a64fdcb7f..442f797611b2c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
@@ -5,11 +5,11 @@ slug: /commands/process-state
displayed_sidebar: docs
---
-**Process state** ( *process* ) : Integer
+**Process state** ( *process* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
| 戻り値 | Integer | ← | プロセスの状態 |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
index f21d98b5dbfe98..6a8da6096d1b53 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
@@ -5,11 +5,11 @@ slug: /commands/push-record
displayed_sidebar: docs
---
-**PUSH RECORD** {( *aTable* )}
+**PUSH RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードをプッシュするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードをプッシュするテーブル, または 省略時、デフォルトテーブル |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 176 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
index 7a93af04e0a44f..c1cc25b8376e09 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
@@ -5,12 +5,12 @@ slug: /commands/qr-blob-to-report
displayed_sidebar: docs
---
-**QR BLOB TO REPORT** ( *area* ; *BLOB* )
+**QR BLOB TO REPORT** ( *area* : Integer ; *BLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| Blob | Blob | → | レポートを納めたBLOB |
+| area | Integer | → | エリア参照 |
+| Blob | Blob | → | レポートを納めたBLOB |
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 771 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
index 518c35dfe16f81..63b84ebcf50734 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
@@ -5,11 +5,11 @@ slug: /commands/qr-count-columns
displayed_sidebar: docs
---
-**QR Count columns** ( *area* ) : Integer
+**QR Count columns** ( *area* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| 戻り値 | Integer | ← | エリア中のカラム数 |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 764 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
index 8676ab404443e1..a5a45b3268f4cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-delete-column
displayed_sidebar: docs
---
-**QR DELETE COLUMN** ( *area* ; *colNumber* )
+**QR DELETE COLUMN** ( *area* : Integer ; *colNumber* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNumber | Integer | → | カラム番号 |
+| area | Integer | → | エリア参照 |
+| colNumber | Integer | → | カラム番号 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 749 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
index b48c83dbb549e8..1ff486daa69f75 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-delete-offscreen-area
displayed_sidebar: docs
---
-**QR DELETE OFFSCREEN AREA** ( *area* )
+**QR DELETE OFFSCREEN AREA** ( *area* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | 削除するエリアの参照 |
+| area | Integer | → | 削除するエリアの参照 |
@@ -28,7 +28,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 754 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
index 00cbfde4641cdc..12ff1fda40cc45 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-execute-command
displayed_sidebar: docs
---
-**QR EXECUTE COMMAND** ( *area* ; *command* )
+**QR EXECUTE COMMAND** ( *area* : Integer ; *command* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| command | Integer | → | 実行するメニューコマンド |
+| area | Integer | → | エリア参照 |
+| command | Integer | → | 実行するメニューコマンド |
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 791 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
index e421c5e01511de..36a0dc3d412ab6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-find-column
displayed_sidebar: docs
---
-**QR Find column** ( *area* ; *expression* ) : Integer
+**QR Find column** ( *area* : Integer ; *expression* : Text, Pointer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| expression | Text, Pointer | → | カラムオブジェクト |
+| area | Integer | → | エリア参照 |
+| expression | Text, Pointer | → | カラムオブジェクト |
| 戻り値 | Integer | ← | カラム番号 |
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 776 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
index f7f72d5f534155..d9128622b9dfb1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-area-property
displayed_sidebar: docs
---
-**QR Get area property** ( *area* ; *property* ) : Integer
+**QR Get area property** ( *area* : Integer ; *property* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリアの参照 |
-| property | Integer | → | インタフェース要素 |
+| area | Integer | → | エリアの参照 |
+| property | Integer | → | インタフェース要素 |
| 戻り値 | Integer | ← | 1 = 表示, 0 = 非表示 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 795 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
index 4484238973078f..f239ee347d8e78 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-borders
displayed_sidebar: docs
---
-**QR GET BORDERS** ( *area* ; *column* ; *row* ; *border* ; *line* {; *color*} )
+**QR GET BORDERS** ( *area* : Integer ; *column* : Integer ; *row* : Integer ; *border* : Integer ; *line* : Integer {; *color* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| column | Integer | → | カラム番号 |
-| row | Integer | → | 行番号 |
-| border | Integer | → | 罫線の値 |
+| area | Integer | → | エリア参照 |
+| column | Integer | → | カラム番号 |
+| row | Integer | → | 行番号 |
+| border | Integer | → | 罫線の値 |
| line | Integer | ← | 線の太さ |
| color | Integer | ← | 罫線のカラー |
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 798 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
index 56a285a8f65e56..400152a82738ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-command-status
displayed_sidebar: docs
---
-**QR Get command status** ( *area* ; *command* {; *value*} ) : Integer
+**QR Get command status** ( *area* : Integer ; *command* : Integer {; *value* : Integer, Text} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| command | Integer | → | コマンド番号 |
+| area | Integer | → | エリア参照 |
+| command | Integer | → | コマンド番号 |
| value | Integer, Text | ← | 選択されたサブアイテムの値 |
| 戻り値 | Integer | ← | コマンドの状態 |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 792 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
index 8011428cdc7859..eb35b4c61318b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-destination
displayed_sidebar: docs
---
-**QR GET DESTINATION** ( *area* ; *type* {; *specifics*} )
+**QR GET DESTINATION** ( *area* : Integer ; *type* : Integer {; *specifics* : Text, Variable} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| type | Integer | ← | レポートのタイプ |
| specifics | Text, Variable | ← | 出力先の詳細 |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 756 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
index 9b4c1ab4829372..381d36b6f04ecb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-document-property
displayed_sidebar: docs
---
-**QR Get document property** ( *area* ; *property* ) : Integer
+**QR Get document property** ( *area* : Integer ; *property* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| property | Integer | → | 1 = 印刷ダイアログ, 2 = ドキュメント単位 |
+| area | Integer | → | エリア参照 |
+| property | Integer | → | 1 = 印刷ダイアログ, 2 = ドキュメント単位 |
| 戻り値 | Integer | ← | プロパティ値 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 773 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
index 9451f09948fd49..c6d389ca7fab74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-drop-column
displayed_sidebar: docs
---
-**QR Get drop column** ( *area* ) : Integer
+**QR Get drop column** ( *area* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| 戻り値 | Integer | ← | ドロップされた値 |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 747 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
index 4339c13827fa01..8a1c29ebb15ad3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-header-and-footer
displayed_sidebar: docs
---
-**QR GET HEADER AND FOOTER** ( *area* ; *selector* ; *leftTitle* ; *centerTitle* ; *rightTitle* ; *height* {; *picture* {; *pictAlignment*}} )
+**QR GET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *leftTitle* : Text ; *centerTitle* : Text ; *rightTitle* : Text ; *height* : Integer {; *picture* : Picture {; *pictAlignment* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| selector | Integer | → | 1 = ヘッダ, 2 = フッタ |
+| area | Integer | → | エリア参照 |
+| selector | Integer | → | 1 = ヘッダ, 2 = フッタ |
| leftTitle | Text | ← | 左側に表示されるテキスト |
| centerTitle | Text | ← | 中央に表示されるテキスト |
| rightTitle | Text | ← | 右側に表示されるテキスト |
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 775 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
index ea4beb4ef7a7a1..48ba4939952285 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-html-template
displayed_sidebar: docs
---
-**QR Get HTML template** ( *area* ) : Text
+**QR Get HTML template** ( *area* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| 戻り値 | Text | ← | テンプレートとして使用されるHTMLコード |
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 751 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
index 8507ad64591a00..b737178145d28c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-column
displayed_sidebar: docs
---
-**QR GET INFO COLUMN** ( *area* ; *colNum* ; *title* ; *object* ; *hide* ; *size* ; *repeatedValue* ; *displayFormat* {; *resultVar*} )
+**QR GET INFO COLUMN** ( *area* : Integer ; *colNum* : Integer ; *title* : Text ; *object* : Text ; *hide* : Integer ; *size* : Integer ; *repeatedValue* : Integer ; *displayFormat* : Text {; *resultVar* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
| title | Text | ← | カラムタイトル |
| object | Text | ← | カラムに割り当てられたオブジェクト |
| hide | Integer | ← | 0 = 表示, 1 = 非表示 |
@@ -113,7 +113,7 @@ QR GET INFO COLUMN コマンドを使用して、同様のパラメータを取
| | |
| --- | --- |
| コマンド番号 | 766 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
index 52200337bb73f1..bab1bbba968054 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-row
displayed_sidebar: docs
---
-**QR Get info row** ( *area* ; *row* ) : Integer
+**QR Get info row** ( *area* : Integer ; *row* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| row | Integer | → | 指定する行 |
+| area | Integer | → | エリア参照 |
+| row | Integer | → | 指定する行 |
| 戻り値 | Integer | ← | 0 = 表示, 1 = 非表示 |
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 769 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
index e17830f54f07f4..98f67364f9cf6f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-kind
displayed_sidebar: docs
---
-**QR Get report kind** ( *area* ) : Integer
+**QR Get report kind** ( *area* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| 戻り値 | Integer | ← | レポートタイプ |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 755 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
index 384a7e0a448462..fa4efd8f8cd9b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-table
displayed_sidebar: docs
---
-**QR Get report table** ( *area* ) : Integer
+**QR Get report table** ( *area* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| 戻り値 | Integer | ← | テーブル番号 |
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 758 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
index 3f9774233039a5..7759d63eb72646 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-selection
displayed_sidebar: docs
---
-**QR GET SELECTION** ( *area* ; *left* ; *top* {; *right* {; *bottom*}} )
+**QR GET SELECTION** ( *area* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer {; *bottom* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| left | Integer | ← | 左境界 |
| top | Integer | ← | 上境界 |
| right | Integer | ← | 右境界 |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 793 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
index 22428b444b48b7..4a47a3c3dbfae6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-sorts
displayed_sidebar: docs
---
-**QR GET SORTS** ( *area* ; *aColumns* ; *aOrders* )
+**QR GET SORTS** ( *area* : Integer ; *aColumns* : Real array ; *aOrders* : Real array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| aColumns | Real array | ← | ソートされたカラム |
| aOrders | Real array | ← | ソート順 |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 753 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
index 6ab651c77620ab..68b1a7a5111d96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-text-property
displayed_sidebar: docs
---
-**QR Get text property** ( *area* ; *colNum* ; *rowNum* ; *property* ) : any
+**QR Get text property** ( *area* : Integer ; *colNum* : Integer ; *rowNum* : Integer ; *property* : Integer ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
-| rowNum | Integer | → | 行番号 |
-| property | Integer | → | プロパティ番号 |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
+| rowNum | Integer | → | 行番号 |
+| property | Integer | → | プロパティ番号 |
| 戻り値 | Integer, Text | ← | 選択したプロパティの値 |
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 760 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
index 5c2730e0826347..49381d03560ef2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
@@ -5,13 +5,13 @@ slug: /commands/qr-get-totals-data
displayed_sidebar: docs
---
-**QR GET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *operator* ; *text* )
+**QR GET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *operator* : Integer ; *text* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
-| breakNum | Integer | → | ブレーク番号 |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
+| breakNum | Integer | → | ブレーク番号 |
| operator | Integer | ← | セルの演算名 |
| text | Text | ← | セルの内容 |
@@ -81,7 +81,7 @@ QR GET TOTALS DATA コマンドを使用し、指定したセルの詳細を取
| | |
| --- | --- |
| コマンド番号 | 768 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
index e0e2fa0b29568b..04e59ff3140267 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-totals-spacing
displayed_sidebar: docs
---
-**QR GET TOTALS SPACING** ( *area* ; *subtotal* ; *value* )
+**QR GET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| subtotal | Integer | → | 小計番号 |
+| area | Integer | → | エリア参照 |
+| subtotal | Integer | → | 小計番号 |
| value | Integer | ← | 0=スペースなし, 32000=改ページ挿入, >0=ブレークレベルの上に追加するスペース, <0=比率指定 |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
index 80bf54c10ee6e1..0799d9ca1198a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-insert-column
displayed_sidebar: docs
---
-**QR INSERT COLUMN** ( *area* ; *colNumber* ; *object* )
+**QR INSERT COLUMN** ( *area* : Integer ; *colNumber* : Integer ; *object* : Field, Variable, Pointer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNumber | Integer | → | カラム番号 |
-| object | Field, Variable, Pointer | → | カラムに挿入するオブジェクト |
+| area | Integer | → | エリア参照 |
+| colNumber | Integer | → | カラム番号 |
+| object | Field, Variable, Pointer | → | カラムに挿入するオブジェクト |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 748 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
index ea92281896cc5c..d9fcfc1bb0943e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-move-column
displayed_sidebar: docs
---
-**QR MOVE COLUMN** ( *area* ; *column* ; *newPos* )
+**QR MOVE COLUMN** ( *area* : Integer ; *column* : Integer ; *newPos* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | Reference of the area |
-| column | Integer | → | Column number |
-| newPos | Integer | → | New position for column |
+| area | Integer | → | Reference of the area |
+| column | Integer | → | Column number |
+| newPos | Integer | → | New position for column |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
index f165ad52338b88..6981f613aa722f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-new-area
displayed_sidebar: docs
---
-**QR NEW AREA** ( *ptr* )
+**QR NEW AREA** ( *ptr* : Pointer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| ptr | Pointer | → | 変数へのポインター |
+| ptr | Pointer | → | 変数へのポインター |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1320 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
index d4067cbd866c03..d51c2ef3889453 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 735 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
index 02fe0d09f674f4..a448b6527e714a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-on-command
displayed_sidebar: docs
---
-**QR ON COMMAND** ( *area* ; *methodName* )
+**QR ON COMMAND** ( *area* : Integer ; *methodName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| methodName | Text | → | 置き換えメソッド名 |
+| area | Integer | → | エリア参照 |
+| methodName | Text | → | 置き換えメソッド名 |
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 790 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
index bc1ea37696fc83..750e5c89608433 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
@@ -5,11 +5,11 @@ slug: /commands/qr-report-to-blob
displayed_sidebar: docs
---
-**QR REPORT TO BLOB** ( *area* ; *BLOB* )
+**QR REPORT TO BLOB** ( *area* : Integer ; *BLOB* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
+| area | Integer | → | エリア参照 |
| Blob | Blob | ← | クイックレポートを納めるBLOB |
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 770 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
index 238379c57fbeb5..03ca490b3e5ed8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
@@ -5,14 +5,14 @@ slug: /commands/qr-report
displayed_sidebar: docs
---
-**QR REPORT** ( {*aTable* ;} *document* {; *methodName*}{; *} )
+**QR REPORT** ( {*aTable* : Table ;} *document* : Text {; *methodName* : Text}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レポートを作成するテーブル、省略時はデフォルトテーブル |
-| document | Text | → | ロードするクイックレポートドキュメント |
-| methodName | Text | → | 呼び出すメソッドの名前 |
-| * | 演算子 | → | プリントダイアログボックスを表示しない |
+| aTable | Table | → | レポートを作成するテーブル、省略時はデフォルトテーブル |
+| document | Text | → | ロードするクイックレポートドキュメント |
+| methodName | Text | → | 呼び出すメソッドの名前 |
+| * | 演算子 | → | プリントダイアログボックスを表示しない |
@@ -137,7 +137,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
index 937e9c1917c05e..d7219834ea8d90 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
@@ -5,11 +5,11 @@ slug: /commands/qr-run
displayed_sidebar: docs
---
-**QR RUN** ( *area* )
+**QR RUN** ( *area* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | 実行するエリアの参照 |
+| area | Integer | → | 実行するエリアの参照 |
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 746 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
index f2625bd094b8f5..6ed91a8f0ec367 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-area-property
displayed_sidebar: docs
---
-**QR SET AREA PROPERTY** ( *area* ; *property* ; *value* )
+**QR SET AREA PROPERTY** ( *area* : Integer ; *property* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| property | Integer | → | 指定するインタフェース要素 |
-| value | Integer | → | 1 = 表示, 0 = 非表示 |
+| area | Integer | → | エリア参照 |
+| property | Integer | → | 指定するインタフェース要素 |
+| value | Integer | → | 1 = 表示, 0 = 非表示 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 796 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
index 6bc580ef9dab93..ddad2b39f84ac2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
@@ -5,16 +5,16 @@ slug: /commands/qr-set-borders
displayed_sidebar: docs
---
-**QR SET BORDERS** ( *area* ; *column* ; *row* ; *border* ; *line* {; *color*} )
+**QR SET BORDERS** ( *area* : Integer ; *column* : Integer ; *row* : Integer ; *border* : Integer ; *line* : Integer {; *color* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| column | Integer | → | カラム番号 |
-| row | Integer | → | 行番号 |
-| border | Integer | → | 罫線の合成値 |
-| line | Integer | → | 線の太さ |
-| color | Integer | → | 罫線のカラー |
+| area | Integer | → | エリア参照 |
+| column | Integer | → | カラム番号 |
+| row | Integer | → | 行番号 |
+| border | Integer | → | 罫線の合成値 |
+| line | Integer | → | 線の太さ |
+| color | Integer | → | 罫線のカラー |
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 797 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
index 321f0a209f7e9f..7ca532120707eb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-destination
displayed_sidebar: docs
---
-**QR SET DESTINATION** ( *area* ; *type* {; *specifics*} )
+**QR SET DESTINATION** ( *area* : Integer ; *type* : Integer {; *specifics* : Text, Variable} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| type | Integer | → | レポートの出力先 |
-| specifics | Text, Variable | → | 出力先の詳細 |
+| area | Integer | → | エリア参照 |
+| type | Integer | → | レポートの出力先 |
+| specifics | Text, Variable | → | 出力先の詳細 |
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 745 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
index e0ed10fa15b7f4..a04ed1e3ffb0da 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-document-property
displayed_sidebar: docs
---
-**QR SET DOCUMENT PROPERTY** ( *area* ; *property* ; *value* )
+**QR SET DOCUMENT PROPERTY** ( *area* : Integer ; *property* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| property | Integer | → | 1 = 印刷ダイアログ, 2 = ドキュメントの単位 |
-| value | Integer | → | プロパティ値 |
+| area | Integer | → | エリア参照 |
+| property | Integer | → | 1 = 印刷ダイアログ, 2 = ドキュメントの単位 |
+| value | Integer | → | プロパティ値 |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 772 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
index abf50332d58419..0f9396b9b0c30b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-header-and-footer
displayed_sidebar: docs
---
-**QR SET HEADER AND FOOTER** ( *area* ; *selector* ; *leftTitle* ; *centerTitle* ; *rightTitle* ; *height* {; *picture* {; *pictAlignment*}} )
+**QR SET HEADER AND FOOTER** ( *area* : Integer ; *selector* : Integer ; *leftTitle* : Text ; *centerTitle* : Text ; *rightTitle* : Text ; *height* : Integer {; *picture* : Picture {; *pictAlignment* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| selector | Integer | → | 1 = ヘッダ, 2 = フッタ |
-| leftTitle | Text | → | 左側に表示されるテキスト |
-| centerTitle | Text | → | 中央に表示されるテキスト |
-| rightTitle | Text | → | 右側に表示されるテキスト |
-| height | Integer | → | ヘッダまたはフッタの高さ |
-| picture | Picture | → | 表示するピクチャ |
-| pictAlignment | Integer | → | ピクチャの整列属性 |
+| area | Integer | → | エリア参照 |
+| selector | Integer | → | 1 = ヘッダ, 2 = フッタ |
+| leftTitle | Text | → | 左側に表示されるテキスト |
+| centerTitle | Text | → | 中央に表示されるテキスト |
+| rightTitle | Text | → | 右側に表示されるテキスト |
+| height | Integer | → | ヘッダまたはフッタの高さ |
+| picture | Picture | → | 表示するピクチャ |
+| pictAlignment | Integer | → | ピクチャの整列属性 |
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 774 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
index 235578228386ea..8e3307aacbaa23 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-html-template
displayed_sidebar: docs
---
-**QR SET HTML TEMPLATE** ( *area* ; *template* )
+**QR SET HTML TEMPLATE** ( *area* : Integer ; *template* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| template | Text | → | HTMLテンプレート |
+| area | Integer | → | エリア参照 |
+| template | Text | → | HTMLテンプレート |
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 750 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
index 5d6b013a010f0c..4d7df2322c681e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-info-column
displayed_sidebar: docs
---
-**QR SET INFO COLUMN** ( *area* ; *colNum* ; *title* ; *object* ; *hide* ; *size* ; *repeatedValue* ; *displayFormat* )
+**QR SET INFO COLUMN** ( *area* : Integer ; *colNum* : Integer ; *title* : Text ; *object* : Field, Variable ; *hide* : Integer ; *size* : Integer ; *repeatedValue* : Integer ; *displayFormat* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
-| title | Text | → | カラムタイトル |
-| object | Field, Variable | → | カラムに割り当てられたオブジェクト |
-| hide | Integer | → | 0 = 表示, 1 = 非表示 |
-| size | Integer | → | カラムサイズ |
-| repeatedValue | Integer | → | 0 = 繰り返ししない, 1 = 繰り返す |
-| displayFormat | Text | → | データの表示フォーマット |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
+| title | Text | → | カラムタイトル |
+| object | Field, Variable | → | カラムに割り当てられたオブジェクト |
+| hide | Integer | → | 0 = 表示, 1 = 非表示 |
+| size | Integer | → | カラムサイズ |
+| repeatedValue | Integer | → | 0 = 繰り返ししない, 1 = 繰り返す |
+| displayFormat | Text | → | データの表示フォーマット |
@@ -113,7 +113,7 @@ QR SET INFO COLUMNコマンドを使用しても、すべてのセルに対応
| | |
| --- | --- |
| コマンド番号 | 765 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
index d94a7f52977195..c56f03d3419b95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-info-row
displayed_sidebar: docs
---
-**QR SET INFO ROW** ( *area* ; *row* ; *hide* )
+**QR SET INFO ROW** ( *area* : Integer ; *row* : Integer ; *hide* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリアの参照 |
-| row | Integer | → | 行指定 |
-| hide | Integer | → | 0 = 表示, 1 = 非表示 |
+| area | Integer | → | エリアの参照 |
+| row | Integer | → | 行指定 |
+| hide | Integer | → | 0 = 表示, 1 = 非表示 |
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
index 2813dce8cda702..e6a5eedcf57c00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-kind
displayed_sidebar: docs
---
-**QR SET REPORT KIND** ( *area* ; *type* )
+**QR SET REPORT KIND** ( *area* : Integer ; *type* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| type | Integer | → | レポートタイプ |
+| area | Integer | → | エリア参照 |
+| type | Integer | → | レポートタイプ |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 738 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
index 7393497abf83b2..08d9fc2d051986 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-table
displayed_sidebar: docs
---
-**QR SET REPORT TABLE** ( *area* ; *aTable* )
+**QR SET REPORT TABLE** ( *area* : Integer ; *aTable* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| aTable | Integer | → | テーブル番号 |
+| area | Integer | → | エリア参照 |
+| aTable | Integer | → | テーブル番号 |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 757 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
index 2e243ed62d2bac..9de8089631712a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-selection
displayed_sidebar: docs
---
-**QR SET SELECTION** ( *area* ; *left* ; *top* {; *right* {; *bottom*}} )
+**QR SET SELECTION** ( *area* : Integer ; *left* : Integer ; *top* : Integer {; *right* : Integer {; *bottom* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| left | Integer | → | 左境界 |
-| top | Integer | → | 上境界 |
-| right | Integer | → | 右境界 |
-| bottom | Integer | → | 下境界 |
+| area | Integer | → | エリア参照 |
+| left | Integer | → | 左境界 |
+| top | Integer | → | 上境界 |
+| right | Integer | → | 右境界 |
+| bottom | Integer | → | 下境界 |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 794 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
index 5afddcdab084ae..1832c8e69aed11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-sorts
displayed_sidebar: docs
---
-**QR SET SORTS** ( *area* ; *aColumns* {; *aOrders*} )
+**QR SET SORTS** ( *area* : Integer ; *aColumns* : Real array {; *aOrders* : Real array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| aColumns | Real array | → | カラム |
-| aOrders | Real array | → | ソート方向 |
+| area | Integer | → | エリア参照 |
+| aColumns | Real array | → | カラム |
+| aOrders | Real array | → | ソート方向 |
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 752 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
index 05de61a0254ced..791e6b9653443a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-text-property
displayed_sidebar: docs
---
-**QR SET TEXT PROPERTY** ( *area* ; *colNum* ; *rowNum* ; *property* ; *value* )
+**QR SET TEXT PROPERTY** ( *area* : Integer ; *colNum* : Integer ; *rowNum* : Integer ; *property* : Integer ; *value* : Integer, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
-| rowNum | Integer | → | 行番号 |
-| property | Integer | → | プロパティ番号 |
-| value | Integer, Text | → | 選択したプロパティの値 |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
+| rowNum | Integer | → | 行番号 |
+| property | Integer | → | プロパティ番号 |
+| value | Integer, Text | → | 選択したプロパティの値 |
@@ -89,7 +89,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 759 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
index 4b1d2d1e4bf298..be7e8930cd2d0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
@@ -5,14 +5,14 @@ slug: /commands/qr-set-totals-data
displayed_sidebar: docs
---
-**QR SET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *operator* )
**QR SET TOTALS DATA** ( *area* ; *colNum* ; *breakNum* ; *value* )
+**QR SET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *operator* : 倍長整数, 文字 )
**QR SET TOTALS DATA** ( *area* : Integer ; *colNum* : Integer ; *breakNum* : Integer ; *value* : 倍長整数, 文字 )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| colNum | Integer | → | カラム番号 |
-| breakNum | Integer | → | ブレーク番号 |
-| operator | value | 倍長整数, 文字 | → | セルの演算子の値またはセルの内容 |
+| area | Integer | → | エリア参照 |
+| colNum | Integer | → | カラム番号 |
+| breakNum | Integer | → | ブレーク番号 |
+| operator | value | 倍長整数, 文字 | → | セルの演算子の値またはセルの内容 |
@@ -103,7 +103,7 @@ QR SET TOTALS DATA コマンドを使用し、特定のセルの詳細を設定
| | |
| --- | --- |
| コマンド番号 | 767 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
index 8c3133ea690fce..a8f676c0ff0e5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-totals-spacing
displayed_sidebar: docs
---
-**QR SET TOTALS SPACING** ( *area* ; *subtotal* ; *value* )
+**QR SET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *value* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| area | Integer | → | エリア参照 |
-| subtotal | Integer | → | 小計番号 |
-| value | Integer | → | 0=スペースなし, 32000=改ページ挿入, >0=ブレークレベルの上に追加するスペース, <0=比率指定 |
+| area | Integer | → | エリア参照 |
+| subtotal | Integer | → | 小計番号 |
+| value | Integer | → | 0=スペースなし, 32000=改ページ挿入, >0=ブレークレベルの上に追加するスペース, <0=比率指定 |
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
index 9d15132a751165..7b7c8e78aa91bf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-by-attribute
displayed_sidebar: docs
---
-**QUERY BY ATTRIBUTE** ( {*aTable*}{;}{*conjOp* ;} *objectField* ; *attributePath* ; *queryOp* ; *value* {; *} )
+**QUERY BY ATTRIBUTE** ( {*aTable* : Table}{;}{*conjOp* : Operator ;} *objectField* : Field ; *attributePath* : Text ; *queryOp* : Text, Operator ; *value* : Text, Real, Date, Time {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションまたはレコードを返すテーブル 省略時:デフォルトテーブル |
-| conjOp | * | → | 複数のクエリ(あれば)を連結する際に使用する結合演算子 |
-| objectField | Field | → | 属性をクエリするオブジェクトフィールド |
-| attributePath | Text | → | 属性の名前またはパス |
-| queryOp | Text, * | → | クエリ演算子(比較演算子) |
-| value | Text, Number, Date, Time | → | 比較する値 |
-| * | 演算子 | → | クエリ継続フラグ |
+| aTable | Table | → | セレクションまたはレコードを返すテーブル 省略時:デフォルトテーブル |
+| conjOp | Operator | → | 複数のクエリ(あれば)を連結する際に使用する結合演算子 |
+| objectField | Field | → | 属性をクエリするオブジェクトフィールド |
+| attributePath | Text | → | 属性の名前またはパス |
+| queryOp | Text, Operator | → | クエリ演算子(比較演算子) |
+| value | Text, Real, Date, Time | → | 比較する値 |
+| * | 演算子 | → | クエリ継続フラグ |
@@ -414,7 +414,7 @@ GMT設定を使用したくない場合、これらの設定を以下の様に
| | |
| --- | --- |
| コマンド番号 | 1331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
index ecf84a677ac322..c453fa78c33664 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-example
displayed_sidebar: docs
---
-**QUERY BY EXAMPLE** ( {*aTable*}{;}{*} )
+**QUERY BY EXAMPLE** ( {*aTable* : Table}{;}{*} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードのセレクションを返すテーブル, または 省略した場合、デフォルトテーブル |
-| * | 演算子 | → | 指定した場合、スクロールバーの非表示 |
+| aTable | Table | → | レコードのセレクションを返すテーブル, または 省略した場合、デフォルトテーブル |
+| * | 演算子 | → | 指定した場合、スクロールバーの非表示 |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 292 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
index 8ae66ab94ab6e0..e130515592c300 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-formula
displayed_sidebar: docs
---
-**QUERY BY FORMULA** ( *aTable* {; *queryFormula*} )
+**QUERY BY FORMULA** ( *aTable* : Table {; *queryFormula* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードセレクションを求めるテーブル |
-| queryFormula | Boolean | → | 検索フォーミュラ |
+| aTable | Table | → | レコードセレクションを求めるテーブル |
+| queryFormula | Boolean | → | 検索フォーミュラ |
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 48 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
index e874e539ca77ed..4296aab6928600 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-sql
displayed_sidebar: docs
---
-**QUERY BY SQL** ( {*aTable* ;} *sqlFormula* )
+**QUERY BY SQL** ( {*aTable* : Table ;} *sqlFormula* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードセレクションを返すテーブル、または 省略された場合デフォルトテーブル |
-| sqlFormula | Text | → | SELECTクエリのWHERE節を表す 有効なSQL検索フォーミュラ |
+| aTable | Table | → | レコードセレクションを返すテーブル、または 省略された場合デフォルトテーブル |
+| sqlFormula | Text | → | SELECTクエリのWHERE節を表す 有効なSQL検索フォーミュラ |
@@ -162,7 +162,7 @@ QUERY BY SQL コマンドを使用する場合:
| | |
| --- | --- |
| コマンド番号 | 942 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
index 7c42e726b685ad..a31fc7cce91f3d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-selection-by-attribute
displayed_sidebar: docs
---
-**QUERY SELECTION BY ATTRIBUTE** ( {*aTable*}{;}{*conjOp* ;} *objectField* ; *attributePath* ; *queryOp* ; *value* {; *} )
+**QUERY SELECTION BY ATTRIBUTE** ( {*aTable* : Table}{;}{*conjOp* : Operator ;} *objectField* : Field ; *attributePath* : Text ; *queryOp* : Text, Operator ; *value* : Text, Real, Date, Time {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションまたはレコードを返すテーブル 省略時:デフォルトテーブル |
-| conjOp | * | → | 複数のクエリ(あれば)を連結する際に使用する結合演算子 |
-| objectField | Field | → | 属性をクエリするオブジェクトフィールド |
-| attributePath | Text | → | 属性の名前またはパス |
-| queryOp | *, Text | → | クエリ演算子(比較演算子) |
-| value | Text, Number, Date, Time | → | 比較する値 |
-| * | 演算子 | → | クエリ継続フラグ |
+| aTable | Table | → | セレクションまたはレコードを返すテーブル 省略時:デフォルトテーブル |
+| conjOp | Operator | → | 複数のクエリ(あれば)を連結する際に使用する結合演算子 |
+| objectField | Field | → | 属性をクエリするオブジェクトフィールド |
+| attributePath | Text | → | 属性の名前またはパス |
+| queryOp | Text, Operator | → | クエリ演算子(比較演算子) |
+| value | Text, Real, Date, Time | → | 比較する値 |
+| * | 演算子 | → | クエリ継続フラグ |
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1424 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
index 0f8337a44050c6..83a13365219022 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-by-formula
displayed_sidebar: docs
---
-**QUERY SELECTION BY FORMULA** ( *aTable* {; *queryFormula*} )
+**QUERY SELECTION BY FORMULA** ( *aTable* : Table {; *queryFormula* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードセレクションを求めるテーブル |
-| queryFormula | Boolean | → | クエリフォーミュラ |
+| aTable | Table | → | レコードセレクションを求めるテーブル |
+| queryFormula | Boolean | → | クエリフォーミュラ |
@@ -36,7 +36,7 @@ QUERY SELECTION BY FORMULAは[QUERY BY FORMULA](query-by-formula.md "QUERY BY FO
| | |
| --- | --- |
| コマンド番号 | 207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
index 9c53d8f59d3c6e..f105866c3a55c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-with-array
displayed_sidebar: docs
---
-**QUERY SELECTION WITH ARRAY** ( *targetField* ; *array* )
+**QUERY SELECTION WITH ARRAY** ( *targetField* : Field ; *array* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetField | Field | → | 値の比較に使用するフィールド |
-| array | Array | → | 検索する値の配列 |
+| targetField | Field | → | 値の比較に使用するフィールド |
+| array | Array | → | 検索する値の配列 |
@@ -34,7 +34,7 @@ QUERY SELECTION WITH ARRAYは[QUERY WITH ARRAY](query-with-array.md "QUERY WITH
| | |
| --- | --- |
| コマンド番号 | 1050 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
index d985ef4917150d..d2837a2d744e0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
@@ -5,13 +5,13 @@ slug: /commands/query-selection
displayed_sidebar: docs
---
-**QUERY SELECTION** ( {*aTable* }{;}{ *queryArgument* {; *}} )
+**QUERY SELECTION** ( {*aTable* : Table }{;}{ *queryArgument* : Expression {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードセレクションを求めるテーブル, または 省略した場合、デフォルトテーブル |
-| queryArgument | Expression | → | 検索条件 |
-| * | 演算子 | → | 検索継続フラグ |
+| aTable | Table | → | レコードセレクションを求めるテーブル, または 省略した場合、デフォルトテーブル |
+| queryArgument | Expression | → | 検索条件 |
+| * | 演算子 | → | 検索継続フラグ |
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 341 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
index efb206ca2072f5..7f84b0a39c159f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-with-array
displayed_sidebar: docs
---
-**QUERY WITH ARRAY** ( *targetField* ; *array* )
+**QUERY WITH ARRAY** ( *targetField* : Field ; *array* : Array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| targetField | Field | → | 値との比較に使用するフィールド |
-| array | Array | → | 検索する値の配列 |
+| targetField | Field | → | 値との比較に使用するフィールド |
+| array | Array | → | 検索する値の配列 |
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 644 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md
index 0e5bf21d11836c..1f35ef73a5e1eb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/query.md
@@ -5,13 +5,13 @@ slug: /commands/query
displayed_sidebar: docs
---
-**QUERY** ( {*aTable* }{;}{ *queryArgument* {; *}} )
+**QUERY** ( {*aTable* : Table }{;}{ *queryArgument* : Expression {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードのセレクションを求めるテーブル, または 省略した場合、デフォルトテーブル |
-| queryArgument | Expression | → | 検索条件 |
-| * | 演算子 | → | 検索継続フラグ |
+| aTable | Table | → | レコードのセレクションを求めるテーブル, または 省略した場合、デフォルトテーブル |
+| queryArgument | Expression | → | 検索条件 |
+| * | 演算子 | → | 検索継続フラグ |
@@ -316,7 +316,7 @@ N対1でリレートされた3つのテーブルがあります: \[City\] -> \[D
| | |
| --- | --- |
| コマンド番号 | 277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
index 5ca439614fb8e1..25ba506cfb259b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
@@ -5,11 +5,11 @@ slug: /commands/quit-4d
displayed_sidebar: docs
---
-**QUIT 4D** {( *time* )}
+**QUIT 4D** ({ *time* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| time | Integer | → | サーバ終了までの時間 (秒) |
+| time | Integer | → | サーバ終了までの時間 (秒) |
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 291 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md
index b93a1d1e4635a0..823a2c2a76824b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/random.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 100 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
index 4d071900aa3e0a..e28a2a46451012 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
@@ -5,11 +5,11 @@ slug: /commands/read-only-state
displayed_sidebar: docs
---
-**Read only state** {( *aTable* )} : Boolean
+**Read only state** ( *aTable* : Table ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | 読み込みのみ状態を調べるテーブル, または 省略時はデフォルトテーブル |
+| aTable | Table | → | 読み込みのみ状態を調べるテーブル, または 省略時はデフォルトテーブル |
| 戻り値 | Boolean | ← | TRUE: テーブルへのアクセスは読み込みのみ FALSE: テーブルへのアクセスは読み書き可 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
index d7368d5b0a6660..c095d2ca6e994a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
@@ -5,11 +5,11 @@ slug: /commands/read-only
displayed_sidebar: docs
---
-**READ ONLY** {( *aTable* )}
**READ ONLY** {( * )}
+**READ ONLY** ({ *aTable* : テーブル, 演算子 })
**READ ONLY** ({ * })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | * | テーブル, 演算子 | → | 読み込みのみにするテーブル, または *: すべてのテーブル, または 省略時: デフォルトテーブル |
+| aTable | * | テーブル, 演算子 | → | 読み込みのみにするテーブル, または *: すべてのテーブル, または 省略時: デフォルトテーブル |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 145 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
index 209298c5269f81..4aa7d42422c2f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/read-picture-file
displayed_sidebar: docs
---
-**READ PICTURE FILE** ( *fileName* ; *picture* {; *} )
+**READ PICTURE FILE** ( *fileName* : Text ; *picture* : Picture {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | 読み込むファイルのフルパス名, または空の文字列 |
+| fileName | Text | → | 読み込むファイルのフルパス名, または空の文字列 |
| picture | Picture | ← | ピクチャを受け取るフィールドまたは変数 |
-| * | 演算子 | → | 指定時 = すべてのファイルタイプを受け入れる |
+| * | 演算子 | → | 指定時 = すべてのファイルタイプを受け入れる |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 678 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
index 71f1a37cbd548d..21dac8d183c5d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
@@ -5,11 +5,11 @@ slug: /commands/read-write
displayed_sidebar: docs
---
-**READ WRITE** {( *aTable* )}
**READ WRITE** {( * )}
+**READ WRITE** ({ *aTable* : テーブル, 演算子 })
**READ WRITE** ({ * })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | * | テーブル, 演算子 | → | 読み書き可にするテーブル, または *: すべてのテーブル, または 省略時: デフォルトテーブル |
+| aTable | * | テーブル, 演算子 | → | 読み書き可にするテーブル, または *: すべてのテーブル, または 省略時: デフォルトテーブル |
@@ -36,6 +36,6 @@ READ WRITEコマンドは、レコードを修正しその結果を保存しな
| | |
| --- | --- |
| コマンド番号 | 146 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
index 660a939f4faad6..13653ad8096c6d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/real-to-blob
displayed_sidebar: docs
---
-**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; offset } )
**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; *} )
+**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; offset } )
**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| real | Real | → | BLOBに書き込む実数値 |
-| Blob | Blob | → | 実数値を受け取るBLOB |
-| realFormat | Integer | → | 0 Native real format 1 Extended real format 2 Macintosh Double real format 3 Windows Double real format |
+| real | Real | → | BLOBに書き込む実数値 |
+| Blob | Blob | → | 実数値を受け取るBLOB |
+| realFormat | Integer | → | 0 Native real format 1 Extended real format 2 Macintosh Double real format 3 Windows Double real format |
| offset | * | 変数, 演算子 | ↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
-| ||| *でない場合、書き込み後の新しいオフセット |
+| | | | *でない場合、書き込み後の新しいオフセット |
@@ -140,6 +140,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 552 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
index d9661f3444fec5..772cf669ac167f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
@@ -5,7 +5,7 @@ slug: /commands/receive-buffer
displayed_sidebar: docs
---
-**RECEIVE BUFFER** ( *receiveVar* )
+**RECEIVE BUFFER** ( *receiveVar* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -69,7 +69,7 @@ Mac OS Xのシリアルポート バッファーサイズは、理論的には
| | |
| --- | --- |
| コマンド番号 | 172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
index 45383934a71ecf..dcda7902a2f101 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
@@ -5,13 +5,13 @@ slug: /commands/receive-packet
displayed_sidebar: docs
---
-**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *stopChar* )
**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *numBytes* )
+**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* : Text, Blob ; *stopChar* : 文字, 倍長整数 )
**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* : Text, Blob ; *numBytes* : 文字, 倍長整数 )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号, または カレントチャンネル (シリアルポートまたはドキュメント) |
+| Time | Time | → | ドキュメント参照番号, または カレントチャンネル (シリアルポートまたはドキュメント) |
| receiveVar | Text, Blob | ← | データを受け取る変数 |
-| stopChar | numBytes | 文字, 倍長整数 | → | 受信を停止する文字, または受信するバイト数 |
+| stopChar | numBytes | 文字, 倍長整数 | → | 受信を停止する文字, または受信するバイト数 |
@@ -119,7 +119,7 @@ RECEIVE PACKET呼び出し後、エラーなしでパケットを受信すれば
| | |
| --- | --- |
| コマンド番号 | 104 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
index d9d7f8e4162d3b..bffdfafb317705 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
@@ -5,11 +5,11 @@ slug: /commands/receive-record
displayed_sidebar: docs
---
-**RECEIVE RECORD** {( *aTable* )}
+**RECEIVE RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードを受信するテーブル, または 省略した場合デフォルトテーブル |
+| aTable | Table | → | レコードを受信するテーブル, または 省略した場合デフォルトテーブル |
@@ -156,7 +156,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 79 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
index 40e2f48b688699..ce5758e9c05a45 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
@@ -5,7 +5,7 @@ slug: /commands/receive-variable
displayed_sidebar: docs
---
-**RECEIVE VARIABLE** ( *variable* )
+**RECEIVE VARIABLE** ( *variable* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 81 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
index 9bd15e95dbd3bb..37837feefe24ab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
@@ -5,11 +5,11 @@ slug: /commands/record-number
displayed_sidebar: docs
---
-**Record number** {( *aTable* )} : Integer
+**Record number** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードの番号を返すテーブル 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードの番号を返すテーブル 省略時、デフォルトテーブル |
| 戻り値 | Integer | ← | カレントレコード番号 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 243 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
index 1d8f9f98882279..f067a5d37f0c36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-selection
displayed_sidebar: docs
---
-**Records in selection** {( *aTable* )} : Integer
+**Records in selection** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントセレクション数を返すテーブル 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントセレクション数を返すテーブル 省略時、デフォルトテーブル |
| 戻り値 | Integer | ← | カレントセレクションのレコード数 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 76 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
index b7c8b0dd4e3ac1..e3b6288445fce4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-set
displayed_sidebar: docs
---
-**Records in set** ( *set* ) : Integer
+**Records in set** ( *set* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | テストするセットの名前 |
+| set | Text | → | テストするセットの名前 |
| 戻り値 | Integer | ← | セットに含まれるレコード数 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 195 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
index c9fae875e3bde1..1b4965e9436f6f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-table
displayed_sidebar: docs
---
-**Records in table** {( *aTable* )} : Integer
+**Records in table** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコード数を返すテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコード数を返すテーブル, または 省略時、デフォルトテーブル |
| 戻り値 | Integer | ← | テーブル中の総レコード数 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 83 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
index d492d56f40287b..de4a34b6641bb5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
@@ -5,11 +5,11 @@ slug: /commands/redraw-window
displayed_sidebar: docs
---
-**REDRAW WINDOW** {( *window* )}
+**REDRAW WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号, または省略時 カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号, または省略時 カレントプロセスの最前面ウィンドウ |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 456 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
index aa41a944b9aa82..e8e8c0974d2d85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
@@ -5,11 +5,11 @@ slug: /commands/redraw
displayed_sidebar: docs
---
-**REDRAW** ( *object* )
+**REDRAW** ( *object* : any )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | any | → | サブフォームを再描画するテーブル、またはエリアを再描画するフィールド、またはエリアを再描画する変数、または更新されるべきリストボックス |
+| object | any | → | サブフォームを再描画するテーブル、またはエリアを再描画するフィールド、またはエリアを再描画する変数、または更新されるべきリストボックス |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
index 2e9e13d43f088c..f9037c4d59c454 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
@@ -5,11 +5,11 @@ slug: /commands/reduce-restore-window
displayed_sidebar: docs
---
-**REDUCE RESTORE WINDOW** ( *window* )
+**REDUCE RESTORE WINDOW** ( *window* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
+| window | Integer | → | ウィンドウ参照番号 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
index 4bd9c6db1d290a..1870c729dd87e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
@@ -5,12 +5,12 @@ slug: /commands/reduce-selection
displayed_sidebar: docs
---
-**REDUCE SELECTION** ( {*aTable* ;} *number* )
+**REDUCE SELECTION** ( {*aTable* : Table ;} *number* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションの数を減らすテーブル, または 省略時デフォルトテーブル |
-| number | Integer | → | 選択するレコード数 |
+| aTable | Table | → | セレクションの数を減らすテーブル, または 省略時デフォルトテーブル |
+| number | Integer | → | 選択するレコード数 |
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 351 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
index 5c41ebe938b4a2..4f74e46a38bcfb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1336 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
index dd092552c4b0cb..32e3e2c062e073 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
@@ -5,11 +5,11 @@ slug: /commands/regenerate-missing-table
displayed_sidebar: docs
---
-**REGENERATE MISSING TABLE** ( *tableName* )
+**REGENERATE MISSING TABLE** ( *tableName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableName | Text | → | 再生成する、失われたテーブルの名称 |
+| tableName | Text | → | 再生成する、失われたテーブルの名称 |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1126 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
index 674b8a5222d151..433041116dbd31 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
@@ -15,11 +15,11 @@ displayed_sidebar: docs
-**REGISTER CLIENT** ( *clientName* )
+**REGISTER CLIENT** ( *clientName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| clientName | Text | → | 4Dクライアントセッション名 |
+| clientName | Text | → | 4Dクライアントセッション名 |
@@ -138,7 +138,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 648 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
index 85ab02fb3c4e06..2cf7b7eb55108b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/register-data-key
displayed_sidebar: docs
---
-**Register data key** ( *curPassPhrase* ) : Boolean
**Register data key** ( *curDataKey* ) : Boolean
+**Register data key** ( *curPassPhrase* : テキスト, オブジェクト ) : Boolean
**Register data key** ( *curDataKey* : テキスト, オブジェクト ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| curPassPhrase | curDataKey | テキスト, オブジェクト | → | カレントのパスフレーズ(テキスト)またはカレントのデータ暗号化キー(オブジェクト) |
+| curPassPhrase | curDataKey | テキスト, オブジェクト | → | カレントのパスフレーズ(テキスト)またはカレントのデータ暗号化キー(オブジェクト) |
| 戻り値 | Boolean | ← | 暗号化キーが正常に4D キーチェーンに読み込まれた場合にはTrue、キーがすでに4D キーチェーンに入っていた場合にはFlaseを返す |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1638 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
index 62b51fda4fd4d9..1cf19686a6b4cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
@@ -5,11 +5,11 @@ slug: /commands/reject-new-remote-connections
displayed_sidebar: docs
---
-**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* )
+**REJECT NEW REMOTE CONNECTIONS** ( *rejectStatus* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| rejectStatus | Boolean | → | 接続を拒否したい場合にはTrue、そうでない場合にはFalse |
+| rejectStatus | Boolean | → | 接続を拒否したい場合にはTrue、そうでない場合にはFalse |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1635 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
index 977699dfdf623f..eca05ea22cc693 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
@@ -5,11 +5,11 @@ slug: /commands/reject
displayed_sidebar: docs
---
-**REJECT** {( *aField* )}
+**REJECT** ({ *aField* : Field })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | 入力を拒否するフィールド |
+| aField | Field | → | 入力を拒否するフィールド |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 38 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
index e553ab939ad457..37c75d1dd71d1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
@@ -5,11 +5,11 @@ slug: /commands/relate-many-selection
displayed_sidebar: docs
---
-**RELATE MANY SELECTION** ( *aField* )
+**RELATE MANY SELECTION** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | nテーブルのフィールド (リレーションの開始元) |
+| aField | Field | → | nテーブルのフィールド (リレーションの開始元) |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 340 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
index d7ec2a447d5c49..051ba9118b7ddb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
@@ -5,11 +5,11 @@ slug: /commands/relate-many
displayed_sidebar: docs
---
-**RELATE MANY** ( *oneTable* )
**RELATE MANY** ( *Field* )
+**RELATE MANY** ( *oneTable* : テーブル, フィールド )
**RELATE MANY** ( *Field* : テーブル, フィールド )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| oneTable | Field | テーブル, フィールド | → | すべての1対nリレーションを実行するテーブル または1フィールド |
+| oneTable | Field | テーブル, フィールド | → | すべての1対nリレーションを実行するテーブル または1フィールド |
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 262 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
index 05f308457d447c..50e0177ef85aba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one-selection
displayed_sidebar: docs
---
-**RELATE ONE SELECTION** ( *manyTable* ; *oneTable* )
+**RELATE ONE SELECTION** ( *manyTable* : Table ; *oneTable* : Table )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| manyTable | Table | → | nテーブル (リレーションの開始元) |
-| oneTable | Table | → | 1テーブル (リレーションの参照先) |
+| manyTable | Table | → | nテーブル (リレーションの開始元) |
+| oneTable | Table | → | 1テーブル (リレーションの参照先) |
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 349 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
index d4710689b8fc35..bba747bad2fc37 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one
displayed_sidebar: docs
---
-**RELATE ONE** ( *manyTable* {; *choiceField*} )
**RELATE ONE** ( *field* {; *choiceField*} )
+**RELATE ONE** ( *manyTable* : テーブル, フィールド {; *choiceField* : Field} )
**RELATE ONE** ( *field* : テーブル, フィールド {; *choiceField* : Field} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| manyTable | Field | テーブル, フィールド | → | すべての自動リレーションを実行するテーブル, または1テーブルへのマニュアルリレーションが引かれたフィールド |
-| choiceField | Field | → | 1テーブルの選択フィールド |
+| manyTable | Field | テーブル, フィールド | → | すべての自動リレーションを実行するテーブル, または1テーブルへのマニュアルリレーションが引かれたフィールド |
+| choiceField | Field | → | 1テーブルの選択フィールド |
@@ -94,7 +94,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 42 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
index 6853c047494b97..995929ac96486a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
@@ -5,11 +5,11 @@ slug: /commands/release-menu
displayed_sidebar: docs
---
-**RELEASE MENU** ( *menu* )
+**RELEASE MENU** ( *menu* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Text | → | メニュー参照 |
+| menu | Text | → | メニュー参照 |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 978 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
index c0b95065fb380e..ade4ea3dd089fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
@@ -5,11 +5,11 @@ slug: /commands/reload-external-data
displayed_sidebar: docs
---
-**RELOAD EXTERNAL DATA** ( *aField* )
+**RELOAD EXTERNAL DATA** ( *aField* : Text, Blob, Picture, Object )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Text, Blob, Picture, Object | → | 外部ストレージからリロードを行うフィールド |
+| aField | Text, Blob, Picture, Object | → | 外部ストレージからリロードを行うフィールド |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1135 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
index f300ea80ecc093..2d7e3db5bcbb3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1739 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
index 9bcc6615607a80..d96b36107220bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/remove-from-set
displayed_sidebar: docs
---
-**REMOVE FROM SET** ( {*aTable* ;} *set* )
+**REMOVE FROM SET** ( {*aTable* : Table ;} *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードのテーブル、または 省略時、デフォルトテーブル |
-| set | Text | → | カレントレコードを取り除くセットの名前 |
+| aTable | Table | → | カレントレコードのテーブル、または 省略時、デフォルトテーブル |
+| set | Text | → | カレントレコードを取り除くセットの名前 |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 561 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
index ca125a44e73063..612e35f935ef18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/remove-picture-from-library
displayed_sidebar: docs
---
-**REMOVE PICTURE FROM LIBRARY** ( *picRef* )
**REMOVE PICTURE FROM LIBRARY** ( *picName* )
+**REMOVE PICTURE FROM LIBRARY** ( *picRef* : 倍長整数, 文字 )
**REMOVE PICTURE FROM LIBRARY** ( *picName* : 倍長整数, 文字 )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picRef | picName | 倍長整数, 文字 | → | ピクチャライブラリ画像の参照番号 または ピクチャライブラリ画像の名前 |
+| picRef | picName | 倍長整数, 文字 | → | ピクチャライブラリ画像の参照番号 または ピクチャライブラリ画像の名前 |
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 567 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
index e1d884956cddf0..86cf2bc9342ac0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
@@ -5,15 +5,15 @@ slug: /commands/replace-string
displayed_sidebar: docs
---
-**Replace string** ( *source* ; *oldString* ; *newString* {; *howMany*}{; *} ) : Text
+**Replace string** ( *source* : Text ; *oldString* : Text ; *newString* : Text {; *howMany* : Integer}{; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Text | → | 元の文字列 |
-| oldString | Text | → | 置き換対象の文字列 |
-| newString | Text | → | 置き換え後の文字列 (空文字の場合オカレンスは削除) |
-| howMany | Integer | → | 置き換え 省略時、すべてのオカレンスを置き換え |
-| * | 演算子 | → | 渡されると、文字コードに基づいて評価 |
+| source | Text | → | 元の文字列 |
+| oldString | Text | → | 置き換対象の文字列 |
+| newString | Text | → | 置き換え後の文字列 (空文字の場合オカレンスは削除) |
+| howMany | Integer | → | 置き換え 省略時、すべてのオカレンスを置き換え |
+| * | 演算子 | → | 渡されると、文字コードに基づいて評価 |
| 戻り値 | Text | ← | 結果の文字列 |
@@ -78,6 +78,6 @@ Replace stringの使用例を次に示します。結果を変数*vtResult*に
| | |
| --- | --- |
| コマンド番号 | 233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md
index c94a36e3cd375e..e9b51d3c350e74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/request.md
@@ -5,14 +5,14 @@ slug: /commands/request
displayed_sidebar: docs
---
-**Request** ( *message* {; *defaultResponse* {; *OKButtonTitle* {; *CancelButtonTitle*}}} ) : Text
+**Request** ( *message* : Text {; *defaultResponse* : Text {; *OKButtonTitle* : Text {; *CancelButtonTitle* : Text}}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | リクエストダイアログボックスに表示するメッセージ |
-| defaultResponse | Text | → | テキスト入力エリアにデフォルトで表示するデータ |
-| OKButtonTitle | Text | → | OKボタンのタイトル |
-| CancelButtonTitle | Text | → | キャンセルボタンのタイトル |
+| message | Text | → | リクエストダイアログボックスに表示するメッセージ |
+| defaultResponse | Text | → | テキスト入力エリアにデフォルトで表示するデータ |
+| OKButtonTitle | Text | → | OKボタンのタイトル |
+| CancelButtonTitle | Text | → | キャンセルボタンのタイトル |
| 戻り値 | Text | ← | ユーザが入力した値 |
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 163 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
index d8317c8e007431..5787304f6d19d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
@@ -5,12 +5,12 @@ slug: /commands/resize-form-window
displayed_sidebar: docs
---
-**RESIZE FORM WINDOW** ( *width* ; *height* )
+**RESIZE FORM WINDOW** ( *width* : Integer ; *height* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| width | Integer | → | 現在のフォームウィンドウ幅に追加あるいは取り除く ピクセル数 |
-| height | Integer | → | 現在のフォームウィンドウ高に追加あるいは取り除く ピクセル数 |
+| width | Integer | → | 現在のフォームウィンドウ幅に追加あるいは取り除く ピクセル数 |
+| height | Integer | → | 現在のフォームウィンドウ高に追加あるいは取り除く ピクセル数 |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 890 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
index 671bc4f16b4afc..0105af2c9ccc8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-alias
displayed_sidebar: docs
---
-**RESOLVE ALIAS** ( *aliasPath* ; *targetPath* )
+**RESOLVE ALIAS** ( *aliasPath* : Text ; *targetPath* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aliasPath | Text | → | エイリアス/ショートカットのアクセスパスまたは名前 |
+| aliasPath | Text | → | エイリアス/ショートカットのアクセスパスまたは名前 |
| targetPath | Text | ← | エイリアス/ショートカットターゲットのアクセスパスまたは名前 |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 695 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
index 13e2d6540c7ba6..637336b7c06706 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-pointer
displayed_sidebar: docs
---
-**RESOLVE POINTER** ( *pointer* ; *varName* ; *tableNum* ; *fieldNum* )
+**RESOLVE POINTER** ( *pointer* : Pointer ; *varName* : Text ; *tableNum* : Integer ; *fieldNum* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pointer | Pointer | → | 参照オブジェクトを取得するポインタ |
+| pointer | Pointer | → | 参照オブジェクトを取得するポインタ |
| varName | Text | ← | 参照された変数の名前または空の文字列 |
| tableNum | Integer | ← | 参照されたテーブルまたは配列要素の番号 または 0 あるいは -1 |
| fieldNum | Integer | ← | 参照されたフィールドの番号 または 0 あるいは -1 |
@@ -115,6 +115,6 @@ DRAG AND DROP PROPERTIES コマンドの例を参照.
| | |
| --- | --- |
| コマンド番号 | 394 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
index ff21959dfb80af..b4130d1640a1c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
@@ -5,14 +5,14 @@ slug: /commands/resource-list
displayed_sidebar: docs
---
-**RESOURCE LIST** ( *resType* ; *resIDs* ; *resNames* {; *resFile*} )
+**RESOURCE LIST** ( *resType* : Text ; *resIDs* : Integer array ; *resNames* : Text array {; *resFile* : Time} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resType | Text | → | 4文字のリソースタイプ |
+| resType | Text | → | 4文字のリソースタイプ |
| resIDs | Integer array | ← | リソースID番号 |
| resNames | Text array | ← | リソース名 |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
@@ -75,6 +75,6 @@ RESOURCE LISTを呼び出す前に配列を事前定義する場合は、*resIDs
| | |
| --- | --- |
| コマンド番号 | 500 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
index 4c920d33c65a58..c229a5d488ae6f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
@@ -5,12 +5,12 @@ slug: /commands/resource-type-list
displayed_sidebar: docs
---
-**RESOURCE TYPE LIST** ( *resTypes* {; *resFile*} )
+**RESOURCE TYPE LIST** ( *resTypes* : Text array {; *resFile* : Time} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| resTypes | Text array | ← | 利用可能なリストタイプのリスト |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれている全てのリソースファイル |
@@ -84,6 +84,6 @@ RESOURCE TYPE LISTを呼び出す前に、*resTypes*配列を文字列配列ま
| | |
| --- | --- |
| コマンド番号 | 499 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
index f0e577ff7dd9e2..bf523584bec24c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
@@ -5,12 +5,12 @@ slug: /commands/restart-4d
displayed_sidebar: docs
---
-**RESTART 4D** {( *time* {; *message*} )}
+**RESTART 4D** ({ *time* : Integer {; *message* : Text} })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| time | Integer | → | 4Dが再起動するまでの猶予時間(秒) |
-| message | Text | → | クライアントマシンに表示するテキスト |
+| time | Integer | → | 4Dが再起動するまでの猶予時間(秒) |
+| message | Text | → | クライアントマシンに表示するテキスト |
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1292 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
index 7712ce906be5b0..4194a5b24f48f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
@@ -5,11 +5,11 @@ slug: /commands/restore-info
displayed_sidebar: docs
---
-**RESTORE INFO** ( *selector* ; *info1* ; *info2* )
+**RESTORE INFO** ( *selector* : Integer ; *info1* : Integer, Date ; *info2* : Text, Time )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | 取得する情報のタイプ |
+| selector | Integer | → | 取得する情報のタイプ |
| info1 | Integer, Date | ← | セレクタの値1 |
| info2 | Text, Time | ← | セレクタの値2 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 889 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
index 006efe4c519f84..7aff45285b68e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
@@ -5,12 +5,12 @@ slug: /commands/restore
displayed_sidebar: docs
---
-**RESTORE** {( *archivePath* {; *destFolderPath*} )}
+**RESTORE** ({ *archivePath* : Text {; *destFolderPath* : Text} })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| archivePath | Text | → | Pathname of archive to restore |
-| destFolderPath | Text | → | Pathname of destination folder |
+| archivePath | Text | → | Pathname of archive to restore |
+| destFolderPath | Text | → | Pathname of destination folder |
@@ -39,7 +39,7 @@ RESTORE コマンドは*OK*および*Document*変数を更新します。復元
| | |
| --- | --- |
| コマンド番号 | 918 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
index 42fa77c1b1d8f1..71abcd05e60982 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
@@ -5,12 +5,12 @@ slug: /commands/resume-indexes
displayed_sidebar: docs
---
-**RESUME INDEXES** ( *aTable* {; *} )
+**RESUME INDEXES** ( *aTable* : Table {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | インデックスを再開するテーブル |
-| * | 演算子 | → | 指定時 = 非同期インデックス |
+| aTable | Table | → | インデックスを再開するテーブル |
+| * | 演算子 | → | 指定時 = 非同期インデックス |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
index 903f4a2a800d3f..8053e84888ec64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
@@ -5,11 +5,11 @@ slug: /commands/resume-process
displayed_sidebar: docs
---
-**RESUME PROCESS** ( *process* )
+**RESUME PROCESS** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | プロセス番号 |
+| process | Integer | → | プロセス番号 |
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 320 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
index ffd99ad7e06bd8..1f665e36b94217 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1386 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
index a4f88386072f99..0424b6bdd64f39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 712 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md
index 351cfcfa2d7131..7b3dda0df8ef1b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/round.md
@@ -5,12 +5,12 @@ slug: /commands/round
displayed_sidebar: docs
---
-**Round** ( *round* ; *places* ) : Real
+**Round** ( *round* : Real ; *places* : Integer ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| round | Real | → | 丸める数値 |
-| places | Integer | → | 丸める小数部の位置 |
+| round | Real | → | 丸める数値 |
+| places | Integer | → | 丸める小数部の位置 |
| 戻り値 | Real | ← | placesで指定された場所で 丸められた数値 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 94 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
index 5c50c89ab66ee9..1da50232519828 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
@@ -5,12 +5,12 @@ slug: /commands/save-list
displayed_sidebar: docs
---
-**SAVE LIST** ( *list* ; *listName* )
+**SAVE LIST** ( *list* : Integer ; *listName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| listName | Text | → | デザインモードのリストエディタに 登録されるリスト名 |
+| list | Integer | → | リスト参照番号 |
+| listName | Text | → | デザインモードのリストエディタに 登録されるリスト名 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 384 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
index 6d5b306690691d..3422f17ca13a92 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
@@ -5,11 +5,11 @@ slug: /commands/save-record
displayed_sidebar: docs
---
-**SAVE RECORD** {( *aTable* )}
+**SAVE RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを保存するテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | カレントレコードを保存するテーブル, または 省略時、デフォルトテーブル |
@@ -56,6 +56,6 @@ SAVE RECORD が必要とされる場合を次に示します:
| | |
| --- | --- |
| コマンド番号 | 53 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
index 5f9595551cbd50..156694847cb706 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/save-related-one
displayed_sidebar: docs
---
-**SAVE RELATED ONE** ( *aField* )
+**SAVE RELATED ONE** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | nフィールド |
+| aField | Field | → | nフィールド |
@@ -31,6 +31,6 @@ SAVE RELATED ONEは、ロックされたレコードを保存しません。こ
| | |
| --- | --- |
| コマンド番号 | 43 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
index 7cfaaa068ff2a0..4edb8a45661616 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
@@ -5,12 +5,12 @@ slug: /commands/save-set
displayed_sidebar: docs
---
-**SAVE SET** ( *set* ; *document* )
+**SAVE SET** ( *set* : Text ; *document* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | 保存するセットの名前 |
-| document | Text | → | セットを保存するディスクファイルの名前 |
+| set | Text | → | 保存するセットの名前 |
+| document | Text | → | セットを保存するディスクファイルの名前 |
@@ -47,7 +47,7 @@ SAVE SETコマンドは、時間のかかる検索の結果をディスクに保
| | |
| --- | --- |
| コマンド番号 | 184 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
index a9ee07c07990e8..9a67b94b5d82f2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
@@ -5,12 +5,12 @@ slug: /commands/save-variables
displayed_sidebar: docs
---
-**SAVE VARIABLES** ( *document* ; *variable* {; *variable2* ; ... ; *variableN*} )
+**SAVE VARIABLES** ( *document* : Text ; *variable* : Variable {; *...variable* : Variable} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | 変数を保存するドキュメントファイル |
-| variable | Variable | → | 保存する変数 |
+| document | Text | → | 変数を保存するドキュメントファイル |
+| variable | Variable | → | 保存する変数 |
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 75 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
index 29ea30a9e2b4d4..02702e8fe3842e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-processing-instruction
displayed_sidebar: docs
---
-**SAX ADD PROCESSING INSTRUCTION** ( *document* ; *statement* )
+**SAX ADD PROCESSING INSTRUCTION** ( *document* : Time ; *statement* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開かれたドキュメントの参照 |
-| statement | Text | → | ドキュメントに挿入するステートメント |
+| document | Time | → | 開かれたドキュメントの参照 |
+| statement | Text | → | ドキュメントに挿入するステートメント |
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 857 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
index 5f5e494204d981..22b584f35a1a37 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-cdata
displayed_sidebar: docs
---
-**SAX ADD XML CDATA** ( *document* ; *data* )
+**SAX ADD XML CDATA** ( *document* : Time ; *data* : Blob, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開かれたドキュメントへの参照 |
-| data | Blob, Text | → | ドキュメントのCDATAタグの間に挿入する テキストまたはBLOB |
+| document | Time | → | 開かれたドキュメントへの参照 |
+| data | Blob, Text | → | ドキュメントのCDATAタグの間に挿入する テキストまたはBLOB |
@@ -80,7 +80,7 @@ else
| | |
| --- | --- |
| コマンド番号 | 856 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
index 5e88a3ce981340..529986e56a2c03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-comment
displayed_sidebar: docs
---
-**SAX ADD XML COMMENT** ( *document* ; *comment* )
+**SAX ADD XML COMMENT** ( *document* : Time ; *comment* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開かれたドキュメントの参照 |
-| comment | Text | → | 追加するコメント |
+| document | Time | → | 開かれたドキュメントの参照 |
+| comment | Text | → | 追加するコメント |
@@ -52,7 +52,7 @@ XMLのコメントはXMLインタプリタが内容を解析しないテキス
| | |
| --- | --- |
| コマンド番号 | 852 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
index 513a5a9759e3c3..ba66ba20fdd053 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-doctype
displayed_sidebar: docs
---
-**SAX ADD XML DOCTYPE** ( *document* ; *docType* )
+**SAX ADD XML DOCTYPE** ( *document* : Time ; *docType* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
-| docType | Text | → | 追加するDocType |
+| document | Time | → | 開いたドキュメントの参照 |
+| docType | Text | → | 追加するDocType |
@@ -52,7 +52,7 @@ DocType文は書かれたXMLのタイプを示し、使用される Document Typ
| | |
| --- | --- |
| コマンド番号 | 851 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
index 50b675db5d57ee..bda87a3c47e20c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
@@ -5,13 +5,13 @@ slug: /commands/sax-add-xml-element-value
displayed_sidebar: docs
---
-**SAX ADD XML ELEMENT VALUE** ( *document* ; *data* {; *} )
+**SAX ADD XML ELEMENT VALUE** ( *document* : Time ; *data* : Text, Variable {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
-| data | Text, Variable | → | ドキュメントに挿入するテキストまたは変数 |
-| * | 演算子 | → | 指定時: 特別文字をエンコード 省略時: エンコードしない |
+| document | Time | → | 開いたドキュメントの参照 |
+| data | Text, Variable | → | ドキュメントに挿入するテキストまたは変数 |
+| * | 演算子 | → | 指定時: 特別文字をエンコード 省略時: エンコードしない |
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 855 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
index 385fe68897375e..0ad57a7b136669 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-close-xml-element
displayed_sidebar: docs
---
-**SAX CLOSE XML ELEMENT** ( *document* )
+**SAX CLOSE XML ELEMENT** ( *document* : Time )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開かれたドキュメントの参照 |
+| document | Time | → | 開かれたドキュメントの参照 |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 854 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
index e16c15d08c6408..82c86e97bea5aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-cdata
displayed_sidebar: docs
---
-**SAX GET XML CDATA** ( *document* ; *value* )
+**SAX GET XML CDATA** ( *document* : Time ; *value* : Text, Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| value | Text, Blob | ← | 要素値 |
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 878 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
index f5f10d4a9529f9..57e203dd269cc4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-comment
displayed_sidebar: docs
---
-**SAX GET XML COMMENT** ( *document* ; *comment* )
+**SAX GET XML COMMENT** ( *document* : Time ; *comment* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| comment | Text | ← | XMLコメント |
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 874 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
index e1c069ee456a8e..b08fdfcf30678a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-document-values
displayed_sidebar: docs
---
-**SAX GET XML DOCUMENT VALUES** ( *document* ; *encoding* ; *version* ; *standalone* )
+**SAX GET XML DOCUMENT VALUES** ( *document* : Time ; *encoding* : Text ; *version* : Text ; *standalone* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| encoding | Text | ← | XMLドキュメント文字セット |
| version | Text | ← | XMLバージョン |
| standalone | Boolean | ← | True = ドキュメントはスタンドアロン, そうない場合 False |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 873 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
index 01116a29299926..197fc7f570a8de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element-value
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT VALUE** ( *document* ; *value* )
+**SAX GET XML ELEMENT VALUE** ( *document* : Time ; *value* : Text, Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| value | Text, Blob | ← | 要素値 |
@@ -50,7 +50,7 @@ TextまたはBLOB 型の変数を*value* 引数に渡します。BLOBを渡す
| | |
| --- | --- |
| コマンド番号 | 877 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
index 5d1a6c8bbae3f2..be974d0dd20b9e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT** ( *document* ; *name* ; *prefix* ; *attrNames* ; *attrValues* )
+**SAX GET XML ELEMENT** ( *document* : Time ; *name* : Text ; *prefix* : Text ; *attrNames* : Text array ; *attrValues* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| name | Text | ← | 要素名 |
| prefix | Text | ← | 名前空間 |
| attrNames | Text array | ← | 属性名 |
@@ -67,7 +67,7 @@ tAttrValues{3} には "333"が返されます。
| | |
| --- | --- |
| コマンド番号 | 876 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
index f47808ff2b7d5d..b2f638b393b2d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-entity
displayed_sidebar: docs
---
-**SAX GET XML ENTITY** ( *document* ; *name* ; *value* )
+**SAX GET XML ENTITY** ( *document* : Time ; *name* : Text ; *value* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| name | Text | ← | 実体名 |
| value | Text | ← | 実体値 |
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 879 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
index 2041c58912f006..567f03924609dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-node
displayed_sidebar: docs
---
-**SAX Get XML node** ( *document* ) : Integer
+**SAX Get XML node** ( *document* : Time ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| 戻り値 | Integer | ← | 関数から返されたイベント |
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 860 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
index 31b6ec9d9163be..6f212681a48342 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-processing-instruction
displayed_sidebar: docs
---
-**SAX GET XML PROCESSING INSTRUCTION** ( *document* ; *name* ; *value* )
+**SAX GET XML PROCESSING INSTRUCTION** ( *document* : Time ; *name* : Text ; *value* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
+| document | Time | → | 開いたドキュメントの参照 |
| name | Text | ← | 命令名 |
| value | Text | ← | 命令値 |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 875 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
index 94da5e14b9f3b5..f52f007df69801 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT ARRAYS** ( *document* ; *tag* {; *attribNamesArray* ; *attribValuesArray*} {; *attribNamesArray2* ; *attribValuesArray2* ; ... ; *attribNamesArrayN* ; *attribValuesArrayN*} )
+**SAX OPEN XML ELEMENT ARRAYS** ( *document* : Time ; *tag* : Text {; *attribNamesArray* : Text array ; *attribValuesArray* : Array} {; ...(*attribNamesArray* : Text array, *attribValuesArray* : Array)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
-| tag | Text | → | 開く要素の名前 |
-| attribNamesArray | Text array | → | 属性名配列 |
-| attribValuesArray | Text array, Integer array, Date array, Real array, Picture array, Boolean array | → | 属性値配列 |
+| document | Time | → | 開いたドキュメントの参照 |
+| tag | Text | → | 開く要素の名前 |
+| attribNamesArray | Text array | → | 属性名配列 |
+| attribValuesArray | Array | → | 属性値配列 |
@@ -60,6 +60,6 @@ SAX OPEN XML ELEMENT ARRAYS は日付、数値、ブール、そしてピクチ
| | |
| --- | --- |
| コマンド番号 | 921 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
index 5995aeadfc4ea0..0a4b833c815e71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT** ( *document* ; *tag* {; *attribName* ; *attribValue*} {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**SAX OPEN XML ELEMENT** ( *document* : Time ; *tag* : Text {; *attribName* : Text ; *attribValue* : Text} {; ...(*attribName* : Text, *attribValue* : Text)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
-| tag | Text | → | 開く要素の名前 |
-| attribName | Text | → | 属性名 |
-| attribValue | Text | → | 属性値 |
+| document | Time | → | 開いたドキュメントの参照 |
+| tag | Text | → | 開く要素の名前 |
+| attribName | Text | → | 属性名 |
+| attribValue | Text | → | 属性値 |
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 853 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
index 50286f21def69b..f64ca041f79382 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
@@ -5,13 +5,13 @@ slug: /commands/sax-set-xml-declaration
displayed_sidebar: docs
---
-**SAX SET XML DECLARATION** ( *document* ; *encoding* {; *standalone*} )
+**SAX SET XML DECLARATION** ( *document* : Time ; *encoding* : Text {; *standalone* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Time | → | 開いたドキュメントの参照 |
-| encoding | Text | → | XMLドキュメント文字セット |
-| standalone | Boolean | → | True = ドキュメントはスタンドアロン False (デフォルト) = ドキュメントはスタンドアロンではない |
+| document | Time | → | 開いたドキュメントの参照 |
+| encoding | Text | → | XMLドキュメント文字セット |
+| standalone | Boolean | → | True = ドキュメントはスタンドアロン False (デフォルト) = ドキュメントはスタンドアロンではない |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 858 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
index f2385230821f9c..45d85fec0f95b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
@@ -5,13 +5,13 @@ slug: /commands/scan-index
displayed_sidebar: docs
---
-**SCAN INDEX** ( *aField* ; *number* {; > または <} )
+**SCAN INDEX** ( *aField* : Field ; *number* : Integer {; > または <} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | インデックスをスキャンするインデックスフィールド |
-| number | Integer | → | 返すレコード数 |
-| > または < | 演算子 | → | >: インデックスの始まりから <: インデックスの終わりから |
+| aField | Field | → | インデックスをスキャンするインデックスフィールド |
+| number | Integer | → | 返すレコード数 |
+| > または < | 演算子 | → | >: インデックスの始まりから <: インデックスの終わりから |
@@ -55,7 +55,7 @@ SCAN INDEXは、インデックスフィールドにのみ使用できます。
| | |
| --- | --- |
| コマンド番号 | 350 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
index 4bb12b48d4c156..72af5207313388 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/screen-coordinates
displayed_sidebar: docs
---
-**SCREEN COORDINATES** ( *left* ; *top* ; *right* ; *bottom* {; *screen* {; *screenArea*}} )
+**SCREEN COORDINATES** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *screen* : Integer {; *screenArea* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -13,8 +13,8 @@ displayed_sidebar: docs
| top | Integer | ← | 画面エリアの上端のグローバル座標 |
| right | Integer | ← | 画面エリアの右端のグローバル座標 |
| bottom | Integer | ← | 画面エリアの下端のグローバル座標 |
-| screen | Integer | → | 画面番号、または省略した場合には主画面(メインスクリーン) |
-| screenArea | Integer | → | 画面全体(デフォルト)または利用可能エリア |
+| screen | Integer | → | 画面番号、または省略した場合には主画面(メインスクリーン) |
+| screenArea | Integer | → | 画面全体(デフォルト)または利用可能エリア |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 438 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
index 3e48f8aae8f459..760643cdd385f4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
@@ -5,13 +5,13 @@ slug: /commands/screen-depth
displayed_sidebar: docs
---
-**SCREEN DEPTH** ( *depth* ; *color* {; *screen*} )
+**SCREEN DEPTH** ( *depth* : Integer ; *color* : Integer {; *screen* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| depth | Integer | ← | 画面の深度 (カラーの数 = 2^深度) |
| color | Integer | ← | 1 = カラー画面、0 = 白黒またはグレイスケール |
-| screen | Integer | → | 画面番号、または省略した場合には主画面(メインスクリーン) |
+| screen | Integer | → | 画面番号、または省略した場合には主画面(メインスクリーン) |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
index dcc8c2f82cd59c..b3a91ccc03a296 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
@@ -5,11 +5,11 @@ slug: /commands/screen-height
displayed_sidebar: docs
---
-**Screen height** {( * )} : Integer
+**Screen height** ( * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | Windows: アプリケーションウィンドウの高さ または*が指定されている場合、画面の高さ Macintosh: メイン画面の高さ |
+| * | 演算子 | → | Windows: アプリケーションウィンドウの高さ または*が指定されている場合、画面の高さ Macintosh: メイン画面の高さ |
| 戻り値 | Integer | ← | ピクセル数で表される高さ |
@@ -30,6 +30,6 @@ Macintoshでは、Screen height はメイン画面の高さを返します。メ
| | |
| --- | --- |
| コマンド番号 | 188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
index d5bf50c4381555..cce11a29e9a8c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
@@ -5,11 +5,11 @@ slug: /commands/screen-width
displayed_sidebar: docs
---
-**Screen width** {( * )} : Integer
+**Screen width** ( * ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | ・・Windows: *が指定されている場合、アプリケーションウィンドウの幅、 または画面の幅 Macintosh: メイン画面の幅 |
+| * | 演算子 | → | ・・Windows: *が指定されている場合、アプリケーションウィンドウの幅、 または画面の幅 Macintosh: メイン画面の幅 |
| 戻り値 | Integer | ← | ピクセル数で表される幅 |
@@ -30,6 +30,6 @@ Macintoshの場合、, Screen width はメイン画面の幅を返します。
| | |
| --- | --- |
| コマンド番号 | 187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
index 3e69e8935f3d6d..b2819f12cc78af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
@@ -5,14 +5,14 @@ slug: /commands/select-document
displayed_sidebar: docs
---
-**Select document** ( *directory* ; *fileTypes* ; *title* ; *options* {; *selected*} ) : Text
+**Select document** ( *directory* : Text, Integer ; *fileTypes* : Text ; *title* : Text ; *options* : Integer {; *selected* : Text array} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| directory | Text, Integer | → | ドキュメント選択ダイアログボックスで ディレクトリのアクセスパスをデフォルトで表示する、または デフォルトユーザフォルダを表示する空の文字列 (Windowsでは"My documents"、 Mac OSでは"Documents")、または メモリーされたアクセスパスの番号 |
-| fileTypes | Text | → | フィルタするドキュメントタイプのリスト、または ドキュメントをフィルタしない"*" |
-| title | Text | → | 選択ダイアログボックスのタイトル |
-| options | Integer | → | 任意の選択 |
+| directory | Text, Integer | → | ドキュメント選択ダイアログボックスで ディレクトリのアクセスパスをデフォルトで表示する、または デフォルトユーザフォルダを表示する空の文字列 (Windowsでは"My documents"、 Mac OSでは"Documents")、または メモリーされたアクセスパスの番号 |
+| fileTypes | Text | → | フィルタするドキュメントタイプのリスト、または ドキュメントをフィルタしない"*" |
+| title | Text | → | 選択ダイアログボックスのタイトル |
+| options | Integer | → | 任意の選択 |
| selected | Text array | ← | アクセスパスのリストを含む配列 + 選択されたファイルの名前 |
| 戻り値 | Text | ← | 選択されたファイルの名前(複数の選択がある場合、 リストの最初のファイル) |
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
index b4271354d648c4..323c5ea36f09cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
@@ -5,13 +5,13 @@ slug: /commands/select-folder
displayed_sidebar: docs
---
-**Select folder** ( {*message* }{;}{ *defaultPath* {; *options*}} ) : Text
+**Select folder** ( {*message* : Text }{;}{ *defaultPath* : Text, Integer {; *options* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | ウィンドウのタイトル |
-| defaultPath | Text, Integer | → | デフォルトのパス名、 または、デフォルトのユーザフォルダを表示する空の文字列 (Windowsでは"My documents"、 Mac OSでは"Documents")、 または記憶されたパス名の番号 |
-| options | Integer | → | Mac OS上での選択オプション |
+| message | Text | → | ウィンドウのタイトル |
+| defaultPath | Text, Integer | → | デフォルトのパス名、 または、デフォルトのユーザフォルダを表示する空の文字列 (Windowsでは"My documents"、 Mac OSでは"Documents")、 または記憶されたパス名の番号 |
+| options | Integer | → | Mac OS上での選択オプション |
| 戻り値 | Text | ← | 選択されたフォルダへのアクセスパス |
@@ -92,7 +92,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 670 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
index 342973dd799de8..2c63ee644939d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
@@ -5,14 +5,14 @@ slug: /commands/select-list-items-by-position
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY POSITION** ( {* ;} *list* ; *itemPos* {; *positionsArray*} )
+**SELECT LIST ITEMS BY POSITION** ( {* ;} *list* : Integer, Text ; *itemPos* : Integer {; *positionsArray* : Integer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemPos | Integer | → | 展開/折りたたまれたリスト中の項目位置 |
-| positionsArray | Integer array | → | 展開/折りたたまれたリスト中の項目位置配列 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemPos | Integer | → | 展開/折りたたまれたリスト中の項目位置 |
+| positionsArray | Integer array | → | 展開/折りたたまれたリスト中の項目位置配列 |
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 381 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
index c872887f7bc3d2..bf7be69096a30b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
@@ -5,13 +5,13 @@ slug: /commands/select-list-items-by-reference
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY REFERENCE** ( *list* ; *itemRef* {; *refArray*} )
+**SELECT LIST ITEMS BY REFERENCE** ( *list* : Integer ; *itemRef* : Integer {; *refArray* : Integer array} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| itemRef | Integer | → | 項目参照番号 または 0: リストに最後に追加された項目 |
-| refArray | Integer array | → | 項目参照番号配列 |
+| list | Integer | → | リスト参照番号 |
+| itemRef | Integer | → | 項目参照番号 または 0: リストに最後に追加された項目 |
+| refArray | Integer array | → | 項目参照番号配列 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 630 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
index bdcd145b10f9b2..f1eb76d2d84c76 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
@@ -5,12 +5,12 @@ slug: /commands/select-rgb-color
displayed_sidebar: docs
---
-**Select RGB color** {( *defaultColor* {; *message*} )} : Integer
+**Select RGB color** ( *defaultColor* : Integer {; *message* : Text} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| defaultColor | Integer | → | 事前に選択されたRGBカラー |
-| message | Text | → | 選択ウィンドウのタイトル |
+| defaultColor | Integer | → | 事前に選択されたRGBカラー |
+| message | Text | → | 選択ウィンドウのタイトル |
| 戻り値 | Integer | ← | RGBカラー |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 956 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
index c217ee754decc0..d152679fe765e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
@@ -5,14 +5,14 @@ slug: /commands/selected-list-items
displayed_sidebar: docs
---
-**Selected list items** ( {* ;} *list* {; *itemsArray* {; *}} ) : Integer
+**Selected list items** ( {* ;} *list* : Integer, Text {; *itemsArray* : Integer array {; *}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
| itemsArray | Integer array | ← | 2番目の * 省略時: 配列にはリスト中で選択された 項目の位置配列が返される 2番目の * 指定時: 配列には選択された項目の 参照が返される |
-| * | 演算子 | → | 省略時: 項目位置 指定時: 項目参照 |
+| * | 演算子 | → | 省略時: 項目位置 指定時: 項目参照 |
| 戻り値 | Integer | ← | 2番目の * 省略時: 展開/折りたたまれたされたリスト中 現在選択されている項目位置 2番目の * 指定時: 選択されている項目の参照 |
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 379 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
index 9e6e2e94dde4af..70abd54d32fcd3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
@@ -5,11 +5,11 @@ slug: /commands/selected-record-number
displayed_sidebar: docs
---
-**Selected record number** {( *aTable* )} : Integer
+**Selected record number** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコード位置番号を取得するテーブル、または 省略時はデフォルトテーブル |
+| aTable | Table | → | レコード位置番号を取得するテーブル、または 省略時はデフォルトテーブル |
| 戻り値 | Integer | ← | カレントレコードのレコード位置番号 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 246 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
index 5eafa93784777b..854b8e1d12114c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/selection-range-to-array
displayed_sidebar: docs
---
-**SELECTION RANGE TO ARRAY** ( *start* ; *end* {; field | table ; *array*} {; field | table2 ; *array2* ; ... ; field | tableN ; *arrayN*} )
+**SELECTION RANGE TO ARRAY** ( *start* : Integer ; *end* : Integer {; ...(*data* : Field, Table ; *array* : Array)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| start | Integer | → | データ取得を開始するレコード位置番号 |
-| end | Integer | → | データ取得を終了するレコード位置番号 |
-| field | table | フィールド, テーブル | → | データを取得するフィールドまたは レコード番号を取得するテーブル |
+| start | Integer | → | データ取得を開始するレコード位置番号 |
+| end | Integer | → | データ取得を終了するレコード位置番号 |
+| data | フィールド, テーブル | → | データを取得するフィールドまたは レコード番号を取得するテーブル |
| array | Array | ← | フィールド値またはレコード番号を受け取る配列 |
@@ -113,6 +113,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 368 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
index 588865037e4a9d..4761fd275a9606 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
@@ -5,15 +5,15 @@ slug: /commands/selection-to-array
displayed_sidebar: docs
---
-**SELECTION TO ARRAY** {( field | table ; *array* {; *aField* ; *array* {; *aField2* ; *array2* ; ... ; *aFieldN* ; *arrayN*}}{; *})}
+**SELECTION TO ARRAY** ({ field | table ; *array* : Array {; *aField* : Field ; *array* : Array {; ...(*aField* : Field, *array* : Array)}}{; *}})
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| field | table | フィールド, テーブル | → | データを取得するフィールドまたは レコード番号を取得するテーブル |
+| field | table | フィールド, テーブル | → | データを取得するフィールドまたは レコード番号を取得するテーブル |
| array | Array | ← | フィールド値またはレコード番号を受け取る配列 |
-| aField | Field | → | 配列に値を取得するフィールド |
+| aField | Field | → | 配列に値を取得するフィールド |
| array | Array | ← | フィールドデータを受け取る配列 |
-| * | 演算子 | → | 実行をスタックする |
+| * | 演算子 | → | 実行をスタックする |
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 260 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
index 57347c4648ef06..07787a9f6b245f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
@@ -5,13 +5,13 @@ slug: /commands/selection-to-json
displayed_sidebar: docs
---
-**Selection to JSON** ( *aTable* {; *aField*}{; *aField2* ; ... ; *aFieldN*}{; *template*}) : Text
+**Selection to JSON** ( *aTable* : Table {; *...aField* : Field}{; *template* : Object}) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | シリアライズするテーブル |
-| aField | Field | → | シリアライズするフィールドを指定 |
-| template | Object | → | プロパティ名と取り出したいフィールドを指定するポインターをオブジェクトで渡す |
+| aTable | Table | → | シリアライズするテーブル |
+| aField | Field | → | シリアライズするフィールドを指定 |
+| template | Object | → | プロパティ名と取り出したいフィールドを指定するポインターをオブジェクトで渡す |
| 戻り値 | Text | ← | シリアライズされた JSON 配列を含む文字列 |
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md
index 5b3bf1d33b2af8..b02b4796d20fef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/self.md
@@ -44,6 +44,6 @@ Self が上記のコンテキスト以外で呼ばれた場合、Nilポインタ
| | |
| --- | --- |
| コマンド番号 | 308 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
index d4fab616cdb1d1..a69816b4dfc651 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
@@ -5,12 +5,12 @@ slug: /commands/semaphore
displayed_sidebar: docs
---
-**Semaphore** ( *semaphore* {; *tickCount*} ) : Boolean
+**Semaphore** ( *semaphore* : Text {; *tickCount* : Integer} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| semaphore | Text | → | テストと設定を行うセマフォ |
-| tickCount | Integer | → | 最大待ち時間 |
+| semaphore | Text | → | テストと設定を行うセマフォ |
+| tickCount | Integer | → | 最大待ち時間 |
| 戻り値 | Boolean | ← | FALSE: セマフォの設定に成功した TRUE: 既にセマフォが存在する |
@@ -158,6 +158,6 @@ var $T_Sema_local;$T_Message : Text
| | |
| --- | --- |
| コマンド番号 | 143 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
index cb80a3a7429841..ca2c89bfc9c207 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
@@ -5,12 +5,12 @@ slug: /commands/send-message-to-remote-user
displayed_sidebar: docs
---
-**SEND MESSAGE TO REMOTE USER** ( *message* {; *userSession*} )
+**SEND MESSAGE TO REMOTE USER** ( *message* : Text {; *userSession* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| message | Text | → | Text sent to user |
-| userSession | Text | → | User's session ID |
+| message | Text | → | Text sent to user |
+| userSession | Text | → | User's session ID |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1632 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
index 870b6335230177..a8615b39468f2d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
@@ -5,12 +5,12 @@ slug: /commands/send-packet
displayed_sidebar: docs
---
-**SEND PACKET** ( {*DocRef* ;} *packet* )
+**SEND PACKET** ( {*DocRef* ;} *packet* : Text, Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号, または カレントのチャンネル (シリアルポートまたはドキュメント) |
-| packet | Text, Blob | → | 送信する文字またはBLOB |
+| Time | Time | → | ドキュメント参照番号, または カレントのチャンネル (シリアルポートまたはドキュメント) |
+| packet | Text, Blob | → | 送信する文字またはBLOB |
@@ -86,6 +86,6 @@ SEND PACKETコマンドを使用する前に、 [SET CHANNEL](set-channel.md)
| | |
| --- | --- |
| コマンド番号 | 103 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
index d9c2226dd70ac5..b5533bde63685f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
@@ -5,11 +5,11 @@ slug: /commands/send-record
displayed_sidebar: docs
---
-**SEND RECORD** {( *aTable* )}
+**SEND RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | カレントレコードを送信するテーブル, または 省略した場合デフォルトテーブル |
+| aTable | Table | → | カレントレコードを送信するテーブル, または 省略した場合デフォルトテーブル |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 78 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
index 23deef7846c2ad..3876110054a1da 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
@@ -5,11 +5,11 @@ slug: /commands/send-variable
displayed_sidebar: docs
---
-**SEND VARIABLE** ( *variable* )
+**SEND VARIABLE** ( *variable* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| variable | Variable | → | 送信する変数 |
+| variable | Variable | → | 送信する変数 |
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 80 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
index f8f841edde6a44..98d6f1304f39c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
@@ -5,11 +5,11 @@ slug: /commands/sequence-number
displayed_sidebar: docs
---
-**Sequence number** {( *aTable* )} : Integer
+**Sequence number** ( *aTable* : Table ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | シーケンス番号を求めるテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | シーケンス番号を求めるテーブル, または 省略時、デフォルトテーブル |
| 戻り値 | Integer | ← | シーケンス番号 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 244 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
index 4fa33b2f067cb7..be33a4dcb291ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
@@ -5,12 +5,12 @@ slug: /commands/set-about
displayed_sidebar: docs
---
-**SET ABOUT** ( *itemText* ; *method* )
+**SET ABOUT** ( *itemText* : Text ; *method* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| itemText | Text | → | アバウトメニュー項目の新しいテキスト |
-| method | Text | → | メニューが選択された時に実行するメソッドの名前 |
+| itemText | Text | → | アバウトメニュー項目の新しいテキスト |
+| method | Text | → | メニューが選択された時に実行するメソッドの名前 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 316 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
index 70634cb6d74a44..12cf735dda4095 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/set-application-color-scheme
displayed_sidebar: docs
---
-**SET APPLICATION COLOR SCHEME** ( *colorScheme* )
+**SET APPLICATION COLOR SCHEME** ( *colorScheme* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| colorScheme | Text | → | "light"、"dark"、または "inherited" |
+| colorScheme | Text | → | "light"、"dark"、または "inherited" |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
index 3b66437ea25bf7..9bccf2ef389c38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/set-assert-enabled
displayed_sidebar: docs
---
-**SET ASSERT ENABLED** ( *assertions* {; *} )
+**SET ASSERT ENABLED** ( *assertions* : Boolean {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| assertions | Boolean | → | True = アサーションを有効にする
False = アサーションを無効にする |
-| * | 演算子 | → | 省略時 = すべてのプロセスにコマンドを適用 (既存および後で作成されるものを含む)
指定時= カレントプロセスのみにコマンドを適用 |
+| assertions | Boolean | → | True = アサーションを有効にする
False = アサーションを無効にする |
+| * | 演算子 | → | 省略時 = すべてのプロセスにコマンドを適用 (既存および後で作成されるものを含む)
指定時= カレントプロセスのみにコマンドを適用 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1131 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
index f44283bd27f8b3..5bd7159f7eb311 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
@@ -5,12 +5,12 @@ slug: /commands/set-automatic-relations
displayed_sidebar: docs
---
-**SET AUTOMATIC RELATIONS** ( *one* {; *many*} )
+**SET AUTOMATIC RELATIONS** ( *one* : Boolean {; *many* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| one | Boolean | → | すべてのn対1リレーションの状態 |
-| many | Boolean | → | すべての1対nリレーションの状態 |
+| one | Boolean | → | すべてのn対1リレーションの状態 |
+| many | Boolean | → | すべての1対nリレーションの状態 |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 310 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
index f1ec974f308542..d4ce8cb6509dc5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
@@ -5,13 +5,13 @@ slug: /commands/set-blob-size
displayed_sidebar: docs
---
-**SET BLOB SIZE** ( *BLOB* ; *size* {; *filler*} )
+**SET BLOB SIZE** ( *BLOB* : Blob ; *size* : Integer {; *filler* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOBフィールドまたは変数 |
-| size | Integer | → | BLOBの新しいサイズ |
-| filler | Integer | → | 埋め込み文字のASCIIコード |
+| Blob | Blob | → | BLOBフィールドまたは変数 |
+| size | Integer | → | BLOBの新しいサイズ |
+| filler | Integer | → | 埋め込み文字のASCIIコード |
@@ -56,6 +56,6 @@ BLOBに新しいバイトを割り当て、それらのバイトを特定の値
| | |
| --- | --- |
| コマンド番号 | 606 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
index 68de9523fd191b..5ef1e3df8d9b42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-blobs-cache-priority
displayed_sidebar: docs
---
-**SET BLOBS CACHE PRIORITY** ( *aTable* ; *priority* )
+**SET BLOBS CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セッション中の"blob"データの優先度値を設定したいテーブル |
-| priority | Integer | → | テーブル内のBLOBのキャッシュ優先度 |
+| aTable | Table | → | セッション中の"blob"データの優先度値を設定したいテーブル |
+| priority | Integer | → | テーブル内のBLOBのキャッシュ優先度 |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1425 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
index 920da0becf89f7..e5ca09eec20947 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-cache-size
displayed_sidebar: docs
---
-**SET CACHE SIZE** ( *size* {; *minFreeSize*} )
+**SET CACHE SIZE** ( *size* : Real {; *minFreeSize* : Real} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| size | Real | → | データベースキャッシュのサイズ(バイト単位) |
-| minFreeSize | Real | → | キャッシュが一杯になった際に解放する最小バイト数 |
+| size | Real | → | データベースキャッシュのサイズ(バイト単位) |
+| minFreeSize | Real | → | キャッシュが一杯になった際に解放する最小バイト数 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
index 81a4f6c1ba14cb..1824fc2d7da53b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
@@ -10,12 +10,12 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| port | Integer | → | シリアルポート番号 |
-| settings | Integer | → | シリアルポート設定 |
-| SET CHANNEL ( operation ; document ) |
-| 引数 | 型 | 説明 |
-| operation | Integer | → | 行うドキュメント処理 |
-| document | Text | → | ドキュメント名 |
+| port | Integer | → | シリアルポート番号 |
+| settings | Integer | → | シリアルポート設定 |
+| SET CHANNEL ( operation ; document ) | | | |
+| 引数 | 型 | 説明 | |
+| operation | Integer | → | 行うドキュメント処理 |
+| document | Text | → | ドキュメント名 |
@@ -179,7 +179,7 @@ SET CHANNELコマンドの第2の形式は、ドキュメントファイルの
| | |
| --- | --- |
| コマンド番号 | 77 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
index fa21e6154785e5..5be3e49c67ffa0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
@@ -5,11 +5,11 @@ slug: /commands/set-current-printer
displayed_sidebar: docs
---
-**SET CURRENT PRINTER** ( *printerName* )
+**SET CURRENT PRINTER** ( *printerName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| printerName | Text | → | 使用されるプリンター名 |
+| printerName | Text | → | 使用されるプリンター名 |
@@ -59,7 +59,7 @@ Windows 環境下でのPDF ドキュメントの作成は、以下のように
| | |
| --- | --- |
| コマンド番号 | 787 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
index 34555fe8d11738..504ab3934aad6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
@@ -5,11 +5,11 @@ slug: /commands/set-cursor
displayed_sidebar: docs
---
-**SET CURSOR** {( *cursor* )}
+**SET CURSOR** ({ *cursor* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| cursor | Integer | → | Mac OS ベースのカーソルリソース番号 |
+| cursor | Integer | → | Mac OS ベースのカーソルリソース番号 |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md
index d217a5b65f6692..06da011136d48c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-localization.md
@@ -5,12 +5,12 @@ slug: /commands/set-database-localization
displayed_sidebar: docs
---
-**SET DATABASE LOCALIZATION** ( *languageCode* {; *} )
+**SET DATABASE LOCALIZATION** ( *languageCode* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| languageCode | Text | → | 言語セレクタ |
-| * | 演算子 | → | コマンドのスコープ |
+| languageCode | Text | → | 言語セレクタ |
+| * | 演算子 | → | コマンドのスコープ |
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1104 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
index cd85497e741d91..3c19416dfe810a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-database-parameter
displayed_sidebar: docs
---
-**SET DATABASE PARAMETER** ( {*aTable* ;} *selector* ; *value* )
+**SET DATABASE PARAMETER** ( {*aTable* : Table ;} *selector* : Integer ; *value* : Real, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | パラメータをセットするテーブル、または 省略時、デフォルトテーブル |
-| selector | Integer | → | 変更を行うデータベースパラメタのコード |
-| value | Real, Text | → | パラメタの値 |
+| aTable | Table | → | パラメータをセットするテーブル、または 省略時、デフォルトテーブル |
+| selector | Integer | → | 変更を行うデータベースパラメタのコード |
+| value | Real, Text | → | パラメタの値 |
@@ -1090,6 +1090,6 @@ QUERY BY FORMULA Joinsセレクタで、カレントプロセスの、フォー
| | |
| --- | --- |
| コマンド番号 | 642 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
index 424cf55d1c7793..e4cd147045dc42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
@@ -5,12 +5,12 @@ slug: /commands/set-default-century
displayed_sidebar: docs
---
-**SET DEFAULT CENTURY** ( *century* {; *pivotYear*} )
+**SET DEFAULT CENTURY** ( *century* : Integer {; *pivotYear* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| century | Integer | → | 2桁の年数が入力された場合の デフォルト世紀 (マイナス1) |
-| pivotYear | Integer | → | 2桁の年で日付が入力された時の区切り年 |
+| century | Integer | → | 2桁の年数が入力された場合の デフォルト世紀 (マイナス1) |
+| pivotYear | Integer | → | 2桁の年で日付が入力された時の区切り年 |
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
index e2556177549b4e..9ebf1967066ce2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
@@ -5,13 +5,13 @@ slug: /commands/set-document-position
displayed_sidebar: docs
---
-**SET DOCUMENT POSITION** ( *DocRef* ; *offset* {; *anchor*} )
+**SET DOCUMENT POSITION** ( *DocRef* ; *offset* : Real {; *anchor* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号 |
-| offset | Real | → | ファイル位置(バイトで指定) |
-| anchor | Integer | → | 1 = ファイル先頭からの相対位置 2 = ファイル最後からの相対位置 3 = 現在位置からの相対位置 |
+| Time | Time | → | ドキュメント参照番号 |
+| offset | Real | → | ファイル位置(バイトで指定) |
+| anchor | Integer | → | 1 = ファイル先頭からの相対位置 2 = ファイル最後からの相対位置 3 = 現在位置からの相対位置 |
@@ -36,6 +36,6 @@ SET DOCUMENT POSITION コマンドは、引数*offset*に渡す、以下の読
| | |
| --- | --- |
| コマンド番号 | 482 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
index cd53908bdb7f9b..53f09e96e6791b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-document-properties
displayed_sidebar: docs
---
-**SET DOCUMENT PROPERTIES** ( *document* ; *locked* ; *invisible* ; created on ; created at ; modified on ; modified at )
+**SET DOCUMENT PROPERTIES** ( *document* : Text ; *locked* : Boolean ; *invisible* : Boolean ; created on ; created at ; modified on ; modified at )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| document | Text | → | ドキュメント名 またはドキュメントの完全なパス名 |
-| locked | Boolean | → | ロックの場合はTrue、アンロックの場合はFalse |
-| invisible | Boolean | → | 非表示の場合はTrue、表示の場合はFalse |
-| created on | 日付 | → | 作成日 |
-| created at | 時間 | → | 作成時間 |
-| modified on | 日付 | → | 更新日 |
-| modified at | 時間 | → | 更新時間 |
+| document | Text | → | ドキュメント名 またはドキュメントの完全なパス名 |
+| locked | Boolean | → | ロックの場合はTrue、アンロックの場合はFalse |
+| invisible | Boolean | → | 非表示の場合はTrue、表示の場合はFalse |
+| created on | 日付 | → | 作成日 |
+| created at | 時間 | → | 作成時間 |
+| modified on | 日付 | → | 更新日 |
+| modified at | 時間 | → | 更新時間 |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
index e3321b3d06724d..204184c473b6dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-document-size
displayed_sidebar: docs
---
-**SET DOCUMENT SIZE** ( *DocRef* ; *size* )
+**SET DOCUMENT SIZE** ( *DocRef* ; *size* : Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Time | Time | → | ドキュメント参照番号 |
-| size | Real | → | 新しいサイズ(バイト単位) |
+| Time | Time | → | ドキュメント参照番号 |
+| size | Real | → | 新しいサイズ(バイト単位) |
@@ -33,6 +33,6 @@ Macintoshでは、ドキュメントデータフォークのサイズが変更
| | |
| --- | --- |
| コマンド番号 | 480 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
index f6c40a459f0ebe..1d52590e54658d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
@@ -5,13 +5,13 @@ slug: /commands/set-drag-icon
displayed_sidebar: docs
---
-**SET DRAG ICON** ( *icon* {; *horOffset* {; *vertOffset*}} )
+**SET DRAG ICON** ( *icon* : Picture {; *horOffset* : Integer {; *vertOffset* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| icon | Picture | → | ドラッグ中に表示するアイコン |
-| horOffset | Integer | → | カーソルから見てアイコンの左端との水平方向の距離を指定(>0 は左方向に、<0 は右方向に移動) |
-| vertOffset | Integer | → | カーソルから見てアイコンの上端との垂直方向の距離を指定(>0 は上方向に、<0 は下方向に移動) |
+| icon | Picture | → | ドラッグ中に表示するアイコン |
+| horOffset | Integer | → | カーソルから見てアイコンの左端との水平方向の距離を指定(>0 は左方向に、<0 は右方向に移動) |
+| vertOffset | Integer | → | カーソルから見てアイコンの上端との垂直方向の距離を指定(>0 は上方向に、<0 は下方向に移動) |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1272 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
index 8d265d1dc530b2..8868e78678365f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
@@ -5,18 +5,18 @@ slug: /commands/set-environment-variable
displayed_sidebar: docs
---
-**SET ENVIRONMENT VARIABLE** ( *varName* ; *varValue* )
+**SET ENVIRONMENT VARIABLE** ( *varName* : Text ; *varValue* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| varName | Text | → | 設定する変数の名前 |
-| varValue | Text | → | 変数の値、 またはデフォルト値をリセットする "" |
+| varName | Text | → | 設定する変数の名前 |
+| varValue | Text | → | 変数の値、 またはデフォルト値をリセットする "" |
## 説明
-**SET ENVIRONMENT VARIABLE**コマンドを用いて、macOS とWindowsで環境変数値を設定できます。このコマンドは[LAUNCH EXTERNAL PROCESS](launch-external-process.md)コマンドと共に使用します。また[PHP Execute](php-execute.md)コマンドとも動作します。
+**SET ENVIRONMENT VARIABLE**コマンドを用いて、macOS とWindowsで環境変数値を設定できます。このコマンドは[LAUNCH EXTERNAL PROCESS](launch-external-process.md)コマンドと共に使用します。
変数の名前を*varName* に、その値を*varValue* に渡して定義します。
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 812 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
index bf07e06440a07e..0e433fb7c3cfdf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
@@ -5,12 +5,12 @@ slug: /commands/set-external-data-path
displayed_sidebar: docs
---
-**SET EXTERNAL DATA PATH** ( *aField* ; *path* )
+**SET EXTERNAL DATA PATH** ( *aField* : Text, Blob, Picture ; *path* : Text, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Text, Blob, Picture | → | ストレージの場所を設定するフィールド |
-| path | Text, Integer | → | 外部ストレージのパス名およびファイル名、または0 = ストラクチャー定義を使用する1 = デフォルトフォルダーを使用する |
+| aField | Text, Blob, Picture | → | ストレージの場所を設定するフィールド |
+| path | Text, Integer | → | 外部ストレージのパス名およびファイル名、または0 = ストラクチャー定義を使用する1 = デフォルトフォルダーを使用する |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1134 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
index 3dc792d1cc8383..b6434a4eff9bca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
@@ -5,13 +5,13 @@ slug: /commands/set-field-relation
displayed_sidebar: docs
---
-**SET FIELD RELATION** ( manyTable | manyField ; *one* ; *many* )
+**SET FIELD RELATION** ( manyTable | manyField ; *one* : Integer ; *many* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| manyTable | manyField | テーブル, フィールド | → | リレーションの開始テーブル, または リレーションの開始フィールド |
-| one | Integer | → | テーブルまたはフィールドを開始点とする n対1リレーションの状態 |
-| many | Integer | → | テーブルまたはフィールドを開始点とする 1対nリレーションの状態 |
+| manyTable | manyField | テーブル, フィールド | → | リレーションの開始テーブル, または リレーションの開始フィールド |
+| one | Integer | → | テーブルまたはフィールドを開始点とする n対1リレーションの状態 |
+| many | Integer | → | テーブルまたはフィールドを開始点とする 1対nリレーションの状態 |
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 919 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
index 905839ed0f4509..13bb2e5f6d8910 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
@@ -5,14 +5,14 @@ slug: /commands/set-field-titles
displayed_sidebar: docs
---
-**SET FIELD TITLES** ( *aTable* ; *fieldTitles* ; *fieldNumbers* {; *} )
+**SET FIELD TITLES** ( *aTable* : Table ; *fieldTitles* : Text array ; *fieldNumbers* : Integer array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フィールドタイトルを設定するテーブル |
-| fieldTitles | Text array | → | ダイアログボックスに表示するフィールドの名前 |
-| fieldNumbers | Integer array | → | 実際のフィールド番号 |
-| * | Operator | → | カスタマイズした名前をフォーミュラエディタで使用する |
+| aTable | Table | → | フィールドタイトルを設定するテーブル |
+| fieldTitles | Text array | → | ダイアログボックスに表示するフィールドの名前 |
+| fieldNumbers | Integer array | → | 実際のフィールド番号 |
+| * | Operator | → | カスタマイズした名前をフォーミュラエディタで使用する |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 602 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
index 4e5266a10d193d..b168031b35f0c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
@@ -5,11 +5,11 @@ slug: /commands/set-field-value-null
displayed_sidebar: docs
---
-**SET FIELD VALUE NULL** ( *aField* )
+**SET FIELD VALUE NULL** ( *aField* : Field )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | NULL値を割り当てるフィールド |
+| aField | Field | → | NULL値を割り当てるフィールド |
@@ -34,6 +34,6 @@ NULL値は、4DのSQLカーネルによって使用されます。詳細につ
| | |
| --- | --- |
| コマンド番号 | 965 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
index eca129bace620e..bcd19430cf7f64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/set-file-to-pasteboard
displayed_sidebar: docs
---
-**SET FILE TO PASTEBOARD** ( *filePath* {; *} )
+**SET FILE TO PASTEBOARD** ( *filePath* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| filePath | Text | → | ファイルの完全パス名 |
-| * | 演算子 | → | 指定時: 追加、省略時: 置換 |
+| filePath | Text | → | ファイルの完全パス名 |
+| * | 演算子 | → | 指定時: 追加、省略時: 置換 |
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 975 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
index 9cd1af7694f45e..417c4264770fcb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
@@ -5,11 +5,11 @@ slug: /commands/set-group-access
displayed_sidebar: docs
---
-**SET GROUP ACCESS** {( *groups* )}
+**SET GROUP ACCESS** ({ *groups* : Collection })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| groups | Collection | → | セッションの間4D ユーザーアカウントを所属させたいグループの名前 |
+| groups | Collection | → | セッションの間4D ユーザーアカウントを所属させたいグループの名前 |
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1737 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
index 69cc368cf803e6..9748d5dcb5ba4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
@@ -5,15 +5,14 @@ slug: /commands/set-group-properties
displayed_sidebar: docs
---
-**Set group properties** ( *groupID* ; *name* ; *owner* {; *members*} ) : Integer
+**Set group properties** ( *groupID* : Integer ; *name* : Text ; *owner* : Integer {; *members* : Integer array} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| groupID | Integer | → | グループのユニークなID番号、または、 -1= デザイナーグループの追加 -2= 管理者グループの追加 |
-| ← | 追加したグループ (あれば) のユニークなID番号 |
-| name | Text | → | 新規グループの名前 |
-| owner | Integer | → | 新規グループオーナーのユーザーID番号 (バイナリデータベースのみ) |
-| members | Integer array | → | 新規グループのメンバー |
+| groupID | Integer | ↔ | *in:* Unique ID number of group, -1 for adding a group
*out:* Unique ID number of added group (if any) |
+| name | Text | → | 新規グループの名前 |
+| owner | Integer | → | 新規グループオーナーのユーザーID番号 (バイナリデータベースのみ) |
+| members | Integer array | → | 新規グループのメンバー |
| 戻り値 | Integer | ← | 新規グループのユニークなID番号 |
@@ -62,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 614 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
index 54b6136b021268..319da993d2e820 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
@@ -5,11 +5,11 @@ slug: /commands/set-help-menu
displayed_sidebar: docs
---
-**SET HELP MENU** ( *menuCol* )
+**SET HELP MENU** ( *menuCol* : Collection )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menuCol | Collection | → | メニュー項目のコレクション |
+| menuCol | Collection | → | メニュー項目のコレクション |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1801 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
index 24bfc31b7e50cd..9391d26c23e507 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-index-cache-priority
displayed_sidebar: docs
---
-**SET INDEX CACHE PRIORITY** ( *aField* ; *priority* )
+**SET INDEX CACHE PRIORITY** ( *aField* : Field ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | Field whose index(es) priority value has to be set for the session |
-| priority | Integer | → | Cache priority value for the field index(es) |
+| aField | Field | → | Field whose index(es) priority value has to be set for the session |
+| priority | Integer | → | Cache priority value for the field index(es) |
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1401 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
index e221f07a79ea13..89d30038ab4ccc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
@@ -5,13 +5,13 @@ slug: /commands/set-index
displayed_sidebar: docs
---
-**SET INDEX** ( *aField* ; *index* {; *} )
+**SET INDEX** ( *aField* : Field ; *index* : Boolean, Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aField | Field | → | インデックスを作成または削除するフィールド |
-| index | Boolean, Integer | → | True=作成、False=削除、または インデックスを作成: -1=キーワード、 0=デフォルト、1=標準B-Tree、3=クラスタB-Tree |
-| * | Operator | → | *を渡すと非同期にインデックスを作成 |
+| aField | Field | → | インデックスを作成または削除するフィールド |
+| index | Boolean, Integer | → | True=作成、False=削除、または インデックスを作成: -1=キーワード、 0=デフォルト、1=標準B-Tree、3=クラスタB-Tree |
+| * | Operator | → | *を渡すと非同期にインデックスを作成 |
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 344 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
index 23f2cc41adfa20..904b5691e41b8a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-font
displayed_sidebar: docs
---
-**SET LIST ITEM FONT** ( {* ;} *list* ; *itemRef* ; *font* )
**SET LIST ITEM FONT** ( * ; *list* ; * ; *font* )
+**SET LIST ITEM FONT** ( {* ;} *list* : Integer, Text ; *itemRef* : 倍長整数, 演算子 ; *font* : Text, Integer )
**SET LIST ITEM FONT** ( * ; *list* : Integer, Text ; * ; *font* : Text, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
-| font | Text, Integer | → | フォント名または番号 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
+| font | Text, Integer | → | フォント名または番号 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 953 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
index 7a120202d20215..fc86006ba49f64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-icon
displayed_sidebar: docs
---
-**SET LIST ITEM ICON** ( {* ;} *list* ; itemRef | * ; *icon* )
+**SET LIST ITEM ICON** ( {* ;} *list* : Integer, Text ; itemRef | * ; *icon* : Picture )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
-| icon | Picture | → | 項目に割り当てるアイコン |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 倍長整数, 演算子 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
+| icon | Picture | → | 項目に割り当てるアイコン |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 950 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
index 2fe6abb929f276..cf3a3d0727b354 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
@@ -5,15 +5,15 @@ slug: /commands/set-list-item-parameter
displayed_sidebar: docs
---
-**SET LIST ITEM PARAMETER** ( {* ;} *list* ; *itemRef* ; *selector* ; *value* )
**SET LIST ITEM PARAMETER** ( * ; *list* ; * ; *selector* ; *value* )
+**SET LIST ITEM PARAMETER** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ; *selector* : Text ; *value* : Text, Boolean, Real )
**SET LIST ITEM PARAMETER** ( * ; *list* : Integer, Text ; * ; *selector* : Text ; *value* : Text, Boolean, Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
-| selector | Text | → | パラメタ定数 |
-| value | Text, Boolean, Real | → | パラメタ値 |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
+| selector | Text | → | パラメタ定数 |
+| value | Text, Boolean, Real | → | パラメタ値 |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 986 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
index 29f7be93e03fc7..ac24391b13335d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item-properties
displayed_sidebar: docs
---
-**SET LIST ITEM PROPERTIES** ( {* ;} *list* ; *itemRef* ; *enterable* ; *styles* {; *icon* {; *color*}} )
**SET LIST ITEM PROPERTIES** ( * ; *list* ; * ; *enterable* ; *styles* {; *icon* {; *color*}} )
+**SET LIST ITEM PROPERTIES** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ; *enterable* : Boolean ; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}} )
**SET LIST ITEM PROPERTIES** ( * ; *list* : Integer, Text ; * ; *enterable* : Boolean ; *styles* : Integer {; *icon* : Text, Integer {; *color* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
-| enterable | Boolean | → | TRUE = 入力可, FALSE = 入力不可 |
-| styles | Integer | → | 項目のフォントスタイル |
-| icon | Text, Integer | → | ピクチャー名または番号 (アイコンを使用しない場合は "" または 0) |
-| color | Integer | → | RGBカラー値 または -1 = 元のカラーにリセット |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
+| enterable | Boolean | → | TRUE = 入力可, FALSE = 入力不可 |
+| styles | Integer | → | 項目のフォントスタイル |
+| icon | Text, Integer | → | ピクチャー名または番号 (アイコンを使用しない場合は "" または 0) |
+| color | Integer | → | RGBカラー値 または -1 = 元のカラーにリセット |
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 386 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
index 3296aaf077fb97..9d014ee6c2d4c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item
displayed_sidebar: docs
---
-**SET LIST ITEM** ( {* ;} *list* ; *itemRef* ; *newItemText* ; *newItemRef* {; *sublist* ; *expanded*} )
**SET LIST ITEM** ( * ; *list* ; * ; *newItemText* ; *newItemRef* {; *sublist* ; *expanded*} )
+**SET LIST ITEM** ( {* ;} *list* : Integer, Text ; *itemRef* : 演算子, 倍長整数 ; *newItemText* : Text ; *newItemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
**SET LIST ITEM** ( * ; *list* : Integer, Text ; * ; *newItemText* : Text ; *newItemRef* : Integer {; *sublist* : Integer ; *expanded* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
-| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
-| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
-| newItemText | Text | → | 新しい項目テキスト |
-| newItemRef | Integer | → | 新しい項目参照番号 |
-| sublist | Integer | → | 項目に添付する新しいサブリスト, または 0: サブリストがない場合 (現在のサブリストを取り除く), または -1: 変更しない |
-| expanded | Boolean | → | オプションのサブリストの展開/折りたたみ |
+| * | 演算子 | → | 指定時, listはオブジェクト名 (文字列) 省略時, listはリスト参照番号 |
+| list | Integer, Text | → | リスト参照番号 (* 省略時), または リストオブジェクト名 (* 指定時) |
+| itemRef | * | 演算子, 倍長整数 | → | 項目参照番号, または 0: リストに最後に追加された項目, または *: リスト中のカレント項目 |
+| newItemText | Text | → | 新しい項目テキスト |
+| newItemRef | Integer | → | 新しい項目参照番号 |
+| sublist | Integer | → | 項目に添付する新しいサブリスト, または 0: サブリストがない場合 (現在のサブリストを取り除く), または -1: 変更しない |
+| expanded | Boolean | → | オプションのサブリストの展開/折りたたみ |
@@ -82,6 +82,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 385 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
index c3352a5d89d717..276441c8971483 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-properties
displayed_sidebar: docs
---
-**SET LIST PROPERTIES** ( *list* ; *appearance* {; *icon* {; *lineHeight* {; *doubleClick* {; *multiSelections* {; *editable*}}}}} )
+**SET LIST PROPERTIES** ( *list* : Integer ; *appearance* : Integer {; *icon* : Integer {; *lineHeight* : Integer {; *doubleClick* : Integer {; *multiSelections* : Integer {; *editable* : Integer}}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| appearance | Integer | → | *** 廃止予定、常に0を指定してください *** |
-| icon | Integer | → | *** 廃止予定、常に0を指定してください *** |
-| lineHeight | Integer | → | 最小行高さ (ピクセル単位) |
-| doubleClick | Integer | → | ダブルクリックでサブリストを展開/折り畳み 0 = Yes, 1= No |
-| multiSelections | Integer | → | 複数行選択: 0 = No (デフォルト), 1 = Yes |
-| editable | Integer | → | 0 = ユーザによるリスト編集不可, 1 = ユーザによるリスト編集可 (デフォルト) |
+| list | Integer | → | リスト参照番号 |
+| appearance | Integer | → | *** 廃止予定、常に0を指定してください *** |
+| icon | Integer | → | *** 廃止予定、常に0を指定してください *** |
+| lineHeight | Integer | → | 最小行高さ (ピクセル単位) |
+| doubleClick | Integer | → | ダブルクリックでサブリストを展開/折り畳み 0 = Yes, 1= No |
+| multiSelections | Integer | → | 複数行選択: 0 = No (デフォルト), 1 = Yes |
+| editable | Integer | → | 0 = ユーザによるリスト編集不可, 1 = ユーザによるリスト編集可 (デフォルト) |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 387 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
index 1a8af38a04cf8e..fbe2850f8de3d7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/set-macro-parameter
displayed_sidebar: docs
---
-**SET MACRO PARAMETER** ( *selector* ; *textParam* )
+**SET MACRO PARAMETER** ( *selector* : Integer ; *textParam* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | 使用するセレクション |
-| textParam | Text | → | 送られたテキスト |
+| selector | Integer | → | 使用するセレクション |
+| textParam | Text | → | 送られたテキスト |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 998 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
index 50da5a9a73098e..ada6cf9eca87bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-bar
displayed_sidebar: docs
---
-**SET MENU BAR** ( *menuBar* {; *process*}{; *} )
+**SET MENU BAR** ( *menuBar* : Integer, Text, Text {; *process* : Integer}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menuBar | Integer, Text, Text | → | メニューバー番号または名前 または メニュー参照 |
-| process | Integer | → | プロセス参照番号 |
-| * | 演算子 | → | メニューバーの状態を保存 |
+| menuBar | Integer, Text, Text | → | メニューバー番号または名前 または メニュー参照 |
+| process | Integer | → | プロセス参照番号 |
+| * | 演算子 | → | メニューバーの状態を保存 |
@@ -124,6 +124,6 @@ SET MENU BAR**(1;\*)**を実行すると、メニューバーは前と同じ状
| | |
| --- | --- |
| コマンド番号 | 67 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
index 5b64b2125e9dad..ba43f958d96fc0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-icon
displayed_sidebar: docs
---
-**SET MENU ITEM ICON** ( *menu* ; *menuItem* ; *iconRef* {; *process*} )
+**SET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *iconRef* : Text, Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| iconRef | Text, Integer | → | メニュー項目に関連付けられたピクチャーの番号または名称 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| iconRef | Text, Integer | → | メニュー項目に関連付けられたピクチャーの番号または名称 |
+| process | Integer | → | プロセス番号 |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 984 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
index c005be8332462c..4c82ee9a645e43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-mark
displayed_sidebar: docs
---
-**SET MENU ITEM MARK** ( *menu* ; *menuItem* ; *mark* {; *process*} )
+**SET MENU ITEM MARK** ( *menu* : Integer, Text ; *menuItem* : Integer ; *mark* : Text {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| mark | Text | → | 新しいメニュー項目マーク |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| mark | Text | → | 新しいメニュー項目マーク |
+| process | Integer | → | プロセス参照番号 |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 208 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
index 699799b3535614..456c4c5febe9ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-method
displayed_sidebar: docs
---
-**SET MENU ITEM METHOD** ( *menu* ; *menuItem* ; *methodName* {; *process*} )
+**SET MENU ITEM METHOD** ( *menu* : Integer, Text ; *menuItem* : Integer ; *methodName* : Text {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| methodName | Text | → | メソッド名 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| methodName | Text | → | メソッド名 |
+| process | Integer | → | プロセス番号 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 982 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
index 9a59805d75b9d8..62a422e62546df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-item-parameter
displayed_sidebar: docs
---
-**SET MENU ITEM PARAMETER** ( *menu* ; *menuItem* ; *param* )
+**SET MENU ITEM PARAMETER** ( *menu* : Integer, Text ; *menuItem* : Integer ; *param* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| param | Text | → | パラメタとして割り当てる文字列 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| param | Text | → | パラメタとして割り当てる文字列 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1004 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
index 5a843290487e3d..00302ccbc32863 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-property
displayed_sidebar: docs
---
-**SET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *property* ; *value* {; *process*} )
+**SET MENU ITEM PROPERTY** ( *menu* : Integer, Text ; *menuItem* : Integer ; *property* : Text ; *value* : Text, Real, Boolean {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| property | Text | → | プロパティタイプ |
-| value | Text, Number, Boolean | → | プロパティ値 |
-| process | Integer | → | プロセス番号 |
+| menu | Integer, Text | → | メニュー参照またはメニュー番号 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| property | Text | → | プロパティタイプ |
+| value | Text, Real, Boolean | → | プロパティ値 |
+| process | Integer | → | プロセス番号 |
@@ -52,6 +52,6 @@ Associated Standard Action プロパティの場合、*value* 引数には標準
| | |
| --- | --- |
| コマンド番号 | 973 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
index f9f18816222b05..9f9b8f220b7934 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-shortcut
displayed_sidebar: docs
---
-**SET MENU ITEM SHORTCUT** ( *menu* ; *menuItem* ; *itemKey* ; *modifiers* {; *process*} )
+**SET MENU ITEM SHORTCUT** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemKey* : Text, Integer ; *modifiers* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| itemKey | Text, Integer | → | キーボードショートカットの文字またはキーボードショートカットの文字コード (古いシンタックス) |
-| modifiers | Integer | → | ショートカットに割り当てられたモディファイア (キーコードが渡された時は無視) |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| itemKey | Text, Integer | → | キーボードショートカットの文字またはキーボードショートカットの文字コード (古いシンタックス) |
+| modifiers | Integer | → | ショートカットに割り当てられたモディファイア (キーコードが渡された時は無視) |
+| process | Integer | → | プロセス参照番号 |
@@ -82,7 +82,7 @@ Ctrl+R (Windows) や Cmd+R (macOS) ショートカットを"再起動"メニュ
| | |
| --- | --- |
| コマンド番号 | 423 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
index 4c4b884bdfd533..26c1a69b7c06b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-style
displayed_sidebar: docs
---
-**SET MENU ITEM STYLE** ( *menu* ; *menuItem* ; *itemStyle* {; *process*} )
+**SET MENU ITEM STYLE** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemStyle* : Integer {; *process* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| itemStyle | Integer | → | 新しいメニュー項目スタイル |
-| process | Integer | → | プロセス参照番号 |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| itemStyle | Integer | → | 新しいメニュー項目スタイル |
+| process | Integer | → | プロセス参照番号 |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 425 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
index 9c5ee27b5a78bd..51bddf230872e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item
displayed_sidebar: docs
---
-**SET MENU ITEM** ( *menu* ; *menuItem* ; *itemText* {; *process*}{; *} )
+**SET MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemText* : Text {; *process* : Integer}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
-| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
-| itemText | Text | → | メニュー項目の新しいテキスト |
-| process | Integer | → | プロセス参照番号 |
-| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
+| menu | Integer, Text | → | メニュー番号またはメニュー参照 |
+| menuItem | Integer | → | メニュー項目番号 または -1: 最後に追加された項目 |
+| itemText | Text | → | メニュー項目の新しいテキスト |
+| process | Integer | → | プロセス参照番号 |
+| * | 演算子 | → | 指定時: メタ文字を標準文字として扱う |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 348 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
index ee4908fcf70c70..26f1525c8ecffe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
@@ -5,12 +5,12 @@ slug: /commands/set-picture-file-name
displayed_sidebar: docs
---
-**SET PICTURE FILE NAME** ( *picture* ; *fileName* )
+**SET PICTURE FILE NAME** ( *picture* : Picture, Picture ; *fileName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture, Picture | → | デフォルト名を設定するピクチャー |
-| fileName | Text | → | デフォルトピクチャー名 |
+| picture | Picture, Picture | → | デフォルト名を設定するピクチャー |
+| fileName | Text | → | デフォルトピクチャー名 |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
index 2f28d8345d6f07..239362f77e7ab8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-metadata
displayed_sidebar: docs
---
-**SET PICTURE METADATA** ( *picture* ; *metaName* ; *metaContents* {; *metaName2* ; *metaContents2* ; ... ; *metaNameN* ; *metaContentsN*} )
+**SET PICTURE METADATA** ( *picture* : Picture ; *metaName* : Text ; *metaContents* : Variable {; ...(*metaName* : Text, *metaContents* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | メタデータを設定するピクチャ |
-| metaName | Text | → | 設定するブロックの名前またはパス |
-| metaContents | Variable | → | メタデータの内容 |
+| picture | Picture | → | メタデータを設定するピクチャ |
+| metaName | Text | → | 設定するブロックの名前またはパス |
+| metaContents | Variable | → | メタデータの内容 |
@@ -87,7 +87,7 @@ DOM参照を使用してGPSブロックを設定します:
| | |
| --- | --- |
| コマンド番号 | 1121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
index 9a9aead6121698..656bd8876ccf5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-to-library
displayed_sidebar: docs
---
-**SET PICTURE TO LIBRARY** ( *picture* ; *picRef* ; *picName* )
+**SET PICTURE TO LIBRARY** ( *picture* : Picture ; *picRef* : Integer ; *picName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | 新しいピクチャ |
-| picRef | Integer | → | ピクチャライブラリ画像の参照番号 |
-| picName | Text | → | ピクチャの新しい名前 |
+| picture | Picture | → | 新しいピクチャ |
+| picRef | Integer | → | ピクチャライブラリ画像の参照番号 |
+| picName | Text | → | ピクチャの新しい名前 |
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 566 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
index 745019df3b9295..572b030765fe61 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-picture-to-pasteboard
displayed_sidebar: docs
---
-**SET PICTURE TO PASTEBOARD** ( *picture* )
+**SET PICTURE TO PASTEBOARD** ( *picture* : Picture )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | ペーストボードに置くピクチャ |
+| picture | Picture | → | ペーストボードに置くピクチャ |
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 521 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
index d1b93065d189ed..92f617ec94f4f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
@@ -5,12 +5,12 @@ slug: /commands/set-plugin-access
displayed_sidebar: docs
---
-**SET PLUGIN ACCESS** ( *plugIn* ; *group* )
+**SET PLUGIN ACCESS** ( *plugIn* : Integer ; *group* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| plugIn | Integer | → | プラグイン番号 |
-| group | Text | → | プラグインに関連するグル―プの名前 |
+| plugIn | Integer | → | プラグイン番号 |
+| group | Text | → | プラグインに関連するグル―プの名前 |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 845 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
index be9470ed3584fa..72aa6d06659712 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-marker
displayed_sidebar: docs
---
-**SET PRINT MARKER** ( *markNum* ; *position* {; *} )
+**SET PRINT MARKER** ( *markNum* : Integer ; *position* : Integer {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| markNum | Integer | → | マーカ番号 |
-| position | Integer | → | マーカの新しい位置 |
-| * | 演算子 | → | 指定時 = 後続のマーカを移動する 省略時 = 後続のマーカを移動しない |
+| markNum | Integer | → | マーカ番号 |
+| position | Integer | → | マーカの新しい位置 |
+| * | 演算子 | → | 指定時 = 後続のマーカを移動する 省略時 = 後続のマーカを移動しない |
@@ -188,6 +188,6 @@ Print\_List3のフォームメソッド:
| | |
| --- | --- |
| コマンド番号 | 709 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
index b7db00723ac72f..23c169e8f408a1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-option
displayed_sidebar: docs
---
-**SET PRINT OPTION** ( *option* ; *value1* {; *value2*} )
+**SET PRINT OPTION** ( *option* : Integer ; *value1* : Integer, Text {; *value2* : Integer, Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | オプション番号 |
-| value1 | Integer, Text | → | オプションの値1 |
-| value2 | Integer, Text | → | オプションの値2 |
+| option | Integer | → | オプション番号 |
+| value1 | Integer, Text | → | オプションの値1 |
+| value2 | Integer, Text | → | オプションの値2 |
@@ -84,7 +84,7 @@ Orientation option の値は同一印刷ジョブ内で変更することがで
| | |
| --- | --- |
| コマンド番号 | 733 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
index 3ccfcdd4beee0b..affb0d9379bef8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
@@ -5,11 +5,11 @@ slug: /commands/set-print-preview
displayed_sidebar: docs
---
-**SET PRINT PREVIEW** ( *preview* )
+**SET PRINT PREVIEW** ( *preview* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| preview | Boolean | → | スクリーンにプレビュー (TRUE), または プレビューしない (FALSE) |
+| preview | Boolean | → | スクリーンにプレビュー (TRUE), または プレビューしない (FALSE) |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 364 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
index a64948e84241c0..43f2af5f5a8184 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
@@ -5,14 +5,14 @@ slug: /commands/set-printable-margin
displayed_sidebar: docs
---
-**SET PRINTABLE MARGIN** ( *left* ; *top* ; *right* ; *bottom* )
+**SET PRINTABLE MARGIN** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| left | Integer | → | 左マージン |
-| top | Integer | → | 上マージン |
-| right | Integer | → | 右マージン |
-| bottom | Integer | → | 下マージン |
+| left | Integer | → | 左マージン |
+| top | Integer | → | 上マージン |
+| right | Integer | → | 右マージン |
+| bottom | Integer | → | 下マージン |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 710 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
index 6a7e08e1a74dab..cc5fc5b2e1b574 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
@@ -5,13 +5,13 @@ slug: /commands/set-process-variable
displayed_sidebar: docs
---
-**SET PROCESS VARIABLE** ( *process* ; *dstVar* ; *expr* {; *dstVar2* ; *expr2* ; ... ; *dstVarN* ; *exprN*} )
+**SET PROCESS VARIABLE** ( *process* : Integer ; *dstVar* : Variable ; *expr* : Variable {; ...(*dstVar* : Variable, *expr* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | 送り先のプロセス番号 |
-| dstVar | Variable | → | 送り先の変数 |
-| expr | Variable | → | ソース式 (ソース変数) |
+| process | Integer | → | 送り先のプロセス番号 |
+| dstVar | Variable | → | 送り先の変数 |
+| expr | Variable | → | ソース式 (ソース変数) |
@@ -103,6 +103,6 @@ SET PROCESS VARIABLEは、任意のタイプの送り先プロセスまたはイ
| | |
| --- | --- |
| コマンド番号 | 370 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
index 83438fb9a35c56..72bcf2af5e01e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-and-lock
displayed_sidebar: docs
---
-**SET QUERY AND LOCK** ( *lock* )
+**SET QUERY AND LOCK** ( *lock* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| lock | Boolean | → | True = クエリで見つけたレコードをロック False = レコードをロックしない |
+| lock | Boolean | → | True = クエリで見つけたレコードをロック False = レコードをロックしない |
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 661 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
index 95cd4d2f3de9c9..14ceb6ca885ca6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
@@ -5,13 +5,13 @@ slug: /commands/set-query-destination
displayed_sidebar: docs
---
-**SET QUERY DESTINATION** ( *destinationType* {; *destinationObject* {; *destinationPtr*}} )
+**SET QUERY DESTINATION** ( *destinationType* : Integer {; *destinationObject* : Text, Variable {; *destinationPtr* : Pointer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| destinationType | Integer | → | 0=カレントセレクション, 1=セット, 2=命名セレクション, 3=変数 |
-| destinationObject | Text, Variable | → | セット名、命名セレクション名、変数、または空の文字列 |
-| destinationPtr | Pointer | → | destinationType=3のとき変数へのポインター |
+| destinationType | Integer | → | 0=カレントセレクション, 1=セット, 2=命名セレクション, 3=変数 |
+| destinationObject | Text, Variable | → | セット名、命名セレクション名、変数、または空の文字列 |
+| destinationPtr | Pointer | → | destinationType=3のとき変数へのポインター |
@@ -257,6 +257,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 396 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
index f197dad652e46d..4a95aa27174bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-limit
displayed_sidebar: docs
---
-**SET QUERY LIMIT** ( *limit* )
+**SET QUERY LIMIT** ( *limit* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| limit | Integer | → | レコード数, または 0: 制限なし |
+| limit | Integer | → | レコード数, または 0: 制限なし |
@@ -69,6 +69,6 @@ SET QUERY LIMITは、下記のクエリコマンドの動作を変更します:
| | |
| --- | --- |
| コマンド番号 | 395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
index 3ecd2a5a00f196..5a82551dfd5d72 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
@@ -5,11 +5,11 @@ slug: /commands/set-real-comparison-level
displayed_sidebar: docs
---
-**SET REAL COMPARISON LEVEL** ( *epsilon* )
+**SET REAL COMPARISON LEVEL** ( *epsilon* : Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| epsilon | Real | → | 実数の同等性を比較するためのイプシロン値 |
+| epsilon | Real | → | 実数の同等性を比較するためのイプシロン値 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 623 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
index 492cbac7c06d89..2a787cca147a2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
@@ -5,11 +5,11 @@ slug: /commands/set-recent-fonts
displayed_sidebar: docs
---
-**SET RECENT FONTS** ( *fontsArray* )
+**SET RECENT FONTS** ( *fontsArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fontsArray | Text array | → | フォント名の配列 |
+| fontsArray | Text array | → | フォント名の配列 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1305 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
index ce4e3fb0edfc38..4c138a2b517679 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-table-cache-priority
displayed_sidebar: docs
---
-**SET TABLE CACHE PRIORITY** ( *aTable* ; *priority* )
+**SET TABLE CACHE PRIORITY** ( *aTable* : Table ; *priority* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セッション中の優先度を設定するスカラーデータのテーブル |
-| priority | Integer | → | テーブル内のスカラー値に対するキャッシュ優先度値 |
+| aTable | Table | → | セッション中の優先度を設定するスカラーデータのテーブル |
+| priority | Integer | → | テーブル内のスカラー値に対するキャッシュ優先度値 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1400 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
index 19de0c8344181a..ec235b071284fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
@@ -5,13 +5,13 @@ slug: /commands/set-table-titles
displayed_sidebar: docs
---
-**SET TABLE TITLES** {( *tableTitles* ; *tableNumbers* {; *})}
+**SET TABLE TITLES** ({ *tableTitles* : Text array ; *tableNumbers* : Integer array {; *}})
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableTitles | Text array | → | ダイアログボックスに表示されるテーブル名 |
-| tableNumbers | Integer array | → | 実際のテーブル番号 |
-| * | 演算子 | → | フォーミュラエディタでカスタム名を使用 |
+| tableTitles | Text array | → | ダイアログボックスに表示されるテーブル名 |
+| tableNumbers | Integer array | → | 実際のテーブル番号 |
+| * | 演算子 | → | フォーミュラエディタでカスタム名を使用 |
@@ -193,6 +193,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 601 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
index e9f7bce6007ff1..a846a0fb919123 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-text-to-pasteboard
displayed_sidebar: docs
---
-**SET TEXT TO PASTEBOARD** ( *text* )
+**SET TEXT TO PASTEBOARD** ( *text* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| text | Text | → | ペーストボードに置くテキスト |
+| text | Text | → | ペーストボードに置くテキスト |
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 523 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
index 8092cc09980f38..42d15bd5698bb2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
@@ -5,11 +5,11 @@ slug: /commands/set-timeout
displayed_sidebar: docs
---
-**SET TIMEOUT** ( *seconds* )
+**SET TIMEOUT** ( *seconds* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| seconds | Integer | → | タイムアウト秒数 |
+| seconds | Integer | → | タイムアウト秒数 |
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 268 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
index d2c671e3fd32ea..69db71b65fb137 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
@@ -5,11 +5,11 @@ slug: /commands/set-timer
displayed_sidebar: docs
---
-**SET TIMER** ( *tickCount* )
+**SET TIMER** ( *tickCount* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tickCount | Integer | → | Tickcount または -1=すぐに実行する |
+| tickCount | Integer | → | Tickcount または -1=すぐに実行する |
@@ -51,6 +51,6 @@ On Timerフォームイベントの生成を取り消すには、*tickCount*に0
| | |
| --- | --- |
| コマンド番号 | 645 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
index eb820bc1ed1661..515898dcd6960e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
@@ -5,12 +5,12 @@ slug: /commands/set-update-folder
displayed_sidebar: docs
---
-**SET UPDATE FOLDER** ( *folderPath* {; *silentErrors*} )
+**SET UPDATE FOLDER** ( *folderPath* : Text {; *silentErrors* : Boolean} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folderPath | Text | → | アップデートされたアプリケーションを内包するフォルダ(OS Xの場合はパッケージ)へのパス名 |
-| silentErrors | Boolean | → | False (デフォルト)=エラーを表示して報告 True=エラーを表示しない |
+| folderPath | Text | → | アップデートされたアプリケーションを内包するフォルダ(OS Xの場合はパッケージ)へのパス名 |
+| silentErrors | Boolean | → | False (デフォルト)=エラーを表示して報告 True=エラーを表示しない |
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1291 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
index 51fa52abbc78ee..f7b07e6343bb5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
@@ -5,11 +5,11 @@ slug: /commands/set-user-alias
displayed_sidebar: docs
---
-**SET USER ALIAS** ( *alias* )
+**SET USER ALIAS** ( *alias* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| alias | Text | → | 4Dユーザーアカウントに対して使用する代理の名前、またはその名前をリセットするためには"" |
+| alias | Text | → | 4Dユーザーアカウントに対して使用する代理の名前、またはその名前をリセットするためには"" |
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1666 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
index 5bd74b2b377796..bc664035ffa46c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
@@ -5,19 +5,18 @@ slug: /commands/set-user-properties
displayed_sidebar: docs
---
-**Set user properties** ( *userID* ; *name* ; *startup* ; *password* ; *nbLogin* ; *lastLogin* {; *memberships* {; *groupOwner*}} ) : Integer
+**Set user properties** ( *userID* : Integer ; *name* : Text ; *startup* : Text ; *password* : Text ; *nbLogin* : Integer ; *lastLogin* : Date {; *memberships* : Integer array {; *groupOwner* : Integer}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userID | Integer | → | ユーザーアカウントのユニークなID番号、
または -1= デザイナーに関連した新規ユーザーの追加 -2= 管理者に関連した新規ユーザーの追加 |
-| ← | 追加したユーザーアカウント (あれば) のユニークなID番号 |
-| name | Text | → | 新規ユーザーの名前 |
-| startup | Text | → | 新規ユーザースタートアップメソッドの名前 |
-| password | Text | → | 新しい (暗号化されていない) パスワード、または * を指定すると、パスワードは以前のまま |
-| nbLogin | Integer | → | データベースへログインした回数 (バイナリデータベースのみ) |
-| lastLogin | Date | → | データベースに最後にログインした日付 (バイナリデータベースのみ) |
-| memberships | Integer array | → | ユーザーが属するグループのID番号 |
-| groupOwner | Integer | → | ユーザーグループオーナーの参照番号 (バイナリデータベースのみ) |
+| userID | Integer | ↔ | *in:* Unique ID number of user account, -1 for adding a user
*out:* Unique ID number of added user account (if any) |
+| name | Text | → | 新規ユーザーの名前 |
+| startup | Text | → | 新規ユーザースタートアップメソッドの名前 |
+| password | Text | → | 新しい (暗号化されていない) パスワード、または * を指定すると、パスワードは以前のまま |
+| nbLogin | Integer | → | データベースへログインした回数 (バイナリデータベースのみ) |
+| lastLogin | Date | → | データベースに最後にログインした日付 (バイナリデータベースのみ) |
+| memberships | Integer array | → | ユーザーが属するグループのID番号 |
+| groupOwner | Integer | → | ユーザーグループオーナーの参照番号 (バイナリデータベースのみ) |
| 戻り値 | Integer | ← | 新規ユーザーのユニークなID番号 |
@@ -69,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 612 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
index 1e5267b965a660..d378186288b057 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
@@ -5,16 +5,16 @@ slug: /commands/set-window-rect
displayed_sidebar: docs
---
-**SET WINDOW RECT** ( *left* ; *top* ; *right* ; *bottom* {; *window*}{; *} )
+**SET WINDOW RECT** ( *left* : Integer ; *top* : Integer ; *right* : Integer ; *bottom* : Integer {; *window* : Integer}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| left | Integer | → | ウィンドウ内容領域のグローバル左座標 |
-| top | Integer | → | ウィンドウ内容領域のグローバル上座標 |
-| right | Integer | → | ウィンドウ内容領域のグローバル右座標 |
-| bottom | Integer | → | ウィンドウ内容領域のグローバル下座標 |
-| window | Integer | → | ウィンドウ参照番号, または省略時カレントプロセスの最前面ウィンドウ |
-| * | 演算子 | → | 省略時 (デフォルト) = ウィンドウを最前面にする指定時 = ウィンドウの並びレベルを変更しない |
+| left | Integer | → | ウィンドウ内容領域のグローバル左座標 |
+| top | Integer | → | ウィンドウ内容領域のグローバル上座標 |
+| right | Integer | → | ウィンドウ内容領域のグローバル右座標 |
+| bottom | Integer | → | ウィンドウ内容領域のグローバル下座標 |
+| window | Integer | → | ウィンドウ参照番号, または省略時カレントプロセスの最前面ウィンドウ |
+| * | 演算子 | → | 省略時 (デフォルト) = ウィンドウを最前面にする指定時 = ウィンドウの並びレベルを変更しない |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 444 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
index 1f6e59dd249b7c..ebae9b986b6a4a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
@@ -5,12 +5,12 @@ slug: /commands/set-window-title
displayed_sidebar: docs
---
-**SET WINDOW TITLE** ( *title* {; *window*} )
+**SET WINDOW TITLE** ( *title* : Text {; *window* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| title | Text | → | ウィンドウタイトル |
-| window | Integer | → | ウィンドウ参照番号, または 省略時カレントプロセスの最前面ウィンドウ |
+| title | Text | → | ウィンドウタイトル |
+| window | Integer | → | ウィンドウ参照番号, または 省略時カレントプロセスの最前面ウィンドウ |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
index 069bfc9e268e18..6a310638b2f5ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 543 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
index afbf83a76cb3ca..b80a0b5b8d3d1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 431 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
index 9d336782ebd47b..0a2024f554216f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
@@ -5,12 +5,12 @@ slug: /commands/show-on-disk
displayed_sidebar: docs
---
-**SHOW ON DISK** ( *pathname* {; *} )
+**SHOW ON DISK** ( *pathname* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathname | Text | → | 表示するアイテムのパス名 |
-| * | 演算子 | → | アイテムがフォルダの場合、その内容を表示 |
+| pathname | Text | → | 表示するアイテムのパス名 |
+| * | 演算子 | → | アイテムがフォルダの場合、その内容を表示 |
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 922 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
index be3d962a715297..b3a59d6362e484 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
@@ -5,11 +5,11 @@ slug: /commands/show-process
displayed_sidebar: docs
---
-**SHOW PROCESS** ( *process* )
+**SHOW PROCESS** ( *process* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | 表示させるプロセスのプロセス番号 |
+| process | Integer | → | 表示させるプロセスのプロセス番号 |
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
index 30441c28bb218d..29acec09f836b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
index 5005c03dfbd748..e6d1a4f923b52b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
@@ -5,11 +5,11 @@ slug: /commands/show-window
displayed_sidebar: docs
---
-**SHOW WINDOW** {( *window* )}
+**SHOW WINDOW** ({ *window* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号または 省略時カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号または 省略時カレントプロセスの最前面ウィンドウ |
@@ -32,6 +32,6 @@ SHOW WINDOWコマンドを使用するには、ウィンドウが[HIDE WINDOW](h
| | |
| --- | --- |
| コマンド番号 | 435 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
index 15324572528788..61b17f49ecc69e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
@@ -5,11 +5,11 @@ slug: /commands/sin
displayed_sidebar: docs
---
-**Sin** ( *number* ) : Real
+**Sin** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 正弦を求めるラジアン値 |
+| number | Real | → | 正弦を求めるラジアン値 |
| 戻り値 | Real | ← | 正弦値 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 17 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
index 32a04f4f88b22d..8049eb09c321d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
@@ -5,11 +5,11 @@ slug: /commands/size-of-array
displayed_sidebar: docs
---
-**Size of array** ( *array* ) : Integer
+**Size of array** ( *array* : Array ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | サイズを取得する配列 |
+| array | Array | → | サイズを取得する配列 |
| 戻り値 | Integer | ← | 配列の要素数 |
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 274 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
index 09826086eec5d5..927f5ba9901ce4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/soap-declaration
displayed_sidebar: docs
---
-**SOAP DECLARATION** ( *variable* ; *type* ; input_output {; *alias*} )
+**SOAP DECLARATION** ( *variable* : Variable ; *type* : Integer ; input_output {; *alias* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| variable | Variable | → | 入出力SOAP引数を参照する変数 |
-| type | Integer | → | 引数が指す4Dの型 |
-| input_output | Integer | → | 1 = SOAP入力, 2 = SOAP出力 |
-| alias | Text | → | SOAP交換の間 この引数用に公開される名前 |
+| variable | Variable | → | 入出力SOAP引数を参照する変数 |
+| type | Integer | → | 引数が指す4Dの型 |
+| input_output | Integer | → | 1 = SOAP入力, 2 = SOAP出力 |
+| alias | Text | → | SOAP交換の間 この引数用に公開される名前 |
@@ -187,6 +187,6 @@ COMPILER\_WEBメソッドはWebサーバでも使用されます (参照)。
| | |
| --- | --- |
| コマンド番号 | 782 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
index 3d3489d73a27aa..cea30e4a6f1611 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/soap-get-info
displayed_sidebar: docs
---
-**SOAP Get info** ( *infoNum* ) : Text
+**SOAP Get info** ( *infoNum* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| infoNum | Integer | → | 取得するSOAP情報のタイプ番号 |
+| infoNum | Integer | → | 取得するSOAP情報のタイプ番号 |
| 戻り値 | Text | ← | SOAP情報 |
@@ -39,6 +39,6 @@ SOAPリクエストを処理する際、RPC引数のほかに、リクエスト
| | |
| --- | --- |
| コマンド番号 | 784 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
index 1c5d26888d7193..ca332560a5e26d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
@@ -5,11 +5,11 @@ slug: /commands/soap-reject-new-requests
displayed_sidebar: docs
---
-**SOAP REJECT NEW REQUESTS** ( *rejectStatus* )
+**SOAP REJECT NEW REQUESTS** ( *rejectStatus* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| rejectStatus | Boolean | → | 新規リクエストを拒否するにはTrue、それ以外の場合にはFalse |
+| rejectStatus | Boolean | → | 新規リクエストを拒否するにはTrue、それ以外の場合にはFalse |
@@ -40,6 +40,6 @@ Web サービスのサーバーにおいて新規リクエストを全て拒否
| | |
| --- | --- |
| コマンド番号 | 1636 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
index 7f0e174850620d..3716c2657e07f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 783 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
index e30a52bd9d25e1..43494270fe0698 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
@@ -5,12 +5,12 @@ slug: /commands/soap-send-fault
displayed_sidebar: docs
---
-**SOAP SEND FAULT** ( *faultType* ; *description* )
+**SOAP SEND FAULT** ( *faultType* : Integer ; *description* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| faultType | Integer | → | 1 = クライアント側のエラー, 2 = サーバー側のエラー |
-| description | Text | → | SOAPクライアントに送信する、エラーの説明 |
+| faultType | Integer | → | 1 = クライアント側のエラー, 2 = サーバー側のエラー |
+| description | Text | → | SOAPクライアントに送信する、エラーの説明 |
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
index c391926e362608..aa2d0b34748dcb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
@@ -5,12 +5,12 @@ slug: /commands/sort-array
displayed_sidebar: docs
---
-**SORT ARRAY** ( *array* {; *array2* ; ... ; *arrayN*}{; > または <} )
+**SORT ARRAY** ( *array* : Array {; *...array* : Array}{; > または <} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| array | Array | → | ソートする配列 |
-| > または < | 演算子 | → | ">" : 昇順ソート, または "<" : 降順ソート, または 省略した場合降順ソート |
+| array | Array | → | ソートする配列 |
+| > または < | 演算子 | → | ">" : 昇順ソート, または "<" : 降順ソート, または 省略した場合降順ソート |
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
index 306e8cf78234a8..1d3885657026ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
@@ -5,12 +5,12 @@ slug: /commands/sort-list
displayed_sidebar: docs
---
-**SORT LIST** ( *list* {; > または <} )
+**SORT LIST** ( *list* : Integer {; > または <} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| list | Integer | → | リスト参照番号 |
-| > または < | 演算子 | → | 並び順: > 昇順, または < 降順 |
+| list | Integer | → | リスト参照番号 |
+| > または < | 演算子 | → | 並び順: > 昇順, または < 降順 |
@@ -61,6 +61,6 @@ SORT LIST コマンドは、カレントリスト項目またはリストやサ
| | |
| --- | --- |
| コマンド番号 | 391 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
index 61cdb78c5e118a..26e8dbe9f3abdf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-add-to-user-dictionary
displayed_sidebar: docs
---
-**SPELL ADD TO USER DICTIONARY** ( *words* )
+**SPELL ADD TO USER DICTIONARY** ( *words* : Text, Text配列 )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| words | Text, Text配列 | → | ユーザー辞書に追加する単語または単語リスト |
+| words | Text, Text配列 | → | ユーザー辞書に追加する単語または単語リスト |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1214 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
index 4308d65e43dce7..5d0ea96d1dee74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
@@ -5,14 +5,14 @@ slug: /commands/spell-check-text
displayed_sidebar: docs
---
-**SPELL CHECK TEXT** ( *text* ; *errPos* ; *errLength* ; *checkPos* ; *arrSuggest* )
+**SPELL CHECK TEXT** ( *text* : Text ; *errPos* : Integer ; *errLength* : Integer ; *checkPos* : Integer ; *arrSuggest* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| text | Text | → | チェックするテキスト |
+| text | Text | → | チェックするテキスト |
| errPos | Integer | ← | 未知の単語の最初の文字位置 |
| errLength | Integer | ← | 未知の単語の長さ |
-| checkPos | Integer | → | チェックを開始する位置 |
+| checkPos | Integer | → | チェックを開始する位置 |
| arrSuggest | Text array | ← | 推奨候補リスト |
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1215 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
index 49d945cff9f2cc..095cb2da62ae13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 900 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
index f6a3df232c6dd2..2371c02fbf0a11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1205 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
index 16159bca93cbf5..ef1910744886ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
@@ -5,7 +5,7 @@ slug: /commands/spell-get-dictionary-list
displayed_sidebar: docs
---
-**SPELL GET DICTIONARY LIST** ( *langID* ; *langFiles* ; *langNames* )
+**SPELL GET DICTIONARY LIST** ( *langID* : Integer array ; *langFiles* : Text array ; *langNames* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Hunspell辞書に"fr-classic+reform1990.aff"、"fr-classic+reform1990.dic"、"fr
| | |
| --- | --- |
| コマンド番号 | 1204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
index c614b5c6422344..77fcf9612ffa23 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-set-current-dictionary
displayed_sidebar: docs
---
-**SPELL SET CURRENT DICTIONARY** ( *dictionary* )
+**SPELL SET CURRENT DICTIONARY** ( *dictionary* : Integer, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dictionary | Integer, Text | → | スペルチェック用に使用する辞書のID、名前または言語コード省略した場合デフォルトの辞書を使用 |
+| dictionary | Integer, Text | → | スペルチェック用に使用する辞書のID、名前または言語コード省略した場合デフォルトの辞書を使用 |
@@ -56,7 +56,7 @@ Hunspellフォルダーに配置した"fr-classic"辞書をロードする:
| | |
| --- | --- |
| コマンド番号 | 904 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
index d7c5a63efdbfb7..4a64c6e62e2046 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
@@ -5,13 +5,13 @@ slug: /commands/split-string
displayed_sidebar: docs
---
-**Split string** ( *stringToSplit* ; *separator* {; *options*} ) : Collection
+**Split string** ( *stringToSplit* : Text ; *separator* : Text {; *options* : Integer} ) : Collection
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| stringToSplit | Text | → | 文字列の値 |
-| separator | Text | → | stringToSplitを分割する文字列。空の文字列("")の場合には、stringToSplitを1文字ずつに分割します |
-| options | Integer | → | 空の文字列と空白に関するオプション |
+| stringToSplit | Text | → | 文字列の値 |
+| separator | Text | → | stringToSplitを分割する文字列。空の文字列("")の場合には、stringToSplitを1文字ずつに分割します |
+| options | Integer | → | 空の文字列と空白に関するオプション |
| 戻り値 | Collection | ← | 分割した文字列のコレクション |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
index 2e9c9cb3e15932..5c3ab039e4c959 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 824 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
index 80b75ed21a37b2..a6b4c06ff56af3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 821 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
index 9429420064107c..1bf9453ec019e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
@@ -5,14 +5,14 @@ slug: /commands/sql-execute-script
displayed_sidebar: docs
---
-**SQL EXECUTE SCRIPT** ( *scriptPath* ; *errorAction* {; *attribName* ; *attribValue*} {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**SQL EXECUTE SCRIPT** ( *scriptPath* : Text ; *errorAction* : Integer {; *attribName* : Text ; *attribValue* : Text} {; ...(*attribName* : Text, *attribValue* : Text)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| scriptPath | Text | → | 実行するSQLスクリプトが書かれたファイルの完全パス名 |
-| errorAction | Integer | → | スクリプト実行中にエラーが発生した場合のアクション |
-| attribName | Text | → | 使用する属性の名前 |
-| attribValue | Text | → | 属性の値 |
+| scriptPath | Text | → | 実行するSQLスクリプトが書かれたファイルの完全パス名 |
+| errorAction | Integer | → | スクリプト実行中にエラーが発生した場合のアクション |
+| attribName | Text | → | 使用する属性の名前 |
+| attribValue | Text | → | 属性の値 |
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1089 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
index 12492f3087a333..00e9b832f6d752 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
@@ -5,11 +5,11 @@ slug: /commands/sql-execute
displayed_sidebar: docs
---
-**SQL EXECUTE** ( *sqlStatement* {; *boundObj*}{; *boundObj2* ; ... ; *boundObjN*} )
+**SQL EXECUTE** ( *sqlStatement* : Text {; *...boundObj* : Variable, Field} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| sqlStatement | Text | → | 実行するSQLコマンド |
+| sqlStatement | Text | → | 実行するSQLコマンド |
| boundObj | Variable, Field | ← | 結果を受け取る(必要に応じて) |
@@ -163,7 +163,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 820 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
index aea4d951c9b60b..73037b08baf744 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
@@ -5,14 +5,14 @@ slug: /commands/sql-export-database
displayed_sidebar: docs
---
-**SQL EXPORT DATABASE** ( *folderPath* {; *numFiles* {; *fileLimitSize* {; *fieldLimitSize*}}} )
+**SQL EXPORT DATABASE** ( *folderPath* : Text {; *numFiles* : Integer {; *fileLimitSize* : Integer {; *fieldLimitSize* : Integer}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| folderPath | Text | → | 書き出しフォルダーのパス名、または"" でフォルダー選択ダイアログボックスを表示 |
-| numFiles | Integer | → | フォルダーごとの最大ファイル数 |
-| fileLimitSize | Integer | → | 書き出しファイルのサイズ制限値 (KB) |
-| fieldLimitSize | Integer | → | この引数のサイズ以下のテキスト、Blob、ピクチャーフィールドの内容はメインのファイルに統合する (バイト単位) |
+| folderPath | Text | → | 書き出しフォルダーのパス名、または"" でフォルダー選択ダイアログボックスを表示 |
+| numFiles | Integer | → | フォルダーごとの最大ファイル数 |
+| fileLimitSize | Integer | → | 書き出しファイルのサイズ制限値 (KB) |
+| fieldLimitSize | Integer | → | この引数のサイズ以下のテキスト、Blob、ピクチャーフィールドの内容はメインのファイルに統合する (バイト単位) |
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1065 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
index 3ae2dfc3e449c7..3188716129e5db 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
@@ -5,15 +5,15 @@ slug: /commands/sql-export-selection
displayed_sidebar: docs
---
-**SQL EXPORT SELECTION** ( *aTable* ; *folderPath* {; *numFiles* {; *fileLimitSize* {; *fieldLimitSize*}}} )
+**SQL EXPORT SELECTION** ( *aTable* : Table ; *folderPath* : Text {; *numFiles* : Integer {; *fileLimitSize* : Integer {; *fieldLimitSize* : Integer}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | セレクションを書き出すテーブル |
-| folderPath | Text | → | 書き出しフォルダーのパス名、または"" でフォルダー選択ダイアログボックスを表示 |
-| numFiles | Integer | → | フォルダーごとの最大ファイル数 |
-| fileLimitSize | Integer | → | Export.sql ファイルの最大サイズ (KB) |
-| fieldLimitSize | Integer | → | この引数のサイズ以下のテキスト、Blob、ピクチャーフィールドの内容はメインのファイルに統合する (バイト単位) |
+| aTable | Table | → | セレクションを書き出すテーブル |
+| folderPath | Text | → | 書き出しフォルダーのパス名、または"" でフォルダー選択ダイアログボックスを表示 |
+| numFiles | Integer | → | フォルダーごとの最大ファイル数 |
+| fileLimitSize | Integer | → | Export.sql ファイルの最大サイズ (KB) |
+| fieldLimitSize | Integer | → | この引数のサイズ以下のテキスト、Blob、ピクチャーフィールドの内容はメインのファイルに統合する (バイト単位) |
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1064 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
index ca1cb4d85d3bce..5762816c672e6d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ SQLクエリを実行する前に、このコマンドでカレントデータ
| | |
| --- | --- |
| コマンド番号 | 990 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
index f8209ece6bbf72..04a1d40221d9a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-data-source-list
displayed_sidebar: docs
---
-**SQL GET DATA SOURCE LIST** ( *sourceType* ; *sourceNamesArr* ; *driversArr* )
+**SQL GET DATA SOURCE LIST** ( *sourceType* : Integer ; *sourceNamesArr* : Text array ; *driversArr* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| sourceType | Integer | → | ソースタイプ: ユーザまたはシステム |
+| sourceType | Integer | → | ソースタイプ: ユーザまたはシステム |
| sourceNamesArr | Text array | ← | データソース名の配列 |
| driversArr | Text array | ← | ソース用のドライバの配列 |
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 989 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
index bb5c09c02954d1..954400dc564088 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-last-error
displayed_sidebar: docs
---
-**SQL GET LAST ERROR** ( *errCode* ; *errText* ; *errODBC* ; *errSQLServer* )
+**SQL GET LAST ERROR** ( *errCode* : Integer ; *errText* : Text ; *errODBC* : Text ; *errSQLServer* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 825 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
index b46e7a938aa880..2a128c5a043d54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-option
displayed_sidebar: docs
---
-**SQL GET OPTION** ( *option* ; *value* )
+**SQL GET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | オプション番号 |
+| option | Integer | → | オプション番号 |
| value | Integer, Text | ← | オプション値 |
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 819 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
index 753ae5b7ecc459..56334fb0493e18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
@@ -5,11 +5,11 @@ slug: /commands/sql-load-record
displayed_sidebar: docs
---
-**SQL LOAD RECORD** {( *numRecords* )}
+**SQL LOAD RECORD** ({ *numRecords* : Integer })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| numRecords | Integer | → | ロードするレコード数 |
+| numRecords | Integer | → | ロードするレコード数 |
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 822 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
index bc5050fdecf399..815bf62a450769 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
@@ -5,14 +5,14 @@ slug: /commands/sql-login
displayed_sidebar: docs
---
-**SQL LOGIN** {( *dataEntry* ; *userName* ; *password* ; * )}
+**SQL LOGIN** ({ *dataEntry* : Text ; *userName* : Text ; *password* : Text ; * })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| dataEntry | Text | → | 外部データベース名、または
外部データソースのIPアドレス、または
ODBCマネジャーのデータソース名、または
""で選択ダイアログボックスの表示 |
-| userName | Text | → | データソースに登録されているユーザー名 |
-| password | Text | → | データソースに登録されているパスワード |
-| * | 演算子 | → | Begin SQL/End SQLへ適用される 省略した場合、適用しない(ローカルデータベース)、 渡す場合、適用する |
+| dataEntry | Text | → | 外部データベース名、または
外部データソースのIPアドレス、または
ODBCマネジャーのデータソース名、または
""で選択ダイアログボックスの表示 |
+| userName | Text | → | データソースに登録されているユーザー名 |
+| password | Text | → | データソースに登録されているパスワード |
+| * | 演算子 | → | Begin SQL/End SQLへ適用される 省略した場合、適用しない(ローカルデータベース)、 渡す場合、適用する |
@@ -210,7 +210,7 @@ IPv6アドレス 2a01:e35:2e41:c960:dc39:3eb0:f29b:3747のマシン、およびT
| | |
| --- | --- |
| コマンド番号 | 817 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
index ece8537f9b7df4..1afd6ad4f21318 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 872 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
index c84287de3377b9..6c435e8238bc3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-option
displayed_sidebar: docs
---
-**SQL SET OPTION** ( *option* ; *value* )
+**SQL SET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | 設定するオプション番号 |
-| value | Integer, Text | → | 新しいオプションの値 |
+| option | Integer | → | 設定するオプション番号 |
+| value | Integer, Text | → | 新しいオプションの値 |
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 818 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
index bd85cf9ece76c5..4a3decd12afad8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-parameter
displayed_sidebar: docs
---
-**SQL SET PARAMETER** ( *object* ; *paramType* )
+**SQL SET PARAMETER** ( *object* : Object ; *paramType* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| object | Object | → | 使用する4Dオブジェクト (変数、配列、フィールド) |
-| paramType | Integer | → | 引数タイプ |
+| object | Object | → | 使用する4Dオブジェクト (変数、配列、フィールド) |
+| paramType | Integer | → | 引数タイプ |
@@ -84,7 +84,7 @@ SQLリクエスト内におかれた*?*記号が4Dオブジェクトの値で置
| | |
| --- | --- |
| コマンド番号 | 823 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
index a2b0dd03b0ba63..6ed3fe7ffa749d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
@@ -5,11 +5,11 @@ slug: /commands/square-root
displayed_sidebar: docs
---
-**Square root** ( *number* ) : Real
+**Square root** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 平方根を求める数値 |
+| number | Real | → | 平方根を求める数値 |
| 戻り値 | Real | ← | 平方根の値 |
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 539 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
index e3ddc17e62da8e..f57558135af5a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
@@ -5,14 +5,14 @@ slug: /commands/st-compute-expressions
displayed_sidebar: docs
---
-**ST COMPUTE EXPRESSIONS** ( {* ;} *object* {; *startSel* {; *endSel*}} )
+**ST COMPUTE EXPRESSIONS** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST COMPUTE EXPRESSIONS** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1285 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
index 25c80dca0c9216..b82d583e05561d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
@@ -5,15 +5,15 @@ slug: /commands/st-freeze-expressions
displayed_sidebar: docs
---
-**ST FREEZE EXPRESSIONS** ( {* ;} *object* {; *startSel* {; *endSel*}}{; *} )
+**ST FREEZE EXPRESSIONS** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}}{; *} )
**ST FREEZE EXPRESSIONS** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}}{; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
-| * | 演算子 | → | 渡した場合、固定化する前に4D式を更新 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 渡した場合、固定化する前に4D式を更新 |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1282 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
index ea0b21e75e0c12..ab15cd7b7d92e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
@@ -5,15 +5,15 @@ slug: /commands/st-get-attributes
displayed_sidebar: docs
---
-**ST GET ATTRIBUTES** ( {* ;} *object* ; *startSel* ; *endSel* ; *attribName* ; *attribValue* {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**ST GET ATTRIBUTES** ( * ; *object* : Text ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Integer ; *attribValue* : Variable {; ...(*attribName* : Integer, *attribValue* : Variable)} )
**ST GET ATTRIBUTES** ( *object* : Field, Variable ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Integer ; *attribValue* : Variable {; ...(*attribName* : Integer, *attribValue* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
テキストフィールドまたは変数 (* 省略時) |
-| startSel | Integer | → | テキスト選択の開始位置 |
-| endSel | Integer | → | テキスト選択の終了位置 |
-| attribName | Integer | → | 取得する属性 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
テキストフィールドまたは変数 (* 省略時) |
+| startSel | Integer | → | テキスト選択の開始位置 |
+| endSel | Integer | → | テキスト選択の終了位置 |
+| attribName | Integer | → | 取得する属性 |
| attribValue | Variable | ← | 属性の現在の値 |
@@ -105,7 +105,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1094 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
index 826d90523459f9..f9ef72aa64486d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-content-type
displayed_sidebar: docs
---
-**ST Get content type** ( {* ;} *object* {; *startSel* {; *endSel* {; *startBlock* {; *endBlock*}}}} ) : Integer
+**ST Get content type** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer {; *startBlock* : Integer {; *endBlock* : Integer}}}} ) : Integer
**ST Get content type** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer {; *startBlock* : Integer {; *endBlock* : Integer}}}} ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
| startBlock | Integer | ← | 選択範囲内の、同一のタイプの開始地点 |
| endBlock | Integer | ← | 選択範囲内の、同一のタイプの終了地点 |
| 戻り値 | Integer | ← | 内容のタイプ |
@@ -109,7 +109,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1286 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
index 5b9d921c501d4d..7c88bcc19bd051 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-expression
displayed_sidebar: docs
---
-**ST Get expression** ( {* ;} *object* {; *startSel* {; *endSel*}} ) : Text
+**ST Get expression** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
**ST Get expression** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
| 戻り値 | Text | ← | 4D式の内容 |
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
index 558147c7bb28f7..17446cfc03af15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-options
displayed_sidebar: docs
---
-**ST GET OPTIONS** ( {* ;} *object* ; *option* ; *value* {; *option2* ; *value2* ; ... ; *optionN* ; *valueN*} )
+**ST GET OPTIONS** ( * ; *object* : Text ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
**ST GET OPTIONS** ( *object* : Field, Variable ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| option | Integer | → | 取得したいオプション |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| option | Integer | → | 取得したいオプション |
| value | Integer | ← | オプションのカレントの値 |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
index 05ea6c4ac8795f..19fb1fffe331f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-plain-text
displayed_sidebar: docs
---
-**ST Get plain text** ( {* ;} *object* {; *refMode*} ) : Text
+**ST Get plain text** ( * ; *object* : Text {; *refMode* : Integer} ) : Text
**ST Get plain text** ( *object* : Field, Variable {; *refMode* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
テキストフィールドまたは変数 (* 省略時) |
-| refMode | Integer | → | Mode for handling references found in the text |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
テキストフィールドまたは変数 (* 省略時) |
+| refMode | Integer | → | Mode for handling references found in the text |
| 戻り値 | Text | ← | タグなしのテキスト |
@@ -110,7 +110,7 @@ It is now Go to the 4D site or Open a window
| | |
| --- | --- |
| コマンド番号 | 1092 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
index bcf8ca3b65e26f..cbf5460b29b9e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-text
displayed_sidebar: docs
---
-**ST Get text** ( {* ;} *object* {; *startSel* {; *endSel*}} ) : Text
+**ST Get text** ( * ; *object* : Text {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
**ST Get text** ( *object* : Field, Variable {; *startSel* : Integer {; *endSel* : Integer}} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)
省略時 objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時)または、テキストフィールドか変数 (* 省略時) |
-| startSel | Integer | → | 文字選択の開始位置 |
-| endSel | Integer | → | 文字選択の終了位置 |
+| * | 演算子 | → | 指定時objectはオブジェクト名 (文字列)
省略時 objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時)または、テキストフィールドか変数 (* 省略時) |
+| startSel | Integer | → | 文字選択の開始位置 |
+| endSel | Integer | → | 文字選択の終了位置 |
| 戻り値 | Text | ← | スタイルタグを含むテキスト |
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1116 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
index 016bc4246ebac7..3d00c38cbb8c75 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-get-url
displayed_sidebar: docs
---
-**ST GET URL** ( {* ;} *object* ; *urlText* ; *urlAddress* {; *startSel* {; *endSel*}} )
+**ST GET URL** ( * ; *object* : Text ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST GET URL** ( *object* : Field, Variable ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
| urlText | Text | ← | リンクの表示テキスト |
| urlAddress | Text | ← | URL アドレス |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
@@ -76,6 +76,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
index ec5ea8106c76b4..cc032547a4b21e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
@@ -5,15 +5,15 @@ slug: /commands/st-insert-expression
displayed_sidebar: docs
---
-**ST INSERT EXPRESSION** ( {* ;} *object* ; *expression* {; *startSel* {; *endSel*}} )
+**ST INSERT EXPRESSION** ( {* ;} *object* : Object ; *expression* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
-| object | Object | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| expression | Text | → | 挿入したい4D式と(任意の)フォーマット |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列) 省略時: object は変数またはフィールド |
+| object | Object | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| expression | Text | → | 挿入したい4D式と(任意の)フォーマット |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
@@ -93,7 +93,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
index 4b51dbb695880d..5a6987341c5847 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-insert-url
displayed_sidebar: docs
---
-**ST INSERT URL** ( {* ;} *object* ; *urlText* ; *urlAddress* {; *startSel* {; *endSel*}} )
+**ST INSERT URL** ( * ; *object* : Text ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST INSERT URL** ( *object* : Field, Variable ; *urlText* : Text ; *urlAddress* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
-| urlText | Text | → | リンクの表示テキスト |
-| urlAddress | Text | → | URL アドレス |
-| startSel | Integer | → | 選択範囲の開始地点 |
-| endSel | Integer | → | 選択範囲の終了地点 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)、省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、または変数やフィールド( * 省略時) |
+| urlText | Text | → | リンクの表示テキスト |
+| urlAddress | Text | → | URL アドレス |
+| startSel | Integer | → | 選択範囲の開始地点 |
+| endSel | Integer | → | 選択範囲の終了地点 |
@@ -69,7 +69,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1280 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
index 03b24060e43331..020ee11d823c9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
@@ -5,16 +5,16 @@ slug: /commands/st-set-attributes
displayed_sidebar: docs
---
-**ST SET ATTRIBUTES** ( {* ;} *object* ; *startSel* ; *endSel* ; *attribName* ; *attribValue* {; *attribName2* ; *attribValue2* ; ... ; *attribNameN* ; *attribValueN*} )
+**ST SET ATTRIBUTES** ( * ; *object* : Text ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Text ; *attribValue* : Text, Integer {; ...(*attribName* : Text, *attribValue* : Text, Integer)} )
**ST SET ATTRIBUTES** ( *object* : Field, Variable ; *startSel* : Integer ; *endSel* : Integer ; *attribName* : Text ; *attribValue* : Text, Integer {; ...(*attribName* : Text, *attribValue* : Text, Integer)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
-| startSel | Integer | → | 新しいテキスト選択の開始位置 |
-| endSel | Integer | → | 新しいテキスト選択の終了位置 |
-| attribName | Text | → | 設定する属性 |
-| attribValue | Text, Integer | → | 新しい属性値 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| startSel | Integer | → | 新しいテキスト選択の開始位置 |
+| endSel | Integer | → | 新しいテキスト選択の終了位置 |
+| attribName | Text | → | 設定する属性 |
+| attribValue | Text, Integer | → | 新しい属性値 |
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1093 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
index 575092c3b0f372..ea631ed8041f6c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
@@ -5,14 +5,14 @@ slug: /commands/st-set-options
displayed_sidebar: docs
---
-**ST SET OPTIONS** ( {* ;} *object* ; *option* ; *value* {; *option2* ; *value2* ; ... ; *optionN* ; *valueN*} )
+**ST SET OPTIONS** ( * ; *object* : Text ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
**ST SET OPTIONS** ( *object* : Field, Variable ; *option* : Integer ; *value* : Integer {; ...(*option* : Integer, *value* : Integer)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
-| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
-| option | Integer | → | 設定したいオプション |
-| value | Integer | → | オプションの新しい値 |
+| * | 演算子 | → | 指定時: object はオブジェクト名(文字列)
省略時: object は変数またはフィールド |
+| object | any | → | オブジェクト名( * 指定時)、
または変数やフィールド( * 省略時) |
+| option | Integer | → | 設定したいオプション |
+| value | Integer | → | オプションの新しい値 |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
index 27e2d1c7282b28..6aae38cdd6ba1b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-plain-text
displayed_sidebar: docs
---
-**ST SET PLAIN TEXT** ( {* ;} *object* ; *newText* {; *startSel* {; *endSel*}} )
+**ST SET PLAIN TEXT** ( * ; *object* : Text ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST SET PLAIN TEXT** ( *object* : Field, Variable ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)。省略時、オブジェクトは変数またはフィールド |
-| object | any | → | オブジェクト名 (*指定時)、または変数/フィールド (*省略時) |
-| newText | Text | → | 挿入するテキスト |
-| startSel | Integer | → | 選択の開始位置 |
-| endSel | Integer | → | 選択の終了位置 |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列)。省略時、オブジェクトは変数またはフィールド |
+| object | any | → | オブジェクト名 (*指定時)、または変数/フィールド (*省略時) |
+| newText | Text | → | 挿入するテキスト |
+| startSel | Integer | → | 選択の開始位置 |
+| endSel | Integer | → | 選択の終了位置 |
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1136 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
index 1307b2f368df28..8e0595ecbd8791 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-text
displayed_sidebar: docs
---
-**ST SET TEXT** ( {* ;} *object* ; *newText* {; *startSel* {; *endSel*}} )
+**ST SET TEXT** ( * ; *object* : Text ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
**ST SET TEXT** ( *object* : Field, Variable ; *newText* : Text {; *startSel* : Integer {; *endSel* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
-| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
-| newText | Text | → | 挿入するテキスト |
-| startSel | Integer | → | テキスト選択開始位置 |
-| endSel | Integer | → | テキスト選択終了位置 |
+| * | 演算子 | → | 指定時: objectはオブジェクト名 (文字)
省略時: objectは変数またはフィールド |
+| object | any | → | オブジェクト名 (* 指定時) または
フィールドまたは変数 (* 省略時) |
+| newText | Text | → | 挿入するテキスト |
+| startSel | Integer | → | テキスト選択開始位置 |
+| endSel | Integer | → | テキスト選択終了位置 |
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1115 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
index 941cc2d0f1d31f..48fcf876952acf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
@@ -5,12 +5,12 @@ slug: /commands/start-monitoring-activity
displayed_sidebar: docs
---
-**START MONITORING ACTIVITY** ( *duration* {; *source*} )
+**START MONITORING ACTIVITY** ( *duration* : Real {; *source* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| duration | Real | → | ログが開始される時間の長さ(秒単位) |
-| source | Integer | → | オペレーションのソース |
+| duration | Real | → | ログが開始される時間の長さ(秒単位) |
+| source | Integer | → | オペレーションのソース |
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1712 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
index 03cbbabd9d9cc8..d40218c47cf30c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ SQLサーバが正しく起動されるとOKシステム変数は1に、そう
| | |
| --- | --- |
| コマンド番号 | 962 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
index e15c1dcf29a3b2..27212ec257f069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 239 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
index bb93f25bc978fd..eb2eead86631de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
@@ -5,11 +5,11 @@ slug: /commands/std-deviation
displayed_sidebar: docs
---
-**Std deviation** ( *series* ) : Real
+**Std deviation** ( *series* : Field, Array ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 標準偏差を求めるデータ |
+| series | Field, Array | → | 標準偏差を求めるデータ |
| 戻り値 | Real | ← | seriesの標準偏差 |
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 26 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
index 53b0d278be15fa..e9eae1b5d9f2dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
index 3ce6d07aa1248f..78fb8e6c615bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ SQLサーバが起動していた場合、すべてのSQL接続が中断しま
| | |
| --- | --- |
| コマンド番号 | 963 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
index 2228b96769adb8..6dd0647b5a204c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
index 568d48aa24fc35..53093dab045612 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/string-list-to-array
displayed_sidebar: docs
---
-**STRING LIST TO ARRAY** ( *resID* ; *strings* {; *resFile*} )
+**STRING LIST TO ARRAY** ( *resID* : Integer ; *strings* : Text array {; *resFile* : Time} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| resID | Integer | → | リソースID番号、または 'group'要素の'id'属性 (XLIFF) |
+| resID | Integer | → | リソースID番号、または 'group'要素の'id'属性 (XLIFF) |
| strings | Text array | ← | STR#リソースから取り出した文字列、または 'group'要素から取り出した文字列 (XLIFF) |
-| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれているすべてのXLIFFファイル リソースファイル |
+| resFile | Time | → | リソースファイル参照番号、または 省略時、開かれているすべてのXLIFFファイル リソースファイル |
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 511 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
index 5df7bc5ed67775..c46a0c1d6b5df0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
@@ -5,11 +5,11 @@ slug: /commands/structure-file
displayed_sidebar: docs
---
-**Structure file** {( * )} : Text
+**Structure file** ( * ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | ホストデータベースのストラクチャファイルを返す |
+| * | 演算子 | → | ホストデータベースのストラクチャファイルを返す |
| 戻り値 | Text | ← | データベースストラクチャファイルのパス名 |
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 489 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
index 668c2a4198548c..056ff2855e7631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
@@ -5,13 +5,13 @@ slug: /commands/substring
displayed_sidebar: docs
---
-**Substring** ( *source* ; *firstChar* {; *numChars*} ) : Text
+**Substring** ( *source* : Text ; *firstChar* : Integer {; *numChars* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| source | Text | → | 一部を取り出す文字列 |
-| firstChar | Integer | → | 最初の文字位置 |
-| numChars | Integer | → | 取り出す文字列の長さ |
+| source | Text | → | 一部を取り出す文字列 |
+| firstChar | Integer | → | 最初の文字位置 |
+| numChars | Integer | → | 取り出す文字列の長さ |
| 戻り値 | Text | ← | 文字列の一部 |
@@ -69,6 +69,6 @@ Substringコマンドの使用例を次に示します。結果を変数 vsResul
| | |
| --- | --- |
| コマンド番号 | 12 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
index 48889f687bfb54..bc2ce8f4ab4cd2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
@@ -5,12 +5,12 @@ slug: /commands/subtotal
displayed_sidebar: docs
---
-**Subtotal** ( *data* {; *pageBreak*} ) : Real
+**Subtotal** ( *data* : Field {; *pageBreak* : Integer} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| data | Field | → | 小計を求める数値型のフィールドまたは変数 |
-| pageBreak | Integer | → | 改ページを行うブレークレベル |
+| data | Field | → | 小計を求める数値型のフィールドまたは変数 |
+| pageBreak | Integer | → | 改ページを行うブレークレベル |
| 戻り値 | Real | ← | データの小計 |
@@ -64,6 +64,6 @@ Subtotal関数はフォームに値を表示するために必要です。
| | |
| --- | --- |
| コマンド番号 | 97 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
index 2b46a44fbcbb1e..57c87364918576 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
@@ -5,11 +5,11 @@ slug: /commands/sum-squares
displayed_sidebar: docs
---
-**Sum squares** ( *series* ) : Real
+**Sum squares** ( *series* : Field, Array ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 平方和を求めるデータ |
+| series | Field, Array | → | 平方和を求めるデータ |
| 戻り値 | Real | ← | seriesの平方和 |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 28 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
index d054f8a0b1905b..88004f1b1b5fc6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
@@ -5,12 +5,12 @@ slug: /commands/sum
displayed_sidebar: docs
---
-**Sum** ( *series* {; *attributePath*} ) : Real
+**Sum** ( *series* : Field, Array {; *attributePath* : Text} ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 合計を求めるデータ |
-| attributePath | Text | → | 合計値を取得したい属性のパス |
+| series | Field, Array | → | 合計を求めるデータ |
+| attributePath | Text | → | 合計値を取得したい属性のパス |
| 戻り値 | Real | ← | seriesの合計 |
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
index a00592adb8c493..1b7d28f9bbd414 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1385 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
index d50cfdcbce1faf..9b127d6adc670b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/svg-export-to-picture
displayed_sidebar: docs
---
-**SVG EXPORT TO PICTURE** ( *elementRef* ; *pictVar* {; *exportType*} )
+**SVG EXPORT TO PICTURE** ( *elementRef* : Text ; *pictVar* : Picture {; *exportType* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | ルートXML要素参照 |
-| pictVar | Picture | → | XMLツリーを受け取るピクチャ変 (SVG ピクチャ) |
-| exportType | Integer | → | 0 = データソースを保持しない、1 = データソースをコピー(デフォルト)、2 = データソースを移動 |
+| elementRef | Text | → | ルートXML要素参照 |
+| pictVar | Picture | → | XMLツリーを受け取るピクチャ変 (SVG ピクチャ) |
+| exportType | Integer | → | 0 = データソースを保持しない、1 = データソースをコピー(デフォルト)、2 = データソースを移動 |
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1017 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
index 95c87356d4e641..090455d9f60b5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/svg-find-element-id-by-coordinates
displayed_sidebar: docs
---
-**SVG Find element ID by coordinates** ( {* ;} *pictureObject* ; *x* ; *y* ) : Text
+**SVG Find element ID by coordinates** ( {* ;} *pictureObject* : Picture ; *x* : Integer ; *y* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、pictureObjectはオブジェクト名 (文字列) 省略時、pictureObjectはフィールドまたは変数 |
-| pictureObject | Picture | → | オブジェクト名 (* 指定時) または フィーウドまたは変数 (* 省略時) |
-| x | Integer | → | X座標 (ピクセル) |
-| y | Integer | → | Y座標 (ピクセル) |
+| * | 演算子 | → | 指定時、pictureObjectはオブジェクト名 (文字列) 省略時、pictureObjectはフィールドまたは変数 |
+| pictureObject | Picture | → | オブジェクト名 (* 指定時) または フィーウドまたは変数 (* 省略時) |
+| x | Integer | → | X座標 (ピクセル) |
+| y | Integer | → | Y座標 (ピクセル) |
| 戻り値 | Text | ← | X, Yの位置に見つかった要素のID |
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1054 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
index 8cb6f853457d7a..a333eb58dffe40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
@@ -5,16 +5,16 @@ slug: /commands/svg-find-element-ids-by-rect
displayed_sidebar: docs
---
-**SVG Find element IDs by rect** ( {* ;} *pictureObject* ; *x* ; *y* ; *width* ; *height* ; *arrIDs* ) : Boolean
+**SVG Find element IDs by rect** ( {* ;} *pictureObject* : Picture ; *x* : Integer ; *y* : Integer ; *width* : Integer ; *height* : Integer ; *arrIDs* : Text array ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
-| pictureObject | Picture | → | オブジェクト名 (* 指定時) またはフィールドや変数 (* 省略時) |
-| x | Integer | → | 選択領域の左上の横座標 |
-| y | Integer | → | 選択領域の左上の縦座標 |
-| width | Integer | → | 選択領域の幅 |
-| height | Integer | → | 選択領域の高さ |
+| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
+| pictureObject | Picture | → | オブジェクト名 (* 指定時) またはフィールドや変数 (* 省略時) |
+| x | Integer | → | 選択領域の左上の横座標 |
+| y | Integer | → | 選択領域の左上の縦座標 |
+| width | Integer | → | 選択領域の幅 |
+| height | Integer | → | 選択領域の高さ |
| arrIDs | Text array | ← | バインドされた四角が選択領域に交差する要素のID |
| 戻り値 | Boolean | ← | True = 最低1つの要素が見つかった |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1109 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
index df03360a387f77..ab29f03243df85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/svg-get-attribute
displayed_sidebar: docs
---
-**SVG GET ATTRIBUTE** ( {* ;} *pictureObject* ; element_ID ; *attribName* ; *attribValue* )
+**SVG GET ATTRIBUTE** ( {* ;} *pictureObject* : Picture ; element_ID ; *attribName* : Text ; *attribValue* : Text, Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
-| pictureObject | Picture | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
-| element_ID | Text | → | 属性値を取得する要素のID |
-| attribName | Text | → | 取得する属性 |
+| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
+| pictureObject | Picture | → | オブジェクト名 (* 指定時) または
変数 (* 省略時) |
+| element_ID | Text | → | 属性値を取得する要素のID |
+| attribName | Text | → | 取得する属性 |
| attribValue | Text, Integer | ← | 現在の属性値 |
@@ -46,6 +46,6 @@ SVG属性に関する詳細は、[SVG SET ATTRIBUTE](svg-set-attribute.md)コマ
| | |
| --- | --- |
| コマンド番号 | 1056 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
index 62c8c7f1d879b2..95f9e751ff1aec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
@@ -5,16 +5,16 @@ slug: /commands/svg-set-attribute
displayed_sidebar: docs
---
-**SVG SET ATTRIBUTE** ( {* ;} *pictureObject* ; element_ID ; *attrName* ; *attribValue* {; *attrName2* ; *attribValue2* ; ... ; *attrNameN* ; *attribValueN*} {; *})
+**SVG SET ATTRIBUTE** ( {* ;} *pictureObject* : Picture ; element_ID ; *attrName* : Text ; *attribValue* : Text, Integer {; ...(*attrName* : Text, *attribValue* : Text, Integer)} {; *})
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
-| pictureObject | Picture | → | オブジェクト名 (* 指定時) または
変数 またはフィールド(* 省略時) |
-| element_ID | Text | → | 1つ以上の属性を設定する要素のID |
-| attrName | Text | → | 指定する属性 |
-| attribValue | Text, Integer | → | 属性の新しい値 |
-| * | 演算子 | → | 指定時 = SVG画像の内部DOMツリーを更新 (変数のみ) |
+| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
+| pictureObject | Picture | → | オブジェクト名 (* 指定時) または
変数 またはフィールド(* 省略時) |
+| element_ID | Text | → | 1つ以上の属性を設定する要素のID |
+| attrName | Text | → | 指定する属性 |
+| attribValue | Text, Integer | → | 属性の新しい値 |
+| * | 演算子 | → | 指定時 = SVG画像の内部DOMツリーを更新 (変数のみ) |
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1055 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
index e2de65ec19ebc8..2152fb8da77b90 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
@@ -5,14 +5,14 @@ slug: /commands/svg-show-element
displayed_sidebar: docs
---
-**SVG SHOW ELEMENT** ( {* ;} *pictureObject* ; *id* {; *margin*} )
+**SVG SHOW ELEMENT** ( {* ;} *pictureObject* : Picture ; *id* : Text {; *margin* : Integer} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
-| pictureObject | Picture | → | オブジェクト名 (* 指定時) または変数またはフィールド (* 省略時) |
-| id | Text | → | 表示する要素のID属性 |
-| margin | Integer | → | 表示のマージン (デフォルトでピクセル単位) |
+| * | 演算子 | → | 指定時: pictureObjectはオブジェクト名 (文字)
省略時: pictureObjectは変数 |
+| pictureObject | Picture | → | オブジェクト名 (* 指定時) または変数またはフィールド (* 省略時) |
+| id | Text | → | 表示する要素のID属性 |
+| margin | Integer | → | 表示のマージン (デフォルトでピクセル単位) |
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1108 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
index c2149d1ee71777..39008aaed9c0a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
@@ -5,11 +5,11 @@ slug: /commands/system-folder
displayed_sidebar: docs
---
-**System folder** {( *type* )} : Text
+**System folder** ( *type* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| type | Integer | → | システムフォルダのタイプ |
+| type | Integer | → | システムフォルダのタイプ |
| 戻り値 | Text | ← | システムフォルダへのパス名 |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 487 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
index ec8542d49e3668..322f19076912ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ Windows マシン上で以下のコードを実行した場合:
| | |
| --- | --- |
| コマンド番号 | 1571 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
index e4dc2cc861d4a5..27ad39964ead48 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
@@ -5,11 +5,11 @@ slug: /commands/table-fragmentation
displayed_sidebar: docs
---
-**Table fragmentation** ( *aTable* ) : Real
+**Table fragmentation** ( *aTable* : Table ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | フラグメント率を取得するテーブル |
+| aTable | Table | → | フラグメント率を取得するテーブル |
| 戻り値 | Real | ← | フラグメンテーションの割合 |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1127 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
index 00e3bdd8ed6d70..1a533567176dbf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
@@ -5,11 +5,11 @@ slug: /commands/table-name
displayed_sidebar: docs
---
-**Table name** ( *tableNum* ) : Text
**Table name** ( *tablePtr* ) : Text
+**Table name** ( *tableNum* : 倍長整数, ポインター ) : Text
**Table name** ( *tablePtr* : 倍長整数, ポインター ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号、またはテーブルポインタ |
+| tableNum | tablePtr | 倍長整数, ポインター | → | テーブル番号、またはテーブルポインタ |
| 戻り値 | Text | ← | テーブルの名前 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 256 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md
index 5c538c8471bcce..8a9c183d26cea1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/table.md
@@ -5,22 +5,24 @@ slug: /commands/table
displayed_sidebar: docs
---
-**Table** ( *tableNum* ) : Pointer
**Table** ( *tablePtr* ) : Integer
**Table** ( *fieldPtr* ) : Integer
+**Table** ( *tableNum* : Integer ) : Pointer
**Table** ( *tablePtr* : Pointer ) : Integer
**Table** ( *fieldPtr* : Pointer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| tableNum | aPtr | 倍長整数, ポインター | → | テーブル番号、または テーブルポインタ、または フィールドポインタ |
-| 戻り値 | Pointer, Integer | ← | テーブル番号を渡した場合テーブルポインタ テーブルポインタを渡した場合テーブル番号 フィールドポインタを渡した場合テーブル番号 |
+| tableNum | Integer | → | テーブル番号 |
+| tablePtr | Pointer | → | テーブルポインタ |
+| fieldPtr | Pointer | → | フィールドポインタ |
+| 戻り値 | Pointer, Integer | ← | テーブル番号を渡した場合テーブルポインタ テーブルポインタを渡した場合テーブル番号 フィールドポインタを渡した場合テーブル番号 |
## 説明
-Tableコマンドには、3つの形式があります。
+Tableコマンドには、3つの形式があります。
-* *tableNum*にテーブル番号を渡した場合は、テーブルポインタを返します。
+* *tableNum*にテーブル番号を渡した場合は、テーブルポインタを返します。
* *aPtr*にテーブルポインタを渡した場合は、テーブル番号を返します。
-* *aPtr*にフィールドポインタを渡した場合は、テーブル番号を返します。
+* *aPtr*にフィールドポインタを渡した場合は、テーブル番号を返します。
## 例題 1
@@ -66,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 252 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
index 7e4c65a1d146f9..8fc46ae1df823f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
@@ -5,11 +5,11 @@ slug: /commands/tan
displayed_sidebar: docs
---
-**Tan** ( *number* ) : Real
+**Tan** ( *number* : Real ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | タンジェントを求めるラジアン値 |
+| number | Real | → | タンジェントを求めるラジアン値 |
| 戻り値 | Real | ← | タンジェント値 |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 19 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
index 4a21c3ee87b0fa..019c74e81799d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 486 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
index 9ad9d0f2acef4e..e0d2677b0b1b5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
@@ -5,11 +5,11 @@ slug: /commands/test-path-name
displayed_sidebar: docs
---
-**Test path name** ( *pathname* ) : Integer
+**Test path name** ( *pathname* : Text ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| pathname | Text | → | ディレクトリ、フォルダまたはドキュメントへのパス名 |
+| pathname | Text | → | ディレクトリ、フォルダまたはドキュメントへのパス名 |
| 戻り値 | Integer | ← | 1=パス名は既存のドキュメントを表す 0=パス名は既存のディレクトリまたはフォルダを表す <0=無効のパス名、OSファイルマネージャエラーコード |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 476 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
index 4cfa67a3970923..4182132b7bc833 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/test-semaphore
displayed_sidebar: docs
---
-**Test semaphore** ( *semaphore* ) : Boolean
+**Test semaphore** ( *semaphore* : Text ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| semaphore | Text | → | テストするセマフォ |
+| semaphore | Text | → | テストするセマフォ |
| 戻り値 | Boolean | ← | True: セマフォが存在する, False: セマフォは存在しない |
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 652 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
index df358a771ffb1d..a9acac9700b1af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
@@ -5,17 +5,17 @@ slug: /commands/text-to-array
displayed_sidebar: docs
---
-**TEXT TO ARRAY** ( *varText* ; *arrText* ; *width* ; *fontName* ; *fontSize* {; *fontStyle* {; *}} )
+**TEXT TO ARRAY** ( *varText* : Text ; *arrText* : Text array ; *width* : Integer ; *fontName* : Text ; *fontSize* : Integer {; *fontStyle* : Integer {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| varText | Text | → | 分割する元のテキスト |
+| varText | Text | → | 分割する元のテキスト |
| arrText | Text array | ← | 単語または行に分割されたテキストを受け取る配列 |
-| width | Integer | → | 文字列の最大幅 (ピクセル) |
-| fontName | Text | → | フォント名 |
-| fontSize | Integer | → | フォントサイズ |
-| fontStyle | Integer | → | フォントスタイル |
-| * | 演算子 | → | 指定時、テキストをマルチスタイルとして解釈する |
+| width | Integer | → | 文字列の最大幅 (ピクセル) |
+| fontName | Text | → | フォント名 |
+| fontSize | Integer | → | フォントサイズ |
+| fontStyle | Integer | → | フォントスタイル |
+| * | 演算子 | → | 指定時、テキストをマルチスタイルとして解釈する |
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
index 7c9393413ab193..cd66fcc0f16483 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/text-to-blob
displayed_sidebar: docs
---
-**TEXT TO BLOB** ( *text* ; *blob* {; *textFormat* {; offset}} )
**TEXT TO BLOB** ( *text* ; *blob* {; *textFormat* {; *}} )
+**TEXT TO BLOB** ( *text* : Text ; *blob* : Blob {; *textFormat* : Integer {; offset}} )
**TEXT TO BLOB** ( *text* : Text ; *blob* : Blob {; *textFormat* : Integer {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| text | Text | → | BLOBに書き込むテキスト |
-| Blob | Blob | → | テキストを受け取るBLOB |
-| textFormat | Integer | → | テキストのフォーマットと文字セット |
-| offset | * | 変数, 演算子 |↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
-| || | *でない場合、書き込み後の新しいオフセット |
+| text | Text | → | BLOBに書き込むテキスト |
+| Blob | Blob | → | テキストを受け取るBLOB |
+| textFormat | Integer | → | テキストのフォーマットと文字セット |
+| offset | * | 変数, 演算子 | ↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
+| | | | *でない場合、書き込み後の新しいオフセット |
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
index 963d4de73a4698..c2e24a6dacd394 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
@@ -5,14 +5,14 @@ slug: /commands/text-to-document
displayed_sidebar: docs
---
-**TEXT TO DOCUMENT** ( *fileName* ; *text* {; *charSet* {; *breakMode*}} )
+**TEXT TO DOCUMENT** ( *fileName* : Text ; *text* : Text {; *charSet* : Text, Integer {; *breakMode* : Integer}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | ドキュメント名またはドキュメントへのパス名 |
-| text | Text | → | ドキュメントに保存するテキスト |
-| charSet | Text, Integer | → | 文字コードの名前または数字 |
-| breakMode | Integer | → | 改行の処理モード |
+| fileName | Text | → | ドキュメント名またはドキュメントへのパス名 |
+| text | Text | → | ドキュメントに保存するテキスト |
+| charSet | Text, Integer | → | 文字コードの名前または数字 |
+| breakMode | Integer | → | 改行の処理モード |
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1237 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
index 2eb326598e8154..445b188580798a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
@@ -5,17 +5,14 @@ slug: /commands/throw
displayed_sidebar: docs
---
-**throw** ( *errorCode* {; *description*} )
-
- *throw* {( *errorObj* )}
+**throw** ( *errorCode* : Integer {; *description* : Text} )
**throw** ( *errorObj* : Object )
+
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| errorCode | Integer | → | エラーコードを表す倍調整数 |
-| description | Text | → | エラーの説明 (テキスト) |
-| throw {( errorObj )} |
-| 引数 | 型 | 説明 |
-| errorObj | Object | → | エラー構築用のプロパティを格納するオブジェクト |
+| errorCode | Integer | → | エラーコードを表す倍調整数 |
+| description | Text | → | エラーの説明 (テキスト) |
+| errorObj | Object | → | エラー構築用のプロパティを格納するオブジェクト |
@@ -110,6 +107,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| コマンド番号 | 1805 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
index a1d9f2024ad4e9..543bb352ac5eda 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 458 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
index 43e1f19c997732..1b71c3cc59ee7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
@@ -5,11 +5,11 @@ slug: /commands/time-string
displayed_sidebar: docs
---
-**Time string** ( *seconds* ) : Text
+**Time string** ( *seconds* : Integer, Time ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| seconds | Integer, Time | → | 0時からの秒数 |
+| seconds | Integer, Time | → | 0時からの秒数 |
| 戻り値 | Text | ← | 24時フォーマットの時間文字列 |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 180 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md
index b43e9227a46314..fca57fc5c0deb2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/time.md
@@ -5,11 +5,11 @@ slug: /commands/time
displayed_sidebar: docs
---
-**Time** ( *timeValue* ) : Time
+**Time** ( *timeValue* : Text, Integer ) : Time
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| timeValue | Text, Integer | → | 時間を表す文字列または倍長整数 |
+| timeValue | Text, Integer | → | 時間を表す文字列または倍長整数 |
| 戻り値 | Time | ← | 時間 |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 179 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
index 567e994c7b75d2..a6db9792976786 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1445 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
index 1041ade562e65f..fa4280429b163c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1016 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
index eedc14a003b50a..65cc17247897c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
@@ -64,6 +64,6 @@ DEBUG プロジェクトメソッドを次に示します:
| | |
| --- | --- |
| コマンド番号 | 157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
index 212ed4df923a93..a96f85a69df176 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 961 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
index 9d31daea8b651c..ad531717321be3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
@@ -5,17 +5,16 @@ slug: /commands/transform-picture
displayed_sidebar: docs
---
-**TRANSFORM PICTURE** ( *picture* ; *operator* {; *param1* {; *param2* {; *param3* {; *param4*}}}} )
+**TRANSFORM PICTURE** ( *picture* : Picture ; *operator* : Integer {; *param1* : Real {; *param2* : Real {; *param3* : Real {; *param4* : Real}}}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| picture | Picture | → | 変換するソースピクチャ |
-| ← | 変換した結果のピクチャ |
-| operator | Integer | → | 行う変換のタイプ |
-| param1 | Real | → | 変換パラメタ |
-| param2 | Real | → | 変換パラメタ |
-| param3 | Real | → | 変換パラメタ |
-| param4 | Real | → | 変換パラメタ |
+| picture | Picture | ↔ | *in:* Source picture to be transformed
*out:* Resulting picture after transformation |
+| operator | Integer | → | 行う変換のタイプ |
+| param1 | Real | → | 変換パラメタ |
+| param2 | Real | → | 変換パラメタ |
+| param3 | Real | → | 変換パラメタ |
+| param4 | Real | → | 変換パラメタ |
@@ -77,6 +76,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 988 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
index ecb35265285e60..99cccf3b8b1662 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 369 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
index a7e602062f28d9..e4bc474e0a5409 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 398 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
index bcfa4f7cc80d8d..56c6cafedc5cb4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
@@ -5,11 +5,11 @@ slug: /commands/trigger-properties
displayed_sidebar: docs
---
-**TRIGGER PROPERTIES** ( *triggerLevel* ; *dbEvent* ; *tableNum* ; *recordNum* )
+**TRIGGER PROPERTIES** ( *triggerLevel* : Integer ; *dbEvent* : Integer ; *tableNum* : Integer ; *recordNum* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| triggerLevel | Integer | → | トリガ実行サイクルレベル |
+| triggerLevel | Integer | → | トリガ実行サイクルレベル |
| dbEvent | Integer | ← | データベースイベント |
| tableNum | Integer | ← | 影響を受けるテーブル番号 |
| recordNum | Integer | ← | 影響を受けるレコード番号 |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md
index 18a3324ff7347b..c34568b741b671 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 214 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
index 0d06c801366e14..25b2b033b438c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
@@ -5,12 +5,12 @@ slug: /commands/trunc
displayed_sidebar: docs
---
-**Trunc** ( *number* ; *places* ) : Real
+**Trunc** ( *number* : Real ; *places* : Integer ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| number | Real | → | 切り捨てる数値 |
-| places | Integer | → | 切り捨てを行う位置 |
+| number | Real | → | 切り捨てる数値 |
+| places | Integer | → | 切り捨てを行う位置 |
| 戻り値 | Real | ← | 切り捨てられた数値 |
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 95 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
index 18fa55db0fbe90..ab3671e0dc18e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
@@ -5,11 +5,11 @@ slug: /commands/truncate-table
displayed_sidebar: docs
---
-**TRUNCATE TABLE** {( *aTable* )}
+**TRUNCATE TABLE** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | すべてのレコードが削除されるテーブル 省略時はデフォルトテーブル |
+| aTable | Table | → | すべてのレコードが削除されるテーブル 省略時はデフォルトテーブル |
@@ -44,7 +44,7 @@ TRUNCATE TABLEコマンドは注意して使用しなければなりませんが
| | |
| --- | --- |
| コマンド番号 | 1051 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md
index c5a0745fe9abe0..e180a17fcbc828 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/type.md
@@ -5,11 +5,11 @@ slug: /commands/type
displayed_sidebar: docs
---
-**Type** ( *fieldVar* ) : Integer
+**Type** ( *fieldVar* : Field, Variable ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fieldVar | Field, Variable | → | テストするフィールドまたは変数 |
+| fieldVar | Field, Variable | → | テストするフィールドまたは変数 |
| 戻り値 | Integer | ← | データタイプ番号 |
@@ -152,6 +152,6 @@ Type ファンクションはフィールド、インタープロセス変数、
| | |
| --- | --- |
| コマンド番号 | 295 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
index f95f288faa7918..93a4fc0e940f5c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
@@ -5,11 +5,11 @@ slug: /commands/undefined
displayed_sidebar: docs
---
-**Undefined** ( *expression* ) : Boolean
+**Undefined** ( *expression* : Expression ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| expression | Expression | → | テストしたい結果の値を返す式 |
+| expression | Expression | → | テストしたい結果の値を返す式 |
| 戻り値 | Boolean | ← | True = 変数は現在未定義である False = 変数は現在定義されている |
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 82 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md
index 2e82274116e409..e8cea40fd6051c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/union.md
@@ -5,13 +5,13 @@ slug: /commands/union
displayed_sidebar: docs
---
-**UNION** ( *set1* ; *set2* ; *resultSet* )
+**UNION** ( *set1* : Text ; *set2* : Text ; *resultSet* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set1 | Text | → | 最初のセット |
-| set2 | Text | → | 2番目のセット |
-| resultSet | Text | → | 結果のセット
Resulting set |
+| set1 | Text | → | 最初のセット |
+| set2 | Text | → | 2番目のセット |
+| resultSet | Text | → | 結果のセット
Resulting set |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 120 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
index cebfad49dfe325..4590ba8d356358 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
@@ -5,11 +5,11 @@ slug: /commands/unload-record
displayed_sidebar: docs
---
-**UNLOAD RECORD** {( *aTable* )}
+**UNLOAD RECORD** ({ *aTable* : Table })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aTable | Table | → | レコードをアンロードするテーブル, または 省略時、デフォルトテーブル |
+| aTable | Table | → | レコードをアンロードするテーブル, または 省略時、デフォルトテーブル |
@@ -35,6 +35,6 @@ UNLOAD RECORDはメモリからレコードをアンロードしますが、そ
| | |
| --- | --- |
| コマンド番号 | 212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
index 8644d3cbb4a32f..bb0e357c0268a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 649 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
index c08e3038030b18..68803defa33090 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
@@ -5,12 +5,12 @@ slug: /commands/uppercase
displayed_sidebar: docs
---
-**Uppercase** ( *aString* {; *} ) : Text
+**Uppercase** ( *aString* : Text {; *} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| aString | Text | → | 英大文字にする文字列 |
-| * | 演算子 | → | 渡されると、アクセント符号を保持 |
+| aString | Text | → | 英大文字にする文字列 |
+| * | 演算子 | → | 渡されると、アクセント符号を保持 |
| 戻り値 | Text | ← | 英大文字に変換した文字列 |
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 13 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
index 0e0bbf73fa3450..90bf598a9738b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| map | * | 文字, 演算子 | → | 使用する文字セット名 (Unicodeモード), または 使用するASCIIマップドキュメント名 (ASCIIモード), または * の場合、デフォルトの文字セット/ASCIIマップにリセット |
-| mapInOut | Integer | → | 0 = 出力マップ 1 = 入力マップ 省略した場合、出力マップ |
+| map | * | Text, Operator | → | 使用する文字セット名 (Unicodeモード), または 使用するASCIIマップドキュメント名 (ASCIIモード), または * の場合、デフォルトの文字セット/ASCIIマップにリセット |
+| mapInOut | Integer | → | 0 = 出力マップ 1 = 入力マップ 省略した場合、出力マップ |
@@ -60,7 +60,7 @@ IANA名に関する説明は[CONVERT FROM TEXT](convert-from-text.md)コマン
| | |
| --- | --- |
| コマンド番号 | 205 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
index 4fd172434c34bb..9673e7ffa05b80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/use-named-selection
displayed_sidebar: docs
---
-**USE NAMED SELECTION** ( *name* )
+**USE NAMED SELECTION** ( *name* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| name | Text | → | 使用する命名セレクション名 |
+| name | Text | → | 使用する命名セレクション名 |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 332 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
index 7118fc1b5ea547..837e2d65c4a84c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
@@ -5,11 +5,11 @@ slug: /commands/use-set
displayed_sidebar: docs
---
-**USE SET** ( *set* )
+**USE SET** ( *set* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| set | Text | → | 使用するセットの名前 |
+| set | Text | → | 使用するセットの名前 |
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
index a81b2a50fa1aad..588776a1e4cdda 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
@@ -5,12 +5,12 @@ slug: /commands/user-in-group
displayed_sidebar: docs
---
-**User in group** ( *user* ; *group* ) : Boolean
+**User in group** ( *user* : Text ; *group* : Text ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| user | Text | → | ユーザ名 |
-| group | Text | → | グループ名 |
+| user | Text | → | ユーザ名 |
+| group | Text | → | グループ名 |
| 戻り値 | Boolean | ← | TRUE = ユーザがグループに存在する場合 FALSE = ユーザがグループに存在しない場合 |
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 338 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
index c7a99509422b02..f15b6e46799239 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
@@ -5,12 +5,11 @@ slug: /commands/users-to-blob
displayed_sidebar: docs
---
-**USERS TO BLOB** ( *users* )
+**USERS TO BLOB** ( *users* : Blob )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| users | Blob | → | ユーザーが格納されたBLOB |
-| ← | 暗号化されたユーザーアカウント |
+| users | Blob | ↔ | *in:* BLOB that must contain users
*out:* User accounts (encrypted) |
@@ -37,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 849 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
index 9b23debbe27b2d..8adc26cbddb0d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
@@ -5,13 +5,13 @@ slug: /commands/validate-password
displayed_sidebar: docs
---
-**Validate password** ( *userID* ; *password* {; *digest*} ) : Boolean
+**Validate password** ( *userID* : Integer, Text ; *password* : Text {; *digest* : Boolean} ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userID | Integer, Text | → | ユニークなユーザID |
-| password | Text | → | 暗号化されていないパスワード |
-| digest | Boolean | → | Digest password = True,
Plain-text password (default) = False |
+| userID | Integer, Text | → | ユニークなユーザID |
+| password | Text | → | 暗号化されていないパスワード |
+| digest | Boolean | → | Digest password = True,
Plain-text password (default) = False |
| 戻り値 | Boolean | ← | True = 有効なパスワード False = 無効なパスワード |
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 638 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
index ebdc4bfe8584fd..22debb722fdebe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ OK変数に0が代入された場合、トランザクションは自動的に
| | |
| --- | --- |
| コマンド番号 | 240 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
index cf5a3e7d67547d..b144b28435b37b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
@@ -5,11 +5,11 @@ slug: /commands/value-type
displayed_sidebar: docs
---
-**Value type** ( *expression* ) : Integer
+**Value type** ( *expression* : Expression ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| expression | Expression | → | テストしたい結果を返す式 |
+| expression | Expression | → | テストしたい結果を返す式 |
| 戻り値 | Integer | ← | データ型の数字 |
@@ -119,6 +119,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1509 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
index 1c3e11c8f1fdac..f04a35e1f1b787 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
@@ -5,14 +5,14 @@ slug: /commands/variable-to-blob
displayed_sidebar: docs
---
-**VARIABLE TO BLOB** ( *variable* ; *blob* {; offset } )
**VARIABLE TO BLOB** ( *variable* ; *blob* {; *} )
+**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; offset } )
**VARIABLE TO BLOB** ( *variable* : Variable ; *blob* : Blob {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| variable | Variable | → | BLOBに格納する変数 |
-| Blob | Blob | → | 変数を受け取るBLOB |
-| offset | * | 変数, 演算子 |↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
-| ||| *でない場合、書き込み後の新しいオフセット |
+| variable | Variable | → | BLOBに格納する変数 |
+| Blob | Blob | → | 変数を受け取るBLOB |
+| offset | * | 変数, 演算子 | ↔ | BLOB内のオフセット (バイト単位) または値を追加する場合 * |
+| | | | *でない場合、書き込み後の新しいオフセット |
@@ -136,7 +136,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 532 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
index 215a18c73f5d3b..d8e90f1ce4f80a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
@@ -5,13 +5,13 @@ slug: /commands/variable-to-variable
displayed_sidebar: docs
---
-**VARIABLE TO VARIABLE** ( *process* ; *dstVar* ; *srcVar* {; *dstVar2* ; *srcVar2* ; ... ; *dstVarN* ; *srcVarN*} )
+**VARIABLE TO VARIABLE** ( *process* : Integer ; *dstVar* : Variable ; *srcVar* : Variable {; ...(*dstVar* : Variable, *srcVar* : Variable)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| process | Integer | → | 送り先プロセス番号 |
-| dstVar | Variable | → | 送り先変数 |
-| srcVar | Variable | → | ソース変数 |
+| process | Integer | → | 送り先プロセス番号 |
+| dstVar | Variable | → | 送り先変数 |
+| srcVar | Variable | → | ソース変数 |
@@ -68,6 +68,6 @@ VARIABLE TO VARIABLE は、任意のタイプの送り先プロセスまたは
| | |
| --- | --- |
| コマンド番号 | 635 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
index f20e3157176fb0..0739ba0db1dbb7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
@@ -5,11 +5,11 @@ slug: /commands/variance
displayed_sidebar: docs
---
-**Variance** ( *series* ) : Real
+**Variance** ( *series* : Field, Array ) : Real
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| series | Field, Array | → | 分散を求めるデータ |
+| series | Field, Array | → | 分散を求めるデータ |
| 戻り値 | Real | ← | seriesの分散 |
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 27 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
index 7516df1a5423c2..527c2ad7a72e4a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/verify-current-data-file
displayed_sidebar: docs
---
-**VERIFY CURRENT DATA FILE** {( *objects* ; *options* ; *method* {; *tablesArray* {; *fieldsArray*}} )}
+**VERIFY CURRENT DATA FILE** ({ *objects* : Integer ; *options* : Integer ; *method* : Text {; *tablesArray* : Integer array {; *fieldsArray* : Integer array}} })
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| objects | Integer | → | 検証するオブジェクト |
-| options | Integer | → | 検証オプション |
-| method | Text | → | 4Dコールバックメソッド名 |
-| tablesArray | Integer array | → | 検証するテーブル番号 |
-| fieldsArray | 2D Integer array, 2D Integer array, 2D Real array | → | 検証するインデックス番号 |
+| objects | Integer | → | 検証するオブジェクト |
+| options | Integer | → | 検証オプション |
+| method | Text | → | 4Dコールバックメソッド名 |
+| tablesArray | Integer array | → | 検証するテーブル番号 |
+| fieldsArray | Integer array | → | 2D array, numbers of indexes to be checked |
@@ -48,7 +48,7 @@ VERIFY CURRENT DATA FILEコマンドを引数なしで呼び出すと、デフ
| | |
| --- | --- |
| コマンド番号 | 1008 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
index 229764db3fb82d..25a5685982898d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
@@ -5,17 +5,17 @@ slug: /commands/verify-data-file
displayed_sidebar: docs
---
-**VERIFY DATA FILE** ( *structurePath* ; *dataPath* ; *objects* ; *options* ; *method* {; *tablesArray* {; *fieldsArray*}} )
+**VERIFY DATA FILE** ( *structurePath* : Text ; *dataPath* : Text ; *objects* : Integer ; *options* : Integer ; *method* : Text {; *tablesArray* : Integer array {; *fieldsArray* : Integer array}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| structurePath | Text | → | 検証する4Dストラクチャファイルのパス名 |
-| dataPath | Text | → | 検証する4Dデータファイルのパス名 |
-| objects | Integer | → | 検証するオブジェクト |
-| options | Integer | → | 検証オプション |
-| method | Text | → | 4Dコールバックメソッド名 |
-| tablesArray | Integer array | → | 検証するテーブル番号 |
-| fieldsArray | 2D Integer array, 2D Integer array, 2D Real array | → | 検証するインデックス番号 |
+| structurePath | Text | → | 検証する4Dストラクチャファイルのパス名 |
+| dataPath | Text | → | 検証する4Dデータファイルのパス名 |
+| objects | Integer | → | 検証するオブジェクト |
+| options | Integer | → | 検証オプション |
+| method | Text | → | 4Dコールバックメソッド名 |
+| tablesArray | Integer array | → | 検証するテーブル番号 |
+| fieldsArray | Integer array | → | 検証するインデックス番号 |
@@ -175,7 +175,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 939 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
index 329ed6e9589588..730ce9d11fad5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/verify-password-hash
displayed_sidebar: docs
---
-**Verify password hash** ( *password* ; *hash* ) : Boolean
+**Verify password hash** ( *password* : Text ; *hash* : Text ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| password | Text | → | ユーザーのパスワード。最初の72文字のみ使用。 |
-| hash | Text | → | パスワードのハッシュ |
+| password | Text | → | ユーザーのパスワード。最初の72文字のみ使用。 |
+| hash | Text | → | パスワードのハッシュ |
| 戻り値 | Boolean | ← | パスワードとハッシュが合致する場合にはTRUE、それ以外の場合にはFALSE。 |
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
index 64a04c36dc6881..bc632a5170feef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 495 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
index 2e79f9a31b49b0..186f063262bbe8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/volume-attributes
displayed_sidebar: docs
---
-**VOLUME ATTRIBUTES** ( *volume* ; *size* ; *used* ; *free* )
+**VOLUME ATTRIBUTES** ( *volume* : Text ; *size* : Real ; *used* : Real ; *free* : Real )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| volume | Text | → | ボリュームの名前 |
+| volume | Text | → | ボリュームの名前 |
| size | Real | ← | ボリュームのサイズ(バイト単位) |
| used | Real | ← | 使用サイズ(バイト単位) |
| free | Real | ← | 空きサイズ(バイト単位) |
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 472 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
index 715f5e4f1d4783..4565de1a8ee87d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
@@ -5,7 +5,7 @@ slug: /commands/volume-list
displayed_sidebar: docs
---
-**VOLUME LIST** ( *volumes* )
+**VOLUME LIST** ( *volumes* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
index d4e6b6edcf87d0..f1f43758584056 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-back-url-available
displayed_sidebar: docs
---
-**WA Back URL available** ( {* ;} *object* ) : Boolean
+**WA Back URL available** ( * ; *object* : Text ) : Boolean
**WA Back URL available** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Boolean | ← | 開かれた一連のURLで、前のURLが有効ならTrue、 そうでなければFalse |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1026 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
index 39c6bc662732d4..16bd17427b61a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
@@ -5,13 +5,13 @@ slug: /commands/wa-create-url-history-menu
displayed_sidebar: docs
---
-**WA Create URL history menu** ( {* ;} *object* {; *direction*} ) : Text
+**WA Create URL history menu** ( * ; *object* : Text {; *direction* : Integer} ) : Text
**WA Create URL history menu** ( *object* : Field, Variable {; *direction* : Integer} ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| direction | Integer | → | 0 または省略=戻るURLのリスト, 1=進むURLリスト |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| direction | Integer | → | 0 または省略=戻るURLのリスト, 1=進むURLリスト |
| 戻り値 | Text | ← | メニュー参照 |
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1049 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
index 909268bc042ef7..aa3de1738ac188 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
@@ -5,14 +5,14 @@ slug: /commands/wa-evaluate-javascript
displayed_sidebar: docs
---
-**WA Evaluate JavaScript** ( {* ;} *object* ; *jsCode* {; *type*} ) : any
+**WA Evaluate JavaScript** ( * ; *object* : Text ; *jsCode* : Text {; *type* : Integer} ) : any
**WA Evaluate JavaScript** ( *object* : Field, Variable ; *jsCode* : Text {; *type* : Integer} ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| jsCode | Text | → | JavaScriptコード |
-| type | Integer | → | 戻り値に指定する型 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| jsCode | Text | → | JavaScriptコード |
+| type | Integer | → | 戻り値に指定する型 |
| 戻り値 | Object, Text, Pointer, Real, Date, Time | ← | 実行結果 |
@@ -107,6 +107,6 @@ HTML ファイル内にあるJavaScriptファンクションの例:
| | |
| --- | --- |
| コマンド番号 | 1029 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
index 4571db82e71b3d..6b1f30aa496233 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
@@ -5,16 +5,16 @@ slug: /commands/wa-execute-javascript-function
displayed_sidebar: docs
---
-**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *object* ; *jsFunction* ; *result* {; *param*}{; *param2* ; ... ; *paramN*} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *object* ; *jsFunction* ; * {; *param*}{; *param2* ; ... ; *paramN*} )
+**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *object* : Text ; *jsFunction* : Text ; *result* : Variable {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *object* : Field, Variable ; *jsFunction* : Text ; *result* : Variable {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *object* : Text ; *jsFunction* : Text ; * {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *object* : Field, Variable ; *jsFunction* : Text ; * {; *...param* : any} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| jsFunction | Text | → | 実行するJavaScript関数名 |
-| result|* | 変数 | → | または関数が結果を返さない場合 * |
-| ← | 関数結果 (返される場合) |
-| param | Text, Number, Date, Object, Collection | → | 関数に渡す引数 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| jsFunction | Text | → | 実行するJavaScript関数名 |
+| result | Variable | ← | Function result (if expected) |
+| * | Operator | → | Function with no result |
+| param | any | → | 関数に渡す引数 |
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1043 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
index 2df75eff14d0e4..c2b1e4cd643c7e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-forward-url-available
displayed_sidebar: docs
---
-**WA Forward URL available** ( {* ;} *object* ) : Boolean
+**WA Forward URL available** ( * ; *object* : Text ) : Boolean
**WA Forward URL available** ( *object* : Field, Variable ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Boolean | ← | 開かれた一連のURLで、次のURLが有効ならTrue、 そうでなければFalse |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1027 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
index b6ee114ac022e8..c20c11cc4c796d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-current-url
displayed_sidebar: docs
---
-**WA Get current URL** ( {* ;} *object* ) : Text
+**WA Get current URL** ( * ; *object* : Text ) : Text
**WA Get current URL** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Text | ← | 現在WebエリアにロードされているURL |
@@ -41,6 +41,6 @@ Webページが完全にロードされると、この関数から返される
| | |
| --- | --- |
| コマンド番号 | 1025 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
index 0d4c608ef8ebb7..0efc037cbce7de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-external-links-filters
displayed_sidebar: docs
---
-**WA GET EXTERNAL LINKS FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA GET EXTERNAL LINKS FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA GET EXTERNAL LINKS FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| filtersArr | Text array | ← | フィルタ配列 |
| allowDenyArr | Boolean array | ← | 許可-拒否配列 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1033 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
index 5a9627a67b50cf..ec3ef6ee61e375 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-filtered-url
displayed_sidebar: docs
---
-**WA Get last filtered URL** ( {* ;} *object* ) : Text
+**WA Get last filtered URL** ( * ; *object* : Text ) : Text
**WA Get last filtered URL** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Text | ← | 最後にフィルタされたURL |
@@ -39,6 +39,6 @@ URLは以下のいずれかの理由でフィルタされることがありま
| | |
| --- | --- |
| コマンド番号 | 1035 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
index 58c8da4cdabd4c..8cb1b7a0452a25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-url-error
displayed_sidebar: docs
---
-**WA GET LAST URL ERROR** ( {* ;} *object* ; *url* ; *description* ; *errorCode* )
+**WA GET LAST URL ERROR** ( * ; *object* : Text ; *url* : Text ; *description* : Text ; *errorCode* : Integer )
**WA GET LAST URL ERROR** ( *object* : Field, Variable ; *url* : Text ; *description* : Text ; *errorCode* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| url | Text | ← | エラー元のURL |
| description | Text | ← | エラーの説明 (macOS) |
| errorCode | Integer | ← | エラーコード |
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1034 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
index ee252ac909f7ee..7e965948d44713 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-content
displayed_sidebar: docs
---
-**WA Get page content** ( {* ;} *object* ) : Text
+**WA Get page content** ( * ; *object* : Text ) : Text
**WA Get page content** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Text | ← | HTMソースコード |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1038 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
index 38300d31072e24..464394286291d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-title
displayed_sidebar: docs
---
-**WA Get page title** ( {* ;} *object* ) : Text
+**WA Get page title** ( * ; *object* : Text ) : Text
**WA Get page title** ( *object* : Field, Variable ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| 戻り値 | Text | ← | 現在のページのタイトル |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1036 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
index 3ef8731a6012ca..94f1700e61dce5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
@@ -5,13 +5,13 @@ slug: /commands/wa-get-preference
displayed_sidebar: docs
---
-**WA GET PREFERENCE** ( {* ;} *object* ; *selector* ; *value* )
+**WA GET PREFERENCE** ( * ; *object* : Text ; *selector* : Integer ; *value* : Variable )
**WA GET PREFERENCE** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定されると、オブジェクトがオブジェクト名 (文字列) 省略されると、オブジェクトは変数 |
-| object | any | → | オブジェクトの名前 (引数 * が指定されると) または、変数 (引数 * が省略されると) |
-| selector | Integer | → | 取得する環境設定 |
+| * | 演算子 | → | 指定されると、オブジェクトがオブジェクト名 (文字列) 省略されると、オブジェクトは変数 |
+| object | any | → | オブジェクトの名前 (引数 * が指定されると) または、変数 (引数 * が省略されると) |
+| selector | Integer | → | 取得する環境設定 |
| value | Variable | ← | 環境設定のカレント値 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1042 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
index ef1a0bdcc4398a..3b01565227a86b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-url-filters
displayed_sidebar: docs
---
-**WA GET URL FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA GET URL FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA GET URL FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| filtersArr | Text array | ← | フィルタ配列 |
| allowDenyArr | Boolean array | ← | 許可-拒否配列 |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1031 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
index 96cece1363ea0e..34a5a1ad451f03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
@@ -5,14 +5,14 @@ slug: /commands/wa-get-url-history
displayed_sidebar: docs
---
-**WA GET URL HISTORY** ( {* ;} *object* ; *urlsArr* {; *direction* {; *titlesArr*}} )
+**WA GET URL HISTORY** ( * ; *object* : Text ; *urlsArr* : Text array {; *direction* : Integer {; *titlesArr* : Text array}} )
**WA GET URL HISTORY** ( *object* : Field, Variable ; *urlsArr* : Text array {; *direction* : Integer {; *titlesArr* : Text array}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
| urlsArr | Text array | ← | 訪問したURLの配列 |
-| direction | Integer | → | 0または省略=前のURL配列, 1=次のURL配列 |
+| direction | Integer | → | 0または省略=前のURL配列, 1=次のURL配列 |
| titlesArr | Text array | ← | ウィンドウタイトルの配列 |
@@ -49,6 +49,6 @@ URLは時間順に並びかえられます。
| | |
| --- | --- |
| コマンド番号 | 1048 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
index 0b0d82a0526c1f..4ca92aad9178bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-back-url
displayed_sidebar: docs
---
-**WA OPEN BACK URL** ( {* ;} *object* )
+**WA OPEN BACK URL** ( * ; *object* : Text )
**WA OPEN BACK URL** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1021 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
index dfdc8cbf6ed3dd..719279a34f38fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-forward-url
displayed_sidebar: docs
---
-**WA OPEN FORWARD URL** ( {* ;} *object* )
+**WA OPEN FORWARD URL** ( * ; *object* : Text )
**WA OPEN FORWARD URL** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1022 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
index e41a2e1cbfe3b2..22d53e998a0f44 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
@@ -5,13 +5,13 @@ slug: /commands/wa-open-url
displayed_sidebar: docs
---
-**WA OPEN URL** ( {* ;} *object* ; *url* )
+**WA OPEN URL** ( * ; *object* : Text ; *url* : Text )
**WA OPEN URL** ( *object* : Field, Variable ; *url* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| url | Text | → | WebエリアにロードするURL |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| url | Text | → | WebエリアにロードするURL |
@@ -53,6 +53,6 @@ Mac OSにおいてFileVault が有効化されている場合には、Posix シ
| | |
| --- | --- |
| コマンド番号 | 1020 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
index 337a3020559411..3523213dfa7016 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-web-inspector
displayed_sidebar: docs
---
-**WA OPEN WEB INSPECTOR** ( {* ;} *object* )
+**WA OPEN WEB INSPECTOR** ( * ; *object* : Text )
**WA OPEN WEB INSPECTOR** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列) 省略時、objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時、objectはオブジェクト名 (文字列) 省略時、objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1736 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
index f2203bbd24a451..6d849cf14d9f54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-refresh-current-url
displayed_sidebar: docs
---
-**WA REFRESH CURRENT URL** ( {* ;} *object* )
+**WA REFRESH CURRENT URL** ( * ; *object* : Text )
**WA REFRESH CURRENT URL** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1023 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
index 36f66dda771d8d..98a016f6a3dfea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/wa-run-offscreen-area
displayed_sidebar: docs
---
-**WA Run offscreen area** ( *parameters* ) : any
+**WA Run offscreen area** ( *parameters* : Object ) : any
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| parameters | Object | → | Web エリアの属性を格納したオブジェクト |
+| parameters | Object | → | Web エリアの属性を格納したオブジェクト |
| 戻り値 | any | ← | コールバックメソッドによって返された値 |
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1727 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
index d5ab2e7120dbad..5bccbad482cb46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-external-links-filters
displayed_sidebar: docs
---
-**WA SET EXTERNAL LINKS FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA SET EXTERNAL LINKS FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA SET EXTERNAL LINKS FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| filtersArr | Text array | → | フィルタ配列 |
-| allowDenyArr | Boolean array | → | 許可-拒否配列 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| filtersArr | Text array | → | フィルタ配列 |
+| allowDenyArr | Boolean array | → | 許可-拒否配列 |
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1032 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
index 425d1972c868c6..17d0a0ab91f040 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-page-content
displayed_sidebar: docs
---
-**WA SET PAGE CONTENT** ( {* ;} *object* ; *content* ; *baseURL* )
+**WA SET PAGE CONTENT** ( * ; *object* : Text ; *content* : Text ; *baseURL* : Text )
**WA SET PAGE CONTENT** ( *object* : Field, Variable ; *content* : Text ; *baseURL* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| content | Text | → | HTMLソースコード |
-| baseURL | Text | → | 相対参照に使用するURL (macOS) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| content | Text | → | HTMLソースコード |
+| baseURL | Text | → | 相対参照に使用するURL (macOS) |
@@ -46,6 +46,6 @@ WA SET PAGE CONTENT(MyWArea;"Hello World!
";"f
| | |
| --- | --- |
| コマンド番号 | 1037 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
index a0f4591a54978b..428618c5b08996 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-preference
displayed_sidebar: docs
---
-**WA SET PREFERENCE** ( {* ;} *object* ; *selector* ; *value* )
+**WA SET PREFERENCE** ( * ; *object* : Text ; *selector* : Integer ; *value* : Boolean )
**WA SET PREFERENCE** ( *object* : Field, Variable ; *selector* : Integer ; *value* : Boolean )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定した場合、オブジェクトがオブジェクトの名前 (文字列) 省略した場合、オブジェクトは変数 |
-| object | any | → | オブジェクトの名前 ( * を指定した場合) または、変数 ( * を省略した場合) |
-| selector | Integer | → | 修正される環境設定 |
-| value | Boolean | → | 環境設定の値 (True = 許可, False = 不許可) |
+| * | 演算子 | → | 指定した場合、オブジェクトがオブジェクトの名前 (文字列) 省略した場合、オブジェクトは変数 |
+| object | any | → | オブジェクトの名前 ( * を指定した場合) または、変数 ( * を省略した場合) |
+| selector | Integer | → | 修正される環境設定 |
+| value | Boolean | → | 環境設定の値 (True = 許可, False = 不許可) |
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1041 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
index 8d6d000a5af3c5..5fa975db01e5be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-url-filters
displayed_sidebar: docs
---
-**WA SET URL FILTERS** ( {* ;} *object* ; *filtersArr* ; *allowDenyArr* )
+**WA SET URL FILTERS** ( * ; *object* : Text ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
**WA SET URL FILTERS** ( *object* : Field, Variable ; *filtersArr* : Text array ; *allowDenyArr* : Boolean array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
-| filtersArr | Text array | → | フィルタ配列 |
-| allowDenyArr | Boolean array | → | 許可-拒否配列 |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| filtersArr | Text array | → | フィルタ配列 |
+| allowDenyArr | Boolean array | → | 許可-拒否配列 |
@@ -143,6 +143,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1030 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
index cb86ec3ca9511a..51224265744847 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-stop-loading-url
displayed_sidebar: docs
---
-**WA STOP LOADING URL** ( {* ;} *object* )
+**WA STOP LOADING URL** ( * ; *object* : Text )
**WA STOP LOADING URL** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1024 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
index 6bb1715588bf0f..5e06c09bf77e40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-in
displayed_sidebar: docs
---
-**WA ZOOM IN** ( {* ;} *object* )
+**WA ZOOM IN** ( * ; *object* : Text )
**WA ZOOM IN** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1039 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
index 44f701945fca3d..876f35e15f4ef3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-out
displayed_sidebar: docs
---
-**WA ZOOM OUT** ( {* ;} *object* )
+**WA ZOOM OUT** ( * ; *object* : Text )
**WA ZOOM OUT** ( *object* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
-| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
+| * | 演算子 | → | 指定時, objectはオブジェクト名 (文字列) 省略時, objectは変数 |
+| object | any | → | オブジェクト名 (* 指定時) または 変数 (* 省略時) |
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1040 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
index a5f3ae413c1b8c..d2553b8b655789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1211 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
index 039cdbd16a03c1..ffbe281603f068 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-body-part
displayed_sidebar: docs
---
-**WEB GET BODY PART** ( *part* ; *contents* ; *name* ; *mimeType* ; *fileName* )
+**WEB GET BODY PART** ( *part* : Integer ; *contents* : Blob, Text ; *name* : Text ; *mimeType* : Text ; *fileName* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| part | Integer | → | パート番号 |
+| part | Integer | → | パート番号 |
| contents | Blob, Text | ← | パートを受け取る変数 |
| name | Text | ← | input要素のname属性値 |
| mimeType | Text | ← | ファイルのMIMEタイプ |
@@ -99,6 +99,6 @@ GetFileのコードは以下の通りです:
| | |
| --- | --- |
| コマンド番号 | 1212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
index f5586da1d8ea0c..046a4c9d0728c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
index 33c2a71e9caf0c..7abf49de5f6fa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-body
displayed_sidebar: docs
---
-**WEB GET HTTP BODY** ( *body* )
+**WEB GET HTTP BODY** ( *body* : Blob, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 814 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
index 70f38fb733fec8..2a3c0243a2cf87 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-header
displayed_sidebar: docs
---
-**WEB GET HTTP HEADER** ( *header* )
**WEB GET HTTP HEADER** ( *fieldArray* ; *valueArray* )
+**WEB GET HTTP HEADER** ( *header* : テキスト, テキスト配列 )
**WEB GET HTTP HEADER** ( *fieldArray* : テキスト, テキスト配列 ; *valueArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -121,6 +121,6 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し
| | |
| --- | --- |
| コマンド番号 | 697 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
index e56666a0c45081..58b24f04ec67cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-option
displayed_sidebar: docs
---
-**WEB GET OPTION** ( *selector* ; *value* )
+**WEB GET OPTION** ( *selector* : Integer ; *value* : Integer, Text, Collection )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | 取得するオプションのコード |
+| selector | Integer | → | 取得するオプションのコード |
| value | Integer, Text, Collection | ← | オプションの値 |
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1209 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
index 6fdfbe15e02aca..bd995f5544efad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-server-info
displayed_sidebar: docs
---
-**WEB Get server info** {( *withCache* )} : Object
+**WEB Get server info** ( *withCache* : Boolean ) : Object
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| withCache | Boolean | → | Webキャッシュ詳細を返すためにはTrue、それ以外の場合(デフォルト)ではキャッシュ詳細は返されない |
+| withCache | Boolean | → | Webキャッシュ詳細を返すためにはTrue、それ以外の場合(デフォルト)ではキャッシュ詳細は返されない |
| 戻り値 | Object | ← | 実行中のWebサーバーとSOAPサーバーの情報 |
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1531 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
index b52479f2122df4..c626c7e14369de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-statistics
displayed_sidebar: docs
---
-**WEB GET STATISTICS** ( *pages* ; *hits* ; *usage* )
+**WEB GET STATISTICS** ( *pages* : Text array ; *hits* : Integer array ; *usage* : Integer )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -66,6 +66,6 @@ URLリンクまたは[WEB SEND FILE](web-send-file.md)コマンドを使用し
| | |
| --- | --- |
| コマンド番号 | 658 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
index 07321b7017fc4b..74cf5a0edbd792 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-variables
displayed_sidebar: docs
---
-**WEB GET VARIABLES** ( *nameArray* ; *valueArray* )
+**WEB GET VARIABLES** ( *nameArray* : Text array ; *valueArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
@@ -70,6 +70,6 @@ WEBFORMメソッド以下のように記述します。
| | |
| --- | --- |
| コマンド番号 | 683 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
index c2d2fdc43362a6..e79ef898dae272 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 698 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
index 9099cdb00c1188..633aba462c1195 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Webサーバーが実行中かどうかをチェックしたい場合:
| | |
| --- | --- |
| コマンド番号 | 1313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
index c63fc27d384169..88215a98678186 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-close-session
displayed_sidebar: docs
---
-**WEB LEGACY CLOSE SESSION** ( *sessionID* )
+**WEB LEGACY CLOSE SESSION** ( *sessionID* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| sessionID | Text | → | セッションUUID |
+| sessionID | Text | → | セッションUUID |
@@ -41,6 +41,6 @@ Webプロセスや他のプロセスからこのコマンドが呼び出され
| | |
| --- | --- |
| コマンド番号 | 1208 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
index 46355d4ef4ae67..588b6b75d1b640 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-get-session-expiration
displayed_sidebar: docs
---
-**WEB LEGACY GET SESSION EXPIRATION** ( *sessionID* ; *expDate* ; *expTime* )
+**WEB LEGACY GET SESSION EXPIRATION** ( *sessionID* : Text ; *expDate* : Date ; *expTime* : Time )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| sessionID | Text | → | セッションUUID |
+| sessionID | Text | → | セッションUUID |
| expDate | Date | ← | cookie有効期限日 |
| expTime | Time | ← | cookie有効期限時刻 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
index 59249e29965513..b2d6fd01ccac46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-blob
displayed_sidebar: docs
---
-**WEB SEND BLOB** ( *BLOB* ; *type* )
+**WEB SEND BLOB** ( *BLOB* : Blob ; *type* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| Blob | Blob | → | ブラウザへ送るBLOB |
-| type | Text | → | BLOBのデータタイプ |
+| Blob | Blob | → | ブラウザへ送るBLOB |
+| type | Text | → | BLOBのデータタイプ |
@@ -85,6 +85,6 @@ BLOBに含まれるデータのタイプは *type* によって示されます
| | |
| --- | --- |
| コマンド番号 | 654 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
index 45bb80790a7ca0..c57f22fb733489 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
@@ -5,11 +5,11 @@ slug: /commands/web-send-file
displayed_sidebar: docs
---
-**WEB SEND FILE** ( *htmlFile* )
+**WEB SEND FILE** ( *htmlFile* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| htmlFile | Text | → | HTMLファイルへのHTMLパス名 または、WEB SEND FILEを終了させる場合空の文字列 |
+| htmlFile | Text | → | HTMLファイルへのHTMLパス名 または、WEB SEND FILEを終了させる場合空の文字列 |
@@ -55,7 +55,7 @@ Webページ "MyPage.HTM"を送信するには以下のようにします。
| | |
| --- | --- |
| コマンド番号 | 619 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
index 67d7b105df0759..d0637e95f501f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-http-redirect
displayed_sidebar: docs
---
-**WEB SEND HTTP REDIRECT** ( *url* {; *} )
+**WEB SEND HTTP REDIRECT** ( *url* : Text {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| url | Text | → | 新しいURL |
-| * | 演算子 | → | 指定されている場合 = URLは翻訳されない 省略されている場合 = URLは翻訳される |
+| url | Text | → | 新しいURL |
+| * | 演算子 | → | 指定されている場合 = URLは翻訳されない 省略されている場合 = URLは翻訳される |
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 659 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
index 3423921c09a577..84a030257d48ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-raw-data
displayed_sidebar: docs
---
-**WEB SEND RAW DATA** ( *data* {; *} )
+**WEB SEND RAW DATA** ( *data* : Blob {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| data | Blob | → | 送るHTTPデータ |
-| * | 演算子 | → | チャンクして送る |
+| data | Blob | → | 送るHTTPデータ |
+| * | 演算子 | → | チャンクして送る |
@@ -86,6 +86,6 @@ Location: http://...
| | |
| --- | --- |
| コマンド番号 | 815 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
index 6d53b9581300bb..a6615422f445aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-text
displayed_sidebar: docs
---
-**WEB SEND TEXT** ( *htmlText* {; *type*} )
+**WEB SEND TEXT** ( *htmlText* : Text {; *type* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| htmlText | Text | → | Webブラウザへ送られるHTMLテキストフィールド または変数 |
-| type | Text | → | MIME型 |
+| htmlText | Text | → | Webブラウザへ送られるHTMLテキストフィールド または変数 |
+| type | Text | → | MIME型 |
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 677 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
index 1f76952c27f5bf..d92e1440cd4914 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/web-service-authenticate
displayed_sidebar: docs
---
-**WEB SERVICE AUTHENTICATE** ( *name* ; *password* {; *authMethod*} {; *} )
+**WEB SERVICE AUTHENTICATE** ( *name* : Text ; *password* : Text {; *authMethod* : Integer} {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| name | Text | → | ユーザの名前 |
-| password | Text | → | ユーザのパスワード |
-| authMethod | Integer | → | 認証メソッド 0または省略された場合 = 指定されない、1 = BASIC、2 = DIGEST |
-| * | 演算子 | → | 渡された場合、プロキシによる認証 |
+| name | Text | → | ユーザの名前 |
+| password | Text | → | ユーザのパスワード |
+| authMethod | Integer | → | 認証メソッド 0または省略された場合 = 指定されない、1 = BASIC、2 = DIGEST |
+| * | 演算子 | → | 渡された場合、プロキシによる認証 |
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 786 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
index 83b7f4985764b2..3f321eaba75b5d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
@@ -5,16 +5,16 @@ slug: /commands/web-service-call
displayed_sidebar: docs
---
-**WEB SERVICE CALL** ( *accessURL* ; *soapAction* ; *methodName* ; *nameSpace* {; *complexType* {; *}} )
+**WEB SERVICE CALL** ( *accessURL* : Text ; *soapAction* : Text ; *methodName* : Text ; *nameSpace* : Text {; *complexType* : Integer {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| accessURL | Text | → | WebサービスへのアクセスURL |
-| soapAction | Text | → | SOAPActionフィールドの内容 |
-| methodName | Text | → | メソッドの名前 |
-| nameSpace | Text | → | 名前空間 |
-| complexType | Integer | → | 複合タイプの設定 (省略された場合、シンプルタイプ) |
-| * | 演算子 | → | 接続を終了しない |
+| accessURL | Text | → | WebサービスへのアクセスURL |
+| soapAction | Text | → | SOAPActionフィールドの内容 |
+| methodName | Text | → | メソッドの名前 |
+| nameSpace | Text | → | 名前空間 |
+| complexType | Integer | → | 複合タイプの設定 (省略された場合、シンプルタイプ) |
+| * | 演算子 | → | 接続を終了しない |
@@ -161,7 +161,7 @@ DOCモード (または複合タイプのRPCモード) で公開されたWebサ
| | |
| --- | --- |
| コマンド番号 | 778 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
index f25dda76ed87d9..8d7d3f79bed0c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-service-get-info
displayed_sidebar: docs
---
-**WEB SERVICE Get info** ( *infoType* ) : Text
+**WEB SERVICE Get info** ( *infoType* : Integer ) : Text
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| infoType | Integer | → | 取得する情報 |
+| infoType | Integer | → | 取得する情報 |
| 戻り値 | Text | ← | 最新のSOAPエラーに関する情報 |
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 780 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
index 48b5c0c3b8e812..b80bbc87f91db7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-get-result
displayed_sidebar: docs
---
-**WEB SERVICE GET RESULT** ( *returnValue* {; *returnName* {; *}} )
+**WEB SERVICE GET RESULT** ( *returnValue* : Variable {; *returnName* : Text {; *}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| returnValue | Variable | ← | Webサービスから返された値 |
-| returnName | Text | → | 取得する引数の名前 |
-| * | Operator | → | メモリを解放 |
+| returnName | Text | → | 取得する引数の名前 |
+| * | Operator | → | メモリを解放 |
@@ -54,6 +54,6 @@ Webサービスがある都市の時間を返すとします。Webサービス
| | |
| --- | --- |
| コマンド番号 | 779 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
index 385b80c4e8f66e..b45523019edfc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-service-set-option
displayed_sidebar: docs
---
-**WEB SERVICE SET OPTION** ( *option* ; *value* )
+**WEB SERVICE SET OPTION** ( *option* : Integer ; *value* : Integer, Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| option | Integer | → | 設定するオプションのコード |
-| value | Integer, Text | → | オプションの値 |
+| option | Integer | → | 設定するオプションのコード |
+| value | Integer, Text | → | オプションの値 |
@@ -67,6 +67,6 @@ SOAPリクエストにカスタマイズしたヘッダーを挿入する:
| | |
| --- | --- |
| コマンド番号 | 901 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
index 7d182c57c8b9f5..84023be2d30fed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-set-parameter
displayed_sidebar: docs
---
-**WEB SERVICE SET PARAMETER** ( *name* ; *value* {; *soapType*} )
+**WEB SERVICE SET PARAMETER** ( *name* : Text ; *value* : Variable {; *soapType* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| name | Text | → | SOAPリクエストに含める引数の名前 |
-| value | Variable | → | 引数の値を格納する4D変数 |
-| soapType | Text | → | 引数のSOAPタイプ |
+| name | Text | → | SOAPリクエストに含める引数の名前 |
+| value | Variable | → | 引数の値を格納する4D変数 |
+| soapType | Text | → | 引数のSOAPタイプ |
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 777 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
index d4979fbd9ffa01..a4af823e5db8ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-home-page
displayed_sidebar: docs
---
-**WEB SET HOME PAGE** ( *homePage* )
+**WEB SET HOME PAGE** ( *homePage* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| homePage | Text | → | ページの名前またはページへのHTMLアクセスパス または、""でカスタムホームページを送らない |
+| homePage | Text | → | ページの名前またはページへのHTMLアクセスパス または、""でカスタムホームページを送らない |
@@ -33,6 +33,6 @@ HTMLホームページの名前、またはそのページのHTMLアクセスパ
| | |
| --- | --- |
| コマンド番号 | 639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
index 01da1802084597..1803ac3dacf663 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-http-header
displayed_sidebar: docs
---
-**WEB SET HTTP HEADER** ( *header* )
**WEB SET HTTP HEADER** ( *fieldArray* ; *valueArray* )
+**WEB SET HTTP HEADER** ( *header* : テキスト, テキスト配列 )
**WEB SET HTTP HEADER** ( *fieldArray* : テキスト, テキスト配列 ; *valueArray* : Text array )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| header|fieldArray | テキスト, テキスト配列 | → | リクエストHTTPヘッダーを格納したフィールドまたは変数、またはHTTPヘッダーフィールド |
-| valueArray | Text array | → | HTTPヘッダーフィールドコンテンツ |
+| header|fieldArray | テキスト, テキスト配列 | → | リクエストHTTPヘッダーを格納したフィールドまたは変数、またはHTTPヘッダーフィールド |
+| valueArray | Text array | → | HTTPヘッダーフィールドコンテンツ |
@@ -69,6 +69,6 @@ X-VERSIONとX-STATUSを指定しないと、自動的にHTTP/1.0 200 OKが設定
| | |
| --- | --- |
| コマンド番号 | 660 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
index 1442882d91ac4e..cd42cc8e231375 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-option
displayed_sidebar: docs
---
-**WEB SET OPTION** ( *selector* ; *value* )
+**WEB SET OPTION** ( *selector* : Integer ; *value* : Integer, Text, Collection )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| selector | Integer | → | オプションコード |
-| value | Integer, Text, Collection | → | オプション値 |
+| selector | Integer | → | オプションコード |
+| value | Integer, Text, Collection | → | オプション値 |
@@ -117,6 +117,6 @@ Server: 4D/16.0.1
| | |
| --- | --- |
| コマンド番号 | 5 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
index 75a04e0fc702b4..8a0b62ca0adc9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-root-folder
displayed_sidebar: docs
---
-**WEB SET ROOT FOLDER** ( *rootFolder* )
+**WEB SET ROOT FOLDER** ( *rootFolder* : Text )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| rootFolder | Text | → | Webサーバルートフォルダのパス名 |
+| rootFolder | Text | → | Webサーバルートフォルダのパス名 |
@@ -43,7 +43,7 @@ HTMLシンタックス (URLタイプ) 、またはシステムシンタックス
| | |
| --- | --- |
| コマンド番号 | 634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
index 87653475900894..2afdbc0e042d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
@@ -29,7 +29,7 @@ Webサーバの起動が成功すると、OK に1が代入されます。その
| | |
| --- | --- |
| コマンド番号 | 617 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
index 4b02df92054547..36710e3e34df3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
@@ -26,6 +26,6 @@ Webサーバが起動していない場合、コマンドは何も行いませ
| | |
| --- | --- |
| コマンド番号 | 618 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
index 99bab6d5961b37..bbb897601a3d60 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
@@ -5,12 +5,12 @@ slug: /commands/web-validate-digest
displayed_sidebar: docs
---
-**WEB Validate digest** ( *userName* ; *password* ) : Boolean
+**WEB Validate digest** ( *userName* : Text ; *password* : Text ) : Boolean
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| userName | Text | → | ユーザの名前 |
-| password | Text | → | ユーザのパスワード |
+| userName | Text | → | ユーザの名前 |
+| password | Text | → | ユーザのパスワード |
| 戻り値 | Boolean | ← | True=認証はOK、 False=認証は失敗 |
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 946 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
index c18217126bbddf..30b79ad02f9112 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
@@ -5,11 +5,11 @@ slug: /commands/window-kind
displayed_sidebar: docs
---
-**Window kind** {( *window* )} : Integer
+**Window kind** ( *window* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号, または 省略時カレントプロセスの最前面ウィンドウ |
+| window | Integer | → | ウィンドウ参照番号, または 省略時カレントプロセスの最前面ウィンドウ |
| 戻り値 | Integer | ← | ウィンドウのタイプ |
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 445 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
index 226a322a760f1a..d3162848de93d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
@@ -5,12 +5,12 @@ slug: /commands/window-list
displayed_sidebar: docs
---
-**WINDOW LIST** ( *windows* {; *} )
+**WINDOW LIST** ( *windows* : Array {; *} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
| windows | Array | ← | ウィンドウ参照番号の配列 |
-| * | 演算子 | → | 指定時, フローティングウィンドウも含める 省略時, フローティングウィンドウを含めない |
+| * | 演算子 | → | 指定時, フローティングウィンドウも含める 省略時, フローティングウィンドウを含めない |
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
index 7e6e9d607b9aab..900d6b8ae2b03e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
@@ -5,11 +5,11 @@ slug: /commands/window-process
displayed_sidebar: docs
---
-**Window process** {( *window* )} : Integer
+**Window process** ( *window* : Integer ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| window | Integer | → | ウィンドウ参照番号 |
+| window | Integer | → | ウィンドウ参照番号 |
| 戻り値 | Integer | ← | プロセス参照番号 |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 446 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
index 5b7857a8adfad5..9e0247f7d59d7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
index 9887c0af80d29b..3c678bd76862d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
index e170506d0c88e2..5b0c9527a78a0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/write-picture-file
displayed_sidebar: docs
---
-**WRITE PICTURE FILE** ( *fileName* ; *picture* {; *codec*} )
+**WRITE PICTURE FILE** ( *fileName* : Text ; *picture* : Picture {; *codec* : Text} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| fileName | Text | → | 書き出すファイルのフルパス名, または空の文字列 |
-| picture | Picture | → | 書き出すピクチャフィールドまたは変数 |
-| codec | Text | → | ピクチャCodec ID |
+| fileName | Text | → | 書き出すファイルのフルパス名, または空の文字列 |
+| picture | Picture | → | 書き出すピクチャフィールドまたは変数 |
+| codec | Text | → | ピクチャCodec ID |
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 680 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
index 72c65bb62d3b3a..dbb2f0692a5fa3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
@@ -5,11 +5,11 @@ slug: /commands/xml-decode
displayed_sidebar: docs
---
-**XML DECODE** ( *xmlValue* ; *4Dvar* )
+**XML DECODE** ( *xmlValue* : Text ; *4Dvar* : Field, Variable )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| xmlValue | Text | → | XML構造から取得したテキスト型の値 |
+| xmlValue | Text | → | XML構造から取得したテキスト型の値 |
| 4Dvar | Field, Variable | ← | 変換したXMLの値を受け取る4D変数またはフィールド |
@@ -92,6 +92,6 @@ Title="4 Stabat mater"/>
| | |
| --- | --- |
| コマンド番号 | 1091 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
index 48c764deadef71..a18b9475b76dba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
@@ -5,11 +5,11 @@ slug: /commands/xml-get-error
displayed_sidebar: docs
---
-**XML GET ERROR** ( *elementRef* ; *errorText* {; *row* {; *column*}} )
+**XML GET ERROR** ( *elementRef* : Text ; *errorText* : Variable {; *row* : Variable {; *column* : Variable}} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | Text | → | XML要素参照 |
+| elementRef | Text | → | XML要素参照 |
| errorText | Variable | ← | エラーテキスト |
| row | Variable | ← | 行番号 |
| column | Variable | ← | 列番号 |
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 732 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
index b84655868b110c..5985dc7a383785 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
@@ -5,12 +5,12 @@ slug: /commands/xml-get-options
displayed_sidebar: docs
---
-**XML GET OPTIONS** ( *elementRef* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
**XML GET OPTIONS** ( *document ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
+**XML GET OPTIONS** ( *elementRef* : テキスト ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
**XML GET OPTIONS** ( *document ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | document | テキスト | → | XMLルート要素参照 または開かれたドキュメントの参照 |
-| selector | Integer | → | 取得するオプション |
+| elementRef | document | テキスト | → | XMLルート要素参照 または開かれたドキュメントの参照 |
+| selector | Integer | → | 取得するオプション |
| value | Integer | ← | オプションの現在値 |
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1096 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
index 4bba6c1a7a87b3..295c60dcddcf4f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
@@ -5,13 +5,13 @@ slug: /commands/xml-set-options
displayed_sidebar: docs
---
-**XML SET OPTIONS** ( *elementRef* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
**XML SET OPTIONS** ( *document* ; *selector* ; *value* {; *selector2* ; *value2* ; ... ; *selectorN* ; *valueN*} )
+**XML SET OPTIONS** ( *elementRef* : テキスト ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
**XML SET OPTIONS** ( *document* : テキスト ; *selector* : Integer ; *value* : Integer {; ...(*selector* : Integer, *value* : Integer)} )
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| elementRef | document | テキスト | → | XMLルート要素参照、または開かれたドキュメント参照 |
-| selector | Integer | → | 設定するオプション |
-| value | Integer | → | オプションの値 |
+| elementRef | document | テキスト | → | XMLルート要素参照、または開かれたドキュメント参照 |
+| selector | Integer | → | 設定するオプション |
+| value | Integer | → | オプションの値 |
@@ -72,6 +72,6 @@ SVG ピクチャの挿入:
| | |
| --- | --- |
| コマンド番号 | 1090 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
index 95518ef3955cc5..03b400bf99d4bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
@@ -5,11 +5,11 @@ slug: /commands/year-of
displayed_sidebar: docs
---
-**Year of** ( *date* ) : Integer
+**Year of** ( *date* : Date ) : Integer
| 引数 | 型 | | 説明 |
| --- | --- | --- | --- |
-| date | Date | → | 年を取り出す日付 |
+| date | Date | → | 年を取り出す日付 |
| 戻り値 | Integer | ← | 年を示す数値 |
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 25 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md
index 7603408bc9e02d..f3059a39d3e7dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/compile-project.md
@@ -5,7 +5,7 @@ slug: /commands/compile-project
displayed_sidebar: docs
---
-**Compile project** {( {*projectFile*}{;}{*options*} )} : Object
+**Compile project** ( {*options* : Object} ) : Object
**Compile project** ( *projectFile* : 4D.File } {; *options* : Object} ) : Object
@@ -195,9 +195,9 @@ var $result:=Compile project($options)
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1760 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1760 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/file.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/file.md
index a2f9438f254ec3..d621dd0421db9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/file.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**File** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.File
**File** ( *fileConstant* : Integer { ; \* } ) : 4D.File
+**File** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.File
**File** ( *fileConstant* : Integer { ; * } ) : 4D.File
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | ファイルパス |
| fileConstant | Integer | → | 4Dファイル定数 |
| pathType | Integer | → | `fk posix path` (デフォルト) または `fk platform path` |
-| \* | operator | → | ホストデータベースのファイルを返すには \* を渡します |
+| \* | 演算子 | → | ホストデータベースのファイルを返すには \* を渡します |
| 戻り値 | [4D.File](../API/FileClass.md) | ← | 新規ファイルオブジェクト |
@@ -88,9 +88,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1566 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1566 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/folder.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/folder.md
index bbe1bd6d81db88..026b7b1649063b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/folder.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; \* } ) : 4D.Folder
+**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; * } ) : 4D.Folder
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | フォルダーパス |
| folderConstant | Integer | → | 4Dフォルダー定数 |
| pathType | Integer | → | `fk posix path` (デフォルト) または `fk platform path` |
-| \* | operator | → | ホストデータベースのフォルダーを返すには \* を渡します |
+| \* | 演算子 | → | ホストデータベースのフォルダーを返すには \* を渡します |
| 戻り値 | [4D.Folder](../API/FolderClass.md) | ← | 新規フォルダーオブジェクト |
@@ -78,9 +78,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1567 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1567 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/license-info.md
index 0f164098da6858..5023e4d06a2f95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/license-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/license-info.md
@@ -8,9 +8,9 @@ displayed_sidebar: docs
-| 引数 | 型 | | 説明 |
-| --- | ------ | --------------------------- | ----------------- |
-| 戻り値 | Object | ← | アクティブなライセンスに関する情報 |
+| 引数 | 型 | | 説明 |
+| --- | ------ | --------------------------- | ------------------------------------ |
+| 戻り値 | Object | ← | Information about the active license |
@@ -143,9 +143,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1489 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1489 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
index 1ae1505c519a71..ffabc43e5729be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
@@ -4,7 +4,7 @@ title: LISTBOX Get property
displayed_sidebar: docs
---
-**LISTBOX Get property** ( {* ;} *object* ; *property* ) : any
+**LISTBOX Get property** ( * ; *object* : Text ; *property* : Integer ) : any
**LISTBOX Get property** ( *object* : Field, Variable ; *property* : Integer ) : any
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,7 +49,7 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
+| lk hor scrollbar height | 3 | ピクセル単位の高さ(読み出しのみ可能)
適用対象: リストボックス |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ displayed_sidebar: docs
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk ver scrollbar width | 5 | ピクセル単位の幅(読み出しのみ可能)
適用対象: リストボックス |
\*印が付いているプロパティはリストボックスカラム専用のものです。このプロパティ群の定数をリストボックスとともに引数として受け渡すと、**LISTBOX Get property** は *property* に指定したプロパティの種類に応じて -1、あるいは空文字列を返します。
@@ -105,9 +104,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 917 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | --- |
+| コマンド番号 | 917 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
index 5ec929db69e910..e4021860dec1fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
@@ -4,7 +4,7 @@ title: LISTBOX SET PROPERTY
displayed_sidebar: docs
---
-**LISTBOX SET PROPERTY** ( {* ;} *object* ; *property* ; *value* )
+**LISTBOX SET PROPERTY** ( * ; *object* : Text ; *property* : Integer ; *value* : Integer, Text )
**LISTBOX SET PROPERTY** ( *object* : Field, Variable ; *property* : Integer ; *value* : Integer, Text )
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,21 +49,17 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
| lk named selection | 28 | セレクション型リストボックスの **[命名セレクション](../FormObjects/properties_DataSource.md#命名セレクション)** プロパティ
適用対象: リストボックス |
| lk resizing mode | 11 | **[カラムの自動リサイズ](../FormObjects/properties_ResizingOptions.md#カラム自動リサイズ)** プロパティ
適用対象: リストボックス
取り得る値:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | **[行の高さ](../FormObjects/properties_CoordinatesAndSizing.md#行の高さ)** プロパティの単位
適用対象: リストボックス
取り得る値:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk selection mode | 10 | **[選択モード](../FormObjects/properties_ListBox.md#選択モード)** プロパティ
適用対象: リストボックス
取り得る値:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
\*印が付いているプロパティはリストボックスカラム専用のものですが、このプロパティ群の定数に対してリストボックスを引数として受け渡すと、 **LISTBOX SET PROPERTY** は各カラムの *property* に対して値を適用します。
@@ -90,9 +88,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1440 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1440 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/open-datastore.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/open-datastore.md
index ac8840a0b97b4e..9e64bf9b359069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/open-datastore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/open-datastore.md
@@ -6,12 +6,12 @@ displayed_sidebar: docs
履歴
-| リリース | 内容 |
-| ----- | --------------------------------------- |
-| 21 | Qodly cloud discontinued |
-| 20 R6 | Support access to Qodly cloud instances |
-| 20 R4 | 新しい *passwordAlgorithm* プロパティ |
-| 18 | 追加 |
+| リリース | 内容 |
+| ----- | ----------------------------- |
+| 21 | Qodly cloud へのアクセス終了 |
+| 20 R6 | Qodly cloud インスタンスへのアクセスをサポート |
+| 20 R4 | 新しい *passwordAlgorithm* プロパティ |
+| 18 | 追加 |
@@ -32,11 +32,11 @@ displayed_sidebar: docs
`Open datastore` コマンドは、
*connectionInfo* 引数が指定するリモートデータストアにアプリケーションを接続します。戻り値は、*localID* ローカルエイリアスに紐づけられた `4D.DataStoreImplementation` オブジェクトです。
-Exchanges with the remote datastore are automatically managed via REST requests. The *connectionInfo* 4D datastore must be available as a remote datastore, i.e.:
+リモートデータストアとのやりとりは、REST リクエストを経由して自動的に管理されます。 *connectionInfo* で指定する 4D データストアは、リモートデータストアとして利用可能でなければなりません。つまり、以下の条件を満たしている必要があります:
-- its Web Server must be launched with http and/or https enabled,
-- its datastore is exposed to REST ([**Expose as REST server**](REST/configuration.md#starting-the-rest-server) option checked),
-- a client license must be available if required (see note).
+- その Web サーバーは、http または https が有効化された状態で開始されていること
+- データストアはREST に公開されている([**REST サーバーとして公開**](REST/configuration.md#restサーバーを開始) オプションがチェックされている)こと
+- 必要であれば、クライアントライセンスが利用可能であること(注記参照)。
:::note
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md
index 51566df49d8068..cb239708bd03de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## 説明
-`Session` コマンドは、カレントのユーザーセッションに対応する `Session` オブジェクトを返します。
+`Session` コマンドは、カレントのセッションに対応する `Session` オブジェクトを返します。
-コマンドを呼び出したプロセスによって、カレントユーザーセッションは次のいずれかです:
+コマンドを呼び出したプロセスによって、カレントセッションは次のいずれかです:
- Web セッション([スケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合)
-- リモートクライアントセッション
-- ストアドプロシージャセッション
-- スタンドアロンアプリケーションの*designer* セッション
+- (サーバー上の)リモートクライアントセッション
+- ストアドプロシージャーセッション
+- スタンドアロンセッション
詳細については、[Session types](../API/SessionClass.md#session-types) の段落を参照ください。
-サポートされていないコンテキスト (スケーラブルセッションが無効など)から呼び出されると、コマンドは *Null* を返します。
+このコマンドは、以下の場合には **Null** を返します:
-## Webセッション
+- コマンドがWeb プロセス内で呼び出されているが、Web サーバーではスケーラブルセッションが無効化されている
+- コマンドがリモート4D から呼び出されている
+
+### Webセッション
Webセッションの `Session` オブジェクトは、どの Webプロセスからも利用できます:
@@ -51,7 +54,7 @@ Webセッションの `Session` オブジェクトは、どの Webプロセス
Web ユーザーセッションに関する詳細な情報については、[Web Server Sessions](../WebServer/sessions.md) の章を参照してください。
-## リモートクライアントセッション
+### リモートクライアントセッション
リモートクライアントの `Session` オブジェクトは、次のいずれかから利用できます:
@@ -60,24 +63,51 @@ Web ユーザーセッションに関する詳細な情報については、[Web
- ORDA [データモデル関数](../ORDA/ordaClasses.md) ([`local`](../ORDA/ordaClasses.md#ローカル関数) キーワードで宣言されたものを除く)
- `On Server Open Connection` および `On Server Shutdown Connection` データベースメソッド
-リモートユーザーセッションの詳細については、[**リモートクライアントユーザーセッション**](../Desktop/clientServer.md#リモートユーザーセッション) の段落を参照ください。
+リモートユーザーセッションの詳細については、[**リモートユーザーセッション**](../Desktop/sessions.md#リモートユーザーセッション) の段落を参照ください。
-## ストアドプロシージャーセッション
+### ストアドプロシージャーセッション
すべてのストアドプロシージャープロセスは、同じ仮想ユーザーセッションを共有します。 ストアドプロシージャーの `Session` オブジェクトは、次のいずれかから利用できます:
- [`Execute on server`](../commands-legacy/execute-on-server.md) コマンドで呼び出されたメソッド
- `On Server Startup`、`On Server Shutdown`、`On Backup Startup`、`On Backup Shutdown`、および `On System event` データベースメソッド
-ストアドプロシージャーの仮想ユーザーセッションに関する情報については、[4D Serverと4Dランゲージ](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.ja.html) のページを参照ください。
+ストアドプロシージャーバーチャルユーザーセッションの詳細については、[**ストアドプロシージャーセッション**](../Desktop/sessions.md#ストアドプロシージャーセッション) の段落を参照ください。
-## スタンドアロンセッション
+### スタンドアロンセッション
`Session` オブジェクトは、スタンドアロン(シングルユーザー)アプリケーション内の任意のプロセスから利用可能なため、4D 開発環境において`Session` オブジェクトを使用することで、クライアント/サーバー用のコードを書いてテストすることができます。
+スタンドアロンセッションの詳細については、[**スタンドアロンセッション**](../Desktop/sessions.md#スタンドアロンセッション) の段落を参照ください。
+
+### `Session`とコンポーネント
+
+`Session` が[プロジェクト内に配置されている異なるコンポーネント](../Concepts/components.md) のコードから呼び出された場合には、このコマンドは呼び出しリクエストとコンテキストに応じて異なるオブジェクトを返します:
+
+- Web リクエストの場合、`Session` は常にリクエストのターゲットWeb サーバーにアタッチされているセッションを返します(コンポーネントのWeb サーバーのセッションではありません)。
+- サーバー上で実行されたリモートリクエストの場合、 `Session` は常にリモートユーザーにアタッチされたセッションを返します。
+- ストアドプロシージャーセッションまたはスタンドアロンセッションの場合、`Session` は常にシングルカレントセッションを返します(同じオブジェクトが全てのワークセッションにおいて使用されます)。
+
+```mermaid
+flowchart TD
+ A[セッションが必要] --> B{それはWebリクエストか?}
+ B -->|はい| C[WebリクエストのWebサーバーに割り当てられているセッションを使用]
+ B -->|いいえ| D{それはリモートリクエストか?}
+ D -->|はい| E[リモートユーザーセッションのオブジェクトを使用]
+ D -->|いいえ| F[ストアドプロシージャー/スタンドアロンセッションの固有のオブジェクトを使用]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## 例題
-"公開オプション: 4DタグとURL(4DACTION...)" ブラウザーに次の URL を入力してメソッドを呼び出します:
+"公開オプション: 4DタグとURL(4DACTION...)" 属性を有効にした `action_Session` メソッドを定義したとします。 ブラウザーに次の URL を入力してメソッドを呼び出します:
```
IP:port/4DACTION/action_Session
@@ -87,28 +117,29 @@ IP:port/4DACTION/action_Session
//action_Session メソッド
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) // hasPrivilege 関数を呼び出します
- WEB SEND TEXT("4DACTION --> セッションは WebAdmin です")
+ If(Session.hasPrivilege("CreateInvoices")) //hasPrivilege 関数を呼び出す
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> セッションは WebAdmin ではありません")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
- WEB SEND TEXT("4DACTION --> セッションは null です")
+ WEB SEND TEXT("4DACTION --> Session is null")
End case
```
## 参照
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
-[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
+[*Scalable sessions for advanced web applications* (blog 記事)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1714 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1714 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/string.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/string.md
index 7fb685537217e0..98846d3de6ca71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/string.md
@@ -1,6 +1,6 @@
---
id: string
-title: 文字列
+title: String
slug: /commands/string
displayed_sidebar: docs
---
@@ -9,13 +9,13 @@ displayed_sidebar: docs
-| 引数 | 型 | | 説明 |
-| ------- | ------------- | --------------------------- | ----------------------------------------------------------------------------- |
-| 式 | 式 | → | 文字列式を返したい式 (実数、整数、倍長整数、日付、時間、文字列、 テキスト、ブール、未定義、Null を指定可能) |
-| format | Integer, Text | → | 表示フォーマット |
-| addTime | Time | → | expressionが日付の時、追加する時間 |
-| base | Integer | → | 式が数値の場合に、基数を表す2 から36 までの値 |
-| 戻り値 | Text | ← | 式の文字列の形式 |
+| 引数 | 型 | | 説明 |
+| ---------- | ------------- | --------------------------- | ----------------------------------------------------------------------------- |
+| expression | 式 | → | 文字列式を返したい式 (実数、整数、倍長整数、日付、時間、文字列、 テキスト、ブール、未定義、Null を指定可能) |
+| format | Integer, Text | → | 表示フォーマット |
+| addTime | Time | → | expressionが日付の時、追加する時間 |
+| base | Integer | → | 式が数値の場合に、基数を表す2 から36 までの値 |
+| 戻り値 | Text | ← | 式の文字列の形式 |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/theme/Boolean.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/theme/Boolean.md
index 03aa2595f50304..c2fa9f152752c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/theme/Boolean.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/theme/Boolean.md
@@ -1,7 +1,7 @@
---
id: Boolean_theme
title: Boolean
-sidebar_label: Boolean
+sidebar_label: ブール
slug: /commands/theme/Boolean
---
diff --git a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md
index 9cd32fb1a3d7c2..54a093e1da47e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/current/commands/web-server.md
@@ -30,11 +30,11 @@ displayed_sidebar: docs
*option* が省略された場合のデフォルトでは、このコマンドはデータベースの Webサーバー (デフォルトWebサーバー) への参照を返します。 取得する Webサーバーを指定するには、*option* に以下の定数のいずれか一つを渡してください:
-| 定数 | 値 | 説明 |
-| ------------------------------ | - | ----------------------------------------------------- |
-| `Web server database` | 1 | カレントデータベースの Webサーバー( 省略時のデフォルト) |
-| `Web server host database` | 2 | コンポーネントのホストデータベースの Webサーバー |
-| `Web server receiving request` | 3 | リクエストを受け取った Webサーバー (ターゲットWebサーバー) |
+| 定数 | 値 | 説明 |
+| ------------------------------ | - | ------------------------------------------------------ |
+| `Web server database` | 1 | コマンドが呼ばれたプロジェクトのWeb サーバー(省略時のデフォルト) |
+| `Web server host database` | 2 | コンポーネントのホストデータベースの Webサーバー |
+| `Web server receiving request` | 3 | リクエストを受け取った Webサーバー (ターゲットWebサーバー) |
**返されたWeb サーバーオブジェクト** には[Web server プロパティ](../API/WebServerClass.md) のカレントのプロパティが格納されています。
@@ -58,9 +58,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1674 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1674 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/API/CollectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/API/CollectionClass.md
index e4564b2e20c22b..11521a9422e5ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/API/CollectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/API/CollectionClass.md
@@ -4,7 +4,7 @@ title: Collection
---
-The Collection class manages [Collection](Concepts/dt_collection.md) type expressions.
+Collection クラスは [コレクション](Concepts/dt_collection.md) 型の式を扱います。
コレクションは次のように初期化します:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/Admin/cli.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/Admin/cli.md
index cbf18476073fc7..38dd23a8b8f5a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/Admin/cli.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/Admin/cli.md
@@ -43,9 +43,9 @@ macOS のターミナルまたは Windows のコンソールを使用して、
| `--webadmin-access-key` | Text | [WebAdmin Webサーバー](webAdmin.md) 用のアクセスキー |
| `--webadmin-auto-start` | Boolean | [WebAdmin Webサーバー](webAdmin.md) 用の自動スタートアップ設定の状態 |
| `--webadmin-store-settings` | | アクセスキーと自動スタートアップパラメーターを、現在使用している設定ファイル (デフォルトの [`WebAdmin.4DSettings`](webAdmin.md#webadmin-設定) ファイル、または `--webadmin-settings-path` パラメーターで指定されたカスタムファイル) に保存します。 必要に応じて `--webadmin-store-settings` 引数を使用して、これらの設定を保存します。 |
- (*) 一部のダイアログはデータベースを開く前に表示されるため、
+ (*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the
-[診断ログファイル](debugLogFiles.md#4ddiagnosticlogtxt) に記録することができません (ライセンス警告、変換ダイアログ、データベース選択、データファイル選択)。 このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
+[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
index e3949bbcbd9f65..6ae88054409ba1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/dt_number.md
@@ -75,7 +75,7 @@ title: 数値 (実数、倍長整数、整数)
### 整数除算
-整数除算演算子は、ある数値を別の数値で割り算をし、その結果の整数部分を返し余りについては無視します。 `a\b` is equivalent to `Int(a/b)`. この演算子は、整数値のみの有効値を返します。
+整数除算演算子は、ある数値を別の数値で割り算をし、その結果の整数部分を返し余りについては無視します。 `a\b` は`Int(a/b)` と等価です。 この演算子は、整数値のみの有効値を返します。
### 実数の比較
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/parameters.md
index 8a5ead63b78a3f..fbbcd3b672c10d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/Concepts/parameters.md
@@ -120,7 +120,7 @@ $entitySelection:=ds.User.query("login=:1"; $user)
:::note
-Do not confuse **parameter declarations** with [**variable declarations**](variables.md#declaring-variables). Using the `var` keyword with parameters will generate errors.
+**引数の宣言** と [**変数の宣言**](variables.md#declaring-variables) を混同しないでください。 引数に対して `var` キーワードを使用した場合、エラーを生成します。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/Desktop/building.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/Desktop/building.md
index fad33b7d22ecb4..d21f51502c8434 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/Desktop/building.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/Desktop/building.md
@@ -348,8 +348,8 @@ Windows においては、.exe 拡張子のついた実行ファイルが作成
この機能を有効化するためには、*buildApp* 設定ファイルに `DatabaseToEmbedInClientWinFolder` または `DatabaseToEmbedInClientMacFolder` キーを追加します。 いずれかのキーが存在する場合、アプリケーションビルドプロセスの途中で組み込みシングルユーザーアプリケーションが生成され、コンパイルされたストラクチャーが (EnginedServer.4Dlink ファイルの代わりに) "Database" フォルダー内に置かれます。
-* シングルユーザーアプリケーション内に "Default Data" フォルダーがあれば、アプリケーションにはライセンスが埋め込まれます。
-* シングルユーザーアプリケーション内に "Default Data" フォルダーがなければ、データファイルおよびライセンスなしでアプリケーションが実行されます。
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
基本シナリオは以下の通りです:
@@ -422,7 +422,7 @@ Windows においては、.exe 拡張子のついた実行ファイルが作成
## ライセンス&証明書ページ
-ライセンス&証明書のページでは、次のようなことができます:
+The Licenses & Certificate page can be used to:
* シングルユーザーのスタンドアロンアプリケーションに統合するライセンス番号を指定します。
* macOS 環境下では、証明書を使用してアプリケーションに署名をすることができます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md
index 0154f882c9f026..10cad873a7b390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormEditor/formEditor.md
@@ -53,24 +53,24 @@ title: フォームエディター
ツールバーには以下の要素があります:
-| アイコン | 名称 | 説明 |
-| ------------------------------------------------ | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-|  | フォーム実行 | フォームの実行をテストするために使用します。 このボタンをクリックすると、4D は新しいウィンドウを開き、そのコンテキストでフォームを表示します (リストフォームの場合レコードリスト、詳細フォームの場合カレントレコード)。 フォームはメインプロセスで実行されます。 |
-|  | [選択ツール](#selecting-objects) | Allows selecting, moving and resizing form objects.
**Note**: When an object of the Text or Group Box type is selected, pressing the **Enter** key lets you switch to editing mode. |
-|  | [入力順](#data-entry-order) | "入力順" モードに切り替わり、フォームの現在の入力順を表示・変更できます。 入力順は、バッジを使用して確認することもできます。 |
-|  | [移動](#moving-objects) | "移動" モードに移行し、ウィンドウ中をドラッグ&ドロップすることで素早くフォームの表示部分を移動することができます。 このモードでカーソルは手の形になります。 このモードは、フォームを拡大表示している時に特に便利です。 |
-|  | [拡大](#zoom) | フォーム表示の拡大/縮小率を変更できます (デフォルトで100%)。 "拡大/縮小" モードにするには虫眼鏡をクリックするか、拡大/縮小率バーをクリックします。 この機能は前節で説明しています。 |
-|  | [整列](#aligning-objects) | このボタンには、フォーム中でオブジェクトを均等に配置するためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
-|  | [均等配置](#distributing-objects) | このボタンには、フォーム中でオブジェクトの並びを揃えるためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
-|  | [レベル](#layering-objects) | このボタンには、フォーム上のオブジェクトの階層を変更するためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
-|  | [グループ化/グループ解除](#grouping-objects) | このボタンには、フォーム上の選択オブジェクトのグループ化やグループ解除をおこなうためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
-|  | [表示とページ管理](forms.html#form-pages) | このエリアを使用して、フォームページ間の移動やページの追加ができます。 フォームページを移動するには矢印ボタンをクリックするか、または中央のエリアをクリックすると現われるメニューから表示したいページを選択します。 最終ページが表示されている状態で、右矢印ボタンをクリックすると、4D はページを追加します。 |
-|  | [CSSプレビュー](#css-preview) | このボタンで、使用する CSSモードを選択します。 |
-|  | [ビュー管理](#views) | このボタンは、ビューパレットの表示や非表示をおこないます。 この機能については "オブジェクトビューを使用する" で説明しています。 |
-|  | [バッジ表示](#shields) | このボタンをクリックするたびに、すべてのタイプのフォームバッジが順に表示されます。 また、このボタンには、表示するバッジタイプを直接選択できるメニューが関連付けられています。 |
-|  | [定義済みオブジェクトライブラリ](objectLibrary.html) | このボタンは定義済みオブジェクトライブラリを表示します。 このライブラリは定義済みのプロパティを持つオブジェクトを多数提供します。 |
-|  | [リストボックスビルダー](#list-box-builder) | このボタンは、新しいエンティティセレクション型リストボックスを作成します。 |
-|  | [フィールドを挿入](#insert-fields) | このボタンは、テーブルフォームにおいて、親テーブルの全フィールド (オブジェクト型と BLOB型を除く) をインターフェース標準に従ってラベル付きで挿入します。 |
+| アイコン | 名称 | 説明 |
+| ------------------------------------------------ | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
+|  | フォーム実行 | フォームの実行をテストするために使用します。 このボタンをクリックすると、4D は新しいウィンドウを開き、そのコンテキストでフォームを表示します (リストフォームの場合レコードリスト、詳細フォームの場合カレントレコード)。 フォームはメインプロセスで実行されます。 |
+|  | [選択ツール](#selecting-objects) | フォームオブジェクトの選択・移動・リサイズをおこないます。
**注**: テキストやグループボックスタイプのオブジェクトが選択されている場合、**Enter** キーを押すことで編集モードになります。 |
+|  | [入力順](#data-entry-order) | "入力順" モードに切り替わり、フォームの現在の入力順を表示・変更できます。 入力順は、バッジを使用して確認することもできます。 |
+|  | [移動](#moving-objects) | "移動" モードに移行し、ウィンドウ中をドラッグ&ドロップすることで素早くフォームの表示部分を移動することができます。 このモードでカーソルは手の形になります。 このモードは、フォームを拡大表示している時に特に便利です。 |
+|  | [拡大](#zoom) | フォーム表示の拡大/縮小率を変更できます (デフォルトで100%)。 "拡大/縮小" モードにするには虫眼鏡をクリックするか、拡大/縮小率バーをクリックします。 この機能は前節で説明しています。 |
+|  | [整列](#aligning-objects) | このボタンには、フォーム中でオブジェクトを均等に配置するためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
+|  | [均等配置](#distributing-objects) | このボタンには、フォーム中でオブジェクトの並びを揃えるためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
+|  | [レベル](#layering-objects) | このボタンには、フォーム上のオブジェクトの階層を変更するためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
+|  | [グループ化/グループ解除](#grouping-objects) | このボタンには、フォーム上の選択オブジェクトのグループ化やグループ解除をおこなうためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
+|  | [表示とページ管理](forms.html#form-pages) | このエリアを使用して、フォームページ間の移動やページの追加ができます。 フォームページを移動するには矢印ボタンをクリックするか、または中央のエリアをクリックすると現われるメニューから表示したいページを選択します。 最終ページが表示されている状態で、右矢印ボタンをクリックすると、4D はページを追加します。 |
+|  | [CSSプレビュー](#css-preview) | このボタンで、使用する CSSモードを選択します。 |
+|  | [ビュー管理](#views) | このボタンは、ビューパレットの表示や非表示をおこないます。 この機能については "オブジェクトビューを使用する" で説明しています。 |
+|  | [バッジ表示](#shields) | このボタンをクリックするたびに、すべてのタイプのフォームバッジが順に表示されます。 また、このボタンには、表示するバッジタイプを直接選択できるメニューが関連付けられています。 |
+|  | [定義済みオブジェクトライブラリ](objectLibrary.html) | このボタンは定義済みオブジェクトライブラリを表示します。 このライブラリは定義済みのプロパティを持つオブジェクトを多数提供します。 |
+|  | [リストボックスビルダー](#list-box-builder) | このボタンは、新しいエンティティセレクション型リストボックスを作成します。 |
+|  | [フィールドを挿入](#insert-fields) | このボタンは、テーブルフォームにおいて、親テーブルの全フィールド (オブジェクト型と BLOB型を除く) をインターフェース標準に従ってラベル付きで挿入します。 |
### オブジェクトバー
@@ -235,12 +235,12 @@ title: フォームエディター
オブジェクトをグループ化するには:
1. グループ化したいオブジェクトを選択します。
-2. オブジェクトメニューから **グループ化** を選択します。 OR Click the Group button in the toolbar of the Form editor:
 4D marks the boundary of the newly grouped objects with handles. グループ内の各オブジェクトの境界にはハンドルが表示されません。 これ以降、グループ化されたオブジェクトを編集すると、グループを構成する全オブジェクトが変更されます。
+2. オブジェクトメニューから **グループ化** を選択します。 または フォームエディターのツールバーでグループ化ボタンをクリックします:
 4D は、新たにグループ化されたオブジェクトの境界をハンドルで表わします。 グループ内の各オブジェクトの境界にはハンドルが表示されません。 これ以降、グループ化されたオブジェクトを編集すると、グループを構成する全オブジェクトが変更されます。
オブジェクトのグループ化を解除するには:
1. グループ化を解除したいグループオブジェクトを選択します。
-2. Choose **Ungroup** from the **Object** menu.
OR
Click the **Ungroup** button (variant of the **Group** button) in the toolbar of the Form editor.
If **Ungroup** is dimmed, this means that the selected object is already separated into its simplest form. 4D は個々のオブジェクトの境界をハンドルで表わします。
+2. **オブジェクト** メニューから **グループ化解除** を選択します。
または
フォームエディターのツールバーで **グループ化解除** ボタン(**グループ化** ボタンのサブ項目) をクリックします。
If **グループ化解除** が選択不可の場合、選択したオブジェクトはグループに属していないことを意味します。 4D は個々のオブジェクトの境界をハンドルで表わします。
### オブジェクトの整列
@@ -269,7 +269,7 @@ title: フォームエディター
- "左/右整列" や "上/下整列" エリアで、実行しようとする整列に対応する整列アイコンをクリックします。
見本エリアには、選択結果が表示されます。
-- 標準のアンカー方式による整列を実行するには、**プレビュー** または **適用** をクリックします。 この場合、整列をおこなう方向で最も離れた位置にあるオブジェクトがアンカーとして使用され、他のオブジェクトはこのオブジェクトに合わせられます。 たとえば、一連のオブジェクトに対して右揃えを実行したい場合、一番右側に位置するオブジェクトがアンカーとして使用されます。 OR:
To align objects to a specific object, select the **Align on** option and select the object to which you want the other objects to be aligned from the object list. この場合、基準オブジェクトの位置は変わりません。
+- 標準のアンカー方式による整列を実行するには、**プレビュー** または **適用** をクリックします。 この場合、整列をおこなう方向で最も離れた位置にあるオブジェクトがアンカーとして使用され、他のオブジェクトはこのオブジェクトに合わせられます。 たとえば、一連のオブジェクトに対して右揃えを実行したい場合、一番右側に位置するオブジェクトがアンカーとして使用されます。 または:
特定のオブジェクトを基準にオブジェクトを揃えるには、 **整列** オプションを選択し、整列基準としたいオブジェクトを一覧から選択します。 この場合、基準オブジェクトの位置は変わりません。
**プレビュー** ボタンをクリックすると、整列の結果をプレビューすることができます。 するとフォームエディター上のオブジェクトは見かけ上整列しますが、ダイアログボックスが表示されたままなので、この整列のキャンセルや適用をおこなうことができます。
@@ -304,7 +304,7 @@ title: フォームエディター
1. 3つ以上のオブジェクトを選択し、希望する均等配置ツールをクリックします。
-2. In the toolbar, click on the distribution tool that corresponds to the distribution you want to apply.

OR
Select a distribution menu command from the **Align** submenu in the **Object** menu or from the context menu of the editor. 4D は各オブジェクトを均等に配置します。 各オブジェクトの中心までの間隔、および隣接する 2つのオブジェクトの間隔のうち最も広い間隔が基準として用いられます。
+2. 適用したい均等配置に対応する整列ツールをツールバー上で選択します。

または
**オブジェクト** メニュー、またはエディターのコンテキストメニューの **整列** サブメニューから均等メニューコマンドを選択します。 4D は各オブジェクトを均等に配置します。 各オブジェクトの中心までの間隔、および隣接する 2つのオブジェクトの間隔のうち最も広い間隔が基準として用いられます。
"整列と均等配置" ダイアログボックスを用いてオブジェクトを均等に配置するには:
@@ -312,9 +312,9 @@ title: フォームエディター
2. **オブジェクト** メニュー、またはエディターのコンテキストメニューの **整列** サブメニューから **整列...** コマンドを選択します。 以下のダイアログボックスが表示されます:
-3. In the Left/Right Alignment and/or Top/Bottom Alignment areas, click the standard distribution icon: 
(Standard horizontal distribution icon)
The example area displays the results of your selection.
+3. "左/右整列" や "上/下整列" エリアで、標準の均等配置アイコンをクリックします: 
(標準の横均等揃えアイコン)
見本エリアには、選択結果が表示されます。
-4. To perform a distribution that uses the standard scheme, click **Preview** or *Apply*.
In this case 4D will perform a standard distribution, so that the objects are set out with an equal amount of space between them.
OR:
To execute a specific distribution, select the **Distribute** option (for example if you want to distribute the objects based on the distance to their right side). このオプションはスイッチのように機能します。 均等配置チェックボックスが選択されていると、このオプションの下にあるアイコンは異なる動作をおこないます:
+4. 標準の均等配置を実行するには、**プレビュー** または *適用* をクリックします。
この場合、4D は標準の均等配置を実行し、オブジェクトは等間隔で配置されます。
または:
特定の均等配置を実行するには、**均等配置** オプションを選択します (たとえば各オブジェクトの右辺までの距離をもとにしてオブジェクトを均等に配置したい場合)。 このオプションはスイッチのように機能します。 均等配置チェックボックスが選択されていると、このオプションの下にあるアイコンは異なる動作をおこないます:
- 左/右整列の場合、各アイコンは次の均等配置に対応します: 選択オブジェクトの左辺、中央 (横)、右辺で均等に揃えます。
- 上/下整列の場合、各アイコンは次の均等配置に対応します: 選択オブジェクトの上辺、中央 (縦)、下辺で均等に揃えます。
@@ -340,7 +340,7 @@ title: フォームエディター
:::note
-In binary databases, use **Ctrl+Click / Command+Click** to perform the same action.
+バイナリーデータベースにおいては、同じアクションを実行するためには **Ctrl+クリック / Command+クリック** を使用してください。
:::
@@ -378,7 +378,7 @@ JSONフォームの入力順序の設定は、[`entryOrder`](properties_JSONref.
ポインターが入力順ポインターに変わり、4D はフォーム上に線を引いて、データ入力時にオブジェクトが選択される順序を示します。 ツールパレット上の他のツールをクリックするまでは、入力順序の表示と変更操作しかおこなえません。
-2. To change the data entry order, position the pointer on an object in the form and, while holding down the mouse button, drag the pointer to the object you want next in the data entry order.

4D will adjust the entry order accordingly.
+2. データ入力順を変更するには、フォームオブジェクト上にポインターを置き、マウスボタンを押したまま、次の入力順に設定したいオブジェクトまでポインターをドラッグします。

これに応じて、4D はデータ入力順を調整します。
3. 入力順を設定したいだけ、ステップ2 を繰り返します。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md
index b20e580f102a47..bd1be7e5cd9569 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/listbox_overview.md
@@ -221,7 +221,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| On Scroll | [horizontalScroll](#追加プロパティ)[verticalScroll](#追加プロパティ) | |
| On Unload | | |
-#### Additional Properties {additional-properties}
+#### 追加プロパティ {additional-properties}
リストボックスやリストボックス列オブジェクトにて発生するフォームイベントは、次の追加プロパティを返すことがあります:
@@ -254,7 +254,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
### 列特有のプロパティ {#column-specific-properties}
-[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type-list) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap)
+[文字フォ-マット](properties_Display.md#文字フォマット) - [交互に使用する背景色](properties_BackgroundAndBorder.md#交互に使用する背景色) - [自動行高](properties_CoordinatesAndSizing.md#自動行高) - [背景色/塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - [背景色式](properties_BackgroundAndBorder.md#背景色式) - [太字](properties_Text.md#太字) - [選択リスト](properties_DataSource.md#選択リスト) - [CSSクラス](properties_Object.md#cssクラス) - [コンテキストメニュー](properties_Entry.md#コンテキストメニュー) - [データタイプ (式の型)](properties_DataSource.md#データタイプ-式の型) - [日付フォーマット](properties_Display.md#日付フォーマット) - [デフォルト値](properties_DataSource.md#デフォルト値) - [表示タイプ](properties_Display.md#表示タイプ) - [入力可](properties_Entry.md#入力可) - [入力フィルター](properties_Entry.md#入力フィルター) - [除外リスト](properties_RangeOfValues.md#除外リスト) - [式](properties_DataSource.md#式) - [変数あるいは式 (配列リストボックス)](properties_Object.md#配列リストボックス) - [フォント](properties_Text.md#フォント) - [フォントカラー](properties_Text.md#フォントカラー) - [横揃え](properties_Text.md#横揃え) - [イタリック](properties_Text.md#イタリック) - [表示状態](properties_Display.md#表示状態) - [最大幅](properties_CoordinatesAndSizing.md#最大幅) - [メソッド](properties_Action.md#メソッド) - [最小幅](properties_CoordinatesAndSizing.md#最小幅) - [マルチスタイル](properties_Text.md#マルチスタイル) - [数値フォーマット](properties_Display.md#数値フォーマット) - [オブジェクト名](properties_Object.md#オブジェクト名) - [ピクチャーフォーマット](properties_Display.md#ピクチャーフォーマット) - [サイズ変更可](properties_ResizingOptions.md#サイズ変更可) - [指定リスト](properties_RangeOfValues.md#指定リスト) - [行背景色配列](properties_BackgroundAndBorder.md#行背景色配列) - [行フォントカラー配列](properties_Text.md#行フォントカラー配列) - [行スタイル配列](properties_Text.md#行スタイル配列) - [関連付け](properties_DataSource.md#関連付け) - [スタイル式](properties_Text.md#スタイル式) - [テキスト (True時)/テキスト (False時)](properties_Display.md#テキスト-true時テキスト-false時) - [時間フォーマット](properties_Display.md#時間フォーマット) - [エリプシスを使用して省略](properties_Display.md#エリプシスを使用して省略) - [下線](properties_Text.md#下線) - [変数あるいは式](properties_Object.md#変数あるいは式) - [縦揃え](properties_Text.md#縦揃え) - [幅](properties_CoordinatesAndSizing.md#幅) - [ワードラップ](properties_Display.md#ワードラップ)
### フォームイベント
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Entry.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Entry.md
index be89d5a55b1b08..0926d8d03aa4f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Entry.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/properties_Entry.md
@@ -28,7 +28,7 @@ title: 入力
ピクチャー型の [入力](input_overview.md) オブジェクトの場合、標準の編集コマンド (カット、コピー、ペースト、そしてクリア) に加え、ファイルからピクチャーを読み込むために使用することのできる **読み込み...** コマンド、ピクチャーをディスクに保存するのに使用する **別名で保存...** コマンドなどがあります。 また、メニューを使用してピクチャーの表示フォーマットを変更することもできます。 **トランケート (中央合わせなし)**、**スケーリング** そして **スケーリング (中央合わせ/プロポーショナル)** から選択できます。 このメニューを使用した [表示フォーマット](properties_Display#ピクチャーフォーマット) の変更は一時的なものであり、レコードには保存されません。
-For a [multi-style](properties_Text.md#multi-style) text type [input](input_overview.md) or [listbox column](listbox_overview.md#list-box-columns), in addition to standard editing commands, the context menu provides the following commands:
+[マルチスタイル](properties_Text.md#マルチスタイル) オプションがチェックされているテキスト型の [入力](input_overview.md) オブジェクトまたは [リストボックスカラム](listbox_overview.md#リストボックスカラム) の場合、標準の編集コマンド以外に以下の様なコマンドを使用することができます:
- **フォント...**: フォントシステムダイアログボックスを表示させます。
- **最近使用したフォント**: セッション中に最近使用されたフォント名を表示します。 リストには最大で 10フォントまで表示されます (それ以上は古いものから置き換えられていきます)。 デフォルトではリストは空になっているので、このオプションは表示されません。 このリストは `SET RECENT FONTS` と `FONT LIST` コマンドを使用して管理することができます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
index 65dcc5240bc276..5c4abed48e3f88 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
@@ -123,12 +123,21 @@ title: サブフォーム
"MySubForm" サブフォームオブジェクト中の "MyButton" オブジェクトに割り当てられた変数へのポインターを返します。 このシンタックスを使用すれば、親フォームからサブフォーム内のオブジェクトにアクセスできます。 また、`OBJECT Get name` コマンドを使用すればフォーカスを持つオブジェクトの名前を取得できます。
-#### CALL SUBFORM CONTAINER コマンド
+#### CALL SUBFORM CONTAINER コマンド {#call-subform-container-command}
`CALL SUBFORM CONTAINER` コマンドを使用すると、サブフォームインスタンスからサブフォームコンテナーオブジェクトにイベントを送信できます。その結果、親フォームのコンテキストで処理が可能となります。 イベントはコンテナーオブジェクトメソッドで受信されます。 (クリックやドラッグ&ドロップなど) サブフォームにより検知されたすべてのイベントの発生元となりえます。
送信するイベントコードに制限はありません (たとえば 20000 や -100 など)。 既存のイベントに対応するコード (たとえば `On Validate` に対応する 3) を使用することも、カスタムコードを使用することもできます。 前者のケースでは、サブフォームコンテナーのプロパティリストでチェックを入れたイベントのみを使用できます。 後者の場合、使用するコードは既存のフォームイベントに対応してはいけません。 将来の 4Dバージョンで番号が衝突しないようにするために、負数の使用が推奨されます。
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
詳細は `CALL SUBFORM CONTAINER` コマンドの説明を参照してください。
#### EXECUTE METHOD IN SUBFORM コマンド
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-19/REST/configuration.md b/i18n/ja/docusaurus-plugin-content-docs/version-19/REST/configuration.md
index 90dce8fb4ce72a..25862ce465827f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-19/REST/configuration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-19/REST/configuration.md
@@ -7,7 +7,7 @@ title: サーバー設定
REST機能を使い始めるまえに、まずは 4D REST サーバーの設定をおこない、これを起動させる必要があります。
-> - 4D Server上では、開かれる RESTセッションにつき、4D Client ライセンスが1消費されます。
+> - 4D Server 上では、開かれる RESTセッションにつき、4Dクライアントライセンスが 1 消費されます。
> - シングルユーザーの 4D では、テスト目的で RESTセッションを 3つまで開くことができます。
> - リクエストをおこなうアプリケーションの [セッション](authUsers.md) は別途管理する必要があります。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/API/EntitySelectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/API/EntitySelectionClass.md
index d4229c8053e25e..28ea0efc50b71a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/API/EntitySelectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/API/EntitySelectionClass.md
@@ -461,7 +461,7 @@ $emp2:=$employees.at(-3) // $employees エンティティセレクションの
デフォルトでは、あるエンティティが削除 ([drop](EntitySelectionClass.md#drop)) された場合、既存のエンティティセレクション内のこのエンティティへの参照は *undefined* になりますが、エンティティセレクションオブジェクト から参照そのものは削除されません。 削除されたエンティティは、[`.length`](#length) プロパティの数にまだ含まれており、リストなどのインターフェースオブジェクトにエンティティセレクションがバインドされている場合、空白の行として表示されます。 この場合、エンティティセレクションに対して `.clean()` 関数を呼び出すことで、*undefined* なエンティティ参照が含まれない、最新のエンティティセレクションを新規に取得することができます。
-結果のエンティティセレクションは、元のエンティティセレクションと種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
+結果のエンティティセレクションは、元のエンティティセレクションと同じ種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
#### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
index 74c073b5d3f6d5..97d8908de7fdc6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
@@ -50,7 +50,7 @@ macOS のターミナルまたは Windows のコンソールを使用して、
| `--skip-onstartup` | | `On Startup` および `On Exit` データベースメソッドを含む "自動" メソッドを一切実行せずにプロジェクトを起動します。 |
| `--startup-method` | プロジェクトメソッド名 (文字列) | (`--skip-onstartup` でスキップされていない場合) `On Startup` データベースメソッドの直後に実行するプロジェクトメソッドです。 |
-(\*) 一部のダイアログはデータベースを開く前に表示されるため、[診断ログファイル](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) に記録することができません (ライセンス警告、変換ダイアログ、データベース選択、データファイル選択)。 このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
index 75c64fe3057115..32a77d067eba1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
@@ -32,7 +32,7 @@ title: ライセンスリスト
一部の4D ライセンスには有効期限があり、それを過ぎた場合には更新する必要があります。 ライセンスのサブスクリプションが4D ストア上で更新されると、ウェルカムウィザードから[ログイン](GettingStarted/Installation.md)すると、お使いの4D アプリケーション内のライセンスは自動的に更新されます。
-一部のケースにおいては、ライセンスマネージャダイアログボックス内の[**更新** ボタン](#更新) をクリックする必要があるものもあります。
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## ライセンスの有効化
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
index 341e6a65591a37..876299247a1636 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
@@ -407,8 +407,8 @@ Windows用サーバーアプリケーションのビルドに使用される App
この機能を有効化するためには、 *buildApp* 設定ファイルに `DatabaseToEmbedInClientWinFolder` または `DatabaseToEmbedInClientMacFolder` キーを追加します。 いずれかのキーが存在する場合、アプリケーションビルドプロセスの途中で組み込みシングルユーザーアプリケーションが生成され、コンパイルされたストラクチャーが(EnginedServer.4Dlink ファイルの代わりに) "Database" フォルダー内に置かれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがあれば、アプリケーションにはライセンスが埋め込まれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがなければ、データファイルおよびライセンスなしでアプリケーションが実行されます。
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
基本シナリオは以下の通りです:
@@ -500,7 +500,7 @@ Windows用サーバーアプリケーションのビルドに使用される App
## ライセンス&証明書ページ
-ライセンス&証明書のページでは、次のようなことができます:
+The Licenses & Certificate page can be used to:
- [スタンドアロン](#アプリケーションページ)アプリケーションまたは[クライアントサーバー](#クライアントサーバーページ) アプリケーションに統合したい[運用ライセンス](../Admin/licenses.md#運用ライセンス) を設定します。
- macOS 環境下では、証明書を使用してアプリケーションに署名をすることができます。
@@ -535,7 +535,7 @@ Windows用サーバーアプリケーションのビルドに使用される App
- [`License info`](../commands/license-info.md) コマンドを使用するとアプリケーションライセンスのタイプ (*.attributes* コレクション) およびそれらの有効期限 (*.expirationDate* オブジェクト) を知ることができます。
- BuildApplication の[`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.ja.html) xml キーを使用すると、評価版を管理することができます。
-- [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) コマンドは、評価版から呼び出された場合には何もしません。
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Develop/field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Develop/field-properties.md
index a3dee0bff39419..bd512de3b5bc00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Develop/field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Develop/field-properties.md
@@ -3,7 +3,7 @@ id: field-properties
title: フィールドプロパティ
---
-For other field properties, please refer to [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.en.html).
+他のフィールドプロパティについては、 [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.ja.html) を参照してください。
## Class
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Events/onValidate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Events/onValidate.md
index e71db804f9a9e1..663ac0e6bd8cc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Events/onValidate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Events/onValidate.md
@@ -9,7 +9,7 @@ title: On Validate
## 説明
-This event is triggered when the record data entry has been validated, for example after an `accept` [standard action](FormObjects/properties_Action.md#standard-action).
+このイベントは、例えば `accept` [標準アクションの後](FormObjects/properties_Action.md#標準アクション) など、レコードデータの入力が受け入れられたときにトリガーされます。
### サブフォーム
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Extensions/develop-components.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Extensions/develop-components.md
index dd2b3562766813..51b03e3d23c1ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Extensions/develop-components.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Extensions/develop-components.md
@@ -172,16 +172,16 @@ $rect:=cs.eGeometry._Rectangle.new(10;20)
## 変数の渡し方
-Variables are not shared between components and host projects. ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
+変数はコンポーネントとホストプロジェクト間では共有されません。 ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
配列を使用した例:
```4d
-//In the host project:
+//ホストプロジェクト内
ARRAY INTEGER(MyArray;10)
AMethod(->MyArray)
-//In the component, the AMethod project method contains:
+//コンポーネント内、AMethod プロジェクトメソッドには以下の記述があります:
#DECLARE($ptr : Pointer)
APPEND TO ARRAY($ptr->;2)
```
@@ -201,11 +201,11 @@ $p:=component_method2(...)
ポインターを使用しない場合でも、コンポーネント側からホストデータベースの (変数そのものではなく) 変数の値にアクセスすること自体は可能ですし、その逆も可能です:
```4d
-//In the host database
+//ホストデータベース内
var $input_t : Text
$input_t:="DoSomething"
component_method($input_t)
-// component_method gets "DoSomething" in parameter (but not the $input_t variable)
+// component_method は($input_t 変数ではなく) "DoSomething" を引数として受け取ります
```
ホストプロジェクトとコンポーネント間でポインターを使用して通信をおこなうには、以下の点を考慮する必要があります:
@@ -219,7 +219,7 @@ component_method($input_t)
- コンポーネントI が定義する変数 `myIvar` があるとき、コンポーネントC はポインター `->myIvar` を使用しても変数の値にアクセスすることはできません。 このシンタックスは実行エラーを起こします。
-- The comparison of pointers using the [`RESOLVE POINTER`](../commands/resolve-pointer) command is not recommended with components since the principle of partitioning variables allows the coexistence of variables having the same name but with radically different contents in a component and the host project (or another component). 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
+- [`RESOLVE POINTER`](../commands/resolve-pointer) コマンドを使用したポインターの比較はお勧めできません。変数の分離の原則により、ホストプロジェクトとコンポーネント (あるいは他のコンポーネント) で同じ名前の変数が存在することができますが、根本的にそれらは異なる内容を持ちます。 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
```4d
RESOLVE POINTER(myptr1;vVarName1;vtablenum1;vfieldnum1)
@@ -252,7 +252,7 @@ methCreateRec(->[PEOPLE];->[PEOPLE]Name;"Julie Andrews")
コンポーネント内の `methCreateRec` メソッドのコード:
```4d
-#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //Pointer on a table in host project
+#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //ホストプロジェクト内のテーブルへのポインター
CREATE RECORD($tablepointer->)
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormEditor/formEditor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormEditor/formEditor.md
index 9bf14e03b6ad74..2e96628c8a2c8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormEditor/formEditor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormEditor/formEditor.md
@@ -148,7 +148,7 @@ title: フォームエディター
1. ツールバーの矢印ツールをクリックします。

-
When you move the pointer into the form area, it becomes a standard arrow-shaped pointer.
+
マウスカーソルをフォームエリアに移動させると、カーソルは標準の矢印の形をしたポインターに変わります。
2. 選択したいオブジェクトをクリックします。 サイズ変更ハンドルが表示され、オブジェクトが選択されたことを表します。

@@ -156,7 +156,6 @@ title: フォームエディター
1. プロパティリストの一番上にあるオブジェクトリストドロップダウンリストからオブジェクト名を選択します。 この方法では、他のオブジェクトの下に隠れているオブジェクトや、カレントウィンドウの表示領域外に置かれているオブジェクトを選択することができます。
オブジェクトの選択を解除するには、オブジェクト境界の外側をクリックするか、またはオブジェクト上で **Shift+クリック** します。
- > "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックして選択することもできます。
> "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックして選択することもできます。
@@ -353,7 +352,7 @@ title: フォームエディター
:::note
-In binary databases, use **Ctrl+Click / Command+Click** to perform the same action.
+バイナリーデータベースにおいては、同じアクションを実行するためには **Ctrl+クリック / Command+クリック** を使用してください。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/listbox_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/listbox_overview.md
index efd8bdd7db642b..def25d39f3b183 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/listbox_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/listbox_overview.md
@@ -72,7 +72,7 @@ title: リストボックス
> 配列タイプのリストボックスは、特別なメカニズムをもつ [階層モード](listbox_overview.md#階層リストボックス) で表示することができます。
配列タイプのリストボックスでは、入力あるいは表示される値は 4Dランゲージで制御します。 列に [選択リスト](properties_DataSource.md#選択リスト) を割り当てて、データ入力を制御することもできます。
-The values of columns are managed using high-level List box commands (such as [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) or `LISTBOX DELETE ROWS`) as well as array manipulation commands. たとえば、列の内容を初期化するには、以下の命令を使用できます:
+リストボックスのハイレベルコマンド ([`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) や `LISTBOX DELETE ROWS` 等) や配列操作コマンドを使用して、列の値を管理します。 たとえば、列の内容を初期化するには、以下の命令を使用できます:
```4d
ARRAY TEXT(varCol;size)
@@ -195,7 +195,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> リストボックスの列、ヘッダーおよびフッターにもそれぞれ固有のプロパティがあります。
-### Supported Form Events {#supported-form-events}
+### サポートされるフォームイベント {#supported-form-events}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -232,7 +232,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| On Scroll | [horizontalScroll](#追加プロパティ)[verticalScroll](#追加プロパティ) | |
| On Unload | | |
-#### Additional Properties {additional-properties}
+#### 追加プロパティ {additional-properties}
リストボックスやリストボックス列オブジェクトにて発生するフォームイベントは、次の追加プロパティを返すことがあります:
@@ -266,11 +266,11 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> 配列型リストボックスのカラムについては、[式タイプ](properties_Object.md#式の型-式タイプ)
> (テキスト、数値、整数、ブール、ピクチャー、時間、日付、あるいはオブジェクト) を定義することができます。
-### Column Specific Properties {#column-specific-properties}
+### カラム特有のプロパティ {#column-specific-properties}
-[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type-list) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap)
+[オブジェクト名](properties_Object.md#オブジェクト名) - [変数あるいは式](properties_Object.md#変数あるいは式) - [式の型](properties_Object.md#式の型式タイプ) - [CSSクラス](properties_Object.md#cssクラス) - [選択リスト](properties_DataSource.md#選択リスト-静的リスト) - [式](properties_DataSource.md#式) - [幅](properties_CoordinatesAndSizing.md#幅) - [入力可](properties_Entry.md#入力可) - [フォーカス可](properties_Entry.md#フォーカス可) - [コンテキストメニュー](properties_Entry.md#コンテキストメニュー) - [デフォルト値](properties_DataSource.md#デフォルト値) - [選択リスト](properties_DataSource.md#選択リスト) - [式](properties_DataSource.md#式) - [データタイプ (リスト)](properties_DataSource.md#データタイプ-リスト) - [関連付け](properties_DataSource.md#関連付け) - [自動行高](properties_CoordinatesAndSizing.md#自動行高) - [最小幅](properties_CoordinatesAndSizing.md#最小幅) - [最大幅](properties_CoordinatesAndSizing.md#最大幅) - [横方向パディング](properties_CoordinatesAndSizing.md#横方向パディング) - [縦方向パディング](properties_CoordinatesAndSizing.md#縦方向パディング) - [サイズ変更可](properties_ResizingOptions.md#サイズ変更可) - [指定リスト](properties_RangeOfValues.md#指定リスト) - [除外リスト](properties_RangeOfValues.md#除外リスト) - [表示タイプ](properties_Display.md#d表示タイプ) - [文字フォ-マット](properties_Display.md#文字フォ-マット) - [日付フォーマット](properties_Display.md#日付フォーマット) - [時間フォーマット](properties_Display.md#時間フォーマット) - [数値フォーマット](properties_Display.md#数値フォーマット) - [テキスト (True時)/テキスト (False時)](properties_Display.md#テキスト-true時-テキスト-false時) - [ピクチャーフォーマット](properties_Display.md#ピクチャーフォーマット) - [非表示](properties_Display.md#表示状態) - [ワードラップ](properties_Display.md#ワードラップ) - [エリプシスを使用して省略](properties_Display.md#エリプシスを使用して省略) - [背景色](properties_BackgroundAndBorder.md#背景色-塗りカラー) - [交互に使用する背景色](properties_BackgroundAndBorder.md#交互に使用する背景色) - [背景色式](properties_BackgroundAndBorder.md#背景色式) - [行背景色配列](properties_BackgroundAndBorder.md#行背景色配列) - [フォント](properties_Text.md#フォント) - [太字](properties_Text.md#太字) - [イタリック](properties_Text.md#イタリック) - [下線](properties_Text.md#下線) - [行スタイル配列](properties_Text.md#行スタイル配列) - [スタイル式](properties_Text.md#スタイル式) - [フォントカラー](properties_Text.md#フォントカラー) - [行フォントカラー配列](properties_Text.md#行フォントカラー配列) - [横揃え](properties_Text.md#横揃え) - [縦揃え](properties_Text.md#縦揃え) - [マルチスタイル](properties_Text.md#マルチスタイル) - [メソッド](properties_Action.md#メソッド)
-### Supported Form Events {#supported-form-events-1}
+### サポートされるフォームイベント {#supported-form-events-1}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -313,7 +313,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
ランタイムにおいてヘッダーで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a header, it is applied to all headers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
+ヘッダーに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのヘッダーが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
### ヘッダー特有のプロパティ
@@ -349,7 +349,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
ランタイムにおいてフッターで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a footer, it is applied to all footers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
+フッターに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのフッターが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
### フッター特有のプロパティ
@@ -461,7 +461,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
End if
```
-> The [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command scrolls the list box rows so that the first selected row or a specified row is displayed.
+> [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) コマンドは、最初に選択された行または指定された行を表示するようにリストボックスをスクロールします。
### 選択行の見た目のカスタマイズ
@@ -693,14 +693,14 @@ End if
### 詳細モード
-このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command is used to control the printing of the object.
+このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドはオブジェクトの印刷をコントロールするために使用されるコマンドです。
このモードでは:
-- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 The size of the object actually printed can be obtained via the [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command.
+- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 実際に印刷されたオブジェクトのサイズは [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用することで取得することができます。
- リストボックスオブジェクトは "そのまま" 印刷されます。言い換えれば、ヘッダーやグリッド線の表示、表示/非表示行など、現在の表示設定が考慮されます。
- These parameters also include the first row to be printed: if you call the [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command before launching the printing, the first row printed in the list box will be the one designated by the command.
-- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command can be used to check the status of the printing while it is underway.
+ これらの設定には印刷される最初の行も含みます。印刷を実行する前に [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) を呼び出すと、リストボックスに印刷される最初の行はコマンドで指定した行になります。
+- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用して印刷の状態を進行中にチェックすることができます。
## 階層リストボックス
@@ -716,7 +716,7 @@ End if
- フォームエディターのプロパティリストを使用して階層要素を手作業で設定する (または JSON フォームを編集する)。
- フォームエディターのリストボックス管理メニューを使用して階層を生成する。
-- Use the [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) and [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) commands.
+- [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) と [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) コマンドを使用する。
#### "階層リストボックス" プロパティによる階層化
@@ -839,7 +839,7 @@ Variable 2 も常に表示され、入力できます。 これは二番目の
> 親が折りたたまれているために行が非表示になっていると、それらは選択から除外されます。 (直接あるいはスクロールによって) 表示されている行のみを選択できます。 言い換えれば、行を選択かつ隠された状態にすることはできません。
-As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command will return the same values for a hierarchical list box and a non-hierarchical list box. This means that in both of the examples below, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) will return the same position: (3;2).
+選択と同様に、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは階層リストボックスと非階層リストボックスにおいて同じ値を返します。 つまり以下の両方の例題で、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は同じ位置 (3;2) を返します。
*非階層表示:*

@@ -851,11 +851,11 @@ As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-ce
#### ブレーク行の管理
-If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns the first occurrence of the row in the corresponding array. 以下のケースで:
+ユーザーがブレーク行を選択すると、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は対応する配列の最初のオカレンスを返します。 以下のケースで:

-... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns (2;4). To select a break row by programming, you will need to use the [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) command.
+... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は (2;4) を返します。 プログラムでブレーク行を選択するには [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) コマンドを使用する必要があります。
ブレーク行はリストボックスのグラフィカルな表示 (スタイルやカラー) を管理する内部的な配列では考慮されません。 しかし、オブジェクトのグラフィックを管理するオブジェクト (フォーム) テーマのコマンドを使用してブレーク行の表示を変更できます。 階層を構成する配列に対して、適切なコマンドを実行します。
@@ -884,19 +884,19 @@ If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listb
`On Expand` や `On Collapse` フォームイベントを使用して階層リストボックスの表示を最適化できます。
-階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 This makes it difficult to build large hierarchical list boxes based on arrays generated from data (through the [`SELECTION TO ARRAY`](../commands/selection-to-array) command), not only because of the display speed but also the memory used.
+階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 大量のデータから ([`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドを使用して) 生成される配列をもとに階層リストボックスを構築するのは、表示速度だけでなくメモリ使用量の観点からも困難が伴います。
-`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 In the context of these events, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell where the user clicked in order to expand or collapse a row.
+`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 これらのイベントのコンテキストでは、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは、行を展開/折りたたむためにユーザーがクリックしたセルを返します。
この場合、開発者がコードを使用して配列を空にしたり値を埋めたりしなければなりません。 実装する際注意すべき原則は以下のとおりです:
- リストボックスが表示される際、先頭の配列のみ値を埋めます。 しかし 2番目の配列を空の値で生成し、リストボックスに展開/折りたたみアイコンが表示されるようにしなければなりません:

-- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned and lets you build the appropriate hierarchy: you fill the first array with the repeated values and the second with the values sent from the [`SELECTION TO ARRAY`](../commands/selection-to-array) command and you insert as many rows as needed in the list box using the [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) command.
+- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドはクリックされたセルを返すので、適切な階層を構築します: 先頭の配列に繰り返しの値を設定し、2番目の配列には [`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドから得られる値を設定します。そして[`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) コマンドを使用して必要なだけ行を挿入します。

-- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned: you remove as many rows as needed from the list box using the [`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) command.
+- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは該当するセルを返します。そして[`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) コマンドを使用して必要なだけ行をリストボックスから削除することができます。
## オブジェクト配列の使用
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/pictureButton_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/pictureButton_overview.md
index 6b5575d2aab544..07189a42b6d244 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/pictureButton_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/pictureButton_overview.md
@@ -54,7 +54,7 @@ title: ピクチャーボタン
- [ロールオーバー効果](properties_Animation.md#ロールオーバー効果)
- [マウス押下中は自動更新](properties_Animation.md#マウス押下中は自動更新)
- [無効時に最終フレームを使用](properties_Animation.md#無効時に最終フレームを使用)
-- [Switch every x seconds](./properties_Animation.md#switch-every-x-seconds)
+- [アニメーション間隔 (秒)](./properties_Animation.md#アニメーション間隔-秒)
> ピクチャーボタンに [関連付けた変数](properties_Object.md#変数あるいは式) は、ピクチャーのサムネールテーブルで現在表示されているピクチャーのインデックス番号を返します。 このテーブル内のピクチャー番号は 0 から始まります。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
index 140dd6f5bccbe0..21758c7656c9c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
@@ -182,12 +182,21 @@ End if
> `GOTO OBJECT` はサブフォームから実行されても、親フォーム内にて目的のオブジェクトを検索します。
-#### CALL SUBFORM CONTAINER コマンド
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
`CALL SUBFORM CONTAINER` コマンドを使用すると、サブフォームインスタンスからサブフォームコンテナーオブジェクトに [イベント](../Events/overview.md) を送信できます。 イベントはコンテナーオブジェクトメソッドで受信されます。 (クリックやドラッグ&ドロップなど) サブフォームにより検知されたすべてのイベントの発生元となりえます。
送信するイベントコードに制限はありません (たとえば 20000 や -100 など)。 既存のイベントに対応するコード (たとえば `On Validate` に対応する 3) を使用することも、カスタムコードを使用することもできます。 前者のケースでは、サブフォームコンテナーのプロパティリストでチェックを入れたイベントのみを使用できます。 後者の場合、使用するコードは既存のフォームイベントに対応してはいけません。 将来の 4Dバージョンで番号が衝突しないようにするために、負数の使用が推奨されます。
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
詳細は `CALL SUBFORM CONTAINER` コマンドの説明を参照してください。
#### EXECUTE METHOD IN SUBFORM コマンド
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Project/compiler.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Project/compiler.md
index 4dc3ce5774dd74..1821c8d41a62d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Project/compiler.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/Project/compiler.md
@@ -41,9 +41,9 @@ title: コンパイル
## コンパイル済み実行
-プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
+プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
-モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
+モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
インタープリターモードでプロジェクトを編集したら、それをコンパイルコードに反映させるには再コンパイルしなければなりません。
@@ -67,7 +67,7 @@ title: コンパイル
### コンパイルコードを削除
-**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 **コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
+**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
### 警告を表示/隠す
@@ -83,7 +83,7 @@ title: コンパイル
## コンパイラー設定
-ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。
+ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。

@@ -136,7 +136,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
変換されたプロジェクトでは、[直接型指定を有効化](#直接型指定の有効化) し、それに準拠した宣言コードを書くことが推奨されます:
- [`var` キーワードを使って](../Concepts/variables.md#変数の宣言) すべての変数を明示的に宣言する。
-- declare explicitely all parameters in function prototypes (i.e. using the `Function` or `Class constructor` keywords) or with `#DECLARE` keywords in methods (see [Declaring parameters](../Concepts/parameters.md#declaring-parameters).
+- 関数のプロトタイプで `Function` や `Class constructor` キーワードを使って、またはメソッド内で `#DECLARE` キーワードを使って、すべてのパラメーターを明示的に宣言する ([パラメーターの宣言](../Concepts/parameters.md#パラメーターの宣言)を参照)。
#### 直接型指定の有効化
@@ -146,21 +146,21 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
:::
-直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
+直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
-柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
+柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
## 警告
警告は、コンパイラーがシンタックスチェックをおこなう際に生成するとメッセージです。 これらのメッセージの目的は、実行時エラーを引き起こす可能性のあるステートメントに注意を向けることです。 警告によりコンパイルが中断されることはありません。
-状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
+状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
### 警告タブ

-このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
+このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
リストを絞り込むには、**コードとラベルを検索** テキストボックスを使用して、警告ラベルやコードを検索します。
@@ -221,7 +221,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### Symbolファイル
-コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています: このドキュメントはいくつかの部分に分かれています:
+コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています:
#### プロセスおよびインタープロセス変数のリスト
@@ -268,7 +268,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### エラーファイル
-コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
+コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
[コンパイラーウインドウ](#コンパイラーウインドウ) からエラーに直接アクセスすることができますが、マシンからマシンへ送信できるエラーファイルがあると便利な場合があります。 エラーファイルは、その内容を自動的に解析しやすいように XMLフォーマットで生成されます。 これを利用して、エラー表示用に独自のインターフェースを作成することもできます。
@@ -288,7 +288,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
- **特定の行に関連するエラー**: これらのエラーは、コンテキスト (エラーが見つかった行) 内に説明とともに表示されます。 コンパイラーは、データ型やシンタックスに関する矛盾を含む式で見つけると、このタイプのエラーをレポートします。 コンパイラーウィンドウでは、検出された各エラーをダブルクリックすると、該当するメソッドが直接 4Dのコードエディターで開かれ、エラーを含む行が反転表示されます。
-- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです: コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
+- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
- プロセス変数のデータ型が決定できなかった。
- 異なる 2つのオブジェクトが同じ名称である。
@@ -302,7 +302,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
コード内で間違いがないと思われる箇所に対して範囲チェックを適用したくないときもあります。 具体的には、かなりの回数繰り返されるループに関し、旧式のマシン上でコンパイル済みデータベースを実行すると、範囲チェックにより処理速度が著しく低下するおそれがあります。 関連するコードに誤りがなく、システムエラーを引き起こさないことが確実であれば、範囲チェックをローカル上で無効にすることができます。
-これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
+これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
```4d
// %R- 範囲チェックを無効化
@@ -346,11 +346,11 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
- **macOS マシン**: Apple Silicon用コンパイラーは Apple のマシン上でのみ実行可能です。
- **4D プロジェクトアーキテクチャー**: Apple Silicon用コンパイラーは [プロジェクトアーキテクチャー](architecture.md) を使った 4D開発でのみ利用できます。
-- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
+- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
- Xcode や Developer Tools をマシン上でインストールされた状態で **すでに持っている場合**、それらのバージョンが 4D の要件と合っていることを確認します。
- マシンにインストールされた状態でこれらのツールを **持っていない場合**、Apple Developer の Webサイトからいずれかをダウンロードする必要があります。
-> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
+> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
いずれにせよ、要件が満たされていない場合には、4D の Apple Silicon用コンパイラーが警告を発します。
@@ -358,5 +358,5 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
Apple Silicon用コンパイラーはインクリメンタルコンパイラーです:
-- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。 これには時間がかかる可能性がありますが、 一度きりです。
+- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。
- 以降のコンパイルにおいては、**新規または編集されたメソッド** のみが処理され、コンパイル時間を大幅に短縮します。
\ No newline at end of file
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
index 484c64db7f8b34..d3f0dd87ba810e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ title: モニターページ

-こういった場合には通常、[**ライセンスマネージャー**](Admin/licenses.md) をチェックする必要があります。
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## 詳細エリア
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
index 6fcb8e4aaaae9d..762f89950fa12b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
@@ -62,7 +62,7 @@ Webセッションは次のものに使用されます:
:::note
-RESTリクエストのための Webセッションを作成するには、利用可能なライセンスが必要な場合があります。詳細は [こちらのページ](../REST/authUsers.md) を参照ください。
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WritePro/writeprointerface.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WritePro/writeprointerface.md
index e27fbf2dc368a0..cc5f8f70211c80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WritePro/writeprointerface.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/WritePro/writeprointerface.md
@@ -315,7 +315,7 @@ AI 機能を有効化すると、4D Write Pro ドキュメント上にチャッ
:::
-### Limitations
+### 制約
現在の実装では、この機能では以下のような制約があります:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
index 2c7b2cd95e01ee..2d62f236bfe4e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
index dfe4906f159138..634f169835ed3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
@@ -41,6 +41,6 @@ ABORT コマンドはエラー処理プロジェクトメソッド内でのみ
| | |
| --- | --- |
| コマンド番号 | 156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
index f8363e7fbe1dc9..e946eda644528e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 99 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
index 0c2ecdc245fa3d..cff847a38e8fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
index 978eca3cfa162d..e9358aaa71ef56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
index 9a8a46817dadd5..0c8399fcb11996 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
index 536745e2b05588..9b91a9781573ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 346 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
index 3f95e4f9ce8bbd..4d2ab3698b54be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1387 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
index 1649bd8582b6f9..6408cc92f1b5a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
index d81787643a8dbc..b1f8e4217a1b8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 56 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
index 97d43e55dd0b6c..c93c05bfbdb1f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 393 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
index 10abf2a5bd5caf..1e5c22b786bd27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 119 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
index 61350e0bf10bdb..acde59515fff13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1431 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
index 36d38f5512c2e1..b74faddb8eacf8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1430 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
index f9d52511f032ed..38053344992a8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1429 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
index 4e6adde2cdc21b..f2a3fd8903cd58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 31 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
index 9f1a0eabfc9a5e..ac89600a3949f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 41 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
index 1245d35e2fe2be..494b4441ad7b1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 47 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
index 51b2207bae11a3..23a6ce53f04a91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
@@ -225,7 +225,7 @@ GET RECORD FROM PASTEBOARDメソッドを使用して、このレコードイメ
| | |
| --- | --- |
| コマンド番号 | 403 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
index 9a111a0bdedb95..7d9a0903cfda67 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ Append documentの使用についての詳細は、[Open document](open-document
| | |
| --- | --- |
| コマンド番号 | 265 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
index 7a5679e9bf968a..555f89b3203a77 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
@@ -85,7 +85,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 411 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
index 8441b0c02186d1..7d300e4b92b45e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 911 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
index d5598f77cc27c8..c539d682474eeb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
@@ -166,6 +166,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 376 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
index 09e0acb57c2020..569c24c1be41b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Windows上で、4Dの起動時に、DLLライブラリが4D実行形式のファ
| | |
| --- | --- |
| コマンド番号 | 491 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
index 43db97ae1eed08..9d6bf9add715fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1599 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
index 2ccadbf1d756bf..caf2d6459b12c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 494 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
index 49760df3a43d77..43682ba79d9b39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 493 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
index 2c372e7de77176..d8cc40b4e01bce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ APPLY TO SELECTION実行中にレコードを修正して、そのレコード
| | |
| --- | --- |
| コマンド番号 | 70 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
index 97b21bc9c4715b..0d791830189d06 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 20 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
index a5ef248ba2e03a..c540c69b122775 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
index ccef871828c0c6..cbac1bdddbf903 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
@@ -68,6 +68,6 @@ ARRAY BOOLEANを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
index 2cbd53a3fca02a..ab907e20377000 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
@@ -63,6 +63,6 @@ ARRAY DATEを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
index b7e0d59cfae2e2..4502253aa84c92 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
@@ -67,6 +67,6 @@ ARRAY INTEGERを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
index 43c8dff2cb6c2f..37d53f9e0d80c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
@@ -67,6 +67,6 @@ ARRAY LONGINTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
index eb7e293b7b9345..9587f2afe58707 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
index 1237eb226645a5..dd7ebfd0413fd0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
@@ -70,6 +70,6 @@ ARRAY PICTURE を既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 279 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
index 9f1bc887e641f1..b3410943086810 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 280 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
index 1bf09a8784a2e3..9e4d96b722843b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
@@ -67,6 +67,6 @@ ARRAY REALを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
index f1e23fc9d243c9..21cf0b1afeb131 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
@@ -64,6 +64,6 @@ ARRAY TEXTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
index 18a1ceeef41b40..d6170add554e63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
index ec4cd45627a57f..7effdf60f0925b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
index 0e9ae465925fc7..bd017f337a4f9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ ARRAY TO LIST コマンドを使い、配列の要素に基づくリストを作
| | |
| --- | --- |
| コマンド番号 | 287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
index 25e599a6cdfe12..1bb4b0f153739b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 261 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
index 34299114216048..ed3c97902ed86a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1129 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
index 6d7c67e2f26a32..85f2a71a963d25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1132 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
index f01e32588b6229..7dad5dd8fff026 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
@@ -96,7 +96,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 2 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
index ddf0e987376153..d5be0a8ee826c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 888 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
index bf4823b4aec5de..9e0c25fcad859d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 887 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
index e29cc3d31f05d5..a48e706d0f656a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 896 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
index a4da7281c43058..f466b1c215708d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
@@ -44,6 +44,6 @@ Bse64 エンコーディングは、8-bit のコードされたデータを編
| | |
| --- | --- |
| コマンド番号 | 895 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
index cef8fe8348b662..d5be48566b0144 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 151 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
index 9b996977eccc74..99c36fff6f3881 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 198 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
index eeadf19a13f586..73b09d57c8b22f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 29 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
index 484ba831bf1360..ea6a80a32bd281 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 948 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
index a69180c5316539..817efe683e2671 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
@@ -84,6 +84,6 @@ BLOBが圧縮された後、以下のプロジェクトメソッドは圧縮で
| | |
| --- | --- |
| コマンド番号 | 536 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
index 29b9aa07b21ca7..b040aa7334c65f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 605 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
index b84bf5443c815e..9d752bcd3794e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
index 922f475f75ae7d..a532d534adf314 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
@@ -68,6 +68,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 549 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
index 4db21b7553c518..6a84974a81466a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
@@ -67,7 +67,7 @@ BLOB to listや[LIST TO BLOB](list-to-blob.md "LIST TO BLOB")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 557 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
index a9134ffefa5591..439b7d70c1ac6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
@@ -66,6 +66,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 551 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
index f29c68234c0887..9391dbee134b7f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 682 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
index ea177236f178e8..54c2312d6cb7e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
@@ -81,6 +81,6 @@ The **BLOB to print settings** コマンドは、コマンドに比べてより
| | |
| --- | --- |
| コマンド番号 | 1434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
index b66106b809689e..284fd07706886f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
@@ -67,6 +67,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 553 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
index f9b0a3893cf5e9..5bfb1220c841ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 555 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
index a97832a583980c..ff1c6d6ecd2ec5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 850 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
index 075ee345c0572c..d7a25368c509ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
@@ -50,7 +50,7 @@ BLOB TO VARIABLEと[VARIABLE TO BLOB](variable-to-blob.md)は4Dの内部フォ
| | |
| --- | --- |
| コマンド番号 | 533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
index 41e2d948eca355..c93d725318986f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1537 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
index 07825bd74b8d88..e8576106393b08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 646 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
index f747bfe3923e61..0ef6e830711e5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
index 4a28d23fc6644e..3206375d5454d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
index 380e4478f40124..cba088846852c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 871 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
index 23e8711740f3ea..ef128c28b7f150 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1402 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
index a20620a8df9a5d..53d31580f47684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1391 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
index 39abc573861ca2..cb4a045635d871 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1086 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
index af6c4bdeb0718e..c4c30f849f52d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1389 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
index 6a9ab76d670f15..7d30d827446631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 241 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
index 5b308eae57b500..ccb215bb16e110 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ CANCELコマンドが実行される (フォームや印刷がキャンセルさ
| | |
| --- | --- |
| コマンド番号 | 270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
index c33bffa86206fd..65784d4074c5b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
index 930a00b3976ea2..da6513e17fe6a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
index 1a13461b3fb78b..d37733b0771832 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ CHANGE LICENSES は、顧客に配付されたコンパイル済みのシング
| | |
| --- | --- |
| コマンド番号 | 637 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
index 699484d83de190..736c04f24519fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
index 00681450bb269e..6f0d2c408bfc80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ Change stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
index ece1395d153dcc..b66fcb7172640f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 90 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
index f64fe50eb1f7c0..df1aa4cf9cafc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
@@ -89,6 +89,6 @@ characterが1文字より多い場合、 **Character code** は最初の文字
| | |
| --- | --- |
| コマンド番号 | 91 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
index f2914478858fca..d35c8a06bea502 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 799 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
index 239ae4390e7470..8bd397f0725fa2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 955 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
index b70510972cf22e..9306d44b0fdf74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 377 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
index 2aed7978835bad..875afa225ceb3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
index 83b86e4aa54070..fbb2bdc9506ce5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ CLEAR PASTEBOARDを1回呼び出してから、[APPEND DATA TO PASTEBOARD](appen
| | |
| --- | --- |
| コマンド番号 | 402 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
index cc8f70475ff84f..a2f775ff99aa6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 144 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
index 1a2ead7432ae4c..067c8f6d2d2422 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 117 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
index 7957e47693d527..070200f6294634 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 89 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
index 8b7215fd80e552..2fc9b6c082157d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ On Clicked と On Double Clicked フォームイベントが両方とも有効
| | |
| --- | --- |
| コマンド番号 | 1332 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
index b6a06b81090992..c8bd3f97846459 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 267 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
index fb06cd3c73cb00..11d355f6ae5c65 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 996 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
index a8f91cd02039d5..33122e74f6b134 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 498 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
index 8e3144ec81c1d7..19798410786943 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
index 2d601f590bcb42..9f758dafd79522 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
index 73f5d0893142f0..0d5b3553a0856b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 987 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
index 2bca4a7bcaa9b5..ace405a3b0856b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
@@ -74,7 +74,7 @@ Timestamp log file nameオプションを渡していた場合、ログファイ
| | |
| --- | --- |
| コマンド番号 | 937 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
index 82a0c096c5cb78..4e5f9c35dd7ee2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1756 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
index a071d254e7a6a6..84c4abd85c93a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1001 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
index c4e38150f832d4..05e5f22eab70e5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
@@ -97,7 +97,7 @@ BLOBが正しく圧縮されると、システム変数OKは1に設定されま
| | |
| --- | --- |
| コマンド番号 | 534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
index b86bc320460467..1c4080548579b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
@@ -96,7 +96,7 @@ Windowsにおいて以下のような確認ダイアログボックスを表示
| | |
| --- | --- |
| コマンド番号 | 162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
index c4c0f39ab36cde..028a6775879bec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 713 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
index 988278c70b8503..14add2d7d67d6a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1365 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
index 1b34862147a6d2..4c0d80244325a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
@@ -196,7 +196,7 @@ CONVERT FROM TEXTと[Convert to text](convert-to-text.md "Convert to text")コ
| | |
| --- | --- |
| コマンド番号 | 1011 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
index 20aa66e9851bd2..a45894135f3d2a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Windowsでの例題:
| | |
| --- | --- |
| コマンド番号 | 1107 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
index 561f34cef1603f..768ca9a94ff9d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Windowsでの例題
| | |
| --- | --- |
| コマンド番号 | 1106 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
index 9e41c3c2662f86..851d7150deac6c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
@@ -53,6 +53,6 @@ vpPhoto ピクチャをjpegフォーマットに変換:
| | |
| --- | --- |
| コマンド番号 | 1002 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
index 63d8698db7c1d7..1b98ca324e0e43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
@@ -36,7 +36,7 @@ Convert to textはByte Order Marks (BOM) をサポートします。指定され
| | |
| --- | --- |
| コマンド番号 | 1012 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
index 0c0ea7c4e2a18f..41252654cf2e04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
index 586c3e2750da89..ea81407d4f1b27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 558 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
index 797d2837de656b..1240e7694a0c66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
@@ -126,7 +126,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 541 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
index 8e09f046946091..2db38cdada6a6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 626 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
index 192a3092576ab3..5e639a6e5eaa80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
index ae373da7ac2aed..686609e3565821 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1790 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
index ba340a961cf76e..b0348219136800 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 600 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
index 6581e359e2f9be..d6b6680c46b6e0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 18 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
index dda78e04e03b47..9fa73d0b014bb4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 907 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
index 67bb90b85b1ee8..2c01d9667b5334 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 380 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
index 0e4f61d6b06db8..400d7d43cd0513 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 405 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
index f4853166431192..01e9c0b3f305c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 404 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
index 09cd2c71e66138..48921ae87ef60b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ MyMethod内でCount parametersを使用し、実際の引数の数を取得し
| | |
| --- | --- |
| コマンド番号 | 259 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
index f7f9d877523cf7..0ed15edb6f2c2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 437 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
index 8ee9bd905fba91..fe2f70bed8d4cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 335 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
index af2ce8ce33d618..c49786eecd3bc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
@@ -30,6 +30,6 @@ Count user processesは、ユーザが直接あるいは間接に開いたプロ
| | |
| --- | --- |
| コマンド番号 | 343 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
index 41dbff2df7cdfc..56e3fc37800c0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 342 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
index be8c65dab8bb81..5ad44623e813e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 694 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
index 3bea36dcfaf2a6..da84ee732913e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
index 08554709af78dc..0ae31b34b1ff8a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
@@ -75,7 +75,7 @@ Windowsでは、Windowsのファイル拡張子を渡すか、*\_o\_MAP FILE TYP
| | |
| --- | --- |
| コマンド番号 | 266 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
index bd8dced4f68deb..83ba3203daa961 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 140 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
index 944f8d9e965db6..b60fbc048e5b3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 475 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
index e1d42f565d26c3..da53d418f99f0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 966 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
index 6e6d83718aae1c..fa764d08dac7c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
index b78271d4a9db7e..3eac8f9388397b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 68 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
index 9947360b44e13a..ed19549b716162 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 65 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
index 3964aec7381660..10d028d23c78f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 640 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
index 6096227ded4bca..e4bc33ccb96fd8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 641 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
index 1ea0a4f22bd72e..e50fe0bd59d199 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 116 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
index 500f6b4f02d6fc..3b1b577cb8f4f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 679 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
index 3b8d769a9d15e0..45bd09ab8735cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
@@ -79,6 +79,6 @@ Windows セッションのログインに基づいてクライアントにアク
| | |
| --- | --- |
| コマンド番号 | 1355 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
index e2feadb8b6b38a..1cbebfe935762b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 33 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
index cdcc4f04f0e721..4768fec320c80d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 363 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
index c8e5dcda360f97..e22b048ad233e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
index bfaaf45661f508..1fc8652e8d53d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 627 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
index 697b28538ff998..61fee595de5f54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 827 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
index 16c253ac3c33af..a9b072e554b13b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 483 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
index 318b4fb8f5bc55..0b5c0b9907cbea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 684 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
index 1a633a40d60d67..5350e5a2678d25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1201 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
index c406f6a04e4de6..e94bed87f571b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
index 0bf47168782113..95bcc6823e937f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 322 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
index 38d705f65d1774..45913c1522ede3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 484 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
index d4dce65378b825..dde1c57927337d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 178 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
index bb2bad88c87932..e4e858880cbd97 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 182 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
index 03600bfe2dc729..846d18b4c4c0ac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ CUT NAMED SELECTIONは[COPY NAMED SELECTION](copy-named-selection.md "COPY NAMED
| | |
| --- | --- |
| コマンド番号 | 334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
index bd88dba43b8f82..5807c018fcc1f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1609 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
index 9aa62526a90285..d4a38edbb46f2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Macintosh上
| | |
| --- | --- |
| コマンド番号 | 490 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
index 9e69b034c5b312..007732bddc86cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
@@ -335,6 +335,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
index f2fde796e41423..c156e74d5cb7a5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 102 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
index 53408c1e261281..cdbd0b6a45b27c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 114 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
index 88dbb5171797ff..5d6804b9c7e110 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 23 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
index d97236b18d6c4a..c21cb7dfc992f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 347 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
index 81fb9d71a3eaaf..7c185254df9b08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 9 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
index 1739c6d48e0e24..c4875071a93136 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ DECRYPT BLOBコマンドは、(意図的かどうかに関わらず)BLOB内
| | |
| --- | --- |
| コマンド番号 | 690 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
index 020519f4d3e932..289372f632b113 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
@@ -65,6 +65,6 @@ BLOB を復号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1774 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
index 46cd649a9ae948..b56441584f425e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 46 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
index 97514f2a2b2d03..a997d345e2fdd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 323 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
index a7124ccff2e5c4..50dbb48db29257 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
index 6d761fd5d41f72..a2afa608b48d8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 693 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
index e69021cb2526fe..82f45ef97a64ff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
index 8046219a7de6e8..42c45834650591 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 560 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
index ae582acc799ac6..21fa6d02cc9bc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 624 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
index 2841472f3afcbf..361b5758f84a8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 967 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
index 1379e76b620b82..235608c8fd2932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 413 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
index 702660b0dc4d81..cc5aa864112aaf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 58 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
index 5329045d9a16a5..2294d1d0e727eb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
@@ -71,7 +71,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 66 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
index 657cd09347aca5..9c3d523c65f715 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
@@ -50,6 +50,6 @@ Delete stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
index 1c464fbd4f9596..d2edec100d720d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ DesignerとAdministratorのみがユーザを削除できます。Administrator
| | |
| --- | --- |
| コマンド番号 | 615 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
index 1070611d21ac78..b3a6ca769a0196 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| コマンド番号 | 1044 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
index 1ca499137164fa..f535df60f75968 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
index 6ea13aa257210f..78fe6e93a9b56a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
index 924953731e9228..003177e546389e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
index 087c439a63a41d..522e86cf0f190e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Windows 環境下では、メッセージウィンドウは何らかの動作が
| | |
| --- | --- |
| コマンド番号 | 910 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
index 0aa8af76e48144..cbf555b9bb60c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ DISPLAY RECORDは、しばしばオリジナルの進捗メッセージを表示
| | |
| --- | --- |
| コマンド番号 | 105 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
index 81860290a78ff0..6f297c29bb6a70 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
@@ -100,7 +100,7 @@ c. 以下のプロジェクトメソッドをメニューに関連付けます:
| | |
| --- | --- |
| コマンド番号 | 59 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
index 43ff67644ea57e..cb7b419e479f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 897 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
index 369927f80be7a9..f20e1f4105ab81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
index 1425322cfdd1ea..decef756d3a097 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
index 482d7a24129ee2..85526cfb9f9582 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 339 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
index 932c9b50366cea..03acd2b732e6b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 474 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
index 366409701ea190..286a733ac185c3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
index 02892ac0a3c792..ea04df1ffbd06a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
@@ -81,6 +81,6 @@ id name price vat3 4D Tags 99 19.6
| | |
| --- | --- |
| コマンド番号 | 1236 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
index 8ba81ef5b579b3..7e9a3d91cf5310 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Result:
| | |
| --- | --- |
| コマンド番号 | 1080 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
index e61182a2505e15..c4d641b991c5b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1082 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
index e2e290c45a23e5..611f228fe56da3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 722 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
index c313d8f5ec80ed..fa6073404385aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 727 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
index fd1fa70afa23b9..1e03e4b2787e5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 726 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
index f346e38e7b2fc1..d1e11f36f272e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1097 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
index a2d0e441d73e86..9729cf718cdcee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
@@ -164,7 +164,7 @@ $aAttrName1:="Font"
| | |
| --- | --- |
| コマンド番号 | 865 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
index 44af3006212670..405a2fc224f6d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
@@ -101,7 +101,7 @@ NSName2="http://www.4D.com/Mkt/namespace"/>
| | |
| --- | --- |
| コマンド番号 | 861 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
index 7128c485f1deb3..6a73fedd2e6ba5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
@@ -62,7 +62,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 862 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
index 974479d21b2760..dd9ace45856ec5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
@@ -57,7 +57,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 863 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
index 905895fc301213..6b478d6dd2e19b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1010 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
index 38e26df7e1d674..4bb16180ae5e9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
@@ -123,7 +123,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 864 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
index ce18324aab102e..de7d41e73a35b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 723 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
index 4e554672a9ac2b..fe02e5e4141b4d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 925 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
index 081f8391756e4d..f1a50bde559870 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -66,7 +66,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 724 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
index 9908d07e813f8e..1dfc5170467073 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
@@ -40,7 +40,7 @@ documentノードにこのコマンドを適用すると、コマンドはヌル
| | |
| --- | --- |
| コマンド番号 | 923 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
index 59542d95ab870f..87e6f53c34d33b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 924 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
index 67f41d080080cf..221b7bbad5cb38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1053 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
index 9f5da880fb9919..8d3c239adfee8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 729 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
index 449239e9cf04e5..e9eb28b3e94b95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 728 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
index c4e8f3c30d1426..fb7a11f0ac6369 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ $typeArrと$textArr配列には以下の値が含まれます:
| | |
| --- | --- |
| コマンド番号 | 1081 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
index f386e468bce7be..35e0cd24600f73 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1088 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
index 6db926bd7b5778..793c5d251efef0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照
| | |
| --- | --- |
| コマンド番号 | 730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
index 36a4aecbb26386..af53997a29c414 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
index a154c6b75f2c17..d6b1b9b702c44d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 725 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
index e40785c25e349d..bb9371c435761b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
index 0af19bf4b3c8a3..013c7517387bfb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1083 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
index 2916bccbc29f77..61026ade7e85b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
@@ -100,7 +100,7 @@ DTDやXSDが存在しなかったりURLが正しくない場合など検証が
| | |
| --- | --- |
| コマンド番号 | 719 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
index dba2310d499e34..e2fbd3c9ee29c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
@@ -90,7 +90,7 @@ DTDやXSDが存在しなかったり、URLが正しくない場合など検証
| | |
| --- | --- |
| コマンド番号 | 720 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
index 9ac43b2bd303eb..900ca2fc1cc864 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1084 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
index 2bebd0522f8d6f..11aba32b01cd43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 869 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
index 98977973282393..ac154a3626c279 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 866 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
index 64a422f7918993..d86ef6aab8afd8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 859 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
index d0ad65a18b9988..fded5934bbe551 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 867 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
index 8bcd5680ed9eda..19c821564eca74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ XML処理のルールに準拠するため、行末文字シークエンス(CR
| | |
| --- | --- |
| コマンド番号 | 868 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
index adb20ef3eaa271..1ed0fa9fbcb8c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 452 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
index b38d3f2f1c7ffb..993d757b120822 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 608 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
index 7b56b95355ad16..1d00471e88e868 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1633 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
index 0f0e8bb961ddc4..dc76f95660eafb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORDはデータ入力中にも実行可能です。これにより
| | |
| --- | --- |
| コマンド番号 | 225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
index c34f1cd2a90655..d7c62591c51be5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1006 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
index 8be1285b4d1717..a9e0691767c573 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ DesignerとAdministratorは新規ユーザの追加、およびグループへ
| | |
| --- | --- |
| コマンド番号 | 281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
index e6df970f16c0d1..a9472848ee8a9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 806 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
index 5161c2c9110868..68decd17c2d379 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 870 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
index 95987ff4b093d3..61cda28f749cd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
index 521ed721cc4b66..fb3e4fcca046b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
@@ -186,6 +186,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 689 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
index 8ccc16f963f32d..e7c8a128c1d60c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ BLOB を暗号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1773 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
index 9d94e763af8630..4db3c377c1c763 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
index 2f67c6d9d5d282..8cbde88e4fcd26 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 36 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
index 7f866411a4e026..f3626dad7f24b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 949 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
index 8a9a365fd6f2d4..e0cdf0ff98fdac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1196 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
index 77728b2fa0db24..8169db6f2cfae8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ ERASE WINDOWはウィンドウの内容をクリアします。スクリーン
| | |
| --- | --- |
| コマンド番号 | 160 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
index 4faa5fb3ed3c4e..945ea1d945723f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
@@ -87,6 +87,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 676 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
index 420ef2e18edb40..700aec573524b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 63 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
index e7a532bc5d96bb..21042080eb0492 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1085 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
index 7e932fc35c0d32..7f9e45f6ce3c3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1007 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
index 207c139194f609..77af366cdce9dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
@@ -67,7 +67,7 @@ OKシステム変数は、4D Serverがメソッドの実行要求を正しく受
| | |
| --- | --- |
| コマンド番号 | 651 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
index 5eb402446d736b..92f49597ec0664 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
@@ -193,6 +193,6 @@ WriteLog メソッドはサーバー側で実行されます。メソッドの
| | |
| --- | --- |
| コマンド番号 | 373 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
index ae3d62f0705c70..5390f015861d53 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 21 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
index 2a565e9215a2c3..807b54abe7dfaa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ BLOBが正しく解凍されるとOK変数は1に、そうでなければ0に設
| | |
| --- | --- |
| コマンド番号 | 535 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
index 1c0ffc12842315..e5651cd6dc2958 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 666 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
index 8bbee1925eb4e6..9920940cb8857b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ EXPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 84 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
index b0ef2e21fff4ad..35854f64e03abc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
index 79f2c4664218f0..3993ac4bfdd128 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
@@ -62,6 +62,6 @@ XML フォーマットで書き出されたストラクチャー定義は他の
| | |
| --- | --- |
| コマンド番号 | 1311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
index cccdf5d1286448..b75b8df061894d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ EXPORT SYLKを使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 85 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
index 447129e07d2c61..229d15ef8d144a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ EXPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
index d392138cb39914..66cb96f62c59e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 215 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
index 7995b4ed2bc7be..5bd79aa2da9df0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 257 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
index 1466f54e6a4fd0..34d377e94e7d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 253 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
index d1f4147a906bc7..f3d8030f0c7644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 321 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
index de39c82dee0210..13ff0d68b4fa64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
@@ -251,6 +251,6 @@ Get highlighted text メソッド:
| | |
| --- | --- |
| コマンド番号 | 389 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
index 22ce01b1fef531..2cb4eaa5d16412 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
@@ -116,6 +116,6 @@ $arrPtr->:=Find in array($arrPtr->; $varPtr->)
| | |
| --- | --- |
| コマンド番号 | 230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
index 16650409531c97..b68ca9c13df841 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 653 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
index 164223afce1af3..cd893d4ef0ea32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 952 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
index 0c25bd76fed4f3..f798c2fd5aae01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
index 7dc856606f27a8..e12dc495d494d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 449 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
index 7a95962ad9cf6d..7cba6a7aa7f82b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 50 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
index f39461b97f6bf0..e53c8ce9700456 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
index 726b537220b972..3712b8ebe4f27d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
@@ -50,6 +50,6 @@ Focus object はカレントフォーム中でフォーカスを持つオブジ
| | |
| --- | --- |
| コマンド番号 | 278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
index a3a66ba3a7df7d..052a5835f97017 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 473 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
index acfdf3f1cf3237..5b7049cb3fdd9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
index a58da962d63dfb..90304bbeead614 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
@@ -77,6 +77,6 @@ Windows環境下では、この原理は4D v15 R4から採用されています
| | |
| --- | --- |
| コマンド番号 | 460 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
index 12b76e8583f647..29c058a1b5574f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
index fc3459d78b9bda..d9ddb730d841cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1570 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
index 99fbc02fdd9d22..6edcee77d6cc89 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
index 92d5c242b33848..a9d9775055be7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
index 29c8aab210b9a0..4ea16f93b63987 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 276 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
index 592f0da6c167e2..9b0c5c4358d06f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
index ddea95d7c08c8b..65cc88e76268bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1077 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
index ef365b85c07810..36af7f8f8deda3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
index 27b63fb7d8627a..4b45deec6e60b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
@@ -129,6 +129,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 898 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
index 2d3b37be150633..e00a22b2065a54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 674 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
index 2ce481bbab6de5..9a3544c6fb3318 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1078 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
index ba594cf0258074..b7079cf60d6b18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
index 2d9b73a7cfbb19..41b4d21b015684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
index 3bdf85138077bd..311975f772acca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
index 422d38bb5ec2cf..9e824b2fa3b1b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
index 84c569b3059e5f..3e2b62ec1d4ef5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 940 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
index 693c594258bc36..c8ee5f5b7fe16b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
index 07bddddce5e2f9..e3174fac292b5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 892 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
index 88232bcba283ce..e139cf4f5f117d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 55 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
index f10a3533c4efc8..2c953ddc444008 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 54 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
index 03786bff2aced9..c418c21ea78075 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 891 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
index abd4765147f7a3..cf27f02a817574 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 893 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
index a166eb4aec3d10..ce9cbc4e3204c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1299 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
index 9e6a1d44fbeb48..404b887cf55f47 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
index 162a844127dcc6..d4ec0c7b19aff2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 447 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
index ba1a06f57dd2b0..0258058a6077bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 691 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
index 2e6bccbf0138ee..25ba069406b635 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
index 4448ce911d1778..b2928850bff124 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
@@ -57,6 +57,6 @@ TLS/SSLプロトコルの暗号化機能はこの原理に基づいており、
| | |
| --- | --- |
| コマンド番号 | 688 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
index d6b58b73707161..ec5567293442b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
@@ -71,6 +71,6 @@ bcryptは、Blowfish暗号に基づいたパスワードハッシュ機能です
| | |
| --- | --- |
| コマンド番号 | 1533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
index f440fc73d0912e..678172d7f0d6ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
@@ -73,6 +73,6 @@ User settings file for data および User settings file の両ファイルに
| | |
| --- | --- |
| コマンド番号 | 1418 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
index 307e4b24592ac0..cd00ba8858e342 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
@@ -213,7 +213,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 485 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
index 1acdb2ceb8a1fa..9a5f39f1361a28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1428 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
index 5b7b257a5bbd48..0c28a631f428e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1427 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
index 38f23a5882b0af..9b022ed51cac41 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1426 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
index 945d6d6773af90..bc95d5d5ed8232 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ GET ALLOWED METHODSコマンドは、[SET ALLOWED METHODS](../commands/set-allow
| | |
| --- | --- |
| コマンド番号 | 908 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
index 86fbccc19a94e3..f0c72350037e38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
index 18a880fd9450f6..4a5e7aeba83a28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1130 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
index cc69fd50a7a07e..a8cb0f8445e095 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 899 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
index d00eca84c9547f..b5abce4604f167 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1432 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
index a5f9db97cd1023..de7ea54a9d42fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 788 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
index 04610886c5dda4..3aeb01470c005c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1009 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
index a0032e98f75557..9249829e8cfd56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
@@ -989,6 +989,6 @@ PHPインタプリタに関する詳細は*Design Reference*マニュアルを
| | |
| --- | --- |
| コマンド番号 | 643 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
index 87486bb3e74f18..86e006b3f9fe78 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 826 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
index 8e210ed6229f20..197fc47e1ce331 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
index 83b29b1418f766..15b2b7ead4bdc8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document positionは、ドキュメントの最初から見て、次の読
| | |
| --- | --- |
| コマンド番号 | 481 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
index fc0fb8bc5ca615..f464b960dc0e95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
@@ -205,7 +205,7 @@ return !01/01/95!+($timeStamp\86400)
| | |
| --- | --- |
| コマンド番号 | 477 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
index fe25b98f9e24e9..80476c24e7db2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Macintoshでは、任意の引数 *\** を渡さない場合、データフォ
| | |
| --- | --- |
| コマンド番号 | 479 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
index afa0c5280308f1..4adb5223c9465d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 655 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
index ddaa8263ac6262..84ba0cc055b6ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1133 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
index 3adc50e06477a3..81b34754c03699 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 685 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
index 1a770f0a195c72..02de3241eeb6f2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 258 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
index bf265a65e3b233..88789bc13ed538 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 920 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
index 4c180933ffecb0..80e95d257da598 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 804 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
index 7d2e139b14d452..299d2ee7307204 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 976 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
index 04b44b449ee963..8f0791268c33b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1738 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
index f1da449fe0dd32..46df113dbe1211 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
index a02fb32b60c331..615eac7f0082fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 613 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
index f0ba9df15c3d00..f7611985eda97f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 209 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
index 91eb6293f37cf3..4a0357cecce46a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
@@ -48,7 +48,7 @@ GET HIGHLIGHTED RECORDSコマンドはフォーム以外のコンテキストで
| | |
| --- | --- |
| コマンド番号 | 902 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
index feae8fdb3b78a6..667e2debc33093 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
@@ -50,7 +50,7 @@ Get indexed string コマンドは以下の値を返します:
| | |
| --- | --- |
| コマンド番号 | 510 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
index f6f3efc3177c8b..296f57b9aa2535 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 954 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
index de833eaceeb81d..76e1f9a01750a1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
@@ -42,6 +42,6 @@ iconにはピクチャ変数を渡します。コマンド実行後、(スタテ
| | |
| --- | --- |
| コマンド番号 | 951 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
index 52ef57592fa292..0044d0fc72f264 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1195 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
index 4e05d294dfbaf5..190e995450274c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 985 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
index 01672e67ecbf9c..643e02eb020743 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 631 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
index 4dcecb44e9e6df..782a7f7e545bfc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 378 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
index 2100c6ecd47b24..af9b17720951bf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 632 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
index d6418f5d0f9768..99639083cf3644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Full method textを*selector*に渡すと、メソッドのテキストはすべ
| | |
| --- | --- |
| コマンド番号 | 997 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
index e0dcf2b2af084e..8bb9ef5c661bc9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 979 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
index bda71b70f106d9..5b942952c7cb0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 983 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
index 0b1a53309d64df..b62a594b8294bf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 424 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
index 45539b4d76259c..2dfaf8d8482e9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 428 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
index df63dc410619a1..23226c38791aa5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 981 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
index 29aef7eeae1737..65c2e0eeba5b33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 980 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
index 2e6d5269425e11..041ac8aa7ca0d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1003 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
index 41ffae363df63c..fd336aa9efbe00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 972 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
index a67021fa4140ef..fe241cfbd87625 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Get menu item style はテーマの定義済み定数 (ひとつまたは和)
| | |
| --- | --- |
| コマンド番号 | 426 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
index 17db80776a97b4..de52599e274344 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
index 2f154237d29009..1cdca18a696161 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 977 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
index 132ccdbf3bedc9..2a33015e5e8563 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 430 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
index 5ec6b257cd720d..4092f1e0abbbe3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1125 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
index 7878b064a81430..5bde03c920e2cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 958 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
index c6af1521379259..4ef31c6c30b5c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 401 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
index f4993d0a701c38..8ae6862d4822af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1171 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
index f941f3d3a6bd9c..c778218875aac6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1406 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
index 249bac6a99152d..b9a97cc1d6a037 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
@@ -60,7 +60,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
index 2b6bd61cf1df43..058fbb570b2611 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 522 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
index d25e7f7578125b..47ec814696b612 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1142 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
index 6efa86f95fbc64..4b5ba96b8345f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ DOMツリーストラクチャを使用する
| | |
| --- | --- |
| コマンド番号 | 1122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
index c282081a7408e1..95125499379fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
index 2b0275de76d7b6..fb550c5cb9fac9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 846 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
index 0a8be1a4e15785..9733ef7ededb04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 304 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
index b8a71ac5e221b9..b69ce675d4313b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 708 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
index 4ddc1911446ce9..9f60f869dbc199 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ PDFオプションコードは2つの部分、OptionT*ype*と*OptionName*から
| | |
| --- | --- |
| コマンド番号 | 734 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
index 836ad1e9a477a6..d584fce46326f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
index a4a17ccb33c994..6d94bbdad7e75d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 703 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
index c57e4848a857fc..8ebaed360ac7f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 711 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
index d309979812a359..18da94eb4926c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 702 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
index de15bfb2e5c251..673346c3179dbb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
@@ -122,6 +122,6 @@ DRAG AND DROP PROPERTIESコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 371 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
index 81fe8012aa89a0..1aa757cbdd5465 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
index 9d767b43102cc0..2053a944110261 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
index 2e70cad0cc3c1e..1a44798a37ec0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 650 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
index fdc2cffb7b6fdd..747d9bfc06eaba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 686 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
index d9e4594090def9..ab681e86adb7c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 513 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
index b58cf82f751541..e2cba0a274896f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 515 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
index fdce7c0e787064..cf6bfbe2de38d5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ SET RESOURCEコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 508 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
index 68346ae4a3058e..c587b549c21a34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1005 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
index 51091cbd510a69..5d52f8c534f081 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Mac OS Xでは、USBシリアルアダプターの使用時に、OSがポート
| | |
| --- | --- |
| コマンド番号 | 909 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
index 7637de16bc59b3..f6cb66f6bd50d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 506 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
index 108a98e9bbdf5f..5f7b6abdaa63fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1256 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
index 9818dd3a325f15..e0e47b4e5b8964 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1137 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
index b8a390f0393535..a271bcdde52171 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 994 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
index 1c30fd45d65722..b3a5078a342e9b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 687 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
index 084e54d7209698..f26508f7c0523f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 803 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
index 9a628be006f188..63b96cae74c099 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 524 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
index 706414d574f5ca..9b6abf50ff5fe0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1141 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
index 4e1f5c0887551d..61e17dcfe1f767 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 504 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
index 6c00a8147d979e..acc61cbd3b993f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 609 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
index e2b2ece7328d32..8d4b4f0aa88544 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 611 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
index 5af6ba2c080cea..de021ba2d91a72 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 443 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
index fc8f421b680f1c..fc787a524f796d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 450 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
index bb96181d7815db..59fff3608f3ab1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ GOTO OBJECTコマンドは以下のように使用します:
| | |
| --- | --- |
| コマンド番号 | 206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
index f05640a1d077dc..2066d29173f126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 242 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
index 5db38ec2c90cf1..74526cf865089b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 245 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
index 49bf384c569410..d1fdc66e69ebd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ GOTO XY コマンドでカーソルの位置を指定してから、[MESSAGE](me
| | |
| --- | --- |
| コマンド番号 | 161 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
index 5f976c797b7f6c..ca98f603954d10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
index f385fa81e5e189..f8a87cf3da2d66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
@@ -283,6 +283,6 @@ SVGグラフ中で見つけられる要素には自動で特定のIDが割り当
| | |
| --- | --- |
| コマンド番号 | 169 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
index 9b1fe301bf2daf..378be301c64a0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 432 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
index 5a7b3b879e1ee0..b07dd6f7f88b8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
index e81479492e3cb4..87e51dde84dac7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ macOS において、カスタムのツールバーとHas full screen mode Mac
| | |
| --- | --- |
| コマンド番号 | 434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
index a265583358f6e4..885092d01e48c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ HIDE WINDOWコマンドで画したウィンドウを表示するには:
| | |
| --- | --- |
| コマンド番号 | 436 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
index e63b828bb54c52..61b2f886eaa31d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 656 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
index 435ac8276e6c5b..409111aeef0eca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 210 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
index a268f08e8a9b1e..7136c8b62eab11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1161 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
index a0502fff7388ef..079e05302d1729 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1307 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
index 47ae5c85b12551..deb2c4b80024b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
index 3dfe3d6f1fe888..18687600da39f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
@@ -109,7 +109,7 @@ RFCを取得する:
| | |
| --- | --- |
| コマンド番号 | 1157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
index c47ecaf6a766c2..8c618e53ca5983 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
@@ -128,6 +128,6 @@ http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}]
| | |
| --- | --- |
| コマンド番号 | 1158 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
index 6e46b31e381224..970c6c9c5daea6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1306 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
index 38b3398eba2252..fc5596033cc4fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1160 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
index add3e1421ac31c..17fbe444fb3dfa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
@@ -57,6 +57,6 @@ EVENT METHODは以下のとおりです:
| | |
| --- | --- |
| コマンド番号 | 311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
index ec260709b5ed2c..c94f89722d4da1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 665 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
index bc3e35c71e4dd0..0a9c6ef3cd8e0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ IMPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 86 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
index aa43ab1bc4ea17..11045544be5a87 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1310 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
index cf022396fde90b..27a95d4aa7e09e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ IMPORT SYLK を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 87 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
index c4487c96d5628b..a215f50148a8af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ IMPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
index 234d3e69a62cc7..8338578eb4c2a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 113 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
index aaa16a9d5d994e..54300e5914ed39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
index de748245c86240..d2aea9edd87739 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 112 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
index 1f88df906a921a..dec99384f58b39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
index a823af2c8827a6..19c458dd6b122b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
index aa1b8321a0c180..5828d13f3b3d42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 559 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
index 0c38a93b15d113..37ada0e1dfb21a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 625 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
index b24d9a93076321..fd3e3f22c4809f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 412 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
index 35ef6aeab98b62..c28f9bdefa7c08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ Insert string関数の使用例を次に示します。結果を変数*vtResult*
| | |
| --- | --- |
| コマンド番号 | 231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
index 71a9d0b945025f..9de96d50c2c966 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 8 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
index 528f98b94676bb..337784a954a74e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
index 4159f57b0efd99..d4bf7f3f97ded1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
@@ -105,7 +105,7 @@ Blobまたはピクチャーの値の場合、その保存場所に応じて異
| | |
| --- | --- |
| コマンド番号 | 1312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
index f9c6a7513bc220..028cc5a4d91231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
index 4f18059aa50749..57ffad41ab77d7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
index 0a2f2b819532b7..a600e95364b52a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 621 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
index 936b1ed936ee52..c7e0685c2f935f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
index d9515d66323283..75bff684355789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 492 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
index 14dd2bd92c0023..01ae4d07c89610 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 716 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
index 28290965e304e1..6e63bd089fa31e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1744 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
index 9f95c8445cca8a..18b7371a1aa0f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1000 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
index 6339d1a40e4deb..6a0e540db166ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 964 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
index 22a348b6fff38f..45cf0e7b876617 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1198 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
index da5ed2a8b22ed2..8f420d6ff2e227 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 273 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
index 06c7ae89c9b185..d4eba86f18baa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
@@ -51,6 +51,6 @@ Is license available コマンドは次のような3通りの使用が可能で
| | |
| --- | --- |
| コマンド番号 | 714 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
index b123aa9669682b..eaa14ff41dff3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1572 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
index 843d496d877224..8fe5d271278cec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 668 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
index 3fa203463444b0..b4cf7022bf3d58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 315 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
index 8fdd888a2f9263..efd50644e006e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1113 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
index df5fe133987a7e..538231c692e653 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 669 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
index 40b019308bb3f6..87863828be170f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 999 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
index 42067faeee3e97..7ab78f779502e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 616 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
index f4414d0a60d3ac..6f6efda3b41d4b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
index 0ab53a8554199d..77c599d14c79fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
index fe6f88a9396744..b6f8ff71c34768 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
index b3e8cc5393586f..1bf6684c94dc34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1573 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
index 3f063ace99df67..4b5c3634ef7847 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
index e58867220e3403..870057358dc002 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
@@ -191,6 +191,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| コマンド番号 | 1218 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
index a90b3d99d36300..48e45becd76182 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ JSON ポインターは再帰的に解決されます。これはつまりポイ
| | |
| --- | --- |
| コマンド番号 | 1478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
index 0fa06cab9587ca..dedf8c39c40c8d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
index cc88c5d6f8718a..48bf84b1ac5408 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
@@ -179,6 +179,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| コマンド番号 | 1217 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
index 1241462ab9e411..3ed55b15376580 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1235 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
index e3416c75212289..c96d7bdbed6e07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ JSON オブジェクトをスキーマで評価して、その評価エラーの
| | |
| --- | --- |
| コマンド番号 | 1456 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
index 17a1ac33a2a4ed..c6044d8e079f7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ $curValue->:=$vtNewValue
| | |
| --- | --- |
| コマンド番号 | 390 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
index 6821d64da0b5a7..d246e3f83b1018 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1390 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
index 03bf54c7071792..7e83936ed3f07d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 255 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
index 2a816a11282cfa..a5910cc25f74c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1045 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
index fb6e4bcc89b77b..1455967734a069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1046 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
index 8a4a87f23112ff..2a85d78fdf6661 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 200 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
index 6edeca977e691f..399229b12337b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 254 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
index 6cbe2026cd68c4..c39ecafa706e27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1301 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
index dc3404931443de..ed341b255aa253 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
@@ -146,7 +146,7 @@ Application/UtilitiesフォルダにあるmacOS ターミナルを使用しま
| | |
| --- | --- |
| コマンド番号 | 811 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
index fb32f0e87549c2..1ff84ce98ab7c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
@@ -101,6 +101,6 @@ LDAPサーバーにログインして、検索をしたい場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
index 09677a5a737817..591398813849ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
index e9b8e6015599a7..736bbf1560d9de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ LDAPサーバーには通常、検索のために受け付けられるエント
| | |
| --- | --- |
| コマンド番号 | 1329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
index 818b0e30f2ad5e..cfd90ca2c35e2e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
index 177f1f3ce01494..2dac6a576dcc0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
@@ -35,6 +35,6 @@ Lengthの使用例を次に示します。結果を変数*vlResult*に代入し
| | |
| --- | --- |
| コマンド番号 | 16 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
index 73f04777d57f6e..bd804c51377b4a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
index 27d336e7d918d6..452788819488ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1782 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
index 5efcbd955d48c6..7283551e82d097 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 633 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
index 5368c77e8c21d2..755e4aeba87838 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 629 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
index e8b59ef9f3d9ca..d2b013b8691974 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 957 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
index 4cf4a6e47b846f..2b973731b72265 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1255 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
index 4998c5f3219b3e..deacb7ef566b1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
index d3dbdbf4d05772..2f67e67974d14f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
@@ -53,7 +53,7 @@ LIST TO BLOBや[BLOB to list](blob-to-list.md "BLOB to list")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 556 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
index 097e4199121579..8fea566763a385 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
index 6e0220021c687e..a2d4ef2a48d767 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
index 8b364121c56a26..805cb9e216c191 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 914 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
index 79f2f60ac99558..ccbe5d6c8219a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1273 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
index 5572cf556751e3..74d182e32b51c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1100 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
index 0a071c34ab74a6..aa08efa3be9be4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
index 33587b876fee76..df76ef4434525e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 832 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
index 178a95bf9246aa..930ed97109119b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
index 55f661c69e7088..1ff3513ad73328 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
index 17e2014784c252..952f47513af526 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 971 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
index a6b00f95a464ea..67e91bb94ee514 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1202 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
index f7f3cee327df7c..571f366f3b7c85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ LISTBOX Get column width は列サイズ変更の制限値を *minWidth* と *ma
| | |
| --- | --- |
| コマンド番号 | 834 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
index e0f67702fb8aab..8832f4ae563383 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
index 19cafca7867942..b02a180096cec4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1146 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
index 98b19a43691664..1b596bbe07f546 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1200 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
index f3e26e8aa3d460..a524b79fdcdfd5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1199 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
index c9bddc0990a039..521eb56d15c289 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1144 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
index c5b75ef8365d7d..5ba83563aab489 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1099 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
index 1a41fb439ea0b8..4b0eb523223bab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
index ccf30bcfaa6727..62812b7ce7bdd9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
index 5c1b2d61b6ffe9..50714a553d5c5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 915 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
index 8c08e8ff520a85..9a7249dc7a3bbb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
index 857353bcf6a9f5..0d4e573317669c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1110 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
index fcbc09b1d7c3e5..c133b53400a09b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1271 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
index c549f4614480b2..e53d60993c81fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1658 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
index 19436e608f5464..320ce357487109 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
index f95b0a526a7e0b..6cdcd27f3d54dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
index 115614b6743307..065638ee23e749 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 836 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
index fc675e61cd116a..b8cfe527d92ee8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
index de5cef1b36518e..9ca13ea4457c85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1014 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
index 4d8cae575078fe..604d3618260904 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 970 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
index 40c1fe08809dc0..59a6a54b2f953e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
index fb72eb0d7efa5e..2ee9dcd2bd1872 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 913 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
index f400e8e0513d05..90e2b523b4112e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1274 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
index 7c447c72dbbc30..8558fe5918e0c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 844 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
index f4e03a08890e6a..2c542b040e381f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 837 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
index e6c0a16895b569..fa90c89c3856ac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1117 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
index 6b1743f1e84447..18040a08ec2b05 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 912 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
index 4016e5539d4a4e..aa957d2ea238f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1715 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
index 328f14ee54efc0..f9c2ed803d96ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1279 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
index eb5dc3631dc592..acc4069a6c2c46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1501 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
index 0e0480d960e64c..f2674eaa08b779 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1203 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
index 13334e8b79523d..45d5eaa49ef5c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 833 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
index aaaebdcea3abb2..db93bbe5cb242e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1140 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
index e52ad57ba7076e..b49e4377418420 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1145 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
index 52c1c0c743b143..bdb884fe885ce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 842 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
index 73bec7cae6aab0..2b1c020310913d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 841 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
index 92fbf1c0fbb054..8724cfc64bb60f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1143 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
index af2c1507651782..1020d3b8a6ec50 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
@@ -57,6 +57,6 @@ aCountry、aRegion、そしてaCity配列をリストボックスの階層とし
| | |
| --- | --- |
| コマンド番号 | 1098 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
index 50e12180db484f..bfe62bbc9a653f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1151 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
index 900288847215f0..c7787d5f852cb5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
index dc6b5ea61e8af1..f91adc1de99651 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
@@ -83,6 +83,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1268 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
index a273e62af755d5..f170bb0e270c57 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1409 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
index 450327815bfe19..792ce5720c3d16 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 835 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
index a99cc2f2445023..97ef33972cc528 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
index 9ed2ff7024f2ec..1662e3d0f26b54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1013 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
index 8beff8119e6aea..b893b00f6cf7b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 916 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
index bbcf6f595389c7..dbd6c98fc9dc2d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1528 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
index 300f1f829f78e6..cfac5c3df67ad2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 383 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
index e4f08f88106082..90bbe6bce67f15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 52 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
index 40d40feafe703e..2c9a6af53bc7ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 185 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
index 04f5bca539d82c..97c590480c3f33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 74 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
index 129afa9b8baa4f..5991a2f2f2a80a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
@@ -72,6 +72,6 @@ Resources フォルダの中身は以下のようになっています:
| | |
| --- | --- |
| コマンド番号 | 1105 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
index 372fbe7e9c08eb..e7b0d1742fa72f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
@@ -61,7 +61,7 @@ Note: XLIFFは大文字小文字を区別します。
| | |
| --- | --- |
| コマンド番号 | 991 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
index a1ebc3d690f256..3ecb46aca1119a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 353 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
index 223a49425b1a2a..9966042f5df26f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1316 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
index 5c43a261ee7b31..19fc8484631452 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
index 6face7c7e8145d..c552da0c0ba1d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
@@ -68,6 +68,6 @@ Windowsでデータベースが開かれた時の情報をログしたい場合
| | |
| --- | --- |
| コマンド番号 | 667 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
index cde38feefa6a56..cce399f15a6407 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ Blobおよびピクチャーフィールドの場合、保存場所によって
| | |
| --- | --- |
| コマンド番号 | 1352 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
index 7d6b42773c9312..d24ee018b5c0fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 928 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
index 0991c10a19b1f2..40ae1fdb1e8825 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 22 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
index 3118c5a2f97420..e262e384309175 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 647 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
index f7cd5d0bf8f407..f399a06c0438dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 550 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
index 9ddec511cdeecf..5d0ca7f6bd60a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 14 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
index 44b7ee4c8f4c5e..fba82f8b147be1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 546 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
index c6bfc4896a5e56..ae316ca2cf6aad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 544 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
index d6fb15455cb05e..e48db56f5175d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 545 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
index bf964b1f016302..38c40c0510111a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
@@ -115,7 +115,7 @@ vfound:=Match regex( pattern;mytext; start; pos\_found\_array; length\_found\_ar
| | |
| --- | --- |
| コマンド番号 | 1019 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
index d1ee49123d0e5b..d0bfbac9bf7b62 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
index 63e73721335066..6afa2402df2a5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
@@ -90,6 +90,6 @@ Mac OSのズームボックス
| | |
| --- | --- |
| コマンド番号 | 453 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
index 110a7f5e0aefdf..05d4427ee4a30e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
index cd5766099fb6f6..14791a715f1fd4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 440 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
index 2bafbf55d6095c..a27e4a60d06fa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 441 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
index e42f81692af9e7..c0f0ee84265390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
index 77017589b5455a..6d531488fd0399 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
@@ -118,6 +118,6 @@ MESSAGEをコールするたびに、以下のウィンドウが表示されて
| | |
| --- | --- |
| コマンド番号 | 88 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
index ff6f7706c3e67c..4cefd4ca30eb7a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 175 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
index e62c533019965c..e795afea06bf0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 181 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
index c59c78c193eaee..e3fd74b34885c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 704 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
index dac4ab6cb6e6d5..9d50de0a301496 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 705 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
index fa5d2822248933..0b3c4292fdb893 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1169 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
index dd4d8946194a01..61ed1094748b32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
index 369666c5e1bbdd..624ec56daf6156 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
@@ -124,6 +124,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
index 25fb34215c9526..03d9cfdd3f15e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1189 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
index 0d9fc0499b2bb4..b8e30241196621 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
index 68440936610b94..0945e799616784 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1170 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
index 1d050f8acc4922..d29fdb456b6105 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1166 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
index 5144614fdeda30..c88abbb67d4167 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
index 9348437c6c5d77..da904372ef1839 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
index 8808aa66e3180a..c30800f8371d21 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1163 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
index 6470828e50b662..b63cfb3ff903f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
index a8c55d521c17d1..944033fbc626ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
index 801ad3d73cfca8..7a847d619e1a25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
index f6c762c783713f..34f5e459c74a01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1192 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
index 7903302f6d8dd2..21a75551268785 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1335 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
index 499284e4ab90c7..38add5611eb894 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
@@ -105,6 +105,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
index 4ba04b202ae1c2..e6a21418d966f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1193 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
index 31f9e21ccfc3fe..ed4498f344e471 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 459 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
index ea37932072611c..9f3234b6f5a317 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
@@ -83,7 +83,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 4 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
index dd83b8f9e95578..18047afc3c96e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| コマンド番号 | 454 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
index dcecc17896b5f9..8c1f301e354e1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1596 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
index 5501c8eb32d6e5..92e6bbd5b5e1cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 98 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
index 6b15aa8e7073df..13e19a9db00bfc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
index eacc88f66dcae8..5d0a1e8bf776b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 32 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
index 49e0c3171185fa..0198d5302c45a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
@@ -51,7 +51,7 @@ MODIFY RECORDを使用したが、ユーザがレコードのデータを変更
| | |
| --- | --- |
| コマンド番号 | 57 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
index 315bb3f60c29d6..e503d399c71f03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
index 3d7f196b139788..86eb40810ec8af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1713 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
index 8f0620571826cb..1594e534f6802a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 24 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
index e352925a2921d9..c739620f05b141 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
index d40d41dc851e31..a446af03e3bd33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 540 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
index 405443d24283f3..e8a79e3de597c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
@@ -116,6 +116,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 718 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
index 057144fdbf9a35..ed7dcf09448743 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1611 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
index 5093f25ada1f68..09c9de93c84e7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ New listを使用して階層リストを作成した後は、以下のことが
| | |
| --- | --- |
| コマンド番号 | 375 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
index ca72808b29dc0a..52a1c3f6e972f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
index 397470fab7482d..2f816edb12144f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
@@ -111,6 +111,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 317 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
index 218f9d1b42aa9b..69e3651a8291a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
index d611607a45a501..400083fdad2390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ NEXT RECORDでカレントセレクションの最後を超えてカレントレ
| | |
| --- | --- |
| コマンド番号 | 51 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
index 91b68595d6a4b1..1158b30fc6c391 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 448 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
index ee6148f14769f9..089e82cc9221cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 993 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
index c650f578590f66..39bef0b6aaac68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 34 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
index a72bcff079cb1c..982912cc272e46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1052 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
index 61dfe51832d4fd..7547a3e4b66730 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
@@ -139,6 +139,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1517 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
index 8917634704294c..ab86cedb6e46df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
@@ -90,6 +90,6 @@ Num が特別に扱う3つの指定された文字があります。(*separator*
| | |
| --- | --- |
| コマンド番号 | 11 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
index 5862489f390fbe..3c4edadc13c47c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
index 580aa2d447fa7a..0c9d646a5f5286 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
index f1d5c2e91610b0..0f27f7bf48ff99 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1720 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
index bf139f9dfaeedf..0fabf29979bd6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
index 2180cb0560476f..b02516e140c0c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
index 70f161b361bf21..494d253f1ee308 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
index 959bbd6aa4e88d..b590ebf962c719 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
@@ -228,6 +228,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
index dc3c1c280786e4..a10cee5cfbb474 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
@@ -56,6 +56,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
index 88b41d0354a1e7..d56b56751736e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
index 74aad11d78371d..2dd07771af65e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
index 35ef4769f78a7d..f6282e05e0d1c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1759 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
index 888971585b90f5..95c6f7f41516e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1719 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
index 3b5d9f9b98453a..5192ac657f9344 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
index 5505e7c901ed5c..9ac82a87588f39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
index 9adaecaa96b410..3282706d89cbb2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Lea の "age" というプロパティにnull を入れる場合:
| | |
| --- | --- |
| コマンド番号 | 1233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
index d1d0abc9316246..0e9f67391dcb54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
index 650f357d5fda83..e16f186271f126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1718 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
index 6d2d28bdd907c3..cc9538cbc22783 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1111 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
index ca962c575ba315..1558809d82d7e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1457 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
index 8cd16c00b88308..f83d7bf8a06899 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
index 13802f4fe5f0c0..920a5154f3f88b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 717 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
index bd76f6a7257771..b73c580c057b36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
index f1fe87da8a09f0..e892a37307225b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
index 95ad466c935b90..745bc4449c9cef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 663 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
index 1e70824b173ed5..2151dab0a49c35 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
index 940ac3391ab508..a6d58de5b25cad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1265 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
index aab2ffddd290d9..f414feeb59ca18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1184 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
index d7a7a5406a9fc6..cc8b121ef3c3f4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1079 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
index fda04b02fa16ea..1815bd730d2e8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1067 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
index 0059cb64222b62..607ae3178d382c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
index 8d022747e34319..72d64a8377dc4c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1073 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
index dbaf796d01c011..c38c7176778efc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1178 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
index da5e8e2fc4ed00..389f486d9bf3db 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1070 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
index ccf4b6489ac1fc..80422650ab6715 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1071 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
index 3430f7fc270b99..dd67c70e82fbbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1069 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
index b2fc34a02b6682..26bfb2faa25950 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 894 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
index 2d68405c55cb86..99a1b062dba0e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1182 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
index 56ebc1fa0f1daf..d8c97c0dd32aed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 707 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
index ee246f6bf42cb5..83f425078f683e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
index 9f668348b35f4c..124a0bb4271dba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1180 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
index 95d65c6a43ebde..8390873ce1de76 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1072 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
index 222bc6cfe9ba19..d6472d6038ed96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1267 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
index 11c8dbed8e3d5f..6b54718ef7bb7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1245 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
index aa86f6eb124211..553025333d7d71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1243 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
index 5743d9a362a3ec..1f6ffaeac49521 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1254 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
index 8e30190a2a6465..4cb064d68de077 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1087 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
index 03a0043c74068a..39258bdcb6ed00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1296 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
index a2a55e1d7e743c..287db626f798fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1124 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
index 13e2eeaeccbfc5..3f2ceafd6e0a4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1241 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
index b5b75ac156340b..5f034e5a82df0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1176 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
index 8103008aa31f54..c86bfc06f74043 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1074 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
index 045137c13fc169..8e658b794ead81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1114 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
index 53c387656729be..c39e75eedb9464 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1076 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
index 13ec0b33298026..d46c361a8609e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
index 10bd20dbf593a1..34076a20f8076f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1258 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
index 18c3f261eb3701..872d4b17bdc4f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1148 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
index 502cbd3859f081..afa7cec219abf5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
index 725e5a5263f3f8..2bc90825a1446a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1139 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
index d35e705bf0d974..1e265a2caf4fd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1283 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
index 25cbbb175d96ff..69ec3e026fd4dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
index b891ff8e79a076..5a5680a83c8f40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1068 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
index 2400211a1a9e52..2c0821a4f3b030 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
@@ -100,6 +100,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1300 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
index 206a9fb4861449..25ca120930ca2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1743 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
index 8991ad306e48f3..b47b44ddbe9063 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
index 50789763b2a3e7..8a7773aa67ec8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1075 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
index 2d57bc0f90c526..2a74e639bb9f20 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1261 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
index 3046c90cbe08de..fc3f71eca80aa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 664 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
index 421518db9d67f2..ff0f705bf07595 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1259 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
index afe895a6c6fc8d..ecb949b6b7abe2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1173 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
index 71833b0fd3df91..ad98415edb4976 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1262 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
index 4a91fe219a445d..092481fdc16931 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
index f815f6557b325c..a047849bf939cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
index 72c3e836b7bf1e..be65bffd5dc4c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1323 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
index 47686dcb9efd6a..1175ca81945906 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1264 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
index 599ee023c682d1..b0ccb206d19c6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1183 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
index 786bf62b29a1b4..d14184f99f4e37 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1123 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
index f506505d8a0e97..73b3e5bcc4af68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
index 7ee9e50f358161..2e9e5dfd5cd254 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
@@ -172,6 +172,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1239 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
index 03dac1dd6ddf68..71f8f850794a45 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ OBJECT SET FILTER は、入力フォームおよびダイアログ用フォー
| | |
| --- | --- |
| コマンド番号 | 235 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
index 8c60e69b40498d..9c0ec26a940222 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1177 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
index 32af2c060926ed..adb8991a807910 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
index 7a9424554da4ea..913fd76af8caf6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 166 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
index 9bbcab401003cb..e2e4ec33a14d7f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
index 94091e29755b04..31936f6279795a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
@@ -335,6 +335,6 @@ This example formats a date variable and a time variable using [customized forma
| | |
| --- | --- |
| コマンド番号 | 236 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
index 2d23668d9f6c2a..81e6489f647024 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
@@ -134,6 +134,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1181 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
index 895935c9fb653d..0c600ab2e9bf24 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 706 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
index 3e222ba9883031..ccfcdbad0d5f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1246 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
index 590df5ac2f3e1a..ca063e311311c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1179 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
index af3f197d530059..6e6365868bfb38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
@@ -95,6 +95,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 237 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
index 277661eee070f2..46cd4c392dd9b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1266 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
index cbd7dd656ac7f4..58cb60826398c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1244 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
index 3c50aee350e282..0da498ea6ec44e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1242 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
index 1ad37a93d2e1e5..161e86b63283dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1253 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
index b76735055d34d2..4765a44c372c66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1295 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
index 97ca66781ba9ff..21af0af22d20c3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1240 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
index 8fc6d1040d6f5b..e3d6c11245fee4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1175 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
index 5212d5229878ca..6d1ad2429dda84 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 628 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
index 033f1f02c5298f..e864d4d67a9d42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 906 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
index 68361413d80cd2..523342cac781fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 843 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
index 9303ebae6d3695..6ecdbadba20638 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1185 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
index fde8f8575f35ed..6e69bc024ed172 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1257 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
index 0baf893bcc5f94..e2d9bd3c081811 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1784 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
index 7db91a2b1cc85d..f14aebb2c6a1a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1138 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
index 3cbd457f0483ec..86ff4990666747 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1284 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
index 8aed09e93f19e1..f44c04b08fae38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
index aa5a064baf1613..c26e4235474468 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
index 8d951451496f06..7789f29ec04ca4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1742 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
index 7aecb8283afa23..314892c46b7667 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
index 0ca9bd5a0f88e6..39726d4301f498 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 603 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
index bf70a09c0eb162..18c1fa33013757 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
index 82fc67ddeadbfa..ade061baa83c95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
@@ -31,7 +31,7 @@ OLD RELATED MANYはリレートテーブルのセレクションを変更し、
| | |
| --- | --- |
| コマンド番号 | 263 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
index 85572db65bf7e3..b3de2d30f6a056 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ OLD RELATED ONEは、更新前のカレントレコードの内容にリレー
| | |
| --- | --- |
| コマンド番号 | 44 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
index 77b10bf6ab68ea..c08421f6211e56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
@@ -47,6 +47,6 @@ Oldは、すべてのフィールドタイプに適用できます。
| | |
| --- | --- |
| コマンド番号 | 35 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
index 9941a782d88619..1cf0096e6683d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
@@ -187,6 +187,6 @@ IO ERROR HANDLERプロジェクトメソッドは以下のようになります:
| | |
| --- | --- |
| コマンド番号 | 155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
index 1d3e16f90c4217..d823f28f8d9748 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
@@ -120,7 +120,7 @@ Ctrl+ピリオドが押されると、イベント処理メソッド内で*<>vbW
| | |
| --- | --- |
| コマンド番号 | 190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
index 6e60022595d47f..5b3cd7413f786a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-exit-database-method.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
index 5ee2d0edd9b56e..3118af1400826e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3367 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
index 2a46d487876dc1..acad53d62f5c07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 16001 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
index 7ecce07bac10ba..d92d2440c98df9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-startup-database-method.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
index 57154ec143a506..1443d0aab22b36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 189 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
index cdbd83be334b38..a96bd6679570c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1047 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
index 73f8256a80f7bc..fa2412e4a3f72f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1304 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
index 7d3e3a1792a4dc..d441ca70233ee8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
index ea702509bf79a8..b94492d7df664c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
@@ -79,6 +79,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 1321 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
index 1ef3f9f55880a6..0f2067abc2532a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
@@ -92,7 +92,7 @@ Open documentを3のモードで呼ぶと、関数は?00:00:00? (ドキュメン
| | |
| --- | --- |
| コマンド番号 | 264 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
index f06c54e09e5300..1a401e6e383182 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
index 08037ecbaa8c44..5679c0d274c1b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
@@ -145,6 +145,6 @@ $myWin :=Open form window("/RESOURCES/OutputPersonnel.json";Plain form window)
| | |
| --- | --- |
| コマンド番号 | 675 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
index c4095f21a2a8b5..9af93550e519a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 995 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
index 59bd9470f60a8b..b83c79e49834d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Macintosh上で、この例は“MyPrefs”ファイルを開きます。
| | |
| --- | --- |
| コマンド番号 | 497 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
index 3847d29ccbdeef..da72aafd23c1ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
index 3caf1d9fdabb52..366498f8b14b8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1018 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
index d7c73cfd6a4cbc..ade633fa3839ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
@@ -144,7 +144,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 903 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
index 9935a5f669bdd3..738ebcb47f849f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
@@ -85,6 +85,6 @@ macOS 環境下では、アプリケーションを探すのに、インスト
| | |
| --- | --- |
| コマンド番号 | 673 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
index d36b82b1e38b3c..cce0803f7b4650 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
@@ -140,6 +140,6 @@ CloseColorPalette メソッドは[CANCEL](cancel.md)コマンドを呼び出し
| | |
| --- | --- |
| コマンド番号 | 153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
index 732343dbb82a7a..76f18a2b60acae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1407 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
index 6cd6fbcde06d03..71a2b061cecb54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 300 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
index c93b3d92b76d46..43eae1870f828e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
@@ -205,7 +205,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 49 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
index b6b0d361cb84e1..38bdbf8a1839b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
index 60a36795cc8362..d2eff7728039e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 6 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
index f22a8f3f504534..8819351dc4ddf6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1576 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
index 57c8d170aaf5d4..6ef6f5addff6f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
@@ -98,7 +98,7 @@ You want to drag some private data from different objects in your form. You can
| | |
| --- | --- |
| コマンド番号 | 400 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
index 30873331f1b0ee..8669868f14a6f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
@@ -178,6 +178,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
index 682ce3516bbd13..06645644caf231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1293 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
index a46ffbdd5ed860..cd4295e1e7b9ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 319 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
index 71b1f5d1bcb531..a0e06a3994c7ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
@@ -291,6 +291,6 @@ trimファンクションについてのより詳細な情報については、P
| | |
| --- | --- |
| コマンド番号 | 1058 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
index ef445804ee4d8a..ad87fec10c5f07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
@@ -45,6 +45,6 @@ PHPスクリプトはstdoutバッファーにデータを書き込むことが
| | |
| --- | --- |
| コマンド番号 | 1061 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
index e7ec51f8350bbf..5cc1110d6395d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1060 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
index d5e1689780110a..2e56e9c63c4e30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
@@ -45,6 +45,6 @@ option引数には、変更するオプションを指定する"*PHP*"テーマ
| | |
| --- | --- |
| コマンド番号 | 1059 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
index 7368d31cb1453b..dcf181ca1edd8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Codec IDは以下の異なるフォーマットで*codecArray* 配列に返さ
| | |
| --- | --- |
| コマンド番号 | 992 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
index 71dde05c0fe508..0ecfc1163029c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 564 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
index a5466828360fb2..108ebd16d4be2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 457 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
index 2aa8e3e98a5014..d025cfee0f2a2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 356 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
index 9b1ef6e57d6f31..6237dc33780215 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
@@ -55,7 +55,7 @@ Codecは拡張子 (例 “.gif”), または Mimeタイプ (例 “image/jpeg
| | |
| --- | --- |
| コマンド番号 | 692 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
index bdcee83682e224..f06d6e9ecf2365 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
@@ -62,6 +62,6 @@ Windows上でのWAVファイルの再生方法を以下の例題で示します:
| | |
| --- | --- |
| コマンド番号 | 290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
index b25f430a722109..4376df51e66d54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LISTは、4Dに統合されたプラグイン (例: 4D Chart) やサー
| | |
| --- | --- |
| コマンド番号 | 847 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
index f0467efc848b55..815a202fa5e0e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 177 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
index ceeed1471b2075..a44ac70fb024b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
@@ -105,6 +105,6 @@ Windows上 (左) とMacintosh上 (右)で表示されるポップアップメニ
| | |
| --- | --- |
| コマンド番号 | 542 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
index 9eedac3ceac841..2faf871604897d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
@@ -121,6 +121,6 @@ Position関数の使用例を次に示します。結果を変数*vlResult*に
| | |
| --- | --- |
| コマンド番号 | 15 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
index 6ec74faf414aee..ee8bc2817a19d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 466 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
index d0b8e33f2202bd..f07e8fe0917931 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 467 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
index 1793597723b6fd..ed10b1105689fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 465 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
index 0a99f79ae92d18..6bd81c33ad2df6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
index 184a0ceb286890..43b8ffeb050e5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ PREVIOUS RECORDで、カレントセレクションの前にカレントレコ
| | |
| --- | --- |
| コマンド番号 | 110 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
index 481ed22a49dc5d..3dd2ad646f005e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
@@ -113,7 +113,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 39 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
index 80ff710d7a2b94..181d1be68814b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1095 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
index 8e17afd8d5e49f..abff6181864667 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
index 675d61165fe4d2..c9da56db9d3404 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 71 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
index 1e299999d57baf..90b78146afb8de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 60 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
index 8d24a6c132ffd8..3d02ea901d23a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
@@ -58,6 +58,6 @@ BLOB が正しく生成されるとコマンドは 1を返します。カレン
| | |
| --- | --- |
| コマンド番号 | 1433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
index 45509868dc2fc4..e86d14495b6d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 106 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
index c724e890655c40..04c15e72559b86 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ macOS上では、プリンタ名 (プリンタサーバの名前) を使用し
| | |
| --- | --- |
| コマンド番号 | 789 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
index e84ffb8a2d9a07..13ab2e56a4e16f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 275 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
index ee980a70662a56..21b853ac6760af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| コマンド番号 | 816 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
index 409ec43d9d7326..a1f78b8fc9bfaa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 672 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
index 67589a64fdcb7f..f8b71da815348b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
index f21d98b5dbfe98..0bc372326db166 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 176 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
index 7a93af04e0a44f..d6f729b2349dae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 771 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
index 518c35dfe16f81..1a386ba81e82ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 764 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
index 8676ab404443e1..6f7c58aae4562b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 749 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
index b48c83dbb549e8..711fe4e512b7a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 754 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
index 00cbfde4641cdc..b7b3289d4b14db 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 791 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
index e421c5e01511de..02ea436f58ef01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 776 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
index f7f72d5f534155..43865816588d86 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 795 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
index 4484238973078f..09fa981f1115b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 798 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
index 56a285a8f65e56..465e59f4be8eb3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 792 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
index 8011428cdc7859..4a213c06a66fd0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 756 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
index 9b4c1ab4829372..09cec2bb24f78c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 773 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
index 9451f09948fd49..d0a27e6055e418 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 747 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
index 4339c13827fa01..0975c7219dfbd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 775 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
index ea4beb4ef7a7a1..23c954545d6a8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 751 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
index 8507ad64591a00..a4ad289db44c49 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
@@ -113,7 +113,7 @@ QR GET INFO COLUMN コマンドを使用して、同様のパラメータを取
| | |
| --- | --- |
| コマンド番号 | 766 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
index 52200337bb73f1..0bc8b74944a9a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 769 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
index e17830f54f07f4..2448d2efd60713 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 755 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
index 384a7e0a448462..097b3ab8c5372f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 758 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
index 3f9774233039a5..98aab690ca97ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 793 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
index 22428b444b48b7..de548f28eb62b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 753 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
index 6ab651c77620ab..76f9a8bde0d3b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 760 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
index 5c2730e0826347..1d07c7389b3c46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
@@ -81,7 +81,7 @@ QR GET TOTALS DATA コマンドを使用し、指定したセルの詳細を取
| | |
| --- | --- |
| コマンド番号 | 768 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
index e0e2fa0b29568b..d9a469dbac8f06 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
index 80bf54c10ee6e1..92f3aad2322f15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 748 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
index ea92281896cc5c..77a0dce35eb645 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
index f165ad52338b88..d21befd1672eee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1320 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
index d4067cbd866c03..d51c2ef3889453 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 735 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
index 02fe0d09f674f4..a3313cbd9d157c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 790 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
index bc1ea37696fc83..29844ac80180b6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 770 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
index 238379c57fbeb5..bf5a88f7256792 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
@@ -137,7 +137,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
index 937e9c1917c05e..e75d9ad1329a09 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 746 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
index f2625bd094b8f5..150f73f0f1c497 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 796 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
index 6bc580ef9dab93..6c55411f687c29 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 797 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
index 321f0a209f7e9f..b2bf808b5b34a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 745 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
index e0ed10fa15b7f4..c87a00ba624fb7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 772 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
index abf50332d58419..629a24d6adbfca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 774 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
index 235578228386ea..45f663b4c2bce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 750 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
index 5d6b013a010f0c..302cb9280da28a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
@@ -113,7 +113,7 @@ QR SET INFO COLUMNコマンドを使用しても、すべてのセルに対応
| | |
| --- | --- |
| コマンド番号 | 765 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
index d94a7f52977195..dffb2b2e194154 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
index 2813dce8cda702..653a2817a19940 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 738 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
index 7393497abf83b2..5ab22625e39e1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 757 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
index 2e243ed62d2bac..a041324811eeff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 794 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
index 5afddcdab084ae..327d71b9fc8fa4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 752 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
index 05de61a0254ced..f6b7e8394e1e42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
@@ -89,7 +89,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 759 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
index 4b1d2d1e4bf298..892c27d232a0f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
@@ -103,7 +103,7 @@ QR SET TOTALS DATA コマンドを使用し、特定のセルの詳細を設定
| | |
| --- | --- |
| コマンド番号 | 767 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
index 8c3133ea690fce..58da97eeb171b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
index 9d15132a751165..c56b922a2f78ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
@@ -414,7 +414,7 @@ GMT設定を使用したくない場合、これらの設定を以下の様に
| | |
| --- | --- |
| コマンド番号 | 1331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
index ecf84a677ac322..cc22f5da75dba8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 292 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
index 8ae66ab94ab6e0..60e172725f622b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 48 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
index e874e539ca77ed..d233180da59ba8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
@@ -162,7 +162,7 @@ QUERY BY SQL コマンドを使用する場合:
| | |
| --- | --- |
| コマンド番号 | 942 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
index 7c42e726b685ad..2ecf71afa40ce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1424 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
index 0f8337a44050c6..d0b33dc7cd20af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ QUERY SELECTION BY FORMULAは[QUERY BY FORMULA](query-by-formula.md "QUERY BY FO
| | |
| --- | --- |
| コマンド番号 | 207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
index 9c53d8f59d3c6e..b0600e5a2a048d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ QUERY SELECTION WITH ARRAYは[QUERY WITH ARRAY](query-with-array.md "QUERY WITH
| | |
| --- | --- |
| コマンド番号 | 1050 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
index d985ef4917150d..051a3b2c9d8371 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 341 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
index efb206ca2072f5..4eb7ca69e76d0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 644 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
index 0e5bf21d11836c..2d2632b322918c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
@@ -316,7 +316,7 @@ N対1でリレートされた3つのテーブルがあります: \[City\] -> \[D
| | |
| --- | --- |
| コマンド番号 | 277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
index 5ca439614fb8e1..e05149f142cb1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 291 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
index b93a1d1e4635a0..823a2c2a76824b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 100 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
index 4d071900aa3e0a..7907047e2306e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
index d7368d5b0a6660..839d3bfef7bc0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 145 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
index 209298c5269f81..6c64343438861b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 678 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
index 71f1a37cbd548d..60a3f5d11c12b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ READ WRITEコマンドは、レコードを修正しその結果を保存しな
| | |
| --- | --- |
| コマンド番号 | 146 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
index 660a939f4faad6..1c45f33db69e0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
@@ -140,6 +140,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 552 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
index d9661f3444fec5..9b3d0128be45df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
@@ -69,7 +69,7 @@ Mac OS Xのシリアルポート バッファーサイズは、理論的には
| | |
| --- | --- |
| コマンド番号 | 172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
index 45383934a71ecf..a23b06d6e5935e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
@@ -119,7 +119,7 @@ RECEIVE PACKET呼び出し後、エラーなしでパケットを受信すれば
| | |
| --- | --- |
| コマンド番号 | 104 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
index d9d7f8e4162d3b..146b04c9588231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
@@ -156,7 +156,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 79 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
index 40e2f48b688699..e9d48c0e0fb0e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 81 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
index 9bd15e95dbd3bb..c5d154c14dad8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 243 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
index 1d8f9f98882279..865301b8edf932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 76 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
index b7c8b0dd4e3ac1..21a2df69c35133 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 195 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
index c9fae875e3bde1..400cf8cebee657 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 83 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
index d492d56f40287b..b39dd822e52a54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 456 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
index aa41a944b9aa82..36a5223f1d05b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
index 2e9e13d43f088c..a5551b10c4f9aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
index 4bd9c6db1d290a..1ac6d28d88d9ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 351 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
index 5c41ebe938b4a2..4f74e46a38bcfb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1336 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
index dd092552c4b0cb..e56372b61581bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1126 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
index 97ecb783be1cd2..ba9478bb37e360 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
@@ -125,7 +125,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 648 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
index 85ab02fb3c4e06..465726e2e5f655 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1638 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
index 62b51fda4fd4d9..fb1a943dd0aedd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1635 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
index 977699dfdf623f..d365765daf521f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 38 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
index e553ab939ad457..a331203624f497 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 340 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
index d7ec2a447d5c49..0893c582f90f58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 262 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
index 05f308457d447c..bb7a549c5c4f07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 349 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
index d4710689b8fc35..401a373d3166b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
@@ -94,7 +94,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 42 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
index 6853c047494b97..e542e0b55a0294 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 978 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
index c0b95065fb380e..3d40e3a0d4ef1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1135 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
index f300ea80ecc093..2d7e3db5bcbb3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1739 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
index 9bcc6615607a80..9b4f2e82dfec7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 561 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
index b93aa5c06e1ba6..c75a319766498a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 567 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
index f1edc5fce7297e..11dc145add2c54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ Replace stringの使用例を次に示します。結果を変数*vtResult*に
| | |
| --- | --- |
| コマンド番号 | 233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
index 9869349b986054..6a57d44f6ed4d7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 163 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
index d8317c8e007431..4100d2ebb5ebe4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 890 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
index 671bc4f16b4afc..d809f3eda443b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 695 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
index 13e2d6540c7ba6..daec9fb5f6f96e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
@@ -115,6 +115,6 @@ DRAG AND DROP PROPERTIES コマンドの例を参照.
| | |
| --- | --- |
| コマンド番号 | 394 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
index ff21959dfb80af..3a321fa80c201b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ RESOURCE LISTを呼び出す前に配列を事前定義する場合は、*resIDs
| | |
| --- | --- |
| コマンド番号 | 500 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
index 4c920d33c65a58..2fe50abb58d0d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ RESOURCE TYPE LISTを呼び出す前に、*resTypes*配列を文字列配列ま
| | |
| --- | --- |
| コマンド番号 | 499 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
index f0e577ff7dd9e2..381e1073f6902a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1292 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
index 7712ce906be5b0..86d0f731dc41dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 889 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
index 006efe4c519f84..5f0b9326e6588a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
@@ -39,7 +39,7 @@ RESTORE コマンドは*OK*および*Document*変数を更新します。復元
| | |
| --- | --- |
| コマンド番号 | 918 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
index 42fa77c1b1d8f1..cef524d4d8d19d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
index 903f4a2a800d3f..5923edc0509c10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 320 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
index ffd99ad7e06bd8..1f665e36b94217 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1386 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
index a4f88386072f99..0424b6bdd64f39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 712 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
index 351cfcfa2d7131..dd553fea789d24 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 94 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
index 5c50c89ab66ee9..4d86e5bad61af4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 384 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
index 6d5b306690691d..21f55e60eba8dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
@@ -56,6 +56,6 @@ SAVE RECORD が必要とされる場合を次に示します:
| | |
| --- | --- |
| コマンド番号 | 53 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
index 5f9595551cbd50..a69e734e5f6e13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONEは、ロックされたレコードを保存しません。こ
| | |
| --- | --- |
| コマンド番号 | 43 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
index 7cfaaa068ff2a0..8ae1f2b90d3327 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ SAVE SETコマンドは、時間のかかる検索の結果をディスクに保
| | |
| --- | --- |
| コマンド番号 | 184 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
index a9ee07c07990e8..2adbde63064770 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 75 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
index 29ea30a9e2b4d4..b8426c9e10f6aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 857 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
index 5f5e494204d981..e63af396ed4c5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ else
| | |
| --- | --- |
| コマンド番号 | 856 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
index 5e88a3ce981340..eabbc740b64e3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
@@ -52,7 +52,7 @@ XMLのコメントはXMLインタプリタが内容を解析しないテキス
| | |
| --- | --- |
| コマンド番号 | 852 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
index 513a5a9759e3c3..614ba99508ebbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
@@ -52,7 +52,7 @@ DocType文は書かれたXMLのタイプを示し、使用される Document Typ
| | |
| --- | --- |
| コマンド番号 | 851 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
index 50b675db5d57ee..ebcb4b0939420c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 855 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
index 385fe68897375e..90100d8ce5d993 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 854 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
index e16c15d08c6408..1c6b59cb9aac63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 878 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
index f5f10d4a9529f9..8c085fd9f66fbe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 874 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
index e1c069ee456a8e..087727c9d9599f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 873 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
index 01116a29299926..10c7ac3e97aaa4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ TextまたはBLOB 型の変数を*value* 引数に渡します。BLOBを渡す
| | |
| --- | --- |
| コマンド番号 | 877 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
index 5d1a6c8bbae3f2..2aa9b879559e57 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
@@ -67,7 +67,7 @@ tAttrValues{3} には "333"が返されます。
| | |
| --- | --- |
| コマンド番号 | 876 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
index f47808ff2b7d5d..a678782cceade4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 879 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
index 2041c58912f006..5648614db0c4f4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 860 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
index 31b6ec9d9163be..7a8da502616ecc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 875 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
index 94da5e14b9f3b5..8b2a863f05b925 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ SAX OPEN XML ELEMENT ARRAYS は日付、数値、ブール、そしてピクチ
| | |
| --- | --- |
| コマンド番号 | 921 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
index 5995aeadfc4ea0..3234d683bd8b40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 853 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
index 50286f21def69b..c269208222e06e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 858 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
index f2385230821f9c..6ae2cc4e06262f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
@@ -55,7 +55,7 @@ SCAN INDEXは、インデックスフィールドにのみ使用できます。
| | |
| --- | --- |
| コマンド番号 | 350 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
index 4bb12b48d4c156..d7ae9c2d360b56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 438 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
index 3e48f8aae8f459..e84764dc024d3d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
index dcc8c2f82cd59c..ec199e992e9934 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Macintoshでは、Screen height はメイン画面の高さを返します。メ
| | |
| --- | --- |
| コマンド番号 | 188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
index d5bf50c4381555..50bc609dfb8b43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Macintoshの場合、, Screen width はメイン画面の幅を返します。
| | |
| --- | --- |
| コマンド番号 | 187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
index 3e69e8935f3d6d..7ab4c2b72c8fdc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
index b4271354d648c4..68eeb0afde1956 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
@@ -92,7 +92,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 670 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
index 342973dd799de8..51f4a13e230270 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 381 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
index c872887f7bc3d2..5fdcb425d4b465 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 630 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
index bdcd145b10f9b2..ec8fc7293d0b98 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 956 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
index c217ee754decc0..b19608ea9a4a33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 379 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
index 9e6e2e94dde4af..a0676c83c7bafb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 246 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
index 5eafa93784777b..82af3b851647cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
@@ -113,6 +113,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 368 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
index 588865037e4a9d..9a5ee35061f815 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 260 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
index 57347c4648ef06..50268981687e40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
index 5b3bf1d33b2af8..b02b4796d20fef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
@@ -44,6 +44,6 @@ Self が上記のコンテキスト以外で呼ばれた場合、Nilポインタ
| | |
| --- | --- |
| コマンド番号 | 308 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
index d4fab616cdb1d1..266c72fbddeb63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
@@ -158,6 +158,6 @@ var $T_Sema_local;$T_Message : Text
| | |
| --- | --- |
| コマンド番号 | 143 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
index cb80a3a7429841..0c12646b72d84e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1632 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
index 870b6335230177..8b5625576e8741 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
@@ -86,6 +86,6 @@ SEND PACKETコマンドを使用する前に、 [SET CHANNEL](set-channel.md)
| | |
| --- | --- |
| コマンド番号 | 103 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
index d9c2226dd70ac5..712daccdc3ec0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 78 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
index 23deef7846c2ad..786e3ec4e0794e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 80 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
index f8f841edde6a44..02e5ed07d6a15b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 244 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
index 4fa33b2f067cb7..a9c398dcf0cd2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 316 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
index 70634cb6d74a44..7592912b3f4f59 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
index 3b66437ea25bf7..03bc79fa869d0d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1131 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
index f44283bd27f8b3..d05ac5180787e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 310 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
index f1ec974f308542..e0139f7c659c91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ BLOBに新しいバイトを割り当て、それらのバイトを特定の値
| | |
| --- | --- |
| コマンド番号 | 606 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
index 68de9523fd191b..9afb79e204c500 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1425 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
index 920da0becf89f7..52681fd6dcaad7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
index 81a4f6c1ba14cb..fad6d3573543f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
@@ -179,7 +179,7 @@ SET CHANNELコマンドの第2の形式は、ドキュメントファイルの
| | |
| --- | --- |
| コマンド番号 | 77 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
index fa21e6154785e5..5bd3cdb4495dbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
@@ -59,7 +59,7 @@ Windows 環境下でのPDF ドキュメントの作成は、以下のように
| | |
| --- | --- |
| コマンド番号 | 787 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
index 34555fe8d11738..09618d13c0ca30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-localization.md
index d217a5b65f6692..ae9b4cc928ad77 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-localization.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1104 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-parameter.md
index 062258eda9de25..3a43807eaba453 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-database-parameter.md
@@ -1005,6 +1005,6 @@ PHPインタプリタに関する詳細は*Design Reference*マニュアルを
| | |
| --- | --- |
| コマンド番号 | 642 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-default-century.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-default-century.md
index 424cf55d1c7793..de78260223241a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-default-century.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-default-century.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-position.md
index e2556177549b4e..611e4febfe2d03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-position.md
@@ -36,6 +36,6 @@ SET DOCUMENT POSITION コマンドは、引数*offset*に渡す、以下の読
| | |
| --- | --- |
| コマンド番号 | 482 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-properties.md
index cd53908bdb7f9b..5a2e824afb6c23 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-properties.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-size.md
index e3321b3d06724d..e2791ab4a819cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-document-size.md
@@ -33,6 +33,6 @@ Macintoshでは、ドキュメントデータフォークのサイズが変更
| | |
| --- | --- |
| コマンド番号 | 480 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-drag-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-drag-icon.md
index f6c40a459f0ebe..e58f827c8d3535 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-drag-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-drag-icon.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1272 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-environment-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-environment-variable.md
index 8d265d1dc530b2..cd21100d2644f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-environment-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-environment-variable.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 812 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-external-data-path.md
index bf07e06440a07e..9dbec5219e7e05 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-external-data-path.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1134 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-relation.md
index 3dc792d1cc8383..1751500339a50d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-relation.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 919 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
index 905839ed0f4509..e59e70d39ccf71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 602 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
index 4e5266a10d193d..6b97e50e7e41d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
@@ -34,6 +34,6 @@ NULL値は、4DのSQLカーネルによって使用されます。詳細につ
| | |
| --- | --- |
| コマンド番号 | 965 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
index eca129bace620e..d89ea46ff5e831 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 975 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
index 9cd1af7694f45e..f9653abd5cf183 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1737 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
index 69cc368cf803e6..db7d0217041ffd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 614 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
index 54b6136b021268..449325822b816d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1801 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
index 24bfc31b7e50cd..60bebfb6a5cb00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1401 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
index e221f07a79ea13..f16cba6e340dc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 344 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
index 23f2cc41adfa20..6045310507c202 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 953 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
index 7a120202d20215..6598e65cfb4b1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 950 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
index 2fe6abb929f276..6f97a88478fafc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 986 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
index 29f7be93e03fc7..e84b9a209cf94b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 386 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
index 3296aaf077fb97..a04011401ad443 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
@@ -82,6 +82,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 385 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
index c3352a5d89d717..03a87c3dd24f07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 387 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
index 1a8af38a04cf8e..f3a0737f766d6c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 998 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
index 50da5a9a73098e..0c7e402034e094 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ SET MENU BAR**(1;\*)**を実行すると、メニューバーは前と同じ状
| | |
| --- | --- |
| コマンド番号 | 67 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
index 5b64b2125e9dad..4e0d590c50b883 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 984 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
index c005be8332462c..c50b1e6ab5a83d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 208 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
index 699799b3535614..16c60410f9ddad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 982 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
index 9a59805d75b9d8..bb57fe4dfa7ef9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1004 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
index 5a843290487e3d..9f7e2571537c30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
@@ -52,6 +52,6 @@ Associated Standard Action プロパティの場合、*value* 引数には標準
| | |
| --- | --- |
| コマンド番号 | 973 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
index f9f18816222b05..8949b8cf94d3df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
@@ -82,7 +82,7 @@ Ctrl+R (Windows) や Cmd+R (macOS) ショートカットを"再起動"メニュ
| | |
| --- | --- |
| コマンド番号 | 423 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
index 4c4b884bdfd533..1ae6f28c794479 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 425 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
index 9c5ee27b5a78bd..b5f94f87a987a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 348 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
index ee4908fcf70c70..267e7bb89092ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
index 2f28d8345d6f07..f32db8f5121972 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
@@ -87,7 +87,7 @@ DOM参照を使用してGPSブロックを設定します:
| | |
| --- | --- |
| コマンド番号 | 1121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
index 6d694d95144157..0097f4e9c8ec17 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 566 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
index 745019df3b9295..99e7a0e34fb97a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 521 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
index d1b93065d189ed..d476a826df6430 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 845 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
index be9470ed3584fa..fd678c9be5c9a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
@@ -188,6 +188,6 @@ Print\_List3のフォームメソッド:
| | |
| --- | --- |
| コマンド番号 | 709 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
index b7db00723ac72f..3a50c6086a2abc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
@@ -84,7 +84,7 @@ Orientation option の値は同一印刷ジョブ内で変更することがで
| | |
| --- | --- |
| コマンド番号 | 733 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
index 3ccfcdd4beee0b..cdeb0487ed2309 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 364 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
index a64948e84241c0..726a8c1a278087 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 710 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
index 6a7e08e1a74dab..95bf1a4b48460b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
@@ -103,6 +103,6 @@ SET PROCESS VARIABLEは、任意のタイプの送り先プロセスまたはイ
| | |
| --- | --- |
| コマンド番号 | 370 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
index 83438fb9a35c56..d45631eeb5cfca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 661 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
index 95cd4d2f3de9c9..a7fef2aa8f7a59 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 396 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
index f197dad652e46d..be19ff160484f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ SET QUERY LIMITは、下記のクエリコマンドの動作を変更します:
| | |
| --- | --- |
| コマンド番号 | 395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
index 3ecd2a5a00f196..b7ab1904696ab9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 623 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
index 492cbac7c06d89..1864cc07bc8871 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1305 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
index ce4e3fb0edfc38..12e27c92e83d4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1400 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
index 19de0c8344181a..36143a19d5850d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
@@ -193,6 +193,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 601 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
index e9f7bce6007ff1..6edb022372d2f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 523 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
index 8092cc09980f38..15fcd00f9a1985 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 268 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
index d2c671e3fd32ea..7f6fe8fe022a07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ On Timerフォームイベントの生成を取り消すには、*tickCount*に0
| | |
| --- | --- |
| コマンド番号 | 645 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
index eb820bc1ed1661..e121372d08e01f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1291 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
index 51fa52abbc78ee..b88d6039e2175b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1666 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
index 5bd74b2b377796..8f0832d92ba05b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 612 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
index 1e5267b965a660..31d292912f96cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 444 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
index 1f6e59dd249b7c..edb1487e0a25bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
index 069bfc9e268e18..6a310638b2f5ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 543 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
index afbf83a76cb3ca..b80a0b5b8d3d1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 431 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
index 9d336782ebd47b..4cf2acd7faac01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 922 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
index be3d962a715297..68377823472826 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
index 30441c28bb218d..29acec09f836b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
index 5005c03dfbd748..5954b767ebf532 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ SHOW WINDOWコマンドを使用するには、ウィンドウが[HIDE WINDOW](h
| | |
| --- | --- |
| コマンド番号 | 435 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
index 15324572528788..f0244505c960bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 17 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
index 32a04f4f88b22d..80c96e0adcd894 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 274 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
index 09826086eec5d5..f94cb26fa6b3d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
@@ -187,6 +187,6 @@ COMPILER\_WEBメソッドはWebサーバでも使用されます (参照)。
| | |
| --- | --- |
| コマンド番号 | 782 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
index 3d3489d73a27aa..6a7ab43a92b924 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ SOAPリクエストを処理する際、RPC引数のほかに、リクエスト
| | |
| --- | --- |
| コマンド番号 | 784 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
index 1c5d26888d7193..594940afef75c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
@@ -40,6 +40,6 @@ Web サービスのサーバーにおいて新規リクエストを全て拒否
| | |
| --- | --- |
| コマンド番号 | 1636 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
index 7f0e174850620d..3716c2657e07f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 783 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
index e30a52bd9d25e1..b45e70f5790c79 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
index c391926e362608..314160271ed971 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
index 306e8cf78234a8..3590ecdb7e518d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
@@ -61,6 +61,6 @@ SORT LIST コマンドは、カレントリスト項目またはリストやサ
| | |
| --- | --- |
| コマンド番号 | 391 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
index 61cdb78c5e118a..1163edee8b0016 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1214 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
index 4308d65e43dce7..33bb17ee80b44b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1215 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
index 49d945cff9f2cc..095cb2da62ae13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 900 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
index f6a3df232c6dd2..2371c02fbf0a11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1205 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
index 16159bca93cbf5..b5d697c16b046b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
@@ -55,6 +55,6 @@ Hunspell辞書に"fr-classic+reform1990.aff"、"fr-classic+reform1990.dic"、"fr
| | |
| --- | --- |
| コマンド番号 | 1204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
index c614b5c6422344..a79b3f6901a2fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Hunspellフォルダーに配置した"fr-classic"辞書をロードする:
| | |
| --- | --- |
| コマンド番号 | 904 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
index d7c5a63efdbfb7..e0d6a5ba874694 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
index 2e9c9cb3e15932..5c3ab039e4c959 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 824 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
index 80b75ed21a37b2..a6b4c06ff56af3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 821 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
index 9429420064107c..d17bc682c87b7e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1089 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
index 12492f3087a333..375e76d9f2613f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 820 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
index aea4d951c9b60b..2b310c74d79cae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1065 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
index 3ae2dfc3e449c7..3fc5e184a21f63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1064 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
index ca1cb4d85d3bce..5762816c672e6d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ SQLクエリを実行する前に、このコマンドでカレントデータ
| | |
| --- | --- |
| コマンド番号 | 990 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
index f8209ece6bbf72..9ca1141e1d0476 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 989 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
index bb5c09c02954d1..f9361a8fc1b5c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 825 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
index b46e7a938aa880..4293e80a9d2f3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 819 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
index 753ae5b7ecc459..ef789466fc46ab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 822 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
index bc5050fdecf399..65bdf048cc6a96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
@@ -210,7 +210,7 @@ IPv6アドレス 2a01:e35:2e41:c960:dc39:3eb0:f29b:3747のマシン、およびT
| | |
| --- | --- |
| コマンド番号 | 817 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
index ece8537f9b7df4..1afd6ad4f21318 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 872 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
index c84287de3377b9..b42c318b7b3932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 818 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
index bd85cf9ece76c5..5d6926d6bf6e3f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
@@ -84,7 +84,7 @@ SQLリクエスト内におかれた*?*記号が4Dオブジェクトの値で置
| | |
| --- | --- |
| コマンド番号 | 823 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
index a2b0dd03b0ba63..5b40bdcb3f4f7d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 539 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
index e3ddc17e62da8e..8fa5a7828dfd2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1285 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
index 25c80dca0c9216..5fb2236749722d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1282 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
index ea0b21e75e0c12..11257d293a01e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
@@ -105,7 +105,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1094 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
index 826d90523459f9..82fb9e515c47a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
@@ -109,7 +109,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1286 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
index 5b9d921c501d4d..e076d5364a91e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
index 558147c7bb28f7..a06b74afc3bd2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
index 05ea6c4ac8795f..660fbb57e70520 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
@@ -110,7 +110,7 @@ It is now Go to the 4D site or Open a window
| | |
| --- | --- |
| コマンド番号 | 1092 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
index bcf8ca3b65e26f..e43310c841a0d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1116 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
index 016bc4246ebac7..738fde83c30fb6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
@@ -76,6 +76,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
index ec5ea8106c76b4..31b2311acfa19d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
@@ -93,7 +93,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
index 4b51dbb695880d..7b7587d0aa4dec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1280 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
index 03b24060e43331..74770645b0192a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1093 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
index 575092c3b0f372..5e410e8c249b0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
index 27e2d1c7282b28..74a149c64c70d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1136 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
index 1307b2f368df28..45a91250c55451 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1115 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
index 941cc2d0f1d31f..92ab3b24673c96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1712 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
index 03cbbabd9d9cc8..d40218c47cf30c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ SQLサーバが正しく起動されるとOKシステム変数は1に、そう
| | |
| --- | --- |
| コマンド番号 | 962 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
index e15c1dcf29a3b2..27212ec257f069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 239 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
index bb93f25bc978fd..cfa1c7ba92c56a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 26 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
index 53b0d278be15fa..e9eae1b5d9f2dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
index 3ce6d07aa1248f..78fb8e6c615bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ SQLサーバが起動していた場合、すべてのSQL接続が中断しま
| | |
| --- | --- |
| コマンド番号 | 963 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
index 2228b96769adb8..6dd0647b5a204c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
index 27758415d7645b..617727e666945e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 511 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
index ef2d376f48a8ee..5de346c206bf32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
@@ -192,6 +192,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 10 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
index 5df7bc5ed67775..56da658c93d33c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 489 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
index 668c2a4198548c..0a4bcd0ca596d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
@@ -69,6 +69,6 @@ Substringコマンドの使用例を次に示します。結果を変数 vsResul
| | |
| --- | --- |
| コマンド番号 | 12 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
index 48889f687bfb54..8a47227b73a9c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
@@ -64,6 +64,6 @@ Subtotal関数はフォームに値を表示するために必要です。
| | |
| --- | --- |
| コマンド番号 | 97 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
index 2b46a44fbcbb1e..562c915b1d44ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 28 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
index d054f8a0b1905b..a5d63f7519e96f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
index a00592adb8c493..1b7d28f9bbd414 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1385 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
index d50cfdcbce1faf..734bf005b98e69 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1017 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
index 95c87356d4e641..86e768fecf8abe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1054 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
index 8cb6f853457d7a..e7ca5a99288bc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1109 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
index df03360a387f77..994d4829d92754 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ SVG属性に関する詳細は、[SVG SET ATTRIBUTE](svg-set-attribute.md)コマ
| | |
| --- | --- |
| コマンド番号 | 1056 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
index 62c8c7f1d879b2..bd7aeb086ea0aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1055 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
index e2de65ec19ebc8..714cadf60aa2a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1108 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
index c2149d1ee71777..fcdbf5de6b8631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 487 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
index ec8542d49e3668..322f19076912ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ Windows マシン上で以下のコードを実行した場合:
| | |
| --- | --- |
| コマンド番号 | 1571 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
index e4dc2cc861d4a5..e9e550298b17bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1127 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
index 00e3bdd8ed6d70..e490333be4cf11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 256 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
index 5c538c8471bcce..1c0e75891d4bc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 252 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
index 7e4c65a1d146f9..a7b29fc2c64722 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 19 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
index 4a21c3ee87b0fa..019c74e81799d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 486 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
index 9ad9d0f2acef4e..f0d978f2e5f4f1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 476 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
index 4cfa67a3970923..b65eb1688b0f68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 652 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
index ab53e5a4f581c6..177f6f5e44eb2d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
index 7c9393413ab193..89ed5fb4f01962 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
index 963d4de73a4698..a36d04980cc1c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1237 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
index 2eb326598e8154..fe3c99231699b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
@@ -110,6 +110,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| コマンド番号 | 1805 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
index a1d9f2024ad4e9..543bb352ac5eda 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 458 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
index 6353301b3fbf2b..4facaf675215ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 180 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
index 83dbbeae70360c..34e267986a350d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 179 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
index 00a158f7498012..7593703c1ccae0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1445 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
index 1041ade562e65f..fa4280429b163c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1016 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
index eedc14a003b50a..65cc17247897c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
@@ -64,6 +64,6 @@ DEBUG プロジェクトメソッドを次に示します:
| | |
| --- | --- |
| コマンド番号 | 157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
index 212ed4df923a93..a96f85a69df176 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 961 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
index 9d31daea8b651c..6bb6f1e92df379 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 988 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
index ecb35265285e60..99cccf3b8b1662 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 369 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
index a7e602062f28d9..e4bc474e0a5409 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 398 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
index bcfa4f7cc80d8d..d8129b37fcdaa7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
index 18a3324ff7347b..c34568b741b671 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 214 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
index 0d06c801366e14..b0879070f28daa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 95 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
index 18fa55db0fbe90..878e9f2b976e61 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ TRUNCATE TABLEコマンドは注意して使用しなければなりませんが
| | |
| --- | --- |
| コマンド番号 | 1051 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
index c5a0745fe9abe0..d0d3e0d46eef6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
@@ -152,6 +152,6 @@ Type ファンクションはフィールド、インタープロセス変数、
| | |
| --- | --- |
| コマンド番号 | 295 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
index f95f288faa7918..17573d9348c5d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 82 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
index 2e82274116e409..200d216fe740c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 120 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
index cebfad49dfe325..6fe5f359435947 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ UNLOAD RECORDはメモリからレコードをアンロードしますが、そ
| | |
| --- | --- |
| コマンド番号 | 212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
index 8644d3cbb4a32f..bb0e357c0268a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 649 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
index c08e3038030b18..9feaa6d8246ffb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 13 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
index 0e0bbf73fa3450..955ba1f47eb1a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
@@ -60,7 +60,7 @@ IANA名に関する説明は[CONVERT FROM TEXT](convert-from-text.md)コマン
| | |
| --- | --- |
| コマンド番号 | 205 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
index 4fd172434c34bb..d435f6829ed721 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 332 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
index 7118fc1b5ea547..8b04e178de6760 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
index a81b2a50fa1aad..eb6a5fd9a1bb20 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 338 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
index c7a99509422b02..61896979b61252 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 849 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
index 9b23debbe27b2d..dccc5bbbbcc0ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 638 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
index ebdc4bfe8584fd..22debb722fdebe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ OK変数に0が代入された場合、トランザクションは自動的に
| | |
| --- | --- |
| コマンド番号 | 240 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
index cf5a3e7d67547d..7504f41f13aeb6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1509 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
index 1c3e11c8f1fdac..5238b854bcd78d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
@@ -136,7 +136,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 532 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
index 215a18c73f5d3b..915e462b2b7787 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
@@ -68,6 +68,6 @@ VARIABLE TO VARIABLE は、任意のタイプの送り先プロセスまたは
| | |
| --- | --- |
| コマンド番号 | 635 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
index f20e3157176fb0..178b2ce8fc7277 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 27 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
index 7516df1a5423c2..71034536cfe4c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ VERIFY CURRENT DATA FILEコマンドを引数なしで呼び出すと、デフ
| | |
| --- | --- |
| コマンド番号 | 1008 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
index 229764db3fb82d..516f8b275c89a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
@@ -175,7 +175,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 939 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
index 329ed6e9589588..c220a5ada4f278 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
index 64a04c36dc6881..bc632a5170feef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 495 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
index 2e79f9a31b49b0..cca496cc36be21 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 472 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
index 715f5e4f1d4783..fd699a6595c0a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
index d4e6b6edcf87d0..794f2a5ffc38cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1026 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
index 39c6bc662732d4..882dc798d13428 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1049 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
index 909268bc042ef7..21c83d757d3ccc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ HTML ファイル内にあるJavaScriptファンクションの例:
| | |
| --- | --- |
| コマンド番号 | 1029 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
index 4571db82e71b3d..7ca0271e3fd31a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1043 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
index 2df75eff14d0e4..60d7b0b94c6ce9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1027 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
index b6ee114ac022e8..94270b9a991624 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ Webページが完全にロードされると、この関数から返される
| | |
| --- | --- |
| コマンド番号 | 1025 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
index 0d4c608ef8ebb7..b153049e2a31e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1033 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
index 5a9627a67b50cf..c35b2ca6f040bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ URLは以下のいずれかの理由でフィルタされることがありま
| | |
| --- | --- |
| コマンド番号 | 1035 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
index 58c8da4cdabd4c..96145828fea281 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1034 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
index ee252ac909f7ee..dbac6a05f3d579 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1038 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
index 38300d31072e24..af9148180cdedd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1036 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
index 3ef8731a6012ca..b2cffea8037e66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1042 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
index ef1a0bdcc4398a..0006388bd402fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1031 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
index f8ff556747f091..cbbf4ce1e12fc2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ URLは時間順に並びかえられます。
| | |
| --- | --- |
| コマンド番号 | 1048 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
index 0b0d82a0526c1f..8e4da8c3a3d4b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1021 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
index dfdc8cbf6ed3dd..05c8407dfdbead 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1022 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
index e41a2e1cbfe3b2..d7d54412ddfb01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Mac OSにおいてFileVault が有効化されている場合には、Posix シ
| | |
| --- | --- |
| コマンド番号 | 1020 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
index 337a3020559411..c91eacaf49b2f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1736 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
index f2203bbd24a451..084098d516f1ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1023 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
index 36f66dda771d8d..f3bae99773091c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1727 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
index d5ab2e7120dbad..2a69482eb09be8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1032 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
index 425d1972c868c6..31ab6fe7d167ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
@@ -46,6 +46,6 @@ WA SET PAGE CONTENT(MyWArea;"Hello World!
";"f
| | |
| --- | --- |
| コマンド番号 | 1037 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
index a0f4591a54978b..906543bfdc150d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1041 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
index 8d6d000a5af3c5..352f5df1012071 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
@@ -143,6 +143,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1030 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
index cb86ec3ca9511a..b20d93691ebcb8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1024 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
index 6bb1715588bf0f..86ea08feebc722 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1039 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
index 44f701945fca3d..ae9f9087d5ee04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1040 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
index a5f3ae413c1b8c..d2553b8b655789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1211 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
index 039cdbd16a03c1..d2fd1e888ccfbf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
@@ -99,6 +99,6 @@ GetFileのコードは以下の通りです:
| | |
| --- | --- |
| コマンド番号 | 1212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
index f5586da1d8ea0c..046a4c9d0728c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
index 33c2a71e9caf0c..6b8c5289b566a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 814 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
index 70f38fb733fec8..28f62bb3a464ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
@@ -121,6 +121,6 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し
| | |
| --- | --- |
| コマンド番号 | 697 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
index e56666a0c45081..d015b755db0454 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1209 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
index 6fdfbe15e02aca..8ba275c6a07861 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1531 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
index b52479f2122df4..1fd4117cfa834d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
@@ -66,6 +66,6 @@ URLリンクまたは[WEB SEND FILE](web-send-file.md)コマンドを使用し
| | |
| --- | --- |
| コマンド番号 | 658 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
index 07321b7017fc4b..f6ac6356200fd1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
@@ -70,6 +70,6 @@ WEBFORMメソッド以下のように記述します。
| | |
| --- | --- |
| コマンド番号 | 683 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
index c2d2fdc43362a6..e79ef898dae272 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 698 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
index 9099cdb00c1188..633aba462c1195 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Webサーバーが実行中かどうかをチェックしたい場合:
| | |
| --- | --- |
| コマンド番号 | 1313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
index c63fc27d384169..54ee977ebd9705 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Webプロセスや他のプロセスからこのコマンドが呼び出され
| | |
| --- | --- |
| コマンド番号 | 1208 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
index 46355d4ef4ae67..2f4eeefa6b6b74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
index 59249e29965513..9d2db0e78615d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
@@ -85,6 +85,6 @@ BLOBに含まれるデータのタイプは *type* によって示されます
| | |
| --- | --- |
| コマンド番号 | 654 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
index 45bb80790a7ca0..df2d4dbb234e5c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
@@ -55,7 +55,7 @@ Webページ "MyPage.HTM"を送信するには以下のようにします。
| | |
| --- | --- |
| コマンド番号 | 619 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
index 67d7b105df0759..172a3e315752b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 659 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
index 3423921c09a577..c1f59c8be9a87d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
@@ -86,6 +86,6 @@ Location: http://...
| | |
| --- | --- |
| コマンド番号 | 815 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
index 6d53b9581300bb..86a64694310cf8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 677 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
index 1f76952c27f5bf..ff25d19b6c26d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 786 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
index 83b7f4985764b2..637346976a9f13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
@@ -161,7 +161,7 @@ DOCモード (または複合タイプのRPCモード) で公開されたWebサ
| | |
| --- | --- |
| コマンド番号 | 778 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
index f25dda76ed87d9..7338dc95ef23c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 780 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
index 48b5c0c3b8e812..49dc743c8ddca6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
@@ -54,6 +54,6 @@ Webサービスがある都市の時間を返すとします。Webサービス
| | |
| --- | --- |
| コマンド番号 | 779 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
index 385b80c4e8f66e..1b728f39a3eff3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
@@ -67,6 +67,6 @@ SOAPリクエストにカスタマイズしたヘッダーを挿入する:
| | |
| --- | --- |
| コマンド番号 | 901 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
index 7d182c57c8b9f5..e858ee5649cd73 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 777 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
index d4979fbd9ffa01..4fb2ef32f805e5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ HTMLホームページの名前、またはそのページのHTMLアクセスパ
| | |
| --- | --- |
| コマンド番号 | 639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
index 01da1802084597..09e53ed62a2785 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
@@ -69,6 +69,6 @@ X-VERSIONとX-STATUSを指定しないと、自動的にHTTP/1.0 200 OKが設定
| | |
| --- | --- |
| コマンド番号 | 660 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
index 1442882d91ac4e..dd6cc046317078 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
@@ -117,6 +117,6 @@ Server: 4D/16.0.1
| | |
| --- | --- |
| コマンド番号 | 5 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
index 75a04e0fc702b4..dae80982c682c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
@@ -43,7 +43,7 @@ HTMLシンタックス (URLタイプ) 、またはシステムシンタックス
| | |
| --- | --- |
| コマンド番号 | 634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
index 87653475900894..2afdbc0e042d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
@@ -29,7 +29,7 @@ Webサーバの起動が成功すると、OK に1が代入されます。その
| | |
| --- | --- |
| コマンド番号 | 617 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
index 4b02df92054547..36710e3e34df3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
@@ -26,6 +26,6 @@ Webサーバが起動していない場合、コマンドは何も行いませ
| | |
| --- | --- |
| コマンド番号 | 618 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
index 99bab6d5961b37..5109be4c9486c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 946 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
index c18217126bbddf..4d905c1fdb1345 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 445 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
index 226a322a760f1a..898e7e29dba673 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
index 7e6e9d607b9aab..1f156a32474e88 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 446 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
index 5b7857a8adfad5..9e0247f7d59d7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
index 9887c0af80d29b..3c678bd76862d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
index e170506d0c88e2..2898452107ed5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 680 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
index 72c65bb62d3b3a..b99cdb782797c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
@@ -92,6 +92,6 @@ Title="4 Stabat mater"/>
| | |
| --- | --- |
| コマンド番号 | 1091 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
index 48c764deadef71..414446deb1c1b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 732 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
index b84655868b110c..e877d7a1c780fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1096 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
index 4bba6c1a7a87b3..e3b51e39216b3d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
@@ -72,6 +72,6 @@ SVG ピクチャの挿入:
| | |
| --- | --- |
| コマンド番号 | 1090 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
index 95518ef3955cc5..00bb23d719ad29 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 25 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
index d97f6136e3f2aa..82d9c4f2b21e52 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
@@ -8,9 +8,9 @@ displayed_sidebar: docs
-| 引数 | 型 | | 説明 |
-| --- | ------ | --------------------------- | ----------------- |
-| 戻り値 | Object | ← | アクティブなライセンスに関する情報 |
+| 引数 | 型 | | 説明 |
+| --- | ------ | --------------------------- | ------------------------------------ |
+| 戻り値 | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ The returned object contains the following properties:
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1489 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1489 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
index 1ae1505c519a71..1aeec5e5fa0fd2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,7 +49,7 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
+| lk hor scrollbar height | 3 | ピクセル単位の高さ(読み出しのみ可能)
適用対象: リストボックス |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ displayed_sidebar: docs
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk ver scrollbar width | 5 | ピクセル単位の幅(読み出しのみ可能)
適用対象: リストボックス |
\*印が付いているプロパティはリストボックスカラム専用のものです。このプロパティ群の定数をリストボックスとともに引数として受け渡すと、**LISTBOX Get property** は *property* に指定したプロパティの種類に応じて -1、あるいは空文字列を返します。
@@ -105,9 +104,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 917 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | --- |
+| コマンド番号 | 917 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
index 5ec929db69e910..ce21341a484d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,21 +49,17 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
| lk named selection | 28 | セレクション型リストボックスの **[命名セレクション](../FormObjects/properties_DataSource.md#命名セレクション)** プロパティ
適用対象: リストボックス |
| lk resizing mode | 11 | **[カラムの自動リサイズ](../FormObjects/properties_ResizingOptions.md#カラム自動リサイズ)** プロパティ
適用対象: リストボックス
取り得る値:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | **[行の高さ](../FormObjects/properties_CoordinatesAndSizing.md#行の高さ)** プロパティの単位
適用対象: リストボックス
取り得る値:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk selection mode | 10 | **[選択モード](../FormObjects/properties_ListBox.md#選択モード)** プロパティ
適用対象: リストボックス
取り得る値:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
\*印が付いているプロパティはリストボックスカラム専用のものですが、このプロパティ群の定数に対してリストボックスを引数として受け渡すと、 **LISTBOX SET PROPERTY** は各カラムの *property* に対して値を適用します。
@@ -90,9 +88,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1440 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1440 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/session.md b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/session.md
index ae65edfa211cd7..e7138335078baf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20-R10/commands/session.md
@@ -76,7 +76,7 @@ Web ユーザーセッションに関する詳細な情報については、[Web
## 例題
-"公開オプション: 4DタグとURL(4DACTION...)" ブラウザーに次の URL を入力してメソッドを呼び出します:
+"公開オプション: 4DタグとURL(4DACTION...)" 属性を有効にした `action_Session` メソッドを定義したとします。 ブラウザーに次の URL を入力してメソッドを呼び出します:
```
IP:port/4DACTION/action_Session
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/API/CollectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/API/CollectionClass.md
index 79379d85d4d3e3..abd014bdbc6561 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/API/CollectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/API/CollectionClass.md
@@ -4,7 +4,7 @@ title: Collection
---
-The Collection class manages [Collection](Concepts/dt_collection.md) type expressions.
+Collection クラスは [コレクション](Concepts/dt_collection.md) 型の式を扱います。
コレクションは次のように初期化します:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Admin/cli.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Admin/cli.md
index 22167e62210aa9..6a8fdc187f196c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Admin/cli.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Admin/cli.md
@@ -50,7 +50,7 @@ macOS のターミナルまたは Windows のコンソールを使用して、
| `--skip-onstartup` | | `On Startup` および `On Exit` データベースメソッドを含む "自動" メソッドを一切実行せずにプロジェクトを起動します。 |
| `--startup-method` | プロジェクトメソッド名 (文字列) | (`--skip-onstartup` でスキップされていない場合) `On Startup` データベースメソッドの直後に実行するプロジェクトメソッドです。 |
-(*) 一部のダイアログはデータベースを開く前に表示されるため、[診断ログファイル](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) に記録することができません (ライセンス警告、変換ダイアログ、データベース選択、データファイル選択)。 このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
+(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/components.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/components.md
index 2e3049c4d4bb7a..342f000b839c68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/components.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/components.md
@@ -7,7 +7,7 @@ title: コンポーネント
## コンポーネントの見つけ方
-Several components are [preinstalled in the 4D development environment](Extensions/overview.md), but a lot of 4D components from the 4D community [can be found on GitHub](https://github.com/topics/4d-component). また、[独自の 4Dコンポーネントを開発](Extensions/develop-components.md) することもできます。
+いくつかのコンポーネントは [4D開発環境にプリインストール](Extensions/overview.md) されていますが、4Dコミュニティによる多くの 4Dコンポーネントが [GitHub 上に公開](https://github.com/topics/4d-component) されています。 また、[独自の 4Dコンポーネントを開発](Extensions/develop-components.md) することもできます。
## コンポーネントのインストール
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
index e3949bbcbd9f65..6ae88054409ba1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/dt_number.md
@@ -75,7 +75,7 @@ title: 数値 (実数、倍長整数、整数)
### 整数除算
-整数除算演算子は、ある数値を別の数値で割り算をし、その結果の整数部分を返し余りについては無視します。 `a\b` is equivalent to `Int(a/b)`. この演算子は、整数値のみの有効値を返します。
+整数除算演算子は、ある数値を別の数値で割り算をし、その結果の整数部分を返し余りについては無視します。 `a\b` は`Int(a/b)` と等価です。 この演算子は、整数値のみの有効値を返します。
### 実数の比較
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/parameters.md
index d6b8609dd1cd3e..36201c0c490c22 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Concepts/parameters.md
@@ -110,7 +110,7 @@ $entitySelection:=ds.User.query("login=:1"; $user)
:::note
-Do not confuse **parameter declarations** with [**variable declarations**](variables.md#declaring-variables). Using the `var` keyword with parameters will generate errors.
+**引数の宣言** と [**変数の宣言**](variables.md#declaring-variables) を混同しないでください。 引数に対して `var` キーワードを使用した場合、エラーを生成します。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Desktop/building.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Desktop/building.md
index bd606f2e51566c..1e5a7e4acac33d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Desktop/building.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Desktop/building.md
@@ -408,8 +408,8 @@ Windows用サーバーアプリケーションのビルドに使用される App
この機能を有効化するためには、*buildApp* 設定ファイルに `DatabaseToEmbedInClientWinFolder` または `DatabaseToEmbedInClientMacFolder` キーを追加します。 いずれかのキーが存在する場合、アプリケーションビルドプロセスの途中で組み込みシングルユーザーアプリケーションが生成され、コンパイルされたストラクチャーが (EnginedServer.4Dlink ファイルの代わりに) "Database" フォルダー内に置かれます。
-* シングルユーザーアプリケーション内に "Default Data" フォルダーがあれば、アプリケーションにはライセンスが埋め込まれます。
-* シングルユーザーアプリケーション内に "Default Data" フォルダーがなければ、データファイルおよびライセンスなしでアプリケーションが実行されます。
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
基本シナリオは以下の通りです:
@@ -501,7 +501,7 @@ Windows用サーバーアプリケーションのビルドに使用される App
## ライセンス&証明書ページ
-ライセンス&証明書のページでは、次のようなことができます:
+The Licenses & Certificate page can be used to:
* シングルユーザーの[スタンドアロンアプリケーション](#アプリケーションページ)に統合するライセンス番号を指定します。
* macOS 環境下では、証明書を使用してアプリケーションに署名をすることができます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormEditor/formEditor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormEditor/formEditor.md
index 0154f882c9f026..10cad873a7b390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormEditor/formEditor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormEditor/formEditor.md
@@ -53,24 +53,24 @@ title: フォームエディター
ツールバーには以下の要素があります:
-| アイコン | 名称 | 説明 |
-| ------------------------------------------------ | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-|  | フォーム実行 | フォームの実行をテストするために使用します。 このボタンをクリックすると、4D は新しいウィンドウを開き、そのコンテキストでフォームを表示します (リストフォームの場合レコードリスト、詳細フォームの場合カレントレコード)。 フォームはメインプロセスで実行されます。 |
-|  | [選択ツール](#selecting-objects) | Allows selecting, moving and resizing form objects.
**Note**: When an object of the Text or Group Box type is selected, pressing the **Enter** key lets you switch to editing mode. |
-|  | [入力順](#data-entry-order) | "入力順" モードに切り替わり、フォームの現在の入力順を表示・変更できます。 入力順は、バッジを使用して確認することもできます。 |
-|  | [移動](#moving-objects) | "移動" モードに移行し、ウィンドウ中をドラッグ&ドロップすることで素早くフォームの表示部分を移動することができます。 このモードでカーソルは手の形になります。 このモードは、フォームを拡大表示している時に特に便利です。 |
-|  | [拡大](#zoom) | フォーム表示の拡大/縮小率を変更できます (デフォルトで100%)。 "拡大/縮小" モードにするには虫眼鏡をクリックするか、拡大/縮小率バーをクリックします。 この機能は前節で説明しています。 |
-|  | [整列](#aligning-objects) | このボタンには、フォーム中でオブジェクトを均等に配置するためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
-|  | [均等配置](#distributing-objects) | このボタンには、フォーム中でオブジェクトの並びを揃えるためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
-|  | [レベル](#layering-objects) | このボタンには、フォーム上のオブジェクトの階層を変更するためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
-|  | [グループ化/グループ解除](#grouping-objects) | このボタンには、フォーム上の選択オブジェクトのグループ化やグループ解除をおこなうためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
-|  | [表示とページ管理](forms.html#form-pages) | このエリアを使用して、フォームページ間の移動やページの追加ができます。 フォームページを移動するには矢印ボタンをクリックするか、または中央のエリアをクリックすると現われるメニューから表示したいページを選択します。 最終ページが表示されている状態で、右矢印ボタンをクリックすると、4D はページを追加します。 |
-|  | [CSSプレビュー](#css-preview) | このボタンで、使用する CSSモードを選択します。 |
-|  | [ビュー管理](#views) | このボタンは、ビューパレットの表示や非表示をおこないます。 この機能については "オブジェクトビューを使用する" で説明しています。 |
-|  | [バッジ表示](#shields) | このボタンをクリックするたびに、すべてのタイプのフォームバッジが順に表示されます。 また、このボタンには、表示するバッジタイプを直接選択できるメニューが関連付けられています。 |
-|  | [定義済みオブジェクトライブラリ](objectLibrary.html) | このボタンは定義済みオブジェクトライブラリを表示します。 このライブラリは定義済みのプロパティを持つオブジェクトを多数提供します。 |
-|  | [リストボックスビルダー](#list-box-builder) | このボタンは、新しいエンティティセレクション型リストボックスを作成します。 |
-|  | [フィールドを挿入](#insert-fields) | このボタンは、テーブルフォームにおいて、親テーブルの全フィールド (オブジェクト型と BLOB型を除く) をインターフェース標準に従ってラベル付きで挿入します。 |
+| アイコン | 名称 | 説明 |
+| ------------------------------------------------ | ------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
+|  | フォーム実行 | フォームの実行をテストするために使用します。 このボタンをクリックすると、4D は新しいウィンドウを開き、そのコンテキストでフォームを表示します (リストフォームの場合レコードリスト、詳細フォームの場合カレントレコード)。 フォームはメインプロセスで実行されます。 |
+|  | [選択ツール](#selecting-objects) | フォームオブジェクトの選択・移動・リサイズをおこないます。
**注**: テキストやグループボックスタイプのオブジェクトが選択されている場合、**Enter** キーを押すことで編集モードになります。 |
+|  | [入力順](#data-entry-order) | "入力順" モードに切り替わり、フォームの現在の入力順を表示・変更できます。 入力順は、バッジを使用して確認することもできます。 |
+|  | [移動](#moving-objects) | "移動" モードに移行し、ウィンドウ中をドラッグ&ドロップすることで素早くフォームの表示部分を移動することができます。 このモードでカーソルは手の形になります。 このモードは、フォームを拡大表示している時に特に便利です。 |
+|  | [拡大](#zoom) | フォーム表示の拡大/縮小率を変更できます (デフォルトで100%)。 "拡大/縮小" モードにするには虫眼鏡をクリックするか、拡大/縮小率バーをクリックします。 この機能は前節で説明しています。 |
+|  | [整列](#aligning-objects) | このボタンには、フォーム中でオブジェクトを均等に配置するためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
+|  | [均等配置](#distributing-objects) | このボタンには、フォーム中でオブジェクトの並びを揃えるためのメニューがリンクされています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。
選択オブジェクトの位置が CSSプロパティによりロックされている場合は無効です。 |
+|  | [レベル](#layering-objects) | このボタンには、フォーム上のオブジェクトの階層を変更するためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
+|  | [グループ化/グループ解除](#grouping-objects) | このボタンには、フォーム上の選択オブジェクトのグループ化やグループ解除をおこなうためのメニューが関連付けられています。 このボタンは選択されているオブジェクトに応じて有効/無効になります。 |
+|  | [表示とページ管理](forms.html#form-pages) | このエリアを使用して、フォームページ間の移動やページの追加ができます。 フォームページを移動するには矢印ボタンをクリックするか、または中央のエリアをクリックすると現われるメニューから表示したいページを選択します。 最終ページが表示されている状態で、右矢印ボタンをクリックすると、4D はページを追加します。 |
+|  | [CSSプレビュー](#css-preview) | このボタンで、使用する CSSモードを選択します。 |
+|  | [ビュー管理](#views) | このボタンは、ビューパレットの表示や非表示をおこないます。 この機能については "オブジェクトビューを使用する" で説明しています。 |
+|  | [バッジ表示](#shields) | このボタンをクリックするたびに、すべてのタイプのフォームバッジが順に表示されます。 また、このボタンには、表示するバッジタイプを直接選択できるメニューが関連付けられています。 |
+|  | [定義済みオブジェクトライブラリ](objectLibrary.html) | このボタンは定義済みオブジェクトライブラリを表示します。 このライブラリは定義済みのプロパティを持つオブジェクトを多数提供します。 |
+|  | [リストボックスビルダー](#list-box-builder) | このボタンは、新しいエンティティセレクション型リストボックスを作成します。 |
+|  | [フィールドを挿入](#insert-fields) | このボタンは、テーブルフォームにおいて、親テーブルの全フィールド (オブジェクト型と BLOB型を除く) をインターフェース標準に従ってラベル付きで挿入します。 |
### オブジェクトバー
@@ -235,12 +235,12 @@ title: フォームエディター
オブジェクトをグループ化するには:
1. グループ化したいオブジェクトを選択します。
-2. オブジェクトメニューから **グループ化** を選択します。 OR Click the Group button in the toolbar of the Form editor:
 4D marks the boundary of the newly grouped objects with handles. グループ内の各オブジェクトの境界にはハンドルが表示されません。 これ以降、グループ化されたオブジェクトを編集すると、グループを構成する全オブジェクトが変更されます。
+2. オブジェクトメニューから **グループ化** を選択します。 または フォームエディターのツールバーでグループ化ボタンをクリックします:
 4D は、新たにグループ化されたオブジェクトの境界をハンドルで表わします。 グループ内の各オブジェクトの境界にはハンドルが表示されません。 これ以降、グループ化されたオブジェクトを編集すると、グループを構成する全オブジェクトが変更されます。
オブジェクトのグループ化を解除するには:
1. グループ化を解除したいグループオブジェクトを選択します。
-2. Choose **Ungroup** from the **Object** menu.
OR
Click the **Ungroup** button (variant of the **Group** button) in the toolbar of the Form editor.
If **Ungroup** is dimmed, this means that the selected object is already separated into its simplest form. 4D は個々のオブジェクトの境界をハンドルで表わします。
+2. **オブジェクト** メニューから **グループ化解除** を選択します。
または
フォームエディターのツールバーで **グループ化解除** ボタン(**グループ化** ボタンのサブ項目) をクリックします。
If **グループ化解除** が選択不可の場合、選択したオブジェクトはグループに属していないことを意味します。 4D は個々のオブジェクトの境界をハンドルで表わします。
### オブジェクトの整列
@@ -269,7 +269,7 @@ title: フォームエディター
- "左/右整列" や "上/下整列" エリアで、実行しようとする整列に対応する整列アイコンをクリックします。
見本エリアには、選択結果が表示されます。
-- 標準のアンカー方式による整列を実行するには、**プレビュー** または **適用** をクリックします。 この場合、整列をおこなう方向で最も離れた位置にあるオブジェクトがアンカーとして使用され、他のオブジェクトはこのオブジェクトに合わせられます。 たとえば、一連のオブジェクトに対して右揃えを実行したい場合、一番右側に位置するオブジェクトがアンカーとして使用されます。 OR:
To align objects to a specific object, select the **Align on** option and select the object to which you want the other objects to be aligned from the object list. この場合、基準オブジェクトの位置は変わりません。
+- 標準のアンカー方式による整列を実行するには、**プレビュー** または **適用** をクリックします。 この場合、整列をおこなう方向で最も離れた位置にあるオブジェクトがアンカーとして使用され、他のオブジェクトはこのオブジェクトに合わせられます。 たとえば、一連のオブジェクトに対して右揃えを実行したい場合、一番右側に位置するオブジェクトがアンカーとして使用されます。 または:
特定のオブジェクトを基準にオブジェクトを揃えるには、 **整列** オプションを選択し、整列基準としたいオブジェクトを一覧から選択します。 この場合、基準オブジェクトの位置は変わりません。
**プレビュー** ボタンをクリックすると、整列の結果をプレビューすることができます。 するとフォームエディター上のオブジェクトは見かけ上整列しますが、ダイアログボックスが表示されたままなので、この整列のキャンセルや適用をおこなうことができます。
@@ -304,7 +304,7 @@ title: フォームエディター
1. 3つ以上のオブジェクトを選択し、希望する均等配置ツールをクリックします。
-2. In the toolbar, click on the distribution tool that corresponds to the distribution you want to apply.

OR
Select a distribution menu command from the **Align** submenu in the **Object** menu or from the context menu of the editor. 4D は各オブジェクトを均等に配置します。 各オブジェクトの中心までの間隔、および隣接する 2つのオブジェクトの間隔のうち最も広い間隔が基準として用いられます。
+2. 適用したい均等配置に対応する整列ツールをツールバー上で選択します。

または
**オブジェクト** メニュー、またはエディターのコンテキストメニューの **整列** サブメニューから均等メニューコマンドを選択します。 4D は各オブジェクトを均等に配置します。 各オブジェクトの中心までの間隔、および隣接する 2つのオブジェクトの間隔のうち最も広い間隔が基準として用いられます。
"整列と均等配置" ダイアログボックスを用いてオブジェクトを均等に配置するには:
@@ -312,9 +312,9 @@ title: フォームエディター
2. **オブジェクト** メニュー、またはエディターのコンテキストメニューの **整列** サブメニューから **整列...** コマンドを選択します。 以下のダイアログボックスが表示されます:
-3. In the Left/Right Alignment and/or Top/Bottom Alignment areas, click the standard distribution icon: 
(Standard horizontal distribution icon)
The example area displays the results of your selection.
+3. "左/右整列" や "上/下整列" エリアで、標準の均等配置アイコンをクリックします: 
(標準の横均等揃えアイコン)
見本エリアには、選択結果が表示されます。
-4. To perform a distribution that uses the standard scheme, click **Preview** or *Apply*.
In this case 4D will perform a standard distribution, so that the objects are set out with an equal amount of space between them.
OR:
To execute a specific distribution, select the **Distribute** option (for example if you want to distribute the objects based on the distance to their right side). このオプションはスイッチのように機能します。 均等配置チェックボックスが選択されていると、このオプションの下にあるアイコンは異なる動作をおこないます:
+4. 標準の均等配置を実行するには、**プレビュー** または *適用* をクリックします。
この場合、4D は標準の均等配置を実行し、オブジェクトは等間隔で配置されます。
または:
特定の均等配置を実行するには、**均等配置** オプションを選択します (たとえば各オブジェクトの右辺までの距離をもとにしてオブジェクトを均等に配置したい場合)。 このオプションはスイッチのように機能します。 均等配置チェックボックスが選択されていると、このオプションの下にあるアイコンは異なる動作をおこないます:
- 左/右整列の場合、各アイコンは次の均等配置に対応します: 選択オブジェクトの左辺、中央 (横)、右辺で均等に揃えます。
- 上/下整列の場合、各アイコンは次の均等配置に対応します: 選択オブジェクトの上辺、中央 (縦)、下辺で均等に揃えます。
@@ -340,7 +340,7 @@ title: フォームエディター
:::note
-In binary databases, use **Ctrl+Click / Command+Click** to perform the same action.
+バイナリーデータベースにおいては、同じアクションを実行するためには **Ctrl+クリック / Command+クリック** を使用してください。
:::
@@ -378,7 +378,7 @@ JSONフォームの入力順序の設定は、[`entryOrder`](properties_JSONref.
ポインターが入力順ポインターに変わり、4D はフォーム上に線を引いて、データ入力時にオブジェクトが選択される順序を示します。 ツールパレット上の他のツールをクリックするまでは、入力順序の表示と変更操作しかおこなえません。
-2. To change the data entry order, position the pointer on an object in the form and, while holding down the mouse button, drag the pointer to the object you want next in the data entry order.

4D will adjust the entry order accordingly.
+2. データ入力順を変更するには、フォームオブジェクト上にポインターを置き、マウスボタンを押したまま、次の入力順に設定したいオブジェクトまでポインターをドラッグします。

これに応じて、4D はデータ入力順を調整します。
3. 入力順を設定したいだけ、ステップ2 を繰り返します。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md
index 37e28ccc8c9cbd..7dedf1a065d90c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/listbox_overview.md
@@ -240,7 +240,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| On Unload | | |
-#### Additional Properties {additional-properties}
+#### 追加プロパティ {additional-properties}
リストボックスやリストボックス列オブジェクトにて発生するフォームイベントは、次の追加プロパティを返すことがあります:
@@ -279,7 +279,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
### 列特有のプロパティ {#column-specific-properties}
-[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type-list) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap)
+[文字フォ-マット](properties_Display.md#文字フォマット) - [交互に使用する背景色](properties_BackgroundAndBorder.md#交互に使用する背景色) - [自動行高](properties_CoordinatesAndSizing.md#自動行高) - [背景色/塗りカラー](properties_BackgroundAndBorder.md#背景色塗りカラー) - [背景色式](properties_BackgroundAndBorder.md#背景色式) - [太字](properties_Text.md#太字) - [選択リスト](properties_DataSource.md#選択リスト) - [CSSクラス](properties_Object.md#cssクラス) - [コンテキストメニュー](properties_Entry.md#コンテキストメニュー) - [データタイプ (式の型)](properties_DataSource.md#データタイプ-式の型) - [日付フォーマット](properties_Display.md#日付フォーマット) - [デフォルト値](properties_DataSource.md#デフォルト値) - [表示タイプ](properties_Display.md#表示タイプ) - [入力可](properties_Entry.md#入力可) - [入力フィルター](properties_Entry.md#入力フィルター) - [除外リスト](properties_RangeOfValues.md#除外リスト) - [式](properties_DataSource.md#式) - [変数あるいは式 (配列リストボックス)](properties_Object.md#配列リストボックス) - [フォント](properties_Text.md#フォント) - [フォントカラー](properties_Text.md#フォントカラー) - [横揃え](properties_Text.md#横揃え) - [横方向パディング](properties_CoordinatesAndSizing.md#横方向パディング) - [イタリック](properties_Text.md#イタリック) - [表示状態](properties_Display.md#表示状態) - [最大幅](properties_CoordinatesAndSizing.md#最大幅) - [メソッド](properties_Action.md#メソッド) - [最小幅](properties_CoordinatesAndSizing.md#最小幅) - [マルチスタイル](properties_Text.md#マルチスタイル) - [数値フォーマット](properties_Display.md#数値フォーマット) - [オブジェクト名](properties_Object.md#オブジェクト名) - [ピクチャーフォーマット](properties_Display.md#ピクチャーフォーマット) - [サイズ変更可](properties_ResizingOptions.md#サイズ変更可) - [指定リスト](properties_RangeOfValues.md#指定リスト) - [行背景色配列](properties_BackgroundAndBorder.md#行背景色配列) - [行フォントカラー配列](properties_Text.md#行フォントカラー配列) - [行スタイル配列](properties_Text.md#行スタイル配列) - [関連付け](properties_DataSource.md#関連付け) - [スタイル式](properties_Text.md#スタイル式) - [テキスト (True時)/テキスト (False時)](properties_Display.md#テキスト-true時テキスト-false時) - [時間フォーマット](properties_Display.md#時間フォーマット) - [エリプシスを使用して省略](properties_Display.md#エリプシスを使用して省略) - [下線](properties_Text.md#下線) - [変数あるいは式](properties_Object.md#変数あるいは式) - [縦揃え](properties_Text.md#縦揃え) - [縦方向パディング](properties_CoordinatesAndSizing.md#縦方向パディング) - [幅](properties_CoordinatesAndSizing.md#幅) - [ワードラップ](properties_Display.md#ワードラップ)
### フォームイベント
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Entry.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Entry.md
index 6b657721ca8fa8..68bbbdc03fbfec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Entry.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/properties_Entry.md
@@ -27,7 +27,7 @@ title: 入力
ピクチャー型の [入力](input_overview.md) オブジェクトの場合、標準の編集コマンド (カット、コピー、ペースト、そしてクリア) に加え、ファイルからピクチャーを読み込むために使用することのできる **読み込み...** コマンド、ピクチャーをディスクに保存するのに使用する **別名で保存...** コマンドなどがあります。 また、メニューを使用してピクチャーの表示フォーマットを変更することもできます。 **トランケート (中央合わせなし)**、**スケーリング** そして **スケーリング (中央合わせ/プロポーショナル)** から選択できます。 このメニューを使用した [表示フォーマット](properties_Display.md#ピクチャーフォーマット) の変更は一時的なものであり、レコードには保存されません。
-For a [multi-style](properties_Text.md#multi-style) text type [input](input_overview.md) or [listbox column](listbox_overview.md#list-box-columns), in addition to standard editing commands, the context menu provides the following commands:
+[マルチスタイル](properties_Text.md#マルチスタイル) オプションがチェックされているテキスト型の [入力](input_overview.md) オブジェクトまたは [リストボックスカラム](listbox_overview.md#リストボックスカラム) の場合、標準の編集コマンド以外に以下の様なコマンドを使用することができます:
- **フォント...**: フォントシステムダイアログボックスを表示させます。
- **最近使用したフォント**: セッション中に最近使用されたフォント名を表示します。 リストには最大で 10フォントまで表示されます (それ以上は古いものから置き換えられていきます)。 デフォルトではリストは空になっているので、このオプションは表示されません。 このリストは `SET RECENT FONTS` と `FONT LIST` コマンドを使用して管理することができます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
index 566bc7567932a5..3bebde0df25bc1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
@@ -191,12 +191,21 @@ End if
> `GOTO OBJECT` はサブフォームから実行されても、親フォーム内にて目的のオブジェクトを検索します。
-#### CALL SUBFORM CONTAINER コマンド
+#### CALL SUBFORM CONTAINER コマンド {#call-subform-container-command}
`CALL SUBFORM CONTAINER` コマンドを使用すると、サブフォームインスタンスからサブフォームコンテナーオブジェクトに [イベント](../Events/overview.md) を送信できます。 イベントはコンテナーオブジェクトメソッドで受信されます。 (クリックやドラッグ&ドロップなど) サブフォームにより検知されたすべてのイベントの発生元となりえます。
送信するイベントコードに制限はありません (たとえば 20000 や -100 など)。 既存のイベントに対応するコード (たとえば `On Validate` に対応する 3) を使用することも、カスタムコードを使用することもできます。 前者のケースでは、サブフォームコンテナーのプロパティリストでチェックを入れたイベントのみを使用できます。 後者の場合、使用するコードは既存のフォームイベントに対応してはいけません。 将来の 4Dバージョンで番号が衝突しないようにするために、負数の使用が推奨されます。
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
詳細は `CALL SUBFORM CONTAINER` コマンドの説明を参照してください。
#### EXECUTE METHOD IN SUBFORM コマンド
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/Menus/properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/Menus/properties.md
index 48542540b1d56c..b9d017fe4a3ff5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/Menus/properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/Menus/properties.md
@@ -15,7 +15,7 @@ title: メニュープロパティ
- :xliff:MyLabel という形の XLIFFリソース参照。 XLIFF参照についての詳細は、*4D デザインリファレンス* の [XLIFF アーキテクチャー](https://doc.4d.com/4Dv18/4D/18/Appendix-B-XLIFF-architecture.300-4575737.ja.html) の章を参照ください。
- (**Deprecated**) An interprocess variable name followed by a number, for example: `:<>vlang,3`. この変数の内容を変更すると、メニューが表示される際にラベルも変更されます。 この場合、ラベルは XLIFFリソースを呼び出します。 `<>vlang` 変数に含まれる値は *group* 要素の *id* 属性値に対応します。 二つ目の値 (例では3) は *trans-unit* 要素の *id* 属性の値を指定します。
-Using the 4D language, you set the title property through the *itemText* parameter of the [`APPEND MENU ITEM`](../commands/append-menu-item), [`INSERT MENU ITEM`](../commands/insert-menu-item), and [`SET MENU ITEM`](../commands/set-menu-item) commands.
+4Dランゲージを使う場合は、[`APPEND MENU ITEM`](../commands/append-menu-item)、[`INSERT MENU ITEM`](../commands/insert-menu-item)、および [`SET MENU ITEM`](../commands/set-menu-item) コマンドの *itemText* パラメーターでタイトルプロパティを設定します。
### 制御文字の使用
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/REST/configuration.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/REST/configuration.md
index 2141b542e18363..0985c64ff8c9ff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/REST/configuration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/REST/configuration.md
@@ -7,7 +7,7 @@ title: サーバー設定
REST機能を使い始めるまえに、まずは 4D REST サーバーの設定をおこない、これを起動させる必要があります。
-> - 4D Server上では、開かれる RESTセッションにつき、4D Client ライセンスが1消費されます。
+> - 4D Server 上では、開かれる RESTセッションにつき、4Dクライアントライセンスが 1 消費されます。
> - シングルユーザーの 4D では、テスト目的で RESTセッションを 3つまで開くことができます。
> - リクエストをおこなうアプリケーションの [セッション](authUsers.md) は別途管理する必要があります。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md b/i18n/ja/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
index cd55ab9a8ff916..b84094bbc17e7f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
@@ -35,7 +35,7 @@ title: モニターページ

-こういった場合には通常、[**ライセンスマネージャー**](Admin/licenses.md) をチェックする必要があります。
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## 詳細エリア
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/API/EntitySelectionClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/API/EntitySelectionClass.md
index d4229c8053e25e..28ea0efc50b71a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/API/EntitySelectionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/API/EntitySelectionClass.md
@@ -461,7 +461,7 @@ $emp2:=$employees.at(-3) // $employees エンティティセレクションの
デフォルトでは、あるエンティティが削除 ([drop](EntitySelectionClass.md#drop)) された場合、既存のエンティティセレクション内のこのエンティティへの参照は *undefined* になりますが、エンティティセレクションオブジェクト から参照そのものは削除されません。 削除されたエンティティは、[`.length`](#length) プロパティの数にまだ含まれており、リストなどのインターフェースオブジェクトにエンティティセレクションがバインドされている場合、空白の行として表示されます。 この場合、エンティティセレクションに対して `.clean()` 関数を呼び出すことで、*undefined* なエンティティ参照が含まれない、最新のエンティティセレクションを新規に取得することができます。
-結果のエンティティセレクションは、元のエンティティセレクションと種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
+結果のエンティティセレクションは、元のエンティティセレクションと同じ種別になります ([順序あり/順序なし](../ORDA/dsMapping.md#エンティティセレクションの順列あり順列なし)、[変更可能/共有可能](../ORDA/entities.md#共有可能追加可能なエンティティセレクション) の種別が保持されます)。
#### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/API/SessionClass.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
index 740722a59c202f..3cc5b1d45c03a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
@@ -3,7 +3,7 @@ id: SessionClass
title: Session
---
-Session オブジェクトは [`Session`](../commands/session.md) コマンドによって返されます。 このオブジェクトは、カレントユーザーセッションを管理するためのインターフェースをデベロッパーに対して提供し、コンテキストデータの保存、プロセス間の情報共有、セッションに関連したプリエンプティブプロセスの開始などのアクションの実行や、[アクセス権](../ORDA/privileges.md) の管理を可能にします。
+Session オブジェクトは [`Session`](../commands/session.md) コマンドによって返されます。 These objects provide the developer with an interface allowing to manage the current session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web context only) manage [privileges](../ORDA/privileges.md).
:::tip 関連したblog 記事
@@ -17,14 +17,15 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
このクラスは以下の種類のセッションをサポートしています:
-- [**Webユーザーセッション**](WebServer/sessions.md): [プロジェクトにおいてスケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合、Webユーザーセッションが利用可能です。 これらは Web および REST 接続に使用され、権限を割り当てることができます。
-- [**リモートクライアントユーザー セッション**](../Desktop/clientServer.md#リモートユーザーセッション): クライアント/サーバーアプリケーションでは、リモートユーザーは、サーバー上で管理される独自のセッションを持ちます。
-- [**ストアドプロシージャーセッション**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): サーバ上で実行されるすべてのストアドプロシージャーは、同じ仮想ユーザーセッションを共有します。
-- [**スタンドアロンセッション**](../Project/overview.md#development): シングルユーザーアプリケーションで返されるローカルのセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
+- [**Webユーザーセッション**](WebServer/sessions.md): [プロジェクトにおいてスケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合、Webユーザーセッションが利用可能です。 これらは(REST アクセスを含めた)Web 接続に使用され、割り当てられた[権限](../ORDA/privileges.md) によって管理されます。
+- [**デスクトップセッション**](../Desktop/sessions.md)。これには以下のものが含まれます:
+ - [**リモートユーザー セッション**](../Desktop/sessions.md#リモートユーザーセッション): クライアント/サーバーアプリケーションでは、リモートユーザーは、サーバー上で管理される独自のセッションを持ちます。
+ - [**ストアドプロシージャーセッション**](../Desktop/sessions.md#ストアドプロシージャーセッション): サーバー上で実行される全てのストアドプロシージャーセッションの仮想ユーザーセッション。
+ - [**スタンドアロンセッション**](../Desktop/sessions.md#standalone-sessions): シングルユーザーアプリケーションで返されるローカルのセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
-:::note
+:::warning セッション権限について
-`Session` オブジェクトにおいて利用可能なプロパティと関数は、セッションの種類に依存します。
+全てのセッションタイプは権限を管理できますが、[web ユーザーセッション](WebServer/sessions.md) 内で実行されたコードに関してだけは、実際にはセッションの権限によって管理されます。
:::
@@ -54,10 +55,10 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
履歴
-| リリース | 内容 |
-| ----- | -------------- |
-| 21 | リモートセッションのサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 18 R6 | 追加 |
@@ -73,33 +74,27 @@ Session オブジェクトは [`Session`](../commands/session.md) コマンド
#### 説明
-:::note
-
-この関数は、すトアドプロシージャーセッションおよびスタンドアロンセッションでは何もせず、常に **True** を返します。
-
-:::
-
`.clearPrivileges()` 関数は、対象セッションに紐づいているアクセス権をすべて削除し(昇格した権限を除く)、実行が成功した場合に **true** を返します。
-["強制ログイン" モード](../REST/authUsers.md#force-login-mode) でない限り、セッションは自動的にゲストセッションとなります。 "強制ログイン" モードでは、`.clearPrivileges()` はセッションをゲストセッションへと変換するのではなく、セッションの権限を消去するだけです。
-
:::note
この関数は [roles.json](../ORDA/privileges.md#rolesjsonファイル) ファイルで追加されたものであれ [`promote()`](#promote) 関数で追加されたものであれ、Web プロセスから**昇格された権限** を削除しません。
:::
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
```4d
-// Webユーザーセッションを無効にします
+// Web ユーザーセッションを無効化する
var $isGuest : Boolean
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() // $isGuest は true
```
@@ -110,10 +105,10 @@ $isGuest:=Session.isGuest() // $isGuest は true
履歴
-| リリース | 内容 |
-| ----- | -------------- |
-| 21 | リモートセッションのサポート |
-| 20 R9 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 20 R9 | 追加 |
@@ -121,33 +116,28 @@ $isGuest:=Session.isGuest() // $isGuest は true
-| 引数 | 型 | | 説明 |
-| -------- | ------- | :-------------------------: | ------------------------------------ |
-| lifespan | Integer | -> | セッショントークンの有効期限(秒) |
-| 戻り値 | Text | <- | トークンの UUID |
+| 引数 | 型 | | 説明 |
+| -------- | ------- | :-------------------------: | -------------------------------------------------- |
+| lifespan | Integer | -> | 秒単位のセッショントークンの有効期限(Web セッションのみ) |
+| 戻り値 | Text | <- | トークンの UUID |
#### 説明
-:::note
-
-この関数はWeb ユーザーセッションとリモートセッションにおいて利用可能です。 ストアドプロシージャーとスタンドアロンセッションでは空の文字列を返します。
-
-:::
-
`.createOTP()` 関数は、セッションの新しいOTP(One Time Passcode、ワンタイムパスワード)を作成し、そのトークンUUID を返します。 このトークンはそれが生成されたセッションに固有のものです。
OTP トークンについてのより詳細な情報については、[こちらの章](../WebServer/sessions.md#セッショントークンotp)を参照して下さい。
-*lifespan* に秒単位の値を渡すことで、カスタムのタイムアウト時間を設定することができます。 セッションを復元するために失効したトークンを使用した場合、それは無視されます。 *lifespan* 引数が省略された場合はデフォルトで:
+セッションを復元するために失効したトークンを使用した場合、それは無視されます。
-- Web ユーザーセッションの場合、トークンはセッションの[`.idleTimeOut`](#idletimeout) と同じ有効期限を持って作成されます。
-- リモートセッションの場合、トークンは10秒の有効期限を持って作成されます。
+Web セッションに対しては、*lifespan* に秒単位の値を渡すことで、カスタムのタイムアウト時間を設定することができます。 デフォルトで、*lifespan* 引数が省略された場合、トークンはセッションの[`.idleTimeOut`](#idletimeout) と同じ有効期限を持って作成されます。
-**Web ユーザーセッション** の場合、返されたトークンは、サードパーティアプリケーションや他のWebサイトとのやり取りで使用することでセッションを安全に特定することができます。 例えば、セッションOTP トークンは支払いアプリケーションなどにおいて使用することができます。
+デスクトップセッションの場合、トークンは10秒の有効期限を持って作成されます。
-**リモートセッション** の場合、返されたトークンを4D Server 上で使用することで[Web エリアでQodly フォームを実行しているリモート 4D](../Desktop/clientServer.md#リモートユーザーセッション) からのリクエストを識別することができます。
+返されたトークンは、サードパーティアプリケーションや他のWebサイトとのやり取りで使用することでセッションを安全に特定することができます。 例えば、セッションOTP トークンは支払いアプリケーションなどにおいて使用することができます。
+
+返されたトークンは、Web から入ってきた、[セッションを共有する](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses)リクエストを特定するために4D Server または4D シングルユーザーアプリケーションが使用することができます。
#### 例題
@@ -182,12 +172,6 @@ $token := Session.createOTP( 60 ) // トークンは1分間有効
#### 説明
-:::note
-
-この関数はリモートクライアント、ストアドプロシージャー、スタンドアロンのセッションにおいては何もしません。
-
-:::
-
`.demote()` 関数は *promoteId* 引数に ID を渡した昇格した権限を、Web プロセスから削除します(その権限が [`.promote()`](#promote) 関数を使用して以前追加された場合)。
Web プロセス内において *promoteId* で指定した権限が [`.promote()`](#promote) を使用して昇格したものではなかった場合、この関数は何もしません。
@@ -262,10 +246,10 @@ $expiration:=Session.expirationDate // 例: "2021-11-05T17:10:42Z"
履歴
-| リリース | 内容 |
-| ----- | -------------------- |
-| 21 | リモートクライアントセッションのサポート |
-| 20 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 20 R6 | 追加 |
@@ -289,9 +273,10 @@ $expiration:=Session.expirationDate // 例: "2021-11-05T17:10:42Z"
:::
-リモートクライアントセッションでは、権限は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
-ストアドプロシージャーセッションとスタンドアロンセッションでは、この関数は"WebAdmin" のみを格納したコレクションを返します。
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
@@ -360,10 +345,10 @@ $privileges := Session.getPrivileges()
履歴
-| リリース | 内容 |
-| ----- | ------------------------------------- |
-| 21 | 昇格した権限ならTrue を返す、リモートクライアントセッションのサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ----------------------------------------- |
+| 21 | 昇格した権限ならTrue を返す、リモートおよびスタンドアロンセッションのサポート |
+| 18 R6 | 追加 |
@@ -388,25 +373,27 @@ $privileges := Session.getPrivileges()
:::
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
-ストアドプロシージャーセッションとスタンドアロンセッションの場合、この関数は*privilege* に関わらず必ずTrue を返します。
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
-"WebAdmin" アクセス権が Webユーザーセッションに紐づいているかを確認します:
+"CreateInvoices" アクセス権が Webユーザーセッションに紐づいているかを確認します:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- // アクセス権が付与されているので、何もしません
+If (Session.hasPrivilege("CreateInvoices"))
+ // 請求書作成機能へのアクセスを許可
Else
- // 認証ページを表示します
+ // 請求書作成機能へのアクセスはなし
+
End if
```
#### 参照
-[*この機能に関連するBlog 記事*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog 記事)](https://blog.4d.com/?s=hasPrivilege)
@@ -442,10 +429,9 @@ End if
履歴
-| リリース | 内容 |
-| ---- | -- |
-
-|18 R6|追加|
+| リリース | 内容 |
+| ----- | -- |
+| 18 R6 | 追加 |
@@ -500,26 +486,16 @@ End if
#### 説明
-:::note
-
-このプロパティは、リモートクライアント、ストアドプロシージャーおよびスタンドアロンセッションの場合にのみ使用できます。
-
-:::
-
-`.info` プロパティは、サーバー上のリモートクライアントまたはストアドプロシージャーセッション、あるいはスタンドアロンセッションの情報を格納します。
+`.info` プロパティは、サーバー上のデスクトップまたはWeb セッションの情報を格納します。
-:::note
-
-- `.info` オブジェクトは、リモートクライアントおよびストアドプロシージャーセッションに対して [`Process activity`](../commands/process-activity.md) コマンドの"session" プロパティによって返されるオブジェクトと同じです。
-- `.info` オブジェクトは、スタンドアロンセッションに対しては[`Session info`](../commands/session-info.md) コマンドによって返されるオブジェクトと同じです。
-
-:::
+- **リモートセッション** および **ストアドプロシージャーセッション**の場合: `.info` オブジェクトは[`Process activity`](../commands/process-activity.md) コマンドの "session" プロパティに返されるオブジェクトと同じです。
+- **スタンドアロンセッションの場合**: `.info` オブジェクトは、[`Session info`](../commands/session-info.md) コマンドで返されるものと同じオブジェクトです。
`.info` オブジェクトには、次のプロパティが格納されています:
| プロパティ | 型 | 説明 |
| ---------------- | -------------------------------- | ------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | セッションのタイプ: "remote"、"storedProcedure"、"standalone" |
+| type | Text | セッションのタイプ: "remote"、"storedProcedure"、"standalone"、"rest"、"web" |
| userName | Text | 4Dユーザー名 ([`.userName`](#username) と同じ値) |
| machineName | Text | リモートセッション: リモートマシンの名前。 ストアドプロシージャセッション: サーバーマシンの名前。 スタンドアロンセッションの場合: マシン名 |
| systemUserName | Text | リモートセッション: リモートマシン上で開かれたシステムセッションの名前。 |
@@ -554,9 +530,9 @@ End if
-| 引数 | 型 | | 説明 |
-| --- | ------- | :-------------------------: | ----------------------------- |
-| 戻り値 | Boolean | <- | ゲストセッションの場合は true、それ以外は false |
+| 引数 | 型 | | 説明 |
+| --- | ------- | :-------------------------: | ------------------------------------------------------------------ |
+| 戻り値 | Boolean | <- | セッションがゲストセッションの場合はTrue、それ以外はFalse (Web セッションのみ) |
@@ -564,11 +540,17 @@ End if
:::note
-この関数は、リモートクライアント、ストアドプロシージャ、およびスタンドアロンセッションでは常に**False** を返します。
+この関数はデスクトップセッションに対しては常に **False** を返します。
:::
-`.isGuest()` 関数は、アクセス権のないゲストセッションの場合は true を返します。
+.isGuest()` 関数は セッション内で`setPrivileges()\` が呼ばれていない、あるいはセッション内で[Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) が実行されたあとである場合には True を返します。
+
+:::note 互換性
+
+In a REST session when the [**Force login mode**](../REST/authUsers.md#force-login-mode) is not enabled, `.isGuest()` returns True if the session has no privileges.
+
+:::
#### 例題
@@ -607,12 +589,6 @@ End if
#### 説明
-:::note
-
-この関数はリモートクライアント、ストアドプロシージャー、スタンドアロンのセッションにおいては何もしません。
-
-:::
-
`.promote()` 関数は、*privilege* 引数で定義された権限を、呼び出し関数の実行中にカレントプロセスに追加し、昇格した権限の ID を返します。
権限を動的に付与することは、アクセス権が実行コンテキストに依存する場合には有用です。この場合 "roles.json" ファイルだけでは完全に定義しきることはできないからです。 これは、異なるアクセスレベルのユーザーによって同じ関数が実行され得る場合に関連します。 `.promote()` を使用することで、他のプロセスに影響することなく、カレントプロセスにのみ必要な権限が与えられるようにすることができます。
@@ -628,6 +604,11 @@ End if
権限を動的に削除するためには、適切なID で `demote()` 関数を呼び出してください。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
+
#### 例題
複数のユーザーが、異なるアプリケーションとして振る舞う単一のエンドポイントに接続する場合を考えます。 #1 のアプリケーションからのユーザーは、"VerySensitiveInfo" を作成しないため、 "super_admin" 権限を必要としません。 一方で#2 のアプリケーションからのユーザーは "super_admin" 権限を必要とします。
@@ -686,12 +667,6 @@ End if
#### 説明
-:::note
-
-この関数は、Webユーザーセッションの場合にのみ使用できます。 それ以外のコンテキストではFalse を返します。
-
-:::
-
`.restore()` 関数は、カレントのWeb ユーザーセッションを*token* 引数のUUIDに対応したオリジナルのセッションで置き換えます。 セッションのストレージと権限は復元されます。
オリジナルのセッションが正常に復元された場合、この関数は`true` を返します。
@@ -728,11 +703,11 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
履歴
-| リリース | 内容 |
-| ----- | -------------------- |
-| 21 | リモートクライアントセッションのサポート |
-| 19 R8 | roles プロパティをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ------------------------ |
+| 21 | リモートおよびスタンドアロンセッションのサポート |
+| 19 R8 | roles プロパティをサポート |
+| 18 R6 | 追加 |
@@ -751,12 +726,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### 説明
-:::note
-
-この関数は、ストアドプロシージャーセッションおよびスタンドアロンセッションでは何もせず、常に**False** を返します。
-
-:::
-
`.setPrivileges()` 関数は、引数として渡したアクセス権やロールをセッションと紐づけ、実行が成功した場合に **true** を返します。
- *privilege* には、アクセス権の名称を文字列として渡します (複数の場合はカンマ区切り)。
@@ -781,7 +750,10 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
[`userName`](#username) プロパティは Session オブジェクトレベルで利用可能です (読み取り専用)。
-リモートクライアントセッションにおいては、この関数は[Web エリアを通して送信されたWeb リクエスト](../Desktop/clientServer.md#webエリア内のqodlyページ内でセッションを共有する) のコンテキストで実行されたコンテキストのみに関係します。
+:::note
+
+権限は、この関数が実行された[セッションの種類](#セッションの種類) に関わらず、Web アクセスを通して実行されたコードにのみ適用されるという点に注意してください。
+:::
#### 例題
@@ -813,10 +785,10 @@ End if
履歴
-| リリース | 内容 |
-| ----- | -------------------------------- |
-| 20 R5 | リモートクライアントとストアドプロシージャーセッションをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ---------------- |
+| 20 R5 | デスクトップセッションのサポート |
+| 18 R6 | 追加 |
@@ -838,6 +810,8 @@ End if
:::
+デスクトップセッションとWeb セッションが[OTP を使用して共有している](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses)場合、これらは同じ `.storage` オブジェクトを共有します。
+
#### Webセッションの例題
クライアントの IP を `.storage` プロパティに保存します。 `On Web Authentication` データベースメソッドに以下のように書けます: `On Web Authentication` データベースメソッドに以下のように書けます:
@@ -868,10 +842,10 @@ End use
履歴
-| リリース | 内容 |
-| ----- | -------------------------------- |
-| 20 R5 | リモートクライアントとストアドプロシージャーセッションをサポート |
-| 18 R6 | 追加 |
+| リリース | 内容 |
+| ----- | ---------------- |
+| 20 R5 | デスクトップセッションのサポート |
+| 18 R6 | 追加 |
@@ -881,10 +855,10 @@ End use
`.userName` プロパティは、セッションと紐づいたユーザー名を格納します。 このプロパティは、コード内でユーザーを確認するのに使用できます。
-- Webセッションでは、このプロパティはデフォルトで空の文字列です。 これは、[`setPrivileges()`](#setprivileges) 関数の `privileges` プロパティを使って設定することができます。
-- リモートおよびストアドプロシージャーセッションでは、このプロパティは [`Current user`](../commands-legacy/current-user.md) コマンドと同じユーザー名を返します。
-- スタンドアロンセッションでは、このプロパティは"designer" または[`SET USER ALIAS`](../commands-legacy/set-user-alias.md) コマンドで設定された名前が格納されています。
+- **Web セッション**: このプロパティはデフォルトで空の文字列です。 これは、[`setPrivileges()`](#setprivileges) 関数の `privileges` プロパティを使って設定することができます。
+- **リモート/ ストアドプロシージャーセッション**: このプロパティは [`Current user`](../commands-legacy/current-user.md) コマンドと同じユーザー名を返します。
+- **スタンドアロンセッション**: このプロパティは"designer" または[`SET USER ALIAS`](../commands-legacy/set-user-alias.md) コマンドで設定された名前が格納されています。
-このプロパティは **読み取り専用** です。
+このプロパティはデスクトップセッションにおいては**読み取り専用**です。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/cli.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/cli.md
index 74c073b5d3f6d5..97d8908de7fdc6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/cli.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/cli.md
@@ -50,7 +50,7 @@ macOS のターミナルまたは Windows のコンソールを使用して、
| `--skip-onstartup` | | `On Startup` および `On Exit` データベースメソッドを含む "自動" メソッドを一切実行せずにプロジェクトを起動します。 |
| `--startup-method` | プロジェクトメソッド名 (文字列) | (`--skip-onstartup` でスキップされていない場合) `On Startup` データベースメソッドの直後に実行するプロジェクトメソッドです。 |
-(\*) 一部のダイアログはデータベースを開く前に表示されるため、[診断ログファイル](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) に記録することができません (ライセンス警告、変換ダイアログ、データベース選択、データファイル選択)。 このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). このような場合、エラーストリーム (stderr) とシステムのイベントログにエラーが投げられ、アプリケーションが終了します。
### 例題
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/licenses.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
index 75c64fe3057115..32a77d067eba1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
@@ -32,7 +32,7 @@ title: ライセンスリスト
一部の4D ライセンスには有効期限があり、それを過ぎた場合には更新する必要があります。 ライセンスのサブスクリプションが4D ストア上で更新されると、ウェルカムウィザードから[ログイン](GettingStarted/Installation.md)すると、お使いの4D アプリケーション内のライセンスは自動的に更新されます。
-一部のケースにおいては、ライセンスマネージャダイアログボックス内の[**更新** ボタン](#更新) をクリックする必要があるものもあります。
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## ライセンスの有効化
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
index ce82ec00c69164..2052cbedd93889 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
@@ -42,7 +42,7 @@ title: デバッガー
:::note 注記
- ヘッドレスモードで実行中のサーバーでは、デバッガーウィンドウを表示することはできません。この場合はリモートデバッガーを使用する必要があります。 [リモートマシンからのデバッグ](./debugging-remote.md) 参照。
-- 運用環境で Qodlyページをデバッグする必要がある場合は、[Qodly Studio のデバッガーを 4D Server アプリケーションで有効化する](../WebServer/qodly-studio.md#4d-server-で-qodlyデバッガーを使用する) こともできます。
+- 運用環境で Qodlyページをデバッグする必要がある場合は、[Qodly Studio のデバッガーを 4D Server アプリケーションで有効化する](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) こともできます。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/building.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/building.md
index e13f0a0761d728..bdfe0231156b97 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/building.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/building.md
@@ -407,8 +407,8 @@ Windows用サーバーアプリケーションのビルドに使用される App
この機能を有効化するためには、 *buildApp* 設定ファイルに `DatabaseToEmbedInClientWinFolder` または `DatabaseToEmbedInClientMacFolder` キーを追加します。 いずれかのキーが存在する場合、アプリケーションビルドプロセスの途中で組み込みシングルユーザーアプリケーションが生成され、コンパイルされたストラクチャーが(EnginedServer.4Dlink ファイルの代わりに) "Database" フォルダー内に置かれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがあれば、アプリケーションにはライセンスが埋め込まれます。
-- シングルユーザーアプリケーション内に "Default Data" フォルダーがなければ、データファイルおよびライセンスなしでアプリケーションが実行されます。
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
基本シナリオは以下の通りです:
@@ -497,10 +497,11 @@ Windows用サーバーアプリケーションのビルドに使用される App
- **SpellChecker**: 入力エリアと 4D Write Proエリアで利用可能なビルトインの [スペルチェック機能](../FormObjects/properties_Entry.md#自動スペルチェック) とコマンドに使用されます。
- **4D Updater**: クライアントの [自動更新](#クライアントサーバーアプリケーションとは) をコントロールし、[サーバーの自動更新](#サーバーまたはシングルユーザーアプリケーションの自動更新) のための `SET UPDATE FOLDER` コマンドで使用されます。
+- **4D Qodly Pro**: [Qodly Studio とそのWeb レンダリング機能](https://developer.4d.com/qodly/) を含みます。
## ライセンス&証明書ページ
-ライセンス&証明書のページでは、次のようなことができます:
+The Licenses & Certificate page can be used to:
- [スタンドアロン](#アプリケーションページ)アプリケーションまたは[クライアントサーバー](#クライアントサーバーページ) アプリケーションに統合したい[運用ライセンス](../Admin/licenses.md#運用ライセンス) を設定します。
- macOS 環境下では、証明書を使用してアプリケーションに署名をすることができます。
@@ -535,7 +536,7 @@ Windows用サーバーアプリケーションのビルドに使用される App
- [`License info`](../commands/license-info.md) コマンドを使用するとアプリケーションライセンスのタイプ (*.attributes* コレクション) およびそれらの有効期限 (*.expirationDate* オブジェクト) を知ることができます。
- BuildApplication の[`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.ja.html) xml キーを使用すると、評価版を管理することができます。
-- [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) コマンドは、評価版から呼び出された場合には何もしません。
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
index d2fb494d4bbf85..bc2ce514057472 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
@@ -85,93 +85,3 @@ title: クライアント/サーバー管理
> プラグインやコンポーネントを 4D あるいは 4D Server アプリケーションレベルにインストールすることは、推奨されません。
-## リモートユーザーセッション
-
-サーバー上では、[`Session`](../commands/session.md) コマンドはカレントユーザーセッションの情報を格納する `Session` オブジェクトを返します。 このオブジェクトを扱うには、[`Session` クラス](../API/SessionClass.md) の関数とプロパティを使用します。
-
-:::tip 関連したblog 記事
-
-[クライアント/サーバー接続とストアドプロシージャーに対応した新しい 4Dリモートセッションオブジェクト](https://blog.4d.com/ja/new-4d-remote-session-object-with-client-server-connection-and-stored-procedure/)。
-
-:::
-
-### 効果
-
-`session` オブジェクトを使用すると、リモートユーザーセッションに関する情報や権限を管理できます。
-
-ユーザーセッションのすべてのプロセス間でデータを共有するには、[`Session.storage`](../API/SessionClass.md#storage) 共有オブジェクトを使用できます。 たとえば、クライアントがサーバーに接続する際にユーザー認証手続きを開始し、メールや SMS で送信されたコードをアプリケーションに入力させることができます。 次に、ユーザー情報をセッションの storage に追加し、サーバーがユーザーを識別できるようにします。 この方法により、4Dサーバーはすべてのクライアントプロセスのユーザー情報にアクセスできるため、ユーザーの役割に応じてカスタマイズされたコードを用意することができます。
-
-また、リモートユーザーセッションに権限を割り当てることで、Webエリア内で実行されているQodly ページからセッションがきている場合にアクセスを管理することができます。
-
-### 利用可能性
-
-リモートユーザー `Session` オブジェクトは以下から利用できます:
-
-- [サーバー上で実行](../Project/code-overview.md#サーバー上で実行) 属性を持つプロジェクトメソッド (クライアントプロセスの "双子" プロセスで実行されます)
-- トリガー
-- ORDA [データモデル関数](../ORDA/ordaClasses.md) ([`local`](../ORDA/ordaClasses.md#ローカル関数) キーワードで宣言されたものを除く)
-- `On Server Open Connection` および `On Server Shutdown Connection` データベースメソッド
-
-:::info
-
-サーバー上のすべてのストアドプロシージャーは、同じ仮想ユーザーセッションを共有します。 詳細については、[doc.4d.com のこのページ](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.ja.html) を参照ください。
-
-:::
-
-### Webエリア内のQodlyページとセッションを共有する
-
-リモートクライアントセッションを使用して、リモートマシン上で実行中の、[Qodly ページ](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) がインターフェースとして使用されているクライアント/サーバーアプリケーションを管理することができます。 With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
-
-To manage this configuration, you need to use remote client sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip 関連したblog 記事
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### 例題
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-*resetPrivileges()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-*getOTP()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
new file mode 100644
index 00000000000000..058ac156032b76
--- /dev/null
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: デスクトップセッション
+---
+
+**デスクトップセッション** とは、4D Server または4D シングルユーザー版のユーザー関連の実行コンテキストであり、Web やREST アクセスに起因するものではないものです。
+
+[**Web ユーザーセッション**](../WebServer/sessions.md) 同様、デスクトップセッションで実行されたコードは[`Session`](../API/SessionClass.md) オブジェクトへのアクセスが可能で、これによって提供される関数やプロパティによって(例えば[`session.storage`](../API/SessionClass.md#storage) オブジェクトを使用することによって)セッションの値を保存したりユーザープロセス間で共有することが可能になります。
+
+しかしながら、Web ユーザーセッション内で実行されたコードとは違い、デスクトップセッション内で実行されたコードは[ロールと権限](../ORDA/privileges.md)によっては管理されません。 これはORDA およびデータモデルクラスを含め、4D アプリケーションのどの部分へもアクセスすることができます。 4D Server 上では、[ユーザー&グループ機能](../Users/handling_users_groups.md) でユーザーアクセスを管理することができます。
+
+それでも、[デスクトップセッションをWeb セッションと**共有** すること](#webアクセス用にデスクトップセッションを共有する) ことができ、これによってデスクトップユーザーは、例えばQodly ページとWeb エリアを使用して、Web インターフェースを通して4D アプリケーションへとアクセスうすることができます。
+
+## セッションの種類
+
+デスクトップセッションには以下のような種類が含まれます:
+
+- **リモートユーザーセッション**: クライアント/サーバーアプリケーションにおいては、サーバー上でユーザープロセスを管理するセッション。
+- **ストアドプロシージャーセッション**: クライアント/サーバーアプリケーションにおいては、サーバー上で実行される全てのストアドプロシージャーを管理する固有のバーチャルユーザーセッション。
+- **スタンドアロンセッション**: シングルユーザーアプリケーション内で返されるローカルセッションオブジェクト(クライアント/サーバーアプリケーションの開発およびテストフェーズにおいて有用です)。
+
+:::note
+
+[スケーラブルセッション](../WebServer/sessions.md#webセッションの有効化) 有効化されているときに、4D プロジェクトがWeb またはREST 経由でアクセスがあれば、すぐに[**Web セッション**](../WebServer/sessions.md) が使用されるという点に注意してください。
+
+:::
+
+以下の図は、異なるセッションの種類とそれらがどのように関連するかを表しています:
+
+
+
+## リモートユーザーセッション
+
+サーバー上では、"ユーザープロセス"(つまりリモートユーザーに関連したプロセス)内では、[`Session`](../commands/session.md) コマンドはカレントのユーザーセッションを表す `session` オブジェクトを返します。 このオブジェクトを扱うには、[`Session` クラス](../API/SessionClass.md) の関数とプロパティを使用します。
+
+:::note
+
+リモート4D では、 `session` オブジェクトは常に null を返します。
+
+:::
+
+:::tip 関連したblog 記事
+
+[クライアント/サーバー接続とストアドプロシージャーに対応した新しい 4Dリモートセッションオブジェクト](https://blog.4d.com/ja/new-4d-remote-session-object-with-client-server-connection-and-stored-procedure/)。
+
+:::
+
+### 効果
+
+`session` オブジェクトを使用すると、リモートユーザーセッションに関する情報や権限を管理できます。
+
+ユーザーセッションのすべてのプロセス間でデータを共有するには、[`Session.storage`](../API/SessionClass.md#storage) 共有オブジェクトを使用できます。 たとえば、クライアントがサーバーに接続する際にユーザー認証手続きを開始し、メールや SMS で送信されたコードをアプリケーションに入力させることができます。 次に、ユーザー情報をセッションの storage に追加し、サーバーがユーザーを識別できるようにします。 この方法により、4Dサーバーはすべてのクライアントプロセスのユーザー情報にアクセスできるため、ユーザーの役割に応じてカスタマイズされたコードを用意することができます。
+
+また、リモートユーザーセッションに権限を割り当てることで、Webエリア内で実行されているQodly ページからセッションがきている場合にアクセスを管理することができます。
+
+### 利用可能性
+
+リモートユーザー `Session` オブジェクトは以下から利用できます:
+
+- [サーバー上で実行](../Project/code-overview.md#サーバー上で実行) 属性を持つプロジェクトメソッド (クライアントプロセスの "双子" プロセスで実行されます)
+- トリガー
+- ORDA [データモデル関数](../ORDA/ordaClasses.md) (ただし、[`local`](../ORDA/ordaClasses.md#local-functions) キーワードで宣言されているものを除く)
+- [`On Server Open Connection`](../commands/on-server-open-connection-database-method) と [`On Server Close Connection`](../commands/on-server-close-connection-database-method)などのデータベースメソッド。
+
+## ストアドプロシージャーセッション
+
+サーバー上では、全ての[ストアドプロシージャー](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.ja.html) は同じバーチャルユーザーセッションを共有します。
+
+### 効果
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### 利用可能性
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### 効果
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### 利用可能性
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. この構成では、アプリケーションは現代的なCSS ベースのWeb インターフェースを持ちながらも、統合されたクライアント/サーバーのパワーと単純さの恩恵に預かることができます。 このようなアプリケーションでは、Qodly ページは標準の4D [Web エリア](../FormObjects/webArea_overview.md)内で実行されます。
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+共有セッションは [OTPトークン](../WebServer/sessions.md#session-token-otp) を通して管理されます。 After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. Web サーバー側では、Web リクエストが $4DSID パラメーター内に *OTP id* を格納していた場合、そのOTP トークンに対応したセッションが使用されます。
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip 関連したblog 記事
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### 例題
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Develop/field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Develop/field-properties.md
index a3dee0bff39419..bd512de3b5bc00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Develop/field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Develop/field-properties.md
@@ -3,7 +3,7 @@ id: field-properties
title: フィールドプロパティ
---
-For other field properties, please refer to [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.en.html).
+他のフィールドプロパティについては、 [doc.4d.com](https://doc.4d.com/4Dv21/4D/21/Field-properties.300-7676763.ja.html) を参照してください。
## Class
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Events/onValidate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Events/onValidate.md
index e71db804f9a9e1..663ac0e6bd8cc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Events/onValidate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Events/onValidate.md
@@ -9,7 +9,7 @@ title: On Validate
## 説明
-This event is triggered when the record data entry has been validated, for example after an `accept` [standard action](FormObjects/properties_Action.md#standard-action).
+このイベントは、例えば `accept` [標準アクションの後](FormObjects/properties_Action.md#標準アクション) など、レコードデータの入力が受け入れられたときにトリガーされます。
### サブフォーム
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Extensions/develop-components.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Extensions/develop-components.md
index 4e9b283e0abe56..5fd3ec876a1035 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Extensions/develop-components.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Extensions/develop-components.md
@@ -245,16 +245,16 @@ $rect:=cs.eGeometry._Rectangle.new(10;20)
## 変数の渡し方
-Variables are not shared between components and host projects. ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
+変数はコンポーネントとホストプロジェクト間では共有されません。 ホストプロジェクトからコンポーネントの変数を編集、またはその逆をおこなう唯一の方法はポインターを使用することです。
配列を使用した例:
```4d
-//In the host project:
+//ホストプロジェクト内
ARRAY INTEGER(MyArray;10)
AMethod(->MyArray)
-//In the component, the AMethod project method contains:
+//コンポーネント内、AMethod プロジェクトメソッドには以下の記述があります:
#DECLARE($ptr : Pointer)
APPEND TO ARRAY($ptr->;2)
```
@@ -274,11 +274,11 @@ $p:=component_method2(...)
ポインターを使用しない場合でも、コンポーネント側からホストデータベースの (変数そのものではなく) 変数の値にアクセスすること自体は可能ですし、その逆も可能です:
```4d
-//In the host database
+//ホストデータベース内
var $input_t : Text
$input_t:="DoSomething"
component_method($input_t)
-// component_method gets "DoSomething" in parameter (but not the $input_t variable)
+// component_method は($input_t 変数ではなく) "DoSomething" を引数として受け取ります
```
ホストプロジェクトとコンポーネント間でポインターを使用して通信をおこなうには、以下の点を考慮する必要があります:
@@ -292,7 +292,7 @@ component_method($input_t)
- コンポーネントI が定義する変数 `myIvar` があるとき、コンポーネントC はポインター `->myIvar` を使用しても変数の値にアクセスすることはできません。 このシンタックスは実行エラーを起こします。
-- The comparison of pointers using the [`RESOLVE POINTER`](../commands/resolve-pointer) command is not recommended with components since the principle of partitioning variables allows the coexistence of variables having the same name but with radically different contents in a component and the host project (or another component). 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
+- [`RESOLVE POINTER`](../commands/resolve-pointer) コマンドを使用したポインターの比較はお勧めできません。変数の分離の原則により、ホストプロジェクトとコンポーネント (あるいは他のコンポーネント) で同じ名前の変数が存在することができますが、根本的にそれらは異なる内容を持ちます。 両コンテキストで、変数のタイプが違うことさえありえます。 ポインター `myptr1` と `myptr2` がそれぞれ変数を指すとき、以下の比較は正しくない結果となるかもしれません:
```4d
RESOLVE POINTER(myptr1;vVarName1;vtablenum1;vfieldnum1)
@@ -325,7 +325,7 @@ methCreateRec(->[PEOPLE];->[PEOPLE]Name;"Julie Andrews")
コンポーネント内の `methCreateRec` メソッドのコード:
```4d
-#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //Pointer on a table in host project
+#DECLARE($tablepointer : Pointer; $fieldpointer : Pointer; $value : Text) //ホストプロジェクト内のテーブルへのポインター
CREATE RECORD($tablepointer->)
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/formEditor.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/formEditor.md
index 9bf14e03b6ad74..2e96628c8a2c8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/formEditor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/formEditor.md
@@ -148,7 +148,7 @@ title: フォームエディター
1. ツールバーの矢印ツールをクリックします。

-
When you move the pointer into the form area, it becomes a standard arrow-shaped pointer.
+
マウスカーソルをフォームエリアに移動させると、カーソルは標準の矢印の形をしたポインターに変わります。
2. 選択したいオブジェクトをクリックします。 サイズ変更ハンドルが表示され、オブジェクトが選択されたことを表します。

@@ -156,7 +156,6 @@ title: フォームエディター
1. プロパティリストの一番上にあるオブジェクトリストドロップダウンリストからオブジェクト名を選択します。 この方法では、他のオブジェクトの下に隠れているオブジェクトや、カレントウィンドウの表示領域外に置かれているオブジェクトを選択することができます。
オブジェクトの選択を解除するには、オブジェクト境界の外側をクリックするか、またはオブジェクト上で **Shift+クリック** します。
- > "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックして選択することもできます。
> "デザインモードを検索" の結果ウィンドウでオブジェクトをダブルクリックして選択することもできます。
@@ -353,7 +352,7 @@ title: フォームエディター
:::note
-In binary databases, use **Ctrl+Click / Command+Click** to perform the same action.
+バイナリーデータベースにおいては、同じアクションを実行するためには **Ctrl+クリック / Command+クリック** を使用してください。
:::
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
index 810beed2ab330c..5ced8fbcb3e9a5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
@@ -96,81 +96,6 @@ title: Forms
マルチページフォームには、1つの背景ページと複数の表示ページが存在します。 背景ページ上に置かれたオブジェクトはすべての表示ページに現れますが、それらのオブジェクトの選択や編集は背景ページでのみ可能です。 複数ページフォームでは、ボタンパレットを背景ページに置くべきです。 また、ページ移動ツールオブジェクトを背景ページに配置し、ユーザーに提供する必要があります。
-## Fluent UI rendering (Developer Preview)
-
-On Windows, 4D supports **Fluent UI** form rendering, Microsoft's modern graphical user interface design, based upon **WinUI 3** technology. **WinUI 3** is the foundation of the Windows App SDK and represents the upcoming Windows graphical interfaces.
-
-Fluent UI rendering offers modern and attractive controls, support of dark/light system themes, smoother rendering optimized for high-resolution displays, and consistent user experience aligned with recent Microsoft applications.
-
-| ライトテーマ | ダークテーマ |
-| --------------------------------------- | -------------------------------------------- |
-|  |  |
-
-:::caution デベロッパー・プレビュー
-
-Fluent UI support is currently in the Developer Preview phase. 本番環境で使用すべきではありません。
-
-:::
-
-:::info 利用可能性
-
-This feature can be used **in 4D projects on Windows**. It is not available on macOS or in binary 4D databases on Windows.
-
-:::
-
-:::tip 関連したblog 記事
-
-[Modernize your 4D interfaces with Fluent UI](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui)
-
-:::
-
-### 要件
-
-The Fluent UI rendering requires that the [**Windows App SDK version 1.7.3**](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/downloads) be installed. You need to install this SDK on any Windows machine displaying your forms.
-
-If the Windows App SDK is not properly installed, 4D will render all your forms in classic mode with no error.
-
-### Enabling the Fluent UI rendering
-
-You can enable the Fluent UI rendering mode at the application level or at the form level. Form setting has priority over application setting.
-
-#### Application setting
-
-Check the **Use Fluent UI on Windows** option in the "Interface" page of the Settings dialog box.
-
-
-
-In this case, the Fluent UI rendering mode will be used by default on Windows for all forms.
-
-#### Form setting
-
-Each form can define its own rendering via the **Widget appearance** property. 次のオプションから選択することができます:
-
-- **Inherited**: inherits the global application setting (default),
-- **Classic**: uses the classic Windows style,
-- **Fluent UI**: enables the modern rendering based on Fluent UI.
- 
-
-The corresponding [JSON form property](./properties_JSONref.md) is `fluentUI` with value undefined (i.e. inherited, default value), "true" or "false".
-
-### Specific behaviors
-
-When using 4D forms with Fluent UI rendering, you need to pay attention to the following points:
-
-- The new `FORM Windows theme` command returns the actual display theme of the current form. Possible values: "Classic" or "FluentUI". If there is no current form or the command is called on macOS, and empty string is returned.
-- If [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) is called in the context of a form, the information returned relates to the current appearance of the form (Classic or FluentUI). If the command is called outside the context of a form, the information returned relates to the [global project settings](#application-setting).
-- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) with `Underline` *itemStyle* parameter is not supported (ignored) for pop up menus.
-- [Stepper](../FormObjects/stepper.md) form object does not support [double-click event](../Events/onDoubleClicked.md).
-- [Circle buttons](../FormObjects/button_overview.md#circle) are supported (similar as macOS).
-- The [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) commands are not supported in Web areas with system rendering engine.
-- A focus ring can be added to picture and text [inputs](../FormObjects/input_overview.md).
-
-:::info Limitations
-
-This **Developer preview** includes some limitations, which are [listed in the related blog post](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui).
-
-:::
-
## 継承フォーム
4D では "継承フォーム" を使用することができます。これはつまり、*フォームA* の全オブジェクトが *フォームB* で使用可能であるということです。 この場合、*フォームB* は *フォームA* からオブジェクトを "継承" します。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/listbox_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/listbox_overview.md
index efd8bdd7db642b..def25d39f3b183 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/listbox_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/listbox_overview.md
@@ -72,7 +72,7 @@ title: リストボックス
> 配列タイプのリストボックスは、特別なメカニズムをもつ [階層モード](listbox_overview.md#階層リストボックス) で表示することができます。
配列タイプのリストボックスでは、入力あるいは表示される値は 4Dランゲージで制御します。 列に [選択リスト](properties_DataSource.md#選択リスト) を割り当てて、データ入力を制御することもできます。
-The values of columns are managed using high-level List box commands (such as [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) or `LISTBOX DELETE ROWS`) as well as array manipulation commands. たとえば、列の内容を初期化するには、以下の命令を使用できます:
+リストボックスのハイレベルコマンド ([`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) や `LISTBOX DELETE ROWS` 等) や配列操作コマンドを使用して、列の値を管理します。 たとえば、列の内容を初期化するには、以下の命令を使用できます:
```4d
ARRAY TEXT(varCol;size)
@@ -195,7 +195,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> リストボックスの列、ヘッダーおよびフッターにもそれぞれ固有のプロパティがあります。
-### Supported Form Events {#supported-form-events}
+### サポートされるフォームイベント {#supported-form-events}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -232,7 +232,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
| On Scroll | [horizontalScroll](#追加プロパティ)[verticalScroll](#追加プロパティ) | |
| On Unload | | |
-#### Additional Properties {additional-properties}
+#### 追加プロパティ {additional-properties}
リストボックスやリストボックス列オブジェクトにて発生するフォームイベントは、次の追加プロパティを返すことがあります:
@@ -266,11 +266,11 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
> 配列型リストボックスのカラムについては、[式タイプ](properties_Object.md#式の型-式タイプ)
> (テキスト、数値、整数、ブール、ピクチャー、時間、日付、あるいはオブジェクト) を定義することができます。
-### Column Specific Properties {#column-specific-properties}
+### カラム特有のプロパティ {#column-specific-properties}
-[Alpha Format](properties_Display.md#alpha-format) - [Alternate Background Color](properties_BackgroundAndBorder.md#alternate-background-color) - [Automatic Row Height](properties_CoordinatesAndSizing.md#automatic-row-height) - [Background Color](properties_BackgroundAndBorder.md#background-color--fill-color) - [Background Color Expression](properties_BackgroundAndBorder.md#background-color-expression) - [Bold](properties_Text.md#bold) - [Choice List](properties_DataSource.md#choice-list) - [Class](properties_Object.md#css-class) - [Context Menu](properties_Entry.md#context-menu) - [Data Type (selection and collection list box column)](properties_DataSource.md#data-type-list) - [Date Format](properties_Display.md#date-format) - [Default Values](properties_DataSource.md#default-list-of-values) - [Display Type](properties_Display.md#display-type) - [Enterable](properties_Entry.md#enterable) - [Entry Filter](properties_Entry.md#entry-filter) - [Excluded List](properties_RangeOfValues.md#excluded-list) - [Expression](properties_DataSource.md#expression) - [Expression Type (array list box column)](properties_Object.md#expression-type) - [Font](properties_Text.md#font) - [Font Color](properties_Text.md#font-color) - [Horizontal Alignment](properties_Text.md#horizontal-alignment) - [Horizontal Padding](properties_CoordinatesAndSizing.md#horizontal-padding) - [Italic](properties_Text.md#italic) - [Invisible](properties_Display.md#visibility) - [Maximum Width](properties_CoordinatesAndSizing.md#maximum-width) - [Method](properties_Action.md#method) - [Minimum Width](properties_CoordinatesAndSizing.md#minimum-width) - [Multi-style](properties_Text.md#multi-style) - [Number Format](properties_Display.md#number-format) - [Object Name](properties_Object.md#object-name) - [Picture Format](properties_Display.md#picture-format) - [Resizable](properties_ResizingOptions.md#resizable) - [Required List](properties_RangeOfValues.md#required-list) - [Row Background Color Array](properties_BackgroundAndBorder.md#row-background-color-array) - [Row Font Color Array](properties_Text.md#row-font-color-array) - [Row Style Array](properties_Text.md#row-style-array) - [Save as](properties_DataSource.md#save-as) - [Style Expression](properties_Text.md#style-expression) - [Text when False/Text when True](properties_Display.md#text-when-falsetext-when-true) - [Time Format](properties_Display.md#time-format) - [Truncate with ellipsis](properties_Display.md#truncate-with-ellipsis) - [Underline](properties_Text.md#underline) - [Variable or Expression](properties_Object.md#variable-or-expression) - [Vertical Alignment](properties_Text.md#vertical-alignment) - [Vertical Padding](properties_CoordinatesAndSizing.md#vertical-padding) - [Width](properties_CoordinatesAndSizing.md#width) - [Wordwrap](properties_Display.md#wordwrap)
+[オブジェクト名](properties_Object.md#オブジェクト名) - [変数あるいは式](properties_Object.md#変数あるいは式) - [式の型](properties_Object.md#式の型式タイプ) - [CSSクラス](properties_Object.md#cssクラス) - [選択リスト](properties_DataSource.md#選択リスト-静的リスト) - [式](properties_DataSource.md#式) - [幅](properties_CoordinatesAndSizing.md#幅) - [入力可](properties_Entry.md#入力可) - [フォーカス可](properties_Entry.md#フォーカス可) - [コンテキストメニュー](properties_Entry.md#コンテキストメニュー) - [デフォルト値](properties_DataSource.md#デフォルト値) - [選択リスト](properties_DataSource.md#選択リスト) - [式](properties_DataSource.md#式) - [データタイプ (リスト)](properties_DataSource.md#データタイプ-リスト) - [関連付け](properties_DataSource.md#関連付け) - [自動行高](properties_CoordinatesAndSizing.md#自動行高) - [最小幅](properties_CoordinatesAndSizing.md#最小幅) - [最大幅](properties_CoordinatesAndSizing.md#最大幅) - [横方向パディング](properties_CoordinatesAndSizing.md#横方向パディング) - [縦方向パディング](properties_CoordinatesAndSizing.md#縦方向パディング) - [サイズ変更可](properties_ResizingOptions.md#サイズ変更可) - [指定リスト](properties_RangeOfValues.md#指定リスト) - [除外リスト](properties_RangeOfValues.md#除外リスト) - [表示タイプ](properties_Display.md#d表示タイプ) - [文字フォ-マット](properties_Display.md#文字フォ-マット) - [日付フォーマット](properties_Display.md#日付フォーマット) - [時間フォーマット](properties_Display.md#時間フォーマット) - [数値フォーマット](properties_Display.md#数値フォーマット) - [テキスト (True時)/テキスト (False時)](properties_Display.md#テキスト-true時-テキスト-false時) - [ピクチャーフォーマット](properties_Display.md#ピクチャーフォーマット) - [非表示](properties_Display.md#表示状態) - [ワードラップ](properties_Display.md#ワードラップ) - [エリプシスを使用して省略](properties_Display.md#エリプシスを使用して省略) - [背景色](properties_BackgroundAndBorder.md#背景色-塗りカラー) - [交互に使用する背景色](properties_BackgroundAndBorder.md#交互に使用する背景色) - [背景色式](properties_BackgroundAndBorder.md#背景色式) - [行背景色配列](properties_BackgroundAndBorder.md#行背景色配列) - [フォント](properties_Text.md#フォント) - [太字](properties_Text.md#太字) - [イタリック](properties_Text.md#イタリック) - [下線](properties_Text.md#下線) - [行スタイル配列](properties_Text.md#行スタイル配列) - [スタイル式](properties_Text.md#スタイル式) - [フォントカラー](properties_Text.md#フォントカラー) - [行フォントカラー配列](properties_Text.md#行フォントカラー配列) - [横揃え](properties_Text.md#横揃え) - [縦揃え](properties_Text.md#縦揃え) - [マルチスタイル](properties_Text.md#マルチスタイル) - [メソッド](properties_Action.md#メソッド)
-### Supported Form Events {#supported-form-events-1}
+### サポートされるフォームイベント {#supported-form-events-1}
| フォームイベント | 返される追加のプロパティ(主なプロパティについては[Form event](../commands/form-event.md) を参照してください) | コメント |
| -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------- |
@@ -313,7 +313,7 @@ myCol:=myCol.push("new value") // リストボックスに new value を表示
ランタイムにおいてヘッダーで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a header, it is applied to all headers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
+ヘッダーに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのヘッダーが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"header3";False)` という命令の場合、指定したヘッダーだけではなく、*header3* が属するリストボックスの全ヘッダーを非表示にします。
### ヘッダー特有のプロパティ
@@ -349,7 +349,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
ランタイムにおいてフッターで発生したイベントは、その列のオブジェクトメソッド が受け取ります。
-When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used with a footer, it is applied to all footers, regardless of the individual element set by the command. たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
+フッターに [`OBJECT SET VISIBLE`](../commands/object-set-visible) コマンドを使用すると、このコマンドに渡した引数に関わらず、そのリストボックスのすべてのフッターが対象になります。 たとえば、`OBJECT SET VISIBLE(*;"footer3";False)` という命令の場合、指定したフッターだけではなく、*footer3* が属するリストボックスの全フッターを非表示にします。
### フッター特有のプロパティ
@@ -461,7 +461,7 @@ When the [`OBJECT SET VISIBLE`](../commands/object-set-visible) command is used
End if
```
-> The [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command scrolls the list box rows so that the first selected row or a specified row is displayed.
+> [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) コマンドは、最初に選択された行または指定された行を表示するようにリストボックスをスクロールします。
### 選択行の見た目のカスタマイズ
@@ -693,14 +693,14 @@ End if
### 詳細モード
-このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command is used to control the printing of the object.
+このモードでは、リストボックスの印刷は `Print object` コマンドを使用してプログラムにより実行されます (プロジェクトフォームとテーブルフォームがサポートされています)。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドはオブジェクトの印刷をコントロールするために使用されるコマンドです。
このモードでは:
-- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 The size of the object actually printed can be obtained via the [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command.
+- オブジェクトの高さよりも印刷する行数が少ない場合、リストボックスオブジェクトの高さは自動で減少させられます ("空白" 行は印刷されません)。 他方、オブジェクトの内容に基づき高さが自動で増大することはありません。 実際に印刷されたオブジェクトのサイズは [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用することで取得することができます。
- リストボックスオブジェクトは "そのまま" 印刷されます。言い換えれば、ヘッダーやグリッド線の表示、表示/非表示行など、現在の表示設定が考慮されます。
- These parameters also include the first row to be printed: if you call the [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) command before launching the printing, the first row printed in the list box will be the one designated by the command.
-- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 The [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) command can be used to check the status of the printing while it is underway.
+ これらの設定には印刷される最初の行も含みます。印刷を実行する前に [`OBJECT SET SCROLL POSITION`](../commands/object-set-scroll-position) を呼び出すと、リストボックスに印刷される最初の行はコマンドで指定した行になります。
+- 自動メカニズムにより、表示可能な行以上の行数を含むリストボックスの印刷が容易になります。連続して `Print object` を呼び出し、呼び出し毎に別の行のまとまりを印刷することができます。 [`LISTBOX GET PRINT INFORMATION`](../commands/listbox-get-print-information) コマンドを使用して印刷の状態を進行中にチェックすることができます。
## 階層リストボックス
@@ -716,7 +716,7 @@ End if
- フォームエディターのプロパティリストを使用して階層要素を手作業で設定する (または JSON フォームを編集する)。
- フォームエディターのリストボックス管理メニューを使用して階層を生成する。
-- Use the [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) and [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) commands.
+- [`LISTBOX SET HIERARCHY`](../commands-legacy/listbox-set-hierarchy.md) と [`LISTBOX GET HIERARCHY`](../commands-legacy/listbox-get-hierarchy.md) コマンドを使用する。
#### "階層リストボックス" プロパティによる階層化
@@ -839,7 +839,7 @@ Variable 2 も常に表示され、入力できます。 これは二番目の
> 親が折りたたまれているために行が非表示になっていると、それらは選択から除外されます。 (直接あるいはスクロールによって) 表示されている行のみを選択できます。 言い換えれば、行を選択かつ隠された状態にすることはできません。
-As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command will return the same values for a hierarchical list box and a non-hierarchical list box. This means that in both of the examples below, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) will return the same position: (3;2).
+選択と同様に、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは階層リストボックスと非階層リストボックスにおいて同じ値を返します。 つまり以下の両方の例題で、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は同じ位置 (3;2) を返します。
*非階層表示:*

@@ -851,11 +851,11 @@ As with selections, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-ce
#### ブレーク行の管理
-If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns the first occurrence of the row in the corresponding array. 以下のケースで:
+ユーザーがブレーク行を選択すると、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は対応する配列の最初のオカレンスを返します。 以下のケースで:

-... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) returns (2;4). To select a break row by programming, you will need to use the [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) command.
+... [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) は (2;4) を返します。 プログラムでブレーク行を選択するには [`LISTBOX SELECT BREAK`](../commands/listbox-select-break) コマンドを使用する必要があります。
ブレーク行はリストボックスのグラフィカルな表示 (スタイルやカラー) を管理する内部的な配列では考慮されません。 しかし、オブジェクトのグラフィックを管理するオブジェクト (フォーム) テーマのコマンドを使用してブレーク行の表示を変更できます。 階層を構成する配列に対して、適切なコマンドを実行します。
@@ -884,19 +884,19 @@ If the user selects a break row, [`LISTBOX GET CELL POSITION`](../commands/listb
`On Expand` や `On Collapse` フォームイベントを使用して階層リストボックスの表示を最適化できます。
-階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 This makes it difficult to build large hierarchical list boxes based on arrays generated from data (through the [`SELECTION TO ARRAY`](../commands/selection-to-array) command), not only because of the display speed but also the memory used.
+階層リストボックスはその配列の内容から構築されます。 そのためこれらの配列すべてがメモリにロードされる必要があります。 大量のデータから ([`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドを使用して) 生成される配列をもとに階層リストボックスを構築するのは、表示速度だけでなくメモリ使用量の観点からも困難が伴います。
-`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 In the context of these events, the [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell where the user clicked in order to expand or collapse a row.
+`On Expand` と `On Collapse` フォームイベントを使用することで、この制限を回避できます。たとえば、ユーザーのアクションに基づいて階層の一部だけを表示したり、必要に応じて配列をロード/アンロードできます。 これらのイベントのコンテキストでは、[`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは、行を展開/折りたたむためにユーザーがクリックしたセルを返します。
この場合、開発者がコードを使用して配列を空にしたり値を埋めたりしなければなりません。 実装する際注意すべき原則は以下のとおりです:
- リストボックスが表示される際、先頭の配列のみ値を埋めます。 しかし 2番目の配列を空の値で生成し、リストボックスに展開/折りたたみアイコンが表示されるようにしなければなりません:

-- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned and lets you build the appropriate hierarchy: you fill the first array with the repeated values and the second with the values sent from the [`SELECTION TO ARRAY`](../commands/selection-to-array) command and you insert as many rows as needed in the list box using the [`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) command.
+- ユーザーが展開アイコンをクリックすると `On Expand` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドはクリックされたセルを返すので、適切な階層を構築します: 先頭の配列に繰り返しの値を設定し、2番目の配列には [`SELECTION TO ARRAY`](../commands/selection-to-array) コマンドから得られる値を設定します。そして[`LISTBOX INSERT ROWS`](../commands/listbox-insert-rows) コマンドを使用して必要なだけ行を挿入します。

-- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 The [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) command returns the cell concerned: you remove as many rows as needed from the list box using the [`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) command.
+- ユーザーが折りたたみアイコンをクリックすると `On Collapse` イベントが生成されます。 [`LISTBOX GET CELL POSITION`](../commands/listbox-get-cell-position) コマンドは該当するセルを返します。そして[`LISTBOX DELETE ROWS`](../commands/listbox-delete-rows) コマンドを使用して必要なだけ行をリストボックスから削除することができます。
## オブジェクト配列の使用
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/pictureButton_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/pictureButton_overview.md
index 6b5575d2aab544..07189a42b6d244 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/pictureButton_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/pictureButton_overview.md
@@ -54,7 +54,7 @@ title: ピクチャーボタン
- [ロールオーバー効果](properties_Animation.md#ロールオーバー効果)
- [マウス押下中は自動更新](properties_Animation.md#マウス押下中は自動更新)
- [無効時に最終フレームを使用](properties_Animation.md#無効時に最終フレームを使用)
-- [Switch every x seconds](./properties_Animation.md#switch-every-x-seconds)
+- [アニメーション間隔 (秒)](./properties_Animation.md#アニメーション間隔-秒)
> ピクチャーボタンに [関連付けた変数](properties_Object.md#変数あるいは式) は、ピクチャーのサムネールテーブルで現在表示されているピクチャーのインデックス番号を返します。 このテーブル内のピクチャー番号は 0 から始まります。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
index 140dd6f5bccbe0..21758c7656c9c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
@@ -182,12 +182,21 @@ End if
> `GOTO OBJECT` はサブフォームから実行されても、親フォーム内にて目的のオブジェクトを検索します。
-#### CALL SUBFORM CONTAINER コマンド
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
`CALL SUBFORM CONTAINER` コマンドを使用すると、サブフォームインスタンスからサブフォームコンテナーオブジェクトに [イベント](../Events/overview.md) を送信できます。 イベントはコンテナーオブジェクトメソッドで受信されます。 (クリックやドラッグ&ドロップなど) サブフォームにより検知されたすべてのイベントの発生元となりえます。
送信するイベントコードに制限はありません (たとえば 20000 や -100 など)。 既存のイベントに対応するコード (たとえば `On Validate` に対応する 3) を使用することも、カスタムコードを使用することもできます。 前者のケースでは、サブフォームコンテナーのプロパティリストでチェックを入れたイベントのみを使用できます。 後者の場合、使用するコードは既存のフォームイベントに対応してはいけません。 将来の 4Dバージョンで番号が衝突しないようにするために、負数の使用が推奨されます。
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
詳細は `CALL SUBFORM CONTAINER` コマンドの説明を参照してください。
#### EXECUTE METHOD IN SUBFORM コマンド
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Notes/updates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Notes/updates.md
index b5b6604193089a..2fe7def7cbd574 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Notes/updates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Notes/updates.md
@@ -18,9 +18,8 @@ title: リリースノート
- 新しい[データに対するORDA イベント](../ORDA/orda-events.md): validateSave、saving、afterSave、validateDrop、dropping、afterDrop
- Support of the new [`restrictedByDefault` property](../ORDA/privileges.md#restriction-modes) in the `roles.json` file to block access by default to all resources without explicit permission.
- [`HTTPRequest`](../API/HTTPRequestClass.md#4dhttprequestnew) および [`HTTPAgent`](../API/HTTPAgentClass.md#4dhttpagentnew) クラスにおいて、ローカルの証明書フォルダの代わりにWindows 証明書ストアからの証明書を使用することを許可する新しいオプション。
-- クライアント/サーバー:
- - Web エリア内でQodly ページを表示し、[リモートクライアントセッションを共有](../Desktop/clientServer.md#web-エリア内のqodly-ページでセッションを共有する)することができるようになりました。
- - [QUIC ネットワークレイヤー](../settings/client-server.md#ネットワークレイヤー) はネットワークインターフェースの変更(例えばラップトップを持って良好するような場合)を透過的に管理できるように改善されました。 [こちらの blog 記事](https://blog.4d.com/work-and-move-with-quic-and-network-switching) をご覧ください。
+- [Sessions API](../API/SessionClass.md) now supports all [desktop sessions](../Desktop/sessions.md) and you can [share a desktop session with a web access](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), facilitating the development of applications using Qodly pages in Web areas.
+- [QUIC ネットワークレイヤー](../settings/client-server.md#ネットワークレイヤー) はネットワークインターフェースの変更(例えばラップトップを持って良好するような場合)を透過的に管理できるように改善されました。 [こちらの blog 記事](https://blog.4d.com/work-and-move-with-quic-and-network-switching) をご覧ください。
- プロジェクトを閉じたり再起動したりすることなく、4D エクスプローラーから[ホストプロジェクトから直接コンポーネントを作成](../Extensions/develop-components.md#コンポーネントの作成)したり、あるいは[専用のタブからコンポーネントのコードを編集する](../Extensions/develop-components.md#全てのコンポーネントコードを編集) ことができるようになりました。
- 4D プロダクトのアクティベーションステップが、簡略化されて[サインイン](../GettingStarted/Installation.md#sign-in) 中に自動化されました。
- 4D AIKit コンポーネント: [特定のツールを自動的に呼び出す](../aikit/Classes/OpenAIChatHelper.md#registertool) ことと [レスポンスフォーマットを指定する](../aikit/Classes/OpenAIChatCompletionsParameters.md#response-format) 新機能。
@@ -30,10 +29,6 @@ title: リリースノート
- [**修正リスト**](https://bugs.4d.fr/fixedbugslist?version=21): 4D 21 で修正されたバグのリストです(日本語版は [こちら](https://4d-jp.github.io/2025/279/release-note-version-21/))。
- [**4D Qodly Pro Release notes**](https://developer.4d.com/qodly/4DQodlyPro/release-notes): what's new in Qodly Studio.
-#### デベロッパー・プレビュー
-
-[4D フォームにおける**Fluent UI** レンダリング](../FormEditor/forms.md#fluent-ui-rendering-developer-preview) はベータテストプログラム期間中、デベロッパープレビューとして提供されています。
-
#### 動作の変更
:::caution インデックスの再構築
@@ -43,7 +38,9 @@ title: リリースノート
:::
- Web サービス(SOAP): [スケーラブルセッション](../WebServer/sessions.md#webセッションの有効化) が有効化されている場合、コンパイルモードにおいてはWeb サービスは[**プリエンプティブプロセス**](../Develop/preemptive.md) で実行されます。 Make sure that your SOAP code is thread-safe and that the session in which it runs has appropriate [privileges](../API/SessionClass.md#setprivileges).
-- Web サーバー: 廃止予定だった`4DSYNC/` および `4DCGI/` URL のサポートが削除されました。 これらのURL に関しては今後は何も特殊な処理は行われません。
+- Web server:
+ - the support of deprecated `4DSYNC/` and `4DCGI/` URLs is removed. No specific processing is done on these URLs anymore,
+ - web processes are no longer recycled when [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
- Web ユーザーセッションは今後[`Process activity`](../commands/process-activity.md) コマンドで返されるようになります。
- PHP commands are now [deprecated](https://blog.4d.com/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter/) and should no longer be used in your developments.
- [`HIGHLIGHT TEXT`](../commands/highlight-text) コマンドは今後サブフォームのコンテキストでサポートされるようになりました。
@@ -295,7 +292,7 @@ title: リリースノート
| ライブラリ | 現在のバージョン | 更新された 4D バージョン | 説明 |
| --------- | -------------------------------------- | -------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | fa47b1d | **21** | QUIC に使用 |
+| BoringSSL | 9b86817 | **21** | QUIC に使用 |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 1.7.2 | 20 | 4D フォームと 4D Write Pro でスペルチェックに使用されます。 |
| ICU | 77.1 | **21** | このアップグレードにより、英数字とテキスト、オブジェクトのインデックスが自動的に再構築されます。 |
@@ -305,7 +302,7 @@ title: リリースノート
| Libuv | 1.51.0 | **21** | QUIC に使用 |
| libZip | 1.11.4 | **21** | Zip クラス、4D Write Pro、svg および serverNet コンポーネントによって使用。 |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.16.0 | **21** | QUIC に使用 |
+| ngtcp2 | 1.18.0 | **21** | QUIC に使用 |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | [`WP Export document`](../WritePro/commands/wp-export-document.md) および [`WP Export variable`](../WritePro/commands/wp-export-variable.md) において使用されます |
| SpreadJS | 17.1.0 | 20 R7 | 新機能の概要については、[このブログ記事](https://blog.4d.com/ja/4d-view-pro-whats-new-in-4d-20-r7/) を参照ください。 |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
index c61a659924f96b..c062b04b88d9d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/ORDA/privileges.md
@@ -245,7 +245,7 @@ In Qodly Studio for 4D, the login mode can be set using the [**Force login** opt
:::
-## Restriction Modes
+## 制限モード
The `restrictedByDefault` property configures how every [resource](#resources) are accessed when [no specific permission is defined for it](#permission):
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/Project/compiler.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/Project/compiler.md
index 4dc3ce5774dd74..1821c8d41a62d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/Project/compiler.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/Project/compiler.md
@@ -41,9 +41,9 @@ title: コンパイル
## コンパイル済み実行
-プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
+プロジェクトがコンパイルされると、[インタープリターモードとコンパイル済みモード](Concepts/interpreted.md) を切り替えて実行できるようになります。この際、4Dアプリケーションを終了する必要はありません (インタープリターコードを削除している場合は除きます)。 切り替えには、**実行** メニューの **インタープリター再起動** や **コンパイル済み再起動** コマンドを使用します。 [プロジェクトを開くダイアログボックス](GettingStarted/creating.md#オプション) でも、起動時にインタープリターモードとコンパイル済みモードから選択することができます。
-モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
+モードを変更すると、4D は現在のモードを閉じ、新しいモードを開きます。 つまり、アプリケーションが閉じられ、再び開かれます。 モードを切り替えるたびに、4D は 2つのデータベースメソッド (定義されていれば) を次の順番に実行します: `On Exit` -> `On Startup`。
インタープリターモードでプロジェクトを編集したら、それをコンパイルコードに反映させるには再コンパイルしなければなりません。
@@ -67,7 +67,7 @@ title: コンパイル
### コンパイルコードを削除
-**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 **コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
+**コンパイルコードを削除** ボタンを使用すると、プロジェクトのコンパイル済みコードが削除されます。 ボタンをクリックすると、[コンパイル時に生成されたコード](#クラシックコンパイラー) がすべて削除されます。**実行** メニューの **コンパイル済み再起動** コマンドが無効になり、開始時の "開く: コンパイルモード済みデータベース" オプションはグレー表示されます。
### 警告を表示/隠す
@@ -83,7 +83,7 @@ title: コンパイル
## コンパイラー設定
-ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。
+ストラクチャー設定ダイアログボックスの "コンパイラー" タブでは、プロジェクトのコンパイルに関連するパラメーターを設定できます。 [コンパイラーウィンドウ](#コンパイラーウィンドウ) の **コンパイラー設定** ボタンをクリックすると、コンパイラーページを直接開くことができます。

@@ -136,7 +136,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
変換されたプロジェクトでは、[直接型指定を有効化](#直接型指定の有効化) し、それに準拠した宣言コードを書くことが推奨されます:
- [`var` キーワードを使って](../Concepts/variables.md#変数の宣言) すべての変数を明示的に宣言する。
-- declare explicitely all parameters in function prototypes (i.e. using the `Function` or `Class constructor` keywords) or with `#DECLARE` keywords in methods (see [Declaring parameters](../Concepts/parameters.md#declaring-parameters).
+- 関数のプロトタイプで `Function` や `Class constructor` キーワードを使って、またはメソッド内で `#DECLARE` キーワードを使って、すべてのパラメーターを明示的に宣言する ([パラメーターの宣言](../Concepts/parameters.md#パラメーターの宣言)を参照)。
#### 直接型指定の有効化
@@ -146,21 +146,21 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
:::
-直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
+直接型指定モードを有効化するには、**コンパイルパス** メニューで **自動変数定義は行わない (直接型指定)** オプションを選択します。 このオプションが選択されると、他の互換性オプションは使用できなくなり、表示されなくなります。
-柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
+柔軟性と効率性を提供するため、このオプションを使用することが推奨されます。 直接型指定の概念は、すべての要素がコード内の定義されている場所で直接宣言されることを前提としています。 すべての変数が [`var` シンタックス](../Concepts/variables.md#変数の宣言) で宣言されていることと、メソッドや関数のパラメーターが [プロトタイプで](../Concepts/parameters.md) 宣言されていることを確認する必要があります (不足している、または無効な宣言を検出するのに [シンタックスチェック](#シンタックスチェック) 機能が役立ちます)。
## 警告
警告は、コンパイラーがシンタックスチェックをおこなう際に生成するとメッセージです。 これらのメッセージの目的は、実行時エラーを引き起こす可能性のあるステートメントに注意を向けることです。 警告によりコンパイルが中断されることはありません。
-状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
+状況や使用されるプログラミングスタイルによって、警告の重要性は変化します。 コンパイラーダイアログおよびコードエディター (4Dコードエディターまたは VS Code) にて、警告を有効/無効にすることができます。[警告タブ](#警告タブ) を使えばグローバルに、または [`//%W`](#ローカルに警告を無効化-有効化する) を使用することでローカルに設定できます。
### 警告タブ

-このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
+このタブでは、どの警告をグローバルに表示するかを定義できます。 警告のリストはコード順で並べられ、ローカライズされたラベルを確認することができます。
リストを絞り込むには、**コードとラベルを検索** テキストボックスを使用して、警告ラベルやコードを検索します。
@@ -221,7 +221,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### Symbolファイル
-コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています: このドキュメントはいくつかの部分に分かれています:
+コンパイラー設定の [**Symbolファイルを生成**](#symbolファイルを生成) オプションを選択してコンパイルすると、プロジェクトの [Logs フォルダー](../Project/architecture.md#logs) 内に `ProjectName_symbols.txt` という名称の Symbolファイルが作成されます。 このドキュメントはいくつかの部分に分かれています:
#### プロセスおよびインタープロセス変数のリスト
@@ -268,7 +268,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
### エラーファイル
-コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
+コンパイラー設定の [**エラーファイルを生成**](#エラーファイルを生成) オプションを使用して、コンパイル時にエラーファイルを生成するかどうかを選択することができます。 エラーファイルは、プロジェクトの [Logsフォルダー](../Project/architecture.md#logs)内に `ProjectName_errors.txt` という名前で作成されます。
[コンパイラーウインドウ](#コンパイラーウインドウ) からエラーに直接アクセスすることができますが、マシンからマシンへ送信できるエラーファイルがあると便利な場合があります。 エラーファイルは、その内容を自動的に解析しやすいように XMLフォーマットで生成されます。 これを利用して、エラー表示用に独自のインターフェースを作成することもできます。
@@ -288,7 +288,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
- **特定の行に関連するエラー**: これらのエラーは、コンテキスト (エラーが見つかった行) 内に説明とともに表示されます。 コンパイラーは、データ型やシンタックスに関する矛盾を含む式で見つけると、このタイプのエラーをレポートします。 コンパイラーウィンドウでは、検出された各エラーをダブルクリックすると、該当するメソッドが直接 4Dのコードエディターで開かれ、エラーを含む行が反転表示されます。
-- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです: コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
+- **全般的なエラー**: これらのエラーは、プロジェクトのコンパイルを不可能にします。 コンパイラーが全般的なエラーを生成するケースは、次の 2つです:
- プロセス変数のデータ型が決定できなかった。
- 異なる 2つのオブジェクトが同じ名称である。
@@ -302,7 +302,7 @@ Symbolファイルを生成するのに使用します ([Symbolファイル](#sy
コード内で間違いがないと思われる箇所に対して範囲チェックを適用したくないときもあります。 具体的には、かなりの回数繰り返されるループに関し、旧式のマシン上でコンパイル済みデータベースを実行すると、範囲チェックにより処理速度が著しく低下するおそれがあります。 関連するコードに誤りがなく、システムエラーを引き起こさないことが確実であれば、範囲チェックをローカル上で無効にすることができます。
-これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
+これをおこなうには、範囲チェックから外すコードを特殊なコメントである `//%R-` と `//%R+` で囲みます。 `//%R-` コメントは範囲チェックを無効にし、`//%R+` はそれを再び有効にします:
```4d
// %R- 範囲チェックを無効化
@@ -346,11 +346,11 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
- **macOS マシン**: Apple Silicon用コンパイラーは Apple のマシン上でのみ実行可能です。
- **4D プロジェクトアーキテクチャー**: Apple Silicon用コンパイラーは [プロジェクトアーキテクチャー](architecture.md) を使った 4D開発でのみ利用できます。
-- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
+- **Xcode または Developer Tools**: コンパイルの [2つ目のステップ](#インクリメンタルコンパイルラー) において、プロジェクトを C++ コードからコンパイルするために、Apple Silicon用コンパイラーはオープンソース macOS コンパイラー **Clang** を呼び出します。 *Clang* は Apple ネイティブライブラリを必要とします。これらは **Xcode** または **Developer Tools** パッケージより提供されています。
- Xcode や Developer Tools をマシン上でインストールされた状態で **すでに持っている場合**、それらのバージョンが 4D の要件と合っていることを確認します。
- マシンにインストールされた状態でこれらのツールを **持っていない場合**、Apple Developer の Webサイトからいずれかをダウンロードする必要があります。
-> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
+> インストール手順が簡単なため **Xcode** のインストールを推奨しています。 よりコンパクトな **Developer Tools** をインストールしても問題ありませんが、こちらはインストール手順がやや複雑です。
いずれにせよ、要件が満たされていない場合には、4D の Apple Silicon用コンパイラーが警告を発します。
@@ -358,5 +358,5 @@ Apple Silicon用コンパイラーは *Apple M1* などの Apple Silicon プロ
Apple Silicon用コンパイラーはインクリメンタルコンパイラーです:
-- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。 これには時間がかかる可能性がありますが、 一度きりです。
+- 初めてのコンパイルにおいては、**すべての 4Dメソッド** がコンパイルされます。 これには時間がかかる可能性がありますが、 一度きりです。
- 以降のコンパイルにおいては、**新規または編集されたメソッド** のみが処理され、コンパイル時間を大幅に短縮します。
\ No newline at end of file
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
index 484c64db7f8b34..d3f0dd87ba810e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ title: モニターページ

-こういった場合には通常、[**ライセンスマネージャー**](Admin/licenses.md) をチェックする必要があります。
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## 詳細エリア
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
index 8c11c9b7e09f45..2935e2959605e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
@@ -62,7 +62,7 @@ Webセッションは次のものに使用されます:
:::note
-RESTリクエストのための Webセッションを作成するには、利用可能なライセンスが必要な場合があります。詳細は [こちらのページ](../REST/authUsers.md) を参照ください。
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -70,12 +70,6 @@ RESTリクエストのための Webセッションを作成するには、利用

-:::info
-
-Webプロセスは通常終了せず、効率化のためにプールされリサイクルされます。 プロセスがリクエストの実行を終えると、プールに戻され、次のリクエストに対応できるようになります。 Since a web process can be reused by any session, [process variables](Concepts/variables.md#process-variables) must be cleared by your code at the end of its execution (using [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) for example). このクリア処理は、開かれたファイルへの参照など、プロセスに関連するすべての情報に対して必要です。 これが、セッション関連の情報を保持したい場合には、[Session](API/SessionClass.md) オブジェクトを使用することが **推奨** される理由です。
-
-:::
-
## セッション情報の保存と共有
各 `Session` オブジェクトには、共有オブジェクトである [`.storage`](API/SessionClass.md#storage) プロパティが用意されています。 このプロパティにより、セッションで処理されるすべてのプロセス間で情報を共有することができます。
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
index 09f6b2cda29023..54dd7785a5001e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
@@ -83,176 +83,3 @@ slug: /WritePro/configuring-4d-write-pro-areas
4Dフォームに埋め込まれたエリアについては、プロパティリストを使用してデフォルトのビューモードを設定することができます。この場合、ビューモードは 4D Write Proフォームオブジェクトのプロパティとして保存されます (より詳細な情報については、*ビュープロパティの設定* の章を参照してください)。
-## 標準アクション
-
-4D Write Proエリアのユーザーインターフェースは、多様な**標準アクション**を使用して管理することができます。標準アクションは次のようなものに割り当てることが可能です:
-
-* **メニューバー**あるいは[Dynamic pop up menu](../../commands/dynamic-pop-up-menu) コマンドを通して利用可能なメニューコマンド
-* ポップアップ・ドロップダウンリストや階層ポップアップメニューを通して利用可能なリスト項目
-* ボタン、チェックボックス
-* あるいは[INVOKE ACTION](../../commands/invoke-action) コマンドによって実行
-
-インターフェースオブジェクトに割り当てた場合、標準アクションはコンテキストに応じてオブジェクトの有効化/無効化を管理します。詳細な情報については*標準アクション* の章を参照してください。
-
-4D Write Proエリアでは二種類のアクションが利用可能です:
-
-* 4D Write Pro 特有の、4D Write Proエリアに対してのみ使用可能なアクション
-* フォント、式、スペルチェック、編集アクションを含む、4D Write Proエリアと他の4Dエリアで使用可能な*その他のアクション*(*標準アクション*参照)。
-
-### 4D Write Pro アクション
-
-4D Write Proエリアでは以下の標準アクションが利用可能です。
-
-**注:**
-
-* 自動メニュー/リストを表示するアクションは、メニューコマンド、ポップアップ/ドロップダウンリスト、あるいは階層ポップアップメニューオブジェクトにのみ割り当て可能です(*サブメニュー* 参照)。
-* チェックボックスと3Dチェックボックスはステータスアクション("section/differentFirstPage" あるいは "visibleHorizontalRuler"など)を割り当てて下さい。スリーステートオプションは標準のチェックボックスでのみサポートされます。
-* セクションのアクションステータスは、常にその選択されたセクションの実際のステータスと一致します(属性が親セクションあるいはデフォルト属性から継承される場合にはステータスが継承されます)。選択されたセクションのステータス(セクションに現在適用されているステータス)を反映する必要があるからです。しかしながら標準アクションを使用してセクション属性を変更した場合には、選択されたセクションの属性のみが上書きされます。
-* *サブメニュー*: 引数を渡さず、メニューコマンド、ポップアップ/ドロップダウンリスト、あるいは階層ポップアップメニューに割り当てて使用した場合、これらのアクションは自動サブメニュー/リストを表示します。例えば、"backgroundColor"アクションをメニューコマンドに割り当てた場合、このメニューコマンドをランタイムで選択するとBackground color サブメニュー項目が表示されます。"zoom"アクションを階層ポップアップメニューに割り当てた場合、このメニューには既定のズーム値の一覧が自動的に含まれます。これらのアクションはボタンに対しては割り当てられない点に注意してください。
-* *showDialog*: アクション名に"/showDialog " の文字列を追加することで、アクションに割り当てられた標準のダイアログボックスを表示します。例えば、"paragraph/styleSheet/showDialog"と入力することで新しいスタイルシート名を入力する入力ダイアログを開くことができます。
-
-| アクション名 | シンタックス | 割り当て可能オブジェクト | 詳細 |
-|---|---|---|---|
-| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
-| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
-| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
-| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
-| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
-| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
-| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
-| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
-| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
-| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
-| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
-| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
-| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
-| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
-| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
-| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
-| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
-| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
-| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
-| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
-| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
-| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
-| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
-| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
-| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
-| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
-| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
-| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
-| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
-| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
-| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
-| deleteRows | deleteRows | Table | Deletes all selected rows. |
-| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
-| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
-| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
-| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
-| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
-| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
-| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
-| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
-| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
-| footer | footer | Submenu | Displays the Footer submenu. |
-| footer/remove | footer/remove | Footer | Removes the selected footer. |
-| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
-| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
-| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
-| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
-| header | header | Submenu | Displays the Header submenu. |
-| header/remove | header/remove | Header | Removes the selected header. |
-| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
-| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
-| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
-| image | image | Image, Submenu | Displays image layout submenu. |
-| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
-| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
-| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
-| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
-| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
-| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
-| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
-| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
-| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
-| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
-| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
-| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
-| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
-| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
-| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
-| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
-| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
-| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
-| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
-| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
-| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
-| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
-| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
-| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
-| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
-| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
-| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
-| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
-| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
-| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
-| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
-| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
-| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
-| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
-| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
-| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
-| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
-| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
-| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
-| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
-| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
-| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
-| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
-| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
-| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
-| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
-| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
-| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
-| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
-| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
-| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
-| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
-| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
-| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
-| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
-| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
-| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
-| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
-| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
-| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
-| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
-| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
-| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
-| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
-| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
-| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
-| view | view | Submenu | For menu commands only. Default submenu for view settings. |
-| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
-| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
-| visibleFooters | visibleFooters | Document | Shows/hides footers. |
-| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
-| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
-| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
-| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
-| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
-| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
-| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
-| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
-| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
-
-### その他のアクション
-
-4D フォームで使用可能な他の複数の標準アクションも、4D Write Proエリアで使用することができます:
-
-* *編集アクション*、例えばコピー/ペーストアクションなど
-* *フォント* アクション、例えばfontBold あるいは fontSize など
-* *動的な式* アクション。挿入された式などを管理することができます。
-* *スペルチェック* アクション。
\ No newline at end of file
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
new file mode 100644
index 00000000000000..1d38388f241997
--- /dev/null
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
@@ -0,0 +1,179 @@
+---
+id: standard-actions
+title: 標準アクション
+displayed_sidebar: docs
+slug: /WritePro/standard-actions
+---
+
+
+4D Write Proエリアのユーザーインターフェースは、多様な**標準アクション**を使用して管理することができます。標準アクションは次のようなものに割り当てることが可能です:
+
+* **メニューバー**あるいは[Dynamic pop up menu](../../commands/dynamic-pop-up-menu) コマンドを通して利用可能なメニューコマンド
+* ポップアップ・ドロップダウンリストや階層ポップアップメニューを通して利用可能なリスト項目
+* ボタン、チェックボックス
+* あるいは[INVOKE ACTION](../../commands/invoke-action) コマンドによって実行
+
+インターフェースオブジェクトに割り当てた場合、標準アクションはコンテキストに応じてオブジェクトの有効化/無効化を管理します。詳細な情報については*標準アクション* の章を参照してください。
+
+4D Write Proエリアでは二種類のアクションが利用可能です:
+
+* 4D Write Pro 特有の、4D Write Proエリアに対してのみ使用可能なアクション
+* フォント、式、スペルチェック、編集アクションを含む、4D Write Proエリアと他の4Dエリアで使用可能な*その他のアクション*(*標準アクション*参照)。
+
+### 4D Write Pro アクション
+
+4D Write Proエリアでは以下の標準アクションが利用可能です。
+
+**注:**
+
+* 自動メニュー/リストを表示するアクションは、メニューコマンド、ポップアップ/ドロップダウンリスト、あるいは階層ポップアップメニューオブジェクトにのみ割り当て可能です(*サブメニュー* 参照)。
+* チェックボックスと3Dチェックボックスはステータスアクション("section/differentFirstPage" あるいは "visibleHorizontalRuler"など)を割り当てて下さい。スリーステートオプションは標準のチェックボックスでのみサポートされます。
+* セクションのアクションステータスは、常にその選択されたセクションの実際のステータスと一致します(属性が親セクションあるいはデフォルト属性から継承される場合にはステータスが継承されます)。選択されたセクションのステータス(セクションに現在適用されているステータス)を反映する必要があるからです。しかしながら標準アクションを使用してセクション属性を変更した場合には、選択されたセクションの属性のみが上書きされます。
+* *サブメニュー*: 引数を渡さず、メニューコマンド、ポップアップ/ドロップダウンリスト、あるいは階層ポップアップメニューに割り当てて使用した場合、これらのアクションは自動サブメニュー/リストを表示します。例えば、"backgroundColor"アクションをメニューコマンドに割り当てた場合、このメニューコマンドをランタイムで選択するとBackground color サブメニュー項目が表示されます。"zoom"アクションを階層ポップアップメニューに割り当てた場合、このメニューには既定のズーム値の一覧が自動的に含まれます。これらのアクションはボタンに対しては割り当てられない点に注意してください。
+* *showDialog*: アクション名に"/showDialog " の文字列を追加することで、アクションに割り当てられた標準のダイアログボックスを表示します。例えば、"paragraph/styleSheet/showDialog"と入力することで新しいスタイルシート名を入力する入力ダイアログを開くことができます。
+
+| アクション名 | シンタックス | 割り当て可能オブジェクト | 詳細 |
+|---|---|---|---|
+| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
+| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
+| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
+| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
+| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
+| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
+| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
+| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
+| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
+| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
+| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
+| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
+| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
+| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
+| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
+| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
+| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
+| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
+| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
+| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
+| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
+| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
+| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
+| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
+| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
+| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
+| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
+| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
+| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
+| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
+| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
+| deleteRows | deleteRows | Table | Deletes all selected rows. |
+| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
+| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
+| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
+| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
+| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
+| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
+| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
+| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
+| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
+| footer | footer | Submenu | Displays the Footer submenu. |
+| footer/remove | footer/remove | Footer | Removes the selected footer. |
+| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
+| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
+| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
+| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
+| header | header | Submenu | Displays the Header submenu. |
+| header/remove | header/remove | Header | Removes the selected header. |
+| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
+| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
+| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
+| image | image | Image, Submenu | Displays image layout submenu. |
+| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
+| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
+| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
+| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
+| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
+| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
+| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
+| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
+| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
+| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
+| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
+| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
+| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
+| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
+| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
+| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
+| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
+| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
+| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
+| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
+| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
+| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
+| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
+| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
+| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
+| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
+| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
+| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
+| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
+| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
+| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
+| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
+| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
+| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
+| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
+| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
+| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
+| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
+| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
+| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
+| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
+| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
+| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
+| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
+| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
+| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
+| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
+| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
+| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
+| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
+| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
+| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
+| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
+| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
+| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
+| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
+| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
+| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
+| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
+| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
+| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
+| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
+| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
+| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
+| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
+| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
+| view | view | Submenu | For menu commands only. Default submenu for view settings. |
+| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
+| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
+| visibleFooters | visibleFooters | Document | Shows/hides footers. |
+| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
+| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
+| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
+| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
+| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
+| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
+| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
+| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
+| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
+
+### その他のアクション
+
+4D フォームで使用可能な他の複数の標準アクションも、4D Write Proエリアで使用することができます:
+
+* *編集アクション*、例えばコピー/ペーストアクションなど
+* *フォント* アクション、例えばfontBold あるいは fontSize など
+* *動的な式* アクション。挿入された式などを管理することができます。
+* *スペルチェック* アクション。
\ No newline at end of file
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/writeprointerface.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/writeprointerface.md
index b273ac1f017f53..c9c586bb598bea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/writeprointerface.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/WritePro/writeprointerface.md
@@ -317,7 +317,7 @@ AI 機能を有効化すると、4D Write Pro ドキュメント上にチャッ
:::
-### Limitations
+### 制約
現在の実装では、この機能では以下のような制約があります:
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png b/i18n/ja/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/ja/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png differ
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
index 2c7b2cd95e01ee..2d62f236bfe4e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
index dfe4906f159138..634f169835ed3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
@@ -41,6 +41,6 @@ ABORT コマンドはエラー処理プロジェクトメソッド内でのみ
| | |
| --- | --- |
| コマンド番号 | 156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
index f8363e7fbe1dc9..e946eda644528e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 99 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
index 0c2ecdc245fa3d..cff847a38e8fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
index 978eca3cfa162d..e9358aaa71ef56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
index 9a8a46817dadd5..0c8399fcb11996 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
index 536745e2b05588..9b91a9781573ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 346 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
index 3f95e4f9ce8bbd..4d2ab3698b54be 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1387 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
index 1649bd8582b6f9..6408cc92f1b5a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
index d81787643a8dbc..b1f8e4217a1b8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
@@ -95,7 +95,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 56 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
index 97d43e55dd0b6c..c93c05bfbdb1f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 393 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
index 10abf2a5bd5caf..1e5c22b786bd27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 119 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
index 61350e0bf10bdb..acde59515fff13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1431 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
index 36d38f5512c2e1..b74faddb8eacf8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1430 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
index f9d52511f032ed..38053344992a8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1429 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
index 4e6adde2cdc21b..f2a3fd8903cd58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 31 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
index 9f1a0eabfc9a5e..ac89600a3949f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 41 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
index 1245d35e2fe2be..494b4441ad7b1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 47 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
index 51b2207bae11a3..23a6ce53f04a91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
@@ -225,7 +225,7 @@ GET RECORD FROM PASTEBOARDメソッドを使用して、このレコードイメ
| | |
| --- | --- |
| コマンド番号 | 403 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
index 9a111a0bdedb95..7d9a0903cfda67 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ Append documentの使用についての詳細は、[Open document](open-document
| | |
| --- | --- |
| コマンド番号 | 265 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
index 7a5679e9bf968a..555f89b3203a77 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
@@ -85,7 +85,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 411 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
index 8441b0c02186d1..7d300e4b92b45e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 911 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
index d5598f77cc27c8..c539d682474eeb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
@@ -166,6 +166,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 376 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
index 09e0acb57c2020..569c24c1be41b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Windows上で、4Dの起動時に、DLLライブラリが4D実行形式のファ
| | |
| --- | --- |
| コマンド番号 | 491 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
index 43db97ae1eed08..9d6bf9add715fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1599 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
index 2ccadbf1d756bf..caf2d6459b12c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 494 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
index 49760df3a43d77..43682ba79d9b39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 493 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
index 2c372e7de77176..d8cc40b4e01bce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ APPLY TO SELECTION実行中にレコードを修正して、そのレコード
| | |
| --- | --- |
| コマンド番号 | 70 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
index 97b21bc9c4715b..0d791830189d06 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 20 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
index a5ef248ba2e03a..c540c69b122775 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
index ccef871828c0c6..cbac1bdddbf903 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
@@ -68,6 +68,6 @@ ARRAY BOOLEANを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
index 2cbd53a3fca02a..ab907e20377000 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
@@ -63,6 +63,6 @@ ARRAY DATEを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
index b7e0d59cfae2e2..4502253aa84c92 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
@@ -67,6 +67,6 @@ ARRAY INTEGERを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
index 43c8dff2cb6c2f..37d53f9e0d80c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
@@ -67,6 +67,6 @@ ARRAY LONGINTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
index eb7e293b7b9345..9587f2afe58707 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1221 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
index 1237eb226645a5..dd7ebfd0413fd0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
@@ -70,6 +70,6 @@ ARRAY PICTURE を既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 279 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
index 9f1bc887e641f1..b3410943086810 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 280 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
index 1bf09a8784a2e3..9e4d96b722843b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
@@ -67,6 +67,6 @@ ARRAY REALを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
index f1e23fc9d243c9..21cf0b1afeb131 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
@@ -64,6 +64,6 @@ ARRAY TEXTを既存の配列に適用する場合、
| | |
| --- | --- |
| コマンド番号 | 222 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
index 18a1ceeef41b40..d6170add554e63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1223 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
index ec4cd45627a57f..7effdf60f0925b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
index 0e9ae465925fc7..bd017f337a4f9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ ARRAY TO LIST コマンドを使い、配列の要素に基づくリストを作
| | |
| --- | --- |
| コマンド番号 | 287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
index 25e599a6cdfe12..1bb4b0f153739b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 261 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
index 34299114216048..ed3c97902ed86a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1129 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
index 6d7c67e2f26a32..85f2a71a963d25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1132 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
index f01e32588b6229..7dad5dd8fff026 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
@@ -96,7 +96,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 2 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
index ddf0e987376153..d5be0a8ee826c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 888 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
index bf4823b4aec5de..9e0c25fcad859d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 887 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
index e29cc3d31f05d5..a48e706d0f656a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 896 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
index a4da7281c43058..f466b1c215708d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
@@ -44,6 +44,6 @@ Bse64 エンコーディングは、8-bit のコードされたデータを編
| | |
| --- | --- |
| コマンド番号 | 895 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
index cef8fe8348b662..d5be48566b0144 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 151 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
index 9b996977eccc74..99c36fff6f3881 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 198 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
index eeadf19a13f586..73b09d57c8b22f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 29 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
index 484ba831bf1360..ea6a80a32bd281 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 948 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
index a69180c5316539..817efe683e2671 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
@@ -84,6 +84,6 @@ BLOBが圧縮された後、以下のプロジェクトメソッドは圧縮で
| | |
| --- | --- |
| コマンド番号 | 536 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
index 29b9aa07b21ca7..b040aa7334c65f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 605 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
index b84bf5443c815e..9d752bcd3794e3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
index 922f475f75ae7d..a532d534adf314 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
@@ -68,6 +68,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 549 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
index 4db21b7553c518..6a84974a81466a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
@@ -67,7 +67,7 @@ BLOB to listや[LIST TO BLOB](list-to-blob.md "LIST TO BLOB")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 557 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
index a9134ffefa5591..439b7d70c1ac6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
@@ -66,6 +66,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 551 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
index f29c68234c0887..9391dbee134b7f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 682 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
index ea177236f178e8..54c2312d6cb7e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
@@ -81,6 +81,6 @@ The **BLOB to print settings** コマンドは、コマンドに比べてより
| | |
| --- | --- |
| コマンド番号 | 1434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
index b66106b809689e..284fd07706886f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
@@ -67,6 +67,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 553 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
index f9b0a3893cf5e9..5bfb1220c841ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 555 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
index a97832a583980c..ff1c6d6ecd2ec5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 850 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
index 075ee345c0572c..d7a25368c509ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
@@ -50,7 +50,7 @@ BLOB TO VARIABLEと[VARIABLE TO BLOB](variable-to-blob.md)は4Dの内部フォ
| | |
| --- | --- |
| コマンド番号 | 533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
index b2bdd26a2e12ff..c1f39c755878eb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1537 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
index 07825bd74b8d88..e8576106393b08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 646 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
index f747bfe3923e61..0ef6e830711e5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
index 4a28d23fc6644e..3206375d5454d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
index 380e4478f40124..cba088846852c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 871 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
index 23e8711740f3ea..ef128c28b7f150 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1402 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
index a20620a8df9a5d..53d31580f47684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1391 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
index 39abc573861ca2..cb4a045635d871 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1086 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
index af6c4bdeb0718e..c4c30f849f52d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1389 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
index 6a9ab76d670f15..7d30d827446631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 241 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
index 5b308eae57b500..ccb215bb16e110 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ CANCELコマンドが実行される (フォームや印刷がキャンセルさ
| | |
| --- | --- |
| コマンド番号 | 270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
index c33bffa86206fd..65784d4074c5b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
index 930a00b3976ea2..da6513e17fe6a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
index 1a13461b3fb78b..d37733b0771832 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
@@ -45,7 +45,7 @@ CHANGE LICENSES は、顧客に配付されたコンパイル済みのシング
| | |
| --- | --- |
| コマンド番号 | 637 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
index 699484d83de190..736c04f24519fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
index 0473dd90e7db27..14d3f6829edfae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ Change stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
index ece1395d153dcc..b66fcb7172640f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 90 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
index f64fe50eb1f7c0..df1aa4cf9cafc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
@@ -89,6 +89,6 @@ characterが1文字より多い場合、 **Character code** は最初の文字
| | |
| --- | --- |
| コマンド番号 | 91 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
index f2914478858fca..d35c8a06bea502 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 799 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
index 239ae4390e7470..8bd397f0725fa2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 955 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
index b70510972cf22e..9306d44b0fdf74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 377 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
index 2aed7978835bad..875afa225ceb3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
index 83b86e4aa54070..fbb2bdc9506ce5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ CLEAR PASTEBOARDを1回呼び出してから、[APPEND DATA TO PASTEBOARD](appen
| | |
| --- | --- |
| コマンド番号 | 402 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
index cc8f70475ff84f..a2f775ff99aa6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 144 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
index 1a2ead7432ae4c..067c8f6d2d2422 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 117 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
index 7957e47693d527..070200f6294634 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 89 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
index 8b7215fd80e552..2fc9b6c082157d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ On Clicked と On Double Clicked フォームイベントが両方とも有効
| | |
| --- | --- |
| コマンド番号 | 1332 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
index b6a06b81090992..c8bd3f97846459 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 267 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
index fb06cd3c73cb00..11d355f6ae5c65 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 996 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
index a8f91cd02039d5..33122e74f6b134 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 498 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
index 8e3144ec81c1d7..19798410786943 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
index 2d601f590bcb42..9f758dafd79522 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
index 73f5d0893142f0..0d5b3553a0856b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 987 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
index 2bca4a7bcaa9b5..ace405a3b0856b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
@@ -74,7 +74,7 @@ Timestamp log file nameオプションを渡していた場合、ログファイ
| | |
| --- | --- |
| コマンド番号 | 937 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
index 82a0c096c5cb78..4e5f9c35dd7ee2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1756 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
index a071d254e7a6a6..84c4abd85c93a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1001 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
index c4e38150f832d4..05e5f22eab70e5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
@@ -97,7 +97,7 @@ BLOBが正しく圧縮されると、システム変数OKは1に設定されま
| | |
| --- | --- |
| コマンド番号 | 534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
index b86bc320460467..1c4080548579b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
@@ -96,7 +96,7 @@ Windowsにおいて以下のような確認ダイアログボックスを表示
| | |
| --- | --- |
| コマンド番号 | 162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
index c4c0f39ab36cde..028a6775879bec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 713 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
index 988278c70b8503..14add2d7d67d6a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1365 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
index 1b34862147a6d2..4c0d80244325a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
@@ -196,7 +196,7 @@ CONVERT FROM TEXTと[Convert to text](convert-to-text.md "Convert to text")コ
| | |
| --- | --- |
| コマンド番号 | 1011 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
index 20aa66e9851bd2..a45894135f3d2a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Windowsでの例題:
| | |
| --- | --- |
| コマンド番号 | 1107 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
index 561f34cef1603f..768ca9a94ff9d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Windowsでの例題
| | |
| --- | --- |
| コマンド番号 | 1106 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
index 9e41c3c2662f86..851d7150deac6c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
@@ -53,6 +53,6 @@ vpPhoto ピクチャをjpegフォーマットに変換:
| | |
| --- | --- |
| コマンド番号 | 1002 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
index 63d8698db7c1d7..1b98ca324e0e43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
@@ -36,7 +36,7 @@ Convert to textはByte Order Marks (BOM) をサポートします。指定され
| | |
| --- | --- |
| コマンド番号 | 1012 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
index 0c0ea7c4e2a18f..41252654cf2e04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
index 586c3e2750da89..ea81407d4f1b27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 558 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
index 797d2837de656b..1240e7694a0c66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
@@ -126,7 +126,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 541 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
index 8e09f046946091..2db38cdada6a6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 626 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
index 192a3092576ab3..5e639a6e5eaa80 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
index ae373da7ac2aed..686609e3565821 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1790 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
index ba340a961cf76e..b0348219136800 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 600 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
index 6581e359e2f9be..d6b6680c46b6e0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 18 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
index dda78e04e03b47..9fa73d0b014bb4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 907 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
index 67bb90b85b1ee8..2c01d9667b5334 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 380 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
index 0e4f61d6b06db8..400d7d43cd0513 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 405 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
index f4853166431192..01e9c0b3f305c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 404 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
index 09cd2c71e66138..48921ae87ef60b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ MyMethod内でCount parametersを使用し、実際の引数の数を取得し
| | |
| --- | --- |
| コマンド番号 | 259 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
index f7f9d877523cf7..0ed15edb6f2c2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 437 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
index 8ee9bd905fba91..fe2f70bed8d4cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 335 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
index af2ce8ce33d618..c49786eecd3bc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
@@ -30,6 +30,6 @@ Count user processesは、ユーザが直接あるいは間接に開いたプロ
| | |
| --- | --- |
| コマンド番号 | 343 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
index 41dbff2df7cdfc..56e3fc37800c0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 342 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
index be8c65dab8bb81..5ad44623e813e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 694 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
index 3bea36dcfaf2a6..da84ee732913e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
index 08554709af78dc..0ae31b34b1ff8a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
@@ -75,7 +75,7 @@ Windowsでは、Windowsのファイル拡張子を渡すか、*\_o\_MAP FILE TYP
| | |
| --- | --- |
| コマンド番号 | 266 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
index bd8dced4f68deb..83ba3203daa961 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 140 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
index 944f8d9e965db6..b60fbc048e5b3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
@@ -77,7 +77,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 475 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
index e1d42f565d26c3..da53d418f99f0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 966 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
index 6e6d83718aae1c..fa764d08dac7c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
index b78271d4a9db7e..3eac8f9388397b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 68 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
index 9947360b44e13a..ed19549b716162 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 65 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
index 3964aec7381660..10d028d23c78f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 640 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
index 6096227ded4bca..e4bc33ccb96fd8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 641 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
index 1ea0a4f22bd72e..e50fe0bd59d199 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 116 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
index 500f6b4f02d6fc..3b1b577cb8f4f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 679 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
index 3b8d769a9d15e0..45bd09ab8735cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
@@ -79,6 +79,6 @@ Windows セッションのログインに基づいてクライアントにアク
| | |
| --- | --- |
| コマンド番号 | 1355 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
index e2feadb8b6b38a..1cbebfe935762b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 33 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
index cdcc4f04f0e721..4768fec320c80d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 363 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
index c8e5dcda360f97..e22b048ad233e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
index bfaaf45661f508..1fc8652e8d53d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 627 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
index 697b28538ff998..61fee595de5f54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 827 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
index 16c253ac3c33af..a9b072e554b13b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 483 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
index 318b4fb8f5bc55..0b5c0b9907cbea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 684 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
index 1a633a40d60d67..5350e5a2678d25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1201 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
index c406f6a04e4de6..e94bed87f571b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
index 0bf47168782113..95bcc6823e937f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 322 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
index 38d705f65d1774..45913c1522ede3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 484 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
index c871d99d787150..c1eef7a692a7a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 178 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
index bb2bad88c87932..e4e858880cbd97 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 182 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
index 03600bfe2dc729..846d18b4c4c0ac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ CUT NAMED SELECTIONは[COPY NAMED SELECTION](copy-named-selection.md "COPY NAMED
| | |
| --- | --- |
| コマンド番号 | 334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
index bd88dba43b8f82..5807c018fcc1f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1609 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
index 9aa62526a90285..d4a38edbb46f2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Macintosh上
| | |
| --- | --- |
| コマンド番号 | 490 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
index 9e69b034c5b312..007732bddc86cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
@@ -335,6 +335,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
index 205f9bbf7cc2ad..989398b7f697b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 102 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
index 53408c1e261281..cdbd0b6a45b27c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 114 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
index 88dbb5171797ff..5d6804b9c7e110 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 23 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
index d97236b18d6c4a..c21cb7dfc992f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 347 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
index 81fb9d71a3eaaf..7c185254df9b08 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 9 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
index 1739c6d48e0e24..c4875071a93136 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ DECRYPT BLOBコマンドは、(意図的かどうかに関わらず)BLOB内
| | |
| --- | --- |
| コマンド番号 | 690 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
index 020519f4d3e932..289372f632b113 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
@@ -65,6 +65,6 @@ BLOB を復号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1774 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
index 46cd649a9ae948..b56441584f425e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 46 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
index 97514f2a2b2d03..a997d345e2fdd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 323 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
index a7124ccff2e5c4..50dbb48db29257 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
index 6d761fd5d41f72..a2afa608b48d8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 693 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
index e69021cb2526fe..82f45ef97a64ff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
index 8046219a7de6e8..42c45834650591 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 560 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
index ae582acc799ac6..21fa6d02cc9bc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 624 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
index 2841472f3afcbf..361b5758f84a8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 967 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
index 1379e76b620b82..235608c8fd2932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 413 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
index 702660b0dc4d81..cc5aa864112aaf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 58 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
index 5329045d9a16a5..2294d1d0e727eb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
@@ -71,7 +71,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 66 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
index dc1636a8e935af..3f393c3a71a8a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
@@ -50,6 +50,6 @@ Delete stringの使用例を次に示します。結果を変数*vtResult*に代
| | |
| --- | --- |
| コマンド番号 | 232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
index 1c464fbd4f9596..d2edec100d720d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ DesignerとAdministratorのみがユーザを削除できます。Administrator
| | |
| --- | --- |
| コマンド番号 | 615 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
index 1070611d21ac78..b3a6ca769a0196 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
@@ -73,6 +73,6 @@ $vResultPath :
| | |
| --- | --- |
| コマンド番号 | 1044 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
index 1ca499137164fa..f535df60f75968 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
index 6ea13aa257210f..78fe6e93a9b56a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
index 924953731e9228..003177e546389e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
index 087c439a63a41d..522e86cf0f190e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Windows 環境下では、メッセージウィンドウは何らかの動作が
| | |
| --- | --- |
| コマンド番号 | 910 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
index 0aa8af76e48144..cbf555b9bb60c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ DISPLAY RECORDは、しばしばオリジナルの進捗メッセージを表示
| | |
| --- | --- |
| コマンド番号 | 105 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
index 81860290a78ff0..6f297c29bb6a70 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
@@ -100,7 +100,7 @@ c. 以下のプロジェクトメソッドをメニューに関連付けます:
| | |
| --- | --- |
| コマンド番号 | 59 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
index 43ff67644ea57e..cb7b419e479f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 897 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
index 369927f80be7a9..f20e1f4105ab81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
index 1425322cfdd1ea..decef756d3a097 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
index 482d7a24129ee2..85526cfb9f9582 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 339 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
index 932c9b50366cea..03acd2b732e6b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 474 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
index 366409701ea190..286a733ac185c3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
index 02892ac0a3c792..ea04df1ffbd06a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
@@ -81,6 +81,6 @@ id name price vat3 4D Tags 99 19.6
| | |
| --- | --- |
| コマンド番号 | 1236 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
index 8ba81ef5b579b3..7e9a3d91cf5310 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Result:
| | |
| --- | --- |
| コマンド番号 | 1080 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
index e61182a2505e15..c4d641b991c5b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1082 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
index e2e290c45a23e5..611f228fe56da3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 722 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
index c313d8f5ec80ed..fa6073404385aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 727 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
index fd1fa70afa23b9..1e03e4b2787e5f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 726 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
index f346e38e7b2fc1..d1e11f36f272e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1097 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
index a2d0e441d73e86..9729cf718cdcee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
@@ -164,7 +164,7 @@ $aAttrName1:="Font"
| | |
| --- | --- |
| コマンド番号 | 865 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
index 44af3006212670..405a2fc224f6d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
@@ -101,7 +101,7 @@ NSName2="http://www.4D.com/Mkt/namespace"/>
| | |
| --- | --- |
| コマンド番号 | 861 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
index 7128c485f1deb3..6a73fedd2e6ba5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
@@ -62,7 +62,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 862 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
index 974479d21b2760..dd9ace45856ec5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
@@ -57,7 +57,7 @@ XMLにおいて、改行はそれがXML要素の内側あるいは間いずれ
| | |
| --- | --- |
| コマンド番号 | 863 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
index 905895fc301213..6b478d6dd2e19b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1010 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
index 38e26df7e1d674..4bb16180ae5e9a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
@@ -123,7 +123,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 864 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
index ce18324aab102e..de7d41e73a35b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 723 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
index 4e554672a9ac2b..fe02e5e4141b4d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 925 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
index 081f8391756e4d..f1a50bde559870 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -66,7 +66,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 724 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
index 9908d07e813f8e..1dfc5170467073 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
@@ -40,7 +40,7 @@ documentノードにこのコマンドを適用すると、コマンドはヌル
| | |
| --- | --- |
| コマンド番号 | 923 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
index 59542d95ab870f..87e6f53c34d33b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 924 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
index 67f41d080080cf..221b7bbad5cb38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1053 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
index 9f5da880fb9919..8d3c239adfee8e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 729 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
index 449239e9cf04e5..e9eb28b3e94b95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 728 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
index c4e8f3c30d1426..fb7a11f0ac6369 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
@@ -68,6 +68,6 @@ $typeArrと$textArr配列には以下の値が含まれます:
| | |
| --- | --- |
| コマンド番号 | 1081 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
index f386e468bce7be..35e0cd24600f73 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1088 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
index 6db926bd7b5778..793c5d251efef0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ XML要素名に関する詳細は*XML DOMコマンドの概要* の節を参照
| | |
| --- | --- |
| コマンド番号 | 730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
index 36a4aecbb26386..af53997a29c414 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
index a154c6b75f2c17..d6b1b9b702c44d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 725 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
index e40785c25e349d..bb9371c435761b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
index 0af19bf4b3c8a3..013c7517387bfb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1083 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
index 2916bccbc29f77..61026ade7e85b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
@@ -100,7 +100,7 @@ DTDやXSDが存在しなかったりURLが正しくない場合など検証が
| | |
| --- | --- |
| コマンド番号 | 719 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
index dba2310d499e34..e2fbd3c9ee29c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
@@ -90,7 +90,7 @@ DTDやXSDが存在しなかったり、URLが正しくない場合など検証
| | |
| --- | --- |
| コマンド番号 | 720 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
index 9ac43b2bd303eb..900ca2fc1cc864 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1084 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
index 2bebd0522f8d6f..11aba32b01cd43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 869 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
index 98977973282393..ac154a3626c279 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 866 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
index 64a422f7918993..d86ef6aab8afd8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 859 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
index d0ad65a18b9988..fded5934bbe551 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 867 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
index 8bcd5680ed9eda..19c821564eca74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
@@ -122,7 +122,7 @@ XML処理のルールに準拠するため、行末文字シークエンス(CR
| | |
| --- | --- |
| コマンド番号 | 868 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
index adb20ef3eaa271..1ed0fa9fbcb8c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 452 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
index b38d3f2f1c7ffb..993d757b120822 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 608 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
index 7b56b95355ad16..1d00471e88e868 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1633 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
index 0f0e8bb961ddc4..dc76f95660eafb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORDはデータ入力中にも実行可能です。これにより
| | |
| --- | --- |
| コマンド番号 | 225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
index c34f1cd2a90655..d7c62591c51be5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1006 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
index 8be1285b4d1717..a9e0691767c573 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ DesignerとAdministratorは新規ユーザの追加、およびグループへ
| | |
| --- | --- |
| コマンド番号 | 281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
index e6df970f16c0d1..a9472848ee8a9d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 806 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
index 5161c2c9110868..68decd17c2d379 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 870 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
index 95987ff4b093d3..61cda28f749cd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
index 521ed721cc4b66..fb3e4fcca046b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
@@ -186,6 +186,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 689 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
index 8ccc16f963f32d..e7c8a128c1d60c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ BLOB を暗号化するのには、*keyObject* または *passPhrase* のいづ
| | |
| --- | --- |
| コマンド番号 | 1773 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
index 9d94e763af8630..4db3c377c1c763 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
index 2f67c6d9d5d282..8cbde88e4fcd26 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 36 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
index 7f866411a4e026..f3626dad7f24b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 949 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
index 8a9a365fd6f2d4..e0cdf0ff98fdac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1196 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
index 77728b2fa0db24..8169db6f2cfae8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ ERASE WINDOWはウィンドウの内容をクリアします。スクリーン
| | |
| --- | --- |
| コマンド番号 | 160 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
index 4faa5fb3ed3c4e..945ea1d945723f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
@@ -87,6 +87,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 676 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
index 420ef2e18edb40..700aec573524b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 63 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
index e7a532bc5d96bb..21042080eb0492 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
@@ -79,7 +79,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1085 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
index 7e932fc35c0d32..7f9e45f6ce3c3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1007 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
index 207c139194f609..77af366cdce9dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
@@ -67,7 +67,7 @@ OKシステム変数は、4D Serverがメソッドの実行要求を正しく受
| | |
| --- | --- |
| コマンド番号 | 651 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
index 5eb402446d736b..92f49597ec0664 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
@@ -193,6 +193,6 @@ WriteLog メソッドはサーバー側で実行されます。メソッドの
| | |
| --- | --- |
| コマンド番号 | 373 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
index ae3d62f0705c70..5390f015861d53 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 21 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
index 2a565e9215a2c3..807b54abe7dfaa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ BLOBが正しく解凍されるとOK変数は1に、そうでなければ0に設
| | |
| --- | --- |
| コマンド番号 | 535 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
index 1c0ffc12842315..e5651cd6dc2958 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
@@ -103,7 +103,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 666 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
index 8bbee1925eb4e6..9920940cb8857b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ EXPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 84 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
index b0ef2e21fff4ad..35854f64e03abc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
index 79f2c4664218f0..3993ac4bfdd128 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
@@ -62,6 +62,6 @@ XML フォーマットで書き出されたストラクチャー定義は他の
| | |
| --- | --- |
| コマンド番号 | 1311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
index cccdf5d1286448..b75b8df061894d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ EXPORT SYLKを使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 85 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
index 447129e07d2c61..229d15ef8d144a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ EXPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
index d392138cb39914..66cb96f62c59e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 215 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
index 7995b4ed2bc7be..5bd79aa2da9df0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 257 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
index 1466f54e6a4fd0..34d377e94e7d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 253 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
index d1f4147a906bc7..f3d8030f0c7644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 321 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
index de39c82dee0210..13ff0d68b4fa64 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
@@ -251,6 +251,6 @@ Get highlighted text メソッド:
| | |
| --- | --- |
| コマンド番号 | 389 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
index 22ce01b1fef531..2cb4eaa5d16412 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
@@ -116,6 +116,6 @@ $arrPtr->:=Find in array($arrPtr->; $varPtr->)
| | |
| --- | --- |
| コマンド番号 | 230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
index 16650409531c97..b68ca9c13df841 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 653 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
index 164223afce1af3..cd893d4ef0ea32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 952 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
index 0c25bd76fed4f3..f798c2fd5aae01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1333 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
index 7dc856606f27a8..e12dc495d494d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 449 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
index 7a95962ad9cf6d..7cba6a7aa7f82b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 50 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
index f39461b97f6bf0..e53c8ce9700456 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
index 726b537220b972..3712b8ebe4f27d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
@@ -50,6 +50,6 @@ Focus object はカレントフォーム中でフォーカスを持つオブジ
| | |
| --- | --- |
| コマンド番号 | 278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
index a3a66ba3a7df7d..052a5835f97017 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
@@ -30,7 +30,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 473 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
index acfdf3f1cf3237..5b7049cb3fdd9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
index a58da962d63dfb..90304bbeead614 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
@@ -77,6 +77,6 @@ Windows環境下では、この原理は4D v15 R4から採用されています
| | |
| --- | --- |
| コマンド番号 | 460 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
index 12b76e8583f647..29c058a1b5574f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
index fc3459d78b9bda..d9ddb730d841cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1570 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
index 99fbc02fdd9d22..6edcee77d6cc89 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-first-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
index 92d5c242b33848..a9d9775055be7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
index 29c8aab210b9a0..4ea16f93b63987 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 276 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
index 592f0da6c167e2..9b0c5c4358d06f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
index ddea95d7c08c8b..65cc88e76268bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1077 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
index ef365b85c07810..36af7f8f8deda3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1167 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
index 27b63fb7d8627a..4b45deec6e60b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
@@ -129,6 +129,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 898 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
index 2d3b37be150633..e00a22b2065a54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 674 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
index 2ce481bbab6de5..9a3544c6fb3318 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1078 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
index ba594cf0258074..b7079cf60d6b18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
index 2d9b73a7cfbb19..41b4d21b015684 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-last-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
index 3bdf85138077bd..311975f772acca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-next-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
index 422d38bb5ec2cf..9e824b2fa3b1b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-previous-page.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
index 84c569b3059e5f..3e2b62ec1d4ef5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 940 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
index 693c594258bc36..c8ee5f5b7fe16b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
index 07bddddce5e2f9..e3174fac292b5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 892 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
index 88232bcba283ce..e139cf4f5f117d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 55 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
index f10a3533c4efc8..2c953ddc444008 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 54 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
index 03786bff2aced9..c418c21ea78075 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 891 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
index abd4765147f7a3..cf27f02a817574 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 893 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
index a166eb4aec3d10..ce9cbc4e3204c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1299 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
index 9e6a1d44fbeb48..404b887cf55f47 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
index 162a844127dcc6..d4ec0c7b19aff2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 447 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
index ba1a06f57dd2b0..0258058a6077bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 691 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
index 2e6bccbf0138ee..25ba069406b635 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
index 4448ce911d1778..b2928850bff124 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
@@ -57,6 +57,6 @@ TLS/SSLプロトコルの暗号化機能はこの原理に基づいており、
| | |
| --- | --- |
| コマンド番号 | 688 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
index d6b58b73707161..ec5567293442b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
@@ -71,6 +71,6 @@ bcryptは、Blowfish暗号に基づいたパスワードハッシュ機能です
| | |
| --- | --- |
| コマンド番号 | 1533 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
index f440fc73d0912e..678172d7f0d6ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
@@ -73,6 +73,6 @@ User settings file for data および User settings file の両ファイルに
| | |
| --- | --- |
| コマンド番号 | 1418 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
index 307e4b24592ac0..cd00ba8858e342 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
@@ -213,7 +213,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 485 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
index 1acdb2ceb8a1fa..9a5f39f1361a28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1428 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
index 5b7b257a5bbd48..0c28a631f428e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1427 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
index 38f23a5882b0af..9b022ed51cac41 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1426 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
index 945d6d6773af90..bc95d5d5ed8232 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ GET ALLOWED METHODSコマンドは、[SET ALLOWED METHODS](../commands/set-allow
| | |
| --- | --- |
| コマンド番号 | 908 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
index 86fbccc19a94e3..f0c72350037e38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
index 18a880fd9450f6..4a5e7aeba83a28 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1130 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
index cc69fd50a7a07e..a8cb0f8445e095 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 899 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
index d00eca84c9547f..b5abce4604f167 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1432 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
index a5f9db97cd1023..de7ea54a9d42fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 788 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
index 04610886c5dda4..3aeb01470c005c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1009 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
index 72a44938ecd316..3514bb60289d6f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
@@ -1077,6 +1077,6 @@ QUERY BY FORMULA Joinsセレクタで、カレントプロセスの、フォー
| | |
| --- | --- |
| コマンド番号 | 643 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
index 87486bb3e74f18..86e006b3f9fe78 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 826 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
index 8e210ed6229f20..197fc47e1ce331 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 700 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
index 83b29b1418f766..15b2b7ead4bdc8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document positionは、ドキュメントの最初から見て、次の読
| | |
| --- | --- |
| コマンド番号 | 481 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
index fc0fb8bc5ca615..f464b960dc0e95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
@@ -205,7 +205,7 @@ return !01/01/95!+($timeStamp\86400)
| | |
| --- | --- |
| コマンド番号 | 477 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
index fe25b98f9e24e9..80476c24e7db2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Macintoshでは、任意の引数 *\** を渡さない場合、データフォ
| | |
| --- | --- |
| コマンド番号 | 479 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
index afa0c5280308f1..4adb5223c9465d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 655 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
index ddaa8263ac6262..84ba0cc055b6ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1133 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
index 3adc50e06477a3..81b34754c03699 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 685 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
index 1a770f0a195c72..02de3241eeb6f2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 258 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
index bf265a65e3b233..88789bc13ed538 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 920 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
index 4c180933ffecb0..80e95d257da598 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 804 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
index 7d2e139b14d452..299d2ee7307204 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 976 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
index 04b44b449ee963..8f0791268c33b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1738 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
index f1da449fe0dd32..46df113dbe1211 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 610 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
index a02fb32b60c331..615eac7f0082fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 613 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
index f0ba9df15c3d00..f7611985eda97f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 209 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
index 91eb6293f37cf3..4a0357cecce46a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
@@ -48,7 +48,7 @@ GET HIGHLIGHTED RECORDSコマンドはフォーム以外のコンテキストで
| | |
| --- | --- |
| コマンド番号 | 902 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
index feae8fdb3b78a6..667e2debc33093 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
@@ -50,7 +50,7 @@ Get indexed string コマンドは以下の値を返します:
| | |
| --- | --- |
| コマンド番号 | 510 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
index f6f3efc3177c8b..296f57b9aa2535 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 954 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
index de833eaceeb81d..76e1f9a01750a1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
@@ -42,6 +42,6 @@ iconにはピクチャ変数を渡します。コマンド実行後、(スタテ
| | |
| --- | --- |
| コマンド番号 | 951 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
index 52ef57592fa292..0044d0fc72f264 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1195 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
index 4e05d294dfbaf5..190e995450274c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 985 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
index 01672e67ecbf9c..643e02eb020743 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 631 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
index 4dcecb44e9e6df..782a7f7e545bfc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 378 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
index 2100c6ecd47b24..af9b17720951bf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 632 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
index d6418f5d0f9768..99639083cf3644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
@@ -40,6 +40,6 @@ Full method textを*selector*に渡すと、メソッドのテキストはすべ
| | |
| --- | --- |
| コマンド番号 | 997 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
index e0dcf2b2af084e..8bb9ef5c661bc9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 979 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
index bda71b70f106d9..5b942952c7cb0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 983 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
index 0b1a53309d64df..b62a594b8294bf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 424 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
index 45539b4d76259c..2dfaf8d8482e9c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 428 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
index df63dc410619a1..23226c38791aa5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 981 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
index 29aef7eeae1737..65c2e0eeba5b33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 980 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
index 2e6d5269425e11..041ac8aa7ca0d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1003 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
index 41ffae363df63c..fd336aa9efbe00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 972 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
index a67021fa4140ef..fe241cfbd87625 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Get menu item style はテーマの定義済み定数 (ひとつまたは和)
| | |
| --- | --- |
| コマンド番号 | 426 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
index 17db80776a97b4..de52599e274344 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
index 2f154237d29009..1cdca18a696161 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 977 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
index 132ccdbf3bedc9..2a33015e5e8563 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 430 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
index 5ec6b257cd720d..4092f1e0abbbe3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1125 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
index 7878b064a81430..5bde03c920e2cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 958 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
index c6af1521379259..4ef31c6c30b5c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 401 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
index f4993d0a701c38..8ae6862d4822af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1171 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
index f941f3d3a6bd9c..c778218875aac6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1406 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
index 945f2a2520ef85..2d9fc8dfa51fab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
@@ -66,7 +66,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 565 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
index 2b6bd61cf1df43..058fbb570b2611 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 522 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
index d25e7f7578125b..47ec814696b612 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1142 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
index 6efa86f95fbc64..4b5ba96b8345f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ DOMツリーストラクチャを使用する
| | |
| --- | --- |
| コマンド番号 | 1122 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
index c282081a7408e1..95125499379fa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
index 2b0275de76d7b6..fb550c5cb9fac9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 846 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
index 0a8be1a4e15785..9733ef7ededb04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 304 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
index b8a71ac5e221b9..b69ce675d4313b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 708 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
index 4ddc1911446ce9..9f60f869dbc199 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ PDFオプションコードは2つの部分、OptionT*ype*と*OptionName*から
| | |
| --- | --- |
| コマンド番号 | 734 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
index 836ad1e9a477a6..d584fce46326f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
index a4a17ccb33c994..6d94bbdad7e75d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 703 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
index c57e4848a857fc..8ebaed360ac7f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 711 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
index d309979812a359..18da94eb4926c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 702 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
index de15bfb2e5c251..673346c3179dbb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
@@ -122,6 +122,6 @@ DRAG AND DROP PROPERTIESコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 371 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
index 81fe8012aa89a0..1aa757cbdd5465 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
index 9d767b43102cc0..2053a944110261 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1156 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
index 2e70cad0cc3c1e..1a44798a37ec0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 650 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
index fdc2cffb7b6fdd..747d9bfc06eaba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 686 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
index d9e4594090def9..ab681e86adb7c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 513 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
index b58cf82f751541..e2cba0a274896f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 515 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
index fdce7c0e787064..cf6bfbe2de38d5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ SET RESOURCEコマンドの例題参照
| | |
| --- | --- |
| コマンド番号 | 508 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
index 68346ae4a3058e..c587b549c21a34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1005 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
index 51091cbd510a69..5d52f8c534f081 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Mac OS Xでは、USBシリアルアダプターの使用時に、OSがポート
| | |
| --- | --- |
| コマンド番号 | 909 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
index 7a83886e4b4633..31179b7fe727e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 506 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
index 108a98e9bbdf5f..5f7b6abdaa63fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1256 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
index 9818dd3a325f15..e0e47b4e5b8964 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1137 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
index b8a390f0393535..a271bcdde52171 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 994 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
index 1c30fd45d65722..b3a5078a342e9b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 687 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
index 084e54d7209698..f26508f7c0523f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 803 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
index 9a628be006f188..63b96cae74c099 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 524 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
index 706414d574f5ca..9b6abf50ff5fe0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1141 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
index 0b2b1476a8cb4a..c3e2b3f912f779 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 504 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
index 6c00a8147d979e..acc61cbd3b993f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 609 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
index e2b2ece7328d32..8d4b4f0aa88544 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 611 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
index 5af6ba2c080cea..de021ba2d91a72 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 443 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
index fc8f421b680f1c..fc787a524f796d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 450 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
index bb96181d7815db..59fff3608f3ab1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ GOTO OBJECTコマンドは以下のように使用します:
| | |
| --- | --- |
| コマンド番号 | 206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
index f05640a1d077dc..2066d29173f126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 242 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
index 5db38ec2c90cf1..74526cf865089b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 245 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
index 49bf384c569410..d1fdc66e69ebd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ GOTO XY コマンドでカーソルの位置を指定してから、[MESSAGE](me
| | |
| --- | --- |
| コマンド番号 | 161 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
index 5f976c797b7f6c..ca98f603954d10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 298 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
index f385fa81e5e189..f8a87cf3da2d66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
@@ -283,6 +283,6 @@ SVGグラフ中で見つけられる要素には自動で特定のIDが割り当
| | |
| --- | --- |
| コマンド番号 | 169 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
index 9b1fe301bf2daf..378be301c64a0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 432 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
index 5a7b3b879e1ee0..b07dd6f7f88b8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
index e81479492e3cb4..87e51dde84dac7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ macOS において、カスタムのツールバーとHas full screen mode Mac
| | |
| --- | --- |
| コマンド番号 | 434 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
index a265583358f6e4..885092d01e48c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ HIDE WINDOWコマンドで画したウィンドウを表示するには:
| | |
| --- | --- |
| コマンド番号 | 436 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
index e63b828bb54c52..61b2f886eaa31d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 656 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
index d7476d797b6423..10bf85ae4cc0ab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
@@ -68,6 +68,6 @@ HIGHLIGHT TEXT コマンドは、サブフォームのコンテキストにお
| | |
| --- | --- |
| コマンド番号 | 210 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
index a268f08e8a9b1e..7136c8b62eab11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1161 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
index a0502fff7388ef..079e05302d1729 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1307 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
index 47ae5c85b12551..deb2c4b80024b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1159 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
index 3dfe3d6f1fe888..18687600da39f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
@@ -109,7 +109,7 @@ RFCを取得する:
| | |
| --- | --- |
| コマンド番号 | 1157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
index c47ecaf6a766c2..8c618e53ca5983 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
@@ -128,6 +128,6 @@ http://[{user}:[{password}]@]host[:{port}][/{path}][?{queryString}]
| | |
| --- | --- |
| コマンド番号 | 1158 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
index 6e46b31e381224..970c6c9c5daea6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1306 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
index 38b3398eba2252..fc5596033cc4fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1160 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
index add3e1421ac31c..17fbe444fb3dfa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
@@ -57,6 +57,6 @@ EVENT METHODは以下のとおりです:
| | |
| --- | --- |
| コマンド番号 | 311 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
index ec260709b5ed2c..c94f89722d4da1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 665 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
index bc3e35c71e4dd0..0a9c6ef3cd8e0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ IMPORT DIF を使用する際、デフォルトのフィールド区切り文字
| | |
| --- | --- |
| コマンド番号 | 86 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
index aa43ab1bc4ea17..11045544be5a87 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1310 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
index cf022396fde90b..27a95d4aa7e09e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ IMPORT SYLK を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 87 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
index c4487c96d5628b..a215f50148a8af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ IMPORT TEXT を使用する際、デフォルトのフィールド区切り文
| | |
| --- | --- |
| コマンド番号 | 168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
index 234d3e69a62cc7..8338578eb4c2a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 113 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
index aaa16a9d5d994e..54300e5914ed39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
index de748245c86240..d2aea9edd87739 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 112 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
index 1f88df906a921a..dec99384f58b39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 397 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
index a823af2c8827a6..19c458dd6b122b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
index aa1b8321a0c180..5828d13f3b3d42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 559 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
index 0c38a93b15d113..37ada0e1dfb21a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 625 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
index b24d9a93076321..fd3e3f22c4809f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 412 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
index dd3080de82e3a5..e65690b4cb23a5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ Insert string関数の使用例を次に示します。結果を変数*vtResult*
| | |
| --- | --- |
| コマンド番号 | 231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
index 71a9d0b945025f..9de96d50c2c966 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 8 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
index 528f98b94676bb..337784a954a74e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
index 4159f57b0efd99..d4bf7f3f97ded1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
@@ -105,7 +105,7 @@ Blobまたはピクチャーの値の場合、その保存場所に応じて異
| | |
| --- | --- |
| コマンド番号 | 1312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
index f9c6a7513bc220..028cc5a4d91231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
index 4f18059aa50749..57ffad41ab77d7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
index 0a2f2b819532b7..a600e95364b52a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 621 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
index 936b1ed936ee52..c7e0685c2f935f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
index d9515d66323283..75bff684355789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 492 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
index 14dd2bd92c0023..01ae4d07c89610 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 716 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
index 28290965e304e1..6e63bd089fa31e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1744 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
index 9f95c8445cca8a..18b7371a1aa0f3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1000 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
index 6339d1a40e4deb..6a0e540db166ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 964 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
index 22a348b6fff38f..45cf0e7b876617 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1198 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
index da5ed2a8b22ed2..8f420d6ff2e227 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 273 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
index 06c7ae89c9b185..d4eba86f18baa9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
@@ -51,6 +51,6 @@ Is license available コマンドは次のような3通りの使用が可能で
| | |
| --- | --- |
| コマンド番号 | 714 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
index b123aa9669682b..eaa14ff41dff3e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1572 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
index 843d496d877224..8fe5d271278cec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 668 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
index 3fa203463444b0..b4cf7022bf3d58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 315 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
index 8fdd888a2f9263..efd50644e006e7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1113 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
index df5fe133987a7e..538231c692e653 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 669 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
index 40b019308bb3f6..87863828be170f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 999 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
index 42067faeee3e97..7ab78f779502e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 616 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
index f4414d0a60d3ac..6f6efda3b41d4b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1422 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
index 0ab53a8554199d..77c599d14c79fa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
index fe6f88a9396744..b6f8ff71c34768 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
index b3e8cc5393586f..1bf6684c94dc34 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1573 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
index 3f063ace99df67..4b5c3634ef7847 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1219 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
index e58867220e3403..870057358dc002 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
@@ -191,6 +191,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| コマンド番号 | 1218 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
index a90b3d99d36300..48e45becd76182 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ JSON ポインターは再帰的に解決されます。これはつまりポイ
| | |
| --- | --- |
| コマンド番号 | 1478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
index 0fa06cab9587ca..dedf8c39c40c8d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1228 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
index cc88c5d6f8718a..48bf84b1ac5408 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
@@ -179,6 +179,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| コマンド番号 | 1217 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
index 1241462ab9e411..3ed55b15376580 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1235 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
index e3416c75212289..c96d7bdbed6e07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ JSON オブジェクトをスキーマで評価して、その評価エラーの
| | |
| --- | --- |
| コマンド番号 | 1456 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
index 17a1ac33a2a4ed..c6044d8e079f7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
@@ -174,6 +174,6 @@ $curValue->:=$vtNewValue
| | |
| --- | --- |
| コマンド番号 | 390 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
index 6821d64da0b5a7..d246e3f83b1018 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1390 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
index 03bf54c7071792..7e83936ed3f07d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 255 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
index 2a816a11282cfa..a5910cc25f74c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1045 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
index fb6e4bcc89b77b..1455967734a069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1046 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
index 8a4a87f23112ff..2a85d78fdf6661 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 200 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
index 6edeca977e691f..399229b12337b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 254 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
index 6cbe2026cd68c4..c39ecafa706e27 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1301 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
index dc3404931443de..ed341b255aa253 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
@@ -146,7 +146,7 @@ Application/UtilitiesフォルダにあるmacOS ターミナルを使用しま
| | |
| --- | --- |
| コマンド番号 | 811 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
index fb32f0e87549c2..1ff84ce98ab7c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
@@ -101,6 +101,6 @@ LDAPサーバーにログインして、検索をしたい場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1326 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
index 09677a5a737817..591398813849ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1327 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
index e9b8e6015599a7..736bbf1560d9de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ LDAPサーバーには通常、検索のために受け付けられるエント
| | |
| --- | --- |
| コマンド番号 | 1329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
index 818b0e30f2ad5e..cfd90ca2c35e2e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
index 177f1f3ce01494..2dac6a576dcc0c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
@@ -35,6 +35,6 @@ Lengthの使用例を次に示します。結果を変数*vlResult*に代入し
| | |
| --- | --- |
| コマンド番号 | 16 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
index 73f04777d57f6e..bd804c51377b4a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
index 27d336e7d918d6..452788819488ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1782 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
index 5efcbd955d48c6..7283551e82d097 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 633 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
index 5368c77e8c21d2..755e4aeba87838 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 629 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
index e8b59ef9f3d9ca..d2b013b8691974 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 957 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
index 4cf4a6e47b846f..2b973731b72265 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1255 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
index 4998c5f3219b3e..deacb7ef566b1c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
index d3dbdbf4d05772..2f67e67974d14f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
@@ -53,7 +53,7 @@ LIST TO BLOBや[BLOB to list](blob-to-list.md "BLOB to list")は、 BLOBに格
| | |
| --- | --- |
| コマンド番号 | 556 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
index 097e4199121579..8fea566763a385 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1101 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
index 6e0220021c687e..a2d4ef2a48d767 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 830 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
index 8b364121c56a26..805cb9e216c191 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 914 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
index 79f2f60ac99558..ccbe5d6c8219a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
@@ -99,6 +99,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1273 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
index 5572cf556751e3..74d182e32b51c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1100 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
index 0a071c34ab74a6..aa08efa3be9be4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1278 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
index 33587b876fee76..df76ef4434525e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 832 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
index 178a95bf9246aa..930ed97109119b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1502 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
index 55f661c69e7088..1ff3513ad73328 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
index 17e2014784c252..952f47513af526 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 971 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
index a6b00f95a464ea..67e91bb94ee514 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1202 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
index f7f3cee327df7c..571f366f3b7c85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ LISTBOX Get column width は列サイズ変更の制限値を *minWidth* と *ma
| | |
| --- | --- |
| コマンド番号 | 834 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
index e0f67702fb8aab..8832f4ae563383 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1150 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
index 19cafca7867942..b02a180096cec4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1146 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
index 98b19a43691664..1b596bbe07f546 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1200 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
index f3e26e8aa3d460..a524b79fdcdfd5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1199 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
index c9bddc0990a039..521eb56d15c289 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1144 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
index c5b75ef8365d7d..5ba83563aab489 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1099 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
index 1a41fb439ea0b8..4b0eb523223bab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
index ccf30bcfaa6727..62812b7ce7bdd9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 831 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
index 5c1b2d61b6ffe9..50714a553d5c5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 915 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
index 8c08e8ff520a85..9a7249dc7a3bbb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1302 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
index 857353bcf6a9f5..0d4e573317669c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1110 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
index fcbc09b1d7c3e5..c133b53400a09b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1271 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
index c549f4614480b2..e53d60993c81fe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1658 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
index 19436e608f5464..320ce357487109 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1269 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
index f95b0a526a7e0b..6cdcd27f3d54dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1408 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
index 115614b6743307..065638ee23e749 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 836 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
index fc675e61cd116a..b8cfe527d92ee8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1154 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
index de5cef1b36518e..9ca13ea4457c85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1014 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
index 4d8cae575078fe..604d3618260904 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
@@ -125,6 +125,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 970 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
index 40c1fe08809dc0..59a6a54b2f953e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
index fb72eb0d7efa5e..2ee9dcd2bd1872 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 913 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
index f400e8e0513d05..90e2b523b4112e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1274 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
index 7c447c72dbbc30..8558fe5918e0c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 844 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
index f4e03a08890e6a..2c542b040e381f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 837 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
index e6c0a16895b569..fa90c89c3856ac 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1117 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
index 6b1743f1e84447..18040a08ec2b05 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 912 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
index 4016e5539d4a4e..aa957d2ea238f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
@@ -89,6 +89,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1715 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
index 328f14ee54efc0..f9c2ed803d96ae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1279 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
index eb5dc3631dc592..acc4069a6c2c46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1501 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
index 0e0480d960e64c..f2674eaa08b779 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1203 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
index 13334e8b79523d..45d5eaa49ef5c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 833 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
index aaaebdcea3abb2..db93bbe5cb242e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1140 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
index e52ad57ba7076e..b49e4377418420 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1145 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
index 52c1c0c743b143..bdb884fe885ce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 842 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
index 73bec7cae6aab0..2b1c020310913d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 841 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
index 92fbf1c0fbb054..8724cfc64bb60f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1143 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
index af2c1507651782..1020d3b8a6ec50 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
@@ -57,6 +57,6 @@ aCountry、aRegion、そしてaCity配列をリストボックスの階層とし
| | |
| --- | --- |
| コマンド番号 | 1098 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
index 50e12180db484f..bfe62bbc9a653f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1151 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
index 900288847215f0..c7787d5f852cb5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1270 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
index dc6b5ea61e8af1..f91adc1de99651 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
@@ -83,6 +83,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1268 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
index a273e62af755d5..f170bb0e270c57 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1409 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
index 450327815bfe19..792ce5720c3d16 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 835 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
index a99cc2f2445023..97ef33972cc528 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
index 9ed2ff7024f2ec..1662e3d0f26b54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1013 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
index 8beff8119e6aea..b893b00f6cf7b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 916 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
index bbcf6f595389c7..dbd6c98fc9dc2d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1528 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
index 300f1f829f78e6..cfac5c3df67ad2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 383 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
index e4f08f88106082..90bbe6bce67f15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 52 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
index 40d40feafe703e..2c9a6af53bc7ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 185 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
index 04f5bca539d82c..97c590480c3f33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 74 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
index 129afa9b8baa4f..5991a2f2f2a80a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
@@ -72,6 +72,6 @@ Resources フォルダの中身は以下のようになっています:
| | |
| --- | --- |
| コマンド番号 | 1105 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
index 372fbe7e9c08eb..e7b0d1742fa72f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
@@ -61,7 +61,7 @@ Note: XLIFFは大文字小文字を区別します。
| | |
| --- | --- |
| コマンド番号 | 991 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
index a1ebc3d690f256..3ecb46aca1119a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 353 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
index 223a49425b1a2a..9966042f5df26f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1316 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
index 5c43a261ee7b31..19fc8484631452 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 147 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
index 6face7c7e8145d..c552da0c0ba1d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
@@ -68,6 +68,6 @@ Windowsでデータベースが開かれた時の情報をログしたい場合
| | |
| --- | --- |
| コマンド番号 | 667 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
index cde38feefa6a56..cce399f15a6407 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ Blobおよびピクチャーフィールドの場合、保存場所によって
| | |
| --- | --- |
| コマンド番号 | 1352 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
index 7d6b42773c9312..d24ee018b5c0fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 928 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
index 0991c10a19b1f2..40ae1fdb1e8825 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 22 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
index 3118c5a2f97420..e262e384309175 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 647 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
index f7cd5d0bf8f407..f399a06c0438dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
@@ -122,6 +122,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 550 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
index 9ddec511cdeecf..5d0ca7f6bd60a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 14 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
index 44b7ee4c8f4c5e..fba82f8b147be1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 546 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
index c6bfc4896a5e56..ae316ca2cf6aad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 544 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
index d6fb15455cb05e..e48db56f5175d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 545 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
index bf964b1f016302..38c40c0510111a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
@@ -115,7 +115,7 @@ vfound:=Match regex( pattern;mytext; start; pos\_found\_array; length\_found\_ar
| | |
| --- | --- |
| コマンド番号 | 1019 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
index d1ee49123d0e5b..d0bfbac9bf7b62 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
index 63e73721335066..6afa2402df2a5e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
@@ -90,6 +90,6 @@ Mac OSのズームボックス
| | |
| --- | --- |
| コマンド番号 | 453 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
index 110a7f5e0aefdf..05d4427ee4a30e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
index cd5766099fb6f6..14791a715f1fd4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 440 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
index 2bafbf55d6095c..a27e4a60d06fa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 441 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
index e42f81692af9e7..c0f0ee84265390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 152 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
index 77017589b5455a..6d531488fd0399 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
@@ -118,6 +118,6 @@ MESSAGEをコールするたびに、以下のウィンドウが表示されて
| | |
| --- | --- |
| コマンド番号 | 88 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
index ff6f7706c3e67c..4cefd4ca30eb7a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 175 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
index e62c533019965c..e795afea06bf0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 181 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
index c59c78c193eaee..e3fd74b34885c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 704 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
index dac4ab6cb6e6d5..9d50de0a301496 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 705 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
index fa5d2822248933..0b3c4292fdb893 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1169 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
index dd4d8946194a01..61ed1094748b32 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1334 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
index 16a200a0fda792..c62a287b0026f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
@@ -124,6 +124,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
index 25fb34215c9526..03d9cfdd3f15e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1189 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
index 0d9fc0499b2bb4..b8e30241196621 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1206 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
index 68440936610b94..0945e799616784 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1170 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
index 1d050f8acc4922..d29fdb456b6105 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1166 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
index 5144614fdeda30..c88abbb67d4167 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
index 9348437c6c5d77..da904372ef1839 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1168 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
index 8808aa66e3180a..c30800f8371d21 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1163 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
index 6470828e50b662..b63cfb3ff903f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
index a8c55d521c17d1..944033fbc626ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
index 801ad3d73cfca8..7a847d619e1a25 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1191 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
index f6c762c783713f..34f5e459c74a01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1192 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
index 7903302f6d8dd2..21a75551268785 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1335 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
index 499284e4ab90c7..38add5611eb894 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
@@ -105,6 +105,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
index 4ba04b202ae1c2..e6a21418d966f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1193 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
index 31f9e21ccfc3fe..ed4498f344e471 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 459 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
index ea37932072611c..9f3234b6f5a317 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
@@ -83,7 +83,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 4 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
index dd83b8f9e95578..18047afc3c96e1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
@@ -57,6 +57,6 @@ Mac OS
| | |
| --- | --- |
| コマンド番号 | 454 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
index dcecc17896b5f9..8c1f301e354e1d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1596 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
index 5501c8eb32d6e5..92e6bbd5b5e1cd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 98 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
index 6b15aa8e7073df..13e19a9db00bfc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 314 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
index eacc88f66dcae8..5d0a1e8bf776b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 32 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
index 49e0c3171185fa..0198d5302c45a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
@@ -51,7 +51,7 @@ MODIFY RECORDを使用したが、ユーザがレコードのデータを変更
| | |
| --- | --- |
| コマンド番号 | 57 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
index 315bb3f60c29d6..e503d399c71f03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
index 3d7f196b139788..86eb40810ec8af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
@@ -145,6 +145,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1713 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
index 8f0620571826cb..1594e534f6802a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 24 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
index e352925a2921d9..c739620f05b141 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 468 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
index d40d41dc851e31..a446af03e3bd33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 540 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
index 405443d24283f3..e8a79e3de597c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
@@ -116,6 +116,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 718 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
index 057144fdbf9a35..ed7dcf09448743 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1611 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
index 5093f25ada1f68..09c9de93c84e7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ New listを使用して階層リストを作成した後は、以下のことが
| | |
| --- | --- |
| コマンド番号 | 375 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
index ca72808b29dc0a..52a1c3f6e972f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
index e89edb42cceacf..70b2f34ebc53ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
@@ -118,6 +118,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 317 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
index 218f9d1b42aa9b..69e3651a8291a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1526 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
index d611607a45a501..400083fdad2390 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ NEXT RECORDでカレントセレクションの最後を超えてカレントレ
| | |
| --- | --- |
| コマンド番号 | 51 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
index 91b68595d6a4b1..1158b30fc6c391 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 448 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
index ee6148f14769f9..089e82cc9221cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 993 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
index c650f578590f66..39bef0b6aaac68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 34 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
index a72bcff079cb1c..982912cc272e46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1052 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
index 61dfe51832d4fd..a7f5f4c19a4f0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
@@ -21,16 +21,13 @@ displayed_sidebar: docs
| **ランゲージ要素** | **補足** |
| ------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| オブジェクトプロパティ値 | **Null** をオブジェクトプロパティと比較すると、プロパティ値がnull あるいはプロパティがオブジェクト内に存在しない場合にtrue を返します。 |
| オブジェクトプロパティ値 | **Null** をオブジェクトプロパティと比較すると、プロパティ値がnull の場合にはtrue、それ以外の場合にはfalseが返されます。コードの単純化のため、**Null** をオブジェクト内に存在しないプロパティ(つまり[Undefined](undefined.md))と比較した場合にもtrue を返します。詳細は例題4を参照してください。 |
| コレクション要素 | コレクションが連続しない要素を追加したことで拡張されたとき、その中間の要素は全て**null** 値を自動的に受け取ります。 |
-| オブジェクト変数(*C\_OBJECT*) | 以下の(\*)を参照のこと |
-| コレクション変数(*C\_COLLECTION*) | 以下の(\*)を参照のこと |
-| ポインター変数(*C\_POINTER*) | 以下の(\*)を参照のこと |
-| ピクチャー変数(*C\_PICTURE*) | (\*) これらの型の変数に**null** 値を割り当てると、コンテンツがクリアされます。この場合、[CLEAR VARIABLE](clear-variable.md) コマンドを呼び出すのと同じ効果があります。 |
-| バリアント変数(*C\_VARIANT*) | |
-
-**Null** 値は引数としてメソッドに渡したり、あるいは戻り値として返すことはできません。
+| オブジェクト変数 | 以下の(\*)を参照のこと |
+| コレクション変数 | 以下の(\*)を参照のこと |
+| ポインター変数 | 以下の(\*)を参照のこと |
+| ピクチャー変数 | (\*) これらの型の変数に**null** 値を割り当てると、コンテンツがクリアされます。この場合、[CLEAR VARIABLE](clear-variable.md) コマンドを呼び出すのと同じ効果があります。 |
+| バリアント変数 | |
**注:** このコマンドはスカラーデータベースフィールドと使用することはできません。データベース内のNull 値はSQL エンジンによって管理されており、[Is field value Null](is-field-value-null.md) と[SET FIELD VALUE NULL](set-field-value-null.md) コマンドを通して管理されているからです。
@@ -110,7 +107,7 @@ displayed_sidebar: docs
## 例題 4
-オブジェクトプロパティを対象に、このコマンドおよび [Null](null.md) コマンドを使用した場合の結果の例です:
+異なるコンテキストにおいて、オブジェクトプロパティを対象に、[Undefined](undefined.md) コマンドおよび [Null](null.md) コマンドを使用した場合の結果の例です:
```4d
var vEmp : Object
@@ -118,13 +115,13 @@ displayed_sidebar: docs
vEmp.name:="Smith"
vEmp.children:=Null
- $undefined:=Null(vEmp.name) // False
+ $undefined:=Undefined(vEmp.name) // False
$null:=(vEmp.name=Null) //False
- $undefined:=Null(vEmp.children) // False
+ $undefined:=Undefined(vEmp.children) // False
$null:=(vEmp.children=Null) //True
- $undefined:=Null(vEmp.parent) // True
+ $undefined:=Undefined(vEmp.parent) // True
$null:=(vEmp.parent=Null) //True
```
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
index 5862489f390fbe..3c4edadc13c47c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1730 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
index 580aa2d447fa7a..0c9d646a5f5286 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
@@ -170,6 +170,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1225 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
index f1d5c2e91610b0..0f27f7bf48ff99 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1720 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
index bf139f9dfaeedf..0fabf29979bd6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
index 2180cb0560476f..b02516e140c0c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1232 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
index 70f161b361bf21..494d253f1ee308 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1230 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
index 959bbd6aa4e88d..b590ebf962c719 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
@@ -228,6 +228,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1224 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
index dc3c1c280786e4..a10cee5cfbb474 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
@@ -56,6 +56,6 @@ Polygon というクラスを作成した場合を考えます:
| | |
| --- | --- |
| コマンド番号 | 1731 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
index 88b41d0354a1e7..d56b56751736e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1231 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
index 74aad11d78371d..2dd07771af65e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1297 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
index 35ef4769f78a7d..f6282e05e0d1c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1759 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
index 888971585b90f5..95c6f7f41516e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1719 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
index 3b5d9f9b98453a..5192ac657f9344 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1226 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
index 5505e7c901ed5c..9ac82a87588f39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
@@ -138,6 +138,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1227 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
index 9adaecaa96b410..3282706d89cbb2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Lea の "age" というプロパティにnull を入れる場合:
| | |
| --- | --- |
| コマンド番号 | 1233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
index d1d0abc9316246..0e9f67391dcb54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
@@ -202,6 +202,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1220 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
index 650f357d5fda83..e16f186271f126 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1718 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
index 6d2d28bdd907c3..cc9538cbc22783 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1111 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
index ca962c575ba315..1558809d82d7e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1457 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
index 8cd16c00b88308..f83d7bf8a06899 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
index 13802f4fe5f0c0..920a5154f3f88b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 717 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
index bd76f6a7257771..b73c580c057b36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
index f1fe87da8a09f0..e892a37307225b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
index 95ad466c935b90..745bc4449c9cef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 663 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
index 1e70824b173ed5..2151dab0a49c35 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1324 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
index 940ac3391ab508..a6d58de5b25cad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1265 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
index aab2ffddd290d9..f414feeb59ca18 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1184 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
index d7a7a5406a9fc6..cc8b121ef3c3f4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1079 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
index fda04b02fa16ea..1815bd730d2e8b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1067 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
index 0059cb64222b62..607ae3178d382c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
index 8d022747e34319..72d64a8377dc4c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1073 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
index dbaf796d01c011..c38c7176778efc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1178 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
index da5e8e2fc4ed00..389f486d9bf3db 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1070 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
index ccf4b6489ac1fc..80422650ab6715 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1071 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
index 3430f7fc270b99..dd67c70e82fbbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1069 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
index b2fc34a02b6682..26bfb2faa25950 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 894 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
index 2d68405c55cb86..99a1b062dba0e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1182 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
index 56ebc1fa0f1daf..d8c97c0dd32aed 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 707 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
index ee246f6bf42cb5..83f425078f683e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1247 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
index 9f668348b35f4c..124a0bb4271dba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1180 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
index 95d65c6a43ebde..8390873ce1de76 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1072 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
index 222bc6cfe9ba19..d6472d6038ed96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1267 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
index 11c8dbed8e3d5f..6b54718ef7bb7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1245 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
index aa86f6eb124211..553025333d7d71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1243 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
index 5743d9a362a3ec..1f6ffaeac49521 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1254 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
index 8e30190a2a6465..4cb064d68de077 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1087 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
index 03a0043c74068a..39258bdcb6ed00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1296 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
index a2a55e1d7e743c..287db626f798fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1124 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
index 13e2eeaeccbfc5..3f2ceafd6e0a4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1241 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
index b5b75ac156340b..5f034e5a82df0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1176 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
index 8103008aa31f54..c86bfc06f74043 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1074 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
index 045137c13fc169..8e658b794ead81 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1114 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
index 53c387656729be..c39e75eedb9464 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1076 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
index 13ec0b33298026..d46c361a8609e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1186 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
index 10bd20dbf593a1..34076a20f8076f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1258 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
index 18c3f261eb3701..872d4b17bdc4f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1148 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
index 502cbd3859f081..afa7cec219abf5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
index 725e5a5263f3f8..2bc90825a1446a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1139 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
index d35e705bf0d974..1e265a2caf4fd7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1283 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
index 25cbbb175d96ff..69ec3e026fd4dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1250 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
index b891ff8e79a076..5a5680a83c8f40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1068 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
index 2400211a1a9e52..2c0821a4f3b030 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
@@ -100,6 +100,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1300 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
index 206a9fb4861449..25ca120930ca2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1743 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
index 8991ad306e48f3..b47b44ddbe9063 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
index 50789763b2a3e7..8a7773aa67ec8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1075 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
index 2d57bc0f90c526..2a74e639bb9f20 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1261 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
index 3046c90cbe08de..fc3f71eca80aa6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 664 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
index 421518db9d67f2..ff0f705bf07595 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1259 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
index afe895a6c6fc8d..ecb949b6b7abe2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1173 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
index 71833b0fd3df91..ad98415edb4976 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1262 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
index 4a91fe219a445d..092481fdc16931 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1251 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
index f815f6557b325c..a047849bf939cc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1248 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
index 72c3e836b7bf1e..be65bffd5dc4c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
@@ -72,6 +72,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1323 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
index 47686dcb9efd6a..1175ca81945906 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1264 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
index 599ee023c682d1..b0ccb206d19c6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1183 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
index 786bf62b29a1b4..d14184f99f4e37 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1123 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
index f506505d8a0e97..73b3e5bcc4af68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 238 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
index 7ee9e50f358161..2e9e5dfd5cd254 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
@@ -172,6 +172,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1239 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
index 03dac1dd6ddf68..71f8f850794a45 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ OBJECT SET FILTER は、入力フォームおよびダイアログ用フォー
| | |
| --- | --- |
| コマンド番号 | 235 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
index 8c60e69b40498d..9c0ec26a940222 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1177 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
index 32af2c060926ed..adb8991a807910 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 165 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
index 7a9424554da4ea..913fd76af8caf6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 166 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
index 9bbcab401003cb..e2e4ec33a14d7f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 164 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
index 94091e29755b04..31936f6279795a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
@@ -335,6 +335,6 @@ This example formats a date variable and a time variable using [customized forma
| | |
| --- | --- |
| コマンド番号 | 236 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
index 2d23668d9f6c2a..81e6489f647024 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
@@ -134,6 +134,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1181 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
index 895935c9fb653d..0c600ab2e9bf24 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 706 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
index 3e222ba9883031..ccfcdbad0d5f91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1246 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
index 590df5ac2f3e1a..ca063e311311c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1179 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
index af3f197d530059..6e6365868bfb38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
@@ -95,6 +95,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 237 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
index 277661eee070f2..46cd4c392dd9b1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
@@ -133,6 +133,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1266 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
index cbd7dd656ac7f4..58cb60826398c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1244 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
index 3c50aee350e282..0da498ea6ec44e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1242 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
index 1ad37a93d2e1e5..161e86b63283dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1253 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
index b76735055d34d2..4765a44c372c66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1295 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
index 97ca66781ba9ff..21af0af22d20c3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1240 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
index 8fc6d1040d6f5b..e3d6c11245fee4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1175 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
index 5212d5229878ca..6d1ad2429dda84 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 628 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
index 033f1f02c5298f..e864d4d67a9d42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
@@ -97,6 +97,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 906 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
index 68361413d80cd2..523342cac781fb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 843 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
index 9303ebae6d3695..6ecdbadba20638 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
@@ -93,6 +93,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1185 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
index fde8f8575f35ed..6e69bc024ed172 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1257 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
index 0baf893bcc5f94..e2d9bd3c081811 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1784 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
index 7db91a2b1cc85d..f14aebb2c6a1a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1138 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
index 3cbd457f0483ec..86ff4990666747 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1284 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
index 8aed09e93f19e1..f44c04b08fae38 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1249 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
index aa5a064baf1613..c26e4235474468 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 194 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
index 8d951451496f06..7789f29ec04ca4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1742 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
index 7aecb8283afa23..314892c46b7667 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
index 0ca9bd5a0f88e6..39726d4301f498 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 603 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
index bf70a09c0eb162..18c1fa33013757 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1548 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
index 82fc67ddeadbfa..ade061baa83c95 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
@@ -31,7 +31,7 @@ OLD RELATED MANYはリレートテーブルのセレクションを変更し、
| | |
| --- | --- |
| コマンド番号 | 263 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
index 85572db65bf7e3..b3de2d30f6a056 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ OLD RELATED ONEは、更新前のカレントレコードの内容にリレー
| | |
| --- | --- |
| コマンド番号 | 44 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
index 77b10bf6ab68ea..c08421f6211e56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
@@ -47,6 +47,6 @@ Oldは、すべてのフィールドタイプに適用できます。
| | |
| --- | --- |
| コマンド番号 | 35 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
index 9941a782d88619..1cf0096e6683d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
@@ -187,6 +187,6 @@ IO ERROR HANDLERプロジェクトメソッドは以下のようになります:
| | |
| --- | --- |
| コマンド番号 | 155 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
index 1d3e16f90c4217..d823f28f8d9748 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
@@ -120,7 +120,7 @@ Ctrl+ピリオドが押されると、イベント処理メソッド内で*<>vbW
| | |
| --- | --- |
| コマンド番号 | 190 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
index 6e60022595d47f..5b3cd7413f786a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-exit-database-method.md
@@ -112,6 +112,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905252 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
index 5ee2d0edd9b56e..3118af1400826e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-rest-authentication-database-method.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 3367 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
index 2a46d487876dc1..acad53d62f5c07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
@@ -141,6 +141,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 16001 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
index 7ecce07bac10ba..d92d2440c98df9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/on-startup-database-method.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905263 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
index 57154ec143a506..1443d0aab22b36 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 189 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
index cdbd83be334b38..a96bd6679570c4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1047 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
index 73f8256a80f7bc..fa2412e4a3f72f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1304 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
index 7d3e3a1792a4dc..d441ca70233ee8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 312 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
index ea702509bf79a8..b94492d7df664c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
@@ -79,6 +79,6 @@ End if
| | |
| --- | --- |
| コマンド番号 | 1321 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
index 1ef3f9f55880a6..0f2067abc2532a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
@@ -92,7 +92,7 @@ Open documentを3のモードで呼ぶと、関数は?00:00:00? (ドキュメン
| | |
| --- | --- |
| コマンド番号 | 264 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
index f06c54e09e5300..1a401e6e383182 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1303 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
index 08037ecbaa8c44..5679c0d274c1b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
@@ -145,6 +145,6 @@ $myWin :=Open form window("/RESOURCES/OutputPersonnel.json";Plain form window)
| | |
| --- | --- |
| コマンド番号 | 675 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
index c4095f21a2a8b5..9af93550e519a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 995 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
index 59bd9470f60a8b..b83c79e49834d9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
@@ -103,7 +103,7 @@ Macintosh上で、この例は“MyPrefs”ファイルを開きます。
| | |
| --- | --- |
| コマンド番号 | 497 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
index 3847d29ccbdeef..da72aafd23c1ce 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
index 3caf1d9fdabb52..366498f8b14b8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1018 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
index d7c73cfd6a4cbc..ade633fa3839ee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
@@ -144,7 +144,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 903 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
index 9935a5f669bdd3..738ebcb47f849f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
@@ -85,6 +85,6 @@ macOS 環境下では、アプリケーションを探すのに、インスト
| | |
| --- | --- |
| コマンド番号 | 673 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
index d36b82b1e38b3c..cce0803f7b4650 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
@@ -140,6 +140,6 @@ CloseColorPalette メソッドは[CANCEL](cancel.md)コマンドを呼び出し
| | |
| --- | --- |
| コマンド番号 | 153 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
index 732343dbb82a7a..76f18a2b60acae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
@@ -120,6 +120,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1407 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
index 6cd6fbcde06d03..71a2b061cecb54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 300 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
index c93b3d92b76d46..43eae1870f828e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
@@ -205,7 +205,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 49 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
index b6b0d361cb84e1..38bdbf8a1839b7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 328 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
index 60a36795cc8362..d2eff7728039e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 6 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
index f22a8f3f504534..8819351dc4ddf6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
@@ -110,6 +110,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1576 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
index 57c8d170aaf5d4..6ef6f5addff6f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
@@ -98,7 +98,7 @@ You want to drag some private data from different objects in your form. You can
| | |
| --- | --- |
| コマンド番号 | 400 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
index 30873331f1b0ee..8669868f14a6f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
@@ -178,6 +178,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1547 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
index 682ce3516bbd13..06645644caf231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1293 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
index a46ffbdd5ed860..cd4295e1e7b9ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 319 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
index 7368d31cb1453b..dcf181ca1edd8f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Codec IDは以下の異なるフォーマットで*codecArray* 配列に返さ
| | |
| --- | --- |
| コマンド番号 | 992 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
index 48b466f846b89e..44b7f33c76f293 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
@@ -105,6 +105,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 564 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
index a5466828360fb2..108ebd16d4be2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 457 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
index 2aa8e3e98a5014..d025cfee0f2a2b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 356 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
index 9b1ef6e57d6f31..6237dc33780215 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
@@ -55,7 +55,7 @@ Codecは拡張子 (例 “.gif”), または Mimeタイプ (例 “image/jpeg
| | |
| --- | --- |
| コマンド番号 | 692 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
index bdcee83682e224..f06d6e9ecf2365 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
@@ -62,6 +62,6 @@ Windows上でのWAVファイルの再生方法を以下の例題で示します:
| | |
| --- | --- |
| コマンド番号 | 290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
index b25f430a722109..4376df51e66d54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LISTは、4Dに統合されたプラグイン (例: 4D Chart) やサー
| | |
| --- | --- |
| コマンド番号 | 847 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
index f0467efc848b55..815a202fa5e0e8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 177 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
index ceeed1471b2075..a44ac70fb024b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
@@ -105,6 +105,6 @@ Windows上 (左) とMacintosh上 (右)で表示されるポップアップメニ
| | |
| --- | --- |
| コマンド番号 | 542 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
index 154c3834e4367e..4e1d2c56c0f644 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
@@ -121,6 +121,6 @@ Position関数の使用例を次に示します。結果を変数*vlResult*に
| | |
| --- | --- |
| コマンド番号 | 15 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
index 6ec74faf414aee..ee8bc2817a19d4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 466 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
index d0b8e33f2202bd..f07e8fe0917931 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
@@ -79,6 +79,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 467 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
index 1793597723b6fd..ed10b1105689fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 465 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
index 0a99f79ae92d18..6bd81c33ad2df6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 329 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
index 184a0ceb286890..43b8ffeb050e5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ PREVIOUS RECORDで、カレントセレクションの前にカレントレコ
| | |
| --- | --- |
| コマンド番号 | 110 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
index 481ed22a49dc5d..3dd2ad646f005e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
@@ -113,7 +113,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 39 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
index 80ff710d7a2b94..181d1be68814b5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
@@ -102,6 +102,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1095 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
index 8e17afd8d5e49f..abff6181864667 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 785 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
index 675d61165fe4d2..c9da56db9d3404 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 71 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
index 1e299999d57baf..90b78146afb8de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
@@ -67,7 +67,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 60 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
index 8d24a6c132ffd8..3d02ea901d23a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
@@ -58,6 +58,6 @@ BLOB が正しく生成されるとコマンドは 1を返します。カレン
| | |
| --- | --- |
| コマンド番号 | 1433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
index 45509868dc2fc4..e86d14495b6d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 106 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
index c724e890655c40..04c15e72559b86 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ macOS上では、プリンタ名 (プリンタサーバの名前) を使用し
| | |
| --- | --- |
| コマンド番号 | 789 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
index e84ffb8a2d9a07..13ab2e56a4e16f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 275 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
index ee980a70662a56..21b853ac6760af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
@@ -78,6 +78,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| コマンド番号 | 816 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
index 409ec43d9d7326..a1f78b8fc9bfaa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 672 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
index 67589a64fdcb7f..f8b71da815348b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 330 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
index f21d98b5dbfe98..0bc372326db166 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 176 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
index 7a93af04e0a44f..d6f729b2349dae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 771 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
index 518c35dfe16f81..1a386ba81e82ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 764 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
index 8676ab404443e1..6f7c58aae4562b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 749 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
index b48c83dbb549e8..711fe4e512b7a8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 754 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
index 00cbfde4641cdc..b7b3289d4b14db 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 791 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
index e421c5e01511de..02ea436f58ef01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 776 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
index f7f72d5f534155..43865816588d86 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 795 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
index 4484238973078f..09fa981f1115b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 798 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
index 56a285a8f65e56..465e59f4be8eb3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 792 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
index 8011428cdc7859..4a213c06a66fd0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 756 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
index 9b4c1ab4829372..09cec2bb24f78c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 773 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
index 9451f09948fd49..d0a27e6055e418 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 747 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
index 4339c13827fa01..0975c7219dfbd6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 775 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
index ea4beb4ef7a7a1..23c954545d6a8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 751 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
index 8507ad64591a00..a4ad289db44c49 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
@@ -113,7 +113,7 @@ QR GET INFO COLUMN コマンドを使用して、同様のパラメータを取
| | |
| --- | --- |
| コマンド番号 | 766 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
index 52200337bb73f1..0bc8b74944a9a2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 769 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
index e17830f54f07f4..2448d2efd60713 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 755 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
index 384a7e0a448462..097b3ab8c5372f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 758 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
index 3f9774233039a5..98aab690ca97ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 793 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
index 22428b444b48b7..de548f28eb62b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 753 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
index 6ab651c77620ab..76f9a8bde0d3b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
@@ -70,7 +70,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 760 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
index 5c2730e0826347..1d07c7389b3c46 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
@@ -81,7 +81,7 @@ QR GET TOTALS DATA コマンドを使用し、指定したセルの詳細を取
| | |
| --- | --- |
| コマンド番号 | 768 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
index e0e2fa0b29568b..d9a469dbac8f06 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
index 80bf54c10ee6e1..92f3aad2322f15 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 748 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
index ea92281896cc5c..77a0dce35eb645 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
index f165ad52338b88..d21befd1672eee 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1320 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
index d4067cbd866c03..d51c2ef3889453 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 735 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
index 02fe0d09f674f4..a3313cbd9d157c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 790 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
index bc1ea37696fc83..29844ac80180b6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 770 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
index 238379c57fbeb5..bf5a88f7256792 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
@@ -137,7 +137,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 197 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
index 937e9c1917c05e..e75d9ad1329a09 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 746 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
index f2625bd094b8f5..150f73f0f1c497 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 796 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
index 6bc580ef9dab93..6c55411f687c29 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 797 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
index 321f0a209f7e9f..b2bf808b5b34a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 745 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
index e0ed10fa15b7f4..c87a00ba624fb7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 772 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
index abf50332d58419..629a24d6adbfca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 774 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
index 235578228386ea..45f663b4c2bce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 750 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
index 5d6b013a010f0c..302cb9280da28a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
@@ -113,7 +113,7 @@ QR SET INFO COLUMNコマンドを使用しても、すべてのセルに対応
| | |
| --- | --- |
| コマンド番号 | 765 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
index d94a7f52977195..dffb2b2e194154 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
@@ -56,7 +56,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 763 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
index 2813dce8cda702..653a2817a19940 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 738 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
index 7393497abf83b2..5ab22625e39e1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 757 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
index 2e243ed62d2bac..a041324811eeff 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 794 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
index 5afddcdab084ae..327d71b9fc8fa4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 752 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
index 05de61a0254ced..f6b7e8394e1e42 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
@@ -89,7 +89,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 759 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
index 4b1d2d1e4bf298..892c27d232a0f0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
@@ -103,7 +103,7 @@ QR SET TOTALS DATA コマンドを使用し、特定のセルの詳細を設定
| | |
| --- | --- |
| コマンド番号 | 767 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
index 8c3133ea690fce..58da97eeb171b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
@@ -43,7 +43,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 761 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
index 9d15132a751165..c56b922a2f78ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
@@ -414,7 +414,7 @@ GMT設定を使用したくない場合、これらの設定を以下の様に
| | |
| --- | --- |
| コマンド番号 | 1331 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
index ecf84a677ac322..cc22f5da75dba8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 292 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
index 8ae66ab94ab6e0..60e172725f622b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 48 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
index e874e539ca77ed..d233180da59ba8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
@@ -162,7 +162,7 @@ QUERY BY SQL コマンドを使用する場合:
| | |
| --- | --- |
| コマンド番号 | 942 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
index 7c42e726b685ad..2ecf71afa40ce6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1424 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
index 0f8337a44050c6..d0b33dc7cd20af 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ QUERY SELECTION BY FORMULAは[QUERY BY FORMULA](query-by-formula.md "QUERY BY FO
| | |
| --- | --- |
| コマンド番号 | 207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
index 9c53d8f59d3c6e..b0600e5a2a048d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ QUERY SELECTION WITH ARRAYは[QUERY WITH ARRAY](query-with-array.md "QUERY WITH
| | |
| --- | --- |
| コマンド番号 | 1050 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
index d985ef4917150d..051a3b2c9d8371 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 341 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
index efb206ca2072f5..4eb7ca69e76d0b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 644 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
index 0e5bf21d11836c..2d2632b322918c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
@@ -316,7 +316,7 @@ N対1でリレートされた3つのテーブルがあります: \[City\] -> \[D
| | |
| --- | --- |
| コマンド番号 | 277 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
index 5ca439614fb8e1..e05149f142cb1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 291 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
index b93a1d1e4635a0..823a2c2a76824b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 100 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
index 4d071900aa3e0a..7907047e2306e6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 362 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
index d7368d5b0a6660..839d3bfef7bc0e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 145 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
index 209298c5269f81..6c64343438861b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 678 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
index 71f1a37cbd548d..60a3f5d11c12b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ READ WRITEコマンドは、レコードを修正しその結果を保存しな
| | |
| --- | --- |
| コマンド番号 | 146 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
index 660a939f4faad6..1c45f33db69e0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
@@ -140,6 +140,6 @@ MacintoshとPCプラットフォーム間でBLOBを交換する場合、この
| | |
| --- | --- |
| コマンド番号 | 552 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
index d9661f3444fec5..9b3d0128be45df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
@@ -69,7 +69,7 @@ Mac OS Xのシリアルポート バッファーサイズは、理論的には
| | |
| --- | --- |
| コマンド番号 | 172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
index 45383934a71ecf..a23b06d6e5935e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
@@ -119,7 +119,7 @@ RECEIVE PACKET呼び出し後、エラーなしでパケットを受信すれば
| | |
| --- | --- |
| コマンド番号 | 104 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
index d9d7f8e4162d3b..146b04c9588231 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
@@ -156,7 +156,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 79 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
index 40e2f48b688699..e9d48c0e0fb0e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 81 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
index 9bd15e95dbd3bb..c5d154c14dad8c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 243 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
index 1d8f9f98882279..865301b8edf932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 76 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
index b7c8b0dd4e3ac1..21a2df69c35133 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 195 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
index c9fae875e3bde1..400cf8cebee657 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 83 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
index d492d56f40287b..b39dd822e52a54 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 456 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
index aa41a944b9aa82..36a5223f1d05b0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 174 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
index 2e9e13d43f088c..a5551b10c4f9aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1829 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
index 4bd9c6db1d290a..1ac6d28d88d9ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 351 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
index 5c41ebe938b4a2..4f74e46a38bcfb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1336 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
index dd092552c4b0cb..e56372b61581bc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1126 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
index 51948e4f9f6e9b..c4616c3079fff0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
@@ -138,7 +138,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 648 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
index 85ab02fb3c4e06..465726e2e5f655 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1638 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
index 62b51fda4fd4d9..fb1a943dd0aedd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1635 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
index 977699dfdf623f..d365765daf521f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 38 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
index e553ab939ad457..a331203624f497 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 340 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
index d7ec2a447d5c49..0893c582f90f58 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 262 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
index 05f308457d447c..bb7a549c5c4f07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 349 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
index d4710689b8fc35..401a373d3166b9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
@@ -94,7 +94,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 42 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
index 6853c047494b97..e542e0b55a0294 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 978 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
index c0b95065fb380e..3d40e3a0d4ef1e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1135 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
index f300ea80ecc093..2d7e3db5bcbb3b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1739 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
index 9bcc6615607a80..9b4f2e82dfec7c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 561 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
index ca125a44e73063..976210156397b4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 567 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
index e1d884956cddf0..c9b25dcbb53d85 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ Replace stringの使用例を次に示します。結果を変数*vtResult*に
| | |
| --- | --- |
| コマンド番号 | 233 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
index c94a36e3cd375e..d9e9cf3ba59761 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
@@ -86,7 +86,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 163 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
index d8317c8e007431..4100d2ebb5ebe4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 890 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
index 671bc4f16b4afc..d809f3eda443b3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 695 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
index 13e2d6540c7ba6..daec9fb5f6f96e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
@@ -115,6 +115,6 @@ DRAG AND DROP PROPERTIES コマンドの例を参照.
| | |
| --- | --- |
| コマンド番号 | 394 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
index ff21959dfb80af..3a321fa80c201b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ RESOURCE LISTを呼び出す前に配列を事前定義する場合は、*resIDs
| | |
| --- | --- |
| コマンド番号 | 500 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
index 4c920d33c65a58..2fe50abb58d0d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ RESOURCE TYPE LISTを呼び出す前に、*resTypes*配列を文字列配列ま
| | |
| --- | --- |
| コマンド番号 | 499 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
index f0e577ff7dd9e2..381e1073f6902a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1292 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
index 7712ce906be5b0..86d0f731dc41dc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 889 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
index 006efe4c519f84..5f0b9326e6588a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
@@ -39,7 +39,7 @@ RESTORE コマンドは*OK*および*Document*変数を更新します。復元
| | |
| --- | --- |
| コマンド番号 | 918 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
index 42fa77c1b1d8f1..cef524d4d8d19d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1294 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
index 903f4a2a800d3f..5923edc0509c10 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 320 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
index ffd99ad7e06bd8..1f665e36b94217 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1386 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
index a4f88386072f99..0424b6bdd64f39 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 712 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
index 351cfcfa2d7131..dd553fea789d24 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 94 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
index 5c50c89ab66ee9..4d86e5bad61af4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 384 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
index 6d5b306690691d..21f55e60eba8dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
@@ -56,6 +56,6 @@ SAVE RECORD が必要とされる場合を次に示します:
| | |
| --- | --- |
| コマンド番号 | 53 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
index 5f9595551cbd50..a69e734e5f6e13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONEは、ロックされたレコードを保存しません。こ
| | |
| --- | --- |
| コマンド番号 | 43 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
index 7cfaaa068ff2a0..8ae1f2b90d3327 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
@@ -47,7 +47,7 @@ SAVE SETコマンドは、時間のかかる検索の結果をディスクに保
| | |
| --- | --- |
| コマンド番号 | 184 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
index a9ee07c07990e8..2adbde63064770 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 75 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
index 29ea30a9e2b4d4..b8426c9e10f6aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 857 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
index 5f5e494204d981..e63af396ed4c5a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
@@ -80,7 +80,7 @@ else
| | |
| --- | --- |
| コマンド番号 | 856 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
index 5e88a3ce981340..eabbc740b64e3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
@@ -52,7 +52,7 @@ XMLのコメントはXMLインタプリタが内容を解析しないテキス
| | |
| --- | --- |
| コマンド番号 | 852 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
index 513a5a9759e3c3..614ba99508ebbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
@@ -52,7 +52,7 @@ DocType文は書かれたXMLのタイプを示し、使用される Document Typ
| | |
| --- | --- |
| コマンド番号 | 851 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
index 50b675db5d57ee..ebcb4b0939420c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 855 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
index 385fe68897375e..90100d8ce5d993 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 854 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
index e16c15d08c6408..1c6b59cb9aac63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 878 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
index f5f10d4a9529f9..8c085fd9f66fbe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 874 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
index e1c069ee456a8e..087727c9d9599f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 873 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
index 01116a29299926..10c7ac3e97aaa4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ TextまたはBLOB 型の変数を*value* 引数に渡します。BLOBを渡す
| | |
| --- | --- |
| コマンド番号 | 877 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
index 5d1a6c8bbae3f2..2aa9b879559e57 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
@@ -67,7 +67,7 @@ tAttrValues{3} には "333"が返されます。
| | |
| --- | --- |
| コマンド番号 | 876 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
index f47808ff2b7d5d..a678782cceade4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 879 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
index 2041c58912f006..5648614db0c4f4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 860 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
index 31b6ec9d9163be..7a8da502616ecc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 875 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
index 94da5e14b9f3b5..8b2a863f05b925 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ SAX OPEN XML ELEMENT ARRAYS は日付、数値、ブール、そしてピクチ
| | |
| --- | --- |
| コマンド番号 | 921 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
index 5995aeadfc4ea0..3234d683bd8b40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 853 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
index 50286f21def69b..c269208222e06e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 858 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
index f2385230821f9c..6ae2cc4e06262f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
@@ -55,7 +55,7 @@ SCAN INDEXは、インデックスフィールドにのみ使用できます。
| | |
| --- | --- |
| コマンド番号 | 350 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
index 4bb12b48d4c156..d7ae9c2d360b56 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 438 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
index 3e48f8aae8f459..e84764dc024d3d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 439 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
index dcc8c2f82cd59c..ec199e992e9934 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Macintoshでは、Screen height はメイン画面の高さを返します。メ
| | |
| --- | --- |
| コマンド番号 | 188 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
index d5bf50c4381555..50bc609dfb8b43 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Macintoshの場合、, Screen width はメイン画面の幅を返します。
| | |
| --- | --- |
| コマンド番号 | 187 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
index 3e69e8935f3d6d..7ab4c2b72c8fdc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 905 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
index b4271354d648c4..68eeb0afde1956 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
@@ -92,7 +92,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 670 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
index 342973dd799de8..51f4a13e230270 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 381 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
index c872887f7bc3d2..5fdcb425d4b465 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 630 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
index bdcd145b10f9b2..ec8fc7293d0b98 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 956 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
index c217ee754decc0..b19608ea9a4a33 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
@@ -91,6 +91,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 379 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
index 9e6e2e94dde4af..a0676c83c7bafb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 246 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
index 5eafa93784777b..82af3b851647cf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
@@ -113,6 +113,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 368 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
index 588865037e4a9d..9a5ee35061f815 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 260 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
index 57347c4648ef06..50268981687e40 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1234 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
index 5b3bf1d33b2af8..b02b4796d20fef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
@@ -44,6 +44,6 @@ Self が上記のコンテキスト以外で呼ばれた場合、Nilポインタ
| | |
| --- | --- |
| コマンド番号 | 308 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
index d4fab616cdb1d1..266c72fbddeb63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
@@ -158,6 +158,6 @@ var $T_Sema_local;$T_Message : Text
| | |
| --- | --- |
| コマンド番号 | 143 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
index cb80a3a7429841..0c12646b72d84e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1632 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
index 870b6335230177..8b5625576e8741 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
@@ -86,6 +86,6 @@ SEND PACKETコマンドを使用する前に、 [SET CHANNEL](set-channel.md)
| | |
| --- | --- |
| コマンド番号 | 103 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
index d9c2226dd70ac5..712daccdc3ec0f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 78 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
index 23deef7846c2ad..786e3ec4e0794e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 80 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
index f8f841edde6a44..02e5ed07d6a15b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 244 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
index 4fa33b2f067cb7..a9c398dcf0cd2c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 316 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
index 70634cb6d74a44..7592912b3f4f59 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1762 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
index 3b66437ea25bf7..03bc79fa869d0d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1131 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
index f44283bd27f8b3..d05ac5180787e9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 310 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
index f1ec974f308542..e0139f7c659c91 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ BLOBに新しいバイトを割り当て、それらのバイトを特定の値
| | |
| --- | --- |
| コマンド番号 | 606 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
index 68de9523fd191b..9afb79e204c500 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1425 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
index 920da0becf89f7..52681fd6dcaad7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
index 81a4f6c1ba14cb..fad6d3573543f8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
@@ -179,7 +179,7 @@ SET CHANNELコマンドの第2の形式は、ドキュメントファイルの
| | |
| --- | --- |
| コマンド番号 | 77 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
index fa21e6154785e5..5bd3cdb4495dbc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
@@ -59,7 +59,7 @@ Windows 環境下でのPDF ドキュメントの作成は、以下のように
| | |
| --- | --- |
| コマンド番号 | 787 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
index 34555fe8d11738..09618d13c0ca30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 469 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-localization.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-localization.md
index d217a5b65f6692..ae9b4cc928ad77 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-localization.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-localization.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1104 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-parameter.md
index cd85497e741d91..aefdaed03c1b19 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-database-parameter.md
@@ -1090,6 +1090,6 @@ QUERY BY FORMULA Joinsセレクタで、カレントプロセスの、フォー
| | |
| --- | --- |
| コマンド番号 | 642 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-default-century.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-default-century.md
index 424cf55d1c7793..de78260223241a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-default-century.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-default-century.md
@@ -68,6 +68,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 392 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-position.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-position.md
index e2556177549b4e..611e4febfe2d03 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-position.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-position.md
@@ -36,6 +36,6 @@ SET DOCUMENT POSITION コマンドは、引数*offset*に渡す、以下の読
| | |
| --- | --- |
| コマンド番号 | 482 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-properties.md
index cd53908bdb7f9b..5a2e824afb6c23 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-properties.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 478 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-size.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-size.md
index e3321b3d06724d..e2791ab4a819cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-size.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-document-size.md
@@ -33,6 +33,6 @@ Macintoshでは、ドキュメントデータフォークのサイズが変更
| | |
| --- | --- |
| コマンド番号 | 480 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-drag-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-drag-icon.md
index f6c40a459f0ebe..e58f827c8d3535 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-drag-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-drag-icon.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1272 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-environment-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-environment-variable.md
index 8d265d1dc530b2..cd21100d2644f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-environment-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-environment-variable.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 812 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-external-data-path.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-external-data-path.md
index bf07e06440a07e..9dbec5219e7e05 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-external-data-path.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-external-data-path.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1134 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-relation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-relation.md
index 3dc792d1cc8383..1751500339a50d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-relation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-relation.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 919 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
index 905839ed0f4509..e59e70d39ccf71 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 602 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
index 4e5266a10d193d..6b97e50e7e41d6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
@@ -34,6 +34,6 @@ NULL値は、4DのSQLカーネルによって使用されます。詳細につ
| | |
| --- | --- |
| コマンド番号 | 965 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
index eca129bace620e..d89ea46ff5e831 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 975 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
index 9cd1af7694f45e..f9653abd5cf183 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
@@ -49,7 +49,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1737 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
index 69cc368cf803e6..db7d0217041ffd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
@@ -62,7 +62,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 614 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
index 54b6136b021268..449325822b816d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1801 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
index 24bfc31b7e50cd..60bebfb6a5cb00 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
@@ -54,6 +54,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1401 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
index e221f07a79ea13..f16cba6e340dc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
@@ -94,6 +94,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 344 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
index 23f2cc41adfa20..6045310507c202 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 953 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
index 7a120202d20215..6598e65cfb4b1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 950 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
index 2fe6abb929f276..6f97a88478fafc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 986 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
index 29f7be93e03fc7..e84b9a209cf94b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
@@ -85,6 +85,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 386 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
index 3296aaf077fb97..a04011401ad443 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
@@ -82,6 +82,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 385 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
index c3352a5d89d717..03a87c3dd24f07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 387 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
index 1a8af38a04cf8e..f3a0737f766d6c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 998 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
index 50da5a9a73098e..0c7e402034e094 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ SET MENU BAR**(1;\*)**を実行すると、メニューバーは前と同じ状
| | |
| --- | --- |
| コマンド番号 | 67 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
index 5b64b2125e9dad..4e0d590c50b883 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 984 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
index c005be8332462c..c50b1e6ab5a83d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 208 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
index 699799b3535614..16c60410f9ddad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 982 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
index 9a59805d75b9d8..bb57fe4dfa7ef9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1004 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
index 5a843290487e3d..9f7e2571537c30 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
@@ -52,6 +52,6 @@ Associated Standard Action プロパティの場合、*value* 引数には標準
| | |
| --- | --- |
| コマンド番号 | 973 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
index f9f18816222b05..8949b8cf94d3df 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
@@ -82,7 +82,7 @@ Ctrl+R (Windows) や Cmd+R (macOS) ショートカットを"再起動"メニュ
| | |
| --- | --- |
| コマンド番号 | 423 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
index 4c4b884bdfd533..1ae6f28c794479 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 425 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
index 9c5ee27b5a78bd..b5f94f87a987a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 348 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
index ee4908fcf70c70..267e7bb89092ad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1172 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
index 2f28d8345d6f07..f32db8f5121972 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
@@ -87,7 +87,7 @@ DOM参照を使用してGPSブロックを設定します:
| | |
| --- | --- |
| コマンド番号 | 1121 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
index 9a9aead6121698..855ee40c250dad 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
@@ -104,7 +104,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 566 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | error |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
index 745019df3b9295..99e7a0e34fb97a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 521 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
index d1b93065d189ed..d476a826df6430 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 845 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
index be9470ed3584fa..fd678c9be5c9a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
@@ -188,6 +188,6 @@ Print\_List3のフォームメソッド:
| | |
| --- | --- |
| コマンド番号 | 709 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
index b7db00723ac72f..3a50c6086a2abc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
@@ -84,7 +84,7 @@ Orientation option の値は同一印刷ジョブ内で変更することがで
| | |
| --- | --- |
| コマンド番号 | 733 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
index 3ccfcdd4beee0b..cdeb0487ed2309 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 364 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
index a64948e84241c0..726a8c1a278087 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 710 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
index 6a7e08e1a74dab..95bf1a4b48460b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
@@ -103,6 +103,6 @@ SET PROCESS VARIABLEは、任意のタイプの送り先プロセスまたはイ
| | |
| --- | --- |
| コマンド番号 | 370 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
index 83438fb9a35c56..d45631eeb5cfca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 661 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
index 95cd4d2f3de9c9..a7fef2aa8f7a59 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
@@ -257,6 +257,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 396 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
index f197dad652e46d..be19ff160484f6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ SET QUERY LIMITは、下記のクエリコマンドの動作を変更します:
| | |
| --- | --- |
| コマンド番号 | 395 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
index 3ecd2a5a00f196..b7ab1904696ab9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 623 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
index 492cbac7c06d89..1864cc07bc8871 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1305 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
index ce4e3fb0edfc38..12e27c92e83d4e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1400 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
index 19de0c8344181a..36143a19d5850d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
@@ -193,6 +193,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 601 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
index e9f7bce6007ff1..6edb022372d2f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
@@ -44,7 +44,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 523 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
index 8092cc09980f38..15fcd00f9a1985 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 268 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
index d2c671e3fd32ea..7f6fe8fe022a07 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ On Timerフォームイベントの生成を取り消すには、*tickCount*に0
| | |
| --- | --- |
| コマンド番号 | 645 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
index eb820bc1ed1661..e121372d08e01f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1291 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
index 51fa52abbc78ee..b88d6039e2175b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1666 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
index 5bd74b2b377796..8f0832d92ba05b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
@@ -69,6 +69,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 612 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
index 1e5267b965a660..31d292912f96cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 444 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
index 1f6e59dd249b7c..edb1487e0a25bb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 213 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
index 069bfc9e268e18..6a310638b2f5ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 543 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
index afbf83a76cb3ca..b80a0b5b8d3d1a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 431 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| サーバー上での使用は不可 ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
index 9d336782ebd47b..4cf2acd7faac01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
@@ -53,7 +53,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 922 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
index be3d962a715297..68377823472826 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 325 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
index 30441c28bb218d..29acec09f836b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 433 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
index 5005c03dfbd748..5954b767ebf532 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ SHOW WINDOWコマンドを使用するには、ウィンドウが[HIDE WINDOW](h
| | |
| --- | --- |
| コマンド番号 | 435 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
index 15324572528788..f0244505c960bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 17 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
index 32a04f4f88b22d..80c96e0adcd894 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 274 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
index 09826086eec5d5..f94cb26fa6b3d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
@@ -187,6 +187,6 @@ COMPILER\_WEBメソッドはWebサーバでも使用されます (参照)。
| | |
| --- | --- |
| コマンド番号 | 782 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
index 3d3489d73a27aa..6a7ab43a92b924 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
@@ -39,6 +39,6 @@ SOAPリクエストを処理する際、RPC引数のほかに、リクエスト
| | |
| --- | --- |
| コマンド番号 | 784 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
index 1c5d26888d7193..594940afef75c7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
@@ -40,6 +40,6 @@ Web サービスのサーバーにおいて新規リクエストを全て拒否
| | |
| --- | --- |
| コマンド番号 | 1636 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
index 7f0e174850620d..3716c2657e07f9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 783 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
index e30a52bd9d25e1..b45e70f5790c79 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
@@ -50,6 +50,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 781 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
index c391926e362608..314160271ed971 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 229 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
index 306e8cf78234a8..3590ecdb7e518d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
@@ -61,6 +61,6 @@ SORT LIST コマンドは、カレントリスト項目またはリストやサ
| | |
| --- | --- |
| コマンド番号 | 391 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
index 61cdb78c5e118a..1163edee8b0016 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1214 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
index 4308d65e43dce7..33bb17ee80b44b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1215 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
index 49d945cff9f2cc..095cb2da62ae13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 900 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
index f6a3df232c6dd2..2371c02fbf0a11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1205 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
index 16159bca93cbf5..b5d697c16b046b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
@@ -55,6 +55,6 @@ Hunspell辞書に"fr-classic+reform1990.aff"、"fr-classic+reform1990.dic"、"fr
| | |
| --- | --- |
| コマンド番号 | 1204 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
index c614b5c6422344..a79b3f6901a2fc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
@@ -56,7 +56,7 @@ Hunspellフォルダーに配置した"fr-classic"辞書をロードする:
| | |
| --- | --- |
| コマンド番号 | 904 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
index d7c5a63efdbfb7..e0d6a5ba874694 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
index 2e9c9cb3e15932..5c3ab039e4c959 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 824 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
index 80b75ed21a37b2..a6b4c06ff56af3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 821 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
index 9429420064107c..d17bc682c87b7e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
@@ -63,7 +63,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1089 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
index 12492f3087a333..375e76d9f2613f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 820 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
index aea4d951c9b60b..2b310c74d79cae 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
@@ -61,7 +61,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1065 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
index 3ae2dfc3e449c7..3fc5e184a21f63 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1064 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
index ca1cb4d85d3bce..5762816c672e6d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
@@ -32,6 +32,6 @@ SQLクエリを実行する前に、このコマンドでカレントデータ
| | |
| --- | --- |
| コマンド番号 | 990 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
index f8209ece6bbf72..9ca1141e1d0476 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
@@ -59,7 +59,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 989 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
index bb5c09c02954d1..f9361a8fc1b5c5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 825 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
index b46e7a938aa880..4293e80a9d2f3a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 819 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
index 753ae5b7ecc459..ef789466fc46ab 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
@@ -39,7 +39,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 822 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
index bc5050fdecf399..65bdf048cc6a96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
@@ -210,7 +210,7 @@ IPv6アドレス 2a01:e35:2e41:c960:dc39:3eb0:f29b:3747のマシン、およびT
| | |
| --- | --- |
| コマンド番号 | 817 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
index ece8537f9b7df4..1afd6ad4f21318 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 872 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
index c84287de3377b9..b42c318b7b3932 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
@@ -51,7 +51,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 818 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
index bd85cf9ece76c5..5d6926d6bf6e3f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
@@ -84,7 +84,7 @@ SQLリクエスト内におかれた*?*記号が4Dオブジェクトの値で置
| | |
| --- | --- |
| コマンド番号 | 823 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
index a2b0dd03b0ba63..5b40bdcb3f4f7d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
@@ -46,6 +46,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 539 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
index e3ddc17e62da8e..8fa5a7828dfd2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
@@ -73,7 +73,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1285 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
index 25c80dca0c9216..5fb2236749722d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1282 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
index ea0b21e75e0c12..11257d293a01e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
@@ -105,7 +105,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1094 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
index 826d90523459f9..82fb9e515c47a7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
@@ -109,7 +109,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1286 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
index 5b9d921c501d4d..e076d5364a91e4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1287 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
index 558147c7bb28f7..a06b74afc3bd2f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1290 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
index 05ea6c4ac8795f..660fbb57e70520 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
@@ -110,7 +110,7 @@ It is now Go to the 4D site or Open a window
| | |
| --- | --- |
| コマンド番号 | 1092 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
index bcf8ca3b65e26f..e43310c841a0d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
@@ -65,7 +65,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1116 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
index 016bc4246ebac7..738fde83c30fb6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
@@ -76,6 +76,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1288 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
index ec5ea8106c76b4..31b2311acfa19d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
@@ -93,7 +93,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1281 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
index 4b51dbb695880d..7b7587d0aa4dec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
@@ -69,7 +69,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1280 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
index 03b24060e43331..74770645b0192a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
@@ -108,7 +108,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1093 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
index 575092c3b0f372..5e410e8c249b0a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1289 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
index 27e2d1c7282b28..74a149c64c70d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1136 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
index 1307b2f368df28..45a91250c55451 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
@@ -97,7 +97,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1115 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
index 941cc2d0f1d31f..92ab3b24673c96 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1712 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
index 03cbbabd9d9cc8..d40218c47cf30c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ SQLサーバが正しく起動されるとOKシステム変数は1に、そう
| | |
| --- | --- |
| コマンド番号 | 962 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
index e15c1dcf29a3b2..27212ec257f069 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 239 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
index bb93f25bc978fd..cfa1c7ba92c56a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
@@ -64,6 +64,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 26 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
index 53b0d278be15fa..e9eae1b5d9f2dd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1721 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
index 3ce6d07aa1248f..78fb8e6c615bfe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ SQLサーバが起動していた場合、すべてのSQL接続が中断しま
| | |
| --- | --- |
| コマンド番号 | 963 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
index 2228b96769adb8..6dd0647b5a204c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
@@ -86,6 +86,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1525 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
index 568d48aa24fc35..0a9a4fd2705b6a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
@@ -50,7 +50,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 511 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
index 5df7bc5ed67775..56da658c93d33c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
@@ -71,6 +71,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 489 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
index 668c2a4198548c..0a4bcd0ca596d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
@@ -69,6 +69,6 @@ Substringコマンドの使用例を次に示します。結果を変数 vsResul
| | |
| --- | --- |
| コマンド番号 | 12 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
index 48889f687bfb54..8a47227b73a9c2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
@@ -64,6 +64,6 @@ Subtotal関数はフォームに値を表示するために必要です。
| | |
| --- | --- |
| コマンド番号 | 97 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
index 2b46a44fbcbb1e..562c915b1d44ea 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 28 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
index d054f8a0b1905b..a5d63f7519e96f 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
@@ -80,7 +80,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
index a00592adb8c493..1b7d28f9bbd414 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1385 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
index d50cfdcbce1faf..734bf005b98e69 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
@@ -57,6 +57,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1017 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
index 95c87356d4e641..86e768fecf8abe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -57,7 +57,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1054 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
index 8cb6f853457d7a..e7ca5a99288bc7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1109 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
index df03360a387f77..994d4829d92754 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
@@ -46,6 +46,6 @@ SVG属性に関する詳細は、[SVG SET ATTRIBUTE](svg-set-attribute.md)コマ
| | |
| --- | --- |
| コマンド番号 | 1056 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
index 62c8c7f1d879b2..bd7aeb086ea0aa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
@@ -98,7 +98,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1055 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
index e2de65ec19ebc8..714cadf60aa2a9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1108 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
index c2149d1ee71777..fcdbf5de6b8631 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 487 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
index ec8542d49e3668..322f19076912ca 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
@@ -151,6 +151,6 @@ Windows マシン上で以下のコードを実行した場合:
| | |
| --- | --- |
| コマンド番号 | 1571 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
index e4dc2cc861d4a5..e9e550298b17bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1127 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
index 00e3bdd8ed6d70..e490333be4cf11 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 256 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
index 5c538c8471bcce..1c0e75891d4bc3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 252 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
index 7e4c65a1d146f9..a7b29fc2c64722 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 19 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
index 4a21c3ee87b0fa..019c74e81799d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 486 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
index 9ad9d0f2acef4e..f0d978f2e5f4f1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 476 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
index 4cfa67a3970923..b65eb1688b0f68 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 652 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
index df358a771ffb1d..8b4f9743d9d6f5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1149 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
index 7c9393413ab193..89ed5fb4f01962 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
@@ -109,6 +109,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 554 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
index 963d4de73a4698..a36d04980cc1c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1237 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
index 2eb326598e8154..fe3c99231699b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
@@ -110,6 +110,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| コマンド番号 | 1805 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
index a1d9f2024ad4e9..543bb352ac5eda 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 458 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
index 43e1f19c997732..9deed0cda6e1a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 180 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
index b43e9227a46314..f41a5f6e3e0327 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 179 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
index 567e994c7b75d2..a6db9792976786 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1445 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
index 1041ade562e65f..fa4280429b163c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1016 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
index eedc14a003b50a..65cc17247897c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
@@ -64,6 +64,6 @@ DEBUG プロジェクトメソッドを次に示します:
| | |
| --- | --- |
| コマンド番号 | 157 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
index 212ed4df923a93..a96f85a69df176 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 961 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
index 9d31daea8b651c..6bb6f1e92df379 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 988 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
index ecb35265285e60..99cccf3b8b1662 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 369 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
index a7e602062f28d9..e4bc474e0a5409 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 398 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
index bcfa4f7cc80d8d..d8129b37fcdaa7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 399 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
index 18a3324ff7347b..c34568b741b671 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 214 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
index 0d06c801366e14..b0879070f28daa 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 95 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
index 18fa55db0fbe90..878e9f2b976e61 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ TRUNCATE TABLEコマンドは注意して使用しなければなりませんが
| | |
| --- | --- |
| コマンド番号 | 1051 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
index c5a0745fe9abe0..d0d3e0d46eef6b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
@@ -152,6 +152,6 @@ Type ファンクションはフィールド、インタープロセス変数、
| | |
| --- | --- |
| コマンド番号 | 295 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
index f95f288faa7918..17573d9348c5d0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
@@ -65,6 +65,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 82 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
index 2e82274116e409..200d216fe740c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 120 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
index cebfad49dfe325..6fe5f359435947 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ UNLOAD RECORDはメモリからレコードをアンロードしますが、そ
| | |
| --- | --- |
| コマンド番号 | 212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
index 8644d3cbb4a32f..bb0e357c0268a3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 649 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
index c08e3038030b18..9feaa6d8246ffb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 13 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
index 0e0bbf73fa3450..955ba1f47eb1a0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
@@ -60,7 +60,7 @@ IANA名に関する説明は[CONVERT FROM TEXT](convert-from-text.md)コマン
| | |
| --- | --- |
| コマンド番号 | 205 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
index 4fd172434c34bb..d435f6829ed721 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 332 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
index 7118fc1b5ea547..8b04e178de6760 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 118 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| カレントレコードを変更する ||
| カレントセレクションを変更する ||
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
index a81b2a50fa1aad..eb6a5fd9a1bb20 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 338 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
index c7a99509422b02..61896979b61252 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 849 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
index 9b23debbe27b2d..dccc5bbbbcc0ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
@@ -66,6 +66,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 638 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
index ebdc4bfe8584fd..22debb722fdebe 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ OK変数に0が代入された場合、トランザクションは自動的に
| | |
| --- | --- |
| コマンド番号 | 240 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
index cf5a3e7d67547d..7504f41f13aeb6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
@@ -119,6 +119,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1509 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
index 1c3e11c8f1fdac..5238b854bcd78d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
@@ -136,7 +136,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 532 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
index 215a18c73f5d3b..915e462b2b7787 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
@@ -68,6 +68,6 @@ VARIABLE TO VARIABLE は、任意のタイプの送り先プロセスまたは
| | |
| --- | --- |
| コマンド番号 | 635 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
index f20e3157176fb0..178b2ce8fc7277 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
@@ -74,6 +74,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 27 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
index 7516df1a5423c2..71034536cfe4c1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ VERIFY CURRENT DATA FILEコマンドを引数なしで呼び出すと、デフ
| | |
| --- | --- |
| コマンド番号 | 1008 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
index 229764db3fb82d..516f8b275c89a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
@@ -175,7 +175,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 939 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
index 329ed6e9589588..c220a5ada4f278 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1534 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
index 64a04c36dc6881..bc632a5170feef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 495 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
index 2e79f9a31b49b0..cca496cc36be21 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 472 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
index 715f5e4f1d4783..fd699a6595c0a6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
@@ -47,6 +47,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 471 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
index d4e6b6edcf87d0..794f2a5ffc38cb 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1026 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
index 39c6bc662732d4..882dc798d13428 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1049 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
index 909268bc042ef7..21c83d757d3ccc 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ HTML ファイル内にあるJavaScriptファンクションの例:
| | |
| --- | --- |
| コマンド番号 | 1029 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
index 4571db82e71b3d..7ca0271e3fd31a 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1043 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
index 2df75eff14d0e4..60d7b0b94c6ce9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1027 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
index b6ee114ac022e8..94270b9a991624 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ Webページが完全にロードされると、この関数から返される
| | |
| --- | --- |
| コマンド番号 | 1025 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
index 0d4c608ef8ebb7..b153049e2a31e2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1033 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
index 5a9627a67b50cf..c35b2ca6f040bd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
@@ -39,6 +39,6 @@ URLは以下のいずれかの理由でフィルタされることがありま
| | |
| --- | --- |
| コマンド番号 | 1035 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
index 58c8da4cdabd4c..96145828fea281 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
@@ -40,6 +40,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1034 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
index ee252ac909f7ee..dbac6a05f3d579 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1038 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
index 38300d31072e24..af9148180cdedd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1036 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
index 3ef8731a6012ca..b2cffea8037e66 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1042 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
index ef1a0bdcc4398a..0006388bd402fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1031 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
index 96cece1363ea0e..511d539b1782ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ URLは時間順に並びかえられます。
| | |
| --- | --- |
| コマンド番号 | 1048 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
index 0b0d82a0526c1f..8e4da8c3a3d4b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1021 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
index dfdc8cbf6ed3dd..05c8407dfdbead 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1022 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
index e41a2e1cbfe3b2..d7d54412ddfb01 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
@@ -53,6 +53,6 @@ Mac OSにおいてFileVault が有効化されている場合には、Posix シ
| | |
| --- | --- |
| コマンド番号 | 1020 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
index 337a3020559411..c91eacaf49b2f7 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1736 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
index f2203bbd24a451..084098d516f1ef 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1023 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
index 36f66dda771d8d..f3bae99773091c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1727 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
index d5ab2e7120dbad..2a69482eb09be8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
@@ -80,6 +80,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1032 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
index 425d1972c868c6..31ab6fe7d167ba 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
@@ -46,6 +46,6 @@ WA SET PAGE CONTENT(MyWArea;"Hello World!
";"f
| | |
| --- | --- |
| コマンド番号 | 1037 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
index a0f4591a54978b..906543bfdc150d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
@@ -55,6 +55,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1041 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
index 8d6d000a5af3c5..352f5df1012071 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
@@ -143,6 +143,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1030 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
index cb86ec3ca9511a..b20d93691ebcb8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1024 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
index 6bb1715588bf0f..86ea08feebc722 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1039 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
index 44f701945fca3d..ae9f9087d5ee04 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Windows では、このコマンドのスコープはグローバルです。4D
| | |
| --- | --- |
| コマンド番号 | 1040 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
index a5f3ae413c1b8c..d2553b8b655789 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1211 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
index 039cdbd16a03c1..d2fd1e888ccfbf 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
@@ -99,6 +99,6 @@ GetFileのコードは以下の通りです:
| | |
| --- | --- |
| コマンド番号 | 1212 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
index f5586da1d8ea0c..046a4c9d0728c8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1162 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
index 33c2a71e9caf0c..6b8c5289b566a4 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
@@ -53,6 +53,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 814 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
index 70f38fb733fec8..28f62bb3a464ec 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
@@ -121,6 +121,6 @@ HTTP標準に準拠するには、フィールド名を常に英語で記述し
| | |
| --- | --- |
| コマンド番号 | 697 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
index e56666a0c45081..d015b755db0454 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
@@ -67,6 +67,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1209 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
index 6fdfbe15e02aca..8ba275c6a07861 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
@@ -96,6 +96,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1531 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
index b52479f2122df4..1fd4117cfa834d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
@@ -66,6 +66,6 @@ URLリンクまたは[WEB SEND FILE](web-send-file.md)コマンドを使用し
| | |
| --- | --- |
| コマンド番号 | 658 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
index 07321b7017fc4b..f6ac6356200fd1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
@@ -70,6 +70,6 @@ WEBFORMメソッド以下のように記述します。
| | |
| --- | --- |
| コマンド番号 | 683 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
index c2d2fdc43362a6..e79ef898dae272 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 698 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
index 9099cdb00c1188..633aba462c1195 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Webサーバーが実行中かどうかをチェックしたい場合:
| | |
| --- | --- |
| コマンド番号 | 1313 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
index c63fc27d384169..54ee977ebd9705 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Webプロセスや他のプロセスからこのコマンドが呼び出され
| | |
| --- | --- |
| コマンド番号 | 1208 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
index 46355d4ef4ae67..2f4eeefa6b6b74 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1207 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
index 59249e29965513..9d2db0e78615d1 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
@@ -85,6 +85,6 @@ BLOBに含まれるデータのタイプは *type* によって示されます
| | |
| --- | --- |
| コマンド番号 | 654 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
index 45bb80790a7ca0..df2d4dbb234e5c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
@@ -55,7 +55,7 @@ Webページ "MyPage.HTM"を送信するには以下のようにします。
| | |
| --- | --- |
| コマンド番号 | 619 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
index 67d7b105df0759..172a3e315752b2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 659 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
index 3423921c09a577..c1f59c8be9a87d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
@@ -86,6 +86,6 @@ Location: http://...
| | |
| --- | --- |
| コマンド番号 | 815 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
index 6d53b9581300bb..86a64694310cf8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
@@ -51,6 +51,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 677 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
index 1f76952c27f5bf..ff25d19b6c26d8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
@@ -58,6 +58,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 786 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
index 83b7f4985764b2..637346976a9f13 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
@@ -161,7 +161,7 @@ DOCモード (または複合タイプのRPCモード) で公開されたWebサ
| | |
| --- | --- |
| コマンド番号 | 778 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
index f25dda76ed87d9..7338dc95ef23c0 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 780 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
index 48b5c0c3b8e812..49dc743c8ddca6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
@@ -54,6 +54,6 @@ Webサービスがある都市の時間を返すとします。Webサービス
| | |
| --- | --- |
| コマンド番号 | 779 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
index 385b80c4e8f66e..1b728f39a3eff3 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
@@ -67,6 +67,6 @@ SOAPリクエストにカスタマイズしたヘッダーを挿入する:
| | |
| --- | --- |
| コマンド番号 | 901 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
index 7d182c57c8b9f5..e858ee5649cd73 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
@@ -77,6 +77,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 777 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
index d4979fbd9ffa01..4fb2ef32f805e5 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ HTMLホームページの名前、またはそのページのHTMLアクセスパ
| | |
| --- | --- |
| コマンド番号 | 639 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
index 01da1802084597..09e53ed62a2785 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
@@ -69,6 +69,6 @@ X-VERSIONとX-STATUSを指定しないと、自動的にHTTP/1.0 200 OKが設定
| | |
| --- | --- |
| コマンド番号 | 660 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
index 1442882d91ac4e..dd6cc046317078 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
@@ -117,6 +117,6 @@ Server: 4D/16.0.1
| | |
| --- | --- |
| コマンド番号 | 5 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
index 75a04e0fc702b4..dae80982c682c6 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
@@ -43,7 +43,7 @@ HTMLシンタックス (URLタイプ) 、またはシステムシンタックス
| | |
| --- | --- |
| コマンド番号 | 634 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | error |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
index 87653475900894..2afdbc0e042d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
@@ -29,7 +29,7 @@ Webサーバの起動が成功すると、OK に1が代入されます。その
| | |
| --- | --- |
| コマンド番号 | 617 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
index 4b02df92054547..36710e3e34df3c 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
@@ -26,6 +26,6 @@ Webサーバが起動していない場合、コマンドは何も行いませ
| | |
| --- | --- |
| コマンド番号 | 618 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
index 99bab6d5961b37..5109be4c9486c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
@@ -60,6 +60,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 946 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
index c18217126bbddf..4d905c1fdb1345 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
@@ -45,6 +45,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 445 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
index 226a322a760f1a..898e7e29dba673 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 442 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
index 7e6e9d607b9aab..1f156a32474e88 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 446 |
-| スレッドセーフである | ✗ |
+| スレッドセーフである | no |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
index 5b7857a8adfad5..9e0247f7d59d7b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 563 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
index 9887c0af80d29b..3c678bd76862d2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
@@ -35,6 +35,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 562 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
index e170506d0c88e2..2898452107ed5b 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
@@ -52,7 +52,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 680 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK、Document |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
index 72c65bb62d3b3a..b99cdb782797c9 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
@@ -92,6 +92,6 @@ Title="4 Stabat mater"/>
| | |
| --- | --- |
| コマンド番号 | 1091 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
index 48c764deadef71..414446deb1c1b8 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 732 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
| システム変数を更新する | OK |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
index b84655868b110c..e877d7a1c780fd 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
@@ -39,6 +39,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 1096 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
index 4bba6c1a7a87b3..e3b51e39216b3d 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
@@ -72,6 +72,6 @@ SVG ピクチャの挿入:
| | |
| --- | --- |
| コマンド番号 | 1090 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
index 95518ef3955cc5..00bb23d719ad29 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| コマンド番号 | 25 |
-| スレッドセーフである | ✓ |
+| スレッドセーフである | yes |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/license-info.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/license-info.md
index d97f6136e3f2aa..82d9c4f2b21e52 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/license-info.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/license-info.md
@@ -8,9 +8,9 @@ displayed_sidebar: docs
-| 引数 | 型 | | 説明 |
-| --- | ------ | --------------------------- | ----------------- |
-| 戻り値 | Object | ← | アクティブなライセンスに関する情報 |
+| 引数 | 型 | | 説明 |
+| --- | ------ | --------------------------- | ------------------------------------ |
+| 戻り値 | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ The returned object contains the following properties:
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1489 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1489 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
index 1ae1505c519a71..1aeec5e5fa0fd2 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,7 +49,7 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
+| lk hor scrollbar height | 3 | ピクセル単位の高さ(読み出しのみ可能)
適用対象: リストボックス |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ displayed_sidebar: docs
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk ver scrollbar width | 5 | ピクセル単位の幅(読み出しのみ可能)
適用対象: リストボックス |
\*印が付いているプロパティはリストボックスカラム専用のものです。このプロパティ群の定数をリストボックスとともに引数として受け渡すと、**LISTBOX Get property** は *property* に指定したプロパティの種類に応じて -1、あるいは空文字列を返します。
@@ -105,9 +104,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 917 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | --- |
+| コマンド番号 | 917 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
index 5ec929db69e910..ce21341a484d6e 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ displayed_sidebar: docs
| lk column max width | 26 | **[最大幅](../FormObjects/properties_CoordinatesAndSizing.md#最大幅)** プロパティ
適用先: カラム \* |
| lk column min width | 25 | **[最小幅](../FormObjects/properties_CoordinatesAndSizing.md#最小幅)** プロパティ
適用対象: カラム \* |
| lk column resizable | 15 | **[リサイズ可](../FormObjects/properties_ResizingOptions.md#サイズ変更可)** プロパティ
適用対象: カラム \*
取り得る値:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
+| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk detail form name | 19 | セレクション型リストボックスの **[詳細フォーム名](../FormObjects/properties_ListBox.md#詳細フォーム名)** プロパティ
適用対象: リストボックス |
| lk display footer | 8 | **[フッターを表示](../FormObjects/properties_Footers.md#フッターを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
| lk display header | 0 | **[ヘッダーを表示](../FormObjects/properties_Headers.md#ヘッダーを表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0): 非表示
lk yes (1): 表示 |
@@ -47,21 +49,17 @@ displayed_sidebar: docs
| lk font style expression | 24 | セレクション型、コレクションまたはエンティティセレクション型リストボックスの **[スタイル式](../FormObjects/properties_Text.md#スタイル式)** プロパティ
適用対象: リストボックスあるいはカラム |
| lk hide selection highlight | 16 | **[セレクションハイライトを非表示](../FormObjects/properties_Appearance.md#セレクションハイライトを非表示)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | セレクション型リストボックスの **[セットをハイライト](../FormObjects/properties_ListBox.md#ハイライトセット)** プロパティ
適用対象: リストボックス |
-| lk hor scrollbar height | 3 | 高さ(ピクセル単位) |
| lk meta expression | 34 | コレクションまたはエンティティセレクション型リストボックスの **[メタ情報式](../FormObjects/properties_Text.md#メタ情報式)** プロパティ
適用対象: リストボックス |
| lk movable rows | 35 | 配列型リストボックスの **[行の移動可](../FormObjects/properties_Action.md#行の移動可)** プロパティ
適用対象: リストボックス(ただし階層モードを除く)
取り得る値:
lk no (0): 行はランタイムに移動させられない
lk yes (1): 行はランタイムに移動させられる(デフォルト) |
| lk multi style | 30 | **[マルチスタイル](../FormObjects/properties_Text.md#マルチスタイル)** のプロパティ
適用対象: カラム\*
取り得る値:
lk no (0)
lk yes (1) |
| lk named selection | 28 | セレクション型リストボックスの **[命名セレクション](../FormObjects/properties_DataSource.md#命名セレクション)** プロパティ
適用対象: リストボックス |
| lk resizing mode | 11 | **[カラムの自動リサイズ](../FormObjects/properties_ResizingOptions.md#カラム自動リサイズ)** プロパティ
適用対象: リストボックス
取り得る値:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | **[行の高さ](../FormObjects/properties_CoordinatesAndSizing.md#行の高さ)** プロパティの単位
適用対象: リストボックス
取り得る値:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
| lk selection mode | 10 | **[選択モード](../FormObjects/properties_ListBox.md#選択モード)** プロパティ
適用対象: リストボックス
取り得る値:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[シングルクリック編集](../FormObjects/properties_Entry.md#シングルクリック編集)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[ソート可](../FormObjects/properties_Action.md#ソート可)** プロパティ
適用対象: リストボックス
取り得る値:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[エリプシスで省略](../FormObjects/properties_Display.md#エリプシスを使用して省略)** プロパティ
適用対象: リストボックスあるいはカラム
取り得る値:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | 幅(ピクセル単位) |
-| lk current item expression | 38 | **[カレントの項目](../FormObjects/properties_DataSource.md#カレントの項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk current item pos expression | 39 | **[カレントの項目の位置](../FormObjects/properties_DataSource.md#カレントの項目の位置)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
-| lk selected items expression | 40 | **[選択された項目](../FormObjects/properties_DataSource.md#選択された項目)** プロパティ
適用対象: リストボックス(コレクション / エンティティセレクション) |
\*印が付いているプロパティはリストボックスカラム専用のものですが、このプロパティ群の定数に対してリストボックスを引数として受け渡すと、 **LISTBOX SET PROPERTY** は各カラムの *property* に対して値を適用します。
@@ -90,9 +88,9 @@ displayed_sidebar: docs
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1440 |
-| スレッドセーフ | ✗ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1440 |
+| スレッドセーフ | × |
diff --git a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/session.md b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/session.md
index 51566df49d8068..cb239708bd03de 100644
--- a/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/session.md
+++ b/i18n/ja/docusaurus-plugin-content-docs/version-21/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## 説明
-`Session` コマンドは、カレントのユーザーセッションに対応する `Session` オブジェクトを返します。
+`Session` コマンドは、カレントのセッションに対応する `Session` オブジェクトを返します。
-コマンドを呼び出したプロセスによって、カレントユーザーセッションは次のいずれかです:
+コマンドを呼び出したプロセスによって、カレントセッションは次のいずれかです:
- Web セッション([スケーラブルセッションが有効化されている](WebServer/sessions.md#webセッションの有効化) 場合)
-- リモートクライアントセッション
-- ストアドプロシージャセッション
-- スタンドアロンアプリケーションの*designer* セッション
+- (サーバー上の)リモートクライアントセッション
+- ストアドプロシージャーセッション
+- スタンドアロンセッション
詳細については、[Session types](../API/SessionClass.md#session-types) の段落を参照ください。
-サポートされていないコンテキスト (スケーラブルセッションが無効など)から呼び出されると、コマンドは *Null* を返します。
+このコマンドは、以下の場合には **Null** を返します:
-## Webセッション
+- コマンドがWeb プロセス内で呼び出されているが、Web サーバーではスケーラブルセッションが無効化されている
+- コマンドがリモート4D から呼び出されている
+
+### Webセッション
Webセッションの `Session` オブジェクトは、どの Webプロセスからも利用できます:
@@ -51,7 +54,7 @@ Webセッションの `Session` オブジェクトは、どの Webプロセス
Web ユーザーセッションに関する詳細な情報については、[Web Server Sessions](../WebServer/sessions.md) の章を参照してください。
-## リモートクライアントセッション
+### リモートクライアントセッション
リモートクライアントの `Session` オブジェクトは、次のいずれかから利用できます:
@@ -60,24 +63,51 @@ Web ユーザーセッションに関する詳細な情報については、[Web
- ORDA [データモデル関数](../ORDA/ordaClasses.md) ([`local`](../ORDA/ordaClasses.md#ローカル関数) キーワードで宣言されたものを除く)
- `On Server Open Connection` および `On Server Shutdown Connection` データベースメソッド
-リモートユーザーセッションの詳細については、[**リモートクライアントユーザーセッション**](../Desktop/clientServer.md#リモートユーザーセッション) の段落を参照ください。
+リモートユーザーセッションの詳細については、[**リモートユーザーセッション**](../Desktop/sessions.md#リモートユーザーセッション) の段落を参照ください。
-## ストアドプロシージャーセッション
+### ストアドプロシージャーセッション
すべてのストアドプロシージャープロセスは、同じ仮想ユーザーセッションを共有します。 ストアドプロシージャーの `Session` オブジェクトは、次のいずれかから利用できます:
- [`Execute on server`](../commands-legacy/execute-on-server.md) コマンドで呼び出されたメソッド
- `On Server Startup`、`On Server Shutdown`、`On Backup Startup`、`On Backup Shutdown`、および `On System event` データベースメソッド
-ストアドプロシージャーの仮想ユーザーセッションに関する情報については、[4D Serverと4Dランゲージ](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.ja.html) のページを参照ください。
+ストアドプロシージャーバーチャルユーザーセッションの詳細については、[**ストアドプロシージャーセッション**](../Desktop/sessions.md#ストアドプロシージャーセッション) の段落を参照ください。
-## スタンドアロンセッション
+### スタンドアロンセッション
`Session` オブジェクトは、スタンドアロン(シングルユーザー)アプリケーション内の任意のプロセスから利用可能なため、4D 開発環境において`Session` オブジェクトを使用することで、クライアント/サーバー用のコードを書いてテストすることができます。
+スタンドアロンセッションの詳細については、[**スタンドアロンセッション**](../Desktop/sessions.md#スタンドアロンセッション) の段落を参照ください。
+
+### `Session`とコンポーネント
+
+`Session` が[プロジェクト内に配置されている異なるコンポーネント](../Concepts/components.md) のコードから呼び出された場合には、このコマンドは呼び出しリクエストとコンテキストに応じて異なるオブジェクトを返します:
+
+- Web リクエストの場合、`Session` は常にリクエストのターゲットWeb サーバーにアタッチされているセッションを返します(コンポーネントのWeb サーバーのセッションではありません)。
+- サーバー上で実行されたリモートリクエストの場合、 `Session` は常にリモートユーザーにアタッチされたセッションを返します。
+- ストアドプロシージャーセッションまたはスタンドアロンセッションの場合、`Session` は常にシングルカレントセッションを返します(同じオブジェクトが全てのワークセッションにおいて使用されます)。
+
+```mermaid
+flowchart TD
+ A[セッションが必要] --> B{それはWebリクエストか?}
+ B -->|はい| C[WebリクエストのWebサーバーに割り当てられているセッションを使用]
+ B -->|いいえ| D{それはリモートリクエストか?}
+ D -->|はい| E[リモートユーザーセッションのオブジェクトを使用]
+ D -->|いいえ| F[ストアドプロシージャー/スタンドアロンセッションの固有のオブジェクトを使用]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## 例題
-"公開オプション: 4DタグとURL(4DACTION...)" ブラウザーに次の URL を入力してメソッドを呼び出します:
+"公開オプション: 4DタグとURL(4DACTION...)" 属性を有効にした `action_Session` メソッドを定義したとします。 ブラウザーに次の URL を入力してメソッドを呼び出します:
```
IP:port/4DACTION/action_Session
@@ -87,28 +117,29 @@ IP:port/4DACTION/action_Session
//action_Session メソッド
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) // hasPrivilege 関数を呼び出します
- WEB SEND TEXT("4DACTION --> セッションは WebAdmin です")
+ If(Session.hasPrivilege("CreateInvoices")) //hasPrivilege 関数を呼び出す
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> セッションは WebAdmin ではありません")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
- WEB SEND TEXT("4DACTION --> セッションは null です")
+ WEB SEND TEXT("4DACTION --> Session is null")
End case
```
## 参照
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
-[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
+[*Scalable sessions for advanced web applications* (blog 記事)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## プロパティ
-| | |
-| ------- | --------------------------- |
-| コマンド番号 | 1714 |
-| スレッドセーフ | ✓ |
+| | |
+| ------- | ---- |
+| コマンド番号 | 1714 |
+| スレッドセーフ | ◯ |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/BlobClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/BlobClass.md
index 9e56712fcfdc78..4cd91e3c48ef09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/BlobClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/BlobClass.md
@@ -27,10 +27,11 @@ A classe Blob permite que você crie e manipule [objetos blob](../Concepts/dt_bl
-| Parâmetro | Tipo | | Descrição |
-| ---------- | -------------------------------- | :-------------------------: | ---------------------------- |
-| blob | Blob or 4D. Blob | -> | Blob a copiar |
-| Resultados | 4D. Blob | <- | Novo 4D.Blob |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ------------------------ | :-------------------------: | ---------------------------- |
+| blobScal | Blob | -> | Blob a copiar |
+| blobObj | 4D. Blob | -> | Blob a copiar |
+| Resultados | 4D. Blob | <- | Novo 4D.Blob |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md
index ff4715de39e28f..998f9c0328b279 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/CollectionClass.md
@@ -488,11 +488,11 @@ Se a coleção contiver objetos, você poderá passar o parâmetro *propertyPath
-| Parâmetro | Tipo | | Descrição |
-| ------------ | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------- |
-| value | Text, Number, Boolean, Date, Object, Collection | -> | Valor a contar |
-| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para cálculos |
-| Resultados | Real | <- | Número de ocorrências do valor |
+| Parâmetro | Tipo | | Descrição |
+| ------------ | ---- | :-------------------------: | ---------------------------------------------------- |
+| value | any | -> | Valor a contar |
+| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para cálculos |
+| Resultados | Real | <- | Número de ocorrências do valor |
@@ -851,12 +851,12 @@ $c2:=$c.extract("name";"City";"zc";"Zip") //$c2=[{Zip:35060},{City:null,Zip:3504
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ----------------------------------------------- | :-------------------------: | ------------------------------------------------- |
-| value | number, Text, Collection, Object, Date, Boolean | -> | Valores preenchido |
-| startFrom | Integer | -> | Início do índice (incluído) |
-| end | Integer | -> | Final do índice (não incluído) |
-| Resultados | collection | <- | Coleção original com valores preenchidos |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | ------------------------------------------------- |
+| value | any | -> | Valores preenchido |
+| startFrom | Integer | -> | Início do índice (incluído) |
+| end | Integer | -> | Final do índice (não incluído) |
+| Resultados | Collection | <- | Coleção original com valores preenchidos |
@@ -1343,7 +1343,7 @@ var $c; $c2 : Collection
| Parâmetro | Tipo | | Descrição |
| ---------- | ---------- | :-------------------------: | -------------------------------------------- |
-| toSearch | expressão | -> | Expressão a pesquisar na coleção |
+| toSearch | Expression | -> | Expressão a pesquisar na coleção |
| startFrom | Integer | -> | Índice onde inicia a pesquisa |
| Resultados | Parâmetros | <- | True se *toSearch* for encontrado na coleção |
@@ -1404,11 +1404,11 @@ Opcionalmente pode passar o índice da coleção para a qual iniciar a pesquisa
-| Parâmetro | Tipo | | Descrição |
-| ---------- | --------- | :-------------------------: | -------------------------------------------------------------------------- |
-| toSearch | expressão | -> | Expressão a pesquisar na coleção |
-| startFrom | Integer | -> | Índice onde inicia a pesquisa |
-| Resultados | Integer | <- | Índice da primeira ocorrência de toSearch na coleção, -1 se não encontrado |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | -------------------------------------------------------------------------- |
+| toSearch | Expression | -> | Expressão a pesquisar na coleção |
+| startFrom | Integer | -> | Índice onde inicia a pesquisa |
+| Resultados | Integer | <- | Índice da primeira ocorrência de toSearch na coleção, -1 se não encontrado |
@@ -1661,11 +1661,11 @@ $last:=$emptyCol.last() // devolve Undefined
-| Parâmetro | Tipo | | Descrição |
-| ---------- | --------- | :-------------------------: | ------------------------------------------------------------------------ |
-| toSearch | expressão | -> | O elemento que é pesquisado dentro da coleção |
-| startFrom | Integer | -> | Índice onde inicia a pesquisa |
-| Resultados | Integer | <- | Índice da última ocorrência de toSearch na coleção, -1 se não encontrado |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | ------------------------------------------------------------------------ |
+| toSearch | Expression | -> | O elemento que é pesquisado dentro da coleção |
+| startFrom | Integer | -> | Índice onde inicia a pesquisa |
+| Resultados | Integer | <- | Índice da última ocorrência de toSearch na coleção, -1 se não encontrado |
@@ -1806,10 +1806,10 @@ var $1 : Object
-| Parâmetro | Tipo | | Descrição |
-| ------------ | ----------------------------------------------- | :-------------------------: | ----------------------------------------------------- |
-| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para avaliação |
-| Resultados | Boolean, Text, Number, Collection, Object, Date | <- | Valor máximo na coleção |
+| Parâmetro | Tipo | | Descrição |
+| ------------ | ---- | :-------------------------: | ----------------------------------------------------- |
+| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para avaliação |
+| Resultados | any | <- | Valor máximo na coleção |
@@ -1856,10 +1856,10 @@ Se a coleção estiver vazia, `.max()` retorna *Undefined*.
-| Parâmetro | Tipo | | Descrição |
-| ------------ | ----------------------------------------------- | :-------------------------: | ----------------------------------------------------- |
-| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para avaliação |
-| Resultados | Boolean, Text, Number, Collection, Object, Date | <- | Valor mínimo na coleção |
+| Parâmetro | Tipo | | Descrição |
+| ------------ | ---- | :-------------------------: | ----------------------------------------------------- |
+| propertyPath | Text | -> | Rota de propriedade objeto a ser usado para avaliação |
+| Resultados | any | <- | Valor mínimo na coleção |
@@ -2681,13 +2681,13 @@ Mais exemplos de consultas podem ser encontrados na página `dataClass.query()`.
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- |
-| formula | 4D. Function | -> | Objecto fórmula |
-| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* |
-| param | expressão | -> | Parâmetro(s) a transmitir |
-| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- |
+| formula | 4D. Function | -> | Objecto fórmula |
+| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção |
+| initValue | any | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* |
+| param | Expression | -> | Parâmetro(s) a transmitir |
+| Resultados | any | <- | Resultado do valor do acumulador |
@@ -2766,13 +2766,13 @@ Com o seguinte método ***Flatten***:
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ----------------------------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- |
-| formula | 4D. Function | -> | Objecto fórmula |
-| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção |
-| initValue | Text, Number, Object, Collection, Date, Boolean | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* |
-| param | expressão | -> | Parâmetro(s) a transmitir |
-| Resultados | Text, Number, Object, Collection, Date, Boolean | <- | Resultado do valor do acumulador |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------------------------- | :-------------------------: | ---------------------------------------------------------------------------------------------- |
+| formula | 4D. Function | -> | Objecto fórmula |
+| methodName | Text | -> | Nome da função a qual se chama para processar os elementos da coleção |
+| initValue | any | -> | Valor a ser usado como primeiro argumento para a primeira chamada de *formula* ou *methodName* |
+| param | Expression | -> | Parâmetro(s) a transmitir |
+| Resultados | any | <- | Resultado do valor do acumulador |
@@ -2909,11 +2909,11 @@ Se tentar remover um elemento de uma coleção vazia, o método não faz nada (n
-| Parâmetro | Tipo | | Descrição |
-| ------------ | ----------------------------------------------- | :-------------------------: | ------------------------------------------- |
-| size | Integer | -> | Nova dimensão da colecção |
-| defaultValue | Number, Text, Object, Collection, Date, Boolean | -> | Valor padrão para preencher novos elementos |
-| Resultados | Collection | <- | Colecção original redimensionada |
+| Parâmetro | Tipo | | Descrição |
+| ------------ | ---------- | :-------------------------: | ------------------------------------------- |
+| size | Integer | -> | Nova dimensão da colecção |
+| defaultValue | any | -> | Valor padrão para preencher novos elementos |
+| Resultados | Collection | <- | Colecção original redimensionada |
@@ -3329,11 +3329,11 @@ Se a coleção contiver objetos, passe o parâmetro *propertyPath* para indicar
-| Parâmetro | Tipo | | Descrição |
-| ---------- | -------------------------------------- | :-------------------------: | --------------------------------------------------------------------------------- |
-| value | Text, Number, Object, Collection, Date | -> | Valor(es) a inserir no início da colecção |
-| Resultados | Collection | <- | Colecção contendo elemento(s) adicionado(s) |
-| | | | |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | --------------------------------------------------------------------------------- |
+| value | any | -> | Valor(es) a inserir no início da colecção |
+| Resultados | Collection | <- | Colecção contendo elemento(s) adicionado(s) |
+| | | | |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
index 5811eabfee0814..6e09a58a77748f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/CryptoKeyClass.md
@@ -332,11 +332,11 @@ O valor devolvido é a chave pública.
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ------------- | --------------------------- | ------------------------------------------------------------------------------- |
-| message | Texto OU Blob | -> | Mensagem a assinar |
-| options | Object | -> | Opções de assinatura |
-| Resultados | Text | <- | Assinatura na representação Base64 ou Base64URL, dependendo da opção "encoding" |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | --------------------------- | ------------------------------------------------------------------------------- |
+| message | Text, Blob | -> | Mensagem a assinar |
+| options | Object | -> | Opções de assinatura |
+| Resultados | Text | <- | Assinatura na representação Base64 ou Base64URL, dependendo da opção "encoding" |
@@ -416,12 +416,12 @@ Contém o nome do tipo de chave - "RSA", "EC
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ------------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------ |
-| message | Texto OU Blob | -> | Mensagem usada para produzir a assinatura |
-| signature | Text | -> | Assinatura que vai ser verificada, em representação Base64 ou Base64URL, dependendo do valor de `options.encoding` |
-| options | Object | -> | Opções de assinatura |
-| Resultados | Object | <- | Estado da verificação |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | --------------------------- | ------------------------------------------------------------------------------------------------------------------ |
+| message | Text, Blob | -> | Mensagem usada para produzir a assinatura |
+| signature | Text | -> | Assinatura que vai ser verificada, em representação Base64 ou Base64URL, dependendo do valor de `options.encoding` |
+| options | Object | -> | Opções de assinatura |
+| Resultados | Object | <- | Estado da verificação |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md
index ad758a82c18dcc..7e99bc1ccb2589 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/DataClassClass.md
@@ -443,7 +443,7 @@ Neste exemplo, a primeira entidade se criará e salvará mas a segunda falhará
| Parâmetro | Tipo | | Descrição |
| ---------- | -------------------------- | :-------------------------: | ---------------------------------------------------- |
-| primaryKey | Integer OR Text | -> | Valor da chave primária da entidade a recuperar |
+| primaryKey | Integer, Text | -> | Valor da chave primária da entidade a recuperar |
| settings | Object | -> | Opção de construção: context |
| Resultados | 4D. Entity | <- | Entidade que coincide com a chave primária designada |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md
index e11f337ec24eb4..5b04976f30264a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/FileClass.md
@@ -713,7 +713,7 @@ $app.setAppInfo($info)
| Parâmetro | Tipo | | Descrição |
| --------- | ---- | -- | ------------------------------ |
-| content | BLOB | -> | Novos conteúdos para o arquivo |
+| content | Blob | -> | Novos conteúdos para o arquivo |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
index 3cb769ed431ece..b08fdc93d962a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/IMAPTransporterClass.md
@@ -1081,7 +1081,7 @@ Se quiser recuperar os 20 e-mails mais recentes sem alterar o seu estatuto de "v
| msgNumber | Integer | -> | Número sequencial da mensagem |
| msgID | Text | -> | ID única da mensagem |
| updateSeen | Parâmetros | -> | Se Verdadeiro, a mensagem é marcada "visto" na caixa de correio. Se Falso, a mensagem é deixada intocada. |
-| Resultados | BLOB | <- | Blob da string MIME retornado do servidor mail |
+| Resultados | Blob | <- | Blob da string MIME retornado do servidor mail |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
index 2f26aa8b046b67..7c72503a088d52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/MailAttachmentClass.md
@@ -38,7 +38,7 @@ Objetos anexos oferecem as propriedades e funções apenas leitura abaixo:
| ----------- | ---------------------------------- | :-------------------------: | ------------------------------------------------------------------------------------------------- |
| file | 4D. File | -> | Parâmetros |
| zipFile | 4D. ZipFile | -> | Arquivo zip |
-| blob | 4D. Blob | -> | Blob contendo o anexo |
+| blob | 4D. Blob | -> | Blob containing the attachment |
| path | Text | -> | Pode passar uma rota ou um Blob para definir o anexo. |
| name | Text | -> | Nome + extensão usado pelo cliente email para designar o anexo |
| cid | Text | -> | ID do anexo (apenas mensagens HTML), ou " " se nenhum cid for exigido |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md
index 34341fbd556d77..34446aea9ef499 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/SessionClass.md
@@ -17,14 +17,15 @@ Os objetos de sessão são retornados pelo comando [`Session`](../commands/sessi
Os seguintes tipos de sessões são suportados por essa classe:
-- [**Sessões de usuário web**](WebServer/sessions.md): sessões de usuário web estão disponíveis quando [sessões escaláveis estão habilitadas em seu projeto](WebServer/sessions.md#enabling-web-sessions). Eles são usados para conexões Web e REST e podem receber privilégios.
-- [**Sessões de usuário cliente remoto**](../Desktop/clientServer.md#remote-user-sessions): em aplicações cliente/servidor, os usuários remotos têm suas próprias sessões gerenciadas no servidor.
-- [**Sessão de procedimentos armazenados**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): Todos os procedimentos armazenados executados no servidor compartilham a mesma sessão de usuário virtual.
-- [**Standalone session**](../Project/overview.md#development): Objeto de sessão local retornado em aplicativo de usuário único (útil nas fases de desenvolvimento e teste de aplicativos cliente/servidor).
+- [**Sessões de usuário web**](WebServer/sessions.md): sessões de usuário web estão disponíveis quando [sessões escaláveis estão habilitadas em seu projeto](WebServer/sessions.md#enabling-web-sessions). They are used for Web connections (including and REST access), and are controlled by assigned [privileges](../ORDA/privileges.md).
+- [**Desktop sessions**](../Desktop/sessions.md), which include:
+ - [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions): In client/server applications, remote users have their own sessions managed on the server.
+ - [**Stored procedures sessions**](../Desktop/sessions.md#stored-procedure-sessions): Virtual user session for all stored procedures executed on the server.
+ - [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions): Local session object returned in single-user application (useful in development and test phases of client/server applications).
-:::note
+:::warning About session privileges
-A disponibilidade de propriedades e funções no objeto `Session` depende do tipo de sessão.
+All session types can handle privileges, but only the code executed in a **web context** is actually controlled by session's privileges.
:::
@@ -54,10 +55,10 @@ A disponibilidade de propriedades e funções no objeto `Session` depende do tip
História
-| Release | Mudanças |
-| ------- | -------------------------- |
-| 21 | Support of remote sessions |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 18 R6 | Adicionado |
@@ -73,33 +74,26 @@ A disponibilidade de propriedades e funções no objeto `Session` depende do tip
#### Descrição
-:::note
-
-This function does nothing and always returns **True** with stored procedure sessions and standalone sessions.
-
-:::
-
The `.clearPrivileges()` function removes all the privileges associated to the session (excluding promoted privileges) and returns **True** if the execution was successful.
-A menos que esteja no modo ["forceLogin"](../REST/authUsers.md#force-login-mode), a sessão se torna automaticamente uma sessão de convidado. No modo "forceLogin", `.clearPrivileges()` não transforma a sessão em uma sessão Guest, apenas limpa os privilégios da sessão.
-
:::note
This function does not remove **promoted privileges** from the web process, whether they are added through the [roles.json](../ORDA/privileges.md#rolesjson-file) file or the [`promote()`](#promote) function.
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
```4d
-//Invalidar uma sessão de usuário da web
-var $isGuest : Boolean
+//Invalidate a web user session
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest é True
```
@@ -110,10 +104,10 @@ $isGuest:=Session.isGuest() //$isGuest é True
História
-| Release | Mudanças |
-| ------- | -------------------------- |
-| 21 | Support of remote sessions |
-| 20 R9 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R9 | Adicionado |
@@ -121,33 +115,28 @@ $isGuest:=Session.isGuest() //$isGuest é True
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ------- | :-------------------------: | -------------------------------------- |
-| lifespan | Integer | -> | Duração do token de sessão em segundos |
-| Resultados | Text | <- | UUID of the token |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ------- | :-------------------------: | ------------------------------------------------------------------------ |
+| lifespan | Integer | -> | Session token lifespan in seconds (web sessions only) |
+| Resultados | Text | <- | UUID of the token |
#### Descrição
-:::note
-
-This function is available with web user sessions and remote sessions. It returns an empty string in stored procedure and standalone sessions.
-
-:::
-
A função `.createOTP()` cria um novo OTP (uma senha única) para a sessão e retorna seu UUID. Esse token é exclusivo da sessão em que foi gerado.
Para mais informações sobre os tokens OTP, consulte [esta seção](../WebServer/sessions.md#session-token-otp).
-You can set a custom timeout by passing a value in seconds in *lifespan*. If an expired token is used to restore a session, it is ignored. By default, if the *lifespan* parameter is omitted:
+If an expired token is used to restore a session, it is ignored.
+
+For web sessions, you can set a custom timeout by passing a value in seconds in *lifespan*. Por padrão, se o parâmetro *lifespan* for omitido, o token será criado com o mesmo tempo de vida que o [`.idleTimeOut`](#idletimeout) da sessão.
-- with web user sessions, the token is created with the same lifespan as the [`.idleTimeOut`](#idletimeout) of the session.
-- with remote sessions, the token is created with a 10 seconds lifespan.
+For desktop sessions, the token is created with a 10 seconds lifespan.
-For **web user sessions**, the returned token can be used in exchanges with third-party applications or websites to securely identify the session. Por exemplo, o token de sessão OTP pode ser usado com um aplicativo de pagamento.
+The returned token can be used in exchanges with third-party applications or websites to securely identify the session. Por exemplo, o token de sessão OTP pode ser usado com um aplicativo de pagamento.
-For **remote sessions**, the returned token can be used on 4D Server to identitfy requests coming from a [remote 4D running Qodly forms in a Web area](../Desktop/clientServer.md#remote-user-sessions).
+The returned token can be used by 4D Server or 4D single-user application to identify requests coming from the web that [share the session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Exemplo
@@ -182,12 +171,6 @@ $token := Session.createOTP( 60 ) //o token é válido por 1 mn
#### Descrição
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.demote()` function removes the promoted privilege whose id you passed in *promoteId* from the web process, if it was previously added by the [`.promote()`](#promote) function.
If no privilege with *promoteId* was promoted using [`.promote()`](#promote) in the web process, the function does nothing.
@@ -262,10 +245,10 @@ $expiration:=Session.expirationDate //por exemplo "2021-11-05T17:10:42Z"
História
-| Release | Mudanças |
-| ------- | --------------------------------- |
-| 21 | Support of remote client sessions |
-| 20 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R6 | Adicionado |
@@ -289,9 +272,10 @@ This function returns privileges assigned to a Session using the [`setPrivileges
:::
-With remote client sessions, the privileges only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-With stored procedure sessions and standalone sessions, this function returns a collection only containing "WebAdmin".
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
@@ -360,10 +344,10 @@ $privileges := Session.getPrivileges()
História
-| Release | Mudanças |
-| ------- | ----------------------------------------------------------------------- |
-| 21 | Returns True for promoted privileges, Support of remote client sessions |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ------------------------------------------------------------------------------- |
+| 21 | Returns True for promoted privileges, Support of remote and standalone sessions |
+| 18 R6 | Adicionado |
@@ -388,26 +372,27 @@ This function returns True for the *privilege* if called from a function that wa
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-With stored procedure sessions and standalone sessions, this function always returns True, whatever the *privilege*.
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
-Você deseja verificar se o privilégio "WebAdmin" está associado à sessão do usuário da Web:
+You want to check if the "CreateInvoices" privilege is associated to the web user session:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Acesso é concedido, não faça nada
+If (Session.hasPrivilege("CreateInvoices"))
+ //Access to Invoice creation features
Else
- //Exibe uma página de autenticação
+ //No access to Invoice creation features
End if
```
#### Veja também
-[*Blog posts about this feature*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog post)](https://blog.4d.com/?s=hasPrivilege)
@@ -500,26 +485,16 @@ End if
#### Descrição
-:::note
-
-Essa propriedade só está disponível com cliente remoto, procedimento armazenado e sessões autônomas.
+The `.info` property describes the desktop or web session.
-:::
-
-A propriedade `.info` descreve o cliente remoto ou a sessão do procedimento armazenado no servidor, ou a sessão autônoma.
-
-:::note
-
-- O objeto `.info` é o mesmo objeto retornado na propriedade "session" pelo comando [`Process activity`](../commands/process-activity.md) para sessões de procedimento armazenado e cliente remoto.
-- O objeto `.info` é o mesmo objeto retornado pelo comando [`Session info`](../commands/session-info.md) para uma sessão autônoma.
-
-:::
+- **Remote sessions** and **Stored procedure sessions**: The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command.
+- **Standalone sessions**: The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command.
O objeto `.info` contém as seguintes propriedades:
| Propriedade | Tipo | Descrição |
| ---------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | Tipo de sessão: "remote", "storedProcedure", "standalone" |
+| type | Text | Session type: "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) |
| machineName | Text | Sessões remotas: nome da máquina remota. Sessão de procedimentos armazenados: nome da máquina do servidor. Sessão autônoma: nome da máquina |
| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. |
@@ -554,9 +529,9 @@ Desde `. nfo` é uma propriedade computada, é recomendável chamá-lo uma vez e
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ---------- | :-------------------------: | ----------------------------------------------------------- |
-| Resultados | Parâmetros | <- | True se a sessão for uma sessão Guest, False caso contrário |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | -------------------------------------------------------------------------------------- |
+| Resultados | Parâmetros | <- | True if session is a Guest one, False otherwise (web sessions only) |
@@ -564,11 +539,17 @@ Desde `. nfo` é uma propriedade computada, é recomendável chamá-lo uma vez e
:::note
-Essa função sempre retorna **False** com cliente remoto, procedimento armazenado e sessões autônomas.
+This function always returns **False** with desktop sessions.
:::
-A função `.isGuest()` retorna True se a sessão for uma sessão Guest (ou seja, não tem privilégios).
+The `.isGuest()` function returns True as long as `setPrivileges()` is not called in the session or after a [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) has been executed in the session.
+
+:::note Compatibidade
+
+With legacy sessions, `.isGuest()` returns True if the session has no privileges.
+
+:::
#### Exemplo
@@ -607,12 +588,6 @@ End if
#### Descrição
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.promote()` function adds the privilege defined in the *privilege* parameter to the current process during the execution of the calling function and returns the id of the promoted privilege.
Dynamically adding privileges is useful when access rights depend on the execution context, which cannot be fully defined in the "roles.json" file. This is particularly relevant when the same function can be executed by users with different access levels. The use of `.promote()` ensures that only the current process is granted the necessary privileges, without affecting others.
@@ -628,6 +603,11 @@ The returned id is incremented each time a privilege is dynamically added to the
To remove a privilege dynamically, call the `demote()` function with the appropriate id.
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
+
#### Exemplo
Several users connect to a single endpoint that serves different applications. A user from application #1 does not need the "super_admin" privilege because they don't create "VerySensitiveInfo". A user from application #2 needs "super_admin" privilege.
@@ -686,12 +666,6 @@ End if
#### Descrição
-:::note
-
-Essa função só está disponível com sessões de usuário Web. Ele retorna False em outros contextos.
-
-:::
-
A função `.restore()` substitui a sessão do usuário da web pela sua sessão original correspondente ao *token* UUID. O armazenamento e os privilégios da sessão são restaurados.
Se a sessão original do usuário tiver sido restaurada corretamente, a função retornará `true`.
@@ -730,7 +704,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Release | Mudanças |
| ------- | ------------------------------------------- |
-| 21 | Support of remote client sessions |
+| 21 | Support of remote and standalone sessions |
| 19 R8 | Suporte da propriedade "roles" das Settings |
| 18 R6 | Adicionado |
@@ -751,12 +725,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Descrição
-:::note
-
-This function does nothing and always returns **False** with stored procedure sessions and standalone sessions.
-
-:::
-
A função `.setPrivileges()` associa os privilégios e/ou papéis definidos no parâmetro para a sessão e retorna **True** se a execução foi bem sucedida .
- No parâmetro *privilege*, passe uma cadeia de caracteres contendo um nome de privilégio (ou vários nomes de privilégio separados por vírgula).
@@ -781,7 +749,10 @@ Como padrão quando não houver um privilégio associado à sessão, a sessão
A propriedade [`userName`](#username) está disponível no nível do objeto de sessão (somente leitura).
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
@@ -813,10 +784,10 @@ End if
História
-| Release | Mudanças |
-| ------- | ------------------------------------------------------------- |
-| 20 R5 | Suporte a sessões de procedimento armazenado e cliente remoto |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | --------------------------- |
+| 20 R5 | Support of desktop sessions |
+| 18 R6 | Adicionado |
@@ -838,6 +809,8 @@ Você pode obter a propriedade `.storage` de uma sessão usando o comando [`Sess
:::
+When a desktop session and a web session are [shared using an OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), they also share the same `.storage` object.
+
#### Exemplo de sessão na web
Você deseja armazenar o IP do cliente na propriedade `.storage`. Você pode escrever no método de banco de dados `On Web Authentication`:
@@ -867,10 +840,10 @@ End use
História
-| Release | Mudanças |
-| ------- | ------------------------------------------------------------- |
-| 20 R5 | Suporte a sessões de procedimento armazenado e cliente remoto |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | --------------------------- |
+| 20 R5 | Support of desktop sessions |
+| 18 R6 | Adicionado |
@@ -880,10 +853,10 @@ End use
A propriedade `.userName` contém o nome de usuário associado à sessão. Pode usá-la para identificar o usuário dentro de seu código.
-- Com sessões da Web, essa propriedade é uma cadeia de caracteres vazia por padrão. Ele pode ser definido usando a propriedade `privileges` da função [`setPrivileges()`](#setprivileges).
-- Com sessões de procedimento remotas e armazenadas, esta propriedade retorna o mesmo nome de usuário que o comando [`Current user`](../commands-legacy/current-user.md).
-- Com sessões autônomas, essa propriedade contém "designer" ou o nome definido com o comando [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Web sessions**: This property is an empty string by default. Ele pode ser definido usando a propriedade `privileges` da função [`setPrivileges()`](#setprivileges).
+- **Remote/Stored procedure sessions**: This property returns the same user name as the [`Current user`](../commands-legacy/current-user.md) command.
+- **Standalone sessions**: This property contains "designer" or the name set with the [`SET USER ALIAS`](../commands-legacy/set-user-alias.md) command.
-Essa propriedade é **somente leitura**.
+This property is **read only** for desktop sessions.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
index 7b6236d31b4667..59376586022c08 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/SystemWorkerClass.md
@@ -101,11 +101,11 @@ No parâmetro *options*, passe um objeto que possa conter as seguintes proprieda
Todas as funções de chamada de retorno recebem dois parâmetros de objectos. O seu conteúdo depende do retorno da chamada:
-| Parâmetro | Tipo | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
-| ---------------------------- | ------------ | ------------ | --------------- | ------------- | ------------ | ------------- |
-| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
-| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
-| $param2.data | Text ou Blob | | dados recebidos | dados de erro | | |
+| Parâmetro | Tipo | *onResponse* | *onData* | *onDataError* | *onError* | *onTerminate* |
+| ---------------------------- | ---------- | ------------ | --------------- | ------------- | ------------ | ------------- |
+| $param1 | Object | SystemWorker | SystemWorker | SystemWorker | SystemWorker | SystemWorker |
+| $param2.type | Text | "response" | "data" | "error" | "error" | "termination" |
+| $param2.data | Text, Blob | | dados recebidos | dados de erro | | |
Aqui está a sequência de chamadas de retorno:
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
index 6344f93db6789e..fea89b2f1c8936 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/TCPListenerClass.md
@@ -73,7 +73,7 @@ Os objetos TCPListener fornecem as seguintes propriedades e funções:
| Parâmetro | Tipo | | Descrição |
| ---------- | ------------------------------ | --------------------------- | -------------------------------------------------------- |
-| port | Number | -> | Porta TCP para ouvir |
+| port | Real | -> | Porta TCP para ouvir |
| options | Object | -> | Configuração [opções](#options-parameter) para o ouvinte |
| Resultados | 4D.TCPListener | <- | Novo objeto TCPListener |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
index ae4158d2033142..b5bd61686190f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/UDPSocketClass.md
@@ -45,11 +45,11 @@ UDPSocket objects provide the following properties and functions:
-| Parâmetro | Tipo | | Descrição |
-| ---------- | --------- | --------------------------- | ---------------------------------------------------------------------------------------------- |
-| port | Integer | -> | Local port used for UDP socket (0 or omitted = find any unused port to use) |
-| options | Object | -> | Configuration [options](#options-parameter) for the socket |
-| Resultados | UDPSocket | <- | New UDPSocket object |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------------------------- | --------------------------- | ---------------------------------------------------------------------------------------------- |
+| port | Integer | -> | Local port used for UDP socket (0 or omitted = find any unused port to use) |
+| options | Object | -> | Configuration [options](#options-parameter) for the socket |
+| Resultados | 4D.UDPSocket | <- | New UDPSocket object |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/VectorClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/VectorClass.md
index ce6fbe7f05e28f..cdc0b7d33236b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/VectorClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/VectorClass.md
@@ -47,7 +47,7 @@ Vector objects are shared, immutable, and streamable.
| Parâmetro | Tipo | | Descrição |
| ---------- | ------------------------- | --------------------------- | ------------------------------------------------ |
-| parâmetro | Collection of reals | -> | Collection of real numbers representing a vector |
+| parâmetro | Collection | -> | Collection of real numbers representing a vector |
| Resultados | 4D.Vector | <- | New Vector object |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormClass.md
index 064b559a834bca..33707ab6e12340 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormClass.md
@@ -60,9 +60,9 @@ While `myForm` may not display typical object properties when examined in the de
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ------------------------------------------ |
-| state | string | -> | Name of state to disable from the web page |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ------------------------------------------------- |
+| state | Text | -> | Nome do estado a ser desativado no formulário Web |
@@ -85,9 +85,9 @@ For more information on web pages states, please refer to the [States section in
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ---------------------------------------- |
-| state | string | -> | Name of state to enable on the web pages |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ---------------------------------------------- |
+| state | Text | -> | Nome do estado a ser ativado no formulário Web |
@@ -121,9 +121,9 @@ Function authenticationError()
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ---------------------------------------- |
-| msg | string | -> | Error message to display in the web page |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ------------------------------------------------ |
+| msg | Text | -> | Mensagem de erro a ser exibida no formulário Web |
@@ -156,9 +156,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ---------------------------------------------- |
-| msg | string | -> | Information message to display in the web page |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ---------------------------------------------------- |
+| msg | Text | -> | Mensagem informativa a ser exibida no formulário Web |
@@ -191,9 +191,9 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ------------------------------------------ |
-| msg | string | -> | Warning message to display in the web page |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ------------------------------------------------- |
+| msg | Text | -> | Mensagem de aviso a ser exibida no formulário Web |
@@ -224,4 +224,4 @@ If the [**Provide feedback**](https://developer.4d.com/qodly/4DQodlyPro/pageLoad
[Web Form](../commands/web-form.md)
[Web Event](../commands/web-event.md)
-[WebFormItem class](../API/WebFormItemClass.md)
\ No newline at end of file
+[WebFormItem class](../API/WebFormItemClass.md)
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
index 4100e1bf54762e..215a213de2cd57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebFormItemClass.md
@@ -34,9 +34,9 @@ For example, `WebFormObject.myImage` refers to the image component with `myImage
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ------------------------------------------------- |
-| className | string | -> | Nome da classe CSS a ser adicionada ao componente |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ------------------------------------------------- |
+| className | Text | -> | Nome da classe CSS a ser adicionada ao componente |
@@ -86,9 +86,9 @@ exposed Function isHidden()
-| Parâmetro | Tipo | | Descrição |
-| --------- | ------ | :-: | ----------------------------------------------- |
-| className | string | -> | Nome da classe CSS a ser removida do componente |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---- | :-: | ----------------------------------------------- |
+| className | Text | -> | Nome da classe CSS a ser removida do componente |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
index 5dac6f503c635f..44e895d6b32942 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketConnectionClass.md
@@ -68,9 +68,9 @@ Esta propriedade é só de leitura.
-| Parâmetro | Tipo | | Descrição |
-| --------- | -------------------- | :-: | ------------------- |
-| message | Text / Blob / Object | -> | A mensagem a enviar |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ------------------ | :-: | ------------------- |
+| message | Text, Blob, Object | -> | A mensagem a enviar |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
index 4fd51bb7b34faa..7b89b969643ef9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/API/WebSocketServerClass.md
@@ -232,7 +232,7 @@ Como resultado do `WSHandler. callback nConnection`, passe um objeto `connection
| ws | | [`4D.WebSocketConnection`](WebSocketConnectionClass.md) | <- | Objecto de ligação WebSocket actual |
| "event" | | Object | <- | Parâmetros |
| | type | Text | | "message" |
-| | data | Text / Blob / Object | | dados enviados pelo cliente |
+| | data | Text, Blob, Object | | dados enviados pelo cliente |
Este Callback para dados WebSocket. Chamado sempre que o WebSocket recebe dados.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/cli.md b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/cli.md
index effa8fe0fcf916..6e595875f3c715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/cli.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/cli.md
@@ -50,7 +50,7 @@ Sintaxe:
| `--skip-onstartup` | | Inicia o projecto sem executar quaisquer métodos "automáticos", incluindo os métodos de base de dados `On Startup` e `On Exit` |
| `--startup-method` | Nome do método projecto (string) | Método de projecto a executar imediatamente após o método de base `On Startup` (se não for ignorado com `--skip-onstartup`). |
-(\*) Alguns diálogos são exibidos antes do banco de dados ser aberto, para que seja impossível escrever no arquivo Diagnóstico de log (alerta de licença, diálogo de conversão, seleção de banco de dados, seleção de arquivo de dados). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
### Exemplos
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/licenses.md b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/licenses.md
index 41e9c6471e39ba..a38439cee6a5bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/licenses.md
@@ -32,7 +32,7 @@ As licenças de implementação podem ser incorporadas na etapa de compilação
Algumas licenças 4D têm uma data de validade, após a qual devem ser renovadas. Quando a assinatura da licença for renovada na loja 4D, suas licenças serão atualizadas automaticamente nos seus aplicativos 4D na inicialização [quando você logar](GettingStarted/Installation.md) no assistente de boas-vindas.
-Em alguns casos, a atualização da licença pode exigir que você clique no botão [**Atualizar**](#refresh) da caixa de diálogo Gerenciador de Licenças.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Ativando licenças
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/webAdmin.md b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
index 10b9f28462322f..3070c26b603d0c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Admin/webAdmin.md
@@ -1,22 +1,27 @@
---
id: webAdmin
-title: Web Administration
+title: Web Administration Server
---
-Um componente de servidor web integrado, chamado `WebAdmin`, é utilizado por 4D e 4D Server para dar um acesso web seguro a funções de gestão específicas como [Explorador de dados](dataExplorer.md). Pode conectar localmente ou remotamente ao servidor web de um navegador ou uma aplicação web e acessar a aplicação 4D associada.
+An embedded web server component, named `WebAdmin`, is used by 4D and 4D Server to provide a secured web access to specific features:
-O webAdmin maneja a autenticação de usuários com privilégios "WebAdmin" de forma que possa abrir sessões administrativas e acessar interfaces dedicadas.
+- REST accesses to the project
+- the [Data Explorer](dataExplorer.md)
+- the [Qodly Studio preview rendering](https://developer.4d.com/qodly/4DQodlyPro/rendering#preview-in-qodly-studio)
+
+Pode conectar localmente ou remotamente ao servidor web de um navegador ou uma aplicação web e acessar a aplicação 4D associada.
+
+The Web Administration Server handles the authentication of users with `WebAdmin` privileges, so that they can open administration sessions and access dedicated interfaces.
Essa funcionalidade pode ser usada em aplicações 4D rodando headless (sem monitor e periféricos) assim como aplicações 4D rodando sem interfaces.
-## Iniciar o web server WebAdmin
+## Starting the Web Administration Server
-Por defecto, el
-servidor web `WebAdmin` no se lanza. Precisa configurar o lançamento ao início ou (em versões com interface) lançar manualmente usando um item de menu.
+By default, the Web Administration Server web server is not launched. Precisa configurar o lançamento ao início ou (em versões com interface) lançar manualmente usando um item de menu.
### Lançar ao início
-Pode configurar o servidor web `WebAdmin` para que se lance ao início da aplicação 4D ou 4D Server (antes de que se carregue qualquer projeto).
+You can configure the Web Administration Server to be launched at 4D or 4D Server application startup (before any project is loaded).
- Se utilizar uma aplicação 4D con interface, selecione a opção de menu **Arquivo > Administração web > Propriedades...**.
@@ -32,23 +37,23 @@ Selecione a opção **Iniciar WebAdmin ao iniciar** na caixa de diálogo de par
open ~/Desktop/4D.app --webadmin-auto-start true
```
-> Se a porta TCP usada pelo `WebAdmin` servidor web ([HTTPS](#https-port) ou [HTTP](#http-port), dependendo das configurações) não estiver disponível ao início, 4D vai tentar repetidademente os 20 portos a seguintes, e usar o primeiro que estiver disponíve Se nenhum porto estiver disponível, o servidor web não é lançado e um erro é exibido (ou em aplicação headless, aparece no console)
+> If the TCP port used by the Web Administration Server ([HTTPS](#https-port) or [HTTP](#http-port), depending on the settings) is not free at startup, 4D will try successively the 20 following ports, and use the first one that is available. Se nenhum porto estiver disponível, o servidor web não é lançado e um erro é exibido (ou em aplicação headless, aparece no console)
### Iniciar e parar
-Se utilizar uma aplicação 4D com interface, pode iniciar ou parar o servidor web `WebAdmin` de seu projeto a qualquer momento:
+If you use a 4D application with interface, you can start or stop the Web Administration Server for your project at any moment:
Selecione a opção de menu **Arquivo > Administração web > Iniciar o servidor**.

-O item de menu vira **Stop Server** quando o servidor for lançado; selecione **Parar o servidor** para parar o `WebAdmin` servidor web.
+The menu item becomes **Stop Server** when the server is launched; select **Stop Server** to stop the Web Administration Server.
-## Propriedades WebAdmin
+## Settings {#settings}
-Configurar o componente `WebAdmin` é obrigatório em particular para definir a [**chave de acesso**](#access-key). Como padrão, quando a chave de acesso não for estabelecida, o acesso via uma url não é permitido.
+Configuring the Web Administration Server is mandatory in particular to define the [**access key**](#access-key). Como padrão, quando a chave de acesso não for estabelecida, o acesso via uma url não é permitido.
-Pode configurar o componente `WebAdmin` usando [Web Administration a caixa de diálogo de configurações](#settings-dialog-box) (ver abaixo).
+You can configure the Web Administration Server using the [Web Administration settings dialog box](#settings-dialog-box) (see below).
> Se você usar uma aplicação 4D headless, você pode usar os [argumentos da *Interface de Linha de Comando*](#webadmin-headless-configuration) para definir as configurações básicas. Se quiser personalizar o arquivo de configurações para definir os parâmetros avançados.
@@ -64,28 +69,30 @@ A caixa de diálogo abaixo é mostrada:
#### Iniciar o servidor WebAdmin na inicialização
-Marque esta opção para lançar o servidor web `WebAdmin` automaticamente quando iniciar a aplicação 4D ou 4D Server (ver ([acima](#launch-at-startup)). Como padrão essa opção não é marcada.
+Check this option if you want the Web Administration Server to be automatically launched when the 4D or 4D Server application starts ([see above](#launch-at-startup)). Como padrão essa opção não é marcada.
#### Conexões HTTP em localhost aceitas
-Quando esta opção for marcada, pode conectar ao servidor web `WebAdmin` através de HTTP na mesma máquina que a aplicação 4D. Como padrão, essa opção é marcada.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTP on the same machine as the 4D application. Como padrão, essa opção é marcada.
-**Notas:**
+:::note Notas
- Conexões com HTTP outras que localhost nunca são aceitas.
- Mesmo se esta opção for marcada, quando [Accept HTTPS](#accept-https) for marcado e a configuração TLS for válida, as conexões localhost vão usar HTTPS.
+:::
+
#### Porta HTTP
-Número de porta a usar para conexões com HTTP para o servidor web `WebAdmin` web server quando a opção **Accept HTTP connections on localhost** estiver marcada. Valor normal padrão é 7080
+Port number to use for connections through HTTP to the Web Administration Server when the **Accept HTTP connections on localhost** option is checked. Valor normal padrão é 7080
#### Aceitar HTTPS
-Quando esta opção for marcada, pode se conectar ao servidor web `WebAdmin` através de HTTPS. Como padrão, essa opção é marcada.
+When this option is checked, you will be able to connect to the Web Administration Server through HTTPS. Como padrão, essa opção é marcada.
#### Porta HTTPS
-Número de porta a utilizar para as conexôes ao servidor web `WebAdmin` através de HTTPS quando a opção **HTTPS aceita** estiver marcada. Valor normal padrão é 7443
+Port number to use for connections through HTTPS to the Web Administration Server when the **Accept HTTPS** option is checked. Valor normal padrão é 7443
#### Rota da pasta de certificados
@@ -103,7 +110,7 @@ O estado ou formato do arquivo de registro da petição HTTP (HTTPDebugLog_*nn*.
#### Chave de acesso
-A configuração de uma chave de acesso é obrigatória para desbloquear o acesso ao servidor web `WebAdmin` através de uma URL (o acesso através de um comando do menu 4D não exige uma chave de acesso). Quando nenhuma chave de acesso for definida, não é permitido que nenhum cliente web se conecte através de uma URL a uma interfaz de administração web como a página [Explorador de dados](dataExplorer.md). Uma página de erro é retornada no caso uma solicitação de conexão:
+Defining an access key is mandatory to unlock access to the Web Administration Server through a URL (access via a 4D menu command does not require an access key). Quando nenhuma chave de acesso for definida, não é permitido que nenhum cliente web se conecte através de uma URL a uma interfaz de administração web como a página [Explorador de dados](dataExplorer.md). Uma página de erro é retornada no caso uma solicitação de conexão:

@@ -124,9 +131,15 @@ Essa opção só aparece se a licença do Qodly Studio estiver ativada.
Essa opção permite o acesso do usuário a [Qodly Studio](../WebServer/qodly-studio.md) no nível da aplicação 4D. Observe que você também precisa [habilitar o acesso em cada nível de projeto](../settings/web.md#enable-access-to-qodly-studio).
-## Configuração de WebAdmin sem interface
+:::note
+
+This option is automatically checked if you used the [One-click configuration dialog box](https://developer.4d.com/qodly/4DQodlyPro/gettingStarted#one-click-configuration).
+
+:::
+
+## Headless Configuration
-Todos [os parâmetros de WebAdmin](#webadmin-settings) são armazenados no arquivo `WebAdmin.4DSettings`. Ha un arquivo `WebAdmin.4DSettings` por padrão para cada aplicação 4D e 4D Server, pelo qual é possível lançar várias aplicações na mesma máquina local.
+All [Web Administration Server settings](#settings) are stored in the `WebAdmin.4DSettings` file. Ha un arquivo `WebAdmin.4DSettings` por padrão para cada aplicação 4D e 4D Server, pelo qual é possível lançar várias aplicações na mesma máquina local.
Quando rodar uma aplicação sem interface 4D ou 4D Servidor, pode estabelecer e usar o arquivo padrão `WebAdmin.4DSettings` , ou determinar um arquivo personalizado `.4DSettings`.
@@ -145,12 +158,19 @@ Exemplo:
```
-## Autenticação e sessão
+## Autenticação
-- Quando acessar uma página de gestão entrando uma URL e sem identificação prévia, uma autenticação é exigida. O usuário deve introduzir a [chave-de-acesso](#access-key) em uma janela de autenticação. Se a chave de acesso nâo foi definida na configuração de `WebAdmin`, não é possível o acesso via URL.
+When a web page controlled by the Web Administration Server is accessed by entering a URL and without prior identification, an authentication is required. O usuário deve introduzir a [chave-de-acesso](#access-key) em uma janela de autenticação:
-- Quando uma página de gerenciamento é acessada diretamentee de um item menu 4D ou 4D Servidor (tal como **Records > Data Explorer** ou **Window > Data Explorer** (4D Server)), o acesso é garantido sem autenticação, e o usuário é autenticado automaticamente
+
-Quando o acesso é concedido, uma [sessão web](WebServer/sessions.md) com o privilégio "WebAdmin" é criado na aplicação 4D. Enquanto a sessão atual tiver o privilégio "WebAdmin", o componente `WebAdmin` entrega páginas solicitadas.
+If the access key was not defined in the Web Administration Server settings, no access via URL is possible (a specific message is displayed).
+When a web page controlled by the Web Administration Server page is accessed directly from a 4D or 4D Server menu item (such as **Records > Data Explorer** or **Window > Data Explorer** (4D Server)), access is granted without authentication, the user is automatically authenticated.
+
+:::note
+
+Once the access is granted, a [web session](WebServer/sessions.md) with a specific "WebAdmin" privilege is created by the Web Administration Server. This privilege provides an open access to all data through web processes, as soon as no [specific permissions are applied to resources](../ORDA/privileges.md).
+
+:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
index dbfff1d33ccd2f..1ca3be49300476 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Concepts/quick-tour.md
@@ -422,5 +422,6 @@ No exemplo a seguir, o caractere **Carriage return** (sequência de escape `\r`)
The following conventions are used in the 4D language documentation:
- os caracteres `{ }` (chaves) indicam parâmetros opcionais. Por exemplo, `.delete( { option : Integer } )` significa que o parâmetro *option* pode ser omisso ao chamar a função.
-- a notação `{ ; ...param }` indica um número ilimitado de parâmetros. Por exemplo, `.concat( value : any { ;...valueN } ): Collection` significa que um número ilimitado de valores de qualquer tipo pode ser passado para a função.
+- the `{; ...*param* : Type}` notation indicates an unlimited number of parameters of the same type. For example, `.concat( value : any { ;...valueN : Text } ) : Collection` means that an unlimited number of values of any type can be passed to the function.
+- the `{; ...(*param* : Type ; *param2* : Type) }` notation indicates an unlimited number of groups of parameters. For example, `COLLECTION TO ARRAY ( collection : Collection ; array : Array {; propertyName : Text}{; ...(array : Array ; propertyName : Text) } )` means that an unlimited number of couple values or type array/text can be passed to the command.
- the `any` keyword is used for parameters that can be of any type (number, text, boolean, date, time, object, collection...).
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md
index fa736ab799085f..7d7aaea444e8c3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Debugging/debugger.md
@@ -42,7 +42,7 @@ A janela do depurador é normalmente apresentada na máquina onde o código é e
:::note Notas
- Se o servidor estiver a funcionar sem interface, não pode ser apresentada qualquer janela do depurador no servidor, pelo ser necessário utilizar o depurador remoto. Ver [Depuración desde máquinas remotas](./debugging-remote.md).
-- Você também pode [anexar o depurador do Qodly Studio a um aplicativo do Servidor 4D](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) se você precisar depurar páginas Qodly em um ambiente implantado.
+- Você também pode [anexar o depurador do Qodly Studio a um aplicativo do Servidor 4D](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) se você precisar depurar páginas Qodly em um ambiente implantado.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md
index 3d02ec3e74bac3..bada1f3095910e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/building.md
@@ -408,8 +408,8 @@ Os elementos devem ser instalados:
Para ativar este recurso, adicione as chaves DatabaseToEmbedInClientWinFolder e/ou DatabaseToEmbedInClientMacFolder no arquivo de configurações do buildApp. Quando uma das chaves estiver presente, a aplicação cliente gera uma aplicação monousuário: a estrutura compilada, ao inves do arquivo EnginedServer.4Dlink é colocada na pasta "Database".
-- Se existir uma pasta de dados padrão no aplicativo de usuário único, uma licença será incorporada.
-- Se não existir uma pasta de dados padrão no aplicativo de usuário único, ela será executada sem arquivo de dados e sem licença.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
O cenário básico é o seguinte:
@@ -498,10 +498,11 @@ Os seguintes módulos opcionais podem ser desmarcados:
- **SpellChecker**: usado para [correção ortográfica](../FormObjects/properties_Entry.md#auto-spellcheck) e comandos disponíveis para áreas de entrada e para áreas 4D Write Pro.
- **4D Updater**: Controla a [atualização automática](#what-is-a-clientserver-application) das partes do cliente e é usado pelo comando `SET UPDATE FOLDER` para [atualizações automáticas do servidor](#automatic-updating-of-server-or-single-user-applications).
+- **4D Qodly Pro and Data Explorer**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/) as well as the [Data Explorer](../Admin/dataExplorer.md).
## Página de licenças e certificados
-A página de Licenças e Certificados pode ser usada:
+The Licenses & Certificate page can be used to:
- configure the [deployment license(s)](../Admin/licenses.md#deployment-licenses) that you want to integrate into your [stand-alone](#application-page) or [client-server](#clientserver-page) application,
- assinar a aplicação através de um certificado no macOS.
@@ -536,7 +537,7 @@ Um aplicativo de avaliação permite que o usuário final execute uma versão co
- O comando [`License info`](../commands/license-info.md) permite que você saiba o tipo de licença do aplicativo (coleção *.attributes*) e sua data de expiração (objeto *.expirationDate*).
- A chave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite que você gerencie as versões de avaliação.
-- O comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) não faz nada quando chamado a partir de uma versão de avaliação.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
index a4708672d7465a..b73ed88ac74a04 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/clientServer.md
@@ -85,93 +85,3 @@ No entanto, você precisa prestar atenção às seguintes diferenças de comport
> Não é recomendado instalar plug-ins ou componentes no nível da aplicação 4D, ou 4D Server.
-## Sessões de usuário remoto
-
-No servidor, o comando [`Session`](../commands/session.md) retorna um objeto `session` descrevendo a sessão atual do usuário. Este objeto é tratado através das funções e propriedades da [classe `sessão`](../API/SessionClass.md).
-
-:::tip Related blog posts
-
-[Objeto de sessão remota 4D com conexão de Cliente/Servidor e procedimento armazenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure re).
-
-:::
-
-### Utilização
-
-The `session` object allows you to handle information and privileges for the remote user session.
-
-Você pode compartilhar dados entre todos os processos da sessão do usuário usando o objeto compartilhado [`session.storage`](../API/SessionClass.md#storage). Por exemplo, você pode iniciar um procedimento de autenticação e verificação do usuário quando um cliente se conecta ao servidor, envolvendo a inserção de um código enviado por e-mail ou SMS no aplicativo. Em seguida, você adiciona as informações do usuário ao armazenamento de sessão, permitindo que o servidor identifique o usuário. Dessa forma, o servidor 4D pode acessar as informações do usuário para todos os processos do cliente, permitindo a escrita de código personalizado de acordo com o papel do usuário.
-
-You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
-
-### Disponibilidade
-
-O objeto `session` do usuário remoto está disponível em:
-
-- Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente),
-- Triggers,
-- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions),
-- 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados.
-
-:::info
-
-Todos os procedimentos armazenados no servidor compartilham a mesma sessão do usuário virtual. Para obter mais informações, consulte [esta página em doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Sharing the session with Qodly pages in Web areas
-
-Remote client sessions can be used to handle Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
-
-To manage this configuration, you need to use remote client sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip Related blog post
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Exemplo
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-*resetPrivileges()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-*getOTP()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/sessions.md
new file mode 100644
index 00000000000000..59ac7ed6aa960d
--- /dev/null
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Tipos de sessão
+
+Desktop sessions include:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sessões de usuário remoto
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Este objeto é tratado através das funções e propriedades da [classe `sessão`](../API/SessionClass.md).
+
+:::note
+
+On a remote 4D, the `session` object always returns null.
+
+:::
+
+:::tip Related blog posts
+
+[Objeto de sessão remota 4D com conexão de Cliente/Servidor e procedimento armazenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure re).
+
+:::
+
+### Utilização
+
+The `session` object allows you to handle information and privileges for the remote user session.
+
+Você pode compartilhar dados entre todos os processos da sessão do usuário usando o objeto compartilhado [`session.storage`](../API/SessionClass.md#storage). Por exemplo, você pode iniciar um procedimento de autenticação e verificação do usuário quando um cliente se conecta ao servidor, envolvendo a inserção de um código enviado por e-mail ou SMS no aplicativo. Em seguida, você adiciona as informações do usuário ao armazenamento de sessão, permitindo que o servidor identifique o usuário. Dessa forma, o servidor 4D pode acessar as informações do usuário para todos os processos do cliente, permitindo a escrita de código personalizado de acordo com o papel do usuário.
+
+You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
+
+### Disponibilidade
+
+O objeto `session` do usuário remoto está disponível em:
+
+- Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente),
+- Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Stored procedure sessions
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilização
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilidade
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### Utilização
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilidade
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Related blog post
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Exemplo
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Extensions/develop-components.md b/i18n/pt/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
index 27e7ffc5db794a..018eb69a31e94e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Extensions/develop-components.md
@@ -448,6 +448,30 @@ A execução do código de inicialização ou fechamento é feita por meio do m
> Por motivos de segurança, você deve autorizar explicitamente a execução do método de banco de dados `On Host Database Event` no banco de dados do host para poder chamá-lo. Para fazer isso, você deve marcar a opção [**Executar o método "On Host Database Event" dos componentes**](../settings/security.md#options) na página Segurança das Configurações.
+## Ícone personalizado
+
+You can use a **custom icon** for your dependency, so that it can be visually distinguished from other components in the [Project Dependencies panel](../Project/components.md#monitoring-project-dependencies).
+
+When no custom icon is defined, components use a **default icon**:
+
+
+
+To declare a custom icon for your component:
+
+1. Create a picture file for the icon and name it `logo.svg` or `logo.png`. Note that the picture will be displayed with a square shape (and automatically resized if necessary). The **svg** format is recommended.
+
+2. Copy the icon file in the [**Resources folder**](../Project/architecture.md#resources) of the component.
+
+The logo file will be used in the Project Dependency window for the component, whether it is interpreted or [built](../Desktop/building.md#build-component).
+
+
+
+:::note
+
+If both a `logo.svg` and `logo.png` files are found, the `logo.svg` takes priority.
+
+:::
+
## Info.plist
Components can have an `Info.plist` file at their [root folder](../Project/architecture.md) to provide extra information readable by the system (macOS only) and the [Dependency manager](../Project/components.md#loading-components).
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
index e1f1d4853cf367..1b6cf75aaf74f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/FormObjects/subform_overview.md
@@ -174,12 +174,21 @@ A comunicação entre o formulário pai e as instâncias do subformulário pode
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. O evento é recebido no método do objeto contentor. Ele pode estar na origem de qualquer evento detectado pelo subformulário (clique, arrastar e soltar etc.).
O código do evento não tem restrições (por exemplo, 20000 ou -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. No primeiro caso, você só pode usar eventos que você verificou na Lista de Propriedades para sub-formulários. No segundo caso, o código não deve corresponder a nenhum evento de formulário existente. Recomenda-se usar um valor negativo para ter certeza de que esse código não será usado por 4D em versões futuras.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md b/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md
index 424fdf62e9e4c2..4d466489ce7f87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/Notes/updates.md
@@ -12,6 +12,7 @@ Leia [**O que há de novo no 4D v21 R2**](https://blog.4d.com/en-whats-new-in-4d
- [Code Live Checker](../code-editor/write-class-method.md#warnings-and-errors) has been enhanced to provide greater precision in error detection (see [this blog post](https://blog.4d.com/better-error-handling-and-type-inference-for-4d-developers) for more information).
- [4D Write Pro standard actions](../WritePro/user-legacy/standard-actions.md) that apply [lists](../WritePro/user-legacy/using-a-4d-write-pro-area.md#lists) now automatically adjust paragraph margins to keep markers positioned inside it.
- Built-in support of `order by` in query strings for AI vector searches using [`query()`](../API/DataClassClass.md#query-by-vector-similarity) functions and the [REST API](../REST/$orderby.md).
+- You can [customize the icons of your components](../Extensions/develop-components.md#custom-icon).
- 4D AIKit component: new [File API](../aikit/Classes/OpenAIFilesAPI.md) class to implement **file upload** features.
- [**Find in Design**](../Project/search-replace.md#search-in-components) and [**Replace in contents**](../Project/search-replace.md#replace-in-contents) features can now support editable components.
- [**Lista de erros corrigida**](https://bugs.4d.fr/fixedbugslist?version=21_R2): lista de todos os bugs corrigidos em 4D 21 R2.
@@ -22,7 +23,7 @@ Leia [**O que há de novo no 4D v21 R2**](https://blog.4d.com/en-whats-new-in-4d
| Biblioteca | Versão atual | Atualizado em 4D | Comentário |
| ---------- | -------------------------------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | 9b86817 | **21 R2** | Usado para QUIC |
+| BoringSSL | 9b86817 | **21** | Usado para QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 7.3.27 | 20 | Usado para verificação ortográfica em formulários 4D e 4D Write Pro |
| ICU | 77.1 | **21** | This upgrade forces an automatic rebuild of alphanumeric, text and object indexes. |
@@ -32,10 +33,10 @@ Leia [**O que há de novo no 4D v21 R2**](https://blog.4d.com/en-whats-new-in-4d
| Libuv | 1.51.0 | **21** | Usado para QUIC |
| libZip | 1.11.4 | **21** | Utilizado pelos componentes zip class, 4D Write Pro, svg e serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.18.0 | **21 R2** | Usado para QUIC |
+| ngtcp2 | 1.18.0 | **21** | Usado para QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Used for [`WP Export document`](../WritePro/commands/wp-export-document.md) and [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
-| SpreadJS | 17.1.0 | 20 R7 | Veja [este post de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) para uma visão geral dos novos recursos |
+| SpreadJS | 18.2.0 | 21 R2 | Veja [este post de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-21-r2/) para uma visão geral dos novos recursos |
| webKit | WKWebView | 19 | |
| Xerces | 3.3.0 | **21** | Used for XML commands |
| Zlib | 1.3.1 | **21** | |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md b/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md
index c6224a1a1109d3..a868f0e7fed2ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/REST/authUsers.md
@@ -29,7 +29,7 @@ A sequência de login do usuário é a seguinte:
2. Você chama sua [`authentify()`](#function-authentify) (criado previamente), na qual você verifica as credenciais do usuário e chama [`Session.setPrivileges()`](../API/SessionClass.md#setprivileges) com privilégios apropriados. `authentify()` deve ser uma [função de datastore class](../ORDA/ordaClasses.md#datastore-class) exposta.
-3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](../WebServer/qodly-studio.md) (called via the `/rest/$getWebForm` request).
+3. La petición `/rest/$catalog/authentify` se envía al servidor junto con las credenciales del usuario. This step only requires a basic login form that do not access data; it can be a [Qodly page](https://developer.4d.com/qodly/) (called via the `/rest/$getWebForm` request).
4. If the user is successfully authentified, a 4D license is consumed on the server and all REST requests are accepted.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
index 8694213d126f02..acf1238d4259ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ A área "Visão Geral" fornece várias informações sobre o sistema, aplicativo

-Geralmente, você precisará verificar o [**Gerenciador de licenças**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalhes
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md
index 09fd59389d4d97..1315ff6d25c8f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WebServer/sessions.md
@@ -10,7 +10,7 @@ As sessões Web permitem:
- manipular várias solicitações simultaneamente do mesmo cliente web através de um número ilimitado de processos preventivos (sessões web são **escaláveis**),
- gerenciar a sessão por um objeto `Session` e da [API de session](API/SessionClass.md),
- armazena e compartilha dados entre processos de um cliente web usando o [.storage](../API/SessionClass.md#storage) da sessão,
-- associate privileges to the user running the session.
+- associate [privileges](../ORDA/privileges.md) to the user running the session.
:::tip Related blog post
@@ -18,12 +18,18 @@ As sessões Web permitem:
:::
+:::note
+
+Destkop applications (client/server and single-user) also provide 4D developers with [specific sessions](../Desktop/sessions.md).
+
+:::
+
## Usos
As sessões Web são usadas para:
- [Web applications](gettingStarted.md) sending http requests (including [SOAP Web services](../commands/theme/Web_Services_Server.md) and [/4DACTION](../WebServer/httpRequests.md#4daction) requests),
-- calls to the [REST API](../REST/authUsers.md), which are used by [remote datastores](../ORDA/remoteDatastores.md) and [Qodly forms](qodly-studio.md).
+- calls to the [REST API](../REST/authUsers.md), which are used by [remote datastores](../ORDA/remoteDatastores.md) and [Qodly forms](https://developer.4d.com/qodly/).
## Enabling web sessions {#enabling-web-sessions}
@@ -63,7 +69,7 @@ O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +77,6 @@ The `Session` object of the current session can then be accessed through the [`S

-:::info
-
-Os processos Web geralmente não terminam, eles são reciclados em um pool para aumentar a eficiência. Quando um processo termina de executar uma solicitação, ele é colocado de novo no pool e disponibilizado para a próxima solicitação. Since a web process can be reused by any session, [process variables](Concepts/variables.md#process-variables) must be cleared by your code at the end of its execution (using [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) for example). Esta limpeza é necessária para todas as informações relacionadas ao processo, como uma referência a um arquivo aberto. Esta es la razón por la que **se recomienda** utilizar el objeto [Sesión](API/SessionClass.md) cuando se quiera guardar información relacionada con la sesión.
-
-:::
-
## Armazenar e compartilhar informações de sessão
Cada objeto `Session` fornece uma propriedade [`.storage`](API/SessionClass.md#storage) que é um [objeto compartilhado](Concepts/shared.md). Essa propriedade permite que você compartilhe informações entre todos os processos manipulados pela sessão.
@@ -100,7 +100,7 @@ Quando uma sessão Web é fechada, se o comando [`Session`](commands/session.md)
:::info
-Você pode fechar uma sessão em um formulário Qodly usando o recurso [**logout**](qodly-studio.md#logout).
+Você pode fechar uma sessão em um formulário Qodly usando o recurso [**logout**](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout).
:::
@@ -219,6 +219,12 @@ In 4D, OTP session tokens are useful when calling external URLs and being called
:::
+:::note
+
+Session tokens can be shared with [desktop sessions](../Desktop/sessions.md) to implement applications using hybrid sessions.
+
+:::
+
### Visão Geral
The basic sequence of an OTP session token use in a 4D web application is the following:
@@ -475,7 +481,7 @@ A new user is created, and some information is stored in the session, especially
- Both HTTP and HTTPS schemas are supported.
- Apenas [sessões escaláveis](#enabling-web-sessions) podem ser reutilizadas com tokens.
- Somente as sessões do banco de dados do host podem ser reutilizadas (as sessões criadas em servidores Web de componentes não podem ser restauradas).
-- Tokens are not supported with client/server sessions or single-user sessions.
+- Tokens can be **shared** with [desktop sessions](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses) for hybrid accesses (desktop and web).
### Lifespan
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
index c16674ffdbc820..a8edf8a95950a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-bookmark-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-bookmark-range
displayed_sidebar: docs
---
-**WP Bookmark range** ( *docWP* ; *NomeBK* ) -> Resultado
+**WP Bookmark range** ( *docWP* : Object ; *NomeBK* : Text ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
index 6d3d4d2fe62475..75cdcd07d27939 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-compute-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-compute-formulas
displayed_sidebar: docs
---
-**WP COMPUTE FORMULAS** ( *objTarget* )
+**WP COMPUTE FORMULAS** ( *objTarget* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
index 76f4819dcd2ac8..582c379c16148b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-bookmark
displayed_sidebar: docs
---
-**WP DELETE BOOKMARK** ( *wpDoc* ; *nomBK* )
+**WP DELETE BOOKMARK** ( *wpDoc* : Object ; *nomBK* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
index 41ef385026eb3b..d99cc2f56c1d07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-footer
displayed_sidebar: docs
---
-**WP DELETE FOOTER** ( *wpSeção* )
+**WP DELETE FOOTER** ( *wpSeção* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
index 2239e139dd2a62..88b765a844b018 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-header
displayed_sidebar: docs
---
-**WP DELETE HEADER** ( *wpSecao* )
+**WP DELETE HEADER** ( *wpSecao* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
index c30990de40bb9c..98aed3f47eeece 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-picture.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-picture
displayed_sidebar: docs
---
-**WP DELETE PICTURE** ( *imgObj* )
+**WP DELETE PICTURE** ( *imgObj* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
index 082181586cdfff..6ef37a1792e9e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-style-sheet
displayed_sidebar: docs
---
-**WP DELETE STYLE SHEET** ( *objFolhaEstilo* ) | (*wpDoc* ; *nomeFolhaEstilo* )
+**WP DELETE STYLE SHEET** ( *objFolhaEstilo* : Object ) | (*wpDoc* : Object ; *nomeFolhaEstilo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
index 3f430d411d6d7e..8a83da4b4ba098 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-delete-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-text-box
displayed_sidebar: docs
---
-**WP DELETE TEXT BOX** ( *textBox* )
+**WP DELETE TEXT BOX** ( *textBox* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
index c87e7fdb377fd5..4214837b4bf343 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-all.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-all
displayed_sidebar: docs
---
-**WP Find all** ( *objAlvo* ; *valorPesquisa* ; *condiçãoPesquisa* {; *valorSubstituir*} ) -> Resultado
+**WP Find all** ( *objAlvo* : Object ; *valorPesquisa* : Text ; *condiçãoPesquisa* : Integer {; *valorSubstituir* : Text} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
index 8d909c3c0702a8..b69dafbe9cd56c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-next.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-next
displayed_sidebar: docs
---
-**WP Find next** ( *objAlvo* ; *pesquisarDepois* ; *valorPesquisa* ; *condiçãoPesquisa* {; *valorSubstituir*} ) -> Resultado
+**WP Find next** ( *objAlvo* : Object ; *pesquisarDepois* : Object ; *valorPesquisa* : Text ; *condiçãoPesquisa* : Integer {; *valorSubstituir* : Text} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
index 3f6d2ac674bff7..973473840e04b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-find-previous.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-find-previous
displayed_sidebar: docs
---
-**WP Find previous** ( *objAlvo* ; *pesquisarAntes* ; *valorPesquisa* ; *condiçãoPesquisa* {; *substituirValor*} ) -> Resultado
+**WP Find previous** ( *objAlvo* : Object ; *pesquisarAntes* : Object ; *valorPesquisa* : Text ; *condiçãoPesquisa* : Integer {; *substituirValor* : Text} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
index 3a1283efbd3f30..29589a85086ab0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-freeze-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-freeze-formulas
displayed_sidebar: docs
---
-**WP FREEZE FORMULAS** ( *alvoObj* {; *recompute*} )
+**WP FREEZE FORMULAS** ( *alvoObj* : Object {; *recompute* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
index 78166d2ec21c2d..79a4b6ed09ae91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-body.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-body
displayed_sidebar: docs
---
-**WP Get body** ( *wpDoc* ) -> Resultado
+**WP Get body** ( *wpDoc* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
index 71937e18f915d2..2bff298e3c9a86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-bookmarks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-bookmarks
displayed_sidebar: docs
---
-**WP GET BOOKMARKS** ( *docWP* ; *arrayNomeMarcadores* )
+**WP GET BOOKMARKS** ( *docWP* : Object ; *arrayNomeMarcadores* : Array texto )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
index 3f6d9a5ac03713..f5f114ecdb5747 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-breaks.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-breaks
displayed_sidebar: docs
---
-**WP Get breaks** ( *objAlvo* {; *tipoQuebra*} ) -> Resultado
+**WP Get breaks** ( *objAlvo* : Object {; *tipoQuebra* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
index 4b16a4d7a1e18e..4036b636758492 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-data-context
displayed_sidebar: docs
---
-**WP Get data context** ( *wpDoc* ) -> Resultado
+**WP Get data context** ( *wpDoc* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
index ec268c19c3af35..cb75f6ec62c815 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-element-by-id.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-element-by-id
displayed_sidebar: docs
---
-**WP Get element by ID** ( *wpDoc* ; *ID* ) -> Resultado
+**WP Get element by ID** ( *wpDoc* : Object ; *ID* : Text ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
index 1b2c3451da9588..23ce2efc3a13c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-elements.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-elements
displayed_sidebar: docs
---
-**WP Get elements** ( *objAlvo* {; *tipoElemento*} ) -> Resultado
+**WP Get elements** ( *objAlvo* : Object {; *tipoElemento* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
index fe7b9bbd85b327..3f99017187ae8a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-footer
displayed_sidebar: docs
---
-**WP Get footer** ( *objFaixa* ) | (*docWP* ; *indiceSecao* {; *subtipoSecao*} ) -> Resultado
+**WP Get footer** ( *objFaixa* : Object ) | (*docWP* : Object ; *indiceSecao* : Integer {; *subtipoSecao* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
index 9a820e1a14b04e..6590384add0f6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-formulas.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-formulas
displayed_sidebar: docs
---
-**WP Get formulas** ( *alvoObj* ) -> Resultado
+**WP Get formulas** ( *alvoObj* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
index e07aa5496fe8d2..b4539468a2ac81 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-frame
displayed_sidebar: docs
---
-**WP Get frame** ( {* ;} *wpArea* {; *textBoxID*} ) -> Resultado
+**WP Get frame** ( {* ;} *wpArea* : Text {; *textBoxID* : String} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
index 9db9300dee3ef1..d82ba2c33f0bea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-header
displayed_sidebar: docs
---
-**WP Get header** ( *objFaixa* ) | (*docWP* ; *indiceSecao* {; *subsecaoTipo*} ) -> Resultado
+**WP Get header** ( *objFaixa* : Object ) | (*docWP* : Object ; *indiceSecao* : Integer {; *subsecaoTipo* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
index f9f6ccab72b257..62eac124c984b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-links.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-links
displayed_sidebar: docs
---
-**WP Get links** ( *objRange* ) -> Resultado
+**WP Get links** ( *objRange* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
index 5c782ddc1f53af..1f399572a9d4cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-page-count.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-page-count
displayed_sidebar: docs
---
-**WP Get page count** ( *docWP* ) -> Resultado
+**WP Get page count** ( *docWP* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
index cdb647cfa45d97..b34f9261f997ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-position.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-position
displayed_sidebar: docs
---
-**WP Get position** ( *objRange* {; *layout*} ) -> Resultado
+**WP Get position** ( *objRange* : Object {; *layout* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
index ed4da1e4697252..acad855d12c192 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-section
displayed_sidebar: docs
---
-**WP Get section** ( *alvoObj* ) | (*wpDoc* ; índiceSeção ) -> Resultado
+**WP Get section** ( *alvoObj* : Object ) | (*wpDoc* : Object ; índiceSeção ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
index e91514efafea02..91b184f79cc371 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-sections.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-sections
displayed_sidebar: docs
---
-**WP Get sections** ( *alvoObj* ) -> Resultado
+**WP Get sections** ( *alvoObj* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
index 804a4f99b8d79a..95e9d895644560 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheet
displayed_sidebar: docs
---
-**WP Get style sheet** ( *wpDoc* ; *nomeFolhaEstilo* ) -> Resultado
+**WP Get style sheet** ( *wpDoc* : Object ; *nomeFolhaEstilo* : Text ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
index 57e288392ffd3c..2b52e512d14fa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-style-sheets
displayed_sidebar: docs
---
-**WP Get style sheets** ( *wpDoc* ; *tipo* ) -> Resultado
+**WP Get style sheets** ( *wpDoc* : Object ; *tipo* : Integer ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
index 0247ef3c74f4d5..dfd86f82c3786c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-subsection
displayed_sidebar: docs
---
-**WP Get subsection** ( *targetObj* ) | (*wpSection* ; *subSectionType* ) -> Resultado
+**WP Get subsection** ( *targetObj* : Object ) | (*wpSection* : Object ; *subSectionType* : Integer ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
index a25e8d03360cfd..c952a166877c66 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-text
displayed_sidebar: docs
---
-**WP Get text** ( *objAlvo* {; *expressoes*} ) -> Resultado
+**WP Get text** ( *objAlvo* : Object {; *expressoes* : Number} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
index 1f85956cd17093..83628817eae42a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-get-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-get-view-properties
displayed_sidebar: docs
---
-**WP Get view properties** ( * ; *wpArea* ) -> Resultado
+**WP Get view properties** ( * ; *wpArea* : Text, Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
index 3753d7971286e4..3069370611f570 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-import-style-sheets.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-import-style-sheets
displayed_sidebar: docs
---
-**WP IMPORT STYLE SHEETS** ( *targetDoc* ; *sourceDoc* )
+**WP IMPORT STYLE SHEETS** ( *targetDoc* : Object ; *sourceDoc* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
index e8ca5ce6848e20..17f775b5b46967 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-insert-table.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-insert-table
displayed_sidebar: docs
---
-**WP Insert table** ( *objFaixa* ; *modo* {; *atFaixa* {; *numCol* {; *numFilas*}}} ) -> Resultado
+**WP Insert table** ( *objFaixa* : Object ; *modo* : Integer {; *atFaixa* : Integer {; *numCol* : Integer {; *numFilas* : Integer}}} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
index 5aff24e0dc2f1f..2fe8b80cd6d8f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-is-font-style-supported.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-is-font-style-supported
displayed_sidebar: docs
---
-**WP Is font style supported** ( *faixaObj* ; *wpEstiloFonte* ) -> Resultado
+**WP Is font style supported** ( *faixaObj* : Object ; *wpEstiloFonte* : Integer ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
index 4036ea349ab034..dacb219e537f09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-bookmark.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-bookmark
displayed_sidebar: docs
---
-**WP NEW BOOKMARK** ( *objFaixa* ; *nomeBookm* )
+**WP NEW BOOKMARK** ( *objFaixa* : Object ; *nomeBookm* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
index 796ad8f066c56d..1f04ae2b31c282 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-footer.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-footer
displayed_sidebar: docs
---
-**WP New footer** ( *wpSeção* ) -> Resultado
+**WP New footer** ( *wpSeção* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
index 57a7913af2d09c..775458fb82020b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-header.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-header
displayed_sidebar: docs
---
-**WP New header** ( *wpSeção* ) -> Resultado
+**WP New header** ( *wpSeção* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
index 60b5cac002be93..4427252462887a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-style-sheet.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-style-sheet
displayed_sidebar: docs
---
-**WP New style sheet** ( *wpDoc* ; *tipoFolhaEstilo* ; *nomeFolhaEstilo* ) -> Resultado
+**WP New style sheet** ( *wpDoc* : Object ; *tipoFolhaEstilo* : Integer ; *nomeFolhaEstilo* : Text ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
index e180a0b1285807..65120a5fcb2eb0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-subsection
displayed_sidebar: docs
---
-**WP New subsection** ( *wpSeção* ; *subSeçãoTipo* ) -> Resultado
+**WP New subsection** ( *wpSeção* : Object ; *subSeçãoTipo* : Integer ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
index 54b4088dba5ea5..9996a4fc25a106 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new-text-box.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new-text-box
displayed_sidebar: docs
---
-**WP New text box** ( *wpDoc* ; *pageNum* ) -> Resultado
+**WP New text box** ( *wpDoc* : Object ; *pageNum* : Number ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
index 4678f1ec37bf56..1cb27cc50075be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-new.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-new
displayed_sidebar: docs
---
-**WP New** {( *fonte* {; *opção*} )} -> Resultado
+**WP New** ( *fonte* : Text, Blob, Object {; *opção* : Integer} )} -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
index f66e067280bfb8..73f96ccbde8d14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-paragraph-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-paragraph-range
displayed_sidebar: docs
---
-**WP Paragraph range** ( *faixaObj* ) -> Resultado
+**WP Paragraph range** ( *faixaObj* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
index 0af09898a985de..1a59f211b5e428 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-picture-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-picture-range
displayed_sidebar: docs
---
-**WP Picture range** ( *faixaObj* ) -> Resultado
+**WP Picture range** ( *faixaObj* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
index ad47909c7a2c68..eb63fa1328576e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-print.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-print
displayed_sidebar: docs
---
-**WP PRINT** ( *wpDoc* {; *modoImpr*} )
+**WP PRINT** ( *wpDoc* : Object {; *modoImpr* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
index c41d22ae03c19c..a7539a2918507e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-select.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-select
displayed_sidebar: docs
---
-**WP SELECT** ( {{* ;} *wpArea*;} {*wpArea*} {; *faixaInicio* ; *faixaFim*} )
+**WP SELECT** ( {{* ;} *wpArea* : Object;} {*wpArea* : Object} {; *faixaInicio* : Integer ; *faixaFim* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
index 4081f4a2c63399..931d37c5784787 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-selection-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-selection-range
displayed_sidebar: docs
---
-**WP Selection range** ( {* ;} *wpArea* ) -> Resultado
+**WP Selection range** ( {* ;} *wpArea* : Text ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
index 2ce221824d3abc..55c3cfdbf12a80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-data-context.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-data-context
displayed_sidebar: docs
---
-**WP SET DATA CONTEXT** ( *wpDoc* ; *contextoData* )
+**WP SET DATA CONTEXT** ( *wpDoc* : Object ; *contextoData* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
index 0c066cc417a42f..17bc8e65c71be4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-frame.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-frame
displayed_sidebar: docs
---
-**WP SET FRAME** ( {* ;} *wpArea* ; *frameSelector* {; *idTextBox*} )
+**WP SET FRAME** ( {* ;} *wpArea* : Text ; *frameSelector* : Integer {; *idTextBox* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
index 990928b9199da9..a092b5274b0bb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-link.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-link
displayed_sidebar: docs
---
-**WP SET LINK** ( *objRange* ; *objLink* )
+**WP SET LINK** ( *objRange* : Object ; *objLink* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
index 70577517ebe4da..1efe7dead66a81 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-text.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-text
displayed_sidebar: docs
---
-**WP SET TEXT** ( *wpRange* ; *novoTexto* ; *posiçaoTexto* {; *alcanceRange*} )
+**WP SET TEXT** ( *wpRange* : Object ; *novoTexto* ; *posiçaoTexto* : Number {; *alcanceRange* : Number} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
index b795058fe3adca..fa1a260bec46f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-set-view-properties.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-set-view-properties
displayed_sidebar: docs
---
-**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* ; *wpViewProps* )
+**WP SET VIEW PROPERTIES** ( {* ;} *wpArea* : Text, Object ; *wpViewProps* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
index 4120206547528e..cf050bd39ce915 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-columns
displayed_sidebar: docs
---
-**WP TABLE DELETE COLUMNS** ( *objTarget* ) | ( *refTabela* ; *numCol* {; *numColunas*} )
+**WP TABLE DELETE COLUMNS** ( *objTarget* : Object ) | ( *refTabela* : Object ; *numCol* : Integer {; *numColunas* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
index ad42a538ca800c..246fef528736fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-delete-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-delete-rows
displayed_sidebar: docs
---
-**WP TABLE DELETE ROWS** ( *objTarget* ) | ( *refTabela* ; *numLinha* {; *nbLinhas*} )
+**WP TABLE DELETE ROWS** ( *objTarget* : Object ) | ( *refTabela* : Object ; *numLinha* : Integer {; *nbLinhas* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
index d89ad2049a45ee..0e187bc21fd2eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-cells
displayed_sidebar: docs
---
-**WP Table get cells** ( *objTarget* ) | ( *refTab* ; *inCol* ; *iniFila* {; *numCol*{; *numFilas*}} ) -> Resultado
+**WP Table get cells** ( *objTarget* : Object ) | ( *refTab* : Object ; *inCol* : Integer ; *iniFila* : Integer {; *numCol* : Integer{; *numFilas* : Integer}} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
index 24b842e6cd62b3..9d5578a3b14e1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-columns
displayed_sidebar: docs
---
-**WP Table get columns** ( *objTarget* ) | ( *tabREf* ; *colInicio* {; *numCol*} ) -> Resultado
+**WP Table get columns** ( *objTarget* : Object ) | ( *tabREf* : Object ; *colInicio* : Integer {; *numCol* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
index e0204bdf225aa9..cfcc07382036b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-get-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-get-rows
displayed_sidebar: docs
---
-**WP Table get rows** ( *objAlvo* ) | ( *refTab* ; *iniFila* {; *numFilas*} ) -> Resultado
+**WP Table get rows** ( *objAlvo* : Object ) | ( *refTab* : Object ; *iniFila* : Integer, Text {; *numFilas* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
index e5f7ccbc2d8e6e..4fcb9d2307350a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-columns.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-columns
displayed_sidebar: docs
---
-**WP Table insert columns** ( objTarget | {*refTabela* ; *numCol*} {; *numColunas*} ) -> Resultado
+**WP Table insert columns** ( objTarget | {*refTabela* : Object ; *numCol* : Integer} {; *numColunas* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
index c369b8ab5c6a2a..51b9e7e0311085 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-insert-rows.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-insert-rows
displayed_sidebar: docs
---
-**WP Table insert rows** ( objTarget | {*refTabela* ; *numLinha*} {; *numLinhasInserir*} ) -> Resultado
+**WP Table insert rows** ( objTarget | {*refTabela* : Object ; *numLinha* : Integer} {; *numLinhasInserir* : Integer} ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
index b169a00b11b8c4..52e7b2de18f1bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-merge-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-merge-cells
displayed_sidebar: docs
---
-**WP TABLE MERGE CELLS** ( *targetObj* ) | ( *tableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE MERGE CELLS** ( *targetObj* : Object ) | ( *tableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
index 6ac1b342fd595a..82ba6c5d66b1d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-range
displayed_sidebar: docs
---
-**WP Table range** ( *objFaixa* ) -> Resultado
+**WP Table range** ( *objFaixa* : Object ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
index dc1600964db497..c12cefcf12ca4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-table-split-cells.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-table-split-cells
displayed_sidebar: docs
---
-**WP TABLE SPLIT CELLS** ( *objAlvo* ) | ( *TableRef* ; *startColumn* ; *startRow* {; *columnCount*{; *rowCount*}} )
+**WP TABLE SPLIT CELLS** ( *objAlvo* : Object ) | ( *TableRef* : Object ; *startColumn* : Integer ; *startRow* : Integer {; *columnCount* : Integer{; *rowCount* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
index dc1d4f76a73587..f621f40d0d3dfc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-text-range.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-text-range
displayed_sidebar: docs
---
-**WP Text range** ( *wpArea* ; *inicioFaixa* ; *fimFaixa* ) -> Resultado
+**WP Text range** ( *wpArea* : Object ; *inicioFaixa* : Integer ; *fimFaixa* : Integer ) -> Resultado
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
index 886fd18e0fcf2b..cb2f3db1f2a28b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands-legacy/wp-use-page-setup.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-use-page-setup
displayed_sidebar: docs
---
-**WP USE PAGE SETUP** ( *docWP* )
+**WP USE PAGE SETUP** ( *docWP* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
index 124392c8b62474..2e3e046c273f94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-add-picture.md
@@ -4,7 +4,7 @@ title: WP Add picture
displayed_sidebar: docs
---
-**WP Add picture** ( *wpDoc* {; *picture*} ) : Object
**WP Add picture** ( *wpDoc* {; *picturePath*} ) : Object
**WP Add picture** ( *wpDoc* {; *pictureFileObj*} ) : Object
+**WP Add picture** ( *wpDoc* : Object {; *picture* : Picture} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *picturePath* : Text} ) : Object
**WP Add picture** ( *wpDoc* : Object {; *pictureFileObj* : 4D.File} ) : Object
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
index c23e76dac2fff2..6cd2288ececd2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-section.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-section
displayed_sidebar: docs
---
-**WP DELETE SECTION** ( *section* )
**WP DELETE SECTION** ( *wpDoc* ; *indexNumber* {; *count*} )
+**WP DELETE SECTION** ( *section* : Object )
**WP DELETE SECTION** ( *wpDoc* : Object ; *indexNumber* : Integer {; *count* : Integer} )
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
index 59814528573d5f..f059a20ad78f44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-delete-subsection.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-delete-subsection
displayed_sidebar: docs
---
-**WP DELETE SUBSECTION** ( *wpSection* ; *subSectionType* )
**WP DELETE SUBSECTION** ( *subSection* )
+**WP DELETE SUBSECTION** ( *wpSection* : Object ; *subSectionType* : Integer )
**WP DELETE SUBSECTION** ( *subSection* : Object )
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
index 20e7d6838d5ae9..b78dfa77a74057 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-document.md
@@ -4,7 +4,7 @@ title: WP EXPORT DOCUMENT
displayed_sidebar: docs
---
-**WP EXPORT DOCUMENT** ( *wpDoc* ; *filePath* {; *format* {; *option*}} )
**WP EXPORT DOCUMENT** ( *wpDoc* ; *fileObj* {; *format* {; *option*}} )
+**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *filePath* : Text {; *format* : Integer {; *option* : Object, Integer}} )
**WP EXPORT DOCUMENT** ( *wpDoc* : Object ; *fileObj* : 4D.File {; *format* : Integer {; *option* : Object, Integer}} )
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
index 90eb441c3f302c..9c352e128ff159 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-export-variable.md
@@ -5,7 +5,7 @@ slug: /WritePro/commands/wp-export-variable
displayed_sidebar: docs
---
-**WP EXPORT VARIABLE** ( *wpDoc* ; *destination* ; *format* {; *option*} )
+**WP EXPORT VARIABLE** ( *wpDoc* : Object ; *destination* : Text, Blob ; *format* : Integer {; *option* : Object, Integer} )
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
index 76cc6d196ac60f..b5f91def75a03b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-get-attributes.md
@@ -4,17 +4,17 @@ title: WP Get attributes
displayed_sidebar: docs
---
-**WP Get attributes** ( *targetObj* ; *...attribName* ; *...attribValue* ) : Object
**WP Get attributes** ( *targetObj* ; *attribColl* ) : Object
+**WP Get attributes** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any ) : Object
**WP Get attributes** ( *targetObj* : Object ; *attribColl* : Collection ) : Object
-| Parâmetro | Tipo | | Descrição |
-| ----------- | ---------------------------------------------- | --------------------------- | ----------------------------------------- |
-| targetObj | Object | → | Range or element or 4D Write Pro document |
-| attribName | Text | → | Nome do atributo para obter |
-| attribValue | Text, Number, Array, Collection, Picture, Date | ← | Current value of attribute for the target |
-| attribColl | Collection | → | Collection of attribute names to get |
-| Resultado | Object | ← | Nomes e valores dos atributos |
+| Parâmetro | Tipo | | Descrição |
+| ----------- | ---------- | --------------------------- | ----------------------------------------- |
+| targetObj | Object | → | Range or element or 4D Write Pro document |
+| attribName | Text | → | Nome do atributo para obter |
+| attribValue | any | ← | Current value of attribute for the target |
+| attribColl | Collection | → | Collection of attribute names to get |
+| Resultado | Object | ← | Nomes e valores dos atributos |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
index 18ce0c5120375c..e2d379a85df196 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-import-document.md
@@ -4,7 +4,7 @@ title: WP Import document
displayed_sidebar: docs
---
-**WP Import document** ( *filePath* {; *option*} ) : Object
**WP Import document** ( *fileObj* {; *option*} ) : Object
+**WP Import document** ( *filePath* : Text {; *option* : Integer, Object} ) : Object
**WP Import document** ( *fileObj* : 4D.File {; *option* : Integer, Object} ) : Object
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
index ae118bb3c8a11f..73f0b7a02d9ecf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-break.md
@@ -4,7 +4,7 @@ title: WP Insert break
displayed_sidebar: docs
---
-**WP Insert break** ( *targetObj* ; *breakType* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert break** ( *targetObj* : Object ; *breakType* : Integer ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
index 23587c8ed23223..f90be14c10e251 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-document-body.md
@@ -4,7 +4,7 @@ title: WP Insert document body
displayed_sidebar: docs
---
-**WP Insert document body** ( *targetObj* ; *wpDoc* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert document body** ( *targetObj* : Object ; *wpDoc* : Object ; *mode* : Integer {; *rangeUpdate* : Integer} ) : Object
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
index 9457bea1279a66..d3d4c40a4d54f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-formula.md
@@ -4,7 +4,7 @@ title: WP Insert formula
displayed_sidebar: docs
---
-**WP Insert formula** ( *targetObj* ; *formula* ; *mode* {; *rangeUpdate*} ) : Object
+**WP Insert formula** ( *targetObj* : Object ; *formula* : Object ; *mode* : Real {; *rangeUpdate* : Real} ) : Object
@@ -12,8 +12,8 @@ displayed_sidebar: docs
| ----------- | ------ | --------------------------- | ------------------------------------------------------------------ |
| targetObj | Object | → | Intervalo ou elemento ou documento 4D Write Pro |
| formula | Object | → | Objeto de fórmula OU Objeto com propriedades de fórmula e nome |
-| mode | Number | → | Modo de inserção |
-| rangeUpdate | Number | → | Inclui ou exclui o conteúdo inserido dentro do intervalo |
+| mode | Real | → | Modo de inserção |
+| rangeUpdate | Real | → | Inclui ou exclui o conteúdo inserido dentro do intervalo |
| Resultado | Object | ← | Objeto de intervalo de texto que representa o resultado da fórmula |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
index 45485c2be0396f..ff43d6c0d47d70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-insert-picture.md
@@ -4,7 +4,7 @@ title: WP Insert picture
displayed_sidebar: docs
---
-**WP Insert picture** ( *targetObj* ; *picture* ; *mode* {; *rangeUpdate*} ): Object
**WP Insert picture** ( *targetObj* ; *pictureFileObj*; *mode* {; *rangeUpdate*}): Object
+**WP Insert picture** ( *targetObj* : Object ; *picture* : Picture ; *mode* : Integer {; *rangeUpdate* : Integer} ): Object
**WP Insert picture** ( *targetObj* : Object ; *pictureFileObj* : 4D.File; *mode* : Integer {; *rangeUpdate* : Integer}): Object
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
index 708890267fbbd2..4fc3efe57b9d3d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-reset-attributes.md
@@ -4,7 +4,7 @@ title: WP RESET ATTRIBUTES
displayed_sidebar: docs
---
-**WP RESET ATTRIBUTES** ( *targetObj* ; *...attribName* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *...attribName* })
**WP RESET ATTRIBUTES** ( *targetObj* ; *attribColl* )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* {; *attribColl*})
+**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *...attribName* : Text })
**WP RESET ATTRIBUTES** ( *targetObj* : Object ; *attribColl* : Collection )
**WP RESET ATTRIBUTES** ( *sectionOrSubsection* : Object {; *attribColl* : Collection})
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
index bf002467fd69a2..79363a7b7e0c80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-set-attributes.md
@@ -4,16 +4,16 @@ title: WP SET ATTRIBUTES
displayed_sidebar: docs
---
-**WP SET ATTRIBUTES** ( *targetObj* ; *...attribName* ; *...attribValue* )
**WP SET ATTRIBUTES** ( *targetObj* ; *attribObj* )
+**WP SET ATTRIBUTES** ( *targetObj* : Object ; *...attribName* : Text ; *...attribValue* : any )
**WP SET ATTRIBUTES** ( *targetObj* : Object ; *attribObj* : Object )
-| Parâmetro | Tipo | | Descrição |
-| ----------- | ----------------------------------------------- | --------------------------- | ----------------------------------------------------------------------- |
-| targetObj | Object | → | Range or element or 4D Write Pro document |
-| attribName | Text | → | Nome do atributo a ser definido |
-| attribValue | Text, Number, Object, Collection, Picture, Date | → | Novo valor de atributo |
-| attribObj | Object | → | Object containing attribute names and their corresponding values to set |
+| Parâmetro | Tipo | | Descrição |
+| ----------- | ------ | --------------------------- | ----------------------------------------------------------------------- |
+| targetObj | Object | → | Range or element or 4D Write Pro document |
+| attribName | Text | → | Nome do atributo a ser definido |
+| attribValue | any | → | Novo valor de atributo |
+| attribObj | Object | → | Object containing attribute names and their corresponding values to set |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
index c6104089308592..bdc2ea16d7fb50 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/WritePro/commands/wp-table-append-row.md
@@ -4,16 +4,16 @@ title: WP Table append row
displayed_sidebar: docs
---
-**WP Table append row** ( *tableRef* ; *...value* ) : Object
**WP Table append row** ( *tableRef* ; *valueColl* ) : Object
+**WP Table append row** ( *tableRef* : Object ; *...value* : any ) : Object
**WP Table append row** ( *tableRef* : Object ; *valueColl* : Collection ) : Object
-| Parâmetro | Tipo | | Descrição |
-| --------- | ----------------------------------------- | --------------------------- | ------------------------------------------------------- |
-| tableRef | Object | → | Referência da tabela |
-| value | Text, Number, Time, Date, Picture, Object | → | Valor(es) a serem definidos na linha |
-| valueColl | Collection | → | Collection of values to set in the row |
-| Resultado | Object | ← | Objeto intervalo linha |
+| Parâmetro | Tipo | | Descrição |
+| --------- | ---------- | --------------------------- | ------------------------------------------------------- |
+| tableRef | Object | → | Referência da tabela |
+| value | any | → | Valor(es) a serem definidos na linha |
+| valueColl | Collection | → | Collection of values to set in the row |
+| Resultado | Object | ← | Objeto intervalo linha |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png
index 293036a14b5daa..50f2d9e129f93a 100644
Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Admin/accessKeyEnter.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Desktop/sessions.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png
new file mode 100644
index 00000000000000..4c0128bc351b26
Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-default.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png
new file mode 100644
index 00000000000000..dc2f7389acf6eb
Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp-folder.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png
new file mode 100644
index 00000000000000..a0b979c2a19216
Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Develop/icon-comp.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png
index c7238306059187..560d044b9b944c 100644
Binary files a/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png and b/i18n/pt/docusaurus-plugin-content-docs/current/assets/en/Project/dependency.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
index b90ba930cf567a..9f43b470017d4b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort-process-by-id.md
@@ -5,11 +5,11 @@ slug: /commands/abort-process-by-id
displayed_sidebar: docs
---
-**ABORT PROCESS BY ID** ( *IDunico* )
+**ABORT PROCESS BY ID** ( *IDunico* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| IDunico | Integer | → | ID de processo única |
+| IDunico | Integer | → | ID de processo única |
@@ -48,6 +48,6 @@ Se quiser deter o processo selecionado da coleção de processos que são mostra
| | |
| --- | --- |
| Número do comando | 1634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
index fc2e03876207c3..eb7ed15869834c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Apesar do comando ABORT está destinado a ser utilizado apenas a partir de um m
| | |
| --- | --- |
| Número do comando | 156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
index e457877fa6e8a1..699faa0e74fb4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/abs.md
@@ -5,11 +5,11 @@ slug: /commands/abs
displayed_sidebar: docs
---
-**Abs** ( *numero* ) : Real
+**Abs** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número do qual você deseja obter o valor absoluto |
+| numero | Real | → | Número do qual você deseja obter o valor absoluto |
| Resultado da função | Real | ← | Valor absoluto do número |
@@ -32,6 +32,6 @@ O exemplo a seguir retorna o valor absoluto de –10.3, que é de 10.3:
| | |
| --- | --- |
| Número do comando | 99 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
index 286c5625403d12..668e607a9878f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accept.md
@@ -41,7 +41,7 @@ Não é possível concatenar vários ACCEPT. A execução consecutiva de dois co
| | |
| --- | --- |
| Número do comando | 269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
index 0e17afef02274c..937c78149e33b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/accumulate.md
@@ -5,11 +5,11 @@ slug: /commands/accumulate
displayed_sidebar: docs
---
-**ACCUMULATE** ( *dados* {; *dados2* ; ... ; *dadosN*} )
+**ACCUMULATE** ( *dados* : Field, Variable {; *...dados* : Field, Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dados | Field, Variable | → | Campo ou variável de tipo numérico a acumular |
+| dados | Field, Variable | → | Campo ou variável de tipo numérico a acumular |
@@ -41,6 +41,6 @@ Ver o exemplo do comando [BREAK LEVEL](break-level.md) .
| | |
| --- | --- |
| Número do comando | 303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
index 1363c6ae9a97ad..b7180c147af703 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/action-info.md
@@ -5,12 +5,12 @@ slug: /commands/action-info
displayed_sidebar: docs
---
-**Action info** ( *ação* {; *alvo*} ) : Object
+**Action info** ( *ação* : Text {; *alvo* : Integer} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ação | Text | → | Nome da ação padrão ou padrão incluindo parâmetro se exigido |
-| alvo | Integer | → | Define o alvo da ação para obter informação: formulário principal ou atual |
+| ação | Text | → | Nome da ação padrão ou padrão incluindo parâmetro se exigido |
+| alvo | Integer | → | Define o alvo da ação para obter informação: formulário principal ou atual |
| Resultado | Object | ← | Objeto que contém status da ação como propriedade booleana: isEnabled, isVisible, isChecked, isMixed, isUnkownState |
@@ -73,6 +73,6 @@ Se quiser saber se a ação copiar está disponível (ou seja, se foram selecion
| | |
| --- | --- |
| Número do comando | 1442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
index 767acc9d0d0ca4..1e5b457b43a1ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 346 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
index 8ab508ed440215..35f10364b2f938 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Se quiser conhecer o estado da transação atual:
| | |
| --- | --- |
| Número do comando | 1387 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
index 7865f2137794b3..0d59e6580b66da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/activity-snapshot.md
@@ -5,7 +5,7 @@ slug: /commands/activity-snapshot
displayed_sidebar: docs
---
-**ACTIVITY SNAPSHOT** ( arrActivities | arrUUID ; *arrInicio* ; *arrDuracao* ; *arrInfo* {; *arrDetails*}{; *} )
+**ACTIVITY SNAPSHOT** ( arrActivities | arrUUID ; *arrInicio* : Text array ; *arrDuracao* : Integer array ; *arrInfo* : Text array {; *arrDetails* : Object array}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -14,7 +14,7 @@ displayed_sidebar: docs
| arrDuracao | Integer array | ← | Duração das operações em milisegundos |
| arrInfo | Text array | ← | Descrição |
| arrDetails | Object array | ← | Details of context and sub-operations (if any) |
-| * | Operador | → | Se passar = Trazer atividade do servidor |
+| * | Operador | → | Se passar = Trazer atividade do servidor |
@@ -111,6 +111,6 @@ Obtém arrays do tipo:
| | |
| --- | --- |
| Número do comando | 1277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
index 0948bd545500e2..07bc8939d3f40c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-record.md
@@ -5,12 +5,12 @@ slug: /commands/add-record
displayed_sidebar: docs
---
-**ADD RECORD** ( {*tabela*}{;}{*} )
+**ADD RECORD** ( {*tabela* : Table}{;}{*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a utilizar para entrada de dados ou Tabela por padrão, se omitida |
-| * | Operator | → | Ocultar barras de deslocamento |
+| tabela | Table | → | Tabela a utilizar para entrada de dados ou Tabela por padrão, se omitida |
+| * | Operator | → | Ocultar barras de deslocamento |
@@ -91,7 +91,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 56 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
index b426e5b7ceaa1e..dab57d1e5462cc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-date.md
@@ -5,14 +5,14 @@ slug: /commands/add-to-date
displayed_sidebar: docs
---
-**Add to date** ( *data* ; *anos* ; *meses* ; *dias* ) : Date
+**Add to date** ( *data* : Date ; *anos* : Integer ; *meses* : Integer ; *dias* : Integer ) : Date
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| data | Date | → | Data a qual adicionar dias, meses e anos |
-| anos | Integer | → | Número de anos a adicionar a data |
-| meses | Integer | → | Número de meses a adicionar a data |
-| dias | Integer | → | Números de dias a adicionar a data |
+| data | Date | → | Data a qual adicionar dias, meses e anos |
+| anos | Integer | → | Número de anos a adicionar a data |
+| meses | Integer | → | Número de meses a adicionar a data |
+| dias | Integer | → | Números de dias a adicionar a data |
| Resultado | Date | ← | Data resultante |
@@ -42,6 +42,6 @@ Mesmo que você possa utilizar os [Self](self.md) para adicionar dias a uma data
| | |
| --- | --- |
| Número do comando | 393 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
index 1b0fb31d395734..21e1106c7d9fc4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/add-to-set.md
@@ -5,12 +5,12 @@ slug: /commands/add-to-set
displayed_sidebar: docs
---
-**ADD TO SET** ( {*tabela* ;} *conjunto* )
+**ADD TO SET** ( {*tabela* : Table ;} *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do registro atual, ou tabela padrão, se omitido |
-| conjunto | Text | → | Nome do conjunto ao qual adicionar os registros atuais |
+| tabela | Table | → | Tabela do registro atual, ou tabela padrão, se omitido |
+| conjunto | Text | → | Nome do conjunto ao qual adicionar os registros atuais |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 119 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
index 76c0cc956e7edf..5123ddc1d79bfa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-blobs-cache-priority
displayed_sidebar: docs
---
-**ADJUST BLOBS CACHE PRIORITY** ( *Tabela* ; *prioridade* )
+**ADJUST BLOBS CACHE PRIORITY** ( *Tabela* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela cujos "blobs" de valores de prioridade de dados vão ser ajustados |
-| prioridade | Integer | → | Valor de prioridade de Cache para Blobs na tabela |
+| Table | Table | → | Tabela cujos "blobs" de valores de prioridade de dados vão ser ajustados |
+| prioridade | Integer | → | Valor de prioridade de Cache para Blobs na tabela |
@@ -59,6 +59,6 @@ Se quiser mudar temporariamente a prioridade da cache dos campos de texto da tab
| | |
| --- | --- |
| Número do comando | 1431 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
index c491dd93abba56..249f2983dc39c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-index-cache-priority
displayed_sidebar: docs
---
-**ADJUST INDEX CACHE PRIORITY** ( *Campo* ; *prioridade* )
+**ADJUST INDEX CACHE PRIORITY** ( *Campo* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Field | Field | → | Campo cujos valores de prioridade índice serão ajustados |
-| prioridade | Integer | → | Valor de prioridade de cache para campos índice |
+| Field | Field | → | Campo cujos valores de prioridade índice serão ajustados |
+| prioridade | Integer | → | Valor de prioridade de cache para campos índice |
@@ -58,6 +58,6 @@ Se quiser mudar temporariamente a prioridade de cache para o índice de campo \[
| | |
| --- | --- |
| Número do comando | 1430 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
index 6eecf94e6f8590..b2189272d0cd89 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/adjust-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/adjust-table-cache-priority
displayed_sidebar: docs
---
-**ADJUST TABLE CACHE PRIORITY** ( *Tabela* ; *prioridade* )
+**ADJUST TABLE CACHE PRIORITY** ( *Tabela* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela cujo valor de prioridade de dados escalares vai ser ajustada |
-| prioridade | Integer | → | Valor de prioridade de cache para a tabela |
+| Table | Table | → | Tabela cujo valor de prioridade de dados escalares vai ser ajustada |
+| prioridade | Integer | → | Valor de prioridade de cache para a tabela |
@@ -56,6 +56,6 @@ Se quiser mudar temporariamente a prioridade de cache para os campos escalares \
| | |
| --- | --- |
| Número do comando | 1429 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md
index 698814ac268630..34464578b3563a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que seja gerado o ciclo de execução **After**, tenha certeza de que o eve
| | |
| --- | --- |
| Número do comando | 31 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
index 9def9b14705fcc..138f6ec6bd5839 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/alert.md
@@ -5,12 +5,12 @@ slug: /commands/alert
displayed_sidebar: docs
---
-**ALERT** ( *mensagem* {; *okBotaoTitulo*} )
+**ALERT** ( *mensagem* : Text {; *okBotaoTitulo* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de alerta |
-| okBotaoTitulo | Text | → | Título do botão OK |
+| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de alerta |
+| okBotaoTitulo | Text | → | Título do botão OK |
@@ -73,6 +73,6 @@ Mostra a seguinte caixa de diálogo de alerta (em Windows):
| | |
| --- | --- |
| Número do comando | 41 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
index ba0b8fd2bee10f..77792c0a7b72e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/all-records.md
@@ -5,11 +5,11 @@ slug: /commands/all-records
displayed_sidebar: docs
---
-**ALL RECORDS** {( *tabela* )}
+**ALL RECORDS** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai selecionar todos os registros, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual vai selecionar todos os registros, ou tabela padrão, se omitido |
@@ -40,7 +40,7 @@ O exemplo a seguir mostra todos os registros da tabela \[Pessoas\]:
| | |
| --- | --- |
| Número do comando | 47 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
index 058caac7927c85..51f4f48bc0a4aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-data-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/append-data-to-pasteboard
displayed_sidebar: docs
---
-**APPEND DATA TO PASTEBOARD** ( *tipoDados* ; *dados* )
+**APPEND DATA TO PASTEBOARD** ( *tipoDados* : Text ; *dados* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoDados | Text | → | Tipo de dados a adiconar |
-| dados | Blob | → | Dados a anexar na área de transferência |
+| tipoDados | Text | → | Tipo de dados a adiconar |
+| dados | Blob | → | Dados a anexar na área de transferência |
@@ -222,7 +222,7 @@ Se os dados no BLOB são adicionados corretamente á área de transferência, a
| | |
| --- | --- |
| Número do comando | 403 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
index 795496109373ff..647f8330ae8f16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-document.md
@@ -5,12 +5,12 @@ slug: /commands/append-document
displayed_sidebar: docs
---
-**Append document** ( *documento* {; *tipoArquivo*} ) : Time
+**Append document** ( *documento* : Text {; *tipoArquivo* : Text} ) : Time
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
-| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
+| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
+| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
| Resultado | Time | ← | Número de referência de documento |
@@ -44,7 +44,7 @@ O exemplo abaixo abre um documento existente chamado Nota, adiciona a string “
| | |
| --- | --- |
| Número do comando | 265 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
index b4e110a039e2f3..8c55ad399d31ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/append-menu-item
displayed_sidebar: docs
---
-**APPEND MENU ITEM** ( *menu* ; *itemTexto* {; *subMenu* {; *processo* {; *}}} )
+**APPEND MENU ITEM** ( *menu* : Integer ; *itemTexto* {; *subMenu* : Text {; *processo* : Integer {; *}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer | → | Número de menu ou menu de referência |
-| itemText | Text | → | Texto para os novos itens de menu |
-| subMenu | Text | → | Referência do submenu associado com o item |
-| processo | Integer | → | Número de referência de processo |
-| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
+| menu | Integer | → | Número de menu ou menu de referência |
+| itemText | Text | → | Texto para os novos itens de menu |
+| subMenu | Text | → | Referência do submenu associado com o item |
+| processo | Integer | → | Número de referência de processo |
+| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
@@ -86,7 +86,7 @@ Então, em todo método de formulário ou de projeto, pode escrever:
| | |
| --- | --- |
| Número do comando | 411 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
index a569342f2b2a30..1dae9396b96580 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-array.md
@@ -5,12 +5,12 @@ slug: /commands/append-to-array
displayed_sidebar: docs
---
-**APPEND TO ARRAY** ( *array* ; *valor* )
+**APPEND TO ARRAY** ( *array* : Array ; *valor* : Expression )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array ao qual o elemento será anexado |
-| valor | Expression | → | Valor a acrescentar |
+| array | Array | → | Array ao qual o elemento será anexado |
+| valor | Expression | → | Valor a acrescentar |
@@ -49,6 +49,6 @@ O seguinte código:
| | |
| --- | --- |
| Número do comando | 911 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
index 6126786b428f2e..2542f87fb9cc29 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/append-to-list.md
@@ -5,15 +5,15 @@ slug: /commands/append-to-list
displayed_sidebar: docs
---
-**APPEND TO LIST** ( *lista* ; *textoElem* ; *refElem* {; *sublista* ; *expandida*} )
+**APPEND TO LIST** ( *lista* : Integer ; *textoElem* : Text ; *refElem* : Integer {; *sublista* : Integer ; *expandida* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| textoElem | Text | → | Texto do novo elemento de lista (máx. 255 caracteres) |
-| refElem | Integer | → | Número de referencia único do novo elemento |
-| sublista | Integer | → | Sub-lista opcional para adicionar ao novo elemento |
-| expandida | Boolean | → | Indica se as sub-listas opcionais serão expandidas ou contraídas |
+| lista | Integer | → | Número de referência da lista |
+| textoElem | Text | → | Texto do novo elemento de lista (máx. 255 caracteres) |
+| refElem | Integer | → | Número de referencia único do novo elemento |
+| sublista | Integer | → | Sub-lista opcional para adicionar ao novo elemento |
+| expandida | Boolean | → | Indica se as sub-listas opcionais serão expandidas ou contraídas |
@@ -159,6 +159,6 @@ Quando o formulário é executado, a lista será vista desta forma:
| | |
| --- | --- |
| Número do comando | 376 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
index e22c4197f0ae91..85fe178c457150 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Ao iniciar seu banco de dados em Windows, você precisa verificar se uma bibliot
| | |
| --- | --- |
| Número do comando | 491 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
index 607d6ccb71fc76..b36ccbe4011530 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Se o código for executado em 4D Server, o objeto contém (por exemplo):
| | |
| --- | --- |
| Número do comando | 1599 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
index ecbca42b3f5bb9..89e95b82bff5b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Em alguma parte do seu código, diferente do método de banco de dados *Método
| | |
| --- | --- |
| Número do comando | 494 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
index f643176a1c88db..b8de913410ef12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/application-version.md
@@ -5,12 +5,12 @@ slug: /commands/application-version
displayed_sidebar: docs
---
-**Application version** {( *buildNum* {; *} )} : Text
+**Application version** ( *buildNum* : Integer {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| buildNum | Integer | ← | Número de build |
-| * | Operador | → | Se passar número de versão longo, caso contrário número de versão curto |
+| * | Operador | → | Se passar número de versão longo, caso contrário número de versão curto |
| Resultado | Text | ← | Número de versão em uma string codificada |
@@ -125,6 +125,6 @@ Você quer usar o número pequeno de versão da aplicação retornado pelo coman
| | |
| --- | --- |
| Número do comando | 493 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
index 706515fd92b63e..a40b7785e6efdf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/apply-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/apply-to-selection
displayed_sidebar: docs
---
-**APPLY TO SELECTION** ( *tabela* ; *formula* )
+**APPLY TO SELECTION** ( *tabela* : Table ; *formula* : Expression )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai aplicar a fórmula ou Tabela por padrão, se omitida |
-| formula | Expression | → | Uma linha de código ou um método |
+| tabela | Table | → | Tabela na qual vai aplicar a fórmula ou Tabela por padrão, se omitida |
+| formula | Expression | → | Uma linha de código ou um método |
@@ -68,7 +68,7 @@ Se o usuário clicar no botão Deter no termômetro de progressão, a variável
| | |
| --- | --- |
| Número do comando | 70 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
index 83ce0a01ceb12b..28cc040ccd1c53 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/arctan.md
@@ -5,11 +5,11 @@ slug: /commands/arctan
displayed_sidebar: docs
---
-**Arctan** ( *número* ) : Real
+**Arctan** ( *número* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| número | Real | → | Tangente para a qual deseja calcular o ângulo |
+| número | Real | → | Tangente para a qual deseja calcular o ângulo |
| Resultado da função | Real | ← | Ângulo em radianos |
@@ -37,6 +37,6 @@ O exemplo a seguir mostra o valor de Pi:
| | |
| --- | --- |
| Número do comando | 20 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
index 751421164eeac9..713df3042a7210 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-blob.md
@@ -5,13 +5,13 @@ slug: /commands/array-blob
displayed_sidebar: docs
---
-**ARRAY BLOB** ( *nomArray* ; *tam* {; *tam2*} )
+**ARRAY BLOB** ( *nomArray* : Array ; *tam* : Integer {; *tam2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nome do array |
-| tam | Integer | → | Número de elementos do array ou número de arrays se especificado tam2 |
-| tam2 | Integer | → | Número dos elementos dos array 2D |
+| nomArray | Array | → | Nome do array |
+| tam | Integer | → | Número de elementos do array ou número de arrays se especificado tam2 |
+| tam2 | Integer | → | Número dos elementos dos array 2D |
@@ -66,6 +66,6 @@ Este exemplo cria um array local de 100 filas, contendo cada uma 50 elementos de
| | |
| --- | --- |
| Número do comando | 1222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
index 7b9d0a8db9a4bf..569865739b2d20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-boolean.md
@@ -5,13 +5,13 @@ slug: /commands/array-boolean
displayed_sidebar: docs
---
-**ARRAY BOOLEAN** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY BOOLEAN** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -66,6 +66,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Booleano e dete
| | |
| --- | --- |
| Número do comando | 223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
index 456c18058b28c3..87689b49668a5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-date.md
@@ -5,13 +5,13 @@ slug: /commands/array-date
displayed_sidebar: docs
---
-**ARRAY DATE** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY DATE** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -59,6 +59,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Data e determin
| | |
| --- | --- |
| Número do comando | 224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
index 80901246a0c518..80545fddfd948d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-integer.md
@@ -5,13 +5,13 @@ slug: /commands/array-integer
displayed_sidebar: docs
---
-**ARRAY INTEGER** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY INTEGER** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 2 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
index 16540fc9ad7403..1e6f783696caec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-longint.md
@@ -5,13 +5,13 @@ slug: /commands/array-longint
displayed_sidebar: docs
---
-**ARRAY LONGINT** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY LONGINT** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 4 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
index 45cb8078b31a9c..71325d31f806dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-object.md
@@ -5,13 +5,13 @@ slug: /commands/array-object
displayed_sidebar: docs
---
-**ARRAY OBJECT** ( *nomArray* ; *tam* {; *tam2*} )
+**ARRAY OBJECT** ( *nomArray* : Array ; *tam* : Integer {; *tam2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nome do array |
-| tam | Integer | → | Número de elementos do array ou número de arrays se especificado tam2 |
-| tam2 | Integer | → | Número de elementos do array 2D |
+| nomArray | Array | → | Nome do array |
+| tam | Integer | → | Número de elementos do array ou número de arrays se especificado tam2 |
+| tam2 | Integer | → | Número de elementos do array 2D |
@@ -75,6 +75,6 @@ Criação e cheio de um array local de objetos:
| | |
| --- | --- |
| Número do comando | 1221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
index 41efbd4ce2b9c3..a8f126f2960548 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-picture.md
@@ -5,13 +5,13 @@ slug: /commands/array-picture
displayed_sidebar: docs
---
-**ARRAY PICTURE** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY PICTURE** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -66,6 +66,6 @@ Este exemplo cria um array de interprocesso de tipo [Imagem](# "Can be any Windo
| | |
| --- | --- |
| Número do comando | 279 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
index ddf4254ae9c091..5d89af0b07ed75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/array-pointer
displayed_sidebar: docs
---
-**ARRAY POINTER** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY POINTER** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -61,6 +61,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo [Ponteiro](# "A
| | |
| --- | --- |
| Número do comando | 280 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
index 623b9c0a7e2e19..858f7e45875cac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-real.md
@@ -5,13 +5,13 @@ slug: /commands/array-real
displayed_sidebar: docs
---
-**ARRAY REAL** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY REAL** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -63,6 +63,6 @@ Este exemplo cria um array de interprocesso de 50 elementos do tipo Real e deter
| | |
| --- | --- |
| Número do comando | 219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
index 1296de830ff4aa..9c5f35ff61d885 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-text.md
@@ -5,13 +5,13 @@ slug: /commands/array-text
displayed_sidebar: docs
---
-**ARRAY TEXT** ( *nomeArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY TEXT** ( *nomeArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArray | Array | → | Nome do array |
-| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
-| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
+| nomeArray | Array | → | Nome do array |
+| tamanho | Integer | → | Número de elementos no array ou Número de linhas se tamanho 2 for especificado |
+| tamanho2 | Integer | → | Número de colunas no array de duas dimensões |
@@ -59,6 +59,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo texto e atribui
| | |
| --- | --- |
| Número do comando | 222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
index 0332552d9f0fde..d4ba4dd988b48f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-time.md
@@ -5,13 +5,13 @@ slug: /commands/array-time
displayed_sidebar: docs
---
-**ARRAY TIME** ( *nomArray* ; *tamanho* {; *tamanho2*} )
+**ARRAY TIME** ( *nomArray* : Array ; *tamanho* : Integer {; *tamanho2* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomArray | Array | → | Nome de array |
-| tamanho | Integer | → | Número de elementos no array ou Número de filas se especificado tamanho2 |
-| tamanho2 | Integer | → | Número de colunas em um array de duas dimensões |
+| nomArray | Array | → | Nome de array |
+| tamanho | Integer | → | Número de elementos no array ou Número de filas se especificado tamanho2 |
+| tamanho2 | Integer | → | Número de colunas em um array de duas dimensões |
@@ -69,6 +69,6 @@ Como os arrays de horas aceitam valores numéricos, o seguinte código é válid
| | |
| --- | --- |
| Número do comando | 1223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
index f059113ea6728c..6f7c57d4d1c7d2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-collection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-collection
displayed_sidebar: docs
---
-**ARRAY TO COLLECTION** ( *coleçãlo* ; *array* {; *nomProp*}{; *array2* ; *nomProp2* ; ... ; *arrayN* ; *nomPropN*} )
+**ARRAY TO COLLECTION** ( *coleçãlo* : Collection ; *array* : Array {; *nomProp* : Text}{; *array2* ; *nomProp2* ; ... ; *arrayN* ; *nomPropN*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| coleçãlo | Collection | ← | Coleção a receber o array de dados |
-| array | Array | → | Array a copiar para a coleção, se nomeProp for passado, array a copiar aos valores da arrayProp na coleção |
-| nomProp | Text | → | Nome de propriedade objeto cujmo valor a preencher com elementos do array |
+| array | Array | → | Array a copiar para a coleção, se nomeProp for passado, array a copiar aos valores da arrayProp na coleção |
+| nomProp | Text | → | Nome de propriedade objeto cujmo valor a preencher com elementos do array |
@@ -88,6 +88,6 @@ Se quiser copiar um array de texto em uma coleção compartilhada:
| | |
| --- | --- |
| Número do comando | 1563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
index f75e0ff8573ac1..aec2e6e09585ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-list
displayed_sidebar: docs
---
-**ARRAY TO LIST** ( *array* ; *lista* {; *itemRefs*} )
+**ARRAY TO LIST** ( *array* : Array ; *lista* : Text, Integer {; *itemRefs* : Array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array do qual se copia os elementos de array |
-| lista | Text, Integer | → | Lista na qual se copia os elementos de array |
-| itemRefs | Array | → | Arrays numéricos do número de referência dos elementos |
+| array | Array | → | Array do qual se copia os elementos de array |
+| lista | Text, Integer | → | Lista na qual se copia os elementos de array |
+| itemRefs | Array | → | Arrays numéricos do número de referência dos elementos |
@@ -66,7 +66,7 @@ O comando ARRAY TO LIST gera o erro *\-9957* quando é aplicado a uma lista que
| | |
| --- | --- |
| Número do comando | 287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
index f766abc6c463ab..8ce57f7c9c4315 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/array-to-selection.md
@@ -5,13 +5,13 @@ slug: /commands/array-to-selection
displayed_sidebar: docs
---
-**ARRAY TO SELECTION** {( *array* ; *campo* {; *array2* ; *campo2* ; ... ; *arrayN* ; *campoN*}{; *} )}
+**ARRAY TO SELECTION** ({ *array* : Array ; *campo* : Field {; ...(*array* : Array, *campo* : Field)}{; *} })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array a se copiar na seleção |
+| array | Array | → | Array a se copiar na seleção |
| campo | Field | ← | Campo para receber os valores do array |
-| * | Operador | → | Aguarda execução |
+| * | Operador | → | Aguarda execução |
@@ -86,7 +86,7 @@ Se quiser copiar uma seleção de registroar para uma tablela arquivo selecionan
| | |
| --- | --- |
| Número do comando | 261 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
index de02a9eb5005d5..865c842e4fc553 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/assert.md
@@ -5,12 +5,12 @@ slug: /commands/assert
displayed_sidebar: docs
---
-**ASSERT** ( *expressaoBool* {; *mensagemTexto*} )
+**ASSERT** ( *expressaoBool* : Boolean {; *mensagemTexto*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| expressaoBool | Boolean | → | Expressão Booleana |
-| mensagemText | Text | → | Texto de mensagem de erro |
+| expressaoBool | Boolean | → | Expressão Booleana |
+| mensagemText | Text | → | Texto de mensagem de erro |
@@ -59,7 +59,7 @@ Uma asserção permite provar os parâmetros passados a um método de projeto pa
| | |
| --- | --- |
| Número do comando | 1129 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
index d8c43622c8af0f..379463c119a3d2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/asserted.md
@@ -5,12 +5,12 @@ slug: /commands/asserted
displayed_sidebar: docs
---
-**Asserted** ( *expressaoBool* {; *mensagemTexto*} ) : Boolean
+**Asserted** ( *expressaoBool* : Boolean {; *mensagemTexto*} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| expressaoBool | Boolean | → | Expressão Booleana |
-| mensagemText | Text | → | texto da mensagem de erro |
+| expressaoBool | Boolean | → | Expressão Booleana |
+| mensagemText | Text | → | texto da mensagem de erro |
| Resultado | Boolean | ← | Resultado da avaliação de expressaoBool |
@@ -47,7 +47,7 @@ Inserir uma asserção na avaliação de uma expressão:
| | |
| --- | --- |
| Número do comando | 1132 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md
index 1f21c43cff91e9..39ca63b99b377f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/average.md
@@ -5,12 +5,12 @@ slug: /commands/average
displayed_sidebar: docs
---
-**Average** ( *series* {; *atributoRota*} ) : Real
+**Average** ( *series* : Field, Array {; *atributoRota* : Text} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna a média |
-| atributoRota | Text | → | Rota do atributo para o qual vai retornar a média |
+| series | Field, Array | → | Dados para os quais se retorna a média |
+| atributoRota | Text | → | Rota do atributo para o qual vai retornar a média |
| Resultado | Real | ← | Média aritmética da série |
@@ -96,7 +96,7 @@ Pode fazer os seguintes cálculos:
| | |
| --- | --- |
| Número do comando | 2 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
index 993f6c40b8c406..f184683edffffd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup-info.md
@@ -5,11 +5,11 @@ slug: /commands/backup-info
displayed_sidebar: docs
---
-**BACKUP INFO** ( *seletor* ; *info1* ; *info2* )
+**BACKUP INFO** ( *seletor* : Integer ; *info1* : Integer, Date ; *info2* : Time, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Tipo de informação a ser obtida |
+| seletor | Integer | → | Tipo de informação a ser obtida |
| info1 | Integer, Date | ← | Valor 1 do seletor |
| info2 | Time, Text | ← | Valor 2 do seletor |
@@ -37,6 +37,6 @@ Passe o tipo de informação a se obter em *seletor*. É possível utilizar uma
| | |
| --- | --- |
| Número do comando | 888 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
index 549cb0cdf01f9d..cbb37b0abebc6c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/backup.md
@@ -44,7 +44,7 @@ Em caso de que ocorram incidentes durante o backup, a informação relativa ao i
| | |
| --- | --- |
| Número do comando | 887 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
index 0c61c37079f219..19b150450c5061 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-decode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-decode
displayed_sidebar: docs
---
-**BASE64 DECODE** ( *textoCodificado* {; *BLOB*}{; *} )
+**BASE64 DECODE** ( *textoCodificado* : Text, Blob {; *BLOB* : Text, Blob}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| textoCodificado | Text, Blob | → | Texto que contém o BLOB codificado no formato Base64 |
-| ← | Valor decodificado (se parâmetro decodificado for omitido) |
+| textoCodificado | Text, Blob | ↔ | *in:* Encoded value to decode
*out:* Decoded value (if decoded parameter omitted) |
| Blob | Text, Blob | ← | BLOB decodificado |
-| * | Operador | → | Decodificado em formato Base64URL |
+| * | Operador | → | Decodificado em formato Base64URL |
@@ -61,6 +60,6 @@ Este exemplo lhe permite transferir uma imagem através de um BLOB:
| | |
| --- | --- |
| Número do comando | 896 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
index e68598e4c02bac..8f3b7fa5a364f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/base64-encode.md
@@ -5,14 +5,13 @@ slug: /commands/base64-encode
displayed_sidebar: docs
---
-**BASE64 ENCODE** ( *BLOB* {; *textoCodificado*}{; *} )
+**BASE64 ENCODE** ( *BLOB* : Blob, Text {; *textoCodificado* : Blob, Text}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob, Text | → | BLOB a codificar em formato Base64 |
-| ← | BLOB codificado em formato Base64 |
+| Blob | Blob, Text | ↔ | *in:* Value to encode
*out:* Encoded value (if encoded parameter omitted) |
| textoCodificado | Blob, Text | ← | Resultado do BLOB codificado em formato Base64 |
-| * | Operador | → | Codificar no formato em Base64URL |
+| * | Operador | → | Codificar no formato em Base64URL |
@@ -43,6 +42,6 @@ Por padrão, se omitir o parâmetro *\**, o comando utiliza uma codificação Ba
| | |
| --- | --- |
| Número do comando | 895 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
index 3fc5b22b1803e8..fa03e3a2b778bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/beep.md
@@ -39,6 +39,6 @@ No exemplo abaixo, se uma pesquisa não encontrar nenhum registro, um bip é emi
| | |
| --- | --- |
| Número do comando | 151 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
index 9c574c569247ee..6def7343d12563 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before-selection.md
@@ -5,11 +5,11 @@ slug: /commands/before-selection
displayed_sidebar: docs
---
-**Before selection** {( *tabela* )} : Boolean
+**Before selection** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai testar se o registro do ponteiro está antes do primeiro registro selecionado, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela na qual vai testar se o registro do ponteiro está antes do primeiro registro selecionado, ou tabela padrão, se omitido |
| Resultado | Boolean | ← | Sim (TRUE) ou Não (FALSE) |
@@ -67,6 +67,6 @@ Este formulário é utilizado durante a impressão de um relatório. Define uma
| | |
| --- | --- |
| Número do comando | 198 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md
index 673844d2f8e8e4..d0ad7be4365596 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que se gere o ciclo de execução **Before** tenha certeza de que a proprie
| | |
| --- | --- |
| Número do comando | 29 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
index 77e0a0e96879c4..a1d2ac33e7095a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que o *Depurador* 4D avaliará o código SQL linha por linha. Em alguns cas
| | |
| --- | --- |
| Número do comando | 948 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
index 1053cc20d5ef98..f97cb144b1a4d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-properties.md
@@ -5,11 +5,11 @@ slug: /commands/blob-properties
displayed_sidebar: docs
---
-**BLOB PROPERTIES** ( *BLOB* ; *comprimido* {; *descompTam* {; *tamanhoAtual*}} )
+**BLOB PROPERTIES** ( *BLOB* : Blob ; *comprimido* : Integer {; *descompTam* : Integer {; *tamanhoAtual* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual obter informação |
+| Blob | Blob | → | BLOB do qual obter informação |
| comprimido | Integer | ← | 0 = BLOB não está comprimido 1 = BLOB comprimido modo compacto 2 = BLOB comprimido modo rápido |
| descompTam | Integer | ← | Tamanho do BLOB (em bytes) quando não está comprimido |
| tamanhoAtual | Integer | ← | Tamanho atual do BLOB (em bytes) |
@@ -81,6 +81,6 @@ Depois que este método tenha sido adicionado à sua aplicação, você pode us
| | |
| --- | --- |
| Número do comando | 536 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
index b886a1ada42046..ff3a0a3d482f4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-size.md
@@ -5,11 +5,11 @@ slug: /commands/blob-size
displayed_sidebar: docs
---
-**BLOB size** ( *BLOB* ) : Integer
+**BLOB size** ( *BLOB* : Blob ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | Campo ou variável BLOB |
+| Blob | Blob | → | Campo ou variável BLOB |
| Resultado | Integer | ← | Tamanho em bytes do BLOB |
@@ -35,6 +35,6 @@ A linha de código adiciona 100 bytes ao BLOB *meuBlob*:
| | |
| --- | --- |
| Número do comando | 605 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
index c8ff94cc56cb3d..cf85eea426ce74 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-document.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-document
displayed_sidebar: docs
---
-**BLOB TO DOCUMENT** ( *documento* ; *BLOB* )
+**BLOB TO DOCUMENT** ( *documento* : Text ; *BLOB* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome do documento gerado |
-| Blob | Blob | → | Novo conteúdo para o documento |
+| documento | Text | → | Nome do documento gerado |
+| Blob | Blob | → | Novo conteúdo para o documento |
@@ -59,7 +59,7 @@ Em todos os casos, você pode interceptar o erro usando um método [ON ERR CALL]
| | |
| --- | --- |
| Número do comando | 526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
index 6c3855cf9439f1..b8571dc99cd65e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-integer.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-integer
displayed_sidebar: docs
---
-**BLOB to integer** ( *BLOB* ; *byteOrdem* {; *offset*} ) : Integer
+**BLOB to integer** ( *BLOB* : Blob ; *byteOrdem* : Integer {; *offset* : Variable} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual obter o valor inteiro |
-| byteOrdem | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
-| offset | Variable | ↔ | Offset no BLOB (expressado em bytes) |
-| || | Novo offset depois da leitura |
+| Blob | Blob | → | BLOB do qual obter o valor inteiro |
+| byteOrdem | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
+| offset | Variable | ↔ | Offset no BLOB (expressado em bytes) |
+| | | | Novo offset depois da leitura |
| Resultado da função | Integer | ← | Valor inteiro (2 bytes) |
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores inteiros de um BLOB, iniciando no offset 0x200
| | |
| --- | --- |
| Número do comando | 549 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
index 5e34e5de0fd412..558d266827e2d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-list.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-list
displayed_sidebar: docs
---
-**BLOB to list** ( *BLOB* {; *offset*} ) : Integer
+**BLOB to list** ( *BLOB* : Blob {; *offset* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB que contém uma lista hierárquica |
-| offset | Integer | ↔ | Offset no BLOB (expressado em bytes) |
-| ||| Novo offset depois da leitura |
+| Blob | Blob | → | BLOB que contém uma lista hierárquica |
+| offset | Integer | ↔ | Offset no BLOB (expressado em bytes) |
+| | | | Novo offset depois da leitura |
| Resultado | Integer | ← | Referência da lista criada recentemente |
@@ -65,7 +65,7 @@ A variável OK recebe o valor 1 se a lista for criada corretamente, caso contrá
| | |
| --- | --- |
| Número do comando | 557 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
index 4cb66a48fcdd13..f02700118add23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-longint.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-longint
displayed_sidebar: docs
---
-**BLOB to longint** ( *BLOB* ; *byteOrdem* {; *offset*} ) : Integer
+**BLOB to longint** ( *BLOB* : Blob ; *byteOrdem* : Integer {; *offset* : Variable} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual obter o valor inteiro longo |
-| byteOrdem | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
-| offset | Variable |↔ | Offset no BLOB (expressado em bytes) |
-| || | Novo offset depois da leitura |
+| Blob | Blob | → | BLOB do qual obter o valor inteiro longo |
+| byteOrdem | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
+| offset | Variable | ↔ | Offset no BLOB (expressado em bytes) |
+| | | | Novo offset depois da leitura |
| Resultado da função | Integer | ← | Valor inteiro longo (4 bytes) |
@@ -64,6 +64,6 @@ O exemplo a seguir lê 20 valores Inteiro longo de um BLOB, iniciando no offset
| | |
| --- | --- |
| Número do comando | 551 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
index 41ef802a2914eb..0d67da50b28896 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/blob-to-picture
displayed_sidebar: docs
---
-**BLOB TO PICTURE** ( *imagemBlob* ; *imagem* {; *codec*} )
+**BLOB TO PICTURE** ( *imagemBlob* : Blob ; *imagem* : Picture {; *codec* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagemBlob | Blob | → | Blob que contém uma imagem |
+| imagemBlob | Blob | → | Blob que contém uma imagem |
| imagem | Picture | ← | Imagem do BLOB |
-| codec | Text | → | Codec de identificação de Imagem |
+| codec | Text | → | Codec de identificação de Imagem |
@@ -57,7 +57,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 682 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
index 074b6714442294..d3b4442a7290f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-print-settings.md
@@ -5,12 +5,12 @@ slug: /commands/blob-to-print-settings
displayed_sidebar: docs
---
-**BLOB to print settings** ( *confImpr* {; *params*} ) : Integer
+**BLOB to print settings** ( *confImpr* : Blob {; *params* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| confImpr | Blob | → | BLOB que contém as configurações de Impressão |
-| params | Integer | → | 0 = restaura valores salvos para número de cópias e faixa de páginas 1 = reseta para os valores padrão |
+| confImpr | Blob | → | BLOB que contém as configurações de Impressão |
+| params | Integer | → | 0 = restaura valores salvos para número de cópias e faixa de páginas 1 = reseta para os valores padrão |
| Resultado | Integer | ← | código de estatus 1= operação bem sucedida, 0 = não há impressora atual, -1=parâmetros incorretos, 2=impressora mudada |
@@ -80,6 +80,6 @@ Se quiser aplicar a configuração de impressão salva no disco para o contexto
| | |
| --- | --- |
| Número do comando | 1434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
index 1e0cbefde7047e..6791088b5bc52e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-real.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-real
displayed_sidebar: docs
---
-**BLOB to real** ( *BLOB* ; *formatoReal* {; *offset*} ) : Real
+**BLOB to real** ( *BLOB* : Blob ; *formatoReal* : Integer {; *offset* : Variable} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual obter o valor de tipo Real |
-| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real duplo Macintosh 3 Formato real duplo Windows |
-| offset | Variable |↔ | Offset no BLOB (expressado em bytes) |
-| || | Novo offset depois da leitura |
+| Blob | Blob | → | BLOB do qual obter o valor de tipo Real |
+| formatoReal | Integer | → | 0 Formato real nativo 1 Formato real extendido 2 Formato real duplo Macintosh 3 Formato real duplo Windows |
+| offset | Variable | ↔ | Offset no BLOB (expressado em bytes) |
+| | | | Novo offset depois da leitura |
| Resultado | Real | ← | Valor real |
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores Reais de um BLOB, iniciando no offset 0x200:
| | |
| --- | --- |
| Número do comando | 553 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
index 837110e45b9934..b09c14ddf92d76 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-text.md
@@ -5,15 +5,15 @@ slug: /commands/blob-to-text
displayed_sidebar: docs
---
-**BLOB to text** ( *BLOB* ; *formatoTexto* {; *offset* {; *compTexto*}} ) : Text
+**BLOB to text** ( *BLOB* : Blob ; *formatoTexto* : Integer {; *offset* : Variable {; *compTexto* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual obter o texto |
-| formatoTexto | Integer | → | Formato e conjunto de caracteres de texto |
-| offset | Variable |↔ | Offset no BLOB (expressado em bytes) |
-| || | Novo offset depois da leitura |
-| compTexto | Integer | → | Número de caracteres a serem lidos |
+| Blob | Blob | → | BLOB do qual obter o texto |
+| formatoTexto | Integer | → | Formato e conjunto de caracteres de texto |
+| offset | Variable | ↔ | Offset no BLOB (expressado em bytes) |
+| | | | Novo offset depois da leitura |
+| compTexto | Integer | → | Número de caracteres a serem lidos |
| Resultado | Text | ← | Valor do texto |
@@ -66,6 +66,6 @@ Após a chamada, a variável é incrementada pelo número de bytes lidos. Portan
| | |
| --- | --- |
| Número do comando | 555 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
index e38a69a7b8ce80..6254f475769c2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-users.md
@@ -5,11 +5,11 @@ slug: /commands/blob-to-users
displayed_sidebar: docs
---
-**BLOB TO USERS** ( *usuarios* )
+**BLOB TO USERS** ( *usuarios* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| usuarios | Blob | → | BLOB (criptografado) contendo contas de usuários do banco de dados criadas e guardadas pelo administrador do banco |
+| usuarios | Blob | → | BLOB (criptografado) contendo contas de usuários do banco de dados criadas e guardadas pelo administrador do banco |
@@ -52,7 +52,7 @@ este comando causa a substituição de quaisquer contas e grupos existentes cria
| | |
| --- | --- |
| Número do comando | 850 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
index b568b927074c9c..d22ca7e727edde 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/blob-to-variable.md
@@ -5,14 +5,14 @@ slug: /commands/blob-to-variable
displayed_sidebar: docs
---
-**BLOB TO VARIABLE** ( *BLOB* ; *variável* {; *offset*} )
+**BLOB TO VARIABLE** ( *BLOB* : Blob ; *variável* : Variable {; *offset*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB que contém variáveis 4D |
-| variável | Variable | ↔| Variável a ser escrita com o conteúdo do BLOB |
-| || | Integer | → | Posição da variável no BLOB |
-| ← | Posição da próxima variável no BLOB |
+| Blob | Blob | → | BLOB que contém variáveis 4D |
+| variável | Variable | ↔ | Variável a ser escrita com o conteúdo do BLOB |
+| | | | Integer |
+| <- | Posição da próxima variável no BLOB | | Position of following variable within BLOB |
@@ -47,7 +47,7 @@ A variável OK é definida como 1 se a variável foi reescrita com sucesso, caso
| | |
| --- | --- |
| Número do comando | 533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
index 5551ade44bcad6..d68a3b0ab35c41 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bool.md
@@ -5,11 +5,11 @@ slug: /commands/bool
displayed_sidebar: docs
---
-**Bool** ( *expressao* ) : Boolean
+**Bool** ( *expressao* : Expression ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| expressao | Expression | → | Expressão para a qual vai retornar a forma booleana |
+| expressao | Expression | → | Expressão para a qual vai retornar a forma booleana |
| Resultado | Boolean | ← | Forma booleana da expressão |
@@ -53,6 +53,6 @@ Seleciona um valor dependendo do conteúdo de um atributo de campo de objeto, an
| | |
| --- | --- |
| Número do comando | 1537 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
index 2823661e5b035f..42ed3b1fd98a43 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/boolean-array-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/boolean-array-from-set
displayed_sidebar: docs
---
-**BOOLEAN ARRAY FROM SET** ( *booleanArr* {; *conjunto*} )
+**BOOLEAN ARRAY FROM SET** ( *booleanArr* : Boolean array {; *conjunto* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| booleanArr | Boolean array | ← | Array para indicar se um registro está no conjunto ou não |
-| conjunto | Text | → | Nome do conjunto ou UserSet se o parâmetro for omitido |
+| conjunto | Text | → | Nome do conjunto ou UserSet se o parâmetro for omitido |
@@ -38,6 +38,6 @@ Se você não passar o parâmetro *conjunto*, o comando utilizará UserSet no pr
| | |
| --- | --- |
| Número do comando | 646 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
index 50c44bb424b5dc..1f4598995dd34e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/break-level.md
@@ -5,12 +5,12 @@ slug: /commands/break-level
displayed_sidebar: docs
---
-**BREAK LEVEL** ( *nivel* {; *saltoPagina*} )
+**BREAK LEVEL** ( *nivel* : Integer {; *saltoPagina* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nivel | Integer | → | Número de níveis de quebra |
-| saltoPagina | Integer | → | Nível de quebra para o qual fazer um salto de página. |
+| nivel | Integer | → | Número de níveis de quebra |
+| saltoPagina | Integer | → | Nível de quebra para o qual fazer um salto de página. |
@@ -50,6 +50,6 @@ O exemplo a seguir imprime um relatório com dois níveis de quebra. A seleção
| | |
| --- | --- |
| Número do comando | 302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
index db3e107c94a914..f48fd4388d3ee1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/bring-to-front.md
@@ -5,11 +5,11 @@ slug: /commands/bring-to-front
displayed_sidebar: docs
---
-**BRING TO FRONT** ( *processo* )
+**BRING TO FRONT** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo do processo a passar ao primeiro plano |
+| processo | Integer | → | Número de processo do processo a passar ao primeiro plano |
@@ -42,6 +42,6 @@ O exemplo a seguir é um método que pode ser executado desde um menu. Ele verif
| | |
| --- | --- |
| Número do comando | 326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
index eb6a81de619d51..2ed5fccf6a27d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/build-application.md
@@ -5,11 +5,11 @@ slug: /commands/build-application
displayed_sidebar: docs
---
-**BUILD APPLICATION** {( *constrAppConfigurações* )}
+**BUILD APPLICATION** ({ *constrAppConfigurações* : Text })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| constrAppConfigurações | Text | → | Endereço de acesso completo do arquivo de configurações a ser usado |
+| constrAppConfigurações | Text | → | Endereço de acesso completo do arquivo de configurações a ser usado |
@@ -59,7 +59,7 @@ Se o comando falhar, é gerado um erro que pode ser interceptado com a ajuda do
| | |
| --- | --- |
| Número do comando | 871 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
index ef7a970491cc0f..9e50fd475d326b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cache-info.md
@@ -5,11 +5,11 @@ slug: /commands/cache-info
displayed_sidebar: docs
---
-**Cache info** {( *bdFiltro* )} : Object
+**Cache info** ( *bdFiltro* : Object ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| bdFiltro | Object | → | Define a lista de atributos a ser retornada (filtrada por banco de dados) |
+| bdFiltro | Object | → | Define a lista de atributos a ser retornada (filtrada por banco de dados) |
| Resultado | Object | ← | Informação sobre cache |
@@ -59,6 +59,6 @@ Se quiser obter informação da cache do banco de dados e todos os componentes a
| | |
| --- | --- |
| Número do comando | 1402 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
index 6f741945d5fce1..6690af341d1025 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-form.md
@@ -5,13 +5,13 @@ slug: /commands/call-form
displayed_sidebar: docs
---
-**CALL FORM** ( *janela* ; *metodo* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL FORM** ( *janela* : Integer ; *metodo* : Object, Text {; *...param* : Expression} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela |
-| metodo | Object, Text | → | Nome do método de projeto a chamar |
-| param | Expression | → | Parâmetros passados ao método |
+| janela | Integer | → | Número de referência da janela |
+| metodo | Object, Text | → | Nome do método de projeto a chamar |
+| param | Expression | → | Parâmetros passados ao método |
@@ -107,6 +107,6 @@ Depois pode adicionar outras mensagens executando o comando **CALL FORM** novame
| | |
| --- | --- |
| Número do comando | 1391 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
index 5ee52614fda67c..0b17752181c830 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-subform-container.md
@@ -5,11 +5,11 @@ slug: /commands/call-subform-container
displayed_sidebar: docs
---
-**CALL SUBFORM CONTAINER** ( *event* )
+**CALL SUBFORM CONTAINER** ( *event* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| event | Integer | → | Event to be sent |
+| event | Integer | → | Event to be sent |
@@ -35,6 +35,6 @@ Em *evento*, pode passar todo evento de formulário pré-definido de 4D (pode ut
| | |
| --- | --- |
| Número do comando | 1086 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
index 0ad8b404063726..7ee3fa0ee7d96b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/call-worker.md
@@ -5,13 +5,13 @@ slug: /commands/call-worker
displayed_sidebar: docs
---
-**CALL WORKER** ( *processo* ; *método* {; *param*}{; *param2* ; ... ; *paramN*} )
+**CALL WORKER** ( *processo* : Text, Integer ; *método* : Object, Text {; *...param* : Expression} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Text, Integer | → | Nome ou número de processo do worker |
-| método | Object, Text | → | Nome do método de projeto a chamar |
-| param | Expression | → | Parâmetros passados ao método |
+| processo | Text, Integer | → | Nome ou número de processo do worker |
+| método | Object, Text | → | Nome do método de projeto a chamar |
+| param | Expression | → | Parâmetros passados ao método |
@@ -89,6 +89,6 @@ O código de *workerMethod é*:
| | |
| --- | --- |
| Número do comando | 1389 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
index b274becf901739..0fd0e34185bced 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 241 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
index bdd847d3e4a248..ef775cc164adc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Quando o comando CANCEL é executado (anulação de formulário ou de impressão
| | |
| --- | --- |
| Número do comando | 270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
index 8295f468ecad29..8178b4a784ca64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Veja o exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
index b24c45d0a799f0..843956dfbd4cee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-current-user.md
@@ -5,12 +5,12 @@ slug: /commands/change-current-user
displayed_sidebar: docs
---
-**CHANGE CURRENT USER** {( *usuario* ; *senha* )}
+**CHANGE CURRENT USER** ({ *usuario* : Text, Integer ; *senha* : Text })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| usuario | Text, Integer | → | Nome do usuário ou ID única |
-| senha | Text | → | Senha (não criptografada) |
+| usuario | Text, Integer | → | Nome do usuário ou ID única |
+| senha | Text | → | Senha (não criptografada) |
@@ -73,6 +73,6 @@ O exemplo abaixo exibe a caixa de diálogo de conexão:
| | |
| --- | --- |
| Número do comando | 289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
index 747b5ef9cdd162..29426c85e9ec71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-licenses.md
@@ -46,7 +46,7 @@ Desta forma um usuário pode ativar licenças sem ter que modificar a base.
| | |
| --- | --- |
| Número do comando | 637 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
index 9cc410fa396191..f6e4d53976dd55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-password.md
@@ -5,11 +5,11 @@ slug: /commands/change-password
displayed_sidebar: docs
---
-**CHANGE PASSWORD** ( *senha* )
+**CHANGE PASSWORD** ( *senha* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| senha | Text | → | Nova senha |
+| senha | Text | → | Nova senha |
@@ -48,6 +48,6 @@ O exemplo abaixo permite ao usuário mudar sua senha.
| | |
| --- | --- |
| Número do comando | 186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
index 9fe0503be8392f..a659e2296e6c64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/change-string.md
@@ -5,13 +5,13 @@ slug: /commands/change-string
displayed_sidebar: docs
---
-**Change string** ( *fonte* ; *novo* ; *posiçao* ) : Text
+**Change string** ( *fonte* : Text ; *novo* : Text ; *posiçao* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Text | → | Cadeia original |
-| novo | Text | → | Novos caracteres |
-| posiçao | Integer | → | Onde começar as mudanças |
+| fonte | Text | → | Cadeia original |
+| novo | Text | → | Novos caracteres |
+| posiçao | Integer | → | Onde começar as mudanças |
| Resultado | Text | ← | Cadeia resultado |
@@ -44,6 +44,6 @@ O seguinte exemplo ilustra o uso de Change string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md
index 9a4ed8cacfceda..93ffc0897543af 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/char.md
@@ -5,11 +5,11 @@ slug: /commands/char
displayed_sidebar: docs
---
-**Char** ( *codigoCaractere* ) : Text
+**Char** ( *codigoCaractere* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| codigoCaractere | Integer | → | Código do caractere |
+| codigoCaractere | Integer | → | Código do caractere |
| Resultado | Text | ← | Caractere representado por códigoCaractere |
@@ -43,6 +43,6 @@ O seguinte exemplo utiliza Char para inserir um retorno de carro no texto de uma
| | |
| --- | --- |
| Número do comando | 90 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
index 4d106e9359d233..c3f0c34fcb8da1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/character-code.md
@@ -5,11 +5,11 @@ slug: /commands/character-code
displayed_sidebar: docs
---
-**Character code** ( *caractere* ) : Integer
+**Character code** ( *caractere* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| caractere | Text | → | Caractere para o qual você quer conseguir o código |
+| caractere | Text | → | Caractere para o qual você quer conseguir o código |
| Resultado | Integer | ← | Código dos caracteres |
@@ -91,6 +91,6 @@ O segundo código é executado mais rápido por duas razões: apenas referencia
| | |
| --- | --- |
| Número do comando | 91 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
index 9d988a34f741c7..df959ee2478b3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Este comando só pode ser utilizado no contexto de aplicativos monousuários. Ma
| | |
| --- | --- |
| Número do comando | 799 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
index e2f3d336143a0f..841c23db0035b8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/choose.md
@@ -5,12 +5,12 @@ slug: /commands/choose
displayed_sidebar: docs
---
-**Choose** ( *criterio* ; *valor* {; *valor2* ; ... ; *valorN*} ) : any
+**Choose** ( *criterio* : Boolean, Integer ; *valor* : Expression {; *...valor* : Expression} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| criterio | Boolean, Integer | → | Valor a testar |
-| valor | Expression | → | Valores possíveis |
+| criterio | Boolean, Integer | → | Valor a testar |
+| valor | Expression | → | Valores possíveis |
| Resultado | any | ← | Valor do critério |
@@ -87,6 +87,6 @@ Este código é estritamente equivalente a:
| | |
| --- | --- |
| Número do comando | 955 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
index de0cfc79cd0b4c..2505c51e8bb8c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-list.md
@@ -5,12 +5,12 @@ slug: /commands/clear-list
displayed_sidebar: docs
---
-**CLEAR LIST** ( *lista* {; *} )
+**CLEAR LIST** ( *lista* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| * | Operator | → | Se especificada, se há sub-listas se deve apagar da memória, Se omitida, as sub-listas não são apagadas |
+| lista | Integer | → | Número de referência da lista |
+| * | Operator | → | Se especificada, se há sub-listas se deve apagar da memória, Se omitida, as sub-listas não são apagadas |
@@ -59,6 +59,6 @@ Ver o exemplo do comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 377 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
index 68c967b20795a0..5fee83eea223f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/clear-named-selection
displayed_sidebar: docs
---
-**CLEAR NAMED SELECTION** ( *nome* )
+**CLEAR NAMED SELECTION** ( *nome* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nome | Text | → | Nome da seleção temporal a apagar |
+| nome | Text | → | Nome da seleção temporal a apagar |
@@ -30,6 +30,6 @@ Se *nome* foi criado pelo comando [CUT NAMED SELECTION](cut-named-selection.md "
| | |
| --- | --- |
| Número do comando | 333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
index 1fee1006a81749..fdbf6ab5467358 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 402 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
index 39dbeb749c81b8..613d5c0c68425e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/clear-semaphore
displayed_sidebar: docs
---
-**CLEAR SEMAPHORE** ( *semaforo* )
+**CLEAR SEMAPHORE** ( *semaforo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| semaforo | Text | → | Semáforo para limpar |
+| semaforo | Text | → | Semáforo para limpar |
@@ -34,6 +34,6 @@ Ver o exemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número do comando | 144 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
index 180c1d9aa8fe5a..2276119b246a60 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-set.md
@@ -5,11 +5,11 @@ slug: /commands/clear-set
displayed_sidebar: docs
---
-**CLEAR SET** ( *conjunto* )
+**CLEAR SET** ( *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nome do conjunto a limpar da memória |
+| conjunto | Text | → | Nome do conjunto a limpar da memória |
@@ -32,6 +32,6 @@ Ver o exemplo do comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número do comando | 117 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
index 6284dae573c8e0..399404ec3874dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clear-variable.md
@@ -5,11 +5,11 @@ slug: /commands/clear-variable
displayed_sidebar: docs
---
-**CLEAR VARIABLE** ( *variavel* )
+**CLEAR VARIABLE** ( *variavel* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variavel | Variable | → | Variável a apagar |
+| variavel | Variable | → | Variável a apagar |
@@ -50,6 +50,6 @@ Em um formulário, utilize uma lista suspensa (drop down) chamada *MinhaListaSus
| | |
| --- | --- |
| Número do comando | 89 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
index bc10e474866b0d..7bbee55641517a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ As etiquetas não são editáveis mas o são depois de um triplo-clique. Se dese
| | |
| --- | --- |
| Número do comando | 1332 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
index 2488e0eb2f4591..3cc534367aa775 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-document.md
@@ -5,11 +5,11 @@ slug: /commands/close-document
displayed_sidebar: docs
---
-**CLOSE DOCUMENT** ( *docRef* )
+**CLOSE DOCUMENT** ( *docRef* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência de documento |
+| docRef | Time | → | Número de referência de documento |
@@ -43,6 +43,6 @@ O exemplo abaixo permite ao usuário criar um novo documento, escreva a string "
| | |
| --- | --- |
| Número do comando | 267 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
index 4a37d525f44ee4..ae66b7c49bf036 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-printing-job.md
@@ -29,6 +29,6 @@ Quando tiver executado este comando, a impressora novamente está disponível pa
| | |
| --- | --- |
| Número do comando | 996 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
index 0679c51d5aed17..0e5a04afd26992 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-resource-file.md
@@ -5,11 +5,11 @@ slug: /commands/close-resource-file
displayed_sidebar: docs
---
-**CLOSE RESOURCE FILE** ( *resArquivo* )
+**CLOSE RESOURCE FILE** ( *resArquivo* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resArquivo | Time | → | Número de referencia de arquivo recurso |
+| resArquivo | Time | → | Número de referencia de arquivo recurso |
@@ -34,6 +34,6 @@ Lembre chamar finalmente **CLOSE RESOURCE FILE** para um arquivo de recursos que
| | |
| --- | --- |
| Número do comando | 498 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
index df7c94a7126e75..ab8b6b092daa38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/close-window.md
@@ -5,11 +5,11 @@ slug: /commands/close-window
displayed_sidebar: docs
---
-**CLOSE WINDOW** {( *janela* )}
+**CLOSE WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
@@ -44,6 +44,6 @@ O seguinte exemplo abre uma janela formulario e cria novos registros com o coman
| | |
| --- | --- |
| Número do comando | 154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
index 34080ce1e8cbaf..3ff3a77baff036 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/collection-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/collection-to-array
displayed_sidebar: docs
---
-**COLLECTION TO ARRAY** ( *coleção* ; *array* {; *nomProp*}{; *array2* ; *nomProp2* ; ... ; *arrayN* ; *nomPropN*} )
+**COLLECTION TO ARRAY** ( *collection* : Collection ; *array* : Array {; *propertyName* : Text}{; ...(*array* : Array ; *propertyName* : Text) } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| coleção | Collection | → | Coleção a copiar em array |
+| coleção | Collection | → | Coleção a copiar em array |
| array | Array | ← | Array que vai receber os elementos da coleção; se nomeProp for passado, array que vai receber os valores de nomeProp na coleção |
-| nomProp | Text | → | Nome de propriedade de objeto cujos valores vão ser copiados em array ("" para todos os elementos) |
+| nomProp | Text | → | Nome de propriedade de objeto cujos valores vão ser copiados em array ("" para todos os elementos) |
@@ -71,6 +71,6 @@ Se quiser copiar diferentes valores de propriedade de uma coleção de objetos e
| | |
| --- | --- |
| Número do comando | 1562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
index 49553f02216c63..5f97aad898f7c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/combine-pictures.md
@@ -5,16 +5,16 @@ slug: /commands/combine-pictures
displayed_sidebar: docs
---
-**COMBINE PICTURES** ( *imagemResult* ; *imagem1* ; *operador* ; *imagem2* {; *deslocHor* ; *deslocVert*} )
+**COMBINE PICTURES** ( *imagemResult* : Picture ; *imagem1* : Picture ; *operador* : Integer ; *imagem2* : Picture {; *deslocHor* : Integer ; *deslocVert* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| imagemResult | Picture | ← | Imagem resultante da combinação |
-| imagem1 | Picture | → | Primeira imagem a combinar |
-| operador | Integer | → | Tipo de combinação a ser feita |
-| imagem2 | Picture | → | Segunda imagem a combinar |
-| deslocHor | Integer | → | Deslocamento horizontal para super-imposição |
-| deslocVert | Integer | → | Deslocamento vertical para super-imposição |
+| imagem1 | Picture | → | Primeira imagem a combinar |
+| operador | Integer | → | Tipo de combinação a ser feita |
+| imagem2 | Picture | → | Segunda imagem a combinar |
+| deslocHor | Integer | → | Deslocamento horizontal para super-imposição |
+| deslocVert | Integer | → | Deslocamento vertical para super-imposição |
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 987 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
index a7c224daa61c94..08a5ceff59d47a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compact-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/compact-data-file
displayed_sidebar: docs
---
-**Compact data file** ( *endEstrutura* ; *endDados* {; *pastaArquivo* {; *opçao* {; *metodo*}}} ) : Text
+**Compact data file** ( *endEstrutura* : Text ; *endDados* : Text {; *pastaArquivo* : Text {; *opçao* : Integer {; *metodo* : Text}}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| endEstrutura | Text | → | Endereço de acesso ao arquivo de estrutura |
-| endDados | Text | → | Endereço de acesso ao arquivo de dados |
-| pastaArquivo | Text | → | Endereço de acesso a pasta onde será colocado o arquivo de dados original |
-| opçao | Integer | → | Opções de compactação |
-| metodo | Text | → | Nome do método 4D de retrochamada |
+| endEstrutura | Text | → | Endereço de acesso ao arquivo de estrutura |
+| endDados | Text | → | Endereço de acesso ao arquivo de dados |
+| pastaArquivo | Text | → | Endereço de acesso a pasta onde será colocado o arquivo de dados original |
+| opçao | Integer | → | Opções de compactação |
+| metodo | Text | → | Nome do método 4D de retrochamada |
| Resultado | Text | ← | Endereço de acesso completo à pasta que contém o arquivo de dados original |
@@ -76,7 +76,7 @@ Se um arquivo de histórico for gerado, seu nome de caminho completo é retornad
| | |
| --- | --- |
| Número do comando | 937 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
index 2e41f717822180..7261a15b30fc71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compare-strings.md
@@ -5,13 +5,13 @@ slug: /commands/compare-strings
displayed_sidebar: docs
---
-**Compare strings** ( *string* ; *stringB* {; *opções*} ) : Integer
+**Compare strings** ( *string* : Text ; *stringB* : Text {; *opções* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| string | Text | → | String a comparar |
-| stringB | Text | → | String a ser comparada |
-| opções | Integer | → | Regras de comparação |
+| string | Text | → | String a comparar |
+| stringB | Text | → | String a ser comparada |
+| opções | Integer | → | Regras de comparação |
| Resultado | Integer | ← | Resultado da comparação de strings |
@@ -109,6 +109,6 @@ Os exemplos abaixo ilustram o impacto específico das opções no **contexto da
| | |
| --- | --- |
| Número do comando | 1756 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
index c3f457c0d9b494..5ebfd67a1ff3f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/component-list.md
@@ -5,7 +5,7 @@ slug: /commands/component-list
displayed_sidebar: docs
---
-**COMPONENT LIST** ( *arrayComponentes* )
+**COMPONENT LIST** ( *arrayComponentes* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -39,6 +39,6 @@ Para maiores informações sobre componentes 4D, por favor consulte o Manual de
| | |
| --- | --- |
| Número do comando | 1001 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
index 7e0eabe1d8ec6d..9e3eb4994aacd2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/compress-blob.md
@@ -5,12 +5,12 @@ slug: /commands/compress-blob
displayed_sidebar: docs
---
-**COMPRESS BLOB** ( *BLOB* {; *compressão*} )
+**COMPRESS BLOB** ( *BLOB* : Blob {; *compressão* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB a ser comprimido |
-| compressão | Integer | → | Se não se omite: 1, compressão máxima possível 2, velocidade de compressão máxima |
+| Blob | Blob | → | BLOB a ser comprimido |
+| compressão | Integer | → | Se não se omite: 1, compressão máxima possível 2, velocidade de compressão máxima |
@@ -97,7 +97,7 @@ A variável OK é definida como 1 se o BLOB foi compactado com sucesso, caso con
| | |
| --- | --- |
| Número do comando | 534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
index eeba309ab48c01..47828a6ffc0f70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/confirm.md
@@ -5,13 +5,13 @@ slug: /commands/confirm
displayed_sidebar: docs
---
-**CONFIRM** ( *mensagem* {; *okBotaoTitulo* {; *cancelarBotaoTitulo*}} )
+**CONFIRM** ( *mensagem* : Text {; *okBotaoTitulo* : Text {; *cancelarBotaoTitulo* : Text}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de confirmação |
-| okBotaoTitulo | Text | → | Título do botão OK |
-| cancelarBotaoTitulo | Text | → | Título do botão Cancelar |
+| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de confirmação |
+| okBotaoTitulo | Text | → | Título do botão OK |
+| cancelarBotaoTitulo | Text | → | Título do botão Cancelar |
@@ -98,7 +98,7 @@ Mostrará a seguinte caixa de diálogo de confirmação (em Macintosh):
| | |
| --- | --- |
| Número do comando | 162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
index f8883de58f2f2c..11a633b3266da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado com uma área de rolagem, lhe permite modificar o valor
| | |
| --- | --- |
| Número do comando | 713 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
index 340aad7621635b..cdf8722985106c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-coordinates.md
@@ -5,16 +5,14 @@ slug: /commands/convert-coordinates
displayed_sidebar: docs
---
-**CONVERT COORDINATES** ( *xCoord* ; *yCoord* ; *de* ; *para* )
+**CONVERT COORDINATES** ( *xCoord* : Integer ; *yCoord* : Integer ; *de* : Integer ; *para* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| xCoord | Integer | → | Coordenada horizontal de um ponto (Inicial) |
-| ← | Coordenada horizontal de um ponto (Convertida) |
-| yCoord | Integer | → | Coordenada vertical de um ponto (inicial) |
-| ← | Coordenada vertical de um ponto (convertida) |
-| de | Integer | → | Sistema de coordenadas que vai ser convertido |
-| para | Integer | → | Sistema de coordenadas para o qual vai converter |
+| xCoord | Integer | ↔ | *in:* Horizontal coordinate of a point (initial)
*out:* Horizontal coordinate of a point (converted) |
+| yCoord | Integer | ↔ | *in:* Vertical coordinate of a point (initial)
*out:* Vertical coordinate of a point (converted) |
+| de | Integer | → | Sistema de coordenadas que vai ser convertido |
+| para | Integer | → | Sistema de coordenadas para o qual vai converter |
@@ -90,6 +88,6 @@ Se quiser abrir uma janela pop-up na posição do cursor do mouse, em Windows, p
| | |
| --- | --- |
| Número do comando | 1365 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
index 397118cfd8bf24..b5d04c3a39812e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-from-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-from-text
displayed_sidebar: docs
---
-**CONVERT FROM TEXT** ( *texto4D* ; *conjuntoCaracteres* ; *blobConvertido* )
+**CONVERT FROM TEXT** ( *texto4D* : Text ; *conjuntoCaracteres* : Text, Integer ; *blobConvertido* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| texto4D | Text | → | Texto expresso no conjunto de caracteres atual de 4D |
-| conjuntoCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
+| texto4D | Text | → | Texto expresso no conjunto de caracteres atual de 4D |
+| conjuntoCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
| blobConvertido | Blob | ← | BLOB contendo o texto convertido |
@@ -192,7 +192,7 @@ Se o comando tiver sido executado corretamente, a variável OK assume o valor 1\
| | |
| --- | --- |
| Número do comando | 1011 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
index 7bede5ea388852..5c9fdfc3f70b97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-posix-to-system.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-posix-to-system
displayed_sidebar: docs
---
-**Convert path POSIX to system** ( *rotaPosix* {; *} ) : Text
+**Convert path POSIX to system** ( *rotaPosix* : Text {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaPosix | Text | → | Nome de rota POSIX |
-| * | Operador | → | Opção de codificação |
+| rotaPosix | Text | → | Nome de rota POSIX |
+| * | Operador | → | Opção de codificação |
| Resultado | Text | ← | Rota de acesso expressa em sintaxe de sistema |
@@ -60,6 +60,6 @@ Exemplos em Windows:
| | |
| --- | --- |
| Número do comando | 1107 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
index 2f7f7ab77a1bb6..339adbf61200a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-path-system-to-posix.md
@@ -5,12 +5,12 @@ slug: /commands/convert-path-system-to-posix
displayed_sidebar: docs
---
-**Convert path system to POSIX** ( *rotaSistema* {; *} ) : Text
+**Convert path system to POSIX** ( *rotaSistema* : Text {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaSistema | Text | → | Rota de acesso absoluta ou relativa, expressa em sintaxe de sistema |
-| * | Operador | → | Opção de codificação |
+| rotaSistema | Text | → | Rota de acesso absoluta ou relativa, expressa em sintaxe de sistema |
+| * | Operador | → | Opção de codificação |
| Resultado | Text | ← | Absolute pathname expressed in POSIX syntax |
@@ -67,6 +67,6 @@ Exemplo em Windows
| | |
| --- | --- |
| Número do comando | 1106 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
index 3ccba98f836be4..c78da1055f95ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-picture.md
@@ -5,14 +5,13 @@ slug: /commands/convert-picture
displayed_sidebar: docs
---
-**CONVERT PICTURE** ( *imagem* ; *codec* {; *compressao*} )
+**CONVERT PICTURE** ( *imagem* : Picture ; *codec* : Text {; *compressao* : Real} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem a ser convertida |
-| ← | Imagem convertida |
-| codec | Text | → | Codec de identificação de Imagem |
-| compressao | Real | → | Qualidade da compressão |
+| imagem | Picture | ↔ | *in:* Picture to be converted
*out:* Converted picture |
+| codec | Text | → | Codec de identificação de Imagem |
+| compressao | Real | → | Qualidade da compressão |
@@ -56,6 +55,6 @@ Conversão de uma imagem com qualidade de 60%:
| | |
| --- | --- |
| Número do comando | 1002 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
index 6c11e07b809172..196db9b21107cf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/convert-to-text.md
@@ -5,12 +5,12 @@ slug: /commands/convert-to-text
displayed_sidebar: docs
---
-**Convert to text** ( *BLOB* ; *conjuntoCaracteres* ) : Text
+**Convert to text** ( *BLOB* : Blob ; *conjuntoCaracteres* : Text, Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | Blob que contém texto expresso num conjunto de caracteres específico |
-| conjuntoCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres do BLOB |
+| Blob | Blob | → | Blob que contém texto expresso num conjunto de caracteres específico |
+| conjuntoCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres do BLOB |
| Resultado | Text | ← | Conteúdos do BLOB expressos em conjunto de caracteres 4D |
@@ -37,7 +37,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Do co
| | |
| --- | --- |
| Número do comando | 1012 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
index df80334b03b0d6..62afd9168afa91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-array.md
@@ -5,11 +5,11 @@ slug: /commands/copy-array
displayed_sidebar: docs
---
-**COPY ARRAY** ( *fonte* ; *destino* )
+**COPY ARRAY** ( *fonte* : Array ; *destino* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Array | → | Array do qual se copia |
+| fonte | Array | → | Array do qual se copia |
| destino | Array | ← | Array para o qual se copia |
@@ -41,6 +41,6 @@ O exemplo seguinte preenche o array chamado C. Ele então cria um novo array, ch
| | |
| --- | --- |
| Número do comando | 226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
index 52027b72f53e09..4c92912985defd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-blob.md
@@ -5,15 +5,15 @@ slug: /commands/copy-blob
displayed_sidebar: docs
---
-**COPY BLOB** ( *oriBLOB* ; *dstBLOB* ; *oriOffset* ; *dstOffset* ; *tamanho* )
+**COPY BLOB** ( *oriBLOB* : Blob ; *dstBLOB* : Blob ; *oriOffset* : Integer ; *dstOffset* : Integer ; *tamanho* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| oriBlob | Blob | → | BLOB origem |
-| dstBlob | Blob | → | BLOB destino |
-| oriOffset | Integer | → | Posição da fonte para a cópia |
-| dstOffset | Integer | → | Posição de destino para a cópia |
-| tamanho | Integer | → | Número de bytes a copiar |
+| oriBlob | Blob | → | BLOB origem |
+| dstBlob | Blob | → | BLOB destino |
+| oriOffset | Integer | → | Posição da fonte para a cópia |
+| dstOffset | Integer | → | Posição de destino para a cópia |
+| tamanho | Integer | → | Número de bytes a copiar |
@@ -35,6 +35,6 @@ A cópia começa na posição (expressa em relação ao início do BLOB fonte) e
| | |
| --- | --- |
| Número do comando | 558 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
index 3f0036f7eded81..14067c5f24f01f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-document.md
@@ -5,14 +5,14 @@ slug: /commands/copy-document
displayed_sidebar: docs
---
-**COPY DOCUMENT** ( *nomFonte* ; *nomDest* {; *newName*} {; *} )
+**COPY DOCUMENT** ( *nomFonte* : Text ; *nomDest* : Text {; *newName* : Text} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomFonte | Text | → | Nome do documento a copiar |
-| nomDest | Text | → | Nome do documento copiado |
-| newName | Text | → | New name of copied file or folder |
-| * | Operador | → | Substituir documento existente, se houver |
+| nomFonte | Text | → | Nome do documento a copiar |
+| nomDest | Text | → | Nome do documento copiado |
+| newName | Text | → | New name of copied file or folder |
+| * | Operador | → | Substituir documento existente, se houver |
@@ -124,7 +124,7 @@ Os seguintes exemplos criam diferentes arquivos e pastas na pasta da base (exemp
| | |
| --- | --- |
| Número do comando | 541 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
index e2cd37f19c40d8..f1757fa13264cf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-list.md
@@ -5,11 +5,11 @@ slug: /commands/copy-list
displayed_sidebar: docs
---
-**Copy list** ( *lista* ) : Integer
+**Copy list** ( *lista* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista a copiar |
+| lista | Integer | → | Número de referência da lista a copiar |
| Resultado | Integer | ← | Número de referência da nova lista |
@@ -31,6 +31,6 @@ Quando tiver terminado de utilizar a nova lista, chame a [CLEAR LIST](clear-list
| | |
| --- | --- |
| Número do comando | 626 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
index a46e77b93c6239..e1e066551efc70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/copy-named-selection
displayed_sidebar: docs
---
-**COPY NAMED SELECTION** ( {*tabela* ;} *nome* )
+**COPY NAMED SELECTION** ( {*tabela* : Table ;} *nome* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual copiar seleção, ou Tabela por padrão, se omitida |
-| nome | Text | → | Nome da seleção temporal a criar |
+| tabela | Table | → | Tabela da qual copiar seleção, ou Tabela por padrão, se omitida |
+| nome | Text | → | Nome da seleção temporal a criar |
@@ -56,6 +56,6 @@ O seguinte exemplo permite verificar se há outras faturas vencidas na tabela *\
| | |
| --- | --- |
| Número do comando | 331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
index d0e0e8435ab11b..d2922155772806 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-parameters.md
@@ -5,11 +5,11 @@ slug: /commands/copy-parameters
displayed_sidebar: docs
---
-**Copy parameters** {( *inicioDesde* )} : Collection
+**Copy parameters** ( *inicioDesde* : Integer ) : Collection
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| inicioDesde | Integer | → | Indice inicio (incluido) |
+| inicioDesde | Integer | → | Indice inicio (incluido) |
| Resultado | Collection | ← | Nova coleção contendo parâmetros realmente passados |
@@ -86,6 +86,6 @@ Como o comando devolve uma coleção, pode ser utilizada com **.join()** para cr
| | |
| --- | --- |
| Número do comando | 1790 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
index ccd498f4e1f19e..90de7aff83efa4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/copy-set.md
@@ -5,12 +5,12 @@ slug: /commands/copy-set
displayed_sidebar: docs
---
-**COPY SET** ( *comOrigem* ; *comDestino* )
+**COPY SET** ( *comOrigem* : Text ; *comDestino* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| comOrigem | Text | → | Nome do conjunto de origem |
-| comDestino | Text | → | Nome do Conjunto de Destino |
+| comOrigem | Text | → | Nome do conjunto de origem |
+| comDestino | Text | → | Nome do Conjunto de Destino |
@@ -45,6 +45,6 @@ O seguinte exemplo em Cliente/Servidor, copia o conjunto processo "*ConjuntoA*",
| | |
| --- | --- |
| Número do comando | 600 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
index 3066e6e41e8a09..ab99c44819d5cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cos.md
@@ -5,11 +5,11 @@ slug: /commands/cos
displayed_sidebar: docs
---
-**Cos** ( *numero* ) : Real
+**Cos** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número, em radianos, cujo cosseno é retornado |
+| numero | Real | → | Número, em radianos, cujo cosseno é retornado |
| Resultado | Real | ← | O Cosseno do número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 18 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
index 0fc1a668bbde4a..5920f430a09e8f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-in-array.md
@@ -5,12 +5,12 @@ slug: /commands/count-in-array
displayed_sidebar: docs
---
-**Count in array** ( *array* ; *valor* ) : Integer
+**Count in array** ( *array* : Array ; *valor* : Expression ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array no qual a contagem deve ocorrer |
-| valor | Expression | → | Valor a contar |
+| array | Array | → | Array no qual a contagem deve ocorrer |
+| valor | Expression | → | Valor a contar |
| Resultado | Integer | ← | Número de ocorrências encontradas |
@@ -63,6 +63,6 @@ Para contar referências de objeto em um array de objeto:
| | |
| --- | --- |
| Número do comando | 907 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
index d94e207084d8a3..88358b40a09c5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-list-items.md
@@ -5,13 +5,13 @@ slug: /commands/count-list-items
displayed_sidebar: docs
---
-**Count list items** ( {* ;} *lista* {; *} ) : Integer
+**Count list items** ( {* ;} *lista* : Integer, Text {; *} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| * | Operador | → | Se omitida (por padrão): Devolve os elementos visíveis (expandidos) da lista Se especificada: Devolve todos os elementos da lista |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| * | Operador | → | Se omitida (por padrão): Devolve os elementos visíveis (expandidos) da lista Se especificada: Devolve todos os elementos da lista |
| Resultado | Integer | ← | Número de elementos visíveis da lista (expandidos) (se omitido o segundo *) ou número total de elementos da lista (se apresentado o segundo *) |
@@ -66,6 +66,6 @@ Aqui temos uma lista chamada *hList* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 380 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
index 02caf58ace8e81..aaaf7cfbdb062a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menu-items.md
@@ -5,12 +5,12 @@ slug: /commands/count-menu-items
displayed_sidebar: docs
---
-**Count menu items** ( *menu* {; *processo*} ) : Integer
+**Count menu items** ( *menu* : Integer, Text {; *processo* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| processo | Integer | → | Número de referência do processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| processo | Integer | → | Número de referência do processo |
| Resultado | Integer | ← | Número de itens de menu no menu |
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Count menu items é aplicada a barra de menus
| | |
| --- | --- |
| Número do comando | 405 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
index 6d6173c0518c7e..af6b257b17f7e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-menus.md
@@ -5,11 +5,11 @@ slug: /commands/count-menus
displayed_sidebar: docs
---
-**Count menus** {( *processo* )} : Integer
+**Count menus** ( *processo* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de referência de processo |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Integer | ← | Número de menus da barra de menus atual |
@@ -29,7 +29,7 @@ Se omitir o parâmetro *processo*, Count menus é aplicada a barra de menus do p
| | |
| --- | --- |
| Número do comando | 404 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
index 787de278861aeb..1b1e97cb5352b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 259 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
index 810b045f72d422..599c90c0b37ac4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 437 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
index 173307e1848c2a..39633fe6a41e0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver o exemplo para [Process state](process-state.md "Process state") e [On Exit
| | |
| --- | --- |
| Número do comando | 335 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
index c18f85308e1c22..be052305d92329 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 343 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
index 1fed2ea54541fd..b719e8fa7a5b67 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Quando em versão monousuário de 4D, **Count users** devolve 1.
| | |
| --- | --- |
| Número do comando | 342 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
index 126f84991639c4..f367f8e8b3a9f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-alias.md
@@ -5,12 +5,12 @@ slug: /commands/create-alias
displayed_sidebar: docs
---
-**CREATE ALIAS** ( *rotaObjetivo* ; *rotaAlias* )
+**CREATE ALIAS** ( *rotaObjetivo* : Text ; *rotaAlias* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaObjetivo | Text | → | Nome da rota de acesso do alias/atalho alvo |
-| rotaAlias | Text | → | Nome ou rota de acesso completa para o alias ou atalho |
+| rotaObjetivo | Text | → | Nome da rota de acesso do alias/atalho alvo |
+| rotaAlias | Text | → | Nome ou rota de acesso completa para o alias ou atalho |
@@ -73,7 +73,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 694 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
index 9d6ee42954cd57..3ba6fbc7290956 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/create-data-file
displayed_sidebar: docs
---
-**CREATE DATA FILE** ( *endAcesso* )
+**CREATE DATA FILE** ( *endAcesso* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| endAcesso | Text | → | Nome ou endereço completo de acesso ao arquivo de dados a ser criado |
+| endAcesso | Text | → | Nome ou endereço completo de acesso ao arquivo de dados a ser criado |
@@ -32,6 +32,6 @@ Antes de iniciar a operação, o comando verifica que o endereço de acesso não
| | |
| --- | --- |
| Número do comando | 313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
index b9f548f7c478a2..8b39e0a65dd488 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-document.md
@@ -5,12 +5,12 @@ slug: /commands/create-document
displayed_sidebar: docs
---
-**Create document** ( *documento* {; *tipoArquivo*} ) : Time
+**Create document** ( *documento* : Text {; *tipoArquivo* : Text} ) : Time
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
-| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
+| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
+| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
| Resultado | Time | ← | Número de referência de documento |
@@ -78,7 +78,7 @@ Se o documento for criado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 266 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
index f12c6f438f4da1..a7f66af2fff9de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-empty-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-empty-set
displayed_sidebar: docs
---
-**CREATE EMPTY SET** ( {*tabela* ;} *conjunto* )
+**CREATE EMPTY SET** ( {*tabela* : Table ;} *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai criar um conjunto vazio, ou tabela padrão, se omitido |
-| conjunto | Text | → | Nome do conjunto vazio |
+| tabela | Table | → | Tabela na qual vai criar um conjunto vazio, ou tabela padrão, se omitido |
+| conjunto | Text | → | Nome do conjunto vazio |
@@ -34,6 +34,6 @@ Consulte o exemplo da seção *Conjuntos*.
| | |
| --- | --- |
| Número do comando | 140 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
index ca70d9de695ac2..b56aa662d93b7a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-folder.md
@@ -5,12 +5,12 @@ slug: /commands/create-folder
displayed_sidebar: docs
---
-**CREATE FOLDER** ( *rotaPasta* {; *} )
+**CREATE FOLDER** ( *rotaPasta* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaPasta | Text | → | Rota de acesso a nova pasta a criar |
-| * | Operador | → | Cria hierarquia de pastas |
+| rotaPasta | Text | → | Rota de acesso a nova pasta a criar |
+| * | Operador | → | Cria hierarquia de pastas |
@@ -73,7 +73,7 @@ Criação da subpasta "\\Fevereiro\\" na atual pasta "C:\\Arquivos\\":
| | |
| --- | --- |
| Número do comando | 475 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
index e8d0e0ee07d72f..9f9e6c4eb6da7e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-index.md
@@ -5,15 +5,15 @@ slug: /commands/create-index
displayed_sidebar: docs
---
-**CREATE INDEX** ( *tabela* ; *arrayCampos* ; *tipoIndice* ; *nomeIndice* {; *} )
+**CREATE INDEX** ( *tabela* : Table ; *arrayCampos* : Pointer array ; *tipoIndice* : Integer ; *nomeIndice* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para qual criar um índice |
-| arrayCampos | Pointer array | → | Ponteiros aos campos a serem indexados |
-| tipoIndice | Integer | → | Tipo de índice a criar: -1 = Palavra chave, 0 = padrão, 1 = B-Tree padrão, 3 = Cluster B-Tree |
-| nomeIndice | Text | → | Nome de Índice a criar |
-| * | Operador | → | Se passado = índice assincrônico |
+| tabela | Table | → | Tabela para qual criar um índice |
+| arrayCampos | Pointer array | → | Ponteiros aos campos a serem indexados |
+| tipoIndice | Integer | → | Tipo de índice a criar: -1 = Palavra chave, 0 = padrão, 1 = B-Tree padrão, 3 = Cluster B-Tree |
+| nomeIndice | Text | → | Nome de Índice a criar |
+| * | Operador | → | Se passado = índice assincrônico |
@@ -93,6 +93,6 @@ Criação de um índice composto nos campos “Cidade” e “CódigoPostal” d
| | |
| --- | --- |
| Número do comando | 966 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
index 95e503858861fa..296b60ee63795f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-menu.md
@@ -5,11 +5,11 @@ slug: /commands/create-menu
displayed_sidebar: docs
---
-**Create menu** {( *menu* )} : Text
+**Create menu** ( *menu* : Text, Integer, Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Text, Integer, Text | → | Referência de menu ou Número ou Nome da barra de menu |
+| menu | Text, Integer, Text | → | Referência de menu ou Número ou Nome da barra de menu |
| Resultado | Text | ← | Referência de menu |
@@ -48,6 +48,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
index 597f9892992882..4d42ed765e79f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-record.md
@@ -5,11 +5,11 @@ slug: /commands/create-record
displayed_sidebar: docs
---
-**CREATE RECORD** {( *tabela* )}
+**CREATE RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual criar um novo registro, ou tabela Padrão, se omitido |
+| tabela | Table | → | Tabela para a qual criar um novo registro, ou tabela Padrão, se omitido |
@@ -52,7 +52,7 @@ O seguinte exemplo arquiva os registros que tem mais de 30 dias. Esta operação
| | |
| --- | --- |
| Número do comando | 68 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
index abbcf9b2905921..e5f6f6fbbfdb84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/create-related-one
displayed_sidebar: docs
---
-**CREATE RELATED ONE** ( *campo* )
+**CREATE RELATED ONE** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Muitos campos |
+| campo | Field | → | Muitos campos |
@@ -30,6 +30,6 @@ Se já existe um registro relacionado, CREATE RELATED ONE atua como [RELATE ONE]
| | |
| --- | --- |
| Número do comando | 65 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
index 07300a1a5e2e4a..1aa8fbfacd48d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-selection-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-selection-from-array
displayed_sidebar: docs
---
-**CREATE SELECTION FROM ARRAY** ( *tabela* ; *regArray* {; *temp*} )
+**CREATE SELECTION FROM ARRAY** ( *tabela* : Table ; *regArray* : Integer, Boolean array {; *temp* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual criar a seleção |
-| regArray | Integer, Boolean array | → | Array de números de registros, ou Array de booleanos (True = o registro está na seleção, False = o registro não está na seleção) |
-| temp | Text | → | Nome da seleção temporal a criar, ou Aplicar o comando a seleção atual se o parâmetro se omite |
+| tabela | Table | → | Tabela da qual criar a seleção |
+| regArray | Integer, Boolean array | → | Array de números de registros, ou Array de booleanos (True = o registro está na seleção, False = o registro não está na seleção) |
+| temp | Text | → | Nome da seleção temporal a criar, ou Aplicar o comando a seleção atual se o parâmetro se omite |
@@ -54,7 +54,7 @@ Se um número de registro não é válido (registro não criado), é gerado o er
| | |
| --- | --- |
| Número do comando | 640 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
index 004aebce97c60a..23c4634eba2294 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/create-set-from-array
displayed_sidebar: docs
---
-**CREATE SET FROM ARRAY** ( *tabela* ; *arrayReg* {; *nomConjunto*} )
+**CREATE SET FROM ARRAY** ( *tabela* : Table ; *arrayReg* : Integer, Boolean array {; *nomConjunto* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do conjunto |
-| arrayReg | Integer, Boolean array | → | Array de números de registrs, ou Array de booleanos (True = o registro está no conjunto, False = o registro não está no conjunto) |
-| nomConjunto | Text | → | Nome do conjunto a criar, ou Aplicar o comando ao UserSet se omitido |
+| tabela | Table | → | Tabela do conjunto |
+| arrayReg | Integer, Boolean array | → | Array de números de registrs, ou Array de booleanos (True = o registro está no conjunto, False = o registro não está no conjunto) |
+| nomConjunto | Text | → | Nome do conjunto a criar, ou Aplicar o comando ao UserSet se omitido |
@@ -45,7 +45,7 @@ Em um array de inteiros longos, se um número de registro não for válido (regi
| | |
| --- | --- |
| Número do comando | 641 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
index 67077644465fc2..4b55250cb479ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-set.md
@@ -5,12 +5,12 @@ slug: /commands/create-set
displayed_sidebar: docs
---
-**CREATE SET** ( {*tabela* ;} *conjunto* )
+**CREATE SET** ( {*tabela* : Table ;} *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | tabela para qual criar um conjunto a partir da seleção, ou tabela padrão se omitido |
-| conjunto | Text | → | Nome do novo conjunto |
+| tabela | Table | → | tabela para qual criar um conjunto a partir da seleção, ou tabela padrão se omitido |
+| conjunto | Text | → | Nome do novo conjunto |
@@ -38,6 +38,6 @@ O seguinte exemplo cria um conjunto depois de realizar uma pesquisa, de maneira
| | |
| --- | --- |
| Número do comando | 116 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
index e4832914007e52..605d289ca87557 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/create-thumbnail.md
@@ -5,16 +5,16 @@ slug: /commands/create-thumbnail
displayed_sidebar: docs
---
-**CREATE THUMBNAIL** ( *fonte* ; *dest* {; *largura* {; *altura* {; *modo* {; *profundidade*}}}} )
+**CREATE THUMBNAIL** ( *fonte* : Picture ; *dest* : Picture {; *largura* : Integer {; *altura* : Integer {; *modo* : Integer {; *profundidade* : Integer}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Picture | → | Fonte da imagem 4D ou variável a converter para uma miniatura |
+| fonte | Picture | → | Fonte da imagem 4D ou variável a converter para uma miniatura |
| dest | Picture | ← | Miniatura resultante |
-| largura | Integer | → | Largura da miniatura em pixels. Valor padrão = 48 |
-| altura | Integer | → | Altura da miniatura em pixels. Valor padrão = 48 |
-| modo | Integer | → | Módulo de criação de miniaturas; Valor padrão= Proporcional centralizado (6) |
-| profundidade | Integer | → | Obsoleto, não usar |
+| largura | Integer | → | Largura da miniatura em pixels. Valor padrão = 48 |
+| altura | Integer | → | Altura da miniatura em pixels. Valor padrão = 48 |
+| modo | Integer | → | Módulo de criação de miniaturas; Valor padrão= Proporcional centralizado (6) |
+| profundidade | Integer | → | Obsoleto, não usar |
@@ -65,6 +65,6 @@ O parâmetro opcional *profundidade* define o número de cores em Mac OS (ou sej
| | |
| --- | --- |
| Número do comando | 679 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
index dda8e54ecbb890..b28622b8e9736e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-client-authentication.md
@@ -5,7 +5,7 @@ slug: /commands/current-client-authentication
displayed_sidebar: docs
---
-**Current client authentication** {( *dominio* ; *protocolo* )} : Text
+**Current client authentication** ( *dominio* : Text ; *protocolo* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -77,6 +77,6 @@ Com esta configuração, não se mostra um diálogo de senha para um 4D remoto q
| | |
| --- | --- |
| Número do comando | 1355 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
index 4ad4c1cc81b3d8..38e83629f6d4ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-date.md
@@ -5,11 +5,11 @@ slug: /commands/current-date
displayed_sidebar: docs
---
-**Current date** {( * )} : Date
+**Current date** ( * ) : Date
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Devolve a data atual do servidor |
+| * | Operador | → | Devolve a data atual do servidor |
| Resultado | Date | ← | Data atual |
@@ -103,6 +103,6 @@ O seguinte método de projeto permite fazer isso:
| | |
| --- | --- |
| Número do comando | 33 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
index 91b3d979048031..f4644e9d2e7a63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Desde que uma tabela padrão tenha sido estabelecida, a linha de código abaixo
| | |
| --- | --- |
| Número do comando | 363 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
index 0db4f9ac5c8cba..3e91906021bfea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Se quiser obter o formulário atual se este for um formulário projeto:
| | |
| --- | --- |
| Número do comando | 1298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
index fc93e2ca7ac383..a2147ea835c7e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-table.md
@@ -67,6 +67,6 @@ Para isso, utilize o método de objeto para criar a variável *vstRegistroAtual*
| | |
| --- | --- |
| Número do comando | 627 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
index edab403553be64..21bfff1c185075 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ A janela do formulário atual pode ser gerada automaticamente por um comando tal
| | |
| --- | --- |
| Número do comando | 827 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
index 1f33614328e51b..9f6d5715636421 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Inclusive se não está correndo a versão cliente/servidor de 4D, sua aplicaç
| | |
| --- | --- |
| Número do comando | 483 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
index c4baf6cada6c01..6fe162c9ebb580 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-name.md
@@ -52,6 +52,6 @@ Este comando não pode ser chamado desde uma fórmula 4D.
| | |
| --- | --- |
| Número do comando | 684 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
index 2684f0b00fcf0e..1678b9e9a185ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1201 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
index 0e8daf0aab8045..e661d06be3782d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Se quiser chamar a um processo worker e passar o nome de processo de chamada com
| | |
| --- | --- |
| Número do comando | 1392 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
index 0f8245586e7c3e..6b5efeb65032fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver os exemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") e [PROCESS
| | |
| --- | --- |
| Número do comando | 322 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
index d9f3341cb1b066..4bfe3a2463af0a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [Current machine](current-machine.md "Current machine")
| | |
| --- | --- |
| Número do comando | 484 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
index ccbe4370830fe3..e89c4bdb54a2ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-time.md
@@ -5,11 +5,11 @@ slug: /commands/current-time
displayed_sidebar: docs
---
-**Current time** {( * )} : Time
+**Current time** ( * ) : Time
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Devolve a hora atual do servidor |
+| * | Operador | → | Devolve a hora atual do servidor |
| Resultado | Time | ← | Hora atual |
@@ -55,6 +55,6 @@ O exemplo a seguir extrai as horas, minutos e segundos da hora atual:
| | |
| --- | --- |
| Número do comando | 178 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
index bf6ca9b2277e94..74bef5c7813ae7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/current-user.md
@@ -5,11 +5,11 @@ slug: /commands/current-user
displayed_sidebar: docs
---
-**Current user** {( *usuario* )} : Text
+**Current user** ( *usuario* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| usuario | Integer | → | Alias do usuário ou usuário 4D da conta. |
+| usuario | Integer | → | Alias do usuário ou usuário 4D da conta. |
| Resultado | Text | ← | Nome de usuário do usuário atual |
@@ -44,6 +44,6 @@ Ver exemplo do comando [User in group](user-in-group.md).
| | |
| --- | --- |
| Número do comando | 182 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
index ed6b23a766be13..f1d15f4df99308 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/cut-named-selection.md
@@ -5,12 +5,12 @@ slug: /commands/cut-named-selection
displayed_sidebar: docs
---
-**CUT NAMED SELECTION** ( {*tabela* ;} *nome* )
+**CUT NAMED SELECTION** ( {*tabela* : Table ;} *nome* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual cortar seleção, ou Tabela por padrão, se omitida |
-| nome | Text | → | Nome da seleção temporal a criar |
+| tabela | Table | → | Tabela da qual cortar seleção, ou Tabela por padrão, se omitida |
+| nome | Text | → | Nome da seleção temporal a criar |
@@ -42,7 +42,7 @@ O método seguinte vazia a seleção atual de uma tabela *\[Clientes\]*:
| | |
| --- | --- |
| Número do comando | 334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
index 31d6a7185fdd05..8626e86be78cd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file-encryption-status.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaEstrutura | Text | → | Rota do arquivo de estrutura 4D a ser verificado |
-| rotaDados | Text | → | Rota do arquivo de dados 4D a ser verificado |
+| rotaEstrutura | Text | → | Rota do arquivo de estrutura 4D a ser verificado |
+| rotaDados | Text | → | Rota do arquivo de dados 4D a ser verificado |
| Resultado | Object | ← | Informação sobre o estado de criptografia do arquivo de dados e de cada tabela |
@@ -74,6 +74,6 @@ Se quiser conhecer o estado de criptografia de um arquivo de dados que correspon
| | |
| --- | --- |
| Número do comando | 1609 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
index 2ecc9db7158037..058f6a96bf30a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/data-file.md
@@ -5,11 +5,11 @@ slug: /commands/data-file
displayed_sidebar: docs
---
-**Data file** {( *segmento* )} : Text
+**Data file** ( *segmento* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| segmento | Integer | → | Obsoleto, não use |
+| segmento | Integer | → | Obsoleto, não use |
| Resultado | Text | ← | Nome longo do arquivo de dados do banco de dados |
@@ -38,6 +38,6 @@ Se você está trabalhando, por exemplo, com o banco na pasta Documentos:MeusCDs
| | |
| --- | --- |
| Número do comando | 490 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
index 4fd0c9210ae528..337446fac708c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/database-measures.md
@@ -5,11 +5,11 @@ slug: /commands/database-measures
displayed_sidebar: docs
---
-**Database measures** {( *opcoes* )} : Object
+**Database measures** ( *opcoes* : Object ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opcoes | Object | → | Opções de retorno |
+| opcoes | Object | → | Opções de retorno |
| Resultado | Object | ← | Objeto que contém as medidas da base |
@@ -335,6 +335,6 @@ Queremos obter as medidas de bytes de cachê nos últimos dois minutos:
| | |
| --- | --- |
| Número do comando | 1314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md
index 1840ff18ba6968..83a9906ebd76d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/date.md
@@ -5,11 +5,11 @@ slug: /commands/date
displayed_sidebar: docs
---
-**Date** ( *dataCadeia* ) : Date
+**Date** ( *dataCadeia* : Text, Date ) : Date
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dataCadeia | Text, Date | → | Cadeia que contém a data a resolver |
+| dataCadeia | Text, Date | → | Cadeia que contém a data a resolver |
| Resultado | Date | ← | Data |
@@ -100,6 +100,6 @@ Se quiser obter uma data de um atributo de objeto, qualquer que seja a opção a
| | |
| --- | --- |
| Número do comando | 102 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
index 2cf62f7d5aa44f..8bd0c5ddd4c847 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-number.md
@@ -5,11 +5,11 @@ slug: /commands/day-number
displayed_sidebar: docs
---
-**Day number** ( *data* ) : Integer
+**Day number** ( *data* : Date ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| data | Date | → | Data para a qual devolver o número do dia |
+| data | Date | → | Data para a qual devolver o número do dia |
| Resultado | Integer | ← | Número que representa o dia da semana que corresponde a data |
@@ -65,6 +65,6 @@ O seguinte exemplo é uma função que retorna o dia atual como uma string:
| | |
| --- | --- |
| Número do comando | 114 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
index 4d8adaa2f28cb4..968087464db8de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/day-of.md
@@ -5,11 +5,11 @@ slug: /commands/day-of
displayed_sidebar: docs
---
-**Day of** ( *data* ) : Integer
+**Day of** ( *data* : Date ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| data | Date | → | Data a qual para devolver o dia |
+| data | Date | → | Data a qual para devolver o dia |
| Resultado | Integer | ← | Dia do mês da data |
@@ -42,6 +42,6 @@ Veja o exemplo para o comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 23 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
index d70dff2d1b7dfe..de41f2b6429663 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução Deactivated, tenha certeza de que o e
| | |
| --- | --- |
| Número do comando | 347 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
index 1ae0d0b1424f9d..689b3941cdd505 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dec.md
@@ -5,11 +5,11 @@ slug: /commands/dec
displayed_sidebar: docs
---
-**Dec** ( *numero* ) : Real
+**Dec** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número cuja parte decimal é retornada |
+| numero | Real | → | Número cuja parte decimal é retornada |
| Resultado | Real | ← | Parte decimal do número |
@@ -36,6 +36,6 @@ O exemplo a seguir utiliza um valor monetário expresso como um número real, e
| | |
| --- | --- |
| Número do comando | 9 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
index 84f8d19fc50922..f154d79ec1849a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/decrypt-blob
displayed_sidebar: docs
---
-**DECRYPT BLOB** ( *aDecifrar* ; *enviarChavePub* {; *recepChavePriv* } )
+**DECRYPT BLOB** ( *aDecifrar* : Blob ; *enviarChavePub* : Blob {; *recepChavePriv* : Blob } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aDecifrar | Blob | ↔ | Dados a decifrar |
-| ||| Dados decifrados |
-| enviarChavePub | Blob | → | Chave pública do emissor |
-| recepChavePriv | Blob | → | Chave privada do receptor |
+| aDecifrar | Blob | ↔ | Dados a decifrar |
+| | | | Dados decifrados |
+| enviarChavePub | Blob | → | Chave pública do emissor |
+| recepChavePriv | Blob | → | Chave privada do receptor |
@@ -40,6 +40,6 @@ Consulte os exemplos dados para o comando .
| | |
| --- | --- |
| Número do comando | 690 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
index 2059fb2bd19556..2418087371e719 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/decrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/decrypt-data-blob
displayed_sidebar: docs
---
-**Decrypt data BLOB** ( *blobDecriptografar* ; objetoChave / passefrase ; *salt* ; *BLOBdecriptografado* ) : Boolean
+**Decrypt data BLOB** ( *blobDecriptografar* : Blob ; objetoChave / passefrase ; *salt* : Integer ; *BLOBdecriptografado* : Blob ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| blobDecriptografar | Blob | → | Blob que vai ser decriptografado |
-| objetoChave / passefrase | Objeto, Texto | → | Objeto JSON que contém a chave de criptografia ou passefrase para geração de chave direta de criptografia (texto) |
-| salt | Integer | → | Salt (ou sal/dados aleatórios) para o algoritmo de criptografia |
+| blobDecriptografar | Blob | → | Blob que vai ser decriptografado |
+| objetoChave / passefrase | Objeto, Texto | → | Objeto JSON que contém a chave de criptografia ou passefrase para geração de chave direta de criptografia (texto) |
+| salt | Integer | → | Salt (ou sal/dados aleatórios) para o algoritmo de criptografia |
| Blobdecriptografado | Blob | ← | BLOB que foi decriptografado |
| Resultado | Boolean | ← | True se a descrição tiver sido realizada corretamente. Senão False |
@@ -65,6 +65,6 @@ O exemplo abaixo mostra como decriptogrofar um arquivo criptografado localizado
| | |
| --- | --- |
| Número do comando | 1774 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
index f68e352d5d2592..d0dca728683a12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/default-table.md
@@ -5,11 +5,11 @@ slug: /commands/default-table
displayed_sidebar: docs
---
-**DEFAULT TABLE** ( *tabela* )
+**DEFAULT TABLE** ( *tabela* : Table )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a ser definida como padrão |
+| tabela | Table | → | Tabela a ser definida como padrão |
@@ -83,6 +83,6 @@ Neste código o resultado da tabela padrão:
| | |
| --- | --- |
| Número do comando | 46 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
index 21742e6cf836da..a8911fbbc4a7d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delay-process.md
@@ -5,12 +5,12 @@ slug: /commands/delay-process
displayed_sidebar: docs
---
-**DELAY PROCESS** ( *processo* ; *duraçao* )
+**DELAY PROCESS** ( *processo* : Integer ; *duraçao* : Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo |
-| duraçao | Real | → | Duração expressada em ticks |
+| processo | Integer | → | Número de processo |
+| duraçao | Real | → | Duração expressada em ticks |
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 323 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
index 98f6f9efc41d62..1f75c9ba273fc0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-document.md
@@ -5,11 +5,11 @@ slug: /commands/delete-document
displayed_sidebar: docs
---
-**DELETE DOCUMENT** ( *documento* )
+**DELETE DOCUMENT** ( *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome do documento ou rota de acesso completa |
+| documento | Text | → | Nome do documento ou rota de acesso completa |
@@ -54,7 +54,7 @@ A eliminação de um documento faz que a variável sistema assuma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
index 2667f1a8d6dc83..d3e5e4441dbb8e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-folder.md
@@ -5,12 +5,12 @@ slug: /commands/delete-folder
displayed_sidebar: docs
---
-**DELETE FOLDER** ( *pasta* {; delete Opcao} )
+**DELETE FOLDER** ( *pasta* : Text {; delete Opcao} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pasta | Text | → | Nome da pasta, ou rota de acesso completa da pasta a apagar |
-| delete Opcao | Inteiro longo | → | Opção de apagar a pasta |
+| pasta | Text | → | Nome da pasta, ou rota de acesso completa da pasta a apagar |
+| delete Opcao | Inteiro longo | → | Opção de apagar a pasta |
@@ -48,7 +48,7 @@ Pode interceptar estes erros usando o método isntalado pelo comando [ON ERR CAL
| | |
| --- | --- |
| Número do comando | 693 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
index bda519d71df6ba..47e08f5eb763c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-array.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-array
displayed_sidebar: docs
---
-**DELETE FROM ARRAY** ( *array* ; *posição* {; *quantos*} )
+**DELETE FROM ARRAY** ( *array* : Array ; *posição* : Integer {; *quantos* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array do qual apagar os elementos |
-| posição | Integer | → | Elemento onde se inicia o processo |
-| quantos | Integer | → | Número de elementos a apagar |
+| array | Array | → | Array do qual apagar os elementos |
+| posição | Integer | → | Elemento onde se inicia o processo |
+| quantos | Integer | → | Número de elementos a apagar |
@@ -50,6 +50,6 @@ O exemplo a seguir deleta o última elemento de um array, se ele existir:
| | |
| --- | --- |
| Número do comando | 228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
index 8bd49203857b53..a9fc4e7d989b3d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-blob.md
@@ -5,13 +5,13 @@ slug: /commands/delete-from-blob
displayed_sidebar: docs
---
-**DELETE FROM BLOB** ( *BLOB* ; *offset* ; *tamanho* )
+**DELETE FROM BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *tamanho* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB do qual deletar bytes |
-| offset | Integer | → | Offset inicial onde os bytes serão deletados |
-| tamanho | Integer | → | Número de bytes a serem excluídos |
+| Blob | Blob | → | BLOB do qual deletar bytes |
+| offset | Integer | → | Offset inicial onde os bytes serão deletados |
+| tamanho | Integer | → | Número de bytes a serem excluídos |
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 560 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
index 1d0f1c4d4083f0..fdded74a807ae2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-from-list.md
@@ -5,14 +5,14 @@ slug: /commands/delete-from-list
displayed_sidebar: docs
---
-**DELETE FROM LIST** ( {* ;} *lista* ; refElem | * {; *} )
+**DELETE FROM LIST** ( * ; *list* : Text ; *itemRef* : Integer, Operator {; *} )
**DELETE FROM LIST** ( *list* : Integer ; *itemRef* : Integer, Operator {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| * | Operator | → | Se especificada, apaga as sub-listas (se existem) da memória Se omitida, as sub-listas (se existem) não são apagadas |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| * | Operator | → | Se especificada, apaga as sub-listas (se existem) da memória Se omitida, as sub-listas (se existem) não são apagadas |
@@ -48,6 +48,6 @@ O código a seguir apaga o elemento selecionado da lista *hList*. Se o elemento
| | |
| --- | --- |
| Número do comando | 624 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
index 81990f8e6f679a..22b35fbeee45ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-index.md
@@ -5,12 +5,12 @@ slug: /commands/delete-index
displayed_sidebar: docs
---
-**DELETE INDEX** ( *pontCampo* {; *} )
**DELETE INDEX** ( *nomeIndice* {; *} )
+**DELETE INDEX** ( *pontCampo* : Ponteiro, String {; *} )
**DELETE INDEX** ( *nomeIndice* : Ponteiro, String {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pontCampo|nomeIndice | Ponteiro, String | → | Ponteiro ao campo cujos índices serão apagados ou Nome do Índice que será apagado. |
-| * | Operador | → | Se passado = operação assincrônica |
+| pontCampo|nomeIndice | Ponteiro, String | → | Ponteiro ao campo cujos índices serão apagados ou Nome do Índice que será apagado. |
+| * | Operador | → | Se passado = operação assincrônica |
@@ -51,6 +51,6 @@ Este exemplo ilustra as duas sintaxes do comando:
| | |
| --- | --- |
| Número do comando | 967 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
index fc57389b0bf99b..563bf894b51c5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/delete-menu-item
displayed_sidebar: docs
---
-**DELETE MENU ITEM** ( *menu* ; *menuItem* {; *processo*} )
+**DELETE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência do processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência do processo |
@@ -39,7 +39,7 @@ Se omite o parâmetro *processo*, DELETE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 413 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
index 68cad0872cabdb..12d995d305bb77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-record.md
@@ -5,11 +5,11 @@ slug: /commands/delete-record
displayed_sidebar: docs
---
-**DELETE RECORD** {( *tabela* )}
+**DELETE RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual o registro atual será apagado, ou tabela Padrão, se omitido |
+| tabela | Table | → | Tabela na qual o registro atual será apagado, ou tabela Padrão, se omitido |
@@ -48,7 +48,7 @@ O exemplo apaga um registro de um empregado. O código pergunta ao usuário o n
| | |
| --- | --- |
| Número do comando | 58 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
index 5587dd98d88b8b..30fbd47b2ad320 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-selection.md
@@ -5,11 +5,11 @@ slug: /commands/delete-selection
displayed_sidebar: docs
---
-**DELETE SELECTION** {( *tabela* )}
+**DELETE SELECTION** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a qual apagar a seleção atual, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela a qual apagar a seleção atual, ou tabela padrão, se omitido |
@@ -68,7 +68,7 @@ Se for encontrado um registro bloqueado durante a execução de DELETE SELECTION
| | |
| --- | --- |
| Número do comando | 66 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
index c6afbef87d1772..4e276dab444470 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-string.md
@@ -5,13 +5,13 @@ slug: /commands/delete-string
displayed_sidebar: docs
---
-**Delete string** ( *fonte* ; *posiçao* ; *numCaracteres* ) : Text
+**Delete string** ( *fonte* : Text ; *posiçao* : Integer ; *numCaracteres* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Text | → | Cadeia da qual vai apagar caracteres |
-| posiçao | Integer | → | Primeiro caractere a apagar |
-| numCaracteres | Integer | → | Número de caracteres a apagar |
+| fonte | Text | → | Cadeia da qual vai apagar caracteres |
+| posiçao | Integer | → | Primeiro caractere a apagar |
+| numCaracteres | Integer | → | Número de caracteres a apagar |
| Resultado | Text | ← | Cadeia resultante |
@@ -50,6 +50,6 @@ O exemplo abaixo ilustra o uso de Delete string. Os resultados são atribuídos
| | |
| --- | --- |
| Número do comando | 232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
index 4f605058d83448..7b8eb3a5676117 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/delete-user.md
@@ -5,11 +5,11 @@ slug: /commands/delete-user
displayed_sidebar: docs
---
-**DELETE USER** ( *refUsuario* )
+**DELETE USER** ( *refUsuario* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de ID de usuário a apagar |
+| refUsuario | Integer | → | Número de ID de usuário a apagar |
@@ -39,7 +39,7 @@ Se não tiver os privilégios de acesso para chamar DELETE USER ou se outro proc
| | |
| --- | --- |
| Número do comando | 615 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
index 74169651eb379b..f444496cdd1e38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/describe-query-execution.md
@@ -5,11 +5,11 @@ slug: /commands/describe-query-execution
displayed_sidebar: docs
---
-**DESCRIBE QUERY EXECUTION** ( *estado* )
+**DESCRIBE QUERY EXECUTION** ( *estado* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| estado | Boolean | → | True=Ativar análises de pesquisas internas, False=Desativar o análises de pesquisas internas |
+| estado | Boolean | → | True=Ativar análises de pesquisas internas, False=Desativar o análises de pesquisas internas |
@@ -72,6 +72,6 @@ $vResultPath :
| | |
| --- | --- |
| Número do comando | 1044 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
index 394f75f713293a..a29e2d3426d2b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/difference.md
@@ -5,13 +5,13 @@ slug: /commands/difference
displayed_sidebar: docs
---
-**DIFFERENCE** ( *conjunto1* ; *conjunto2* ; *conjuntoResultado* )
+**DIFFERENCE** ( *conjunto1* : Text ; *conjunto2* : Text ; *conjuntoResultado* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Conjunto |
-| conjunto2 | Text | → | Conjunto que será subtraído |
-| conjuntoResultado | Text | → | Conjunto Resultado |
+| conjunto1 | Text | → | Conjunto |
+| conjunto2 | Text | → | Conjunto que será subtraído |
+| conjuntoResultado | Text | → | Conjunto Resultado |
@@ -60,6 +60,6 @@ Ao final da lista de registros há um botão com um método de objeto. O método
| | |
| --- | --- |
| Número do comando | 122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
index 7f0c87d99cd523..8ead77ba2429f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/disable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/disable-menu-item
displayed_sidebar: docs
---
-**DISABLE MENU ITEM** ( *menu* ; *menuItem* {; *processo*} )
+**DISABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência do processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência do processo |
@@ -36,7 +36,7 @@ Se o parâmetro *menuItem* designa um submenu hierárquico, todos os elementos d
| | |
| --- | --- |
| Número do comando | 150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
index f4c87de62af72a..b0d44a2ea781eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Os archivos chave (arquivos de extensão ".4DKeyChain") devem ser armazenados no
| | |
| --- | --- |
| Número do comando | 1639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
index 097784272de961..6c6f7f4194f5fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-notification.md
@@ -5,13 +5,13 @@ slug: /commands/display-notification
displayed_sidebar: docs
---
-**DISPLAY NOTIFICATION** ( *titulo* ; *texto* {; *duraçao*} )
+**DISPLAY NOTIFICATION** ( *titulo* : Text ; *texto* : Text {; *duraçao* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| titulo | Text | → | Título da notificação |
-| texto | Text | → | Texto da notificação |
-| duraçao | Integer | → | Duração da exibição em segundos |
+| titulo | Text | → | Título da notificação |
+| texto | Text | → | Texto da notificação |
+| duraçao | Integer | → | Duração da exibição em segundos |
@@ -46,6 +46,6 @@ Sob Windows, é mostrada a janela da mensagem se não se detecta atividade na m
| | |
| --- | --- |
| Número do comando | 910 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
index e39cabe9d2c1d0..d69b39b22842f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-record.md
@@ -5,11 +5,11 @@ slug: /commands/display-record
displayed_sidebar: docs
---
-**DISPLAY RECORD** {( *tabela* )}
+**DISPLAY RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para qual exibir o registro atual, ou tabela Padrão, se omitido |
+| tabela | Table | → | Tabela para qual exibir o registro atual, ou tabela Padrão, se omitido |
@@ -46,6 +46,6 @@ O exemplo a seguir mostra uma série de registros como uma apresentação de sli
| | |
| --- | --- |
| Número do comando | 105 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
index c38da8f214a121..a8f3a8c1e747e1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/display-selection.md
@@ -5,15 +5,16 @@ slug: /commands/display-selection
displayed_sidebar: docs
---
-**DISPLAY SELECTION** ( {*tabela*}{; *modoSelecao*}{; *entraLista*}{; *}{; *} )
+**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *})
**DISPLAY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean} ; * {; *} )
+
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a exibir, ou tabela padrão, se omitido |
-| modoSelecao | Integer | → | Modo de Seleção |
-| entraLista | Boolean | → | Autorizar Entrada na lista de opção |
-| * | Operator | → | Utilizar o formulário de saída em caso de seleção de somente um registro e ocultar as barras de deslocamento no formulário de entrada |
-| * | Operator | → | Mostrar as barras de deslocamento no formulário de entrada (anular o segundo efeito do primeiro parâmetro *) |
+| tabela | Table | → | Tabela a exibir, ou tabela padrão, se omitido |
+| modoSelecao | Integer | → | Modo de Seleção |
+| entraLista | Boolean | → | Autorizar Entrada na lista de opção |
+| * | Operator | → | Utilizar o formulário de saída em caso de seleção de somente um registro e ocultar as barras de deslocamento no formulário de entrada |
+| * | Operator | → | Mostrar as barras de deslocamento no formulário de entrada (anular o segundo efeito do primeiro parâmetro *) |
@@ -107,7 +108,7 @@ Também pode utilizar outros comandos, tais como [PRINT SELECTION](print-selecti
| | |
| --- | --- |
| Número do comando | 59 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
index 4e7e8146dad6a8..6485c7a7e514f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este exemplo lhe permite aplicar uma cor alternativa em um formulário listado m
| | |
| --- | --- |
| Número do comando | 897 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
index d17ea7f3c3af6d..99bb7ca0521cc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-paths.md
@@ -5,11 +5,11 @@ slug: /commands/distinct-attribute-paths
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE PATHS** ( *campoObjeto* ; *rotaArray* )
+**DISTINCT ATTRIBUTE PATHS** ( *campoObjeto* : Field ; *rotaArray* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoObjeto | Field | → | campo objeto indexado |
+| campoObjeto | Field | → | campo objeto indexado |
| rotaArray | Text array | ← | Array que vai receber a lsita de diferentes rotas |
@@ -73,6 +73,6 @@ O array *aTPaths* obtém os elementos abaixo:
| | |
| --- | --- |
| Número do comando | 1395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
index 966937c4d9b06b..be090a493ef654 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-attribute-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-attribute-values
displayed_sidebar: docs
---
-**DISTINCT ATTRIBUTE VALUES** ( *campoObjeto* ; *rota* ; *arrayValores* )
+**DISTINCT ATTRIBUTE VALUES** ( *campoObjeto* : Field ; *rota* : Text ; *arrayValores* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoObjeto | Field | → | Campo Objeto do qual obtém a lista de valores atributo distintos |
-| rota | Text | → | Rota do atributo cujos valores distintos deseja obter. |
-| arrayValores | Text array, Integer array, Boolean array, Date array, Time array | ← | Valores distintos na rota atributo |
+| campoObjeto | Field | → | Campo Objeto do qual obtém a lista de valores atributo distintos |
+| rota | Text | → | Rota do atributo cujos valores distintos deseja obter. |
+| arrayValores | Array | ← | Valores distintos na rota atributo |
@@ -70,6 +70,6 @@ O array *aLAges* obtém os seguintes 9 elementos:
| | |
| --- | --- |
| Número do comando | 1397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
index fbd6bee17a79d0..9d061471a54919 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/distinct-values.md
@@ -5,13 +5,13 @@ slug: /commands/distinct-values
displayed_sidebar: docs
---
-**DISTINCT VALUES** ( *campo* ; *array* {; *contArray*} )
+**DISTINCT VALUES** ( *campo* : Field ; *array* : Array {; *contArray* : Integer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo ou subcampo indexável a utilizar para dados |
+| campo | Field | → | Campo ou subcampo indexável a utilizar para dados |
| array | Array | ← | Array a receber os dados do campo |
-| contArray | Integer array, Real array | ← | Array a receber o contador de cada valor |
+| contArray | Integer array | ← | Array a receber o contador de cada valor |
@@ -89,6 +89,6 @@ Para calcular as estatísticas, se quiser ordenar o número de valores distintos
| | |
| --- | --- |
| Número do comando | 339 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
index 27e2822e5f26f9..5cf8655cb6a121 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-list.md
@@ -5,13 +5,13 @@ slug: /commands/document-list
displayed_sidebar: docs
---
-**DOCUMENT LIST** ( *nomeRota* ; *documentos* {; *opções*} )
+**DOCUMENT LIST** ( *nomeRota* : Text ; *documentos* : Text array {; *opções* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeRota | Text | → | Rota de acesso ao volume, diretório ou pasta |
+| nomeRota | Text | → | Rota de acesso ao volume, diretório ou pasta |
| documentos | Text array | ← | Nomes dos documentos presentes na localização |
-| opções | Integer | → | Opções para construir lista |
+| opções | Integer | → | Opções para construir lista |
@@ -119,7 +119,7 @@ Lista de todos os documentos em modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número do comando | 474 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
index 6ba21e731b4190..39393d51f3a340 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-blob
displayed_sidebar: docs
---
-**DOCUMENT TO BLOB** ( *documento* ; *BLOB* )
+**DOCUMENT TO BLOB** ( *documento* : Text ; *BLOB* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome do documento gerado |
-| Blob | Blob | ↔ | Campo ou variável de tipo BLOB a receber o documento |
-| || | Conteúdo do documento |
+| documento | Text | → | Nome do documento gerado |
+| Blob | Blob | ↔ | Campo ou variável de tipo BLOB a receber o documento |
+| | | | Conteúdo do documento |
@@ -56,7 +56,7 @@ Em cada caso, você pode interceptar o erro usando um método de interrupção [
| | |
| --- | --- |
| Número do comando | 525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
index 31be176bc8231a..9838bd4c66ae44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/document-to-text.md
@@ -5,13 +5,13 @@ slug: /commands/document-to-text
displayed_sidebar: docs
---
-**Document to text** ( *nomeArquivo* {; *conjCaracteres* {; *modoRetorno*}} ) : Text
+**Document to text** ( *nomeArquivo* : Text {; *conjCaracteres* : Text, Integer {; *modoRetorno* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Nome do documento ou caminho ao documento |
-| conjCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
-| modoRetorno | Integer | → | Modo de processamento para as linhas de ruptura |
+| nomeArquivo | Text | → | Nome do documento ou caminho ao documento |
+| conjCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
+| modoRetorno | Integer | → | Modo de processamento para as linhas de ruptura |
| Resultado | Text | ← | Texto do documento |
@@ -83,6 +83,6 @@ Quando executa este código:
| | |
| --- | --- |
| Número do comando | 1236 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
index b94fca6fbb9779..21635e4d583b03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-child-node.md
@@ -5,13 +5,13 @@ slug: /commands/dom-append-xml-child-node
displayed_sidebar: docs
---
-**DOM Append XML child node** ( *refElemento* ; *tipoFilho* ; *valorFilho* ) : Text
+**DOM Append XML child node** ( *refElemento* : Text ; *tipoFilho* : Integer ; *valorFilho* : Text, Blob ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | elemento de referência XML |
-| tipoFilho | Integer | → | Tipo de filho a anexar |
-| valorFilho | Text, Blob | → | Texto ou variável (texto ou BLOB) cujo valor deve ser inserido como um nodo filho |
+| refElemento | Text | → | elemento de referência XML |
+| tipoFilho | Integer | → | Tipo de filho a anexar |
+| valorFilho | Text, Blob | → | Texto ou variável (texto ou BLOB) cujo valor deve ser inserido como um nodo filho |
| Resultado | Text | ← | Refência do elemento filho XML |
@@ -152,6 +152,6 @@ Se o conteúdo de *valorFilho* não é válido, se devolve um erro.
| | |
| --- | --- |
| Número do comando | 1080 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
index fe3e03691d6183..aed2ca6810c711 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-append-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-append-xml-element
displayed_sidebar: docs
---
-**DOM Append XML element** ( *refElementoTarget* ; *refElementoFonte* ) : Text
+**DOM Append XML element** ( *refElementoTarget* : Text ; *refElementoFonte* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElementoTarget | Text | → | Referência do elemento XML pai |
-| refElementoFonte | Text | → | Referência do elemento XML a anexar |
+| refElementoTarget | Text | → | Referência do elemento XML pai |
+| refElementoFonte | Text | → | Referência do elemento XML a anexar |
| Resultado | Text | ← | Referência do novo elemento XML |
@@ -34,6 +34,6 @@ Ver o exemplo do comando [DOM Insert XML element](dom-insert-xml-element.md "DOM
| | |
| --- | --- |
| Número do comando | 1082 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
index 4d5e776133e462..644ed017be7ded 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-close-xml.md
@@ -5,11 +5,11 @@ slug: /commands/dom-close-xml
displayed_sidebar: docs
---
-**DOM CLOSE XML** ( *refElemento* )
+**DOM CLOSE XML** ( *refElemento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Elemento de referência raiz XML |
+| refElemento | Text | → | Elemento de referência raiz XML |
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 722 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
index 73c5e0fe1004df..64640a166b77ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-count-xml-attributes
displayed_sidebar: docs
---
-**DOM Count XML attributes** ( *refElemento* ) : Integer
+**DOM Count XML attributes** ( *refElemento* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| Resultado | Integer | ← | Número de atributos |
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 727 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
index d4ef74d60a815c..0e16aa726d1f81 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-count-xml-elements.md
@@ -5,12 +5,12 @@ slug: /commands/dom-count-xml-elements
displayed_sidebar: docs
---
-**DOM Count XML elements** ( *refElemento* ; *nomeElemento* ) : Integer
+**DOM Count XML elements** ( *refElemento* : Text ; *nomeElemento* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| nomeElemento | Text | → | Nome do elemento XML a ser contado |
+| refElemento | Text | → | Referência de elemento XML |
+| nomeElemento | Text | → | Nome do elemento XML a ser contado |
| Resultado | Integer | ← | Número de elementos |
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 726 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
index 1a4e58bd8275e2..50566a67869f3d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element-arrays
displayed_sidebar: docs
---
-**DOM Create XML element arrays** ( *arrayNomesAtrib* ; *xRota* {; *atribNomesArray* ; *atribValoresArray*} {; *atribNomesArray2* ; *atribValoresArray2* ; ... ; *atribNomesArrayN* ; *atribValoresArrayN*} ) : Text
+**DOM Create XML element arrays** ( *arrayNomesAtrib* : Text ; *xRota* : Text {; *atribNomesArray* : Text array ; *atribValoresArray* : Text array} {; ...(*atribNomesArray* : Text array, *atribValoresArray* : Text array)} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| arrayNomesAtrib | Text | → | Array dos nomes de atributo |
-| xRota | Text | → | Caminho xRota do elemento XML a ser criado |
-| atribNomesArray | Text array | → | Array de nomes de atributo |
-| atribValoresArray | Text array | → | Array dos valores de atributos |
+| arrayNomesAtrib | Text | → | Array dos nomes de atributo |
+| xRota | Text | → | Caminho xRota do elemento XML a ser criado |
+| atribNomesArray | Text array | → | Array de nomes de atributo |
+| atribValoresArray | Text array | → | Array dos valores de atributos |
| Resultado | Text | ← | Referência do elemento XML criado |
@@ -67,6 +67,6 @@ Para isso, basta escrever:
| | |
| --- | --- |
| Número do comando | 1097 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
index 503dc18baad87a..35936fb4afe2cf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-element
displayed_sidebar: docs
---
-**DOM Create XML element** ( *refElemento* ; *xRota* {; *nomeAtrib* ; *valorAtrib*} {; *nomeAtrib2* ; *valorAtrib2* ; ... ; *nomeAtribN* ; *valorAtribN*} ) : Text
+**DOM Create XML element** ( *refElemento* : Text ; *xRota* : Text {; *nomeAtrib* : Text ; *valorAtrib* : Text, Boolean, Integer, Real, Time, Date} {; ...(*nomeAtrib* : Text, *valorAtrib* : Text, Boolean, Integer, Real, Time, Date)} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência do elemento Root XMLK |
-| xRota | Text | → | Caminho xRota do elemento XML a ser criado |
-| nomeAtrib | Text | → | Atributo a estabelecer |
-| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Novo valor de atributo |
+| refElemento | Text | → | Referência do elemento Root XMLK |
+| xRota | Text | → | Caminho xRota do elemento XML a ser criado |
+| nomeAtrib | Text | → | Atributo a estabelecer |
+| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Novo valor de atributo |
| Resultado | Text | ← | Referência do elemento XML criado |
@@ -162,7 +162,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 865 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
index 63e942ae1a70c1..2cb64ab2ed0647 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-create-xml-ref.md
@@ -5,14 +5,14 @@ slug: /commands/dom-create-xml-ref
displayed_sidebar: docs
---
-**DOM Create XML Ref** ( *raiz* {; *nomeEspaço*} {; *nSNome* ; *nSValor*} {; *nSNome2* ; *nSValor2* ; ... ; *nSNomeN* ; *nSValorN*} ) : Text
+**DOM Create XML Ref** ( *raiz* : Text {; *nomeEspaço* : Text} {; *nSNome* : Text ; *nSValor* : Text} {; ...(*nSNome* : Text, *nSValor* : Text)} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| raiz | Text | → | Nome do elemento raiz |
-| nomeEspaço | Text | → | Valor do espaço de nome (namespace) |
-| nSNome | Text | → | Nome do Namespace |
-| nSValor | Text | → | Valor do Namespace |
+| raiz | Text | → | Nome do elemento raiz |
+| nomeEspaço | Text | → | Valor do espaço de nome (namespace) |
+| nSNome | Text | → | Nome do Namespace |
+| nSValor | Text | → | Valor do Namespace |
| Resultado | Text | ← | Raiz XML do elemento referência |
@@ -104,7 +104,7 @@ Se o comando foi executado corretamente, a variável sistema Ok assume o valor 1
| | |
| --- | --- |
| Número do comando | 861 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
index 3fa9ba56b0b946..0282c35d863ede 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-file.md
@@ -5,12 +5,12 @@ slug: /commands/dom-export-to-file
displayed_sidebar: docs
---
-**DOM EXPORT TO FILE** ( *refElemento* ; *viaArquivo* )
+**DOM EXPORT TO FILE** ( *refElemento* : Text ; *viaArquivo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência do elemento Root XMLK |
-| viaArquivo | Text | → | Acesso de rota completo do arquivo |
+| refElemento | Text | → | Referência do elemento Root XMLK |
+| viaArquivo | Text | → | Acesso de rota completo do arquivo |
@@ -68,7 +68,7 @@ Se gera um erro quando:
| | |
| --- | --- |
| Número do comando | 862 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
index b9aee23f6f8dbc..bc6381b367ce62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-export-to-var.md
@@ -5,11 +5,11 @@ slug: /commands/dom-export-to-var
displayed_sidebar: docs
---
-**DOM EXPORT TO VAR** ( *refElemento* ; *vXMLVar* )
+**DOM EXPORT TO VAR** ( *refElemento* : Text ; *vXMLVar* : Text, Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência do elemento Root XMLK |
+| refElemento | Text | → | Referência do elemento Root XMLK |
| vXMLVar | Text, Blob | ← | Variável que recebe a árvore XML |
@@ -61,7 +61,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 863 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
index 5ace150093d0eb..9b70a6abeec0b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element-by-id.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element-by-id
displayed_sidebar: docs
---
-**DOM Find XML element by ID** ( *refElemento* ; *id* ) : Text
+**DOM Find XML element by ID** ( *refElemento* : Text ; *id* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| id | Text | → | Valor do atributo ID do elemento a procurar |
+| refElemento | Text | → | Referência de elemento XML |
+| id | Text | → | Valor do atributo ID do elemento a procurar |
| Resultado | Text | ← | Referência do elemento encontrado (se aplicável) |
@@ -34,7 +34,7 @@ O comando retorna como resultado a referência XML do elemento encontrado.
| | |
| --- | --- |
| Número do comando | 1010 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
index 02e80ca9778c9a..794e403e20bdad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-find-xml-element.md
@@ -5,12 +5,12 @@ slug: /commands/dom-find-xml-element
displayed_sidebar: docs
---
-**DOM Find XML element** ( *refElemento* ; *xPath* {; *arrRefElementos*} ) : Text
+**DOM Find XML element** ( *refElemento* : Text ; *xPath* : Text {; *arrRefElementos* : Text array} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| xPath | Text | → | Rota XPath do elemento a procurar |
+| refElemento | Text | → | Referência de elemento XML |
+| xPath | Text | → | Rota XPath do elemento a procurar |
| arrRefElementos | Text array | ← | Lista de referências de elementos encontradas (se aplicável) |
| Resultado | Text | ← | Referência do elemento encontrado (se aplicável) |
@@ -116,7 +116,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 864 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
index 3e407cf03c392d..3c84da4da5463b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-first-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-first-child-xml-element
displayed_sidebar: docs
---
-**DOM Get first child XML element** ( *refElemento* {; *nomElemFilho* {; *valorElemFilho*}} ) : Text
+**DOM Get first child XML element** ( *refElemento* : Text {; *nomElemFilho* : Text {; *valorElemFilho* : Text}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomElemFilho | Text | ← | Nome do elemento filho XML |
| valorElemFilho | Text | ← | Valor do elemento filho XML |
| Resultado | Text | ← | Referência do elemento filho XML |
@@ -64,7 +64,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 723 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
index 556727eb5090b3..4bd7e73cdd8442 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-last-child-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-last-child-xml-element
displayed_sidebar: docs
---
-**DOM Get last child XML element** ( *refElemento* {; *nomElemFilho* {; *valorElemFilho*}} ) : Text
+**DOM Get last child XML element** ( *refElemento* : Text {; *nomElemFilho* : Text {; *valorElemFilho* : Text}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomElemFilho | Text | ← | Nome do elemento filho |
| valorElemFilho | Text | ← | Valor do elemento filho |
| Resultado | Text | ← | Referência do elemento XML |
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 925 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
index 3348dff70c3fcf..632cbd05d0388a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-next-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get next sibling XML element** ( *refElemento* {; *nomeElemIrmao* {; *valorElemIrmao*}} ) : Text
+**DOM Get next sibling XML element** ( *refElemento* : Text {; *nomeElemIrmao* : Text {; *valorElemIrmao* : Text}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomeElemIrmao | Text | ← | Nome do elemento XML irmão |
| valorElemIrmao | Text | ← | Valor do elemento XML irmão |
| Resultado | Text | ← | Elemento de referência XML irmão |
@@ -66,7 +66,7 @@ Se o comando tiver sido executado corretamente e se o elemento analisado não fo
| | |
| --- | --- |
| Número do comando | 724 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
index b932d66d403795..6e3c97c3666f46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-parent-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-parent-xml-element
displayed_sidebar: docs
---
-**DOM Get parent XML element** ( *refElemento* {; *nomeElemPai* {; *valorElemPai*}} ) : Text
+**DOM Get parent XML element** ( *refElemento* : Text {; *nomeElemPai* : Text {; *valorElemPai* : Text}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomeElemPai | Text | ← | Nome do elemento XML pai |
| valorElemPai | Text | ← | Valor do elemento XML pai |
| Resultado | Text | ← | Referencia do elemento XML pai |
@@ -42,7 +42,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 923 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
index a769c10ee8cf7f..728105b65e0e44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-previous-sibling-xml-element
displayed_sidebar: docs
---
-**DOM Get previous sibling XML element** ( *refElemento* {; *nomeElemIrmao* {; *valorElemIrmao*}} ) : Text
+**DOM Get previous sibling XML element** ( *refElemento* : Text {; *nomeElemIrmao* : Text {; *valorElemIrmao* : Text}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomeElemIrmao | Text | ← | Nome do elemento XML irmão |
| valorElemIrmao | Text | ← | Valor do elemento XML irmão |
| Resultado | Text | ← | Elemento de referência XML irmão |
@@ -39,7 +39,7 @@ Se o comando for executado corretamente e se o elemento referenciado não for o
| | |
| --- | --- |
| Número do comando | 924 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
index 05e2804c606a0d..f9231b21f3c9f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-root-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-root-xml-element
displayed_sidebar: docs
---
-**DOM Get root XML element** ( *refElemento* ) : Text
+**DOM Get root XML element** ( *refElemento* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| Resultado | Text | ← | Referência do elemento raiz ou "" em caso de erro |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1053 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
index 22d5da927c5567..d6eb8c3daf782e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-index
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY INDEX** ( *refElemento* ; *indexAtrib* ; *nomeAtrib* ; *valorAtrib* )
+**DOM GET XML ATTRIBUTE BY INDEX** ( *refElemento* : Text ; *indexAtrib* : Integer ; *nomeAtrib* : Variable ; *valorAtrib* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| indexAtrib | Integer | → | Número de índice de atributo |
+| refElemento | Text | → | Referência de elemento XML |
+| indexAtrib | Integer | → | Número de índice de atributo |
| nomeAtrib | Variable | ← | Nome atributo |
| valorAtrib | Variable | ← | Valor atributo |
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 729 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
index 728fd0e7831367..65fe5e9de196e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-attribute-by-name
displayed_sidebar: docs
---
-**DOM GET XML ATTRIBUTE BY NAME** ( *refElemento* ; *nomeAtrib* ; *valorAtrib* )
+**DOM GET XML ATTRIBUTE BY NAME** ( *refElemento* : Text ; *nomeAtrib* : Text ; *valorAtrib* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| nomeAtrib | Text | → | Nome de atributo |
+| refElemento | Text | → | Referência de elemento XML |
+| nomeAtrib | Text | → | Nome de atributo |
| valorAtrib | Variable | ← | Valor atributo |
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 728 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
index e5ed9aa065082b..0169ff8e4763e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-child-nodes.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-child-nodes
displayed_sidebar: docs
---
-**DOM GET XML CHILD NODES** ( *elemRef* ; *arrTiposFilhos* ; *arrRefsNodos* )
+**DOM GET XML CHILD NODES** ( *elemRef* : Text ; *arrTiposFilhos* : Integer array ; *arrRefsNodos* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| elemRef | Text | → | Elemento XML de referência |
+| elemRef | Text | → | Elemento XML de referência |
| arrTiposFilhos | Integer array | ← | Tipos de nodos filhos |
| arrRefsNodos | Text array | ← | Referência ou valores dos nodos filhos |
@@ -69,6 +69,6 @@ Depois da execução destas instruções:
| | |
| --- | --- |
| Número do comando | 1081 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
index 19fb2e1e28c66d..29d7be61899397 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-document-ref.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-document-ref
displayed_sidebar: docs
---
-**DOM Get XML document ref** ( *arrayNomesAtrib* ) : Text
+**DOM Get XML document ref** ( *arrayNomesAtrib* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| arrayNomesAtrib | Text | → | Referência dos elementos existentes em árvore DOM |
+| arrayNomesAtrib | Text | → | Referência dos elementos existentes em árvore DOM |
| Resultado | Text | ← | Referência do primeiro elemento de uma árvore DOM (modo documento) |
@@ -58,6 +58,6 @@ Neste exemplo, queremos encontrar a declaração DTD do documento XML:
| | |
| --- | --- |
| Número do comando | 1088 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
index fe13eed41f4fdb..07362ed679caee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-name.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-name
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT NAME** ( *refElemento* ; *nomeElemento* )
+**DOM GET XML ELEMENT NAME** ( *refElemento* : Text ; *nomeElemento* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| nomeElemento | Variable | ← | Nome do elemento |
@@ -46,7 +46,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
index 18dc25afa0669c..af9e157511c62b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/dom-get-xml-element-value
displayed_sidebar: docs
---
-**DOM GET XML ELEMENT VALUE** ( *refElemento* ; *valorElemento* {; *cDATA*} )
+**DOM GET XML ELEMENT VALUE** ( *refElemento* : Text ; *valorElemento* : Variable {; *cDATA* : Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| valorElemento | Variable | ← | Valor do elemento |
| cDATA | Variable | ← | Conteúdo de seção CDATA |
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
index 7108c98615f512..66861601c27967 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-get-xml-element
displayed_sidebar: docs
---
-**DOM Get XML element** ( *refElemento* ; *nomeElemento* ; *index* ; *valorElemento* ) : Text
+**DOM Get XML element** ( *refElemento* : Text ; *nomeElemento* : Text ; *index* : Integer ; *valorElemento* : Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| nomeElemento | Text | → | Nome do elemento a obter |
-| index | Integer | → | Número de índice do elemento a obter |
+| refElemento | Text | → | Referência de elemento XML |
+| nomeElemento | Text | → | Nome do elemento a obter |
+| index | Integer | → | Número de índice do elemento a obter |
| valorElemento | Variable | ← | Valor do elemento |
| Resultado | Text | ← | referência XML (16 caracteres) |
@@ -39,7 +39,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 725 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
index df2dd76f6265d7..88126ea3426fda 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-get-xml-information.md
@@ -5,12 +5,12 @@ slug: /commands/dom-get-xml-information
displayed_sidebar: docs
---
-**DOM Get XML information** ( *refElemento* ; *xmlInfo* ) : Text
+**DOM Get XML information** ( *refElemento* : Text ; *xmlInfo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Elemento de referência raiz XML |
-| xmlInfo | Integer | → | Tipo de informação a conseguir |
+| refElemento | Text | → | Elemento de referência raiz XML |
+| xmlInfo | Integer | → | Tipo de informação a conseguir |
| Resultado | Text | ← | Valor da informação XML |
@@ -39,6 +39,6 @@ Em *xmlInfo*, passe um código indicando o tipo de informação a ser recuperado
| | |
| --- | --- |
| Número do comando | 721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
index 6510370087b940..d9cd2332a7eda3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-insert-xml-element.md
@@ -5,13 +5,13 @@ slug: /commands/dom-insert-xml-element
displayed_sidebar: docs
---
-**DOM Insert XML element** ( *tarfetElementRef* ; *sourceElementRef* ; *childIndex* ) : Text
+**DOM Insert XML element** ( *tarfetElementRef* : Text ; *sourceElementRef* : Text ; *childIndex* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tarfetElementRef | Text | → | Elemento de referência do pai XML |
-| sourceElementRef | Text | → | XML element reference to insert |
-| childIndex | Integer | → | Index of child of target element above which the new element must be inserted |
+| tarfetElementRef | Text | → | Elemento de referência do pai XML |
+| sourceElementRef | Text | → | XML element reference to insert |
+| childIndex | Integer | → | Index of child of target element above which the new element must be inserted |
| Resultado | Text | ← | Reference of new XML element |
@@ -84,6 +84,6 @@ Para fazer isso, simplesmente execute o código abaixo:
| | |
| --- | --- |
| Número do comando | 1083 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
index b583da8a2c589f..681e8c663ecde0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-source.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-source
displayed_sidebar: docs
---
-**DOM Parse XML source** ( *documento* {; *validaçao* {; dtd|schmea}} ) : Text
+**DOM Parse XML source** ( *documento* : Text {; *validaçao* : Boolean {; dtd|schmea}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Rota documentos |
-| validaçao | Boolean | → | True = Validação; False = sem validação |
-| dtd|schmea | Text | → | Localização do schema DTD ou XML |
+| documento | Text | → | Rota documentos |
+| validaçao | Boolean | → | True = Validação; False = sem validação |
+| dtd|schmea | Text | → | Localização do schema DTD ou XML |
| Resultado | Text | ← | Referência do elemento XML |
@@ -98,7 +98,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 719 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
index 8ab27decf8d04f..ad4c36cd35d128 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-parse-xml-variable.md
@@ -5,13 +5,13 @@ slug: /commands/dom-parse-xml-variable
displayed_sidebar: docs
---
-**DOM Parse XML variable** ( *variável* {; *validaçao* {; dtd|schema}} ) : Text
+**DOM Parse XML variable** ( *variável* : Blob, Text {; *validaçao* : Boolean {; dtd|schema}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variável | Blob, Text | → | Nome da variavel |
-| validaçao | Boolean | → | True = validação do DTD; False = sem validação |
-| dtd|schema | Text | → | Localização do DTD ou do schema XML |
+| variável | Blob, Text | → | Nome da variavel |
+| validaçao | Boolean | → | True = validação do DTD; False = sem validação |
+| dtd|schema | Text | → | Localização do DTD ou do schema XML |
| Resultado | Text | ← | Referência do elemento XML |
@@ -88,7 +88,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 720 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
index 230c57c6bec277..6ae0c269d4ed7f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-attribute.md
@@ -5,12 +5,12 @@ slug: /commands/dom-remove-xml-attribute
displayed_sidebar: docs
---
-**DOM REMOVE XML ATTRIBUTE** ( *elementoRef* ; *nomeAtrib* )
+**DOM REMOVE XML ATTRIBUTE** ( *elementoRef* : Text ; *nomeAtrib* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| elementoRef | Text | → | Elemento de referência XML |
-| nomeAtrib | Text | → | Atributo a ser removido |
+| elementoRef | Text | → | Elemento de referência XML |
+| nomeAtrib | Text | → | Atributo a ser removido |
@@ -50,7 +50,7 @@ O código abaixo permite remover o primeiro atributo "N=1":
| | |
| --- | --- |
| Número do comando | 1084 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
index 205576bb180286..78f637c1dc7d20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-remove-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/dom-remove-xml-element
displayed_sidebar: docs
---
-**DOM REMOVE XML ELEMENT** ( *refElemento* )
+**DOM REMOVE XML ELEMENT** ( *refElemento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
@@ -33,7 +33,7 @@ Um erro é gerado quando o elemento de referência for inválido
| | |
| --- | --- |
| Número do comando | 869 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
index 4a6f339182dcec..583c4dd597e10d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/dom-set-xml-attribute
displayed_sidebar: docs
---
-**DOM SET XML ATTRIBUTE** ( *refElemento* ; *nomeAtrib* ; *valorAtrib* {; *nomeAtrib2* ; *valorAtrib2* ; ... ; *nomeAtribN* ; *valorAtribN*} )
+**DOM SET XML ATTRIBUTE** ( *refElemento* : Text ; *nomeAtrib* : Text ; *valorAtrib* : Text, Boolean, Integer, Real, Time, Date {; ...(*nomeAtrib* : Text, *valorAtrib* : Text, Boolean, Integer, Real, Time, Date)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| nomeAtrib | Text | → | Atributo a estabelecer |
-| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Novo valor de atributo |
+| refElemento | Text | → | Referência de elemento XML |
+| nomeAtrib | Text | → | Atributo a estabelecer |
+| valorAtrib | Text, Boolean, Integer, Real, Time, Date | → | Novo valor de atributo |
@@ -73,7 +73,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 866 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
index 9a7e164cb6b885..69f06ea9dc300d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-declaration
displayed_sidebar: docs
---
-**DOM SET XML DECLARATION** ( *refElemento* ; *codificaçao* {; *autonomo* {; *recuo*}} )
+**DOM SET XML DECLARATION** ( *refElemento* : Text ; *codificaçao* : Text {; *autonomo* : Boolean {; *recuo* : Boolean}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| codificaçao | Text | → | Conjunto de caracteres usado no documento XML |
-| autonomo | Boolean | → | True=documento é autônomo; False (padrão) = documento não é autônomo |
-| recuo | Boolean | → | ***Obsoleto, não usar*** |
+| refElemento | Text | → | Referência de elemento XML |
+| codificaçao | Text | → | Conjunto de caracteres usado no documento XML |
+| autonomo | Boolean | → | True=documento é autônomo; False (padrão) = documento não é autônomo |
+| recuo | Boolean | → | ***Obsoleto, não usar*** |
@@ -43,6 +43,6 @@ O exemplo define a codificação a utilizar e a opção autônoma do elemento *e
| | |
| --- | --- |
| Número do comando | 859 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
index 23f289999f77b4..193ddcc32c1ea4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-name.md
@@ -5,12 +5,12 @@ slug: /commands/dom-set-xml-element-name
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT NAME** ( *refElemento* ; *nomeElemento* )
+**DOM SET XML ELEMENT NAME** ( *refElemento* : Text ; *nomeElemento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| nomeElemento | Text | → | Novo nome do elemento |
+| refElemento | Text | → | Referência de elemento XML |
+| nomeElemento | Text | → | Novo nome do elemento |
@@ -64,7 +64,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 867 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
index 3efdc5641ab700..e02f3ed0d4d85b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dom-set-xml-element-value.md
@@ -5,14 +5,14 @@ slug: /commands/dom-set-xml-element-value
displayed_sidebar: docs
---
-**DOM SET XML ELEMENT VALUE** ( *refElemento* {; *xRota*}; *valorElemento* {; *} )
+**DOM SET XML ELEMENT VALUE** ( *refElemento* : Text {; *xRota* : Text}; *valorElemento* : Text, Variable {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
-| xRota | Text | → | Rota do xRota do elemento XML |
-| valorElemento | Text, Variable | → | Novo valor do elemento |
-| * | Operador | → | Se passado: estabelece o valor em CDATA |
+| refElemento | Text | → | Referência de elemento XML |
+| xRota | Text | → | Rota do xRota do elemento XML |
+| valorElemento | Text, Variable | → | Novo valor do elemento |
+| * | Operador | → | Se passado: estabelece o valor em CDATA |
@@ -125,7 +125,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 868 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
index 14fc23b32421d4..f55cd256266347 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drag-window.md
@@ -59,6 +59,6 @@ Depois pode arrastar a janela clicando em qualquer das margens.
| | |
| --- | --- |
| Número do comando | 452 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
index 7eb200549adcba..997b5e931dc651 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-position.md
@@ -5,7 +5,7 @@ slug: /commands/drop-position
displayed_sidebar: docs
---
-**Drop position** {( colNum|posYimagem )} : Integer
+**Drop position** ( colNum|posYimagem ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -99,6 +99,6 @@ O método de objeto de list box da esquerda (destino) contém o código abaixo:
| | |
| --- | --- |
| Número do comando | 608 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
index 588bedea4758b2..733a7ac9607b91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/drop-remote-user.md
@@ -5,11 +5,11 @@ slug: /commands/drop-remote-user
displayed_sidebar: docs
---
-**DROP REMOTE USER** ( *sessaoUsuario* )
+**DROP REMOTE USER** ( *sessaoUsuario* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| sessaoUsuario | Text | → | ID de sessão do usuário |
+| sessaoUsuario | Text | → | ID de sessão do usuário |
@@ -49,6 +49,6 @@ Se quiser eliminar um usu\[ario remoto específico:
| | |
| --- | --- |
| Número do comando | 1633 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
index e07914aa73884c..aa05fde59e2ae7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/duplicate-record.md
@@ -5,11 +5,11 @@ slug: /commands/duplicate-record
displayed_sidebar: docs
---
-**DUPLICATE RECORD** {( *tabela* )}
+**DUPLICATE RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual vai duplicar o registro atual, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela da qual vai duplicar o registro atual, ou tabela padrão, se omitido |
@@ -30,7 +30,7 @@ DUPLICATE RECORD pode ser executado durante a entrada de dados. Isso permite dup
| | |
| --- | --- |
| Número do comando | 225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
index 5e9872983e2c11..f8deeafeeaf2bc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/dynamic-pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/dynamic-pop-up-menu
displayed_sidebar: docs
---
-**Dynamic pop up menu** ( *menu* {; *porpadrao* {; *coordX* ; *coordY*}} ) : Text
+**Dynamic pop up menu** ( *menu* : Text {; *porpadrao* : Text {; *coordX* : Integer ; *coordY* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Text | → | Referência de menu |
-| porpadrao | Text | → | Parâmetro de itens selecionado por padrão |
-| coordX | Integer | → | Coordenada X do canto esquerdo superior |
-| coordY | Integer | → | Coordenada Y do canto esquerdo superior |
+| menu | Text | → | Referência de menu |
+| porpadrao | Text | → | Parâmetro de itens selecionado por padrão |
+| coordX | Integer | → | Coordenada X do canto esquerdo superior |
+| coordY | Integer | → | Coordenada Y do canto esquerdo superior |
| Resultado | Text | ← | Parâmetro do menu de item selecionado |
@@ -97,6 +97,6 @@ Este código permite criar um menu emergente dinâmico hierárquico baseado em a
| | |
| --- | --- |
| Número do comando | 1006 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
index 2ee9fbf19b6237..5fed7724f275c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ O exemplo abaixo mostra ao usuário a janela de gestão de usuários e grupos:
| | |
| --- | --- |
| Número do comando | 281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
index 597b913b30901f..b088f5e9276f64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-formula.md
@@ -5,13 +5,12 @@ slug: /commands/edit-formula
displayed_sidebar: docs
---
-**EDIT FORMULA** ( *tabela* ; *formula* )
+**EDIT FORMULA** ( *tabela* : Table ; *formula* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a mostrar por padrão no editor de fórmulas |
-| formula | Text | → | Variável que contem a fórmula a mostrar no editor de fórmulas ou "" somente para mostrar o editor |
-| ← | Fórmula validada pelo usuário |
+| tabela | Table | → | Tabela a mostrar por padrão no editor de fórmulas |
+| formula | Text | ↔ | *in:* Variable containing the formula to display in the Formula editor or "" to display editor only
*out:* Formula validated by the user |
@@ -59,7 +58,7 @@ Se o usuário valida a caixa de diálogo, a variável de sistema OK toma o valor
| | |
| --- | --- |
| Número do comando | 806 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
index e209ac0bcd6bc7..cc550206c25bce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/edit-item.md
@@ -5,13 +5,13 @@ slug: /commands/edit-item
displayed_sidebar: docs
---
-**EDIT ITEM** ( {* ;} *objeto* {; *item*} )
+**EDIT ITEM** ( * ; *objeto* : Text {; *item* : Integer} )
**EDIT ITEM** ( *objeto* : Field, Variable {; *item* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Tabela ou Variável (se * é omitido) |
-| item | Integer | → | Número do item |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Tabela ou Variável (se * é omitido) |
+| item | Integer | → | Número do item |
@@ -79,6 +79,6 @@ Dadas duas colunas em una list box onde os nomes das variáveis são “Array1
| | |
| --- | --- |
| Número do comando | 870 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
index cc8274d3ba2d6a..7687c796243989 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/enable-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/enable-menu-item
displayed_sidebar: docs
---
-**ENABLE MENU ITEM** ( *menu* ; *menuItem* {; *processo*} )
+**ENABLE MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número do item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número do item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência de processo |
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, ENABLE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
index 2eab0b0d583687..2c695d8e5d8178 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-blob.md
@@ -5,14 +5,14 @@ slug: /commands/encrypt-blob
displayed_sidebar: docs
---
-**ENCRYPT BLOB** ( *toEncrypt* ; *sendPrivKey* {; *recipPubKey*} )
+**ENCRYPT BLOB** ( *toEncrypt* : Blob ; *sendPrivKey* : Blob {; *recipPubKey* : Blob} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| toEncrypt | Blob | ↔ | Dados a encriptar |
-||| | Dados encriptados |
-| sendPrivKey | Blob | → | Chave privada do emissor |
-| recipPubKey | Blob | → | Chave pública do receptor |
+| toEncrypt | Blob | ↔ | Dados a encriptar |
+| | | | Dados encriptados |
+| sendPrivKey | Blob | → | Chave privada do emissor |
+| recipPubKey | Blob | → | Chave pública do receptor |
@@ -191,6 +191,6 @@ A empresa quer usar a Internet para trocar informações. Cada filial recebe inf
| | |
| --- | --- |
| Número do comando | 689 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
index 9f6a148f853aa3..22eceb308cdd6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-blob.md
@@ -5,13 +5,13 @@ slug: /commands/encrypt-data-blob
displayed_sidebar: docs
---
-**Encrypt data BLOB** ( *blobAcriptografar* ; objetoChave / passefrase ; *salt* ; blobCriptografado' ) : Boolean
+**Encrypt data BLOB** ( *blobAcriptografar* : Blob ; objetoChave / passefrase ; *salt* : Integer ; blobCriptografado' ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| blobAcriptografar | Blob | → | BLOB que vai criptografar |
-| objetoChave / passefrase | Objeto, Texto | → | Objeto JSON que contém a chave de criptografia ou passefrase para geração de uma chave de criptografia direta (texto) |
-| salt | Integer | → | Sal de criptografia (para adicionar dados aleatórios) para maior segurança do algoritmo |
+| blobAcriptografar | Blob | → | BLOB que vai criptografar |
+| objetoChave / passefrase | Objeto, Texto | → | Objeto JSON que contém a chave de criptografia ou passefrase para geração de uma chave de criptografia direta (texto) |
+| salt | Integer | → | Sal de criptografia (para adicionar dados aleatórios) para maior segurança do algoritmo |
| blobCriptografado' | BLOB | ← | BLOB que foi criptografado |
| Resultado | Boolean | ← | TRUE se a criptografia for realizada corretamente, senão FALSE |
@@ -65,6 +65,6 @@ Para criptografar um arquivo texto na pasta RESOURCES no banco de dados:
| | |
| --- | --- |
| Número do comando | 1773 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
index dd39d8305157db..12475d6923c896 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/encrypt-data-file.md
@@ -5,16 +5,16 @@ slug: /commands/encrypt-data-file
displayed_sidebar: docs
---
-**Encrypt data file** ( *rotaEstrutura* ; *rotaDados* {; novaFrasePasse/novaChave {; *arqPasta* {; atualFrasePasse/atualChave {; *nomeMetodo*}}}} ) : Text
+**Encrypt data file** ( *rotaEstrutura* : Text ; *rotaDados* : Text {; novaFrasePasse/novaChave {; *arqPasta* : Text {; atualFrasePasse/atualChave {; *nomeMetodo* : Text}}}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaEstrutura | Text | → | Rota para o arquivo estrutura |
-| rotaDados | Text | → | Rota de arquivo de dados a criptografar |
-| novaFrasePasse/novaChave | Texto, Objeto | → | Em caso de mudança: novaFrasePasse (texto) ou nova chave de Criptografia (objeto) |
-| arqPasta | Text | → | Rota da pasta onde os arquivos originais estão armazenados |
-| atualFrasePasse/atualChave | Texto, Objeto | → | frase Passe atual (texto) ou chave de criptografia atual (objeto) |
-| nomeMetodo | Text | → | Nome de método de chamada 4D |
+| rotaEstrutura | Text | → | Rota para o arquivo estrutura |
+| rotaDados | Text | → | Rota de arquivo de dados a criptografar |
+| novaFrasePasse/novaChave | Texto, Objeto | → | Em caso de mudança: novaFrasePasse (texto) ou nova chave de Criptografia (objeto) |
+| arqPasta | Text | → | Rota da pasta onde os arquivos originais estão armazenados |
+| atualFrasePasse/atualChave | Texto, Objeto | → | frase Passe atual (texto) ou chave de criptografia atual (objeto) |
+| nomeMetodo | Text | → | Nome de método de chamada 4D |
| Resultado | Text | ← | Rota completa de pasta onde os arquivos originais estão armazenados |
@@ -137,6 +137,6 @@ Re-encriptar um arquivo de dados criptografado com a chave atual (por exemplo, q
| | |
| --- | --- |
| Número do comando | 1610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
index 1cfb09b0fd0fe8..6fa98107c5ba77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-selection.md
@@ -5,11 +5,11 @@ slug: /commands/end-selection
displayed_sidebar: docs
---
-**End selection** {( *tabela* )} : Boolean
+**End selection** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual provar se o ponteiro do registro está além do último registro selecionado, ou Tabela por padrão, se omitida |
+| tabela | Table | → | Tabela na qual provar se o ponteiro do registro está além do último registro selecionado, ou Tabela por padrão, se omitida |
| Resultado | Boolean | ← | Sim (TRUE) ou Não (FALSE) |
@@ -66,6 +66,6 @@ Este método de formulário é utilizado durante a impressão de um relatório.
| | |
| --- | --- |
| Número do comando | 36 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
index d88b780267e29a..aa6b9b56e5ab86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Uma sequência de instruções SQL deve estar rodeada pelas palavras chaves [Beg
| | |
| --- | --- |
| Número do comando | 949 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
index 7b5c29da9d3f60..976ac5fbab54f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/equal-pictures.md
@@ -5,12 +5,12 @@ slug: /commands/equal-pictures
displayed_sidebar: docs
---
-**Equal pictures** ( *imagem1* ; *imagem2* ; *mascara* ) : Boolean
+**Equal pictures** ( *imagem1* : Picture, Picture ; *imagem2* : Picture, Picture ; *mascara* : Picture, Picture ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem1 | Picture, Picture | → | Imagem fonte original |
-| imagem2 | Picture, Picture | → | Imagem a comparar |
+| imagem1 | Picture, Picture | → | Imagem fonte original |
+| imagem2 | Picture, Picture | → | Imagem a comparar |
| mascara | Picture, Picture | ← | Máscara resultante |
| resultado | Boolean | ← | True se ambas imagens são idênticas; caso contrário, False |
@@ -48,7 +48,7 @@ Este é o código do botão **Compare**:
| | |
| --- | --- |
| Número do comando | 1196 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
index 364ecb4b58bf27..5525c33ef42576 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/erase-window.md
@@ -5,11 +5,11 @@ slug: /commands/erase-window
displayed_sidebar: docs
---
-**ERASE WINDOW** {( *janela* )}
+**ERASE WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW , que apaga o conteúdo de uma janela, com [CLOSE WINDO
| | |
| --- | --- |
| Número do comando | 160 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
index d091d531915c78..87f3fdbf07bd36 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/euro-converter.md
@@ -5,13 +5,13 @@ slug: /commands/euro-converter
displayed_sidebar: docs
---
-**Euro converter** ( *valor* ; *deMoeda* ; *paraMoeda* ) : Real
+**Euro converter** ( *valor* : Real ; *deMoeda* : Text ; *paraMoeda* : Text ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| valor | Real | → | Valor a converter |
-| deMoeda | Text | → | Código da moeda na qual o valor é expresso |
-| paraMoeda | Text | → | Código da moeda para o qual o valor será convertido |
+| valor | Real | → | Valor a converter |
+| deMoeda | Text | → | Código da moeda na qual o valor é expresso |
+| paraMoeda | Text | → | Código da moeda para o qual o valor será convertido |
| Resultado | Real | ← | Valor convertido |
@@ -85,6 +85,6 @@ Estes são alguns exemplos de conversões que podem ser realizadas com este coma
| | |
| --- | --- |
| Número do comando | 676 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
index 4102addacef01a..00b196e4a3c0d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-formula.md
@@ -5,11 +5,11 @@ slug: /commands/execute-formula
displayed_sidebar: docs
---
-**EXECUTE FORMULA** ( *instruçao* )
+**EXECUTE FORMULA** ( *instruçao* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| instruçao | Text | → | Código a executar |
+| instruçao | Text | → | Código a executar |
@@ -69,6 +69,6 @@ Se quiser executar instruções usando chamadas para comandos 4D e tabelas. Já
| | |
| --- | --- |
| Número do comando | 63 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
index 1c26533b84f2c1..edab1e83a96245 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method-in-subform.md
@@ -5,15 +5,15 @@ slug: /commands/execute-method-in-subform
displayed_sidebar: docs
---
-**EXECUTE METHOD IN SUBFORM** ( *objetoSubForm* ; *nomeMetodo* {; *retorno* {; *param*} {; *param2* ; ... ; *paramN*}} )
+**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; *return* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD IN SUBFORM** ( *subformObject* : Text ; *formula* : Object, Text ; * {; ...*param* : Expression} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objetoSubForm | Text | → | Nome de objeto subformulário |
-| nomeMetodo | Object, Text | → | Nome do projeto de método a ser executado |
-| retorno | *, Variable | → | * Se método não retornar um valor |
-| ← | Valor retornado pelo método |
-| param | Expression | → | Parâmetros a passar ao método |
+| objetoSubForm | Text | → | Nome de objeto subformulário |
+| nomeMetodo | Object, Text | → | Nome do projeto de método a ser executado |
+| retorno | Variable | ← | Value returned by formula (if any) |
+| \* | Operator | → | Formula does not return a value |
+| param | Expression | → | Parâmetros a passar ao método |
@@ -81,7 +81,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1085 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
index bb08b4e45c9ff4..bd30f55f36c257 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-method.md
@@ -5,13 +5,13 @@ slug: /commands/execute-method
displayed_sidebar: docs
---
-**EXECUTE METHOD** ( *nomeMetodo* {; *resultado* {; *param*}}{; *param2* ; ... ; *paramN*} )
+**EXECUTE METHOD** ( *methodName* : Text ; *result* : Variable {; ...*param* : Expression} )
**EXECUTE METHOD** ( *methodName* : Text ; * {; ...*param* : Expression} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeMetodo | Text | → | Nome do método de projeto a ser executado |
-| resultado | Variable, * | ← | Variável que recebe o método de resultado ou * por um método não retornando um resultado |
-| param | Expression | → | Parâmetros do método |
+| nomeMetodo | Text | → | Nome do método de projeto a ser executado |
+| resultado | Variable, Operator | ← | Variável que recebe o método de resultado ou * por um método não retornando um resultado |
+| param | Expression | → | Parâmetros do método |
@@ -38,7 +38,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1007 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
index 3446f299d400fb..5bc119b70fbb03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-client.md
@@ -5,13 +5,13 @@ slug: /commands/execute-on-client
displayed_sidebar: docs
---
-**EXECUTE ON CLIENT** ( *nomeCliente* ; *nomeMetodo* {; *param*}{; *param2* ; ... ; *paramN*} )
+**EXECUTE ON CLIENT** ( *nomeCliente* : Text ; *nomeMetodo* : Text {; *...param* : any} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeCliente | Text | → | Nome da sessão 4D Client |
-| nomeMetodo | Text | → | Nome do método a ser executado |
-| param | → | Parâmetro(s) do método |
+| nomeCliente | Text | → | Nome da sessão 4D Client |
+| nomeMetodo | Text | → | Nome do método a ser executado |
+| param | any | → | Method’s parameter(s) |
@@ -67,7 +67,7 @@ A variável do sistema **OK é** igual a 1 se o 4D Server recebeu corretamente o
| | |
| --- | --- |
| Número do comando | 651 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
index bb71bd0fa7d88b..6e9c6c90c55f8e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/execute-on-server.md
@@ -5,15 +5,15 @@ slug: /commands/execute-on-server
displayed_sidebar: docs
---
-**Execute on server** ( *proced* ; *pilha* {; *nome* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**Execute on server** ( *proced* : Text ; *pilha* : Integer {; *nome* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| proced | Text | → | Procedimento a executar no processo |
-| pilha | Integer | → | Tamanho da pilha em bytes |
-| nome | Text | → | Nome do processo criado |
-| param | Expression | → | Parâmetro(s) do procedimento |
-| * | Operador | → | Processo único |
+| proced | Text | → | Procedimento a executar no processo |
+| pilha | Integer | → | Tamanho da pilha em bytes |
+| nome | Text | → | Nome do processo criado |
+| param | Expression | → | Parâmetro(s) do procedimento |
+| * | Operador | → | Processo único |
| Resultado | Integer | ← | Número de processo para o processo criado recentemente ou de um processo que está sendo executado |
@@ -202,6 +202,6 @@ Consulte a seção *Serviços baseados nos procedimentos armazenados (exemplo)*
| | |
| --- | --- |
| Número do comando | 373 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
index f5e0b5fe29c497..8de15b3745158c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/exp.md
@@ -5,11 +5,11 @@ slug: /commands/exp
displayed_sidebar: docs
---
-**Exp** ( *numero* ) : Real
+**Exp** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Expoente n da exponenciação e^n |
+| numero | Real | → | Expoente n da exponenciação e^n |
| Resultado | Real | ← | Número neperiano (e=2,718...) elevado a n |
@@ -37,6 +37,6 @@ O exemplo a seguir atribui a exponencial de 1 a *vrE* (o log de *vrE* é 1):
| | |
| --- | --- |
| Número do comando | 21 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
index 9c0b5ac26f12b5..123ed417c896fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/expand-blob.md
@@ -5,11 +5,11 @@ slug: /commands/expand-blob
displayed_sidebar: docs
---
-**EXPAND BLOB** ( *BLOB* )
+**EXPAND BLOB** ( *BLOB* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB a expandir |
+| Blob | Blob | → | BLOB a expandir |
@@ -70,7 +70,7 @@ A variável OK é definida como 1 se o BLOB foi expandido com êxito, caso contr
| | |
| --- | --- |
| Número do comando | 535 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
index 9e3982c2b12d10..fd1fdf72e8b2ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-data.md
@@ -5,14 +5,13 @@ slug: /commands/export-data
displayed_sidebar: docs
---
-**EXPORT DATA** ( *nomeArquivo* {; *projeto* {; *}} )
+**EXPORT DATA** ( *nomeArquivo* : Text {; *projeto* : Text, Blob {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Rota de acesso do arquivo a exportar |
-| projeto | Text, Blob | → | Conteúdo do projeto de exportação |
-| ← | Novo conteúdo do projeto de exportação (se for passado o parâmetro *) |
-| * | Operador | → | Visualização da caixa de diálogo de exportação e atualização do projeto |
+| nomeArquivo | Text | → | Rota de acesso do arquivo a exportar |
+| projeto | Text, Blob | ↔ | *in:* Contents of the export project
*out:* New contents of the export project (if the * parameter has been passed) |
+| * | Operador | → | Visualização da caixa de diálogo de exportação e atualização do projeto |
@@ -102,7 +101,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo padrão de abrir arqui
| | |
| --- | --- |
| Número do comando | 666 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
index a0cbe52f09e948..18b64ddd90c6a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-dif.md
@@ -5,12 +5,12 @@ slug: /commands/export-dif
displayed_sidebar: docs
---
-**EXPORT DIF** ( {*tabela* ;} *documento* )
+**EXPORT DIF** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual exportar dados, ou tabela padrão, se omitida |
-| documento | Text | → | documento DIF que recebe os dados |
+| tabela | Table | → | Tabela da qual exportar dados, ou tabela padrão, se omitida |
+| documento | Text | → | documento DIF que recebe os dados |
@@ -55,7 +55,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 84 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
index 4d6dbce9e418ad..1e1ed9eb374098 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure-file.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure-file
displayed_sidebar: docs
---
-**Export structure file** ( *rotaPasta* {; *opções*} ) : Object
+**Export structure file** ( *rotaPasta* : Text {; *opções* : Object} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaPasta | Text | → | Rota da pasta destino para arquivos projeto |
-| opções | Object | → | Opções de exportação |
+| rotaPasta | Text | → | Rota da pasta destino para arquivos projeto |
+| opções | Object | → | Opções de exportação |
| Resultado | Object | ← | Estado de validação e mensagens (se houver) |
@@ -119,6 +119,6 @@ Se quiser exportar apenas os métodos projeto e banco de dados, e um arquivo de
| | |
| --- | --- |
| Número do comando | 1565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
index e35fba4e06d4d2..c42fe485df0dd7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-structure.md
@@ -5,12 +5,12 @@ slug: /commands/export-structure
displayed_sidebar: docs
---
-**EXPORT STRUCTURE** ( *estruturaXML* {; *formato*} )
+**EXPORT STRUCTURE** ( *estruturaXML* : Text {; *formato* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| estruturaXML | Text | ← | Exportação da definição XML da estrutura de banco de dados 4D |
-| formato | Text | → | Formato de exportação: formato xml (padrão) ou formato html |
+| formato | Text | → | Formato de exportação: formato xml (padrão) ou formato html |
@@ -64,6 +64,6 @@ Se quiser exportar a estrutura atual do banco de dados em formato html:
| | |
| --- | --- |
| Número do comando | 1311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
index 8040a6e138d058..5eecafaabb4d03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/export-sylk
displayed_sidebar: docs
---
-**EXPORT SYLK** ( {*tabela* ;} *documento* )
+**EXPORT SYLK** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual exportar dados, ou tabela padrão, se omitida |
-| documento | Text | → | documento SYLK a receber os dados |
+| tabela | Table | → | Tabela da qual exportar dados, ou tabela padrão, se omitida |
+| documento | Text | → | documento SYLK a receber os dados |
@@ -55,7 +55,7 @@ OK toma el valor 1 se a exportação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 85 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
index 841d09ac761331..4d51568b31726e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/export-text.md
@@ -5,12 +5,12 @@ slug: /commands/export-text
displayed_sidebar: docs
---
-**EXPORT TEXT** ( {*tabela* ;} *documento* )
+**EXPORT TEXT** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual vai exportar dados, ou tabela Padrão, se omitida |
-| documento | Text | → | Documento texto que recebe os dados |
+| tabela | Table | → | Tabela da qual vai exportar dados, ou tabela Padrão, se omitida |
+| documento | Text | → | Documento texto que recebe os dados |
@@ -57,7 +57,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md
index deb86609ace2e8..d915c915539573 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/false.md
@@ -35,6 +35,6 @@ O exemplo atribui a variável *vbOpcoes* Falso:
| | |
| --- | --- |
| Número do comando | 215 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
index 130b1473093741..f67ba301f3315f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field-name.md
@@ -5,12 +5,12 @@ slug: /commands/field-name
displayed_sidebar: docs
---
-**Field name** ( *pontCampo* ) : Text
**Field name** ( *numTabela* ; *numCampo* ) : Text
+**Field name** ( *pontCampo* : Ponteiro, Inteiro longo ) : Text
**Field name** ( *numTabela* : Ponteiro, Inteiro longo ; *numCampo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro Campo ou número da tabela |
-| numCampo | Integer | → | Número do campo se a o número da tabela foi passado no primeiro parâmetro |
+| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro Campo ou número da tabela |
+| numCampo | Integer | → | Número do campo se a o número da tabela foi passado no primeiro parâmetro |
| Resultado | Text | ← | Nome do campo |
@@ -55,6 +55,6 @@ Este exemplo mostra um alerta. Este método passa um ponteiro a um campo:
| | |
| --- | --- |
| Número do comando | 257 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md
index 263f722305ec4c..497b91a7e6c65c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/field.md
@@ -5,27 +5,24 @@ slug: /commands/field
displayed_sidebar: docs
---
-**Field** ( *numTabela* ; *numCampo* ) -> pontCampo
-**Field** ( *pontCampo* ) -> Resultado
+**Field** ( *numTabela* ; *numCampo* ) -> Pointer
+**Field** ( *pontCampo* ) -> Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela | Integer | → | Número da tabela |
-| numCampo | Integer | → | Nº do campo |
-| pontCampo | Pointer | ← | Ponteiro do campo |
-| Field ( pontCampo ) -> Resultado |
-| Parâmetro | Tipo | Descrição |
-| pontCampo | Pointer | → | Ponteiro do campo |
-| Resultado | Integer | ← | Número do campo |
+| numTabela | Integer | → | Número da tabela |
+| numCampo | Integer | → | Nº do campo |
+| pontCampo | Pointer | → | Ponteiro do campo |
+| Resultado | Pointer, Integer | ← | Ponteiro do campo ou Nº do campo |
## Descrição
-O comando Field tem duas sintaxe:
+O comando Field tem duas sintaxe:
-* Se passa um número de tabela en *numTabela* e um número de campo en *numCampo*, Field retorna um ponteiro ao campo.
-* Se passa um ponteiro a um campo en *pontCamp*, Field retorna o número do campo.
+* Se passa um número de tabela en *numTabela* e um número de campo en *numCampo*, Field retorna um ponteiro ao campo.
+* Se passa um ponteiro a um campo en *pontCamp*, Field retorna o número do campo.
## Exemplo 1
@@ -67,6 +64,6 @@ No seguinte exemplo, a variável *numCampo* for igual ao número do campo de \[T
| | |
| --- | --- |
| Número do comando | 253 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
index a94ce375e661a2..44e54a13901bf4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Ver o exemplo do comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número do comando | 321 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
index 8255b6086893a4..ab63fd97636a53 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/filter-keystroke.md
@@ -5,11 +5,11 @@ slug: /commands/filter-keystroke
displayed_sidebar: docs
---
-**FILTER KEYSTROKE** ( *carFiltro* )
+**FILTER KEYSTROKE** ( *carFiltro* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| carFiltro | Text | → | Caracter de filtrado de tecle ou Cadeia vazia para cancelar o filtrado |
+| carFiltro | Text | → | Caracter de filtrado de tecle ou Cadeia vazia para cancelar o filtrado |
@@ -247,6 +247,6 @@ O método ObterTextoSelecionado é o seguinte:
| | |
| --- | --- |
| Número do comando | 389 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
index 9bea6a64561659..228f2cede0e6fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-array
displayed_sidebar: docs
---
-**Find in array** ( *array* ; *valor* {; *inicio*} ) : Integer
+**Find in array** ( *array* : Array ; *valor* : Expression {; *inicio* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array a buscar |
-| valor | Expression | → | Valor do mesmo tipo a ser buscado no array |
-| inicio | Integer | → | Elemento no qual se inicia a busca |
+| array | Array | → | Array a buscar |
+| valor | Expression | → | Valor do mesmo tipo a ser buscado no array |
+| inicio | Integer | → | Elemento no qual se inicia a busca |
| Resultado | Integer | ← | Número do primeiro elemento no array que corresponde ao valor |
@@ -123,6 +123,6 @@ $o1:={a10;b"xyz"}
| | |
| --- | --- |
| Número do comando | 230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
index d4e5c84a38836e..5e2aaf69da0053 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-field.md
@@ -5,13 +5,12 @@ slug: /commands/find-in-field
displayed_sidebar: docs
---
-**Find in field** ( *campoAlvo* ; *valor* ) : Integer
+**Find in field** ( *campoAlvo* : Field ; *valor* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoAlvo | Field | → | Campo Alvo no qual executar a pesquisa |
-| valor | Field, Variable | → | valor a procurar |
-| ← | valor encontrado |
+| campoAlvo | Field | → | Campo Alvo no qual executar a pesquisa |
+| valor | Field, Variable | ↔ | *in:* Value to search
*out:* Value found |
| Resultado | Integer | ← | Número do registro encontrado, ou -1 se nenhum registro for encontrado |
@@ -68,6 +67,6 @@ Tenha em conta >= permite cobrir todos os casos. De fato, a função devolve um
| | |
| --- | --- |
| Número do comando | 653 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
index 5e57a8c63b1397..7d34cd2fa8757d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-list.md
@@ -5,16 +5,16 @@ slug: /commands/find-in-list
displayed_sidebar: docs
---
-**Find in list** ( {* ;} *lista* ; *valor* ; *alcance* {; *arrayElem* {; *}} ) : Integer
+**Find in list** ( {* ;} *lista* : Integer, Text ; *valor* : Text ; *alcance* : Integer {; *arrayElem* : Integer array {; *}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| valor | Text | → | Valor a buscar |
-| alcance | Integer | → | 0=Lista principal, 1=Sub-lista |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| valor | Text | → | Valor a buscar |
+| alcance | Integer | → | 0=Lista principal, 1=Sub-lista |
| arrayElem | Integer array | ← | - Se omitido o 2do *: array de posições dos elementos encontrados - Se passado o segundo *: array de números de referência dos elementos encontrados |
-| * | Operador | → | - Se omitido: utiliza a posição dos elementos - Se passado: utiliza o número de referência dos elementos |
+| * | Operador | → | - Se omitido: utiliza a posição dos elementos - Se passado: utiliza o número de referência dos elementos |
| Resultado | Integer | ← | - Se omitido o 2do *: posição do elemento encontrado - Se passado 2do *: número de referência do elemento encontrado |
@@ -68,6 +68,6 @@ Dada a seguinte lista hierárquica:
| | |
| --- | --- |
| Número do comando | 952 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
index bf6bd08757b85b..9fbc28d8151e18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-in-sorted-array.md
@@ -5,13 +5,13 @@ slug: /commands/find-in-sorted-array
displayed_sidebar: docs
---
-**Find in sorted array** ( *array* ; *valor* ; > or < {; *posPrim* {; *posUlt*}} ) : Boolean
+**Find in sorted array** ( *array* : Array ; *valor* : Expression ; > or < {; *posPrim* : Integer {; *posUlt* : Integer}} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array para pesquisar |
-| valor | Expression | → | Valor do mesmo tipo para procurar no array |
-| > or < | Operador | → | > se o array está classificado em ordem crescente, < se ele está em ordem decrescente |
+| array | Array | → | Array para pesquisar |
+| valor | Expression | → | Valor do mesmo tipo para procurar no array |
+| > or < | Operador | → | > se o array está classificado em ordem crescente, < se ele está em ordem decrescente |
| posPrim | Integer | ← | Posição da sua primeira ocorrência se o valor for encontrado; caso contrário, a posição em que o valor deve ser inserido |
| posUlt | Integer | ← | Posição de sua última ocorrência se o valor for encontrado; caso contrário, mesmo que posPrim |
| Resultado | Boolean | ← | True se pelo menos um elemento no array corresponde ao valor, False caso contrário |
@@ -79,6 +79,6 @@ Você quer encontrar o número de ocorrências das cadeias que começam por "tes
| | |
| --- | --- |
| Número do comando | 1333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
index 0d34fcb71c9955..d943c67a2bd12d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/find-window.md
@@ -5,12 +5,12 @@ slug: /commands/find-window
displayed_sidebar: docs
---
-**Find window** ( *esquerda* ; *superior* {; *parteJanela*} ) : Integer
+**Find window** ( *esquerda* : Integer ; *superior* : Integer {; *parteJanela* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| esquerda | Integer | → | Coordenada esquerda global |
-| superior | Integer | → | Coordenada superior global |
+| esquerda | Integer | → | Coordenada esquerda global |
+| superior | Integer | → | Coordenada superior global |
| parteJanela | Integer | ← | Número de parte ID da janela |
| Resultado | Integer | ← | Número de referência de janela |
@@ -34,6 +34,6 @@ O parâmetro *parteJanela*, devolve 3 se toca a janela, caso contrário 0\. (**N
| | |
| --- | --- |
| Número do comando | 449 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
index f767161b9d7222..b531a2f744b4cc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/first-record.md
@@ -5,11 +5,11 @@ slug: /commands/first-record
displayed_sidebar: docs
---
-**FIRST RECORD** {( *tabela* )}
+**FIRST RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai mover o primeiro registro selecionado, ou a tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual vai mover o primeiro registro selecionado, ou a tabela padrão, se omitido |
@@ -40,7 +40,7 @@ O exemplo a seguir carrega o primeiro registro da tabela \[Clientes\]:
| | |
| --- | --- |
| Número do comando | 50 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
index 6697550df4d539..dbe68b252c4703 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/flush-cache.md
@@ -5,11 +5,11 @@ slug: /commands/flush-cache
displayed_sidebar: docs
---
-**FLUSH CACHE** {( tamanho|* )}
+**FLUSH CACHE** ({ tamanho|* })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tamanho|* | Real, Operador | → | *para completamente liberar a memória cache, ou números de bytes a liberar em cache |
+| tamanho|* | Real, Operador | → | *para completamente liberar a memória cache, ou números de bytes a liberar em cache |
@@ -36,6 +36,6 @@ Geralmente não precisa chamar este comando, já que 4D salva modificações de
| | |
| --- | --- |
| Número do comando | 297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
index 20d379b14c17be..5533e11f81c3aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ O exemplo abaixo é um método de objeto para um botão. O método de objeto mod
| | |
| --- | --- |
| Número do comando | 278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
index 461ce312f13c14..ca897186e3c6b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/folder-list.md
@@ -5,11 +5,11 @@ slug: /commands/folder-list
displayed_sidebar: docs
---
-**FOLDER LIST** ( *nomeRota* ; *diretorios* )
+**FOLDER LIST** ( *nomeRota* : Text ; *diretorios* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeRota | Text | → | Rota de acesso ao volume, diretório ou pasta |
+| nomeRota | Text | → | Rota de acesso ao volume, diretório ou pasta |
| diretorios | Text array | ← | Nomes dos diretórios presentes nessa localização |
@@ -32,7 +32,7 @@ Se não houver pastas na localização especificada, o comando retorna um array
| | |
| --- | --- |
| Número do comando | 473 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
index de63239968fa4f..d24903166301b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-file.md
@@ -5,12 +5,12 @@ slug: /commands/font-file
displayed_sidebar: docs
---
-**Font file** ( *fontFamily* {; *fontStyle*} ) : any
+**Font file** ( *fontFamily* : Text {; *fontStyle* : Integer} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fontFamily | Text | → | Name of font family |
-| fontStyle | Integer | → | Font style: 0=normal (default), 1=bold, 2=italic |
+| fontFamily | Text | → | Name of font family |
+| fontStyle | Integer | → | Font style: 0=normal (default), 1=bold, 2=italic |
| Resultado | Null, Object | ← | Font file object |
@@ -54,6 +54,6 @@ You want to make sure the font used in a text area is available on the user syst
| | |
| --- | --- |
| Número do comando | 1700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
index 68b76ea7d101af..dcbd4b30adcfd6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-list.md
@@ -5,12 +5,12 @@ slug: /commands/font-list
displayed_sidebar: docs
---
-**FONT LIST** ( *fontes* {; listType | *} )
+**FONT LIST** ( *fontes* : Text array {; listType | *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| fontes | Text array | ← | Array de nomes de fontes disponíveis |
-| listType | * | Inteiro longo, Operador | → | Tipo de lista de fonte a devolver ou * para devolver os nomes de fonte em macOS |
+| listType | * | Inteiro longo, Operador | → | Tipo de lista de fonte a devolver ou * para devolver os nomes de fonte em macOS |
@@ -81,6 +81,6 @@ Você quer obter uma lista de fontes recentes:
| | |
| --- | --- |
| Número do comando | 460 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
index 225dbfcb0c0f90..2bd1dc4f4e23b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/font-style-list.md
@@ -5,11 +5,11 @@ slug: /commands/font-style-list
displayed_sidebar: docs
---
-**FONT STYLE LIST** ( *familiaFonte* ; *listaEstilosFonte* ; *listaNomesFonte* )
+**FONT STYLE LIST** ( *familiaFonte* : Text ; *listaEstilosFonte* : Text array ; *listaNomesFonte* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| familiaFonte | Text | → | Nome da família da fonte |
+| familiaFonte | Text | → | Nome da família da fonte |
| listaEstilosFonte | Text array | ← | Lista de estilos de fonte suportados pela família da fonte |
| listaNomesFonte | Text array | ← | Lista de nomes completos de fontes suportadas pela família de fonte |
@@ -64,6 +64,6 @@ Se quiser selecionar estilos da familia de fontes "Verdana" (se estiver disponí
| | |
| --- | --- |
| Número do comando | 1362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
index 9a8fd4324b52a2..d6a8f133881f52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-convert-to-dynamic.md
@@ -5,12 +5,12 @@ slug: /commands/form-convert-to-dynamic
displayed_sidebar: docs
---
-**FORM Convert to dynamic** ( {*Tabela* ;} *nomeForm* ) : Object
+**FORM Convert to dynamic** ( {*Tabela* ;} *nomeForm* : Text ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela formulário |
-| nomeForm | Text | → | Nome do formulário "clássico" projeto ou tabela |
+| Table | Table | → | Tabela formulário |
+| nomeForm | Text | → | Nome do formulário "clássico" projeto ou tabela |
| Resultado | Object | ← | nomeForm é convertido a um formulário dinâmico |
@@ -65,6 +65,6 @@ Se executar o código:
| | |
| --- | --- |
| Número do comando | 1570 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
index 281626980d741d..abcf4f18583bc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Se quiser carregar uma imagem dependendo do esquema atual do formulário:
| | |
| --- | --- |
| Número do comando | 1761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
index 6bc0f9e0a59422..72bdf35017a24d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-current-page.md
@@ -5,11 +5,11 @@ slug: /commands/form-get-current-page
displayed_sidebar: docs
---
-**FORM Get current page** {( * )} : Integer
+**FORM Get current page** ( * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Retorna o número da página de subformulário atual |
+| * | Operador | → | Retorna o número da página de subformulário atual |
| Resultado | Integer | ← | Número da página de formulário exibida atualmente |
@@ -73,6 +73,6 @@ Em um formulário, se seleciona um comando de menu da barra de menu ou quando o
| | |
| --- | --- |
| Número do comando | 276 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
index dd0f865e485bfb..51102f59dc09a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-entry-order
displayed_sidebar: docs
---
-**FORM GET ENTRY ORDER** ( *objectNames* {; numPagina | * } )
+**FORM GET ENTRY ORDER** ( *objectNames* : Text array {; numPagina | * } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| objectNames | Text array | ← | Nomes de objeto ordenados por ordem de entrada |
-| numPagina | * | Inteiro longo, Operador | → | Número de página para o qual obter a ordem definida de entrada (página atual se omitida) |
+| numPagina | * | Inteiro longo, Operador | → | Número de página para o qual obter a ordem definida de entrada (página atual se omitida) |
@@ -57,6 +57,6 @@ Pode excluir certos objetos da ordem de entrada:
| | |
| --- | --- |
| Número do comando | 1469 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
index 35710ac8c6a137..ed65c2959057da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-horizontal-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-horizontal-resizing
displayed_sidebar: docs
---
-**FORM GET HORIZONTAL RESIZING** ( *resize* {; *larguraMin* {; *larguraMax*}} )
+**FORM GET HORIZONTAL RESIZING** ( *resize* : Boolean {; *larguraMin* : Integer {; *larguraMax* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1077 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
index edce296d4a2bd7..cec6c00b65763f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-names.md
@@ -5,16 +5,15 @@ slug: /commands/form-get-names
displayed_sidebar: docs
---
-**FORM GET NAMES** ( {*tabela* ;} *arrayNome* {; *filtro* {; *marcador*}}{; *} )
+**FORM GET NAMES** ( {*tabela* : Table ;} *arrayNome* : Text array {; *filtro* : Text {; *marcador* : Real}}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Referencia de tabela |
+| tabela | Table | → | Referencia de tabela |
| arrayNome | Text array | ← | Arrays de nomes de formulário |
-| filtro | Text | → | Filtro de nomes |
-| marcador | Real | → | Marcador para versão mínima a devolver |
-| ← | Novo valor |
-| * | Operador | → | Se passa = o comando é aplicado a base local quando é executado desde um componente(parâmetro ignorado fora deste contexto) |
+| filtro | Text | → | Filtro de nomes |
+| marcador | Real | ↔ | *in:* Marker for minimum version to return
*out:* New value |
+| * | Operador | → | Se passa = o comando é aplicado a base local quando é executado desde um componente(parâmetro ignorado fora deste contexto) |
@@ -71,6 +70,6 @@ Exemplos de usos típicos:
| | |
| --- | --- |
| Número do comando | 1167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
index 69a5fc540a321a..c0a880f505898d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-objects.md
@@ -5,14 +5,14 @@ slug: /commands/form-get-objects
displayed_sidebar: docs
---
-**FORM GET OBJECTS** ( *arrObjetos* {; *arrVariaveis* {; *arrPags*}} {; *opcaoPag*} )
+**FORM GET OBJECTS** ( *arrObjetos* : Text array {; *arrVariaveis* : Pointer array {; *arrPags* : Integer array}} {; *opcaoPag* : Integer, *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| arrObjetos | Text array | ← | Nome dos objetos do formulário |
| arrVariaveis | Pointer array | ← | Ponteiros a variáveis ou campos associados aos objetos |
-| arrPags | Array integer | ← | Número de página de cada objeto |
-| opcaoPag | Integer, * | → | 1=Página atual do formulário, 2=Todas as páginas, 4=Páginas herdadas
Se passar * (obsoleto) = página atual com objetos herdados |
+| arrPags | Integer array | ← | Número de página de cada objeto |
+| opcaoPag | Integer, * | → | 1=Página atual do formulário, 2=Todas as páginas, 4=Páginas herdadas
Se passar * (obsoleto) = página atual com objetos herdados |
@@ -130,6 +130,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 898 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
index 6c8fd8f8ced1d4..54b5f0b6fc8141 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-properties.md
@@ -5,12 +5,12 @@ slug: /commands/form-get-properties
displayed_sidebar: docs
---
-**FORM GET PROPERTIES** ( {*tabela* ;} *nomeForm* ; *largura* ; *altura* {; *numPags* {; *larguraFixa* {; *alturaFixa* {; *titulo*}}}} )
+**FORM GET PROPERTIES** ( {*tabela* : Table ;} *nomeForm* : Text ; *largura* : Integer ; *altura* : Integer {; *numPags* : Integer {; *larguraFixa* : Boolean {; *alturaFixa* : Boolean {; *titulo* : Text}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do formulário ou tabela por padrão, se for omitido |
-| nomeForm | Text | → | Nome do formulário |
+| tabela | Table | → | Tabela do formulário ou tabela por padrão, se for omitido |
+| nomeForm | Text | → | Nome do formulário |
| largura | Integer | ← | Largura do formulário (em pixels) |
| altura | Integer | ← | Altura do formulário (em pixels) |
| numPags | Integer | ← | Número de páginas no formulário |
@@ -47,6 +47,6 @@ O parâmetro *título* retorna o título da janela do formulário, tal como foi
| | |
| --- | --- |
| Número do comando | 674 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
index 8da1146ea7781e..5e77366e95608b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-get-vertical-resizing.md
@@ -5,7 +5,7 @@ slug: /commands/form-get-vertical-resizing
displayed_sidebar: docs
---
-**FORM GET VERTICAL RESIZING** ( *redimensao* {; *alturaMin* {; *alturaMax*}} )
+**FORM GET VERTICAL RESIZING** ( *redimensao* : Boolean {; *alturaMin* : Integer {; *alturaMax* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1078 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
index 1609277164f59e..844c56317885c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-goto-page.md
@@ -5,12 +5,12 @@ slug: /commands/form-goto-page
displayed_sidebar: docs
---
-**FORM GOTO PAGE** ( *numPag* {; *} )
+**FORM GOTO PAGE** ( *numPag* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numPag | Integer | → | Exibir página de formulário |
-| * | Operador | → | Mudar página do subformulário atual |
+| numPag | Integer | → | Exibir página de formulário |
+| * | Operador | → | Mudar página do subformulário atual |
@@ -54,6 +54,6 @@ O exemplo a seguir é um método de objeto para um botão que mostra uma página
| | |
| --- | --- |
| Número do comando | 247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
index bade255567ce07..81965e48909a1d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-screenshot.md
@@ -5,14 +5,14 @@ slug: /commands/form-screenshot
displayed_sidebar: docs
---
-**FORM SCREENSHOT** ( {{*tabela* ;} *nomeForm* ;} *imagForm* {; *pagNum*} )
+**FORM SCREENSHOT** ( {{*tabela* : Table ;} *nomeForm* : Text ;} *imagForm* : Picture {; *pagNum* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do formulário |
-| nomeForm | Text | → | Nome do formulário |
+| tabela | Table | → | Tabela do formulário |
+| nomeForm | Text | → | Nome do formulário |
| imagForm | Picture | ← | Imagem do formulário em execução se o primeiro parâmetro se omite, ou
Imagem do formulário no editor de formulários se passar um nome de formulário |
-| pagNum | Integer | → | Número de página do formulário |
+| pagNum | Integer | → | Número de página do formulário |
@@ -42,6 +42,6 @@ Automaticamente, o comando retorna uma captura de tela da página 1 do formulár
| | |
| --- | --- |
| Número do comando | 940 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
index aae870a9acfdb5..ddf3201d00e6f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-entry-order.md
@@ -5,12 +5,12 @@ slug: /commands/form-set-entry-order
displayed_sidebar: docs
---
-**FORM SET ENTRY ORDER** ( *nomeObj* {; *numPagina*} )
+**FORM SET ENTRY ORDER** ( *nomeObj* : Text array {; *numPagina* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeObj | Text array | → | Array de nomes de objeto na sua ordem de entrada esperada |
-| numPagina | Integer | → | Números de página para estabelecer a ordem de entrada (página atual se omitido) |
+| nomeObj | Text array | → | Array de nomes de objeto na sua ordem de entrada esperada |
+| numPagina | Integer | → | Números de página para estabelecer a ordem de entrada (página atual se omitido) |
@@ -59,6 +59,6 @@ Se quiser definir a ordem de entrada dos objetos no formulário baseado em seus
| | |
| --- | --- |
| Número do comando | 1468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
index 2425631f7b894a..f39b0824251722 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-horizontal-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-horizontal-resizing
displayed_sidebar: docs
---
-**FORM SET HORIZONTAL RESIZING** ( *redimensao* {; *larguraMin* {; *larguraMax*}} )
+**FORM SET HORIZONTAL RESIZING** ( *redimensao* : Boolean {; *larguraMin* : Integer {; *larguraMax* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| redimensao | Boolean | → | True: o formulário pode ser redimensionado horizontalmente; False - o formulário não pode ser redimensionado horizontalmente |
-| larguraMin | Integer | → | Melhor largura de formulário permitida (píxels) |
-| larguraMax | Integer | → | Maior largura de formulário permitida (píxels) |
+| redimensao | Boolean | → | True: o formulário pode ser redimensionado horizontalmente; False - o formulário não pode ser redimensionado horizontalmente |
+| larguraMin | Integer | → | Melhor largura de formulário permitida (píxels) |
+| larguraMax | Integer | → | Maior largura de formulário permitida (píxels) |
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 892 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
index 7530cc182df1b7..d74e19b6f34300 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-input.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-input
displayed_sidebar: docs
---
-**FORM SET INPUT** ( {*tabela* ;} *formulario* {; *formUsuario* {; *}} )
+**FORM SET INPUT** ( {*tabela* : Table ;} *formulario* : Text, Object {; *formUsuario* : Text {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai estabecer o formulário input, ou tabela Padrão, se omitido |
-| formulario | Text, Object | → | Nome do formulário para estabelecer um formulário input |
-| formUsuario | Text | → | Nome do formulário usuário para utilizar |
-| * | Operator | → | Tamanho da janela automático |
+| tabela | Table | → | Tabela para a qual vai estabecer o formulário input, ou tabela Padrão, se omitido |
+| formulario | Text, Object | → | Nome do formulário para estabelecer um formulário input |
+| formUsuario | Text | → | Nome do formulário usuário para utilizar |
+| * | Operator | → | Tamanho da janela automático |
@@ -110,6 +110,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 55 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
index 974c11333c387b..0ab27121754115 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-output.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-output
displayed_sidebar: docs
---
-**FORM SET OUTPUT** ( {*tabela* ;} *formulario* {; *formUsuario*} )
+**FORM SET OUTPUT** ( {*tabela* : Table ;} *formulario* : Text, Object {; *formUsuario* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai estabelecer o formulário output, ou tabela padrão, se omitido |
-| formulario | Text, Object | → | Nome formulário |
-| formUsuario | Text | → | Nome de formulário usuário a utilizar |
+| tabela | Table | → | Tabela para a qual vai estabelecer o formulário output, ou tabela padrão, se omitido |
+| formulario | Text, Object | → | Nome formulário |
+| formUsuario | Text | → | Nome de formulário usuário a utilizar |
@@ -75,6 +75,6 @@ Os exemplos abaixo usam a rota a um formulário json para imprimir os registros
| | |
| --- | --- |
| Número do comando | 54 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
index 15a41e8c5455eb..a392b7d91613b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-size.md
@@ -5,14 +5,14 @@ slug: /commands/form-set-size
displayed_sidebar: docs
---
-**FORM SET SIZE** ( {*objeto* ;} *horizontal* ; *vertical* {; *} )
+**FORM SET SIZE** ( {*objeto* : Text ;} *horizontal* : Integer ; *vertical* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Text | → | Nome do objeto que indica os limites do formulário |
-| horizontal | Integer | → | Se passada *: margem horizontal (píxels) Se omitida *: largo (píxels) |
-| vertical | Integer | → | Se passada *: margem vertical (píxels) Se omitida *: altura (píxels) |
-| * | Operador | → | • Se passado: agregar as margens definidas pelos parâmetros horizontal e vertical (tamanho automático ou baseado em um objeto, se passado um objeto) • Se omitido: utilizar horizontal e vertical como largura e altura do formulário |
+| objeto | Text | → | Nome do objeto que indica os limites do formulário |
+| horizontal | Integer | → | Se passada *: margem horizontal (píxels) Se omitida *: largo (píxels) |
+| vertical | Integer | → | Se passada *: margem vertical (píxels) Se omitida *: altura (píxels) |
+| * | Operador | → | • Se passado: agregar as margens definidas pelos parâmetros horizontal e vertical (tamanho automático ou baseado em um objeto, se passado um objeto) • Se omitido: utilizar horizontal e vertical como largura e altura do formulário |
@@ -127,6 +127,6 @@ O método de objeto associado com este botão é o seguinte:
| | |
| --- | --- |
| Número do comando | 891 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
index 50fb4c0d0dc7cf..21297791984831 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-set-vertical-resizing.md
@@ -5,13 +5,13 @@ slug: /commands/form-set-vertical-resizing
displayed_sidebar: docs
---
-**FORM SET VERTICAL RESIZING** ( *redimensao* {; *alturaMin* {; *alturaMax*}} )
+**FORM SET VERTICAL RESIZING** ( *redimensao* : Boolean {; *alturaMin* : Integer {; *alturaMax* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| redimensao | Boolean | → | True: o formulário pode ser redimensionado verticalmente
False: o formulário não pode ser redimensionado verticalmente |
-| alturaMin | Integer | → | Maior altura de formulário permitida (píxels) |
-| alturaMax | Integer | → | Altura máxima de formulário permitida (píxels) |
+| redimensao | Boolean | → | True: o formulário pode ser redimensionado verticalmente
False: o formulário não pode ser redimensionado verticalmente |
+| alturaMin | Integer | → | Maior altura de formulário permitida (píxels) |
+| alturaMax | Integer | → | Altura máxima de formulário permitida (píxels) |
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 893 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
index 9b839cf53bb588..7bade102b8571a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Chamar este comando é necessário quando se utiliza o comando [FORM LOAD](../co
| | |
| --- | --- |
| Número do comando | 1299 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
index 52367fdfd83a7f..3b0d982f488af6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-process.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-process
displayed_sidebar: docs
---
-**Frontmost process** {( * )} : Integer
+**Frontmost process** ( * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Número do processo para a primeira janela não flutuante |
+| * | Operador | → | Número do processo para a primeira janela não flutuante |
| Resultado | Integer | ← | Número do processo cujas janelas estão em primeiro plano |
@@ -39,6 +39,6 @@ Ver o exemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número do comando | 327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
index 6e34fc24ded10a..bc3aaeac836bd8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/frontmost-window.md
@@ -5,11 +5,11 @@ slug: /commands/frontmost-window
displayed_sidebar: docs
---
-**Frontmost window** {( * )} : Integer
+**Frontmost window** ( * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, considere janela flutuante, se omitido, ignore janela flutuante |
+| * | Operador | → | Se especificado, considere janela flutuante, se omitido, ignore janela flutuante |
| Resultado | Integer | ← | Número de referência de janela |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 447 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
index 5cc373106ee7e1..45dc0ba3849b68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-certificate-request.md
@@ -5,14 +5,14 @@ slug: /commands/generate-certificate-request
displayed_sidebar: docs
---
-**GENERATE CERTIFICATE REQUEST** ( *chavPriv* ; *peticaoCertificado* ; *codigoArray* ; *arrayNome* )
+**GENERATE CERTIFICATE REQUEST** ( *chavPriv* : Blob ; *peticaoCertificado* : Blob ; *codigoArray* : Integer array ; *arrayNome* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| chavPriv | Blob | → | BLOB que contém a chave privada |
+| chavPriv | Blob | → | BLOB que contém a chave privada |
| peticaoCertificado | Blob | ← | BLOB que recebe o pedido de certificação |
-| codigoArray | Integer array | → | informação da lista de código |
-| arrayNome | Text array | → | Lista de nomes |
+| codigoArray | Integer array | → | informação da lista de código |
+| arrayNome | Text array | → | Lista de nomes |
@@ -92,6 +92,6 @@ Este es o método do botão **Gerar**
| | |
| --- | --- |
| Número do comando | 691 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
index 650f3b48898ce5..ea934452136a9e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-digest.md
@@ -5,13 +5,13 @@ slug: /commands/generate-digest
displayed_sidebar: docs
---
-**Generate digest** ( *param* ; *algoritmo* {; *} ) : Text
+**Generate digest** ( *param* : Blob, Text ; *algoritmo* : Integer {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| param | Blob, Text | → | Blob o texto para o qual obter uma chave digest |
-| algoritmo | Integer | → | Algoritimo utilizado para retornar a chave: 0 = MD5 Digest, 1 = SHA1 Digest |
-| * | Operador | → | Encode digest in Base64URL |
+| param | Blob, Text | → | Blob o texto para o qual obter uma chave digest |
+| algoritmo | Integer | → | Algoritimo utilizado para retornar a chave: 0 = MD5 Digest, 1 = SHA1 Digest |
+| * | Operador | → | Encode digest in Base64URL |
| resultado | Text | ← | Valor da chave digest |
@@ -90,6 +90,6 @@ Esses exemplos ilustram como recuperar a chave digest de um texto:
| | |
| --- | --- |
| Número do comando | 1147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
index 008ffc109bc5ae..0a42367cc9d968 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-encryption-keypair.md
@@ -5,13 +5,13 @@ slug: /commands/generate-encryption-keypair
displayed_sidebar: docs
---
-**GENERATE ENCRYPTION KEYPAIR** ( *chavPriv* ; *chavPublica* {; *tamanho*} )
+**GENERATE ENCRYPTION KEYPAIR** ( *chavPriv* : Blob ; *chavPublica* : Blob {; *tamanho* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| chavPriv | Blob | ← | BLOB que contém a chave privada |
| chavPublica | Blob | ← | BLOB que contém a chave pública |
-| tamanho | Integer | → | Tamanho da chave (bits) [512...2048]. O valor normal é 512 |
+| tamanho | Integer | → | Tamanho da chave (bits) [512...2048]. O valor normal é 512 |
@@ -58,6 +58,6 @@ Ver o exemplo do comando [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Número do comando | 688 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
index 79d5acb7aef30d..da3cf2ae92f952 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/generate-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/generate-password-hash
displayed_sidebar: docs
---
-**Generate password hash** ( *senha* {; *opções*} ) : Text
+**Generate password hash** ( *senha* : Text {; *opções* : Object} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| senha | Text | → | A senha do usuário. Só os primeiros 72 caracteres são usados |
-| opções | Object | → | Um objeto contendo opções |
+| senha | Text | → | A senha do usuário. Só os primeiros 72 caracteres são usados |
+| opções | Object | → | Um objeto contendo opções |
| Resultado | Text | ← | Retorna a senha hashed |
@@ -73,6 +73,6 @@ Este exemplo gera um hash de senha utilizando bcrypt com um fator de custo 4.
| | |
| --- | --- |
| Número do comando | 1533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
index 56294b8bc75f92..a58debb777d6c1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-file.md
@@ -5,12 +5,12 @@ slug: /commands/get-4d-file
displayed_sidebar: docs
---
-**Get 4D file** ( *arquivo* {; *} ) : Text
+**Get 4D file** ( *arquivo* : Integer {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| arquivo | Integer | → | Tipo de arquivo |
-| * | Operador | → | Retorna arquivo do banco de dados host |
+| arquivo | Integer | → | Tipo de arquivo |
+| * | Operador | → | Retorna arquivo do banco de dados host |
| Resultado | Text | ← | Nome da rota do arquivo 4D |
@@ -75,6 +75,6 @@ Se quiser obter a rota do último arquivo de backup:
| | |
| --- | --- |
| Número do comando | 1418 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
index e02b6160ba3404..df19b8b847f240 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-4d-folder.md
@@ -5,13 +5,13 @@ slug: /commands/get-4d-folder
displayed_sidebar: docs
---
-**Get 4D folder** {( *pasta* {; *options*} {; *})} : Text
+**Get 4D folder** ( *pasta* : Integer {; *options* : Object} {; *}) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pasta | Integer | → | Tipo de pasta (se omitido = pasta 4D ativa) |
-| options | Object | → | 4D Client database folder path configuration |
-| * | Operador | → | Retorna a pasta do banco local |
+| pasta | Integer | → | Tipo de pasta (se omitido = pasta 4D ativa) |
+| options | Object | → | 4D Client database folder path configuration |
+| * | Operador | → | Retorna a pasta do banco local |
| Resultado | Text | ← | Endereço para a pasta 4D |
@@ -218,7 +218,7 @@ Se o parâmetro *pasta* não é válido ou se o endereço de acesso retornado é
| | |
| --- | --- |
| Número do comando | 485 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
index 2e22fa2035c999..f77fcb8a3e13e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela para a qual o valor de prioridade dos "blobs" vai ser recuperada |
+| Table | Table | → | Tabela para a qual o valor de prioridade dos "blobs" vai ser recuperada |
| Resultado | Integer | ← | Valor de prioridade atual para campos "blobs" |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1428 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
index 8a2749ef524255..c4d8d0b14c9027 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-index-cache-priority.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Field | Field | → | Campo para o qual a prioridade dos índices vai ser recuperada |
+| Field | Field | → | Campo para o qual a prioridade dos índices vai ser recuperada |
| Resultado | Integer | ← | O valor atual da prioridade dos índices |
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1427 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
index 63e89161358249..cd1b2ee62fd892 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-adjusted-table-cache-priority.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela para a qual os valores de prioridade escalares serão recuperados |
+| Table | Table | → | Tabela para a qual os valores de prioridade escalares serão recuperados |
| Resultado | Integer | ← | Valor atual de prioridades para campos escalares |
@@ -33,6 +33,6 @@ Os tipos de campos de dados escalares incluem campos de tipo data/hora, numéric
| | |
| --- | --- |
| Número do comando | 1426 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
index 97c23a1959451d..26024c0b0567e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-allowed-methods.md
@@ -5,7 +5,7 @@ slug: /commands/get-allowed-methods
displayed_sidebar: docs
---
-**GET ALLOWED METHODS** ( *arrMetodos* )
+**GET ALLOWED METHODS** ( *arrMetodos* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Este exemplo autoriza um conjunto de métodos específicos para criar um relató
| | |
| --- | --- |
| Número do comando | 908 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
index d5b782d2d86def..158565bcb09a97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/get-application-color-scheme
displayed_sidebar: docs
---
-**Get Application color scheme** {( * )} : Text
+**Get Application color scheme** ( * ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Retorna o esquema de cores do banco de dados host/anfitrião |
+| * | Operador | → | Retorna o esquema de cores do banco de dados host/anfitrião |
| Resultado | Text | ← | Esquema de cores da aplicação atual |
@@ -49,6 +49,6 @@ Veja a descrição do comando [SET APPLICATION COLOR SCHEME](set-application-col
| | |
| --- | --- |
| Número do comando | 1763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
index 4cbe46de376000..35dc3ddcb398be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Automaticamente, as asserções estão ativas mas é possível desativá-las uti
| | |
| --- | --- |
| Número do comando | 1130 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
index 8ba14ef7756b7b..f64eb192926abf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-automatic-relations.md
@@ -5,7 +5,7 @@ slug: /commands/get-automatic-relations
displayed_sidebar: docs
---
-**GET AUTOMATIC RELATIONS** ( *um* ; *muitos* )
+**GET AUTOMATIC RELATIONS** ( *um* : Boolean ; *muitos* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ Consulte o exemplo do comando [GET FIELD RELATION](get-field-relation.md "GET FI
| | |
| --- | --- |
| Número do comando | 899 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
index a082611a6f700c..b4472ae08d5870 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver exemplo de comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número do comando | 1432 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
index 2a259397372cc5..7e386d9eca7429 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Se não tiver uma impressora instalada, um erro é gerado
| | |
| --- | --- |
| Número do comando | 788 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
index cebcf19c842582..f1d248e65dcea0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-localization.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-localization
displayed_sidebar: docs
---
-**Get database localization** {( {*tipoIdioma*}{;}{*} )} : Text
+**Get database localization** ( {*tipoIdioma* : Integer}{;}{*} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoIdioma | Integer | → | Tipo de idioma |
-| * | Operador | → | Retorna informação sobre banco de dados host |
+| tipoIdioma | Integer | → | Tipo de idioma |
+| * | Operador | → | Retorna informação sobre banco de dados host |
| Resultado | Text | ← | Idioma atual do banco |
@@ -58,6 +58,6 @@ O idioma atual do banco de dados pode ser usada para determinar a pasta. lproj o
| | |
| --- | --- |
| Número do comando | 1009 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
index 60770b047dd85f..1333c311781d13 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-database-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-database-parameter
displayed_sidebar: docs
---
-**Get database parameter** ( {*tabela* ;} *seletor* {; *valorAlfa*} ) : Real
+**Get database parameter** ( {*tabela* : Table ;} *seletor* : Integer {; *valorAlfa* : Text} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do parâmetro ou tabela padrão se este parâmetro for omitido |
-| seletor | Integer | → | Código do parâmetro do banco |
+| tabela | Table | → | Tabela do parâmetro ou tabela padrão se este parâmetro for omitido |
+| seletor | Integer | → | Código do parâmetro do banco |
| valorAlfa | Text | ← | Valor alfa do parâmetro |
| Resultado | Real | ← | Valor atual do parâmetro |
@@ -1039,6 +1039,6 @@ Em [Método banco de dados On Startup](metodo-banco-de-dados-on-startup.md), pod
| | |
| --- | --- |
| Número do comando | 643 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
index 63766b5fbc0f79..d08a9877759b57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-default-user.md
@@ -28,6 +28,6 @@ Se nenhum usuário por padrão estiver definido, o comando retorna 0.
| | |
| --- | --- |
| Número do comando | 826 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
index 1f26a8209b7beb..68b5d8b190500f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-document-icon
displayed_sidebar: docs
---
-**GET DOCUMENT ICON** ( *rotaDoc* ; *icone* {; *tamanho*} )
+**GET DOCUMENT ICON** ( *rotaDoc* : Text ; *icone* : Picture, Picture {; *tamanho* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaDoc | Text | → | Nome ou rota de acesso do documento para recuperar ícone, ou string vazia para caixa de diálogo Abrir Arquivo |
+| rotaDoc | Text | → | Nome ou rota de acesso do documento para recuperar ícone, ou string vazia para caixa de diálogo Abrir Arquivo |
| icone | Picture, Picture | ← | Variavel imagem ou campo |
-| tamanho | Integer | → | Tamanho da imagem retornada (em pixels) |
+| tamanho | Integer | → | Tamanho da imagem retornada (em pixels) |
@@ -33,7 +33,7 @@ O parâmetro opcional *tamanho* permite indicar as dimensões em píxels do íco
| | |
| --- | --- |
| Número do comando | 700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
index b9bcabf1ec8b4a..39ec0f31a582e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-position.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-position
displayed_sidebar: docs
---
-**Get document position** ( *docRef* ) : Real
+**Get document position** ( *docRef* : Time ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência de documento |
+| docRef | Time | → | Número de referência de documento |
| Resultado | Real | ← | Posição do arquivo (expressa em bytes) a partir do início do arquivo |
@@ -31,6 +31,6 @@ Get document position devolve a posição, a partir do início do documento, ond
| | |
| --- | --- |
| Número do comando | 481 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
index 43dd0a242d0bc2..fc71323805c40e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-document-properties
displayed_sidebar: docs
---
-**GET DOCUMENT PROPERTIES** ( *documento* ; *bloqueado* ; *invisivel* ; *criadoEm* ; *criadoAs* ; *modificadoEm* ; *modificadoAs* )
+**GET DOCUMENT PROPERTIES** ( *documento* : Text ; *bloqueado* : Boolean ; *invisivel* : Boolean ; *criadoEm* : Date ; *criadoAs* : Time ; *modificadoEm* : Date ; *modificadoAs* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome do documento |
+| documento | Text | → | Nome do documento |
| bloqueado | Boolean | ← | Bloqueado (TRUE) ou desbloqueado(false) |
| invisivel | Boolean | ← | Invisível (True) ou visível (False) |
| criadoEm | Date | ← | Data da criação |
@@ -214,7 +214,7 @@ Quando esse método tiver sido implementado no banco de dados, nóste mos todo o
| | |
| --- | --- |
| Número do comando | 477 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
index dda1aa285c0bb4..bebb61d34b7bbb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/get-document-size
displayed_sidebar: docs
---
-**Get document size** ( *documento* {; *} ) : Real
+**Get document size** ( *documento* : Text, Time {; *} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text, Time | → | Número de referência de documento ou nome do documento |
-| * | Operador | → | Apenas em Mac OS : se omitido, tamanho do data fork; se especificado, tamanho do resource fork |
+| documento | Text, Time | → | Número de referência de documento ou nome do documento |
+| * | Operador | → | Apenas em Mac OS : se omitido, tamanho do data fork; se especificado, tamanho do resource fork |
| Resultado | Real | ← | Tamanho (expresso em bytes) do documento |
@@ -35,7 +35,7 @@ Em Macintosh, se não passa o parâmetro opcional *\**, se retorna o tamanho do
| | |
| --- | --- |
| Número do comando | 479 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
index 3fbc0b33fb33b3..ce21d729330dea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ End if
| | |
| --- | --- |
| Número do comando | 655 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
index bdebe49beb34ea..18cfe4ca868077 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-external-data-path.md
@@ -5,11 +5,11 @@ slug: /commands/get-external-data-path
displayed_sidebar: docs
---
-**Get external data path** ( *ocampo* ) : Text
+**Get external data path** ( *ocampo* : Text, Blob, Picture ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ocampo | Text, Blob, Picture | → | Campo do qual obter o lugar de armazenamento |
+| ocampo | Text, Blob, Picture | → | Campo do qual obter o lugar de armazenamento |
| Resultado | Text | ← | Via de acesso completa do arquivo de armazenamento externo |
@@ -37,6 +37,6 @@ Este comando devolve uma cadeia vazia nos seguintes casos:
| | |
| --- | --- |
| Número do comando | 1133 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
index 381772674173d0..5af51e797a01ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-entry-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-entry-properties
displayed_sidebar: docs
---
-**GET FIELD ENTRY PROPERTIES** ( *pontCampo* ; *lista* ; *obrigatório* ; *nãoEditável* ; *nãoModificável* )
**GET FIELD ENTRY PROPERTIES** ( *numTabela* ; *numCampo* ; *lista* ; *obrigatório* ; *nãoEditável* ; *nãoModificável* )
+**GET FIELD ENTRY PROPERTIES** ( *pontCampo* : Ponteiro, Inteiro longo ; *lista* : Text ; *obrigatório* : Boolean ; *nãoEditável* : Boolean ; *nãoModificável* : Boolean )
**GET FIELD ENTRY PROPERTIES** ( *numTabela* : Ponteiro, Inteiro longo ; *numCampo* : Integer ; *lista* : Text ; *obrigatório* : Boolean ; *nãoEditável* : Boolean ; *nãoModificável* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro de campo ou número da tabela |
-| numCampo | Integer | → | Número de campo se o número da tabela for passado como primeiro parâmetro |
+| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro de campo ou número da tabela |
+| numCampo | Integer | → | Número de campo se o número da tabela for passado como primeiro parâmetro |
| lista | Text | ← | Lista associada ao campo ou string vazia |
| obrigatório | Boolean | ← | True = Obrigatório, False = Opcional |
| nãoEditável | Boolean | ← | True=não editável, False = Editável |
@@ -47,6 +47,6 @@ Se nenhuma lista estiver associada ao campo ou se o tipo do campo não permitir
| | |
| --- | --- |
| Número do comando | 685 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
index 31dd7faeca7cf2..4441d4023d6cf8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-field-properties
displayed_sidebar: docs
---
-**GET FIELD PROPERTIES** ( *pontCampo* ; *tipoCampo* {; *tamanhoCampo* {; *indexado* {; *unico* {; *invisivel*}}}} )
**GET FIELD PROPERTIES** ( *numTabela* ; *numCampo* ; *tipoCampo* {; *tamanhoCampo* {; *indexado* {; *unico* {; *invisivel*}}}} )
+**GET FIELD PROPERTIES** ( *pontCampo* : Ponteiro, Inteiro longo ; *tipoCampo* : Integer {; *tamanhoCampo* : Integer {; *indexado* : Boolean {; *unico* : Boolean {; *invisivel* : Boolean}}}} )
**GET FIELD PROPERTIES** ( *numTabela* : Ponteiro, Inteiro longo ; *numCampo* : Integer ; *tipoCampo* : Integer {; *tamanhoCampo* : Integer {; *indexado* : Boolean {; *unico* : Boolean {; *invisivel* : Boolean}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Número de tabela ou ponteiro do campo |
-| numCampo | Integer | → | Número do campo se número de tabela for passado |
+| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Número de tabela ou ponteiro do campo |
+| numCampo | Integer | → | Número do campo se número de tabela for passado |
| tipoCampo | Integer | ← | Tipo de Campo |
| tamanhoCampo | Integer | ← | Comprimento do campo, se alfanumérico |
| indexado | Boolean | ← | True = indexado, False = não indexado |
@@ -79,6 +79,6 @@ Este exemplo recupera nas variáveis *vTipo*, *vTamanho*, *vIndice*, *vUnico* e
| | |
| --- | --- |
| Número do comando | 258 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
index 4401c920c7a6f1..f164dc8ef96c73 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-relation.md
@@ -5,14 +5,14 @@ slug: /commands/get-field-relation
displayed_sidebar: docs
---
-**GET FIELD RELATION** ( *campoN* ; *um* ; *muitos* {; *} )
+**GET FIELD RELATION** ( *campoN* : Field ; *um* : Integer ; *muitos* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoN | Field | → | Iniciar campo da relação |
+| campoN | Field | → | Iniciar campo da relação |
| um | Integer | ← | Estado das relações Muitos a Um |
| muitos | Integer | ← | Estado da relação Um a Muitos |
-| * | Operador | → | Se passado: um e muitos retorna o estado atual da relação (valores 2 ou 3 apenas) * se omitido (padrão): um e muitos podem retornar o valor 1 se a relação não foi modificada através de programação |
+| * | Operador | → | Se passado: um e muitos retorna o estado atual da relação (valores 2 ou 3 apenas) * se omitido (padrão): um e muitos podem retornar o valor 1 se a relação não foi modificada através de programação |
@@ -98,6 +98,6 @@ O código a seguir ilustra as diferentes possibilidades oferecidas pelos comando
| | |
| --- | --- |
| Número do comando | 920 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
index 806fe5ec0395f3..c68484e1c6b1da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-field-titles.md
@@ -5,11 +5,11 @@ slug: /commands/get-field-titles
displayed_sidebar: docs
---
-**GET FIELD TITLES** ( *tabela* ; *titulosCampos* ; *numCampos* )
+**GET FIELD TITLES** ( *tabela* : Table ; *titulosCampos* : Text array ; *numCampos* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para qual você deseja encontrar os nomes dos campos |
+| tabela | Table | → | Tabela para qual você deseja encontrar os nomes dos campos |
| titulosCampos | Text array | ← | Nomes atuais dos campos |
| numCampos | Integer array | ← | Números de Campos |
@@ -35,6 +35,6 @@ Em ambos casos, o comando não retorna campos invisíveis.
| | |
| --- | --- |
| Número do comando | 804 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
index 59b0acdb8b61e5..5052a505617693 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-file-from-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/get-file-from-pasteboard
displayed_sidebar: docs
---
-**Get file from pasteboard** ( *indiceN* ) : Text
+**Get file from pasteboard** ( *indiceN* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| indiceN | Integer | → | Arquivo N incluído na ação de arrastar |
+| indiceN | Integer | → | Arquivo N incluído na ação de arrastar |
| Resultado | Text | ← | Rota do arquivo extraído da área de transferência |
@@ -47,6 +47,6 @@ O exemplo a seguir pode ser utilizado para recuperar em um array todas as rotas
| | |
| --- | --- |
| Número do comando | 976 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
index 6fb39e8efebd93..c031cd17306147 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Se qusier verificar se o usuário atual pertence ao grupo "plugins":
| | |
| --- | --- |
| Número do comando | 1738 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
index 0946a1b750c00c..76ee1edb94d1d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-group-list
displayed_sidebar: docs
---
-**GET GROUP LIST** ( *nomGrupos* ; *numGrupos* )
+**GET GROUP LIST** ( *nomGrupos* : Text array ; *numGrupos* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -38,7 +38,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP LIST ou se
| | |
| --- | --- |
| Número do comando | 610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
index 881f87ff6ea353..57f92f7203f574 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-group-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-group-properties
displayed_sidebar: docs
---
-**GET GROUP PROPERTIES** ( *refGrupo* ; *nome* ; *proprietario* {; *membros*} )
+**GET GROUP PROPERTIES** ( *refGrupo* : Integer ; *nome* : Text ; *proprietario* : Integer {; *membros* : Integer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refGrupo | Integer | → | Número de referencia ID de grupo |
+| refGrupo | Integer | → | Número de referencia ID de grupo |
| nome | Text | ← | Nome do grupo |
| proprietario | Integer | ← | Número de ID do proprietário do grupo |
| membros | Integer array | ← | Membros do grupo |
@@ -45,7 +45,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP PROPERTIES
| | |
| --- | --- |
| Número do comando | 613 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
index b442b47d82b2cc..2bff15a3fa0c71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlight.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlight
displayed_sidebar: docs
---
-**GET HIGHLIGHT** ( {*Objeto* ;} *area* ; *inicioSel* ; *fimSel* )
+**GET HIGHLIGHT** ( {*Objeto* : * ;} *area* : Field, Variable, any ; *inicioSel* : Integer ; *fimSel* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Objeto | * | → | Se especificado, objeto é um nome de objeto (string=. Se omitido, objeto é um campo ou variável |
-| area | Field, Variable, any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| Objeto | * | → | Se especificado, objeto é um nome de objeto (string=. Se omitido, objeto é um campo ou variável |
+| area | Field, Variable, any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
| inicioSel | Integer | ← | Posição inicial da seleção atual de texto |
| fimSel | Integer | ← | Posição final da seleção atual de texto |
@@ -68,6 +68,6 @@ Modificação do estilo do texto ressaltado:
| | |
| --- | --- |
| Número do comando | 209 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
index a234579063e9e3..81b69061df4ac6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-highlighted-records.md
@@ -5,12 +5,12 @@ slug: /commands/get-highlighted-records
displayed_sidebar: docs
---
-**GET HIGHLIGHTED RECORDS** ( {*tabela* ;} *nomConjunto* )
+**GET HIGHLIGHTED RECORDS** ( {*tabela* : Table ;} *nomConjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual os registros selecionados serão lidos. Se omitido, a tabela do formulário atual |
-| nomConjunto | Text | → | Conjunto onde os nomes selecionados serão armazenados |
+| tabela | Table | → | Tabela para a qual os registros selecionados serão lidos. Se omitido, a tabela do formulário atual |
+| nomConjunto | Text | → | Conjunto onde os nomes selecionados serão armazenados |
@@ -49,7 +49,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 902 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
index 036d8da163744b..5629f9dca20c54 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-indexed-string.md
@@ -5,13 +5,13 @@ slug: /commands/get-indexed-string
displayed_sidebar: docs
---
-**Get indexed string** ( *resID* ; *cadeiaNum* {; *resArquivo*} ) : Text
+**Get indexed string** ( *resID* : Integer ; *cadeiaNum* : Integer {; *resArquivo* : Time} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resID | Integer | → | Nº de recurso Id ou atributo "id" do elemento do "grupo" (XLIFF) |
-| cadeiaNum | Integer | → | Nº de Cadeia ou atributo de "id" ou elemento de "trans-unit" (XLIFF) |
-| resArquivo | Time | → | Arquivo de número de referencia de Resource se omitido: todos os arquivos XLIFF ou arquivos de resources abertos |
+| resID | Integer | → | Nº de recurso Id ou atributo "id" do elemento do "grupo" (XLIFF) |
+| cadeiaNum | Integer | → | Nº de Cadeia ou atributo de "id" ou elemento de "trans-unit" (XLIFF) |
+| resArquivo | Time | → | Arquivo de número de referencia de Resource se omitido: todos os arquivos XLIFF ou arquivos de resources abertos |
| Resultado | Text | ← | Valor da cadeia indexada |
@@ -44,7 +44,7 @@ Se o recurso for encontrado, OK toma o valor 1, do contrário assume o valor 0 (
| | |
| --- | --- |
| Número do comando | 510 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
index c26af57d6405f4..d3d5ecd8841c5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-font.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-font
displayed_sidebar: docs
---
-**Get list item font** ( {* ;} *lista* ; refElem | * ) : Text
+**Get list item font** ( {* ;} *lista* : Integer, Text ; refElem | * ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
| Resultado | Text | ← | Nome de fonte |
@@ -37,6 +37,6 @@ Finalmente, pode passar \* em *refElem*: neste caso, o comando se aplicará ao e
| | |
| --- | --- |
| Número do comando | 954 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
index 00283f83a546a2..514dd36013ac77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-icon.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-icon
displayed_sidebar: docs
---
-**GET LIST ITEM ICON** ( {* ;} *lista* ; refElem | * ; *icone* )
+**GET LIST ITEM ICON** ( {* ;} *lista* : Integer, Text ; refElem | * ; *icone* : Picture )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
| icone | Picture | ← | Ícone associado ao elemento |
@@ -44,6 +44,6 @@ Se nenhum ícone está associado ao elemento, a variável ícone seja retornada
| | |
| --- | --- |
| Número do comando | 951 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
index 88ccf5f3ecc6aa..a926caf87af0b8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter-arrays.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-parameter-arrays
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* ; *refElemento* ; *arrSeletores* {; *arrValores*} )
+**GET LIST ITEM PARAMETER ARRAYS** ( {* ;} *list* : Integer, Text ; *refElemento* : Integer, * ; *arrSeletores* : Text array {; *arrValores* : Text array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificada, a lista é um nome de objeto (cadeia)
Se for omitida, a lista é um número de referencia de lista |
-| list | Integer, Text | → | Número de referencia de lista ou
Nome de objeto de tipo lista (se passado *) |
-| refElemento | Integer, * | → | Número de referencia do elemento ou
0 para o último elemento agregado à lista ou
* para o elemento atual da lista |
+| * | Operador | → | Se for especificada, a lista é um nome de objeto (cadeia)
Se for omitida, a lista é um número de referencia de lista |
+| list | Integer, Text | → | Número de referencia de lista ou
Nome de objeto de tipo lista (se passado *) |
+| refElemento | Integer, * | → | Número de referencia do elemento ou
0 para o último elemento agregado à lista ou
* para o elemento atual da lista |
| arrSeletores | Text array | ← | Array dos nomes dos parâmetros |
| arrValores | Text array | ← | Array dos valores dos parâmetros |
@@ -81,6 +81,6 @@ Caso também queiras obter os valores dos parâmetros, escreva:
| | |
| --- | --- |
| Número do comando | 1195 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
index 75352f6691f5cf..a5f10c43c3d4d2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-parameter.md
@@ -5,14 +5,14 @@ slug: /commands/get-list-item-parameter
displayed_sidebar: docs
---
-**GET LIST ITEM PARAMETER** ( {* ;} *lista* ; refElem | * ; *seletor* ; *valor* )
+**GET LIST ITEM PARAMETER** ( {* ;} *lista* : Integer, Text ; refElem | * ; *seletor* : Text ; *valor* : Text, Boolean, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| seletor | Text | → | Constante do parâmetro |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| seletor | Text | → | Constante do parâmetro |
| valor | Text, Boolean, Real | ← | Valor atual do parâmetro |
@@ -41,6 +41,6 @@ Em *seletor*, pode passar a constante Additional text ou a constante de ação p
| | |
| --- | --- |
| Número do comando | 985 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
index 66b6dd89fa0853..17f2076b8a448d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item-properties
displayed_sidebar: docs
---
-**GET LIST ITEM PROPERTIES** ( {* ;} *lista* ; refElem | * ; *editavel* {; *estilos* {; *icone* {; *cor*}}} )
+**GET LIST ITEM PROPERTIES** ( {* ;} *lista* : Integer, Text ; refElem | * ; *editavel* : Boolean {; *estilos* : Integer {; *icone* : Text, Integer {; *cor* : Integer}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
| editavel | Boolean | ← | TRUE = Editável, FALSE = Não editável |
| estilos | Integer | ← | Estilo de fonte do elemento |
| icone | Text, Integer | ← | Número de recurso Mac OS ‘cicn’, ou 65536 + número de recurso Mac OS ‘PICT’, ou 131072 + número de referência de imagem |
@@ -57,6 +57,6 @@ Para maior informação sobre estas propriedades, consulte a descrição do coma
| | |
| --- | --- |
| Número do comando | 631 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
index 1b4805ec6ffaa2..e051fe0ecfe6b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-list-item
displayed_sidebar: docs
---
-**GET LIST ITEM** ( {* ;} *lista* ; posiçaoElem | * ; *refElem* ; *textoElem* {; *sublista* ; *expandida*} )
+**GET LIST ITEM** ( {* ;} *lista* : Integer, Text ; posiçaoElem | * ; *refElem* : Integer ; *textoElem* : Text {; *sublista* : Integer ; *expandida* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| posiçaoElem | * | Operador, Inteiro longo | → | Posição do elemento em lista(s) expandida(s) ou contraída(s) * para o elemento atual da lista. |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| posiçaoElem | * | Operador, Inteiro longo | → | Posição do elemento em lista(s) expandida(s) ou contraída(s) * para o elemento atual da lista. |
| refElem | Integer | ← | Número de referência do elemento |
| textoElem | Text | ← | Texto do elemento da lista |
| sublista | Integer | ← | Número de referência da sub-lista (se existe) |
@@ -71,6 +71,6 @@ Consulte o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST
| | |
| --- | --- |
| Número do comando | 378 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
index 2961ffe1dd9c65..5b3350d7a8a6ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-list-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-list-properties
displayed_sidebar: docs
---
-**GET LIST PROPERTIES** ( *lista* ; *aparencia* {; *icone* {; *alturaLinha* {; *duploClique* {; *multiSeleçao* {; *editavel*}}}}} )
+**GET LIST PROPERTIES** ( *lista* : Integer ; *aparencia* : Integer {; *icone* : Integer {; *alturaLinha* : Integer {; *duploClique* : Integer {; *multiSeleçao* : Integer {; *editavel* : Integer}}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
+| lista | Integer | → | Número de referência da lista |
| aparencia | Integer | ← | Estilo gráfico da lista 1 = Lista hierárquica à Macintosh 2 = Lista hierárquica à Windows |
| icone | Integer | ← | Referência de recurso Mac OS ‘cicn’ |
| alturaLinha | Integer | ← | Altura mínima de la linha expressada em pixels |
@@ -43,6 +43,6 @@ Para uma completa descrição da aparência, ícones de knots, altura de linha m
| | |
| --- | --- |
| Número do comando | 632 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
index 08e2bcba1e6c0c..1dd1a8c4d94ddf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-macro-parameter.md
@@ -5,11 +5,11 @@ slug: /commands/get-macro-parameter
displayed_sidebar: docs
---
-**GET MACRO PARAMETER** ( *seletor* ; *paramTexto* )
+**GET MACRO PARAMETER** ( *seletor* : Integer ; *paramTexto* )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Seleção a usar |
+| seletor | Integer | → | Seleção a usar |
| paramText | Text | ← | Texto retornado |
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MACRO PARAMETER](set-macro-parameter.md "SET
| | |
| --- | --- |
| Número do comando | 997 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
index cfd3c555a89805..679b3b0bca62ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-bar-reference.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-bar-reference
displayed_sidebar: docs
---
-**Get menu bar reference** {( *processo* )} : Text
+**Get menu bar reference** ( *processo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de referência do processo |
+| processo | Integer | → | Número de referência do processo |
| Resultado | Text | ← | Referência de menu |
@@ -45,6 +45,6 @@ Consulte o exemplo do comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITEMS
| | |
| --- | --- |
| Número do comando | 979 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
index 16a8ac94ce138b..08866ffab4c94c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/get-menu-item-icon
displayed_sidebar: docs
---
-**GET MENU ITEM ICON** ( *menu* ; *menuItem* ; *refIcone* {; *processo*} )
+**GET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *refIcone* : Text, Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de menu de item ou -1 para o último item adicionado ao menu |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de menu de item ou -1 para o último item adicionado ao menu |
| refIcone | Text, Integer | ← | Nome ou número da imagem associada com o item de menu |
-| processo | Integer | → | Número de processo |
+| processo | Integer | → | Número de processo |
@@ -39,6 +39,6 @@ Se nenhum ícone está associado a linha de menu, o comando devolve uma imagem v
| | |
| --- | --- |
| Número do comando | 983 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
index da14d520d522d3..a0f9000a5c19b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-key.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-key
displayed_sidebar: docs
---
-**Get menu item key** ( *menu* ; *menuItem* {; *processo*} ) : Integer
+**Get menu item key** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de Menu item ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de Menu item ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Integer | ← | Código de caractere da tecla de atalho padrão associada com o item de menu |
@@ -53,7 +53,7 @@ Para obter um atalho associado com um comando de menu, é útil implementar uma
| | |
| --- | --- |
| Número do comando | 424 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
index 8848784bcd5624..50e2cf37ca66f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-mark.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-mark
displayed_sidebar: docs
---
-**Get menu item mark** ( *menu* ; *menuItem* {; *processo*} ) : Text
+**Get menu item mark** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Text | ← | Item de menu atual marcado |
@@ -45,7 +45,7 @@ O exemplo a seguir exemplo inverte a marca de uma linha de menu:
| | |
| --- | --- |
| Número do comando | 428 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
index 48a3c704a0d75d..8f22670ef475b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-method.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-method
displayed_sidebar: docs
---
-**Get menu item method** ( *menu* ; *menuItem* {; *processo*} ) : Text
+**Get menu item method** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de referência ou Número de Menu |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| processo | Integer | → | Número de processo |
+| menu | Integer, Text | → | Número de referência ou Número de Menu |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| processo | Integer | → | Número de processo |
| Resultado | Text | ← | Nome do método |
@@ -35,6 +35,6 @@ O comando devolve o nome do método 4D como uma cadeia de caracteres (expressão
| | |
| --- | --- |
| Número do comando | 981 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
index a365e37e29022c..f71b156e0cf576 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-modifiers.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-modifiers
displayed_sidebar: docs
---
-**Get menu item modifiers** ( *menu* ; *menuItem* {; *processo*} ) : Integer
+**Get menu item modifiers** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de referência ou Número de Menu |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| processo | Integer | → | Número de processo |
+| menu | Integer, Text | → | Número de referência ou Número de Menu |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| processo | Integer | → | Número de processo |
| Resultado | Integer | ← | Chave de modificação associada com o item de menu |
@@ -57,6 +57,6 @@ Consulte o exemplo do comando [Get menu item key](get-menu-item-key.md "Get menu
| | |
| --- | --- |
| Número do comando | 980 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
index 3d5b3c7ec1dd99..7da22eb42d2a61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-item-parameter
displayed_sidebar: docs
---
-**Get menu item parameter** ( *menu* ; *menuItem* ) : Text
+**Get menu item parameter** ( *menu* : Integer, Text ; *menuItem* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
| Resultado | Text | ← | Parâmetro personalizado do item de menu |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1003 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
index e369dede4580d6..cb949b237e0c8a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/get-menu-item-property
displayed_sidebar: docs
---
-**GET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *propriedade* ; *valor* {; *processo*} )
+**GET MENU ITEM PROPERTY** ( *menu* : Integer ; *menuItem* : Integer ; *propriedade* : Text ; *valor* : any {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| propriedade | Text | → | Tipo de propriedade |
+| menu | Integer | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| propriedade | Text | → | Tipo de propriedade |
| valor | any | ← | Valor da propriedade |
-| processo | Integer | → | Número de processo |
+| processo | Integer | → | Número de processo |
@@ -38,6 +38,6 @@ Nota de compatibilidade: Como padrão, se o valor da variável não for digitado
| | |
| --- | --- |
| Número do comando | 972 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
index 1176b2f6881cb1..d682b916eaa048 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item-style.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item-style
displayed_sidebar: docs
---
-**Get menu item style** ( *menu* ; *menuItem* {; *processo*} ) : Integer
+**Get menu item style** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Integer | ← | Estilo do item de menu atual |
@@ -52,7 +52,7 @@ Para provar se um elemento de menu é mostrado em negrito, escreve:
| | |
| --- | --- |
| Número do comando | 426 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
index 3b063e20d0d666..6f2bff17368076 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-item.md
@@ -5,13 +5,13 @@ slug: /commands/get-menu-item
displayed_sidebar: docs
---
-**Get menu item** ( *menu* ; *menuItem* {; *processo*} ) : Text
+**Get menu item** ( *menu* : Integer, Text ; *menuItem* : Integer {; *processo* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Text | ← | Texto do item de menu |
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, Get menu item é aplicado a barra de menus do
| | |
| --- | --- |
| Número do comando | 422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
index da614ddbaadd83..1dea6aa1588e9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-items.md
@@ -5,11 +5,11 @@ slug: /commands/get-menu-items
displayed_sidebar: docs
---
-**GET MENU ITEMS** ( *menu* ; *arrayTitMenus* ; *arrayRefMenus* )
+**GET MENU ITEMS** ( *menu* : Integer, Text ; *arrayTitMenus* : Text array ; *arrayRefMenus* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
| arrayTitMenus | Text array | ← | Array de títulos de menu |
| arrayRefMenus | Text array | ← | Array de referências de menu |
@@ -40,6 +40,6 @@ Imagine que queira conhecer o conteúdo da barra de menu do processo atual:
| | |
| --- | --- |
| Número do comando | 977 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
index 5bc057a143dc8a..31adb7fe19dbf5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-menu-title.md
@@ -5,12 +5,12 @@ slug: /commands/get-menu-title
displayed_sidebar: docs
---
-**Get menu title** ( *menu* {; *processo*} ) : Text
+**Get menu title** ( *menu* : Integer, Text {; *processo* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| processo | Integer | → | Número de referência de processo |
| Resultado | Text | ← | Título do menu |
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Get menu title é aplicado à barra de menus d
| | |
| --- | --- |
| Número do comando | 430 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
index e42368a286c682..51e99e9cc6b720 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-missing-table-names.md
@@ -5,7 +5,7 @@ slug: /commands/get-missing-table-names
displayed_sidebar: docs
---
-**GET MISSING TABLE NAMES** ( *tabelasNaoEncontradas* )
+**GET MISSING TABLE NAMES** ( *tabelasNaoEncontradas* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ Quando tiver identificado as tabelas faltantes do banco, pode reativá-las atrav
| | |
| --- | --- |
| Número do comando | 1125 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
index 755fe989dee0ab..16d3bc191bf65b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data-type.md
@@ -5,13 +5,13 @@ slug: /commands/get-pasteboard-data-type
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA TYPE** ( *assinaturas4D* ; *tiposNativos* {; *nomesFormatos*} )
+**GET PASTEBOARD DATA TYPE** ( *assinaturas4D* : Text array ; *tiposNativos* : Text array {; *nomesFormatos* : Text array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| assinaturas4D | Text array | ← | Assinaturas 4D de tipos de dados |
| tiposNativos | Text array | ← | Tipos de dados nativos |
-| nomesFormatos | Text array | ← | Nomes de formato|
+| nomesFormatos | Text array | ← | Nomes de formato |
@@ -43,6 +43,6 @@ Para maior informação sobre os tipos de dados suportados, consulte a seção *
| | |
| --- | --- |
| Número do comando | 958 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
index c217745231e547..f8c33702740174 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pasteboard-data.md
@@ -5,11 +5,11 @@ slug: /commands/get-pasteboard-data
displayed_sidebar: docs
---
-**GET PASTEBOARD DATA** ( *tipoDados* ; *dados* )
+**GET PASTEBOARD DATA** ( *tipoDados* : Text ; *dados* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoDados | Text | → | Tipo de dados a adicionar |
+| tipoDados | Text | → | Tipo de dados a adicionar |
| dados | Blob | ← | Dados extraídos da área de transferência |
@@ -59,7 +59,7 @@ Se os dados são extraídos corretamente, a variável OK toma o valor 1; do cont
| | |
| --- | --- |
| Número do comando | 401 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
index d35a6ec286f7a4..a305f4de9db273 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-file-name.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-file-name
displayed_sidebar: docs
---
-**Get picture file name** ( *imagem* ) : Text
+**Get picture file name** ( *imagem* : Picture, Picture ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture, Picture | → | Imagem para a qual obter o nome por defeito |
+| imagem | Picture, Picture | → | Imagem para a qual obter o nome por defeito |
| Resultado | Text | ← | Nome por defeito do arquivo imagem |
@@ -31,6 +31,6 @@ Se a imagem nao tiver um nome por defeito, o comando devolve uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 1171 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
index 9ca7ea86d1f827..beb4465ff98475 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-formats.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-formats
displayed_sidebar: docs
---
-**GET PICTURE FORMATS** ( *imagem* ; *codecID* )
+**GET PICTURE FORMATS** ( *imagem* : Picture ; *codecID* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem a analisar |
+| imagem | Picture | → | Imagem a analisar |
| codecID | Text array | ← | ID de codec de imagem |
@@ -54,6 +54,6 @@ Se quiser saber os formatos de imagem armazenados em um campo para o registro at
| | |
| --- | --- |
| Número do comando | 1406 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
index 729b4779d14105..5f3a8888d5eeca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-library.md
@@ -5,11 +5,11 @@ slug: /commands/get-picture-from-library
displayed_sidebar: docs
---
-**GET PICTURE FROM LIBRARY** ( refImag | nomImag ; *imagem* )
+**GET PICTURE FROM LIBRARY** ( refImag | nomImag ; *imagem* : Picture )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refImag | nomImag | Inteiro longo, String | → | Número de referência ou Nome da imagem da biblioteca de imagens |
+| refImag | nomImag | Inteiro longo, String | → | Número de referência ou Nome da imagem da biblioteca de imagens |
| imagem | Picture | ← | Imagem da biblioteca de imagens |
@@ -59,7 +59,7 @@ Se não houver suficiente memória para devolver a imagem, se gera o erro -108\.
| | |
| --- | --- |
| Número do comando | 565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
index d479bf17d1d95b..fad6af9c5fb3cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-from-pasteboard.md
@@ -5,7 +5,7 @@ slug: /commands/get-picture-from-pasteboard
displayed_sidebar: docs
---
-**GET PICTURE FROM PASTEBOARD** ( *imagem* )
+**GET PICTURE FROM PASTEBOARD** ( *imagem* : Picture )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -46,7 +46,7 @@ Se a imagem for extraída corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 522 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
index c6de3888704f13..3b8e7061aba459 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-picture-keywords
displayed_sidebar: docs
---
-**GET PICTURE KEYWORDS** ( *imagem* ; *arrayPalavrasChaves* {; *} )
+**GET PICTURE KEYWORDS** ( *imagem* : Picture, Picture ; *arrayPalavrasChaves* : Text array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture, Picture | → | Imagem para à qual obter as palavras chaves associadas |
+| imagem | Picture, Picture | → | Imagem para à qual obter as palavras chaves associadas |
| arrayPalavrasChaves | Text array | ← | Array com as palavras chaves extraídas |
-| * | Operador | → | Se passado = usar valores diferentes |
+| * | Operador | → | Se passado = usar valores diferentes |
@@ -39,6 +39,6 @@ Caso a imagem não contém palavras-chaves ou metadados IPTC/Keywords, o comando
| | |
| --- | --- |
| Número do comando | 1142 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
index 1365f6f27c0e54..3bcaa82606da3e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-metadata.md
@@ -5,12 +5,12 @@ slug: /commands/get-picture-metadata
displayed_sidebar: docs
---
-**GET PICTURE METADATA** ( *imagem* ; *nomeMeta* ; *conteudoMeta* {; *nomeMeta2* ; *conteudoMeta2* ; ... ; *nomeMetaN* ; *conteudoMetaN*} )
+**GET PICTURE METADATA** ( *imagem* : Picture ; *nomeMeta* : Text ; *conteudoMeta* : Variable {; ...(*nomeMeta* : Text, *conteudoMeta* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem cujos metadados você deseja conseguir |
-| nomeMeta | Text | → | Nome ou caminho do bloco a ser lido |
+| imagem | Picture | → | Imagem cujos metadados você deseja conseguir |
+| nomeMeta | Text | → | Nome ou caminho do bloco a ser lido |
| conteudoMeta | Variable | ← | Conteúdo do Metadado |
@@ -106,7 +106,7 @@ La variable sistema *OK* devolve 1 se a recuperación dos metadados es correta e
| | |
| --- | --- |
| Número do comando | 1122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
index 0bbddd68b8f12f..1fa45855167897 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-picture-resource.md
@@ -5,14 +5,13 @@ slug: /commands/get-picture-resource
displayed_sidebar: docs
---
-**GET PICTURE RESOURCE** ( *resNum* ; *resDados* {; *resArquivo*} )
+**GET PICTURE RESOURCE** ( *resNum* : Integer ; *resDados* : Field, Variable {; *resArquivo* : Time} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de Resource |
-| resDados | Field, Variable | → | Campo imagem ou variável a receber a imagem |
-| ← | Conteúdos do recurso PICT |
-| resArquivo | Time | → | Número de referência do arquivo de Resource ou arquivo de resource atual se omitido |
+| resNum | Integer | → | Número de Resource |
+| resDados | Field, Variable | ↔ | *in:* Picture field or variable to receive the picture
*out:* Contents of the PICT resource |
+| resArquivo | Time | → | Número de referência do arquivo de Resource ou arquivo de resource atual se omitido |
@@ -47,7 +46,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
index d9b3c5e3ffe635..6bb3016a4504e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-plugin-access.md
@@ -5,11 +5,11 @@ slug: /commands/get-plugin-access
displayed_sidebar: docs
---
-**Get plugin access** ( *plugIn* ) : Text
+**Get plugin access** ( *plugIn* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Número de plug-in |
+| plugIn | Integer | → | Número de plug-in |
| Resultado | Text | ← | Nome do grupo associado ao plug-in |
@@ -39,6 +39,6 @@ Passe no parâmetro *plugIn* o número do plug-in do que deseja conhecer o grupo
| | |
| --- | --- |
| Número do comando | 846 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
index 6d20804eea0d28..d105442618ba06 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/get-pointer
displayed_sidebar: docs
---
-**Get pointer** ( *nomeVar* ) : Pointer
+**Get pointer** ( *nomeVar* : Text ) : Pointer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeVar | Text | → | Nome da variável processo ou interprocesso |
+| nomeVar | Text | → | Nome da variável processo ou interprocesso |
| Resultado | Pointer | ← | Ponteiro a variável processo ou interprocesso |
@@ -56,6 +56,6 @@ Usando ponteiros para elementos de arrays bi-dimensionais:
| | |
| --- | --- |
| Número do comando | 304 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
index 6546b0ff48a337..1b364a984e1b39 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-marker.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-marker
displayed_sidebar: docs
---
-**Get print marker** ( *numeroMarc* ) : Integer
+**Get print marker** ( *numeroMarc* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numeroMarc | Integer | → | Número de marcador |
+| numeroMarc | Integer | → | Número de marcador |
| Resultado | Integer | ← | Posição do marcador |
@@ -66,6 +66,6 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md).
| | |
| --- | --- |
| Número do comando | 708 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
index 169875a3f82d3c..982a312517c180 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-option.md
@@ -5,11 +5,11 @@ slug: /commands/get-print-option
displayed_sidebar: docs
---
-**GET PRINT OPTION** ( *opção* ; *valor1* {; *valor2*} )
+**GET PRINT OPTION** ( *opção* : Integer ; *valor1* : Integer, Text {; *valor2* : Integer, Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opção | Integer | → | Número de opção ou código de opção PDF |
+| opção | Integer | → | Número de opção ou código de opção PDF |
| valor1 | Integer, Text | ← | Valor 1 da opção |
| valor2 | Integer, Text | ← | Valor 2 da opção |
@@ -55,7 +55,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 734 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
index df3df71de2226d..4e0b15e0cbaba6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que o usuário pode modificar esta opção antes de validar a caixa de diá
| | |
| --- | --- |
| Número do comando | 1197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
index 71cc5d4842098e..0680582d0f075b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-area.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-area
displayed_sidebar: docs
---
-**GET PRINTABLE AREA** ( *altura* {; *largura*} )
+**GET PRINTABLE AREA** ( *altura* : Integer {; *largura* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -44,6 +44,6 @@ Para saber o tamanho total da página, pode:
| | |
| --- | --- |
| Número do comando | 703 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
index c2ef6a0959007e..e7db742731d8d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printable-margin.md
@@ -5,7 +5,7 @@ slug: /commands/get-printable-margin
displayed_sidebar: docs
---
-**GET PRINTABLE MARGIN** ( *esquerda* ; *superior* ; *direita* ; *inferior* )
+**GET PRINTABLE MARGIN** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -49,6 +49,6 @@ Por padrão, em 4D o cálculo das impressões é realizada baseada nas “margen
| | |
| --- | --- |
| Número do comando | 711 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
index 524d406c7bcc1d..1f8c94d59201de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ As margens de impressão direita e esquerda não influem no valor devolvido, dif
| | |
| --- | --- |
| Número do comando | 702 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
index d794e86b1004d6..19e378f046c882 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-process-variable.md
@@ -5,12 +5,12 @@ slug: /commands/get-process-variable
displayed_sidebar: docs
---
-**GET PROCESS VARIABLE** ( *processo* ; *srcVar* ; *dstVar* {; *srcVar2* ; *dstVar2* ; ... ; *srcVarN* ; *dstVarN*} )
+**GET PROCESS VARIABLE** ( *processo* : Integer ; *srcVar* : Variable ; *dstVar* : Variable {; ...(*srcVar* : Variable, *dstVar* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo da fonte |
-| srcVar | Variable | → | Variável fonte |
+| processo | Integer | → | Número de processo da fonte |
+| srcVar | Variable | → | Variável fonte |
| dstVar | Variable | ← | Variável destino |
@@ -123,6 +123,6 @@ Ver o exemplo do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 371 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
index 76fcb5df5e07de..8ab7e306bd34b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-destination.md
@@ -5,7 +5,7 @@ slug: /commands/get-query-destination
displayed_sidebar: docs
---
-**GET QUERY DESTINATION** ( *destinoTipo* ; *destinoObjeto* ; *destinoPont* )
+**GET QUERY DESTINATION** ( *destinoTipo* : Integer ; *destinoObjeto* : Text ; *destinoPont* : Pointer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -62,6 +62,6 @@ Queremos modificar temporariamente o destino de pesquisa e restabelecer os parâ
| | |
| --- | --- |
| Número do comando | 1155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
index ded8ef123cab27..e65efcc091f3ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defeito, caso nenhum limite tenha sido definido, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
index 943c26d4959e0b..3a2b95bfa2a368 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-registered-clients.md
@@ -5,7 +5,7 @@ slug: /commands/get-registered-clients
displayed_sidebar: docs
---
-**GET REGISTERED CLIENTS** ( *listaClientes* ; *metodos* )
+**GET REGISTERED CLIENTS** ( *listaClientes* : Text array ; *metodos* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -52,7 +52,7 @@ Consulte o exemplo do comando [REGISTER CLIENT](register-client.md).
| | |
| --- | --- |
| Número do comando | 650 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
index ae3c0b5cdf1236..9ae2478e42deae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-relation-properties.md
@@ -5,12 +5,12 @@ slug: /commands/get-relation-properties
displayed_sidebar: docs
---
-**GET RELATION PROPERTIES** ( *pontCampo* ; *tabelaUm* ; *numCampo* {; *discriminante* {; *autoUm* {; *autoMuitos*}}} )
**GET RELATION PROPERTIES** ( *numTabela* ; *numCampo* ; *tabelaUm* ; *campoUmo* {; *discriminante* {; *autoUm* {; *autoMuitos*}}} )
+**GET RELATION PROPERTIES** ( *pontCampo* : Ponteiro, Inteiro longo ; *tabelaUm* : Integer ; *numCampo* : Integer {; *discriminante* : Integer {; *autoUm* : Boolean {; *autoMuitos* : Boolean}}} )
**GET RELATION PROPERTIES** ( *numTabela* : Ponteiro, Inteiro longo ; *numCampo* : Integer ; *tabelaUm* : Integer ; *campoUmo* : Integer {; *discriminante* : Integer {; *autoUm* : Boolean {; *autoMuitos* : Boolean}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro de campo ou número da tabela |
-| numCampo | Integer | → | Número de campo se o número da tabela for passado como primeiro parâmetro |
+| pontCampo|numTabela | Ponteiro, Inteiro longo | → | Ponteiro de campo ou número da tabela |
+| numCampo | Integer | → | Número de campo se o número da tabela for passado como primeiro parâmetro |
| tabelaUm | Integer | ← | Nº de tabela ou 0 se nenhuma relação tiver sido definido para o campo |
| campoUmo | Integer | ← | Número de campo ou 0 se nenhuma relação for definida para o campo. |
| discriminante | Integer | ← | Número de campo discriminante ou 0 se nenhum campo |
@@ -47,6 +47,6 @@ Quando o comando tiver sido executado:
| | |
| --- | --- |
| Número do comando | 686 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
index e1fc5dac328f38..29eb26e15d4448 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-name.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-name
displayed_sidebar: docs
---
-**Get resource name** ( *resTipo* ; *resNum* {; *resArquivo*} ) : Text
+**Get resource name** ( *resTipo* : Text ; *resNum* : Integer {; *resArquivo* : Time} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resTipo | Text | → | tipo de resource de 4 caracteres |
-| resNum | Integer | → | Número resource |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resTipo | Text | → | tipo de resource de 4 caracteres |
+| resNum | Integer | → | Número resource |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
| Resultado | Text | ← | Nome do recurso |
@@ -30,6 +30,6 @@ Se o recurso não existir, Get resource name retorna uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 513 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
index 2c65e9421c07a7..0abe31d69e4646 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource-properties.md
@@ -5,13 +5,13 @@ slug: /commands/get-resource-properties
displayed_sidebar: docs
---
-**Get resource properties** ( *resTipo* ; *resNum* {; *resArquivo*} ) : Integer
+**Get resource properties** ( *resTipo* : Text ; *resNum* : Integer {; *resArquivo* : Time} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resTipo | Text | → | tipo de resource de 4 caracteres |
-| resNum | Integer | → | Número do resource |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resTipo | Text | → | tipo de resource de 4 caracteres |
+| resNum | Integer | → | Número do resource |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
| Resultado | Integer | ← | Atributos dos resources |
@@ -40,7 +40,7 @@ A variável sistema OK toma o valor 0 se o recurso não existir, do contrário a
| | |
| --- | --- |
| Número do comando | 515 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
index 174aaacd4de478..39e2bdc56eb762 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-resource.md
@@ -5,15 +5,14 @@ slug: /commands/get-resource
displayed_sidebar: docs
---
-**GET RESOURCE** ( *resTipo* ; *resNum* ; *resDados* {; *resArquivo*} )
+**GET RESOURCE** ( *resTipo* : Text ; *resNum* : Integer ; *resDados* : Blob {; *resArquivo* : Time} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resTipo | Text | → | tipo de resource de 4 caracteres |
-| resNum | Integer | → | Número do recurso |
-| resDados | Blob | → | Campo BLOB ou variável para receber os dados |
-| ← | Conteúdos do resource |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resTipo | Text | → | tipo de resource de 4 caracteres |
+| resNum | Integer | → | Número do recurso |
+| resDados | Blob | ↔ | *in:* BLOB field or variable to receive the data
*out:* Contents of the resource |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
@@ -33,9 +32,6 @@ Se passa um número de referência de arquivo de recursos válido em *resArquivo
Lembre que trabalha com recursos baseados em Mac OS. Sem importar a plataforma, os valores internos dos recursos como os Inteiros Longos são armazenados usando ordenação de bytes ("byte ordering") Macintosh. No Windows, para os dados dos recursos padrão (tais como os recursos listas de cadeias e os recursos imagens) a ordenação de bytes é automaticamente inversa ("byte swapping") quando for necessário. Por outra parte, se criar e utilizar suas próprias estruturas de dados internas, você decide se aplica a ordenação inversa aos dados que extraiu do BLOB (por exemplo, ao passar Macintosh byte ordering a um comando como [BLOB to longint](blob-to-longint.md "BLOB to longint")).
-## Exemplo
-
-Ver o exemplo do comando SET RESOURCE.
## Variáveis e conjuntos do sistema
@@ -54,7 +50,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 508 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
index 879de675dcac71..fd5dd3c0bee2c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-selected-menu-item-parameter.md
@@ -31,6 +31,6 @@ Se nenhuma linha de menu for selecionada, o comando retorna uma cadeia vazia"".
| | |
| --- | --- |
| Número do comando | 1005 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
index 03ecb18b8483f2..91e3ae956ca80e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-serial-port-mapping.md
@@ -5,7 +5,7 @@ slug: /commands/get-serial-port-mapping
displayed_sidebar: docs
---
-**GET SERIAL PORT MAPPING** ( *numArray* ; *arrayNome* )
+**GET SERIAL PORT MAPPING** ( *numArray* : Integer array ; *arrayNome* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Este método de projeto pode ser usado para tratar a mesma porta serial (sem pro
| | |
| --- | --- |
| Número do comando | 909 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
index 5ccb43af28ac60..342f8f2be83a9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-string-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-string-resource
displayed_sidebar: docs
---
-**Get string resource** ( *resNum* {; *resArquivo*} ) : Text
+**Get string resource** ( *resNum* : Integer {; *resArquivo* : Time} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número do resource |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resNum | Integer | → | Número do resource |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
| Resultado | Text | ← | Conteúdos do resource STR |
@@ -48,7 +48,7 @@ A variável sistema OK toma o valor 1 se for encontrado o recurso, do contrário
| | |
| --- | --- |
| Número do comando | 506 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
index 82aca824762ce3..8d9ffe65f2e848 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-style-sheet-info.md
@@ -5,11 +5,11 @@ slug: /commands/get-style-sheet-info
displayed_sidebar: docs
---
-**GET STYLE SHEET INFO** ( *nomeFolhaEstilo* ; *fonte* ; *tam* ; *estilos* )
+**GET STYLE SHEET INFO** ( *nomeFolhaEstilo* : Text ; *fonte* : Text ; *tam* : Integer ; *estilos* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeFolhaEstilo | Text | → | Nome da folha de estilo |
+| nomeFolhaEstilo | Text | → | Nome da folha de estilo |
| fonte | Text | ← | Tipo de fonte |
| tam | Integer | ← | Tamanho de fonte |
| estilos | Integer | ← | Valor do estilo |
@@ -70,7 +70,7 @@ Se quiser conhecer a configuração atual da folha de estilo "Automatic"
| | |
| --- | --- |
| Número do comando | 1256 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
index 66c2e8eacb76c1..7841c64e49945d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-subrecord-key.md
@@ -5,11 +5,11 @@ slug: /commands/get-subrecord-key
displayed_sidebar: docs
---
-**Get subrecord key** ( *idField* ) : Integer
+**Get subrecord key** ( *idField* : Field ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| idField | Field | → | "Subtable Relation" or "Longint" type field of a former subtable relation |
+| idField | Field | → | "Subtable Relation" or "Longint" type field of a former subtable relation |
| Resultado | Integer | ← | Internal key of relation |
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número do comando | 1137 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
index ee8a20a5b3a8bf..17c996f41165a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-system-format.md
@@ -5,11 +5,11 @@ slug: /commands/get-system-format
displayed_sidebar: docs
---
-**GET SYSTEM FORMAT** ( *formato* ; *valor* )
+**GET SYSTEM FORMAT** ( *formato* : Integer ; *valor* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| formato | Integer | → | Formato de sistema a recuperar |
+| formato | Integer | → | Formato de sistema a recuperar |
| valor | Text | ← | Formato de sistema a recuperar |
@@ -48,6 +48,6 @@ No parâmetro *formato*, passe o tipo do parâmetro do qual queira conhecer o va
| | |
| --- | --- |
| Número do comando | 994 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
index 6b24de1b0d5065..5bbe7427b9a33d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-table-properties
displayed_sidebar: docs
---
-**GET TABLE PROPERTIES** ( *ponTabela* ; *invisible* {; *trigSalvarNovo* {; *trigSalvarRegistro* {; *trigApagarRegistro* {; *trigCarregarRegistro*}}}} )
**GET TABLE PROPERTIES** ( *NumTabela* ; *invisible* {; *trigSalvarNovo* {; *trigSalvarRegistro* {; *trigApagarRegistro* {; *trigCarregarRegistro*}}}} )
+**GET TABLE PROPERTIES** ( *ponTabela* : Ponteiro, Inteiro longo ; *invisible* {; *trigSalvarNovo* : Boolean {; *trigSalvarRegistro* : Boolean {; *trigApagarRegistro* : Boolean {; *trigCarregarRegistro* : Boolean}}}} )
**GET TABLE PROPERTIES** ( *NumTabela* : Ponteiro, Inteiro longo ; *invisible* {; *trigSalvarNovo* : Boolean {; *trigSalvarRegistro* : Boolean {; *trigApagarRegistro* : Boolean {; *trigCarregarRegistro* : Boolean}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ponTabela|NumTabela | Ponteiro, Inteiro longo | → | Ponteiro de tabela ou número de tabela |
+| ponTabela|NumTabela | Ponteiro, Inteiro longo | → | Ponteiro de tabela ou número de tabela |
| invisivel | Boolean | ← | True = invisível, False = visível |
| trigSalvarNovo | Boolean | ← | True = Trigger "On saving new record" ativado; senão, False |
| trigSalvarRegistro | Boolean | ← | True = Trigger "On saving an existing record" ativado; senão, False |
@@ -40,6 +40,6 @@ Una vez executado o comando:
| | |
| --- | --- |
| Número do comando | 687 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
index cf5139fa4e25eb..f804acc9b0cc08 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-table-titles.md
@@ -5,7 +5,7 @@ slug: /commands/get-table-titles
displayed_sidebar: docs
---
-**GET TABLE TITLES** ( *tituloTabelas* ; *numTabelas* )
+**GET TABLE TITLES** ( *tituloTabelas* : Text array ; *numTabelas* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ Em ambos os casos, o comando não retorna as tabelas invisíveis.
| | |
| --- | --- |
| Número do comando | 803 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
index efb5c5e11b840c..13f6087193bdc0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Se o texto for extraído corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 524 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
index 370da681a4f423..64a66560e6c83d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-keywords.md
@@ -5,13 +5,13 @@ slug: /commands/get-text-keywords
displayed_sidebar: docs
---
-**GET TEXT KEYWORDS** ( *texto* ; *arrPalavrasChaves* {; *} )
+**GET TEXT KEYWORDS** ( *texto* : Text ; *arrPalavrasChaves* : Text array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| texto | Text | → | Texto original |
+| texto | Text | → | Texto original |
| arrPalavrasChaves | Text array | ← | Array que contém as palavras-chave |
-| * | Operador | → | Se passado = palavras únicas |
+| * | Operador | → | Se passado = palavras únicas |
@@ -89,6 +89,6 @@ Para contar as palavras de um texto:
| | |
| --- | --- |
| Número do comando | 1141 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
index 504322c4e32e52..0d9fdacb5fc75e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-text-resource.md
@@ -5,12 +5,12 @@ slug: /commands/get-text-resource
displayed_sidebar: docs
---
-**Get text resource** ( *resNum* {; *resArquivo*} ) : Text
+**Get text resource** ( *resNum* : Integer {; *resArquivo* : Time} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNum | Integer | → | Número de resource |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resNum | Integer | → | Número de resource |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
| Resultado | Text | ← | Conteúdos do resource TEXT |
@@ -47,7 +47,7 @@ Se o recurso for encontrado, OK assume o valor 1\. Do contrário, assume o valor
| | |
| --- | --- |
| Número do comando | 504 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
index 947d52b62fdf37..e694346932f315 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-list.md
@@ -5,7 +5,7 @@ slug: /commands/get-user-list
displayed_sidebar: docs
---
-**GET USER LIST** ( *nomUsuarios* ; *numUsuarios* )
+**GET USER LIST** ( *nomUsuarios* : Text array ; *numUsuarios* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -41,7 +41,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER LIST ou se
| | |
| --- | --- |
| Número do comando | 609 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
index d52547c37bfa70..010f18db80263c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-user-properties.md
@@ -5,11 +5,11 @@ slug: /commands/get-user-properties
displayed_sidebar: docs
---
-**GET USER PROPERTIES** ( *refUsuario* ; *nome* ; *inicio* ; *senha* ; *numLogin* ; *ultLogin* {; *adesao* {; *propGrupo*}} )
+**GET USER PROPERTIES** ( *refUsuario* : Integer ; *nome* : Text ; *inicio* : Text ; *senha* : Text ; *numLogin* : Integer ; *ultLogin* : Date {; *adesao* : Integer array {; *propGrupo* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Nº de referência de usuário |
+| refUsuario | Integer | → | Nº de referência de usuário |
| nome | Text | ← | Nome de usuário |
| inicio | Text | ← | Nome de método de início |
| senha | Text | ← | Sempre é uma cadeia vazia |
@@ -60,7 +60,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER PROPERTIES
| | |
| --- | --- |
| Número do comando | 611 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
index b193f755c93ab7..d3ca16648a894a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-rect.md
@@ -5,7 +5,7 @@ slug: /commands/get-window-rect
displayed_sidebar: docs
---
-**GET WINDOW RECT** ( *esquerda* ; *superior* ; *direita* ; *inferior* {; *janela*} )
+**GET WINDOW RECT** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer {; *janela* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -13,7 +13,7 @@ displayed_sidebar: docs
| superior | Integer | ← | Coordenada superior da área de conteúdo da janela |
| direita | Integer | ← | Coordenada direita da área de conteúdo da janela |
| inferior | Integer | ← | Coordenada inferior da área de conteúdo da janela |
-| janela | Integer | → | Número de referência de janela; ou janela do primeiro plano do processo atual, se omitido; ou janela MDI se for -1 (Windows) |
+| janela | Integer | → | Número de referência de janela; ou janela do primeiro plano do processo atual, se omitido; ou janela MDI se for -1 (Windows) |
@@ -41,6 +41,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md)..
| | |
| --- | --- |
| Número do comando | 443 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
index f49ab2f2865e1d..ef208ed9e791c3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/get-window-title.md
@@ -5,11 +5,11 @@ slug: /commands/get-window-title
displayed_sidebar: docs
---
-**Get window title** {( *janela* )} : Text
+**Get window title** ( *janela* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
| Resultado | Text | ← | Título da janela |
@@ -33,6 +33,6 @@ Ver exemplo do comando [SET WINDOW TITLE](set-window-title.md).
| | |
| --- | --- |
| Número do comando | 450 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
index c342d4f0233d59..b00b25c96da2b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-object.md
@@ -5,12 +5,12 @@ slug: /commands/goto-object
displayed_sidebar: docs
---
-**GOTO OBJECT** ( {* ;} *objeto* )
+**GOTO OBJECT** ( {* ;} *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado = objeto é um nome de objeto (string). Se omitido = objeto é um campo ou uma variável |
-| objeto | Field, Variable | → | Nome de objeto (se * for especificado) ou Campo ou Variável (se * for omitido) ao que se vai |
+| * | Operador | → | Se especificado = objeto é um nome de objeto (string). Se omitido = objeto é um campo ou uma variável |
+| objeto | Field, Variable | → | Nome de objeto (se * for especificado) ou Campo ou Variável (se * for omitido) ao que se vai |
@@ -55,6 +55,6 @@ Veja o exemplo do comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número do comando | 206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
index 6c2c2ff463a86a..f9e5696a938e4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-record
displayed_sidebar: docs
---
-**GOTO RECORD** ( {*tabela* ;} *registro* )
+**GOTO RECORD** ( {*tabela* : Table ;} *registro* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual ir ao registro, ou tabela padrão, se omitido |
-| registro | Integer | → | Número retornado pelo número de Registro |
+| tabela | Table | → | Tabela para a qual ir ao registro, ou tabela padrão, se omitido |
+| registro | Integer | → | Número retornado pelo número de Registro |
@@ -35,7 +35,7 @@ Veja o exemplo para Record Number.
| | |
| --- | --- |
| Número do comando | 242 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
index 2fefbcb8894f0a..2fa1b58d02959d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-selected-record.md
@@ -5,12 +5,12 @@ slug: /commands/goto-selected-record
displayed_sidebar: docs
---
-**GOTO SELECTED RECORD** ( {*tabela* ;} *posicao* )
+**GOTO SELECTED RECORD** ( {*tabela* : Table ;} *posicao* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual ir ao registro selecionado ou Tabela por padrão, se omitida |
-| posicao | Integer | → | Posição do registro na seleção |
+| tabela | Table | → | Tabela na qual ir ao registro selecionado ou Tabela por padrão, se omitida |
+| posicao | Integer | → | Posição do registro na seleção |
@@ -65,7 +65,7 @@ O seguinte método de objeto para *atNomes* seleciona o registro correto na sele
| | |
| --- | --- |
| Número do comando | 245 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
index cd35dbee0c0cd3..fd8e4bf7e49289 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/goto-xy.md
@@ -5,12 +5,12 @@ slug: /commands/goto-xy
displayed_sidebar: docs
---
-**GOTO XY** ( *x* ; *y* )
+**GOTO XY** ( *x* : Integer ; *y* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| x | Integer | → | posição x (horizontal) do cursor |
-| y | Integer | → | posição y (vertical) do cursor |
+| x | Integer | → | posição x (horizontal) do cursor |
+| y | Integer | → | posição y (vertical) do cursor |
@@ -64,6 +64,6 @@ Mostra a janela a seguir (em Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número do comando | 161 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
index d76b55524762b1..3dc645995bfb2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph-settings.md
@@ -5,19 +5,19 @@ slug: /commands/graph-settings
displayed_sidebar: docs
---
-**GRAPH SETTINGS** ( *graf* ; *xmin* ; *xmax* ; *ymin* ; *ymax* ; *xprop* ; *xgrid* ; *ygrid* ; *titulo* {; *titulo2* ; ... ; *tituloN*} )
+**GRAPH SETTINGS** ( *graf* : Picture ; *xmin* : Integer, Date, Time ; *xmax* : Integer, Date, Time ; *ymin* : Integer ; *ymax* : Integer ; *xprop* : Boolean ; *xgrid* : Boolean ; *ygrid* : Boolean ; *titulo* : Text {; *...titulo* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| graf | Picture | → | Área da gráfica ou da variável imagem |
-| xmin | Integer, Date, Time | → | Valor mínimo do eixo das x para gráfico proporcional (linhas ou pontos somente) |
-| xmax | Integer, Date, Time | → | Valor máximo do eixo das x para gráfico proporcional (linhas ou pontos somente) |
-| ymin | Integer | → | Valor mínimo do eixo y |
-| ymax | Integer | → | Valor máximo do eixo y |
-| xprop | Boolean | → | TRUE para eixo x proporcional; FALSE para eixo x normal (linhas ou pontos somente) |
-| xgrid | Boolean | → | TRUE para grade eixo x; FALSE para não grade no eixo x (somente se xprop é TRUE) |
-| ygrid | Boolean | → | TRUE para a grade do eixo y; FALSE para as grades que não forem do eixo y |
-| titulo | Text | → | Título para a legenda do gráfico |
+| graf | Picture | → | Área da gráfica ou da variável imagem |
+| xmin | Integer, Date, Time | → | Valor mínimo do eixo das x para gráfico proporcional (linhas ou pontos somente) |
+| xmax | Integer, Date, Time | → | Valor máximo do eixo das x para gráfico proporcional (linhas ou pontos somente) |
+| ymin | Integer | → | Valor mínimo do eixo y |
+| ymax | Integer | → | Valor máximo do eixo y |
+| xprop | Boolean | → | TRUE para eixo x proporcional; FALSE para eixo x normal (linhas ou pontos somente) |
+| xgrid | Boolean | → | TRUE para grade eixo x; FALSE para não grade no eixo x (somente se xprop é TRUE) |
+| ygrid | Boolean | → | TRUE para a grade do eixo y; FALSE para as grades que não forem do eixo y |
+| titulo | Text | → | Título para a legenda do gráfico |
@@ -48,6 +48,6 @@ Ver o exemplo do comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número do comando | 298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
index e59e3af8edc00c..0e87521927f1af 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/graph.md
@@ -5,14 +5,14 @@ slug: /commands/graph
displayed_sidebar: docs
---
-**GRAPH** ( *grafArea* ; *grafNum* ; *xCategorias* {; *yValores*} {; *yValores2* ; ... ; *yValoresN*} )
+**GRAPH** ( *grafArea* : Picture ; *grafNum* : Integer, Object ; *xCategorias* : Array {; *...yValores* : Array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| grafArea | Picture | → | Area do gráfico ou variável da imagem |
-| grafNum | Integer, Object | → | Número do tipo do gráfico |
-| xCategorias | Array | → | Rótulos para o eixo x |
-| yValores | Array | → | Dados para gráfico (até oito permitido) |
+| grafArea | Picture | → | Area do gráfico ou variável da imagem |
+| grafNum | Integer, Object | → | Número do tipo do gráfico |
+| xCategorias | Array | → | Rótulos para o eixo x |
+| yValores | Array | → | Dados para gráfico (até oito permitido) |
@@ -286,6 +286,6 @@ Neste exemplo, personalizamos alguns parâmetros:
| | |
| --- | --- |
| Número do comando | 169 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
index cb311eb8b16d1c..8196824d5bb3fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ O método abaixo mostra um registro em toda a tela (Macintosh) até que dê um c
| | |
| --- | --- |
| Número do comando | 432 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
index 908cd8a71b24cb..d7cc16914b8cdd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-process.md
@@ -5,11 +5,11 @@ slug: /commands/hide-process
displayed_sidebar: docs
---
-**HIDE PROCESS** ( *processo* )
+**HIDE PROCESS** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo ou processo a ocultar |
+| processo | Integer | → | Número de processo ou processo a ocultar |
@@ -41,6 +41,6 @@ O exemplo a seguir oculta todas as janelas que pertencem ao processo atual:
| | |
| --- | --- |
| Número do comando | 324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
index 66c13bd0629d07..6c1b06ee64beff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar isto, no evento formulário On Resize da janela estandarte, é neces
| | |
| --- | --- |
| Número do comando | 434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
index a4127905ca3ea9..a9086fe777b402 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/hide-window.md
@@ -5,11 +5,11 @@ slug: /commands/hide-window
displayed_sidebar: docs
---
-**HIDE WINDOW** {( *janela* )}
+**HIDE WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela ou processo atual da janela de primeiro plano, se omitido |
+| janela | Integer | → | Número de referência da janela ou processo atual da janela de primeiro plano, se omitido |
@@ -51,6 +51,6 @@ Este exemplo corresponde a um método de um botão localizado em um formulário
| | |
| --- | --- |
| Número do comando | 436 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
index 916bcd27723724..78f07144fbf52a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-records.md
@@ -5,13 +5,13 @@ slug: /commands/highlight-records
displayed_sidebar: docs
---
-**HIGHLIGHT RECORDS** ( {*tabela* }{;}{ *nomConjunto* {; *}} )
+**HIGHLIGHT RECORDS** ( {*tabela* : Table }{;}{ *nomConjunto* : Text {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela cujos registros foram selecionados se omitidos, tabela do formulário atual |
-| nomConjunto | Text | → | Conjunto de registros a selecionar ou Userset se omitido |
-| * | Operador | → | Desativar a barra de rolagem automático da lista |
+| tabela | Table | → | Tabela cujos registros foram selecionados se omitidos, tabela do formulário atual |
+| nomConjunto | Text | → | Conjunto de registros a selecionar ou Userset se omitido |
+| * | Operador | → | Desativar a barra de rolagem automático da lista |
@@ -53,6 +53,6 @@ Quando o usuário clicar no botão, aparece a caixa de diálogo padrão procurar
| | |
| --- | --- |
| Número do comando | 656 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
index d823bf4d1b6a9e..572d29f82c5743 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/highlight-text.md
@@ -5,14 +5,14 @@ slug: /commands/highlight-text
displayed_sidebar: docs
---
-**HIGHLIGHT TEXT** ( {* ;} *area* ; *inicioSel* ; *fimSel* )
+**HIGHLIGHT TEXT** ( {* ;} *area* : Field, Variable, any ; *inicioSel* : Integer ; *fimSel* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é um campo ou variável. |
-| area | Field, Variable, any | → | Nome de objeto (se * for especificado), ou campo editável ou variável (se * for omitido) |
-| inicioSel | Integer | → | Posição inicial da seleção de texto |
-| fimSel | Integer | → | Posição final da seleção de texto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é um campo ou variável. |
+| area | Field, Variable, any | → | Nome de objeto (se * for especificado), ou campo editável ou variável (se * for omitido) |
+| inicioSel | Integer | → | Posição inicial da seleção de texto |
+| fimSel | Integer | → | Posição final da seleção de texto |
@@ -67,6 +67,6 @@ Ver o exemplo do comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTROK
| | |
| --- | --- |
| Número do comando | 210 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
index 9ee51b18ccaf3e..7372d233a6bed9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/http-authenticate
displayed_sidebar: docs
---
-**HTTP AUTHENTICATE** ( *nome* ; *senha* {; *metodoAut*} {; *} )
+**HTTP AUTHENTICATE** ( *nome* : Text ; *senha* : Text {; *metodoAut* : Integer} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nome | Text | → | Nome de usuário |
-| senha | Text | → | Senha de usuário |
-| metodoAut | Integer | → | Método de autenticação: 0 ou se omite = não definido, 1 = BASIC, 2 = DIGEST |
-| * | Operador | → | Se passado: autenticação por proxy |
+| nome | Text | → | Nome de usuário |
+| senha | Text | → | Senha de usuário |
+| metodoAut | Integer | → | Método de autenticação: 0 ou se omite = não definido, 1 = BASIC, 2 = DIGEST |
+| * | Operador | → | Se passado: autenticação por proxy |
@@ -64,6 +64,6 @@ Exemplos de petições com autenticação:
| | |
| --- | --- |
| Número do comando | 1161 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
index 5cee8662407e03..2b6e35efaef802 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1307 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
index 13242a8232c3c4..26296a766671e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/http-get-option
displayed_sidebar: docs
---
-**HTTP GET OPTION** ( *opção* ; *valor* )
+**HTTP GET OPTION** ( *opção* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opção | Integer | → | Código da opção a ler |
+| opção | Integer | → | Código da opção a ler |
| valor | Integer | ← | Valor atual da opção |
@@ -50,6 +50,6 @@ No parâmetro *valor*, passe uma variável para receber o valor atual da *opçã
| | |
| --- | --- |
| Número do comando | 1159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
index e35fa93fd6dc4c..0398a2fef2e550 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-get.md
@@ -5,17 +5,15 @@ slug: /commands/http-get
displayed_sidebar: docs
---
-**HTTP Get** ( *url* ; *resposta* {; *nomesCab* ; *valoresCab*}{; *} ) : Integer
+**HTTP Get** ( *url* : Text ; *resposta* : Text, Blob, Picture, Object {; *nomesCab* : Text array ; *valoresCab* : Text array}{; *} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| url | Text | → | URL ao qual enviar o pedido |
+| url | Text | → | URL ao qual enviar o pedido |
| resposta | Text, Blob, Picture, Object | ← | Resposta da solicitação |
-| nomesCab | Text array | → | Nomes dos cabeçalhos da solicitação |
-| ← | Nomes dos cabeçalhos devolvidos |
-| valoresCab | Text array | → | Valores dos cabeçalhos da solicitação |
-| ← | Valores dos cabeçalhos devolvidos |
-| * | Operador | → | Se passado, a conexão se mantém (keep-alive)Se omitida,a conexão é fechada automaticamente |
+| nomesCab | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valoresCab | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Operador | → | Se passado, a conexão se mantém (keep-alive)Se omitida,a conexão é fechada automaticamente |
| Resultado | Integer | ← | Código de estado HTTP |
@@ -110,7 +108,7 @@ Recuperação de um vídeo:
| | |
| --- | --- |
| Número do comando | 1157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
index 292bafd5491037..1855e14f84f7e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-request.md
@@ -5,19 +5,17 @@ slug: /commands/http-request
displayed_sidebar: docs
---
-**HTTP Request** ( *metodoHTTP* ; *url* ; *conteúdo* ; *resultado* {; *nomCab* ; *valCab*}{; *} ) : Integer
+**HTTP Request** ( *metodoHTTP* : Text ; *url* : Text ; *conteúdo* : Text, Blob, Picture, Object ; *resultado* : Integer {; *nomCab* : Text array ; *valCab* : Text array}{; *} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| metodoHTTP | Text | → | Método HTTP para a solicitação |
-| url | Text | → | URL à qual enviar a solicitação |
-| conteúdo | Text, Blob, Picture, Object | → | Conteúdo do corpo(body)da solicitação |
+| metodoHTTP | Text | → | Método HTTP para a solicitação |
+| url | Text | → | URL à qual enviar a solicitação |
+| conteúdo | Text, Blob, Picture, Object | → | Conteúdo do corpo(body)da solicitação |
| resultado | Text, Blob, Picture, Object | ← | Resultado da solicitação |
-| nomCab | Text array | → | Nomes dos cabeçalhos da solicitação |
-| ← | Nomes dos cabeçalhos devolvidos |
-| valCab | Text array | → | Valores dos cabeçalhos da solicitação |
-| ← | Valores dos cabeçalhos devolvidos |
-| * | Operador | → | Se passada, a conexão se mantém (keep-alive)Se omitida, a conexão é fechada automaticamente. |
+| nomCab | Text array | ↔ | *in:* Header names of the request
*out:* Returned header names |
+| valCab | Text array | ↔ | *in:* Header values of the request
*out:* Returned header values |
+| * | Operador | → | Se passada, a conexão se mantém (keep-alive)Se omitida, a conexão é fechada automaticamente. |
| Resultado | Integer | ← | Código de estado HTTP |
@@ -133,6 +131,6 @@ Petição para adicionar um registro em JSON a um banco de dados remoto:
| | |
| --- | --- |
| Número do comando | 1158 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
index a653ea6cdcca24..0792b495ab0a07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-certificates-folder.md
@@ -5,11 +5,11 @@ slug: /commands/http-set-certificates-folder
displayed_sidebar: docs
---
-**HTTP SET CERTIFICATES FOLDER** ( *pastaCertificados* )
+**HTTP SET CERTIFICATES FOLDER** ( *pastaCertificados* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pastaCertificados | Text | → | Caminho e nome da pasta de certificados do cliente |
+| pastaCertificados | Text | → | Caminho e nome da pasta de certificados do cliente |
@@ -62,6 +62,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1306 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
index 671cbcd08ff909..dcd6342041ea1b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/http-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/http-set-option
displayed_sidebar: docs
---
-**HTTP SET OPTION** ( *opção* ; *valor* )
+**HTTP SET OPTION** ( *opção* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opção | Integer | → | Código da opção a definir |
-| valor | Integer | → | Valor da opção |
+| opção | Integer | → | Código da opção a definir |
+| valor | Integer | → | Valor da opção |
@@ -51,6 +51,6 @@ Não importa a ordem das opções de chamada. Se a mesma opção é definida mai
| | |
| --- | --- |
| Número do comando | 1160 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
index e5a035f59db46a..312bd4da7cbc19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/idle.md
@@ -57,6 +57,6 @@ com:
| | |
| --- | --- |
| Número do comando | 311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
index d25ae7c9b5ef71..bb2aba9ed29c41 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-data.md
@@ -5,14 +5,13 @@ slug: /commands/import-data
displayed_sidebar: docs
---
-**IMPORT DATA** ( *nomeArquivo* {; *projeto* {; *}} )
+**IMPORT DATA** ( *nomeArquivo* : Text {; *projeto* : Text, Blob {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Rota de acesso do arquivo importado |
-| projeto | Text, Blob | → | Conteúdo do projeto importado |
-| ← | Novos conteúdos do projeto importado (se o parâmetro * foi passado) |
-| * | Operador | → | Exibir a caixa de diálogo importada e atualiza o projeto |
+| nomeArquivo | Text | → | Rota de acesso do arquivo importado |
+| projeto | Text, Blob | ↔ | *in:* Contents of the import project
*out:* New contents of the import project (if the * parameter has been passed) |
+| * | Operador | → | Exibir a caixa de diálogo importada e atualiza o projeto |
@@ -52,7 +51,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo de salvar arquivos ou
| | |
| --- | --- |
| Número do comando | 665 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
index 51d18f5f56b4a8..8ceafbc41a3e7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-dif.md
@@ -5,12 +5,12 @@ slug: /commands/import-dif
displayed_sidebar: docs
---
-**IMPORT DIF** ( {*tabela* ;} *documento* )
+**IMPORT DIF** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual se importarão os dados, ou a tabela Padrão, se omitido |
-| documento | Text | → | documento DIF a importar |
+| tabela | Table | → | Tabela para a qual se importarão os dados, ou a tabela Padrão, se omitido |
+| documento | Text | → | documento DIF a importar |
@@ -57,7 +57,7 @@ OK toma o valor 1 se la importação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 86 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
index e9c2afaf93618d..9d284064d6257b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-structure.md
@@ -5,11 +5,11 @@ slug: /commands/import-structure
displayed_sidebar: docs
---
-**IMPORT STRUCTURE** ( *estruturaXML* )
+**IMPORT STRUCTURE** ( *estruturaXML* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| estruturaXML | Text | → | Definição XML da estrutura da base 4D |
+| estruturaXML | Text | → | Definição XML da estrutura da base 4D |
@@ -53,6 +53,6 @@ Você deseja importar uma definição de estrutura guardada na base de dados atu
| | |
| --- | --- |
| Número do comando | 1310 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
index 2cb53441bc3cb9..3a9df77bc5fc8f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-sylk.md
@@ -5,12 +5,12 @@ slug: /commands/import-sylk
displayed_sidebar: docs
---
-**IMPORT SYLK** ( {*tabela* ;} *documento* )
+**IMPORT SYLK** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai importar dados, ou tabela Padrão, se omitido |
-| documento | Text | → | documento SYLK do qual vai importar dados |
+| tabela | Table | → | Tabela na qual vai importar dados, ou tabela Padrão, se omitido |
+| documento | Text | → | documento SYLK do qual vai importar dados |
@@ -57,7 +57,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 87 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
index 74c0fbf8ffa069..b58d761816cdd3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/import-text.md
@@ -5,12 +5,12 @@ slug: /commands/import-text
displayed_sidebar: docs
---
-**IMPORT TEXT** ( {*tabela* ;} *documento* )
+**IMPORT TEXT** ( {*tabela* : Table ;} *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual se importará os dados, ou tabela Padrão, se omitido |
-| documento | Text | → | Documento texto do qual se importará os dados |
+| tabela | Table | → | Tabela para a qual se importará os dados, ou tabela Padrão, se omitido |
+| documento | Text | → | Documento texto do qual se importará os dados |
@@ -59,7 +59,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
index 2438fcc2674190..037e525cd9139d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In break**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 113 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
index 35a43d24490303..f47d895284c5a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In footer** tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
index 72b9063383920e..529959bf005c85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In header**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 112 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
index 107d96c285318d..2338acf38a4250 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Se realiza as operações (adição, modificação, ou eliminação de registros
| | |
| --- | --- |
| Número do comando | 397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
index e0e6e44734192b..7788e3786ae381 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-array.md
@@ -5,13 +5,13 @@ slug: /commands/insert-in-array
displayed_sidebar: docs
---
-**INSERT IN ARRAY** ( *array* ; *onde* {; *quantos*} )
+**INSERT IN ARRAY** ( *array* : Array ; *onde* : Integer {; *quantos* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Nome do array |
-| onde | Integer | → | Onde inserir os elementos |
-| quantos | Integer | → | Número de elementos a serem inseridos, ou 1 elemento se omitido |
+| array | Array | → | Nome do array |
+| onde | Integer | → | Onde inserir os elementos |
+| quantos | Integer | → | Número de elementos a serem inseridos, ou 1 elemento se omitido |
@@ -51,6 +51,6 @@ O exemplo a seguir adiciona um elemento a um array:
| | |
| --- | --- |
| Número do comando | 227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
index 061faeed10e05d..471d16f9d6e354 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-blob.md
@@ -5,14 +5,14 @@ slug: /commands/insert-in-blob
displayed_sidebar: docs
---
-**INSERT IN BLOB** ( *BLOB* ; *offset* ; *len* {; *filler*} )
+**INSERT IN BLOB** ( *BLOB* : Blob ; *offset* : Integer ; *len* : Integer {; *filler* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | BLOB no qual inserir os bytes |
-| offset | Integer | → | Posição de início de inserção dos bytes |
-| len | Integer | → | Número de bytes a ser inserido |
-| filler | Integer | → | Valor de byte padrão (0x00..0xFF) 0x00 se omitido |
+| Blob | Blob | → | BLOB no qual inserir os bytes |
+| offset | Integer | → | Posição de início de inserção dos bytes |
+| len | Integer | → | Número de bytes a ser inserido |
+| filler | Integer | → | Valor de byte padrão (0x00..0xFF) 0x00 se omitido |
@@ -37,6 +37,6 @@ Antes da chamada, você passa no parâmetro *offset* a posição de inserção e
| | |
| --- | --- |
| Número do comando | 559 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
index 14fdab0f65b588..6135aebe9cc7ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-in-list.md
@@ -5,17 +5,17 @@ slug: /commands/insert-in-list
displayed_sidebar: docs
---
-**INSERT IN LIST** ( {* ;} *lista* ; antesElem | * ; *textoElem* ; *refElem* {; *sublista* ; *expandida*} )
+**INSERT IN LIST** ( {* ;} *lista* : Integer, Text ; antesElem | * ; *textoElem* : Text ; *refElem* : Integer {; *sublista* : Integer ; *expandida* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| antesElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| textoElem | Text | → | Texto para o novo elemento (max. 255 caracteres) |
-| refElem | Integer | → | Número de referencia único do novo elemento |
-| sublista | Integer | → | Sub-lista opcional para associar ao novo elemento |
-| expandida | Boolean | → | Indica se a sub-lista será expandida ou contraída |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| antesElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| textoElem | Text | → | Texto para o novo elemento (max. 255 caracteres) |
+| refElem | Integer | → | Número de referencia único do novo elemento |
+| sublista | Integer | → | Sub-lista opcional para associar ao novo elemento |
+| expandida | Boolean | → | Indica se a sub-lista será expandida ou contraída |
@@ -56,6 +56,6 @@ O código a seguir insere um elemento (sem sub-lista associada) justo antes do e
| | |
| --- | --- |
| Número do comando | 625 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
index cd2f923f1a7907..789846b94deea1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-menu-item.md
@@ -5,16 +5,16 @@ slug: /commands/insert-menu-item
displayed_sidebar: docs
---
-**INSERT MENU ITEM** ( *menu* ; *depoisItem* ; *textoElem* {; *subMenu* {; *processo*}}{; *} )
+**INSERT MENU ITEM** ( *menu* : Integer ; *depoisItem* : Integer ; *textoElem* : Text {; *subMenu* : Text {; *processo* : Integer}}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer | → | Número de menu ou menu de referência |
-| depoisItem | Integer | → | Número de item de menu |
-| textoElem | Text | → | Texto para o item de menu a ser inserido |
-| subMenu | Text | → | Referência do submenu associado com o item |
-| processo | Integer | → | Número de referência de processo |
-| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
+| menu | Integer | → | Número de menu ou menu de referência |
+| depoisItem | Integer | → | Número de item de menu |
+| textoElem | Text | → | Texto para o item de menu a ser inserido |
+| subMenu | Text | → | Referência do submenu associado com o item |
+| processo | Integer | → | Número de referência de processo |
+| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
@@ -60,7 +60,7 @@ O exemplo a seguir cria um menu que consiste em dois comandos os quais atribuem
| | |
| --- | --- |
| Número do comando | 412 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
index dbb05ce81a1383..3b1c8ae1833a85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/insert-string.md
@@ -5,13 +5,13 @@ slug: /commands/insert-string
displayed_sidebar: docs
---
-**Insert string** ( *fonte* ; *inserir* ; *posiçao* ) : Text
+**Insert string** ( *fonte* : Text ; *inserir* : Text ; *posiçao* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Text | → | Cadeia na qual vai inserir uma segunda cadeia |
-| inserir | Text | → | Cadeia que será inserida na primeira cadeia |
-| posiçao | Integer | → | Onde vai inserir |
+| fonte | Text | → | Cadeia na qual vai inserir uma segunda cadeia |
+| inserir | Text | → | Cadeia que será inserida na primeira cadeia |
+| posiçao | Integer | → | Onde vai inserir |
| Resultado | Text | ← | Cadeia resultante |
@@ -47,6 +47,6 @@ O seguinte exemplo ilustra o uso de Insert string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md
index 770b084c786323..8672381cf03502 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/int.md
@@ -5,11 +5,11 @@ slug: /commands/int
displayed_sidebar: docs
---
-**Int** ( *numero* ) : Real
+**Int** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número cuja porção inteira é devolvida |
+| numero | Real | → | Número cuja porção inteira é devolvida |
| Resultado | Real | ← | Porção inteira do número |
@@ -36,6 +36,6 @@ O exemplo a seguir ilustra o funcionamento de Int para números positivos e nega
| | |
| --- | --- |
| Número do comando | 8 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
index 2d169191e3b3ca..2d68233ddd0702 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integer-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/integer-to-blob
displayed_sidebar: docs
---
-**INTEGER TO BLOB** ( *inteiro* ; *BLOB* ; *byteOrdem* {; offset | *} )
+**INTEGER TO BLOB** ( *inteiro* : Integer ; *BLOB* : Blob ; *byteOrdem* : Integer {; offset | *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| inteiro | Integer | → | Valor inteiro a escrever no BLOB |
-| Blob | Blob | → | BLOB a receber o valor inteiro |
-| byteOrdem | Integer | → | 0 Ordem de bytes em modo nativo 1 Ordem dos bytes Macintosh 2 Ordem dos bytes PC |
+| inteiro | Integer | → | Valor inteiro a escrever no BLOB |
+| Blob | Blob | → | BLOB a receber o valor inteiro |
+| byteOrdem | Integer | → | 0 Ordem de bytes em modo nativo 1 Ordem dos bytes Macintosh 2 Ordem dos bytes PC |
| offset | * | Variável, Operador | ↔ | Offset expressado em bytes no BLOB ou * para adicionar o valor |
-|||| Novo offset depois de escrita se * for omitido |
+| | | | Novo offset depois de escrita se * for omitido |
@@ -120,6 +120,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
index 7e9cd5964d2427..279cd40250c275 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/integrate-mirror-log-file.md
@@ -5,14 +5,13 @@ slug: /commands/integrate-mirror-log-file
displayed_sidebar: docs
---
-**INTEGRATE MIRROR LOG FILE** ( *viaAcesso* ; *numOperacao* {; *mode* {; *errObject*}} )
+**INTEGRATE MIRROR LOG FILE** ( *viaAcesso* : Text ; *numOperacao* : Real {; *mode* : Integer {; *errObject* : Object}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| viaAcesso | Text | → | Nome ou via de acesso do arquivo de histórico a integrar |
-| numOperacao | Real | → | Número da última operação integrada |
-| ← | Novo Número da última operação integrada |
-| mode | Integer | → | 0 = modo estrito (modo padrão), 1 = modo auto reparo |
+| viaAcesso | Text | → | Nome ou via de acesso do arquivo de histórico a integrar |
+| numOperacao | Real | ↔ | *in:* Number of last operation integrated or -2 to integrate the whole file
*out:* New number of last operation integrated |
+| mode | Integer | → | 0 = modo estrito (modo padrão), 1 = modo auto reparo |
| errObject | Object | ← | Operações com erro |
@@ -108,7 +107,7 @@ Se a integração é efetuada corretamente, a variável sistema OK recebe o valo
| | |
| --- | --- |
| Número do comando | 1312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
index 3d8f35435d8cd1..3fb6b6d3c50b1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/intersection.md
@@ -5,13 +5,13 @@ slug: /commands/intersection
displayed_sidebar: docs
---
-**INTERSECTION** ( *conjunto1* ; *conjunto2* ; *conjuntoResultado* )
+**INTERSECTION** ( *conjunto1* : Text ; *conjunto2* : Text ; *conjuntoResultado* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Primeiro conjunto |
-| conjunto2 | Text | → | Segundo conjunto |
-| conjuntoResultado | Text | → | Conjunto Resultado |
+| conjunto1 | Text | → | Primeiro conjunto |
+| conjunto2 | Text | → | Segundo conjunto |
+| conjuntoResultado | Text | → | Conjunto Resultado |
@@ -54,6 +54,6 @@ O exemplo a seguir pesquisa os clientes que são atendidos por dois representant
| | |
| --- | --- |
| Número do comando | 121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
index 6dc0cdb09414d8..dbb9709f107aff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/invoke-action.md
@@ -5,12 +5,12 @@ slug: /commands/invoke-action
displayed_sidebar: docs
---
-**INVOKE ACTION** ( *ação* {; *alvo*} )
+**INVOKE ACTION** ( *ação* : Text {; *alvo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ação | Text | → | Nome ação padrão ou padrão incluindo parâmetro se exigido |
-| alvo | Integer | → | Define onde executar a ação: formulário atual (padrão) ou formulário principal |
+| ação | Text | → | Nome ação padrão ou padrão incluindo parâmetro se exigido |
+| alvo | Integer | → | Define onde executar a ação: formulário atual (padrão) ou formulário principal |
@@ -69,6 +69,6 @@ Se quiser executar uma ação padrão **Goto page** (página 3) no formulário p
| | |
| --- | --- |
| Número do comando | 1439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
index e366934eac0579..1feacb90a13590 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-list.md
@@ -5,11 +5,11 @@ slug: /commands/is-a-list
displayed_sidebar: docs
---
-**Is a list** ( *lista* ) : Boolean
+**Is a list** ( *lista* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Referência da lista a ser testada |
+| lista | Integer | → | Referência da lista a ser testada |
| Resultado | Boolean | ← | TRUE se a lista é hierárquica e FALSE se não for uma lista hierárquica |
@@ -32,6 +32,6 @@ Ver os exemplos do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 621 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
index 43c9d1e5c4a0e4..1af089618239c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-a-variable.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umPointer | Pointer | → | Ponteiro a ser testado |
+| umPointer | Pointer | → | Ponteiro a ser testado |
| Resultado | Boolean | ← | TRUE= Ponteiro aponta a variável FALSE = Ponteiro não aponta a variável |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
index 63fd806b859f7f..081c4ee4ef8b34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-compiled-mode.md
@@ -5,11 +5,11 @@ slug: /commands/is-compiled-mode
displayed_sidebar: docs
---
-**Is compiled mode** {( * )} : Boolean
+**Is compiled mode** ( * ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Retorna a informação do banco local |
+| * | Operador | → | Retorna a informação do banco local |
| Resultado | Boolean | ← | Compilado (True), Interpretado (False) |
@@ -47,6 +47,6 @@ Em uma de suas rotinas, você inclui a depuração do código apenas quando voc
| | |
| --- | --- |
| Número do comando | 492 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
index 656a98e2497a66..74832e3a6e827a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método vai impedir a abertura do banco de dados se o arquivo de dados esti
| | |
| --- | --- |
| Número do comando | 716 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
index 6be8c97ff4d318..8a9cce7a3cea94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Se quiser permitir que o usuário selecione uma linha começando com a letra ou
| | |
| --- | --- |
| Número do comando | 1744 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
index 1183b9ea2dd329..d47cc31cbf5e39 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-number-valid.md
@@ -5,12 +5,12 @@ slug: /commands/is-field-number-valid
displayed_sidebar: docs
---
-**Is field number valid** ( *pontTabela* ; *numCampo* ) : Boolean
**Is field number valid** ( *numTabela* ; *numCampo* ) : Boolean
+**Is field number valid** ( *pontTabela* : Inteiro longo, Ponteiro ; *numCampo* : Integer ) : Boolean
**Is field number valid** ( *numTabela* : Inteiro longo, Ponteiro ; *numCampo* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
-| numCampo | Integer | → | Número do campo |
+| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
+| numCampo | Integer | → | Número do campo |
| Resultado | Boolean | ← | True = Campo exista na tabela; False = campo não existe na tabela |
@@ -31,6 +31,6 @@ Este comando permite detectar as eventuais eliminações de campos, que criam qu
| | |
| --- | --- |
| Número do comando | 1000 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
index 88206ad17e745e..a65653f44ffca9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-field-value-null.md
@@ -5,11 +5,11 @@ slug: /commands/is-field-value-null
displayed_sidebar: docs
---
-**Is field value Null** ( *campo* ) : Boolean
+**Is field value Null** ( *campo* : Field ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo a ser avaliado |
+| campo | Field | → | Campo a ser avaliado |
| Resultado | Boolean | ← | TRUE = campo é NULL, False = campo não é NULL |
@@ -34,6 +34,6 @@ O valor retornado por esse comando só tem significado se a opção *Mapear valo
| | |
| --- | --- |
| Número do comando | 964 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
index 9e7c67f427e762..5d324a67c3c4a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este exemplo permite ter em conta todos os tipos de impressões:
| | |
| --- | --- |
| Número do comando | 1198 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
index 5d0c1bfdd2e08a..da3047bcc2b9ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/is-in-set
displayed_sidebar: docs
---
-**Is in set** ( *conjunto* ) : Boolean
+**Is in set** ( *conjunto* : Text ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nome do conjunto a testar |
+| conjunto | Text | → | Nome do conjunto a testar |
| Resultado | Boolean | ← | Registro atual está no conjunto (TRUE) ou Registro atual não está no conjunto (FALSE) |
@@ -42,6 +42,6 @@ O seguinte exemplo é um método de objeto de um botão que testa se o registro
| | |
| --- | --- |
| Número do comando | 273 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
index 6950caa2c41e76..4de55322db54cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-license-available.md
@@ -5,11 +5,11 @@ slug: /commands/is-license-available
displayed_sidebar: docs
---
-**Is license available** {( *licença* )} : Boolean
+**Is license available** ( *licença* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| licença | Integer | → | Testar se o plug-in desejado está disponível |
+| licença | Integer | → | Testar se o plug-in desejado está disponível |
| Resultado | Boolean | ← | Verdadeiro se o plug-in estiver disponível, senão False |
@@ -54,6 +54,6 @@ O comando Is license available pode ser utilizado de três maneiras diferentes:
| | |
| --- | --- |
| Número do comando | 714 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
index deae3525fe3eef..28feff871e84f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual for macOS:
| | |
| --- | --- |
| Número do comando | 1572 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
index 813feb4b87e983..a26416bcf6dcb2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-new-record.md
@@ -5,11 +5,11 @@ slug: /commands/is-new-record
displayed_sidebar: docs
---
-**Is new record** {( *tabela* )} : Boolean
+**Is new record** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do registro a ser examinado ou tabela Padrão se o parâmetro é omitido |
+| tabela | Table | → | Tabela do registro a ser examinado ou tabela Padrão se o parâmetro é omitido |
| Resultado | Boolean | ← | Verdadeiro se o registro está sendo criado, ou então Falso |
@@ -46,6 +46,6 @@ As duas instruções a seguir são idênticas. A segunda é recomendada para que
| | |
| --- | --- |
| Número do comando | 668 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
index 079b44674ccc6c..1c5ffa96207a88 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-nil-pointer.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umPointer | Pointer | → | Ponteiros a ser testado |
+| umPointer | Pointer | → | Ponteiros a ser testado |
| Resultado | Boolean | ← | TRUE = ponteiro nulo (->[])FALSE = ponteiro válido a um objeto existente |
@@ -42,6 +42,6 @@ Caso deseje conhecer o nome da variável apontada ou o número do campo, pode ut
| | |
| --- | --- |
| Número do comando | 315 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
index ee7a8cad01a9a3..3cba8b73f91995 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-picture-file.md
@@ -5,12 +5,12 @@ slug: /commands/is-picture-file
displayed_sidebar: docs
---
-**Is picture file** ( *viaArquivo* {; *} ) : Boolean
+**Is picture file** ( *viaArquivo* : Text {; *} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| viaArquivo | Text | → | Rota do arquivo |
-| * | Operador | → | Validar os dados |
+| viaArquivo | Text | → | Rota do arquivo |
+| * | Operador | → | Validar os dados |
| Resultado | Boolean | ← | True = rotaArquivo indica um arquivo de imagem; de outro modo, False |
@@ -34,6 +34,6 @@ Se não passa o parâmetro *\**, o comando prova o arquivo buscando sua extensã
| | |
| --- | --- |
| Número do comando | 1113 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
index 00123c38e55f39..3e786506622455 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-record-loaded.md
@@ -5,11 +5,11 @@ slug: /commands/is-record-loaded
displayed_sidebar: docs
---
-**Is record loaded** {( *tabela* )} : Boolean
+**Is record loaded** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do registro é examinada ou tabela padrão se o parâmetro for omitido |
+| tabela | Table | → | Tabela do registro é examinada ou tabela padrão se o parâmetro for omitido |
| Resultado | Boolean | ← | True se o registro é carregado, de outra maneira é False |
@@ -50,6 +50,6 @@ Ao invés de utilizar as ações automáticas “Seguinte registro” ou “Regi
| | |
| --- | --- |
| Número do comando | 669 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
index 75df7e1a559145..4a57b44a09109d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-table-number-valid.md
@@ -5,11 +5,11 @@ slug: /commands/is-table-number-valid
displayed_sidebar: docs
---
-**Is table number valid** ( *numTabela* ) : Boolean
+**Is table number valid** ( *numTabela* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela | Integer | → | Número de tabela |
+| numTabela | Integer | → | Número de tabela |
| Resultado | Boolean | ← | True = tabela existe no banco de dados; False = tabela não existe no banco de dados |
@@ -30,6 +30,6 @@ Este comando permite detectar as eventuais eliminações de tabelas, que criam q
| | |
| --- | --- |
| Número do comando | 999 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
index 353bab361d62cf..4afbb165eb0ad6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-user-deleted.md
@@ -5,11 +5,11 @@ slug: /commands/is-user-deleted
displayed_sidebar: docs
---
-**Is user deleted** ( *numUsuario* ) : Boolean
+**Is user deleted** ( *numUsuario* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numUsuario | Integer | → | Número de ID de usuário |
+| numUsuario | Integer | → | Número de ID de usuário |
| Resultado | Boolean | ← | TRUE = conta de usuário foi apagada ou não existe; FALSE = Conta de usuário está ativa |
@@ -35,7 +35,7 @@ Se não tiver os privilégios de acesso adequados para chamar Is user deleted ou
| | |
| --- | --- |
| Número do comando | 616 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
index 91643e6f6ae4ae..e534164f19e955 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-waiting-mouse-up.md
@@ -64,6 +64,6 @@ O código abaixo pode ser usado para gerenciar uma propriedade de tracking de mo
| | |
| --- | --- |
| Número do comando | 1422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
index bc0486e55570fe..2fbbe85cf278de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-maximized.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-maximized
displayed_sidebar: docs
---
-**Is window maximized** ( *janela* ) : Boolean
+**Is window maximized** ( *janela* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | número de referência da janela |
+| janela | Integer | → | número de referência da janela |
| Resultado | Boolean | ← | True se a janela estiver maximizada. Se não, False |
@@ -40,6 +40,6 @@ Se quiser mudar entre o estado maximizado e o anterior:
| | |
| --- | --- |
| Número do comando | 1830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
index 745793e9ddb501..73ae9d6549bfef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-window-reduced.md
@@ -5,11 +5,11 @@ slug: /commands/is-window-reduced
displayed_sidebar: docs
---
-**Is window reduced** ( *janela* ) : Boolean
+**Is window reduced** ( *janela* : Integer ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela |
+| janela | Integer | → | Número de referência da janela |
| Resultado | Boolean | ← | true se a janela for reduzida no taskbar ou no dock. Se não, false |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
index aa63fde340e0d2..9ebb36425aaa28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual é Windows:
| | |
| --- | --- |
| Número do comando | 1573 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
index b5ca67ca4e5363..3133d113b5c019 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse-array.md
@@ -5,11 +5,11 @@ slug: /commands/json-parse-array
displayed_sidebar: docs
---
-**JSON PARSE ARRAY** ( *cadeiaJSON* ; *arrayObjeto* )
+**JSON PARSE ARRAY** ( *cadeiaJSON* : Text ; *arrayObjeto* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cadeiaJSON | Text | → | Cadeia JSON a analisar |
+| cadeiaJSON | Text | → | Cadeia JSON a analisar |
| arrayObjeto | Array | ← | Array que contém o resultado da análise da cadeia JSON |
@@ -64,6 +64,6 @@ Neste exemplo, os dados dos campos dos registros de uma tabela se extraem e loca
| | |
| --- | --- |
| Número do comando | 1219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
index d0ec48905c56df..44203d5886dfce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-parse.md
@@ -5,13 +5,13 @@ slug: /commands/json-parse
displayed_sidebar: docs
---
-**JSON Parse** ( *cadeiaJSON* {; *tipo*}{; *} ) : any
+**JSON Parse** ( *cadeiaJSON* : Text {; *tipo* : Integer}{; *} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cadeiaJSON | Text | → | Cadeia em JSON a analisar |
-| tipo | Integer | → | Tipo no qual converter os valores |
-| * | Operador | → | Adiciona uma posição de linha e offset de cada propriedade se o valor retornado for um objeto |
+| cadeiaJSON | Text | → | Cadeia em JSON a analisar |
+| tipo | Integer | → | Tipo no qual converter os valores |
+| * | Operador | → | Adiciona uma posição de linha e offset de cada propriedade se o valor retornado for um objeto |
| Resultado | any, Object | ← | Valores extraídos da cadeia JSON |
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número do comando | 1218 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
index 2ceae240cc999d..805e53bde30438 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-resolve-pointers.md
@@ -5,13 +5,12 @@ slug: /commands/json-resolve-pointers
displayed_sidebar: docs
---
-**JSON Resolve pointers** ( *objeto* {; *opções*} ) : Object
+**JSON Resolve pointers** ( *objeto* : Object {; *opções* : Object} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto que contém os ponteiros JSON a resolver |
-| ← | Objeto com os ponteiros JSON resolvidos (apenas se o resultado for um objeto) |
-| opções | Object | → | Opções para resolução de ponteiro |
+| objeto | Object | ↔ | *in:* Object containing JSON pointers to resolve
*out:* Object with JSON pointers resolved (only if result is an object) |
+| opções | Object | → | Opções para resolução de ponteiro |
| Resultado | Object | ← | Objeto contendo o resultado do processamento |
@@ -236,6 +235,6 @@ Se executar:
| | |
| --- | --- |
| Número do comando | 1478 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
index bfacd8e9bc181e..0b8969edebb881 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify-array.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify-array
displayed_sidebar: docs
---
-**JSON Stringify array** ( *array* {; *} ) : Text
+**JSON Stringify array** ( *array* : Text array, Real array, Boolean array, Pointer array, Object array {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Text array, Real array, Boolean array, Pointer array, Object array | → | Array cujo conteúdo deve ser serializado |
-| * | Operador | → | Melhorar o formato |
+| array | Text array, Real array, Boolean array, Pointer array, Object array | → | Array cujo conteúdo deve ser serializado |
+| * | Operador | → | Melhorar o formato |
| Resultado | Text | ← | Cadeia que contém o array JSON serializado |
@@ -114,6 +114,6 @@ Conversão de uma seleção 4D em um array objeto:
| | |
| --- | --- |
| Número do comando | 1228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
index 99f8addbfbda06..429cac955a765b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-stringify.md
@@ -5,12 +5,12 @@ slug: /commands/json-stringify
displayed_sidebar: docs
---
-**JSON Stringify** ( *valor* {; *} ) : Text
+**JSON Stringify** ( *valor* : Object, any {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| valor | Object, any | → | Dados a converter em cadeia JSON |
-| * | Operador | → | Melhorar o formato |
+| valor | Object, any | → | Dados a converter em cadeia JSON |
+| * | Operador | → | Melhorar o formato |
| Resultado | Text | ← | Cadeia que contém o texto JSON serializado |
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número do comando | 1217 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
index ce15679e11cba2..f4715929e3904d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-to-selection.md
@@ -5,12 +5,12 @@ slug: /commands/json-to-selection
displayed_sidebar: docs
---
-**JSON TO SELECTION** ( *aTabela* ; *objetoJson* )
+**JSON TO SELECTION** ( *aTabela* ; *objetoJson* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Ponteiro a tabela 4D |
-| objetoJson | Text | → | Cadeia em JSON |
+| aTable | Table | → | Ponteiro a tabela 4D |
+| objetoJson | Text | → | Cadeia em JSON |
@@ -74,6 +74,6 @@ Uso do comando **JSON TO SELECTION** para adicionar os registros a tabela \[Comp
| | |
| --- | --- |
| Número do comando | 1235 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
index 829921a645cf2d..490ee4689d9ac6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/json-validate.md
@@ -5,12 +5,12 @@ slug: /commands/json-validate
displayed_sidebar: docs
---
-**JSON Validate** ( *vJson* ; *vSchema* ) : Object
+**JSON Validate** ( *vJson* : Object ; *vSchema* : Object ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| vJson | Object | → | objeto JSON a validar |
-| vSchema | Object | → | Schema JSON usada para validar objetos JSON |
+| vJson | Object | → | objeto JSON a validar |
+| vSchema | Object | → | Schema JSON usada para validar objetos JSON |
| Resultado | Object | ← | Estado da validação e erros (se houver) |
@@ -110,6 +110,6 @@ Se quiser validar um objeto JSON com um esquema e obter a lista de erros de vali
| | |
| --- | --- |
| Número do comando | 1456 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
index 37c6c1510e51f7..9e546f5b35f023 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/keystroke.md
@@ -182,6 +182,6 @@ Utilizando as habilidades da comunicação interprocesso de 4D, pode construir i
| | |
| --- | --- |
| Número do comando | 390 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
index 90aeb42bcdfc72..9e04e44865b454 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/kill-worker.md
@@ -5,11 +5,11 @@ slug: /commands/kill-worker
displayed_sidebar: docs
---
-**KILL WORKER** {( *processo* )}
+**KILL WORKER** ({ *processo* : Text, Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Text, Integer | → | Número ou nome de processo a terminar (terminar processo atual se omitido) |
+| processo | Text, Integer | → | Número ou nome de processo a terminar (terminar processo atual se omitido) |
@@ -60,6 +60,6 @@ No método (*theWorker*), adicionou código para manejar esta situaçao:
| | |
| --- | --- |
| Número do comando | 1390 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
index 6dac24196ff77f..d29544e8fecb93 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-field-number.md
@@ -5,11 +5,11 @@ slug: /commands/last-field-number
displayed_sidebar: docs
---
-**Last field number** ( *numTabela* ) : Integer
**Last field number** ( *pontTabela* )
+**Last field number** ( *numTabela* : Inteiro longo, Ponteiro ) : Integer
**Last field number** ( *pontTabela* : Inteiro longo, Ponteiro )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
+| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
| Resultado de função | Integer | ← | Maior número de campo na tabela |
@@ -48,6 +48,6 @@ Os campos estão numerados na ordem na qual foram criados. Se nenhum campo foi a
| | |
| --- | --- |
| Número do comando | 255 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
index 411703a9565ac3..d34b493cfb7b33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-path.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-path
displayed_sidebar: docs
---
-**Last query path** ( *formatDescr* ) : Text
+**Last query path** ( *formatDescr* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| formatDescr | Integer | → | Formato de descrição (texto ou XML) |
+| formatDescr | Integer | → | Formato de descrição (texto ou XML) |
| Resultado | Text | ← | Descrição da rota da última pesquisa executada |
@@ -40,6 +40,6 @@ A descrição da rota da última pesquisa pode ser comparada com a descrição d
| | |
| --- | --- |
| Número do comando | 1045 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
index 7d1a8c96ac0b8a..a957a405d89c8b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-query-plan.md
@@ -5,11 +5,11 @@ slug: /commands/last-query-plan
displayed_sidebar: docs
---
-**Last query plan** ( *formatDescr* ) : Text
+**Last query plan** ( *formatDescr* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| formatDescr | Integer | → | Formato de descrição (texto ou XML) |
+| formatDescr | Integer | → | Formato de descrição (texto ou XML) |
| Resultado | Text | ← | Descrição do último plano de pesquisa executado |
@@ -40,6 +40,6 @@ A descrição do plano da última pesquisa pode ser comparada com a descrição
| | |
| --- | --- |
| Número do comando | 1046 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
index fbd4f7afb1a623..ebadab8c4a0df5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-record.md
@@ -5,11 +5,11 @@ slug: /commands/last-record
displayed_sidebar: docs
---
-**LAST RECORD** {( *tabela* )}
+**LAST RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual mover ao último registro selecionado, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual mover ao último registro selecionado, ou tabela padrão, se omitido |
@@ -38,7 +38,7 @@ O exemplo a seguir designa o último registro da tabela \[Pessoas\] como registr
| | |
| --- | --- |
| Número do comando | 200 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
index 129e2f3e9dd893..10469527a169a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ O seguinte exemplo inicializa os elementos do array *arrayTabelas*, com os nomes
| | |
| --- | --- |
| Número do comando | 254 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
index d465cd7da0fd41..32279249b8325a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado em um processo de atualização aut
| | |
| --- | --- |
| Número do comando | 1301 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
index b26fc7d4ff8013..aa3b919a25f46a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/launch-external-process.md
@@ -5,12 +5,12 @@ slug: /commands/launch-external-process
displayed_sidebar: docs
---
-**LAUNCH EXTERNAL PROCESS** ( *nomeArquivo* {; *fluxoEntrada* {; *fluxoSaida* {; *fluxoErro*}}}{; *pid*} )
+**LAUNCH EXTERNAL PROCESS** ( *nomeArquivo* : Text {; *fluxoEntrada* : Text, Blob {; *fluxoSaida* : Text, Blob {; *fluxoErro* : Text, Blob}}}{; *pid* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Rota de acesso e argumentos de arquivo a lançar |
-| fluxoEntrada | Text, Blob | → | Fluxo de entrada(stdin) |
+| nomeArquivo | Text | → | Rota de acesso e argumentos de arquivo a lançar |
+| fluxoEntrada | Text, Blob | → | Fluxo de entrada(stdin) |
| fluxoSaida | Text, Blob | ← | Fluxo de saída (stdout) |
| fluxoErro | Text, Blob | ← | Fluxo de erro(stderr) |
| pid | Integer | ← | Identificador único para processo externo |
@@ -142,7 +142,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 811 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
index 4840fa44741a00..2ef5ba66c6f4ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-login.md
@@ -5,14 +5,14 @@ slug: /commands/ldap-login
displayed_sidebar: docs
---
-**LDAP LOGIN** ( *url* ; *login* ; *senha* {; *digest*} )
+**LDAP LOGIN** ( *url* : Text ; *login* : Text ; *senha* : Text {; *digest* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| url | Text | → | URL do servidor LDAP ao qual vai conectar |
-| login | Text | → | Login do usuário |
-| senha | Text | → | Senha do login |
-| digest | Integer | → | 0 = envia senha em digest MD5 (padrão), 1 = envia senha sem criptografia |
+| url | Text | → | URL do servidor LDAP ao qual vai conectar |
+| login | Text | → | Login do usuário |
+| senha | Text | → | Senha do login |
+| digest | Integer | → | 0 = envia senha em digest MD5 (padrão), 1 = envia senha sem criptografia |
@@ -102,6 +102,6 @@ Este exemplo tenta conectar-se a um aplicativo:
| | |
| --- | --- |
| Número do comando | 1326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
index ad7b6c29277334..4315b2f6055157 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
index f299785afd3358..31efa73c159b4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search-all.md
@@ -5,16 +5,16 @@ slug: /commands/ldap-search-all
displayed_sidebar: docs
---
-**LDAP SEARCH ALL** ( *dnRootEntry* ; *arrResultado* ; *filtro* {; *escopo* {; *atributos* {; *atributosComoArray*}}} )
+**LDAP SEARCH ALL** ( *dnRootEntry* : Text ; *arrResultado* : Object array ; *filtro* : Text {; *escopo* : Text {; *atributos* : Text array {; *atributosComoArray* : Boolean array}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | o Distinguished Name do diretório raiz onde a pesquisa começará |
+| dnRootEntry | Text | → | o Distinguished Name do diretório raiz onde a pesquisa começará |
| arrResultado | Object array | ← | Resultado da pesquisa |
-| filtro | Text | → | filtro de pesquisa LDAP |
-| escopo | Text | → | Escopo da pesquisa "base" (padrão), "one", ou "sub" |
-| atributos | Text array | → | Atributos da pesquisa |
-| atributosComoArray | Boolean array | → | True = força os atributos a serem retornados como um array, false = força os atributos a serem retornados como uma variável simples |
+| filtro | Text | → | filtro de pesquisa LDAP |
+| escopo | Text | → | Escopo da pesquisa "base" (padrão), "one", ou "sub" |
+| atributos | Text array | → | Atributos da pesquisa |
+| atributosComoArray | Boolean array | → | True = força os atributos a serem retornados como um array, false = força os atributos a serem retornados como uma variável simples |
@@ -121,6 +121,6 @@ Estes exemplos ilustram o uso do parâmetro *atributosEmArray*:
| | |
| --- | --- |
| Número do comando | 1329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
index d2772aa7b965ec..df3e929a2bc652 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ldap-search.md
@@ -5,15 +5,15 @@ slug: /commands/ldap-search
displayed_sidebar: docs
---
-**LDAP Search** ( *dnRootEntry* ; *filtro* {; *escopo* {; *atributos* {; *atributoComoArray*}}} ) : Object
+**LDAP Search** ( *dnRootEntry* : Text ; *filtro* : Text {; *escopo* : Text {; *atributos* : Text array {; *atributoComoArray* : Boolean array}}} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dnRootEntry | Text | → | Nome distinto da root entry onde a pesquisa começa |
-| filtro | Text | → | Filtro de pesquisa LDAP |
-| escopo | Text | → | Escopo da pesquisa: "base" (padrão), "one", ou "sub" |
-| atributos | Text array | → | Atributos a capturar |
-| atributoComoArray | Boolean array | → | True= força atributos a ser retornados como array, False = força atributos a ser retornados como uma variável simples |
+| dnRootEntry | Text | → | Nome distinto da root entry onde a pesquisa começa |
+| filtro | Text | → | Filtro de pesquisa LDAP |
+| escopo | Text | → | Escopo da pesquisa: "base" (padrão), "one", ou "sub" |
+| atributos | Text array | → | Atributos a capturar |
+| atributoComoArray | Boolean array | → | True= força atributos a ser retornados como array, False = força atributos a ser retornados como uma variável simples |
| Resultado | Object | ← | Atributos Chave/Valor |
@@ -89,6 +89,6 @@ Queremos obter um array de todas as entradas que se encontram no atributo "membe
| | |
| --- | --- |
| Número do comando | 1328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md
index 539257dcf32c80..de06466f72c01e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/length.md
@@ -5,11 +5,11 @@ slug: /commands/length
displayed_sidebar: docs
---
-**Length** ( *cadeia* ) : Integer
+**Length** ( *cadeia* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cadeia | Text | → | Cadeia para a qual vai retornar o comprimento |
+| cadeia | Text | → | Cadeia para a qual vai retornar o comprimento |
| Resultado | Integer | ← | Comprimento da função |
@@ -35,6 +35,6 @@ Este exemplo ilustra o uso de **Length**. Os resultados, descritos nos comentár
| | |
| --- | --- |
| Número do comando | 16 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md
index e3bbea2bdc8f15..bb242995fcca6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este exemplo é um modelo para um método de formulário. Mostra cada evento pos
| | |
| --- | --- |
| Número do comando | 101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
index 437685d21b6ce1..e42992f1b8d2aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ Essa tabela detalha os conteúdos do objeto sessão para sessões REST:
| | |
| --- | --- |
| Número do comando | 1782 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
index 2c254c1241cfd0..4227915a59b4bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-parent.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-parent
displayed_sidebar: docs
---
-**List item parent** ( {* ;} *lista* ; refElem | * ) : Integer
+**List item parent** ( {* ;} *lista* : Integer, Text ; refElem | * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
| Resultado | Integer | ← | Número de referência do elemento pai ou 0 se não há |
@@ -77,6 +77,6 @@ Os números de referência dos elementos são os seguintes:
| | |
| --- | --- |
| Número do comando | 633 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
index a1bc19e07b84c3..d3bd798befbf97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-item-position.md
@@ -5,13 +5,13 @@ slug: /commands/list-item-position
displayed_sidebar: docs
---
-**List item position** ( {* ;} *lista* ; *refElem* ) : Integer
+**List item position** ( {* ;} *lista* : Integer, Text ; *refElem* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | Integer | → | Número de referência do elemento |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | Integer | → | Número de referência do elemento |
| Resultado | Integer | ← | Posição do elemento em listas expandidas/contraídas |
@@ -44,6 +44,6 @@ Se o elemento não existir, List item position retorna 0.
| | |
| --- | --- |
| Número do comando | 629 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
index ca2c33fff1c639..6b85cbb5ded355 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-choice-lists.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-choice-lists
displayed_sidebar: docs
---
-**LIST OF CHOICE LISTS** ( *arrayNums* ; *arrayNoms* )
+**LIST OF CHOICE LISTS** ( *arrayNums* : Integer array ; *arrayNoms* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -26,6 +26,6 @@ Os números das listas correspondem a sua ordem de criação. No editor de lista
| | |
| --- | --- |
| Número do comando | 957 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
index c070f404229339..195deb593625e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-of-style-sheets.md
@@ -5,7 +5,7 @@ slug: /commands/list-of-style-sheets
displayed_sidebar: docs
---
-**LIST OF STYLE SHEETS** ( *arrFolhasEstilo* )
+**LIST OF STYLE SHEETS** ( *arrFolhasEstilo* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -55,6 +55,6 @@ Se executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1255 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
index b43798524f0ac5..8cf7baa151cfb5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-array.md
@@ -5,11 +5,11 @@ slug: /commands/list-to-array
displayed_sidebar: docs
---
-**LIST TO ARRAY** ( *lista* ; *array* {; *itemRefs*} )
+**LIST TO ARRAY** ( *lista* : Text, Integer ; *array* : Array {; *itemRefs* : Array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Text, Integer | → | Lista da qual copiar os itens de primeiro nível |
+| lista | Text, Integer | → | Lista da qual copiar os itens de primeiro nível |
| array | Array | ← | Array para o qual copiar os itens da lista |
| itemRefs | Array | ← | Números de referência da lista de itens |
@@ -90,6 +90,6 @@ Se executa a seguinte instrução:
| | |
| --- | --- |
| Número do comando | 288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
index 99509da955d165..145ecec84678a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/list-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/list-to-blob
displayed_sidebar: docs
---
-**LIST TO BLOB** ( *lista* ; *BLOB* {; *} )
+**LIST TO BLOB** ( *lista* : Integer ; *BLOB* : Blob {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Lista hierárquica a armazenar no BLOB |
-| Blob | Blob | → | BLOB a receber a lista hierárquica |
-| * | Operador | → | * adicionar o valor |
+| lista | Integer | → | Lista hierárquica a armazenar no BLOB |
+| Blob | Blob | → | BLOB a receber a lista hierárquica |
+| * | Operador | → | * adicionar o valor |
@@ -51,7 +51,7 @@ Veja o exemplo para o comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 556 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
index fdbe998c48d794..b68f6631226da6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-collapse.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-collapse
displayed_sidebar: docs
---
-**LISTBOX COLLAPSE** ( {* ;} *objeto* {; *recursivo* {; *seletor* {; linha | nivel {; *coluna*}}}} )
+**LISTBOX COLLAPSE** ( * ; *objeto* : Text {; *recursivo* : Boolean {; *seletor* : Integer {; linha | nivel {; *coluna* : Integer}}}} )
**LISTBOX COLLAPSE** ( *objeto* : Field, Variable {; *recursivo* : Boolean {; *seletor* : Integer {; linha | nivel {; *coluna* : Integer}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
-| recursivo | Boolean | → | True = contrai os subníveis False = não contrai os subníveis |
-| seletor | Integer | → | Parte do list box a contrair |
-| linha | nivel | Inteiro longo | → | Número de quebra de fila a colapsar ou
Número de nível de list box a contrair |
-| coluna | Integer | → | Número de quebra de coluna a contrair |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| recursivo | Boolean | → | True = contrai os subníveis False = não contrai os subníveis |
+| seletor | Integer | → | Parte do list box a contrair |
+| linha | nivel | Inteiro longo | → | Número de quebra de fila a colapsar ou
Número de nível de list box a contrair |
+| coluna | Integer | → | Número de quebra de coluna a contrair |
@@ -56,6 +56,6 @@ Este exemplo colapsa o primeiro nível de linhas de quebra da seleção no list
| | |
| --- | --- |
| Número do comando | 1101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
index 434631a41731b3..be0f3e51f5a253 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-column.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-column
displayed_sidebar: docs
---
-**LISTBOX DELETE COLUMN** ( {* ;} *objeto* ; *posiçaoCol* {; *numero*} )
+**LISTBOX DELETE COLUMN** ( * ; *objeto* : Text ; *posiçaoCol* : Integer {; *numero* : Integer} )
**LISTBOX DELETE COLUMN** ( *objeto* : Field, Variable ; *posiçaoCol* : Integer {; *numero* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é a variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
-| posiçaoCol | Integer | → | Número de coluna a remover |
-| numero | Integer | → | Número de colunas a remover |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é a variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
+| posiçaoCol | Integer | → | Número de coluna a remover |
+| numero | Integer | → | Número de colunas a remover |
@@ -39,6 +39,6 @@ Se o parâmetro *posicionCol* é maior que o número de colunas no list box, o c
| | |
| --- | --- |
| Número do comando | 830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
index 9bf58f1b55bcdb..29f2be616891c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-delete-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-delete-rows
displayed_sidebar: docs
---
-**LISTBOX DELETE ROWS** ( {* ;} *objeto* ; *posiçao* {; *numRows*} )
+**LISTBOX DELETE ROWS** ( * ; *objeto* : Text ; *posiçao* : Integer {; *numRows* : Integer} )
**LISTBOX DELETE ROWS** ( *objeto* : Field, Variable ; *posiçao* : Integer {; *numRows* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável (se * é omitido) |
-| posiçao | Integer | → | Posição da fila a apagar |
-| numRows | Integer | → | Número de linhas a excluir |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável (se * é omitido) |
+| posiçao | Integer | → | Posição da fila a apagar |
+| numRows | Integer | → | Número de linhas a excluir |
@@ -41,7 +41,7 @@ Se o parâmetro *posição* é superior ao número de linhas do array do list bo
| | |
| --- | --- |
| Número do comando | 914 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
index 3c3f4d7e422a5b..44f68486ccfa4b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-duplicate-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-duplicate-column
displayed_sidebar: docs
---
-**LISTBOX DUPLICATE COLUMN** ( {* ;} *objeto* ; *posCol* ; *nomCol* ; *varCol* ; *nomCabe* ; *varCabe* {; *nomRodape* ; *varRodape*} )
+**LISTBOX DUPLICATE COLUMN** ( * ; *objeto* : Text ; *posCol* : Integer ; *nomCol* : Text ; *varCol* : Array, Field, Variable, Pointer ; *nomCabe* : Text ; *varCabe* : Integer, Pointer {; *nomRodape* : Text ; *varRodape* : Variable, Pointer} )
**LISTBOX DUPLICATE COLUMN** ( *objeto* : Field, Variable ; *posCol* : Integer ; *nomCol* : Text ; *varCol* : Array, Field, Variable, Pointer ; *nomCabe* : Text ; *varCabe* : Integer, Pointer {; *nomRodape* : Text ; *varRodape* : Variable, Pointer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| posCol | Integer | → | Localização da nova coluna duplicada |
-| nomCol | Text | → | Nome da nova coluna |
-| varCol | Array, Field, Variable, Pointer | → | Nome da variável array da coluna ou campo ou variável |
-| nomCabe | Text | → | Nome do objeto do cabeçalho da coluna |
-| varCabe | Integer, Pointer | → | Variável do cabeçalho da coluna |
-| nomRodape | Text | → | Nome do objeto do rodapé da coluna |
-| varRodape | Variable, Pointer | → | Variável do rodapé da coluna |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| posCol | Integer | → | Localização da nova coluna duplicada |
+| nomCol | Text | → | Nome da nova coluna |
+| varCol | Array, Field, Variable, Pointer | → | Nome da variável array da coluna ou campo ou variável |
+| nomCabe | Text | → | Nome do objeto do cabeçalho da coluna |
+| varCabe | Integer, Pointer | → | Variável do cabeçalho da coluna |
+| nomRodape | Text | → | Nome do objeto do rodapé da coluna |
+| varRodape | Variable, Pointer | → | Variável do rodapé da coluna |
@@ -97,6 +97,6 @@ A partir de 4D v14 R3, pode duplicar dinamicamente as colunas de list box e 4D s
| | |
| --- | --- |
| Número do comando | 1273 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
index 7e2baf79f296c2..77a23eb966058c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-expand.md
@@ -5,16 +5,16 @@ slug: /commands/listbox-expand
displayed_sidebar: docs
---
-**LISTBOX EXPAND** ( {* ;} *object* {; *recursive* {; *selector* {; linha | nivel {; *coluna*}}}} )
+**LISTBOX EXPAND** ( * ; *object* : Text {; *recursive* : Boolean {; *selector* : Integer {; linha | nivel {; *coluna* : Integer}}}} )
**LISTBOX EXPAND** ( *object* : Field, Variable {; *recursive* : Boolean {; *selector* : Integer {; linha | nivel {; *coluna* : Integer}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | If specified, object is an object name (string)
If omitted, object is a variable |
-| object | any | → | Object name (if * is specified) or
Variable (if * is omitted) |
-| recursive | Boolean | → | True = expand sublevels
False = do not expand sublevels |
-| selector | Integer | → | Part of list box to expand |
-| linha | nivel | Inteiro longo | → | Number of break row to expand or
Number of list box level to expand |
-| coluna | Integer | → | Number of break column to expand |
+| * | Operador | → | If specified, object is an object name (string)
If omitted, object is a variable |
+| object | any | → | Object name (if * is specified) or
Variable (if * is omitted) |
+| recursive | Boolean | → | True = expand sublevels
False = do not expand sublevels |
+| selector | Integer | → | Part of list box to expand |
+| linha | nivel | Inteiro longo | → | Number of break row to expand or
Number of list box level to expand |
+| coluna | Integer | → | Number of break column to expand |
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número do comando | 1100 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
index 5b270fb047c17b..9abb0d1a0303c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-array
displayed_sidebar: docs
---
-**LISTBOX Get array** ( {* ;} *objeto* ; *tipoArray* ) : Pointer
+**LISTBOX Get array** ( * ; *objeto* : Text ; *tipoArray* : Integer ) : Pointer
**LISTBOX Get array** ( *objeto* : Field, Variable ; *tipoArray* : Integer ) : Pointer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
-| tipoArray | Integer | → | Tipo de array |
+| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
+| tipoArray | Integer | → | Tipo de array |
| Resultado | Pointer | ← | Ponteiro ao array associado a propriedade |
@@ -66,6 +66,6 @@ Exemplos típicos de uso:
| | |
| --- | --- |
| Número do comando | 1278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
index a582a2f2b4d710..a2f6f60032ec2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-arrays.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-arrays
displayed_sidebar: docs
---
-**LISTBOX GET ARRAYS** ( {* ;} *objeto* ; *arrNomsCols* ; *arrNomsTitulos* ; *arrVarCols* ; *arrVarTitulos* ; *arrColsVisiveis* ; *arrEstilos* {; *arrFooterNames* ; *arrFootersVars*} )
+**LISTBOX GET ARRAYS** ( * ; *objeto* : Text ; *arrNomsCols* : Text array ; *arrNomsTitulos* : Text array ; *arrVarCols* : Pointer array ; *arrVarTitulos* : Pointer array ; *arrColsVisiveis* : Boolean array ; *arrEstilos* : Pointer array {; *arrFooterNames* : Text array ; *arrFootersVars* : Pointer array} )
**LISTBOX GET ARRAYS** ( *objeto* : Field, Variable ; *arrNomsCols* : Text array ; *arrNomsTitulos* : Text array ; *arrVarCols* : Pointer array ; *arrVarTitulos* : Pointer array ; *arrColsVisiveis* : Boolean array ; *arrEstilos* : Pointer array {; *arrFooterNames* : Text array ; *arrFootersVars* : Pointer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * for omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * for omitido) |
| arrNomsCols | Text array | ← | Nomes de objetos de colunas |
| arrNomsTitulos | Text array | ← | Nomes dos objetos títulos cabeçalhos |
| arrVarCols | Pointer array | ← | Ponteiros para variáveis de colunas ou Ponteiros para campos coluna ou Nil |
@@ -55,6 +55,6 @@ Para seleção de registro, list boxes do tipo coleção ou seleção de entidad
| | |
| --- | --- |
| Número do comando | 832 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
index 75ee83dbdc0c37..1e67d297b1a5a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-auto-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX Get auto row height** ( {* ;} *objeto* ; *seletor* {; *unidade*} ) : Integer
+**LISTBOX Get auto row height** ( * ; *objeto* : Text ; *seletor* : Integer {; *unidade* : Integer} ) : Integer
**LISTBOX Get auto row height** ( *objeto* : Field, Variable ; *seletor* : Integer {; *unidade* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou de variável (se * for omitido) |
-| seletor | Integer | → | Valor de altura a obter: lk row min height ou lk row max height |
-| unidade | Integer | → | Valor da unidade de altura 0 em píxels, 1 em linhas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou de variável (se * for omitido) |
+| seletor | Integer | → | Valor de altura a obter: lk row min height ou lk row max height |
+| unidade | Integer | → | Valor da unidade de altura 0 em píxels, 1 em linhas |
| Resultado | Integer | ← | Valor de altura de linha selecionado |
@@ -64,6 +64,6 @@ vhMax:=LISTBOX Get auto row height(*;"LB";lk row max height;lk lines)
| | |
| --- | --- |
| Número do comando | 1502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
index 6e7499c757a0ea..7382d7fc8342d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-coordinates
displayed_sidebar: docs
---
-**LISTBOX GET CELL COORDINATES** ( {* ;} *objeto* ; *coluna* ; *linha* ; *esquerda* ; *superior* ; *direita* ; *inferior* )
+**LISTBOX GET CELL COORDINATES** ( * ; *objeto* : Text ; *coluna* : Integer ; *linha* : Integer ; *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
**LISTBOX GET CELL COORDINATES** ( *objeto* : Field, Variable ; *coluna* : Integer ; *linha* : Integer ; *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado = objeto é um nome de objeto (cadeia) |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
-| coluna | Integer | → | Número de coluna |
-| linha | Integer | → | Número de linha |
+| * | Operador | → | Se especificado = objeto é um nome de objeto (cadeia) |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
+| coluna | Integer | → | Número de coluna |
+| linha | Integer | → | Número de linha |
| esquerda | Integer | ← | Coordenada esquerda do objeto |
| superior | Integer | ← | Coordenada superior do objeto |
| direita | Integer | ← | Coordenada direita do objeto |
@@ -58,6 +58,6 @@ Você quer desenhar um retângulo vermelho arredor da célula selecionada de um
| | |
| --- | --- |
| Número do comando | 1330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
index dba7dcc7049aa6..23841a4d0f9519 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-cell-position.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-cell-position
displayed_sidebar: docs
---
-**LISTBOX GET CELL POSITION** ( {* ;} *objeto* {; *X* ; *Y* }; *coluna* ; *linha* {; *varCol*} )
+**LISTBOX GET CELL POSITION** ( * ; *objeto* : Text {; *X* : Real ; *Y* : Real }; *coluna* : Integer ; *linha* : Integer {; *varCol* : Pointer} )
**LISTBOX GET CELL POSITION** ( *objeto* : Field, Variable {; *X* : Real ; *Y* : Real }; *coluna* : Integer ; *linha* : Integer {; *varCol* : Pointer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| X | Real | → | Horizontal coordinate of mouse |
-| Y | Real | → | Vertical coordinate of mouse |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| X | Real | → | Horizontal coordinate of mouse |
+| Y | Real | → | Vertical coordinate of mouse |
| coluna | Integer | ← | Número de coluna |
| linha | Integer | ← | Número da fila |
| varCol | Pointer | ← | Ponteiro para a variável coluna |
@@ -61,6 +61,6 @@ Se a seleção é modificada utilizando as flechas do teclado, *coluna* devolve
| | |
| --- | --- |
| Número do comando | 971 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
index 6f02d9e26bbdf5..0dc3b9b65d1c71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-formula.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-formula
displayed_sidebar: docs
---
-**LISTBOX Get column formula** ( {* ;} *objeto* ) : Text
+**LISTBOX Get column formula** ( * ; *objeto* : Text ) : Text
**LISTBOX Get column formula** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| Resultado | Text | ← | Fórmula associada à coluna |
@@ -30,6 +30,6 @@ Passado o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1202 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
index 0bd6cc3ff23911..c2fc8964b80a20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-column-width.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-column-width
displayed_sidebar: docs
---
-**LISTBOX Get column width** ( {* ;} *objeto* {; *larguraMin* {; *larguraMax*}} ) : Integer
+**LISTBOX Get column width** ( * ; *objeto* : Text {; *larguraMin* : Integer {; *larguraMax* : Integer}} ) : Integer
**LISTBOX Get column width** ( *objeto* : Field, Variable {; *larguraMin* : Integer {; *larguraMax* : Integer}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| larguraMin | Integer | ← | Largura mínima da coluna (em pixels) |
| larguraMax | Integer | ← | Largura máxima da coluna (em píxels) |
| Resultado da função | Integer | ← | Largura da coluna (em pixels) |
@@ -35,6 +35,6 @@ Se não tiver definido nenhum valor de largura mínima ou máxima para a coluna,
| | |
| --- | --- |
| Número do comando | 834 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
index 1920788fb595f2..c576db45e02c52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footer-calculation.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX Get footer calculation** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get footer calculation** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get footer calculation** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| resultado | Integer | ← | Tipo de cálculo |
@@ -36,6 +36,6 @@ Pode comparar o valor devolvido com as constantes do tema *Listbox Footer Calcul
| | |
| --- | --- |
| Número do comando | 1150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
index aeefdc6550b46a..22951a922a6469 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-footers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-footers-height
displayed_sidebar: docs
---
-**LISTBOX Get footers height** ( {* ;} *objeto* {; *unidade*} ) : Integer
+**LISTBOX Get footers height** ( * ; *objeto* : Text {; *unidade* : Integer} ) : Integer
**LISTBOX Get footers height** ( *objeto* : Field, Variable {; *unidade* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ouVariável (se omitido *) |
-| unidade | Integer | → | Unidade de valor de altura:0 se omitido = píxeles, 1 = linhas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ouVariável (se omitido *) |
+| unidade | Integer | → | Unidade de valor de altura:0 se omitido = píxeles, 1 = linhas |
| resultado | Integer | ← | Alto da linha |
@@ -41,6 +41,6 @@ Por defeito, é omitido o parâmetro *unidad*e, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1146 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
index 6130ce6d4d2feb..252f52f150f585 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid-colors.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid-colors
displayed_sidebar: docs
---
-**LISTBOX GET GRID COLORS** ( {* ;} *objeto* ; *corH* ; *corV* )
+**LISTBOX GET GRID COLORS** ( * ; *objeto* : Text ; *corH* : Text, Integer ; *corV* : Text, Integer )
**LISTBOX GET GRID COLORS** ( *objeto* : Field, Variable ; *corH* : Text, Integer ; *corV* : Text, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| corH | Text, Integer | ← | Valor de cor RGB para as linhas horizontais |
| corV | Text, Integer | ← | Valor de cor RGB para as linhas verticais |
@@ -36,6 +36,6 @@ Em *corH* e *corV*, o comando devolve os valores das cores RGB. O formato de cor
| | |
| --- | --- |
| Número do comando | 1200 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
index b9e1a6cee046a4..86844a395daecd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-grid.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-grid
displayed_sidebar: docs
---
-**LISTBOX GET GRID** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**LISTBOX GET GRID** ( * ; *objeto* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX GET GRID** ( *objeto* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| horizontal | Boolean | ← | True = visível, False = oculto |
| vertical | Boolean | ← | True = visível, False = oculto |
@@ -33,6 +33,6 @@ O comando devolve nos parâmetros *horizontal* e *vertical*, o valor **True** ou
| | |
| --- | --- |
| Número do comando | 1199 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
index 8d4b22a9de9a0f..2dec8e00658bb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-headers-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-headers-height
displayed_sidebar: docs
---
-**LISTBOX Get headers height** ( {* ;} *objeto* {; *unidade*} ) : Integer
+**LISTBOX Get headers height** ( * ; *objeto* : Text {; *unidade* : Integer} ) : Integer
**LISTBOX Get headers height** ( *objeto* : Field, Variable {; *unidade* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| unidade | Integer | → | Unidade de valor de altura:0 ou se omitida = pixeles, 1 = linhas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| unidade | Integer | → | Unidade de valor de altura:0 ou se omitida = pixeles, 1 = linhas |
| resultado | Integer | ← | Alto da linha |
@@ -40,6 +40,6 @@ Por defeito, se omitido o parâmetro *unidade*, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1144 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
index b079475c0f3612..a4a7319f37ebcc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-hierarchy.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-hierarchy
displayed_sidebar: docs
---
-**LISTBOX GET HIERARCHY** ( {* ;} *objeto* ; *hierárquico* {; *hierarquia*} )
+**LISTBOX GET HIERARCHY** ( * ; *objeto* : Text ; *hierárquico* : Boolean {; *hierarquia* : Pointer array} )
**LISTBOX GET HIERARCHY** ( *objeto* : Field, Variable ; *hierárquico* : Boolean {; *hierarquia* : Pointer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nom de objeto (se * é especificado) ou Variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nom de objeto (se * é especificado) ou Variável (se * for omitido) |
| hierárquico | Boolean | ← | True = list box hierárquico False = list box não hierárquico |
| hierarquia | Pointer array | ← | Array de ponteiros |
@@ -40,6 +40,6 @@ Se o list box está em modo hierárquico, o comando preenche o array *hierarquia
| | |
| --- | --- |
| Número do comando | 1099 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
index 60f4cb50e39af7..ddc9e9d6834578 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-locked-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-locked-columns
displayed_sidebar: docs
---
-**LISTBOX Get locked columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get locked columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get locked columns** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| resultado | Integer | ← | Número de colunas bloqueadas |
@@ -35,6 +35,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma área
| | |
| --- | --- |
| Número do comando | 1152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
index 51a8131679c081..cbb01ba0314cfa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-columns
displayed_sidebar: docs
---
-**LISTBOX Get number of columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get number of columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get number of columns** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Integer | ← | Número de colunas |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
index 5025c7b21b2d74..41d98e5a906662 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-number-of-rows.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-number-of-rows
displayed_sidebar: docs
---
-**LISTBOX Get number of rows** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get number of rows** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get number of rows** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Integer | ← | Número de filas |
@@ -35,6 +35,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 915 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
index 87bc5423f3d98b..91cbeac0954a1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-objects.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-objects
displayed_sidebar: docs
---
-**LISTBOX GET OBJECTS** ( {* ;} *objeto* ; *arrayNomObjeto* )
+**LISTBOX GET OBJECTS** ( * ; *objeto* : Text ; *arrayNomObjeto* : Text array )
**LISTBOX GET OBJECTS** ( *objeto* : Field, Variable ; *arrayNomObjeto* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, o objeto é um nome de objeto (cadeia)
Se for omitido, o objeto é uma variável |
-| objeto | any | → | Nome do objeto (se * for especificado) ou Variável (se * for omitido) |
+| * | Operador | → | Se for especificado, o objeto é um nome de objeto (cadeia)
Se for omitido, o objeto é uma variável |
+| objeto | any | → | Nome do objeto (se * for especificado) ou Variável (se * for omitido) |
| arrayNomObjeto | Text array | ← | Nomes dos sub objetos do list box (cabeçalhos, colunas, pés) |
@@ -65,6 +65,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
index 9ada22d4710e17..d2ed06be189525 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-print-information.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-print-information
displayed_sidebar: docs
---
-**LISTBOX GET PRINT INFORMATION** ( {* ;} *objeto* ; *seletor* ; *info* )
+**LISTBOX GET PRINT INFORMATION** ( * ; *objeto* : Text ; *seletor* : Integer ; *info* : Integer )
**LISTBOX GET PRINT INFORMATION** ( *objeto* : Field, Variable ; *seletor* : Integer ; *info* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
-| seletor | Integer | → | Informação a conseguir |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| seletor | Integer | → | Informação a conseguir |
| info | Integer | ← | Valor atual |
@@ -73,6 +73,6 @@ Impressão de pelo menos 500 linhas do list box, conhecendo que algumas linhas e
| | |
| --- | --- |
| Número do comando | 1110 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
index ff2ab85a4a1966..7737a52b1895dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color-as-number.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color-as-number
displayed_sidebar: docs
---
-**LISTBOX Get row color as number** ( {* ;} *objeto* ; *fila* {; *tipoCor*} ) : Integer
+**LISTBOX Get row color as number** ( * ; *objeto* : Text ; *fila* : Integer {; *tipoCor* : Integer} ) : Integer
**LISTBOX Get row color as number** ( *objeto* : Field, Variable ; *fila* : Integer {; *tipoCor* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
-| fila | Integer | → | Número da linha |
-| tipoCor | Integer | → | cor de fonte listbox (normal) ou cor de fundo de list box |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
+| fila | Integer | → | Número da linha |
+| tipoCor | Integer | → | cor de fonte listbox (normal) ou cor de fundo de list box |
| Resultado | Integer | ← | Valor da cor |
@@ -64,6 +64,6 @@ Given the following list box:
| | |
| --- | --- |
| Número do comando | 1271 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
index cd468e8497fb36..5590642f1ebc9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-color.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-get-row-color
displayed_sidebar: docs
---
-**LISTBOX Get row color** ( {* ;} *objeto* ; *fila* {; *tipoCor*} ) : Text
+**LISTBOX Get row color** ( * ; *objeto* : Text ; *fila* : Integer {; *tipoCor* : Integer} ) : Text
**LISTBOX Get row color** ( *objeto* : Field, Variable ; *fila* : Integer {; *tipoCor* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome objeto (string) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for omitido) |
-| fila | Integer | → | Número de Fila |
-| tipoCor | Integer | → | Cor de Fonte de list box (padrão) ou cor de fundo de list box |
+| * | Operador | → | Se especificado, objeto é um nome objeto (string) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for omitido) |
+| fila | Integer | → | Número de Fila |
+| tipoCor | Integer | → | Cor de Fonte de list box (padrão) ou cor de fundo de list box |
| Resultado | Text | ← | Valor da cor |
@@ -63,6 +63,6 @@ Dado a list box abaixo:
| | |
| --- | --- |
| Número do comando | 1658 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
index c094faebfc4356..ac017d924e548c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-font-style
displayed_sidebar: docs
---
-**LISTBOX Get row font style** ( {* ;} *objeto* ; *linha* ) : Integer
+**LISTBOX Get row font style** ( * ; *objeto* : Text ; *linha* : Integer ) : Integer
**LISTBOX Get row font style** ( *objeto* : Field, Variable ; *linha* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome do objeto(se especificado *) ou
Variável (se omitido *) |
-| linha | Integer | → | Número linha |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome do objeto(se especificado *) ou
Variável (se omitido *) |
+| linha | Integer | → | Número linha |
| Resultado | Integer | ← | Valor de estilo |
@@ -55,6 +55,6 @@ Dado o seguinte list box:
| | |
| --- | --- |
| Número do comando | 1269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
index 839cb94158b8a4..e854aedd0a89e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-row-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-row-height
displayed_sidebar: docs
---
-**LISTBOX Get row height** ( {* ;} *objeto* ; *linha* ) : Integer
+**LISTBOX Get row height** ( * ; *objeto* : Text ; *linha* : Integer ) : Integer
**LISTBOX Get row height** ( *objeto* : Field, Variable ; *linha* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * for omitido) |
-| linha | Integer | → | Linha list box cuja altura quer obter |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * for omitido) |
+| linha | Integer | → | Linha list box cuja altura quer obter |
| Resultado | Integer | ← | Altura Linha |
@@ -40,6 +40,6 @@ O valor da altura da linha se expressa:
| | |
| --- | --- |
| Número do comando | 1408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
index b093645f9d4095..b41c14cc064b99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-rows-height.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-get-rows-height
displayed_sidebar: docs
---
-**LISTBOX Get rows height** ( {* ;} *objeto* {; *unidade*} ) : Integer
+**LISTBOX Get rows height** ( * ; *objeto* : Text {; *unidade* : Integer} ) : Integer
**LISTBOX Get rows height** ( *objeto* : Field, Variable {; *unidade* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| unidade | Integer | → | Unidade do valor da altura: 0 ou omitido = pixels, 1 = linhas |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| unidade | Integer | → | Unidade do valor da altura: 0 ou omitido = pixels, 1 = linhas |
| Resultado | Integer | ← | altura da fila (em pixels) |
@@ -42,6 +42,6 @@ Por padrão, se omitir o parâmetro *unidade*, a altura da linha devolvida é ex
| | |
| --- | --- |
| Número do comando | 836 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
index f943a445ba0f66..049c79467961a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-static-columns.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-static-columns
displayed_sidebar: docs
---
-**LISTBOX Get static columns** ( {* ;} *objeto* ) : Integer
+**LISTBOX Get static columns** ( * ; *objeto* : Text ) : Integer
**LISTBOX Get static columns** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| resultado | Integer | ← | Número de colunas estáticas |
@@ -37,6 +37,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma conjun
| | |
| --- | --- |
| Número do comando | 1154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
index df3329b166039a..d103826caa1c54 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-get-table-source.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-get-table-source
displayed_sidebar: docs
---
-**LISTBOX GET TABLE SOURCE** ( {* ;} *objeto* ; *numTabela* {; *nome* {; *highlightName*}} )
+**LISTBOX GET TABLE SOURCE** ( * ; *objeto* : Text ; *numTabela* : Integer {; *nome* : Text {; *highlightName* : Text}} )
**LISTBOX GET TABLE SOURCE** ( *objeto* : Field, Variable ; *numTabela* : Integer {; *nome* : Text {; *highlightName* : Text}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| numTabela | Integer | ← | número da tabela selecionada |
| nome | Text | ← | Nome da seleção ou ** para seleção atual |
| highlightName | Text | ← | Nome do set destacado. |
@@ -38,6 +38,6 @@ Se o list box está associado com arrays, *numTabela* devolve -1 e *tempo*, se
| | |
| --- | --- |
| Número do comando | 1014 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
index 8fb51ccc4c1aa1..b6cd3dd153d3dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column-formula.md
@@ -5,20 +5,20 @@ slug: /commands/listbox-insert-column-formula
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN FORMULA** ( {* ;} *objeto* ; *posiçaoCol* ; *nomeColuna* ; *formula* ; *tipoDados* ; *nomeCabe* ; *varTitulo* {; *nomeRodape* ; *varRodape*} )
+**LISTBOX INSERT COLUMN FORMULA** ( * ; *objeto* : Text ; *posiçaoCol* : Integer ; *nomeColuna* : Text ; *formula* : Text ; *tipoDados* : Integer ; *nomeCabe* : Text ; *varTitulo* : Integer, Pointer {; *nomeRodape* : Text ; *varRodape* : Variable, Pointer} )
**LISTBOX INSERT COLUMN FORMULA** ( *objeto* : Field, Variable ; *posiçaoCol* : Integer ; *nomeColuna* : Text ; *formula* : Text ; *tipoDados* : Integer ; *nomeCabe* : Text ; *varTitulo* : Integer, Pointer {; *nomeRodape* : Text ; *varRodape* : Variable, Pointer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| posiçaoCol | Integer | → | Localização da coluna a inserir |
-| nomeColuna | Text | → | Nome do objeto de coluna |
-| formula | Text | → | Fórmula 4D associada com a coluna |
-| tipoDados | Integer | → | Tipo de resultado da fórmula |
-| nomeCabe | Text | → | Nome do objeto título da coluna |
-| varTitulo | Integer, Pointer | → | Variável título de coluna |
-| nomeRodape | Text | → | Nome do rodapé da coluna |
-| varRodape | Variable, Pointer | → | Variável de rodapé da coluna |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| posiçaoCol | Integer | → | Localização da coluna a inserir |
+| nomeColuna | Text | → | Nome do objeto de coluna |
+| formula | Text | → | Fórmula 4D associada com a coluna |
+| tipoDados | Integer | → | Tipo de resultado da fórmula |
+| nomeCabe | Text | → | Nome do objeto título da coluna |
+| varTitulo | Integer, Pointer | → | Variável título de coluna |
+| nomeRodape | Text | → | Nome do rodapé da coluna |
+| varRodape | Variable, Pointer | → | Variável de rodapé da coluna |
@@ -124,6 +124,6 @@ A coluna é anexada à list box :
| | |
| --- | --- |
| Número do comando | 970 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
index ae223d99f04314..7a8c075aa45362 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-column.md
@@ -5,19 +5,19 @@ slug: /commands/listbox-insert-column
displayed_sidebar: docs
---
-**LISTBOX INSERT COLUMN** ( {* ;} *objeto* ; *posiçaoCol* ; *nomeColuna* ; *variavelCol* ; *nomeCabe* ; *varTitulo* {; *nomRodapé* ; *nomeVar*} )
+**LISTBOX INSERT COLUMN** ( * ; *objeto* : Text ; *posiçaoCol* : Integer ; *nomeColuna* : Text ; *variavelCol* : Array, Field, Variable, Pointer ; *nomeCabe* : Text ; *varTitulo* : Integer, Pointer {; *nomRodapé* : Text ; *nomeVar* : Variable, Pointer} )
**LISTBOX INSERT COLUMN** ( *objeto* : Field, Variable ; *posiçaoCol* : Integer ; *nomeColuna* : Text ; *variavelCol* : Array, Field, Variable, Pointer ; *nomeCabe* : Text ; *varTitulo* : Integer, Pointer {; *nomRodapé* : Text ; *nomeVar* : Variable, Pointer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| posiçaoCol | Integer | → | Localização da coluna a inserir |
-| nomeColuna | Text | → | Nome do objeto coluna |
-| variavelCol | Array, Field, Variable, Pointer | → | Nome de coluna do array ou campo ou variável |
-| nomeCabe | Text | → | Nome do objeto título da coluna |
-| varTitulo | Integer, Pointer | → | Variável título da coluna |
-| nomRodapé | Text | → | Nome do rodapé da coluna |
-| nomeVar | Variable, Pointer | → | Variável do rodapé da coluna |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| posiçaoCol | Integer | → | Localização da coluna a inserir |
+| nomeColuna | Text | → | Nome do objeto coluna |
+| variavelCol | Array, Field, Variable, Pointer | → | Nome de coluna do array ou campo ou variável |
+| nomeCabe | Text | → | Nome do objeto título da coluna |
+| varTitulo | Integer, Pointer | → | Variável título da coluna |
+| nomRodapé | Text | → | Nome do rodapé da coluna |
+| nomeVar | Variable, Pointer | → | Variável do rodapé da coluna |
@@ -103,6 +103,6 @@ Você deseja inserir uma coluna de forma dinâmica em um array de tipo list box
| | |
| --- | --- |
| Número do comando | 829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
index 5fa66e76ab0891..5e7a9e97a08f8e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-insert-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-insert-rows
displayed_sidebar: docs
---
-**LISTBOX INSERT ROWS** ( {* ;} *objeto* ; *posiçao* {; *numFilas*} )
+**LISTBOX INSERT ROWS** ( * ; *objeto* : Text ; *posiçao* : Integer {; *numFilas* : Integer} )
**LISTBOX INSERT ROWS** ( *objeto* : Field, Variable ; *posiçao* : Integer {; *numFilas* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| posiçao | Integer | → | Posição da fila a apagar |
-| numFilas | Integer | → | Número de filas a inserir |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| posiçao | Integer | → | Posição da fila a apagar |
+| numFilas | Integer | → | Número de filas a inserir |
@@ -39,7 +39,7 @@ Se o parâmetro *numFilas* excede o número de linhas de tabelas nas arrays do l
| | |
| --- | --- |
| Número do comando | 913 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
index 0372043b65dbc1..3b335b387d3130 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-move-column
displayed_sidebar: docs
---
-**LISTBOX MOVE COLUMN** ( {* ;} *objeto* ; *colPosition* )
+**LISTBOX MOVE COLUMN** ( * ; *objeto* : Text ; *colPosition* : Integer )
**LISTBOX MOVE COLUMN** ( *objeto* : Field, Variable ; *colPosition* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome do objeto (se especificado *) ou
Variável (se omitido *) da coluna a mover |
-| colPosition | Integer | → | Nova localização da coluna |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome do objeto (se especificado *) ou
Variável (se omitido *) da coluna a mover |
+| colPosition | Integer | → | Nova localização da coluna |
@@ -46,6 +46,6 @@ Você quer inverter a segunda e terceira coluna do list box:
| | |
| --- | --- |
| Número do comando | 1274 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
index 3e4ae4fa578995..16cdcfd6b57607 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-column-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-column-number
displayed_sidebar: docs
---
-**LISTBOX MOVED COLUMN NUMBER** ( {* ;} *objeto* ; *antPosiçao* ; *novaPosição* )
+**LISTBOX MOVED COLUMN NUMBER** ( * ; *objeto* : Text ; *antPosiçao* : Integer ; *novaPosição* : Integer )
**LISTBOX MOVED COLUMN NUMBER** ( *objeto* : Field, Variable ; *antPosiçao* : Integer ; *novaPosição* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| antPosiçao | Integer | ← | Posição prévia da coluna movimentada |
| novaPosição | Integer | ← | Nova posição da coluna movimentada |
@@ -36,6 +36,6 @@ Este comando deve ser utilizado com o evento de formulário On column moved (ver
| | |
| --- | --- |
| Número do comando | 844 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
index cff1c2583c0e0c..cfce48392cd5d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-moved-row-number.md
@@ -5,12 +5,12 @@ slug: /commands/listbox-moved-row-number
displayed_sidebar: docs
---
-**LISTBOX MOVED ROW NUMBER** ( {* ;} *objeto* ; *antPosiçao* ; *novaPosiçao* )
+**LISTBOX MOVED ROW NUMBER** ( * ; *objeto* : Text ; *antPosiçao* : Integer ; *novaPosiçao* : Integer )
**LISTBOX MOVED ROW NUMBER** ( *objeto* : Field, Variable ; *antPosiçao* : Integer ; *novaPosiçao* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| antPosiçao | Integer | ← | Posição prévia da fila movimentada |
| novaPosiçao | Integer | ← | Nova posição da fila movimentada |
@@ -38,6 +38,6 @@ Este comando deve ser utilizado com o evento de formulário On row moved (ver o
| | |
| --- | --- |
| Número do comando | 837 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
index edcbf72035f99a..3699f17fe67ccf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-break.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-select-break
displayed_sidebar: docs
---
-**LISTBOX SELECT BREAK** ( {* ;} *objeto* ; *fila* ; *coluna* {; *açao*} )
+**LISTBOX SELECT BREAK** ( * ; *objeto* : Text ; *fila* : Integer ; *coluna* : Integer {; *açao* : Integer} )
**LISTBOX SELECT BREAK** ( *objeto* : Field, Variable ; *fila* : Integer ; *coluna* : Integer {; *açao* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
-| fila | Integer | → | Número de quebra de fila |
-| coluna | Integer | → | Número de quebra de coluna |
-| açao | Integer | → | Ação de seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| fila | Integer | → | Número de quebra de fila |
+| coluna | Integer | → | Número de quebra de coluna |
+| açao | Integer | → | Ação de seleção |
@@ -67,6 +67,6 @@ Este é o resultado:
| | |
| --- | --- |
| Número do comando | 1117 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
index 7067e574aaad67..a3075bb4abc75e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-row.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-row
displayed_sidebar: docs
---
-**LISTBOX SELECT ROW** ( {* ;} *objeto* ; *posiçao* {; *açao*} )
+**LISTBOX SELECT ROW** ( * ; *objeto* : Text ; *posiçao* : Integer {; *açao* : Integer} )
**LISTBOX SELECT ROW** ( *objeto* : Field, Variable ; *posiçao* : Integer {; *açao* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| posiçao | Integer | → | Número da fila a selecionar |
-| açao | Integer | → | Ação de seleção |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| posiçao | Integer | → | Número da fila a selecionar |
+| açao | Integer | → | Ação de seleção |
@@ -59,6 +59,6 @@ Depois da execução do método, os arrays são sincronizados: se o array fonte
| | |
| --- | --- |
| Número do comando | 912 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
index f9dc6907fd70c4..722d23cb1799ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-select-rows.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-select-rows
displayed_sidebar: docs
---
-**LISTBOX SELECT ROWS** ( {* ;} *objeto* ; *seleção* {; *ação*} )
+**LISTBOX SELECT ROWS** ( * ; *objeto* : Text ; *seleção* : Object, Collection {; *ação* : Integer} )
**LISTBOX SELECT ROWS** ( *objeto* : Field, Variable ; *seleção* : Object, Collection {; *ação* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome objeto (string) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for variável) |
-| seleção | Object, Collection | → | objeto ou coleção descrevendo as linhas a selecionar |
-| ação | Integer | → | lk replace selecion (padrão se omitido), lk add to selection, lk remove from selecion. |
+| * | Operador | → | Se especificado, objeto é um nome objeto (string) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for variável) |
+| seleção | Object, Collection | → | objeto ou coleção descrevendo as linhas a selecionar |
+| ação | Integer | → | lk replace selecion (padrão se omitido), lk add to selection, lk remove from selecion. |
@@ -89,6 +89,6 @@ Exemplo com a coleção de objetos:
| | |
| --- | --- |
| Número do comando | 1715 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
index de6968f90bf53c..89a18195654ef9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-array.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-array
displayed_sidebar: docs
---
-**LISTBOX SET ARRAY** ( {* ;} *objeto* ; *tipoArray* ; *proArray* )
+**LISTBOX SET ARRAY** ( * ; *objeto* : Text ; *tipoArray* : Integer ; *proArray* : Pointer )
**LISTBOX SET ARRAY** ( *objeto* : Field, Variable ; *tipoArray* : Integer ; *proArray* : Pointer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
-| tipoArray | Integer | → | Tipo de Array |
-| proArray | Pointer | → | Array a associar com propriedade |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
+| tipoArray | Integer | → | Tipo de Array |
+| proArray | Pointer | → | Array a associar com propriedade |
@@ -71,6 +71,6 @@ Se quiser definir um array de altura de linha para um list box:
| | |
| --- | --- |
| Número do comando | 1279 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
index 7b9a205430e4c3..40459ebeb7d889 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-auto-row-height.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-auto-row-height
displayed_sidebar: docs
---
-**LISTBOX SET AUTO ROW HEIGHT** ( {* ;} *objeto* ; *seletor* ; *valor* ; *unidade* )
+**LISTBOX SET AUTO ROW HEIGHT** ( * ; *objeto* : Text ; *seletor* : Integer ; *valor* : Integer ; *unidade* : Integer )
**LISTBOX SET AUTO ROW HEIGHT** ( *objeto* : Field, Variable ; *seletor* : Integer ; *valor* : Integer ; *unidade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, o objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
-| seletor | Integer | → | Valor de altura a estabelecer: lk row min heigh ou lk row max heigh |
-| valor | Integer | → | Valor máximo ou mínimo de altura de linha |
-| unidade | Integer | → | Unidade de valor da altura: 0=pixels, 1=linhas |
+| * | Operador | → | Se especificado, o objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
+| seletor | Integer | → | Valor de altura a estabelecer: lk row min heigh ou lk row max heigh |
+| valor | Integer | → | Valor máximo ou mínimo de altura de linha |
+| unidade | Integer | → | Unidade de valor da altura: 0=pixels, 1=linhas |
@@ -63,6 +63,6 @@ Se quiser definir as alturas mínimas e máximas para um list box com uma altura
| | |
| --- | --- |
| Número do comando | 1501 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
index de67fac9a21651..9335348de2cd64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-formula.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-column-formula
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN FORMULA** ( {* ;} *objeto* ; *formula* ; *tipoDado* )
+**LISTBOX SET COLUMN FORMULA** ( * ; *objeto* : Text ; *formula* : Text ; *tipoDado* : Integer )
**LISTBOX SET COLUMN FORMULA** ( *objeto* : Field, Variable ; *formula* : Text ; *tipoDado* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| formula | Text | → | Fórmula 4D associada à coluna |
-| tipoDado | Integer | → | Tipo de resultado da fórmula |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| formula | Text | → | Fórmula 4D associada à coluna |
+| tipoDado | Integer | → | Tipo de resultado da fórmula |
@@ -47,6 +47,6 @@ O parâmetro *tipoDados* designa o tipo de dados resultantes da execução da f
| | |
| --- | --- |
| Número do comando | 1203 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
index 75aaa2be2f3cb1..9d91d47384b5ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-column-width.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-column-width
displayed_sidebar: docs
---
-**LISTBOX SET COLUMN WIDTH** ( {* ;} *objeto* ; *largura* {; *larguraMin* {; *larguraMax*}} )
+**LISTBOX SET COLUMN WIDTH** ( * ; *objeto* : Text ; *largura* : Integer {; *larguraMin* : Integer {; *larguraMax* : Integer}} )
**LISTBOX SET COLUMN WIDTH** ( *objeto* : Field, Variable ; *largura* : Integer {; *larguraMin* : Integer {; *larguraMax* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| largura | Integer | → | Largura da coluna (em píxels) |
-| larguraMin | Integer | → | Largura mínima da coluna (em pixels) |
-| larguraMax | Integer | → | Largura máxima da coluna (em pixels) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| largura | Integer | → | Largura da coluna (em píxels) |
+| larguraMin | Integer | → | Largura mínima da coluna (em pixels) |
+| larguraMax | Integer | → | Largura máxima da coluna (em pixels) |
@@ -38,6 +38,6 @@ Os parâmetros opcionais *larguraMin e* *larguraMax* permitem definir os limites
| | |
| --- | --- |
| Número do comando | 833 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
index 3911cc3e560fd4..606f84ce2b7948 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footer-calculation.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-footer-calculation
displayed_sidebar: docs
---
-**LISTBOX SET FOOTER CALCULATION** ( {* ;} *objeto* ; *calculo* )
+**LISTBOX SET FOOTER CALCULATION** ( * ; *objeto* : Text ; *calculo* : Integer )
**LISTBOX SET FOOTER CALCULATION** ( *objeto* : Field, Variable ; *calculo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| calculo | Integer | → | Calculo para à área de rodapé |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| calculo | Integer | → | Calculo para à área de rodapé |
@@ -56,6 +56,6 @@ Se o tipo de dados da coluna ou de pelo menos uma coluna do list box (se objeto
| | |
| --- | --- |
| Número do comando | 1140 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
index e6dcfe0eb99b93..27774fbd050409 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-footers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-footers-height
displayed_sidebar: docs
---
-**LISTBOX SET FOOTERS HEIGHT** ( {* ;} *objeto* ; *altura* {; *unidade*} )
+**LISTBOX SET FOOTERS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; *unidade* : Integer} )
**LISTBOX SET FOOTERS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; *unidade* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| altura | Integer | → | Alto de linha |
-| unidade | Integer | → | Unidade de valor de altura:0 ou se omitida = pixeles, 1 = linhas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| altura | Integer | → | Alto de linha |
+| unidade | Integer | → | Unidade de valor de altura:0 ou se omitida = pixeles, 1 = linhas |
@@ -41,6 +41,6 @@ Passe no parâmetro *altura* a altura a definir. Por defeito, é omitido o parâ
| | |
| --- | --- |
| Número do comando | 1145 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
index fd6fbbf4f4e6fe..5d470a2648faa7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-grid-color
displayed_sidebar: docs
---
-**LISTBOX SET GRID COLOR** ( {* ;} *objeto* ; *cor* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID COLOR** ( * ; *objeto* : Text ; *cor* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID COLOR** ( *objeto* : Field, Variable ; *cor* : Text, Integer ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| cor | Text, Integer | → | Valor RGB da cor |
-| horizontal | Boolean | → | Use a cor para linhas de grade horizontais |
-| vertical | Boolean | → | Use a cor para linhas de grade vertical |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| cor | Text, Integer | → | Valor RGB da cor |
+| horizontal | Boolean | → | Use a cor para linhas de grade horizontais |
+| vertical | Boolean | → | Use a cor para linhas de grade vertical |
@@ -41,6 +41,6 @@ Os parâmetros *horizontal* e *vertical* lhe permitem especificar as linhas as q
| | |
| --- | --- |
| Número do comando | 842 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
index 25c79997227965..994766b4f4ad9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-grid.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-grid
displayed_sidebar: docs
---
-**LISTBOX SET GRID** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**LISTBOX SET GRID** ( * ; *objeto* : Text ; *horizontal* : Boolean ; *vertical* : Boolean )
**LISTBOX SET GRID** ( *objeto* : Field, Variable ; *horizontal* : Boolean ; *vertical* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| horizontal | Boolean | → | True=mostrar; False=ocultar |
-| vertical | Boolean | → | True=mostrar; False=ocultar |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| horizontal | Boolean | → | True=mostrar; False=ocultar |
+| vertical | Boolean | → | True=mostrar; False=ocultar |
@@ -35,6 +35,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos que indicam
| | |
| --- | --- |
| Número do comando | 841 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
index 110ddd6f379b0f..9f549efcb9a3b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-headers-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-headers-height
displayed_sidebar: docs
---
-**LISTBOX SET HEADERS HEIGHT** ( {* ;} *objeto* ; *altura* {; *unidade*} )
+**LISTBOX SET HEADERS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; *unidade* : Integer} )
**LISTBOX SET HEADERS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; *unidade* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| altura | Integer | → | Alto da linha |
-| unidade | Integer | → | Unidade de valor de altura: 0 ou se omitido = pixeles, 1 = linhas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| altura | Integer | → | Alto da linha |
+| unidade | Integer | → | Unidade de valor de altura: 0 ou se omitido = pixeles, 1 = linhas |
@@ -45,6 +45,6 @@ Cabeçalhos devem respeitar a altura mínima estabelecida pelo sistema. Esta alt
| | |
| --- | --- |
| Número do comando | 1143 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
index bb1c167fe23a90..468fecab9fb86c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-hierarchy.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-hierarchy
displayed_sidebar: docs
---
-**LISTBOX SET HIERARCHY** ( {* ;} *objeto* ; *hierárquico* {; *hierarquia*} )
+**LISTBOX SET HIERARCHY** ( * ; *objeto* : Text ; *hierárquico* : Boolean {; *hierarquia* : Pointer array} )
**LISTBOX SET HIERARCHY** ( *objeto* : Field, Variable ; *hierárquico* : Boolean {; *hierarquia* : Pointer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
-| hierárquico | Boolean | → | True = list box hierárquico False = list box não hierárquico |
-| hierarquia | Pointer array | → | Array dos ponteiros |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável (se * for omitido) |
+| hierárquico | Boolean | → | True = list box hierárquico False = list box não hierárquico |
+| hierarquia | Pointer array | → | Array dos ponteiros |
@@ -59,6 +59,6 @@ Definição dos arrays aPais, aRegião e aCidade como hierarquia de um list box:
| | |
| --- | --- |
| Número do comando | 1098 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
index b5072bb13eac81..ef1c6cf1809fa1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-locked-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-locked-columns
displayed_sidebar: docs
---
-**LISTBOX SET LOCKED COLUMNS** ( {* ;} *objeto* ; *numColunas* )
+**LISTBOX SET LOCKED COLUMNS** ( * ; *objeto* : Text ; *numColunas* : Integer )
**LISTBOX SET LOCKED COLUMNS** ( *objeto* : Field, Variable ; *numColunas* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| numColunas | Integer | → | Número de colunas a bloquear |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| numColunas | Integer | → | Número de colunas a bloquear |
@@ -37,6 +37,6 @@ Para eliminar o bloqueio de colunas, passe 0 em *numColunas*.
| | |
| --- | --- |
| Número do comando | 1151 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
index 47646c7e01c7e4..d4d464f4546bb4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-color.md
@@ -5,15 +5,15 @@ slug: /commands/listbox-set-row-color
displayed_sidebar: docs
---
-**LISTBOX SET ROW COLOR** ( {* ;} *objeto* ; *fila* ; *cor* {; *tipoCor*} )
+**LISTBOX SET ROW COLOR** ( * ; *objeto* : Text ; *fila* : Integer ; *cor* : Text, Integer {; *tipoCor* : Integer} )
**LISTBOX SET ROW COLOR** ( *objeto* : Field, Variable ; *fila* : Integer ; *cor* : Text, Integer {; *tipoCor* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
-| fila | Integer | → | Numero de fila |
-| cor | Text, Integer | → | Valor de cor RGB |
-| tipoCor | Integer | → | Cor de fonte do Listbox (por padrão) ou cor de fundo do Listbox |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
+| fila | Integer | → | Numero de fila |
+| cor | Text, Integer | → | Valor de cor RGB |
+| tipoCor | Integer | → | Cor de fonte do Listbox (por padrão) ou cor de fundo do Listbox |
@@ -69,6 +69,6 @@ Em um array de tipo list box, queremos estabelecer as cores de uma fila e para u
| | |
| --- | --- |
| Número do comando | 1270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
index c7a768433d75e3..97dae99da62434 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-font-style.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-font-style
displayed_sidebar: docs
---
-**LISTBOX SET ROW FONT STYLE** ( {* ;} *objeto* ; *fila* ; *estilo* )
+**LISTBOX SET ROW FONT STYLE** ( * ; *objeto* : Text ; *fila* : Integer ; *estilo* : Integer )
**LISTBOX SET ROW FONT STYLE** ( *objeto* : Field, Variable ; *fila* : Integer ; *estilo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
-| fila | Integer | → | Número de fila |
-| estilo | Integer | → | Estilo de fonte |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Variável (se * for omitido) |
+| fila | Integer | → | Número de fila |
+| estilo | Integer | → | Estilo de fonte |
@@ -84,6 +84,6 @@ Depois da segunda declaração, todas as células da terceira fila mudam de fila
| | |
| --- | --- |
| Número do comando | 1268 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
index 59190c045ea68a..8ff1b8eb65a6e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-row-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-row-height
displayed_sidebar: docs
---
-**LISTBOX SET ROW HEIGHT** ( {* ;} *objeto* ; *linha* ; *altura* )
+**LISTBOX SET ROW HEIGHT** ( * ; *objeto* : Text ; *linha* : Integer ; *altura* : Integer )
**LISTBOX SET ROW HEIGHT** ( *objeto* : Field, Variable ; *linha* : Integer ; *altura* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string) Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for omitido) ou variável (se * omitido) |
-| linha | Integer | → | Linha list box cuja altura você quer estabelecer |
-| altura | Integer | → | Altura da linha de list box |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string) Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for omitido) ou variável (se * omitido) |
+| linha | Integer | → | Linha list box cuja altura você quer estabelecer |
+| altura | Integer | → | Altura da linha de list box |
@@ -90,6 +90,6 @@ Por outro lado, se o código abaixo for executado posteriormente...
| | |
| --- | --- |
| Número do comando | 1409 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
index 01222546ee93b6..caefe0bab44386 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-rows-height.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-rows-height
displayed_sidebar: docs
---
-**LISTBOX SET ROWS HEIGHT** ( {* ;} *objeto* ; *altura* {; unidade da altura} )
+**LISTBOX SET ROWS HEIGHT** ( * ; *objeto* : Text ; *altura* : Integer {; unidade da altura} )
**LISTBOX SET ROWS HEIGHT** ( *objeto* : Field, Variable ; *altura* : Integer {; unidade da altura} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| altura | Integer | → | Altura da linha (em pixels) |
-| unidade da altura | Inteiro longo | → | 0 ou se omitido = pixels, 1=linhas |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| altura | Integer | → | Altura da linha (em pixels) |
+| unidade da altura | Inteiro longo | → | 0 ou se omitido = pixels, 1=linhas |
@@ -42,6 +42,6 @@ Nota: para mais informação sobre o cálculo das alturas das linhas, consulte o
| | |
| --- | --- |
| Número do comando | 835 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
index 5ce961e465a203..55448cbd6bc0c3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-static-columns.md
@@ -5,13 +5,13 @@ slug: /commands/listbox-set-static-columns
displayed_sidebar: docs
---
-**LISTBOX SET STATIC COLUMNS** ( {* ;} *objeto* ; *numColunas* )
+**LISTBOX SET STATIC COLUMNS** ( * ; *objeto* : Text ; *numColunas* : Integer )
**LISTBOX SET STATIC COLUMNS** ( *objeto* : Field, Variable ; *numColunas* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| numColunas | Integer | → | Número de colunas à converter estáticas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| numColunas | Integer | → | Número de colunas à converter estáticas |
@@ -33,6 +33,6 @@ As colunas estáticas não podem mover-se no list box.
| | |
| --- | --- |
| Número do comando | 1153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
index d63ccc3ef152f1..059c42b6813143 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-set-table-source.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-set-table-source
displayed_sidebar: docs
---
-**LISTBOX SET TABLE SOURCE** ( {* ;} *objeto* ; numTabela | tempo {; *nomeSelecionado*} )
+**LISTBOX SET TABLE SOURCE** ( * ; *objeto* : Text ; numTabela | tempo {; *nomeSelecionado* : Text} )
**LISTBOX SET TABLE SOURCE** ( *objeto* : Field, Variable ; numTabela | tempo {; *nomeSelecionado* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| numTabela | tempo | Inteiro longo, String | → | Seleção temporária |
-| nomeSelecionado | Text | → | Nome do conjunto selecionado |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| numTabela | tempo | Inteiro longo, String | → | Seleção temporária |
+| nomeSelecionado | Text | → | Nome do conjunto selecionado |
@@ -43,6 +43,6 @@ Se o list box já conter as colunas, seus conteúdos são atualizados depois da
| | |
| --- | --- |
| Número do comando | 1013 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
index c9935cd3f09d35..c44e453c1e8eec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/listbox-sort-columns.md
@@ -5,14 +5,14 @@ slug: /commands/listbox-sort-columns
displayed_sidebar: docs
---
-**LISTBOX SORT COLUMNS** ( {* ;} *objeto* ; *numColuna* ; *ordenar* {; *numColuna2* ; *ordenar2* ; ... ; *numColunaN* ; *ordenarN*} )
+**LISTBOX SORT COLUMNS** ( * ; *objeto* : Text ; *numColuna* : Integer ; *ordenar* : Operator {; ...(*numColuna* : Integer, *ordenar* : Operator)} )
**LISTBOX SORT COLUMNS** ( *objeto* : Field, Variable ; *numColuna* : Integer ; *ordenar* : Operator {; ...(*numColuna* : Integer, *ordenar* : Operator)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| numColuna | Integer | → | Número da coluna a ordenar |
-| ordenar | * | → | ">" para ordernar em ordem ascendente ou "<" para ordenar em ordem descendente |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| numColuna | Integer | → | Número da coluna a ordenar |
+| ordenar | Operator | → | `>` to sort in ascending order or `<` to sort in descending order |
@@ -40,6 +40,6 @@ Nota: O comando LISTBOX SORT COLUMNS não leva em consideração a propriedade d
| | |
| --- | --- |
| Número do comando | 916 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
index d5975aabf7692d..fc0f8036da30cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-4d-view-document.md
@@ -5,11 +5,11 @@ slug: /commands/load-4d-view-document
displayed_sidebar: docs
---
-**Load 4D View document** ( *4DViewDocumento* ) : Object
+**Load 4D View document** ( *4DViewDocumento* : Blob ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| 4DViewDocumento | Blob | → | Documento 4D View |
+| 4DViewDocumento | Blob | → | Documento 4D View |
| Resultado | Object | ← | Representação de objeto no documento 4D View |
@@ -201,6 +201,6 @@ Obterá o resultado abaixo (objeto stringified):
| | |
| --- | --- |
| Número do comando | 1528 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
index d2382522ba8145..f6aee8cf0565e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-list.md
@@ -5,11 +5,11 @@ slug: /commands/load-list
displayed_sidebar: docs
---
-**Load list** ( *nomeLista* ) : Integer
+**Load list** ( *nomeLista* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeLista | Text | → | Nome de uma lista criada no Editor de listas do ambiente Desenho |
+| nomeLista | Text | → | Nome de uma lista criada no Editor de listas do ambiente Desenho |
| Resultado | Integer | ← | Número de referência da lista criada recentemente |
@@ -54,6 +54,6 @@ Você cria um banco para o mercado internacional e necessita mudar aos diferente
| | |
| --- | --- |
| Número do comando | 383 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
index a4bebd22205eeb..10f66d8ce7abb5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-record.md
@@ -5,11 +5,11 @@ slug: /commands/load-record
displayed_sidebar: docs
---
-**LOAD RECORD** {( *tabela* )}
+**LOAD RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para aqual carregar registros, ou tabela Padrão, se omitido |
+| tabela | Table | → | Tabela para aqual carregar registros, ou tabela Padrão, se omitido |
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 52 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
index 752c050dde26ad..1243ccbb03a712 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-set.md
@@ -5,13 +5,13 @@ slug: /commands/load-set
displayed_sidebar: docs
---
-**LOAD SET** ( {*tabela* ;} *conjunto* ; *documento* )
+**LOAD SET** ( {*tabela* : Table ;} *conjunto* : Text ; *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela à qual o conjunto pertence, ou tabela padrão, se omitido |
-| conjunto | Text | → | Nome do conjunto a ser criado em memória |
-| documento | Text | → | Documento que contém o conjunto |
+| tabela | Table | → | Tabela à qual o conjunto pertence, ou tabela padrão, se omitido |
+| conjunto | Text | → | Nome do conjunto a ser criado em memória |
+| documento | Text | → | Documento que contém o conjunto |
@@ -48,7 +48,7 @@ Se o usuário clicar em Cancelar na caixa de diálogo de abrir arquivos, ou se f
| | |
| --- | --- |
| Número do comando | 185 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
index 36a2ca0c6a3046..691e4406cb463e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/load-variables.md
@@ -5,11 +5,11 @@ slug: /commands/load-variables
displayed_sidebar: docs
---
-**LOAD VARIABLES** ( *documento* ; *variavel* {; *variavel2* ; ... ; *variavelN*} )
+**LOAD VARIABLES** ( *documento* : Text ; *variavel* : Variable {; *...variavel* : Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Documento que contém as variáveis 4D |
+| documento | Text | → | Documento que contém as variáveis 4D |
| variavel | Variable | ← | variáveis que receberão os valores |
@@ -51,7 +51,7 @@ Se as variáveis são carregadas corretamente, a variável sistema OK assume o v
| | |
| --- | --- |
| Número do comando | 74 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
index d3b786b4f2c774..f27cad763aed3f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-document-path.md
@@ -5,11 +5,11 @@ slug: /commands/localized-document-path
displayed_sidebar: docs
---
-**Localized document path** ( *rotaRelativa* ) : Text
+**Localized document path** ( *rotaRelativa* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaRelativa | Text | → | Rota relativa do documento para qual quer obter a versão localizada |
+| rotaRelativa | Text | → | Rota relativa do documento para qual quer obter a versão localizada |
| Resultado | Text | ← | Rota de acesso absoluta ao documento localizado |
@@ -71,6 +71,6 @@ Se a linguagem atuarl for, por exemplo, francês canadense (fr-ca), o comando de
| | |
| --- | --- |
| Número do comando | 1105 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
index cfb9b660c0c2ce..ece50e931a7e18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/localized-string.md
@@ -5,11 +5,11 @@ slug: /commands/localized-string
displayed_sidebar: docs
---
-**Localized string** ( *resNome* ) : Text
+**Localized string** ( *resNome* : Text ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNome | Text | → | Nome do atributo recurso |
+| resNome | Text | → | Nome do atributo recurso |
| Resultado | Text | ← | Valor da string determinar por RecNome na linguagem atual |
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Se *r
| | |
| --- | --- |
| Número do comando | 991 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
index 6d74bd005e4e35..94486bf9a334dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-by.md
@@ -5,11 +5,11 @@ slug: /commands/locked-by
displayed_sidebar: docs
---
-**LOCKED BY** ( {*tabela* ;} *processo* ; *usuario4D* ; *usuarioSessao* ; *nomeProcesso* )
+**LOCKED BY** ( {*tabela* : Table ;} *processo* : Integer ; *usuario4D* : Text ; *usuarioSessao* : Text ; *nomeProcesso* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para visualizar os registros bloqueados, ou Tabela Padrão, se omitido |
+| tabela | Table | → | Tabela para visualizar os registros bloqueados, ou Tabela Padrão, se omitido |
| processo | Integer | ← | Nº de referência do processo |
| usuario4D | Text | ← | Nome do usuário 4D |
| usuarioSessao | Text | ← | Nome do usuário que abriu a sessão de trabalho |
@@ -45,6 +45,6 @@ nomeProcesso devolve o endereço IP do locker, p. ex. "127.0.0.1"
| | |
| --- | --- |
| Número do comando | 353 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
index 40eeaaaaed523c..f4f7b01c89c19b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked-records-info.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Tabela da qual obter os registros bloqueados |
+| aTable | Table | → | Tabela da qual obter os registros bloqueados |
| Resultado | Object | ← | Descrição dos registros bloqueados (se houver) |
@@ -96,6 +96,6 @@ Se o código é executado em um 4D Server e o bloqueio é causado por uma máqui
| | |
| --- | --- |
| Número do comando | 1316 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
index 2f708f4551752a..2a17397624454c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/locked.md
@@ -5,11 +5,11 @@ slug: /commands/locked
displayed_sidebar: docs
---
-**Locked** {( *tabela* )} : Boolean
+**Locked** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a marcar para registros atuais bloqueados, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela a marcar para registros atuais bloqueados, ou tabela padrão, se omitido |
| Resultado | Boolean | ← | Registro está bloqueado (TRUE), ou Registros está desbloqueado (FALSE) |
@@ -40,6 +40,6 @@ Durante uma transação, [LOAD RECORD](load-record.md) e Locked se utilizam com
| | |
| --- | --- |
| Número do comando | 147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
index 2b7c274d195cc0..96deee9f37b592 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-event.md
@@ -5,13 +5,13 @@ slug: /commands/log-event
displayed_sidebar: docs
---
-**LOG EVENT** ( {*tipoSaida* ;} *mensagem* {; *importancia*} )
+**LOG EVENT** ( {*tipoSaida* : Integer ;} *mensagem* : Text {; *importancia* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoSaida | Integer | → | Message output type |
-| mensagem | Text | → | Contents of the message |
-| importancia | Integer | → | Message’s importance level |
+| tipoSaida | Integer | → | Message output type |
+| mensagem | Text | → | Contents of the message |
+| importancia | Integer | → | Message’s importance level |
@@ -70,6 +70,6 @@ Cada vez que se abre o banco de dados, esta informação será escrita no visor
| | |
| --- | --- |
| Número do comando | 667 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
index 1c91d6716beb8f..4d0b0b8b6bd652 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file-to-json.md
@@ -5,14 +5,14 @@ slug: /commands/log-file-to-json
displayed_sidebar: docs
---
-**LOG FILE TO JSON** ( *rotaPastaDest* {; *tamMax* {; *rotaHist* {; *atrCampo*}}} )
+**LOG FILE TO JSON** ( *rotaPastaDest* : Text {; *tamMax* : Integer {; *rotaHist* : Text {; *atrCampo* : Integer}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaPastaDest | Text | → | Rota da pasta de destino do arquivo salvo |
-| tamMax | Integer | → | Tamanho máximo do arquivo JSON a criar (bytes) |
-| rotaHist | Text | → | Rota do arquivo de histórico a exportar; se omitido, usa o arquivo de histórico atual |
-| atrCampo | Integer | → | Descrição do atributo do campo: 1 = usa número (padrão), 2 = usa nome |
+| rotaPastaDest | Text | → | Rota da pasta de destino do arquivo salvo |
+| tamMax | Integer | → | Tamanho máximo do arquivo JSON a criar (bytes) |
+| rotaHist | Text | → | Rota do arquivo de histórico a exportar; se omitido, usa o arquivo de histórico atual |
+| atrCampo | Integer | → | Descrição do atributo do campo: 1 = usa número (padrão), 2 = usa nome |
@@ -102,7 +102,7 @@ Ocomando **LOG FILE TO JSON** modifica o valor das variáveis OK e Document: se
| | |
| --- | --- |
| Número do comando | 1352 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
index 6a1fea010d7a6d..4dcec288d50595 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Se o banco de dados funciona com um arquivo de histórico, a variável de sistem
| | |
| --- | --- |
| Número do comando | 928 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md
index 31d68874df06fd..e0d6332d9b5e1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/log.md
@@ -5,11 +5,11 @@ slug: /commands/log
displayed_sidebar: docs
---
-**Log** ( *numero* ) : Real
+**Log** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número que você deseja obter o log |
+| numero | Real | → | Número que você deseja obter o log |
| Resultado | Real | ← | Log de número |
@@ -37,6 +37,6 @@ A linha a seguir mostra 1:
| | |
| --- | --- |
| Número do comando | 22 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
index 6a09169f4c95d1..dcf364794a1012 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-array-from-selection.md
@@ -5,13 +5,13 @@ slug: /commands/longint-array-from-selection
displayed_sidebar: docs
---
-**LONGINT ARRAY FROM SELECTION** ( *tabela* ; *arrayRegistro* {; *seleçao*} )
+**LONGINT ARRAY FROM SELECTION** ( *tabela* : Table ; *arrayRegistro* : Integer array {; *seleçao* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da seleção atual |
+| tabela | Table | → | Tabela da seleção atual |
| arrayRegistro | Integer array | ← | Array dos números gravados |
-| seleçao | Text | → | Nome da seleção escolhida ou a seleção atual se este parâmetro for omitido |
+| seleçao | Text | → | Nome da seleção escolhida ou a seleção atual se este parâmetro for omitido |
@@ -41,6 +41,6 @@ Se quiser recuperar os números dos registros da seleção atual:
| | |
| --- | --- |
| Número do comando | 647 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
index 55cf937f22045f..c180447dca5fff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/longint-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/longint-to-blob
displayed_sidebar: docs
---
-**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; offset } )
**LONGINT TO BLOB** ( *longint* ; *blob* ; *byteOrder* {; *} )
+**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; offset } )
**LONGINT TO BLOB** ( *longint* : Integer ; *blob* : Blob ; *byteOrder* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| longInt | Integer | → | Valor de tipo Inteiro longo a escrever no BLOB |
-| Blob | Blob | → | BLOB a receber o valor Inteiro longo |
-| byteOrder | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
-| offset | * | Variável, Operador | ↔ | Offset no BLOB (expressado em bytes) ou * para adicionar o valor |
-||| | Novo offset depois da escritura se * for omitido |
+| longInt | Integer | → | Valor de tipo Inteiro longo a escrever no BLOB |
+| Blob | Blob | → | BLOB a receber o valor Inteiro longo |
+| byteOrder | Integer | → | 0 Ordem de bytes nativo 1 Ordem de bytes Macintosh 2 Ordem de bytes PC |
+| offset | * | Variável, Operador | ↔ | Offset no BLOB (expressado em bytes) ou * para adicionar o valor |
+| | | | Novo offset depois da escritura se * for omitido |
@@ -120,6 +120,6 @@ Depois de executar esse código:
| | |
| --- | --- |
| Número do comando | 550 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
index c3b0af3c7430c5..a18fc27178c6a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/lowercase.md
@@ -5,12 +5,12 @@ slug: /commands/lowercase
displayed_sidebar: docs
---
-**Lowercase** ( *cadeia* {; *} ) : Text
+**Lowercase** ( *cadeia* : Text {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cadeia | Text | → | Cadeia que vai passar para minúsculas |
-| * | Operador | → | Se passado: manter os acentos |
+| cadeia | Text | → | Cadeia que vai passar para minúsculas |
+| * | Operador | → | Se passado: manter os acentos |
| Resultado | Text | ← | Cadeia em letras minúsculas |
@@ -53,6 +53,6 @@ Este exemplo compara os resultados obtidos de acordo com se é passado ou não o
| | |
| --- | --- |
| Número do comando | 14 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
index 5e8a5d9e094940..9f902107137138 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-command-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 546 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
index 0f7fe0f0fa3fc4..442603ffbfbdee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-control-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 544 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
index 65d6fbba895448..c6880d3a3cb640 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/macintosh-option-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 545 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
index 593ee2f6d49baa..2d993850206b2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/match-regex.md
@@ -10,18 +10,13 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| padrao | Text | → | Expressão regular |
-| umaCadeia | Text | → | Cadeia na qual será realizada a pesquisa |
-| posiçao | Integer | → | Posição em umaCadeia onde começa a pesquisa |
-| pos_encont | Integer array, Integer | ← | Posição da ocorrência |
-| compr_encont | Integer array, Integer | ← | Comprimento da ocorrência |
-| * | Operador | → | Se passado, a função pesquisa apenas na posição indicada |
+| padrao | Text | → | Regular expression (complete equality with two-parameters syntax) |
+| umaCadeia | Text | → | Cadeia na qual será realizada a pesquisa |
+| posiçao | Integer | → | Posição em umaCadeia onde começa a pesquisa |
+| pos_encont | Integer, Integer array | ← | Posição da ocorrência |
+| compr_encont | Integer, Integer array | ← | Comprimento da ocorrência |
+| * | Operador | → | Se passado, a função pesquisa apenas na posição indicada |
| Resultado | Boolean | ← | True=pesquisa encontrou uma ocorrência, se não, False |
-| Match regex ( padrao ; umaCadeia ) -> Resultado |
-| Parâmetro | Tipo | Descrição |
-| padrao | Text | → | Expressão regular (igualdade completa) |
-| umaCadeia | Text | → | Cadeia na qual será realizada a pesquisa |
-| Resultado | Boolean | ← | True = pesquisa encontrou uma ocorrência, se não, False |
@@ -118,7 +113,7 @@ Em caso de erro, o comando gera um erro que pode interceptar através de um mét
| | |
| --- | --- |
| Número do comando | 1019 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md
index 5389cff7419cd2..3e8d96e58e7147 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/max.md
@@ -5,13 +5,13 @@ slug: /commands/max
displayed_sidebar: docs
---
-**Max** ( *séries* {; *atributoRota*} ) : any
+**Max** ( *séries* : Field, Array {; *atributoRota* : Text} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| séries | Field, Array | → | Dados para os quais se retorna o valor máximo |
-| atributoRota | Text | → | Rota do atributo para o qual retornar o valor máximo |
-| Resultado | Date, Number | ← | Valor máximo na série |
+| séries | Field, Array | → | Dados para os quais se retorna o valor máximo |
+| atributoRota | Text | → | Rota do atributo para o qual retornar o valor máximo |
+| Resultado | Date, Real | ← | Valor máximo na série |
@@ -76,7 +76,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 3 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
index 7f8237f4e6dbee..a42c99d17993c7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/maximize-window.md
@@ -5,11 +5,11 @@ slug: /commands/maximize-window
displayed_sidebar: docs
---
-**MAXIMIZE WINDOW** {( *janela* )}
+**MAXIMIZE WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela ou se for omitido, todos os processos atuais de janela de primeiro plano; ou processo atual da janela de primeiro plano (macOS) |
+| janela | Integer | → | Número de referência da janela ou se for omitido, todos os processos atuais de janela de primeiro plano; ou processo atual da janela de primeiro plano (macOS) |
@@ -85,6 +85,6 @@ Neste contexto, se o usuário fizer clique no botão:
| | |
| --- | --- |
| Número do comando | 453 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
index 11a20716b8440d..86b2916fa7c6bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/memory-statistics.md
@@ -5,11 +5,11 @@ slug: /commands/memory-statistics
displayed_sidebar: docs
---
-**MEMORY STATISTICS** ( *tipoInfo* ; *arrayNomes* ; *arrayValores* ; *arrayContador* )
+**MEMORY STATISTICS** ( *tipoInfo* : Integer ; *arrayNomes* : Text array ; *arrayValores* : Real array ; *arrayContador* : Real array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoInfo | Integer | → | Seletor de informação a ser obtido |
+| tipoInfo | Integer | → | Seletor de informação a ser obtido |
| arrayNomes | Text array | ← | Títulos da informação |
| arrayValores | Real array | ← | Valores da informação |
| arrayContador | Real array | ← | Número de objetos respectivos (se disponível) |
@@ -33,6 +33,6 @@ Depois que o comando for executado, as estatísticas são fornecidas nos arrays
| | |
| --- | --- |
| Número do comando | 1118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
index e269b66a5b98f3..962b27c39eddad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ O comando retorna 0:
| | |
| --- | --- |
| Número do comando | 440 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
index c64b779bb38ff9..e493d1815d18de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 441 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
index 392a2a046a7dbc..433b3e545d6564 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/menu-selected.md
@@ -5,7 +5,7 @@ slug: /commands/menu-selected
displayed_sidebar: docs
---
-**Menu selected** {( *subMenu* )} : Integer
+**Menu selected** ( *subMenu* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -67,7 +67,7 @@ O método a seguir de formulário utiliza Menu selected para proporcionar os arg
| | |
| --- | --- |
| Número do comando | 152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md
index 6587f3ebe41a61..e4cb28ee8aa1b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/message.md
@@ -5,11 +5,11 @@ slug: /commands/message
displayed_sidebar: docs
---
-**MESSAGE** ( *mensagem* )
+**MESSAGE** ( *mensagem* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mensagem | Text | → | Mensagem a exibir |
+| mensagem | Text | → | Mensagem a exibir |
@@ -118,6 +118,6 @@ O resultado é o seguinte (em Windows):
| | |
| --- | --- |
| Número do comando | 88 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
index 8f302045d87732..8293299fcb877f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-off.md
@@ -71,6 +71,6 @@ O exemplo a seguir elimina os termômetros de progresso antes de realizar uma or
| | |
| --- | --- |
| Número do comando | 175 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
index fed12c360863cf..4db4282b894d6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 181 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
index e74b53317ddca2..4ce8d230c4cad3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-error.md
@@ -5,11 +5,11 @@ slug: /commands/method-called-on-error
displayed_sidebar: docs
---
-**Method called on error** {( *scope* )} : Text
+**Method called on error** ( *scope* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| scope | Integer | → | Escopo/alcance do método de erro |
+| scope | Integer | → | Escopo/alcance do método de erro |
| Resultado | Text | ← | Nome do método de chamada por erro |
@@ -51,6 +51,6 @@ Este comando é particularmente útil no contexto de componentes porque lhe perm
| | |
| --- | --- |
| Número do comando | 704 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
index a40e96fe98075d..c71e92a9ec9ade 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Se nenhum método do tipo for instalado, uma cadeia vazia ("") é retornada.
| | |
| --- | --- |
| Número do comando | 705 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
index d8dddeaa7d229b..6af103ceee59e1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attribute.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attribute
displayed_sidebar: docs
---
-**METHOD Get attribute** ( *rota* ; *tipoAtributo* {; *} ) : Boolean
+**METHOD Get attribute** ( *rota* : Text ; *tipoAtributo* : Integer {; *} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Rota do método projeto |
-| tipoAtributo | Integer | → | Tipo de atributo a obter |
-| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado desde um componente (parâmetro ignorado fora deste contexto) |
+| rota | Text | → | Rota do método projeto |
+| tipoAtributo | Integer | → | Tipo de atributo a obter |
+| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado desde um componente (parâmetro ignorado fora deste contexto) |
| Resultado | Boolean | ← | True = Atributo selecionado, do contrário False |
@@ -47,6 +47,6 @@ O comando retorna **True** se for selecionado um atributo e **False** se for des
| | |
| --- | --- |
| Número do comando | 1169 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
index f1b1fcb470c84e..e5049788e7eb52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-attributes
displayed_sidebar: docs
---
-**METHOD GET ATTRIBUTES** ( *caminho* ; *atributos* {; *} )
+**METHOD GET ATTRIBUTES** ( *caminho* : Text, Text array ; *atributos* : Object, Object array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| caminho | Text, Text array | → | Caminho do método |
+| caminho | Text, Text array | → | Caminho do método |
| atributos | Object, Object array | ← | Atributos para métodos selecionados |
-| * | Operador | → | se passado = comando aplica para banco de dados local quando executado a partir de um componente (parâmetro ignorado fora desse contexto) |
+| * | Operador | → | se passado = comando aplica para banco de dados local quando executado a partir de um componente (parâmetro ignorado fora desse contexto) |
@@ -65,6 +65,6 @@ Depois da execução, $att contém, por exemplo:
| | |
| --- | --- |
| Número do comando | 1334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
index eabb80d73ec599..61b1b0e8750a1b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-code.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-code
displayed_sidebar: docs
---
-**METHOD GET CODE** ( *rota* ; *codigo* {; *option*} {; *} )
+**METHOD GET CODE** ( *rota* : Text, Text array ; *codigo* : Text, Text array {; *option* : Integer} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text, Text array | → | Texto ou array de texto que contém uma ou vários caminhos de acesso |
+| rota | Text, Text array | → | Texto ou array de texto que contém uma ou vários caminhos de acesso |
| codigo | Text, Text array | ← | Código dos métodos designados |
-| option | Integer | → | 0 ou omis = exportar simples (sem token), 1 = exportar com tokens |
-| * | Operador | → | Se passado = o comando é aplicado à base de dados de host quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| option | Integer | → | 0 ou omis = exportar simples (sem token), 1 = exportar com tokens |
+| * | Operador | → | Se passado = o comando é aplicado à base de dados de host quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -130,6 +130,6 @@ O documento resultante conterá:
| | |
| --- | --- |
| Número do comando | 1190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
index f6106ac605876b..2794743287a310 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-comments
displayed_sidebar: docs
---
-**METHOD GET COMMENTS** ( *rota* ; *comentários* {; *} )
+**METHOD GET COMMENTS** ( *rota* : Text, Text array ; *comentários* : Text, Text array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text, Text array | → | Texto ou array de texto que contém uma ou várias rotas de método |
+| rota | Text, Text array | → | Texto ou array de texto que contém uma ou várias rotas de método |
| comentários | Text, Text array | ← | Comentários dos métodos designados |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -62,6 +62,6 @@ Se o comando é executado desde um componente, se aplica por defeito aos método
| | |
| --- | --- |
| Número do comando | 1189 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
index 9b62fd2204f516..37f20a9cd80c6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-folders.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-folders
displayed_sidebar: docs
---
-**METHOD GET FOLDERS** ( *arrayNoms* {; *filtro*}{; *} )
+**METHOD GET FOLDERS** ( *arrayNoms* : Text array {; *filtro* : Text}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| arrayNoms | Text array | ← | Array de nomes de pastas da página de início |
-| filtro | Text | → | Filtro de nomes |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| filtro | Text | → | Filtro de nomes |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -35,6 +35,6 @@ Se executado este comando desde um componente, devolve por defeito os caminhos d
| | |
| --- | --- |
| Número do comando | 1206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
index 19d00bc6d59fa6..b12afaca5271d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-modification-date.md
@@ -5,14 +5,14 @@ slug: /commands/method-get-modification-date
displayed_sidebar: docs
---
-**METHOD GET MODIFICATION DATE** ( *rota* ; *dataMod* ; *horaMod* {; *} )
+**METHOD GET MODIFICATION DATE** ( *rota* : Text, Text array ; *dataMod* : Date, Date array ; *horaMod* : Time, Integer array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text, Text array | → | Texto ou array que contém uma ou mais rotas de acesso |
+| rota | Text, Text array | → | Texto ou array que contém uma ou mais rotas de acesso |
| dataMod | Date, Date array | ← | Data(s) de modificação do método |
| horaMod | Time, Integer array | ← | Hora(s) de modificação do método |
-| * | Operador | → | Se passar = o comando é aplicado ao banco local quando é executado apartir de um componente (parâmetro ignorado fora deste contexto) |
+| * | Operador | → | Se passar = o comando é aplicado ao banco local quando é executado apartir de um componente (parâmetro ignorado fora deste contexto) |
@@ -74,6 +74,6 @@ Se quiser obter as datas de modificação dos métodos de um módulo com o prefi
| | |
| --- | --- |
| Número do comando | 1170 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
index 84471da80b125c..6bfaa1b4d86bf8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-names.md
@@ -5,13 +5,13 @@ slug: /commands/method-get-names
displayed_sidebar: docs
---
-**METHOD GET NAMES** ( *arrayNoms* {; *filtro*}{; *} )
+**METHOD GET NAMES** ( *arrayNoms* : Text array {; *filtro* : Text}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| arrayNoms | Text array | ← | Arrays de nomes de métodos de projeto |
-| filtro | Text | → | Filtros de nomes |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| filtro | Text | → | Filtros de nomes |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -46,6 +46,6 @@ Exemplos de uso:
| | |
| --- | --- |
| Número do comando | 1166 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
index 7a41af2ade99ab..61f86441d27a72 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-path.md
@@ -5,15 +5,15 @@ slug: /commands/method-get-path
displayed_sidebar: docs
---
-**METHOD Get path** ( *tipoMetodo* {; *aTabela*}{; *nomObjeto*{; *nomObjetoForm*}}{; *} ) : Text
+**METHOD Get path** ( *tipoMetodo* : Integer {; *aTabela*}{; *nomObjeto* : Text{; *nomObjetoForm* : Text}}{; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoMetodo | Integer | → | Seletor de tipo objeto |
-| aTable | Table | → | Referência de tabela |
-| nomObjeto | Text | → | Nome de formulário ou método base |
+| tipoMetodo | Integer | → | Seletor de tipo objeto |
+| aTable | Table | → | Referência de tabela |
+| nomObjeto | Text | → | Nome de formulário ou método base |
| nomObjetoForm | Text | ← | Nome do objeto de formulário |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
| Resultado | Text | ← | Rota de acesso completa do objeto |
@@ -70,6 +70,6 @@ Se o comando for executado desde um componente, retorna como padrão as rotas do
| | |
| --- | --- |
| Número do comando | 1164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
index 0aa7d987fa2539..1ef827c64fc53e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths-form.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths-form
displayed_sidebar: docs
---
-**METHOD GET PATHS FORM** ( {*aTabela* ;} *arrRotas* {; *filtro*}{; *marcador*}{; *} )
+**METHOD GET PATHS FORM** ( {*aTabela* ;} *arrRotas* : Text array {; *filtro* : Text}{; *marcador* : Real}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Referência de tabela |
+| aTable | Table | → | Referência de tabela |
| arrRotas | Text array | ← | Arrays de rotas e nomes dos métodos |
-| filtro | Text | → | Filtros de nomes |
-| marcador | Real | → | Valor mínimo de marcador |
-| ← | Novo valor atual |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| filtro | Text | → | Filtros de nomes |
+| marcador | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -75,6 +74,6 @@ Lista de todos os objetos dos formulários "input" da tabela \[Empregados\] a pa
| | |
| --- | --- |
| Número do comando | 1168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
index 663e126cebf0d5..eb1aad269b422e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-get-paths.md
@@ -5,16 +5,15 @@ slug: /commands/method-get-paths
displayed_sidebar: docs
---
-**METHOD GET PATHS** ( {*nomPasta* ;} *tipoMetodo* ; *arrRotas* {; *marcador*}{; *} )
+**METHOD GET PATHS** ( {*nomPasta* : Text ;} *tipoMetodo* : Integer ; *arrRotas* : Text array {; *marcador* : Real}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomPasta | Text | → | Nome da página da pasta de inicio |
-| tipoMetodo | Integer | → | Seletor de tipo de método a recuperar |
+| nomPasta | Text | → | Nome da página da pasta de inicio |
+| tipoMetodo | Integer | → | Seletor de tipo de método a recuperar |
| arrRotas | Text array | ← | Arrays de rotas e nomes dos métodos |
-| marcador | Real | → | Valor mínimo de marcador |
-| ← | Novo valor atual |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| marcador | Real | ↔ | *in:* Minimum value of stamp
*out:* New current value |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -90,6 +89,6 @@ Consulte o exemplo do comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número do comando | 1163 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
index acbeca34ffa9d3..47371f23414048 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-open-path.md
@@ -5,13 +5,13 @@ slug: /commands/method-open-path
displayed_sidebar: docs
---
-**METHOD OPEN PATH** ( *rota* {; *line*}{; *} )
+**METHOD OPEN PATH** ( *rota* : Text {; *line* : Real}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Rota do método à abrir |
-| line | Number | → | Line number |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| rota | Text | → | Rota do método à abrir |
+| line | Real | → | Line number |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -35,6 +35,6 @@ Pode executar este comando desde um componente, mas neste caso, deve passar o pa
| | |
| --- | --- |
| Número do comando | 1213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
index 6bcb3b06dd0c3c..0193dd9e9ad907 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-resolve-path.md
@@ -5,16 +5,16 @@ slug: /commands/method-resolve-path
displayed_sidebar: docs
---
-**METHOD RESOLVE PATH** ( *rota* ; *tipoMetodo* ; *prtTabela* ; *nomObjeto* ; *nomObjetoForm* {; *} )
+**METHOD RESOLVE PATH** ( *rota* : Text ; *tipoMetodo* : Integer ; *prtTabela* : Pointer ; *nomObjeto* : Text ; *nomObjetoForm* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Rota a resolver |
+| rota | Text | → | Rota a resolver |
| tipoMetodo | Integer | ← | Seletor tipo de objeto |
| prtTabela | Pointer | ← | Referência de tabela |
| nomObjeto | Text | ← | Nome de formulário ou método de base |
| nomObjetoForm | Text | ← | Nome de objeto de formulário |
-| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
+| * | Operador | → | Se passado = o comando se aplica à base local quando se executa desde um componente (parâmetro ignorado fora deste contexto) |
@@ -89,6 +89,6 @@ Resolução de uma rota de método de formulário tabela:
| | |
| --- | --- |
| Número do comando | 1165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
index 458ad1b1925424..99c432a7d30041 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-access-mode.md
@@ -5,11 +5,11 @@ slug: /commands/method-set-access-mode
displayed_sidebar: docs
---
-**METHOD SET ACCESS MODE** ( *modo* )
+**METHOD SET ACCESS MODE** ( *modo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| modo | Integer | → | Modo de acesso aos objetos bloqueados |
+| modo | Integer | → | Modo de acesso aos objetos bloqueados |
@@ -31,6 +31,6 @@ Em *modo*, passe uma das seguintes constantes do tema *Design Object Access*:
| | |
| --- | --- |
| Número do comando | 1191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
index 0e856454b851f0..fe574cf85769a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/method-set-attribute
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTE** ( *rota* ; *tipoAtrib* ; *valorAtrib* {; *tipoAtrib2* ; *valorAtrib2* ; ... ; *tipoAtribN* ; *valorAtribN*}{; *} )
+**METHOD SET ATTRIBUTE** ( *rota* : Text ; *tipoAtrib* : Integer ; *valorAtrib* : Boolean, Text {; ...(*tipoAtrib* : Integer, *valorAtrib* : Boolean, Text)}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Rota do método projeto |
-| tipoAtrib | Integer | → | Tipo de atributo |
-| valorAtrib | Boolean, Text | → | True = selecionar atributo False = desfazer a seleção do atributo |
-| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
+| rota | Text | → | Rota do método projeto |
+| tipoAtrib | Integer | → | Tipo de atributo |
+| valorAtrib | Boolean, Text | → | True = selecionar atributo False = desfazer a seleção do atributo |
+| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
@@ -73,6 +73,6 @@ Definição de vários pares de atributos/valores:
| | |
| --- | --- |
| Número do comando | 1192 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
index 7a0e8a9928e8bf..4330c4e25f6409 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-attributes.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-attributes
displayed_sidebar: docs
---
-**METHOD SET ATTRIBUTES** ( *caminho* ; *atributos* {; *} )
+**METHOD SET ATTRIBUTES** ( *caminho* : Text, Text array ; *atributos* : Object, Object array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| caminho | Text, Text array | → | Caminho dos métodos |
-| atributos | Object, Object array | → | Atributos a estabelecer para os métodos selecionados |
-| * | Operador | → | Se passado = comando aplica ao banco de dados host quando executado a partir de um componente (parâmetro ignorado fora desse contexto) |
+| caminho | Text, Text array | → | Caminho dos métodos |
+| atributos | Object, Object array | → | Atributos a estabelecer para os métodos selecionados |
+| * | Operador | → | Se passado = comando aplica ao banco de dados host quando executado a partir de um componente (parâmetro ignorado fora desse contexto) |
@@ -66,6 +66,6 @@ Se você desejar modificar apenas um atributo:
| | |
| --- | --- |
| Número do comando | 1335 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
index 4b6e92b6ec2b66..050dc29d241568 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-code.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-code
displayed_sidebar: docs
---
-**METHOD SET CODE** ( *rota* ; *codigo* {; *} )
+**METHOD SET CODE** ( *rota* : Text, Text array ; *codigo* : Text, Text array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text, Text array | → | Texto ou array texto que contém uma ou mais rotas de método |
-| codigo | Text, Text array | → | Código dos métodos designados |
-| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
+| rota | Text, Text array | → | Texto ou array texto que contém uma ou mais rotas de método |
+| codigo | Text, Text array | → | Código dos métodos designados |
+| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
@@ -102,6 +102,6 @@ Este exemplo exporta e importa a totalidade dos métodos projeto de uma aplicaç
| | |
| --- | --- |
| Número do comando | 1194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
index 6dd799ac96b68f..ef8190da863a6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/method-set-comments.md
@@ -5,13 +5,13 @@ slug: /commands/method-set-comments
displayed_sidebar: docs
---
-**METHOD SET COMMENTS** ( *rota* ; *Comentarios* {; *} )
+**METHOD SET COMMENTS** ( *rota* : Text, Text array ; *Comentarios* : Text, Text array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text, Text array | → | Texto ou array texto contendo uma ou mais rotas de método |
-| Comentarios | Text, Text array | → | Comentários dos métodos designados |
-| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
+| rota | Text, Text array | → | Texto ou array texto contendo uma ou mais rotas de método |
+| Comentarios | Text, Text array | → | Comentários dos métodos designados |
+| * | Operador | → | Se passado = o comando aplica ao banco de dados local quando é executado de um componente (parâmetro ignorado fora deste contexto) |
@@ -75,6 +75,6 @@ Pode executar o comando de uma componente, mas neste caso você deve passar o pa
| | |
| --- | --- |
| Número do comando | 1193 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
index f35653ca0b8274..70f40de3f566c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ O código abaixo espera até 5 segundos para que um registro bloqueado seja desb
| | |
| --- | --- |
| Número do comando | 459 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md
index d1fbcc299d6373..bd6b0c0d823c4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/min.md
@@ -5,13 +5,13 @@ slug: /commands/min
displayed_sidebar: docs
---
-**Min** ( *series* {; *atributoRota*} ) : any
+**Min** ( *series* : Field, Array {; *atributoRota* : Text} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna o valor mínimo |
-| atributoRota | Text | → | Rota do atributo para o qual retorna o valor mínimo |
-| Resultado | Date, Number | ← | Valor mínimo em séries |
+| series | Field, Array | → | Dados para os quais se retorna o valor mínimo |
+| atributoRota | Text | → | Rota do atributo para o qual retorna o valor mínimo |
+| Resultado | Date, Real | ← | Valor mínimo em séries |
@@ -84,7 +84,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 4 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
index 3e9cd4c032e5b7..deaacd8e7d25a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/minimize-window.md
@@ -5,11 +5,11 @@ slug: /commands/minimize-window
displayed_sidebar: docs
---
-**MINIMIZE WINDOW** {( *janela* )}
+**MINIMIZE WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência de janela ou se for omitido, todos os processos atuais e janelas de primeiro plano (Windows) ou processo atual de primeiro plano (macOS) |
+| janela | Integer | → | Número de referência de janela ou se for omitido, todos os processos atuais e janelas de primeiro plano (Windows) ou processo atual de primeiro plano (macOS) |
@@ -56,6 +56,6 @@ Mac OS
| | |
| --- | --- |
| Número do comando | 454 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
index c7f16d5eb12a45..cdbbe9bb2205e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Se quiser resetar todas as sessões atuais para todas as aplicações móveis:
| | |
| --- | --- |
| Número do comando | 1596 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
index a2666d95d9b1aa..77e90ee1e4ba15 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mod.md
@@ -9,8 +9,8 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero 1 | Inteiro longo | → | Número a ser dividido (dividendo) |
-| numero 2 | Inteiro longo | → | Número pelo qual se divide (divisor) |
+| numero 1 | Inteiro longo | → | Número a ser dividido (dividendo) |
+| numero 2 | Inteiro longo | → | Número pelo qual se divide (divisor) |
| Resultado | Real | ← | Devolve o resto da divisão |
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra o funcionamento de Mod com diferentes argumentos. Cad
| | |
| --- | --- |
| Número do comando | 98 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
index 9e689f60c20384..6277c6ab9dbf10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified-record.md
@@ -5,11 +5,11 @@ slug: /commands/modified-record
displayed_sidebar: docs
---
-**Modified record** {( *tabela* )} : Boolean
+**Modified record** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a testar se registro atual foi modificada ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela a testar se registro atual foi modificada ou tabela padrão, se omitido |
| Resultado | Boolean | ← | Registro foi modificado (True) ou Registro não foi modificado (False) |
@@ -48,6 +48,6 @@ O exemplo a seguir mostra uma utilização típica de Modified record:
| | |
| --- | --- |
| Número do comando | 314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
index 26de8a9da5510a..048a37e084a5ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modified.md
@@ -5,11 +5,11 @@ slug: /commands/modified
displayed_sidebar: docs
---
-**Modified** ( *campo* ) : Boolean
+**Modified** ( *campo* : Field ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo a provar |
+| campo | Field | → | Campo a provar |
| Resultado | Boolean | ← | Verdadeiro se foi assinalado um novo valor ao campo, caso contrario Falso |
@@ -73,6 +73,6 @@ Seleciona um registro para a tabela *\[umaTabela\]*, depois chama múltiplas sub
| | |
| --- | --- |
| Número do comando | 32 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
index f6f2a3631704f8..d0623bb91dc483 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-record.md
@@ -5,12 +5,12 @@ slug: /commands/modify-record
displayed_sidebar: docs
---
-**MODIFY RECORD** ( {*tabela*}{;}{*} )
+**MODIFY RECORD** ( {*tabela* : Table}{;}{*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a utilizar para entrada de dados ou Tabela por padrão, se omitida |
-| * | Operator | → | Ocultar barras de deslocamento |
+| tabela | Table | → | Tabela a utilizar para entrada de dados ou Tabela por padrão, se omitida |
+| * | Operator | → | Ocultar barras de deslocamento |
@@ -54,7 +54,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 57 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
index e610cd0fb6a9bb..85a42df934c641 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/modify-selection.md
@@ -5,15 +5,15 @@ slug: /commands/modify-selection
displayed_sidebar: docs
---
-**MODIFY SELECTION** ( {*tabela*}{; *modoSelecao*}{; *entraLista*}{; *}{; *} )
+**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}{; *} )
**MODIFY SELECTION** ( {*aTable* : Table}{; *selectMode* : Integer}{; *enterList* : Boolean}; * {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a exibir e modificar, ou tabela padrão, se omitido |
-| modoSelecao | Integer | → | Modo seleção |
-| entraLista | Boolean | → | Permite Enter na lista opção |
-| * | Operator | → | Use formulário de saída para uma seleção de registros e esconder as barras de rolagem no formulário de entrada |
-| * | Operator | → | Mostrar barras de rolagem no formulário de entrada (desativa segunda opção ou o primeiro * opcional) |
+| tabela | Table | → | Tabela a exibir e modificar, ou tabela padrão, se omitido |
+| modoSelecao | Integer | → | Modo seleção |
+| entraLista | Boolean | → | Permite Enter na lista opção |
+| * | Operator | → | Use formulário de saída para uma seleção de registros e esconder as barras de rolagem no formulário de entrada |
+| * | Operator | → | Mostrar barras de rolagem no formulário de entrada (desativa segunda opção ou o primeiro * opcional) |
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
index b9a5d309adef21..6d5f54b297098c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/monitored-activity.md
@@ -141,6 +141,6 @@ Ver exemplos para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número do comando | 1713 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
index b453f55c06c301..87bb22304bee1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/month-of.md
@@ -5,11 +5,11 @@ slug: /commands/month-of
displayed_sidebar: docs
---
-**Month of** ( *data* ) : Integer
+**Month of** ( *data* : Date ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| data | Date | → | Data para a qual devolver o mês |
+| data | Date | → | Data para a qual devolver o mês |
| Resultado | Integer | ← | Número que indica o mês da data |
@@ -58,6 +58,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 24 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
index 4185d1e0d00996..2bf2db645a5092 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/mouse-position.md
@@ -5,14 +5,14 @@ slug: /commands/mouse-position
displayed_sidebar: docs
---
-**MOUSE POSITION** ( *mouseX* ; *mouseY* ; *botaoMouse* {; *} )
+**MOUSE POSITION** ( *mouseX* : Real ; *mouseY* : Real ; *botaoMouse* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| mouseX | Real | ← | Coordenadas horizontais do mouse |
| mouseY | Real | ← | Coordenadas verticais do mouse |
| botaoMouse | Integer | ← | Estado do botão do mouse: 0=botão sem pressionar; 1=botão pressionado; 2= botão direito pressionado; 3=dois botões pressionados |
-| * | Operador | → | Se especificado, sistema global de coordenadas é usado, se omitido, sistema de coordenadas locais é usado |
+| * | Operador | → | Se especificado, sistema global de coordenadas é usado, se omitido, sistema de coordenadas locais é usado |
@@ -47,6 +47,6 @@ Ver o exemplo do comando [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Número do comando | 468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
index a578dc7a51d0a9..adfd0e190a2f21 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/move-document.md
@@ -5,12 +5,12 @@ slug: /commands/move-document
displayed_sidebar: docs
---
-**MOVE DOCUMENT** ( *rotaFonte* ; *rotaDestino* )
+**MOVE DOCUMENT** ( *rotaFonte* : Text ; *rotaDestino* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaFonte | Text | → | Nome da rota completa do documento existente |
-| rotaDestino | Text | → | Rota de acesso destino |
+| rotaFonte | Text | → | Nome da rota completa do documento existente |
+| rotaDestino | Text | → | Rota de acesso destino |
@@ -57,7 +57,7 @@ O exemplo abaixo move o documento DocNome:
| | |
| --- | --- |
| Número do comando | 540 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
index 9f0746ba5b6640..811084c4dda8ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/multi-sort-array.md
@@ -5,15 +5,14 @@ slug: /commands/multi-sort-array
displayed_sidebar: docs
---
-**MULTI SORT ARRAY** ( *array* {; *ordem*}{; *array2* ; *ordem2* ; ... ; *arrayN* ; *ordemN*} )
-**MULTI SORT ARRAY** ( *ptrArrayNome* ; *sortArrayNome* )
+**MULTI SORT ARRAY** ( *array* : Array {; *sort* : Operator}{; ...*array* : Array ; ...*sort* : Operator} )
**MULTI SORT ARRAY** ( *ptrArrayName* : Pointer array ; *sortArrayName* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array a ser ordenado |
-| ordem | * | → | ">" para ordernar em ordem crescente ou "<" para ordenar em ordem decrescente, se omitido "aa" sem ordem |
-| ptrArrayNome | Pointer array | → | Array de um array de ponteiros |
-| sortArrayNome | Integer array | → | Ordenação do array (1 = ordenar em ordem crescente, -1 = ordenar em ordem descrescente, 0 = sincronização com a ordenação anterior) |
+| array | Array | → | Array a ser ordenado |
+| ordem | Operator | → | `>` to sort by increasing order or `<` to sort by decreasing order; if omitted no sort |
+| ptrArrayNome | Pointer array | → | Array de um array de ponteiros |
+| sortArrayNome | Integer array | → | Ordenação do array (1 = ordenar em ordem crescente, -1 = ordenar em ordem descrescente, 0 = sincronização com a ordenação anterior) |
@@ -119,6 +118,6 @@ Se quiser que o array de nomes seja usado como um terceiro critério de ordenaç
| | |
| --- | --- |
| Número do comando | 718 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
index a2dd5ffca1561c..984555e82c9fb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/new-data-key
displayed_sidebar: docs
---
-**New data key** ( *frasePasse* ) : Object
+**New data key** ( *frasePasse* : Text ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| frasePasse | Text | → | Frase-passe usada para gerar a chave de criptografia de dados AES |
+| frasePasse | Text | → | Frase-passe usada para gerar a chave de criptografia de dados AES |
| Resultado | Object | ← | Objeto que contém a chave (propriedade encodedKey) |
@@ -61,6 +61,6 @@ Se quiser salvar uma chave de criptografia em um arquivo .4DKeyChain:
| | |
| --- | --- |
| Número do comando | 1611 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
index 76ec5e9f80873f..d15888faa5d44f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 375 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
index 7901ee6aea6997..18145baf5fa23a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-object
displayed_sidebar: docs
---
-**New object** {( *propriedade* ; *valor* {; *propriedade2* ; *valor2* ; ... ; *propriedadeN* ; *valorN*} )} : Object
+**New object** ( *propriedade* : Text ; *valor* : any {; ...(*propriedade* : Text, *valor* : any)} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| propriedade | Text | → | Nome da propriedade a criar |
-| valor | any | → | Valor da propriedade |
+| propriedade | Text | → | Nome da propriedade a criar |
+| valor | any | → | Valor da propriedade |
| Resultado | Object | ← | Novo objeto linguagem |
@@ -114,6 +114,6 @@ Com este comando, pode fácilmente manejar objetos em loops:
| | |
| --- | --- |
| Número do comando | 1471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
index 53c1ae787e74a3..b4f1686849af33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-process.md
@@ -5,15 +5,15 @@ slug: /commands/new-process
displayed_sidebar: docs
---
-**New process** ( *metodo* ; *pilha* {; *nome* {; *param* {; *param2* ; ... ; *paramN*}}}{; *} ) : Integer
+**New process** ( *metodo* : Text ; *pilha* : Integer {; *nome* : Text {; *param* : Expression {; *...param* : Expression}}}{; *} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| metodo | Text | → | Método a executar no processo |
-| pilha | Integer | → | Tamanho da pilha em bytes |
-| nome | Text | → | Nome do processo criado |
-| param | Expression | → | Parâmetros do método |
-| * | Operador | → | Processo único |
+| metodo | Text | → | Método a executar no processo |
+| pilha | Integer | → | Tamanho da pilha em bytes |
+| nome | Text | → | Nome do processo criado |
+| param | Expression | → | Parâmetros do método |
+| * | Operador | → | Processo único |
| Resultado | Integer | ← | Número do processo criado recentemente ou do processo que está sendo executado |
@@ -112,6 +112,6 @@ No editor de barras de menus, pode substituir ADICIONAR CLIENTES pelo método IN
| | |
| --- | --- |
| Número do comando | 317 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
index 667737736b27b9..fc9c41ca322248 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/new-shared-object.md
@@ -5,12 +5,12 @@ slug: /commands/new-shared-object
displayed_sidebar: docs
---
-**New shared object** {( *propriedade* ; *valor* {; *propriedade2* ; *valor2* ; ... ; *propriedadeN* ; *valorN*} )} : Object
+**New shared object** ( *propriedade* : Text ; *valor* : any {; ...(*propriedade* : Text, *valor* : any)} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| propriedade | Text | → | Nome de propriedade a criar |
-| valor | Text, Date, Boolean, Pointer, Number, Object | → | Valor da propriedade |
+| propriedade | Text | → | Nome de propriedade a criar |
+| valor | any | → | Valor da propriedade |
| Resultado | Object | ← | Novo objeto compartido |
@@ -73,6 +73,6 @@ Se quiser criar e modificar um objeto compartido. A estrutura deve ser chamada p
| | |
| --- | --- |
| Número do comando | 1526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
index f6eacfbcfb5b99..4445559d379917 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-record.md
@@ -5,11 +5,11 @@ slug: /commands/next-record
displayed_sidebar: docs
---
-**NEXT RECORD** {( *tabela* )}
+**NEXT RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual mover o novo registro selecionado, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual mover o novo registro selecionado, ou tabela padrão, se omitido |
@@ -36,7 +36,7 @@ Ver o exemplo do comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número do comando | 51 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
index 2c797723510036..3cf66a44337d10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/next-window.md
@@ -5,11 +5,11 @@ slug: /commands/next-window
displayed_sidebar: docs
---
-**Next window** ( *janela* ) : Integer
+**Next window** ( *janela* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela |
+| janela | Integer | → | Número de referência da janela |
| Resultado | Integer | ← | Número de referência de janela |
@@ -29,6 +29,6 @@ O comando Next window devolve o número de referência da janela localizada “a
| | |
| --- | --- |
| Número do comando | 448 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
index 050d471da31651..f96e83c580574c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/no-default-table.md
@@ -48,6 +48,6 @@ Em um banco que contenha um formulário de projeto chamado "oFormulário" e um f
| | |
| --- | --- |
| Número do comando | 993 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md
index 36818f1f757ec1..37a449d11bc648 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/not.md
@@ -5,11 +5,11 @@ slug: /commands/not
displayed_sidebar: docs
---
-**Not** ( *booleano* ) : Boolean
+**Not** ( *booleano* : Boolean ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| booleano | Boolean | → | Valor booleano a ser negado |
+| booleano | Boolean | → | Valor booleano a ser negado |
| Resultado | Boolean | ← | Oposto do booleano |
@@ -38,6 +38,6 @@ Este exemplo atribui primeiro Verdadeiro a uma variável, logo muda o valor da v
| | |
| --- | --- |
| Número do comando | 34 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
index a9b7f5e1bdcbab..845f906cb24bcb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ O parâmetro atual pode estar definido:
| | |
| --- | --- |
| Número do comando | 1052 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md
index c3a8bfa342e45d..1d2d97bf92f602 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/null.md
@@ -136,6 +136,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 1517 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
index e5983c4ff4d4bf..a57593a8218040 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-class.md
@@ -5,11 +5,11 @@ slug: /commands/ob-class
displayed_sidebar: docs
---
-**OB Class** ( *objeto* ) : any
+**OB Class** ( *objeto* : Object ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto cuja classe vai ser retornada |
+| objeto | Object | → | Objeto cuja classe vai ser retornada |
| Resultado | Null, Object | ← | Classe do objeto |
@@ -48,6 +48,6 @@ Depois, em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
index 48d71f727a8eb4..1774545cd7dafb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-copy.md
@@ -5,14 +5,14 @@ slug: /commands/ob-copy
displayed_sidebar: docs
---
-**OB Copy** ( *objeto* {; resolvePont | {; *opção* {; *groupWith*}}} ) : Object
+**OB Copy** ( *objeto* : Object, Campo Object {; resolvePont | {; *opção* : Integer {; *groupWith* : Collection, Object}}} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| resolvePont | Boolean | → | True = resolve os ponteiros, False ou se omitido = não resolve ponteiros |
-| opção | Integer | → | ck shared: retorna um objeto partilhado, ck resolve pointers: resolve os ponteiros antes de copiar |
-| groupWith | Collection, Object | → | Coleção partilhada ou objeto para ser agrupado com o objeto retornado |
+| objeto | Object, Campo Object | → | Objeto estruturado |
+| resolvePont | Boolean | → | True = resolve os ponteiros, False ou se omitido = não resolve ponteiros |
+| opção | Integer | → | ck shared: retorna um objeto partilhado, ck resolve pointers: resolve os ponteiros antes de copiar |
+| groupWith | Collection, Object | → | Coleção partilhada ou objeto para ser agrupado com o objeto retornado |
| Resultado | Object | ← | Cópia de objeto |
@@ -171,6 +171,6 @@ Imagine que queira copiar *$sharedObj* em *$sharedCol mas* como eles pertencem a
| | |
| --- | --- |
| Número do comando | 1225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
index 1b2660004d4ffa..33278b97506702 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-entries.md
@@ -5,11 +5,11 @@ slug: /commands/ob-entries
displayed_sidebar: docs
---
-**OB Entries** ( *objeto* ) : Collection
+**OB Entries** ( *objeto* : Object ) : Collection
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto para retornar conteúdos |
+| objeto | Object | → | Objeto para retornar conteúdos |
| Resultado | Collection | ← | Coleção de objetos com propriedades key/value |
@@ -60,6 +60,6 @@ Usando um objeto com um map hash (sistema key/value) oferece um acesso rápido e
| | |
| --- | --- |
| Número do comando | 1720 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
index 62a03bc499d94e..1ce61343737685 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get-array
displayed_sidebar: docs
---
-**OB GET ARRAY** ( *objeto* ; *propriedade* ; *array* )
+**OB GET ARRAY** ( *objeto* : Object ; *propriedade* : Text ; *array* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade a ler |
-| array | Text array, Real array, Boolean array, Object array, Pointer array, Integer array | ← | Array valor da propriedade |
+| objeto | Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade a ler |
+| array | Array | ← | Array valor da propriedade |
@@ -57,6 +57,6 @@ Queremos mudar um valor no primeiro elemento do array:
| | |
| --- | --- |
| Número do comando | 1229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
index a2164eb1fd7de0..f82dfea07d4beb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-property-names.md
@@ -5,11 +5,11 @@ slug: /commands/ob-get-property-names
displayed_sidebar: docs
---
-**OB GET PROPERTY NAMES** ( *objeto* ; *arrProp* {; *arrTipos*} )
+**OB GET PROPERTY NAMES** ( *objeto* : Object ; *arrProp* : Text array {; *arrTipos* : Integer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto estruturado |
+| objeto | Object | → | Objeto estruturado |
| arrProp | Text array | ← | Nomes das propriedades |
| arrTipos | Integer array | ← | Tipos de propriedades |
@@ -103,6 +103,6 @@ Utilizando um elemento de array de objetos:
| | |
| --- | --- |
| Número do comando | 1232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
index ce618e77cdb54e..114fb42cb18cd9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/ob-get-type
displayed_sidebar: docs
---
-**OB Get type** ( *objeto* ; *propriedade* ) : Integer
+**OB Get type** ( *objeto* : Object ; *propriedade* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade |
+| objeto | Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade |
| Resultado | Integer | ← | Tipo de valor da propriedade |
@@ -59,6 +59,6 @@ Queremos obter o tipo de valores padrão:
| | |
| --- | --- |
| Número do comando | 1230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
index cdaafe67a4299a..0519fc8cac5186 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-get.md
@@ -5,13 +5,13 @@ slug: /commands/ob-get
displayed_sidebar: docs
---
-**OB Get** ( *objeto* ; *propriedade* {; *tipo*} ) : any
+**OB Get** ( *objeto* : Object, Campo Object ; *propriedade* : Text {; *tipo* : Integer} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade a ler |
-| tipo | Integer | → | Tipo ao qual converter o valor |
+| objeto | Object, Campo Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade a ler |
+| tipo | Integer | → | Tipo ao qual converter o valor |
| Resultado | any | ← | Valor atual de propriedade |
@@ -226,6 +226,6 @@ Se quiser conhecer o tamanho de uma imagem armazenada em um atributo objeto:
| | |
| --- | --- |
| Número do comando | 1224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
index 09458d5b0f129d..3f875bc5ab7fb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-instance-of.md
@@ -5,12 +5,12 @@ slug: /commands/ob-instance-of
displayed_sidebar: docs
---
-**OB Instance of** ( *objeto* ; *classe* ) : Boolean
+**OB Instance of** ( *objeto* : Object ; *classe* : Object ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto cuja classe vai ser testada |
-| classe | Object | → | Classe a qual vai testar a pertenência |
+| objeto | Object | → | Objeto cuja classe vai ser testada |
+| classe | Object | → | Classe a qual vai testar a pertenência |
| Resultado | Boolean | ← | True se o objeto pertencer à classe especifica ou à uma classe child, senão false |
@@ -58,6 +58,6 @@ Depois em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
index 71a10c2577612e..33d934e8a0577a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-defined.md
@@ -5,12 +5,12 @@ slug: /commands/ob-is-defined
displayed_sidebar: docs
---
-**OB Is defined** ( *objeto* {; *propriedade*} ) : Boolean
+**OB Is defined** ( *objeto* : Object, Campo Object {; *propriedade* : Text} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| propriedade | Text | → | Se passar = propriedade a verificar, se omitir = verificar o objeto |
+| objeto | Object, Campo Object | → | Objeto estruturado |
+| propriedade | Text | → | Se passar = propriedade a verificar, se omitir = verificar o objeto |
| Resultado | Boolean | ← | Se a propriedade se omite: True se objeto está definido, caso contrário False.
Se a propriedade passar: True se propriedade está definida, caso contrário False |
@@ -66,6 +66,6 @@ Esta prova é equivalente a:
| | |
| --- | --- |
| Número do comando | 1231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
index b34aba03cef654..0bb26fd32d8be1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-empty.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-empty
displayed_sidebar: docs
---
-**OB Is empty** ( *objeto* ) : Boolean
+**OB Is empty** ( *objeto* : Object, Campo Object ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
+| objeto | Object, Campo Object | → | Objeto estruturado |
| Resultado | Boolean | ← | True se objeto está vazio ou indefinido, caso contrário False |
@@ -47,6 +47,6 @@ Estes são os diferentes resultados deste comando como também do comando [OB Is
| | |
| --- | --- |
| Número do comando | 1297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
index 4113a2ee60d38e..c45e0ee273bbb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-is-shared.md
@@ -5,11 +5,11 @@ slug: /commands/ob-is-shared
displayed_sidebar: docs
---
-**OB Is shared** ( *aVerificar* ) : Boolean
+**OB Is shared** ( *aVerificar* : Object, Collection ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aVerificar | Object, Collection | → | Objeto ou coleção a verificar |
+| aVerificar | Object, Collection | → | Objeto ou coleção a verificar |
| Resultado | Boolean | ← | True se o objeto ou coleção for compartilhável, False se for alterável |
@@ -26,6 +26,6 @@ Este comando devolve **True** se for passado uma seleção de entidades compaív
| | |
| --- | --- |
| Número do comando | 1759 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
index 6d0cd25e92e502..4141716e84f93b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-keys.md
@@ -5,11 +5,11 @@ slug: /commands/ob-keys
displayed_sidebar: docs
---
-**OB Keys** ( *objeto* ) : Collection
+**OB Keys** ( *objeto* : Object ) : Collection
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto a retornar os nomes de propriedade |
+| objeto | Object | → | Objeto a retornar os nomes de propriedade |
| Resultado | Collection | ← | Coleção de nomes de propriedade (strings) |
@@ -52,6 +52,6 @@ Se quiser uma coleção com todos os nomes de propriedade de primeiro-nível de
| | |
| --- | --- |
| Número do comando | 1719 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
index e08324ddb819a7..db8488a56cf3d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-remove.md
@@ -5,12 +5,12 @@ slug: /commands/ob-remove
displayed_sidebar: docs
---
-**OB REMOVE** ( *objeto* ; *propriedade* )
+**OB REMOVE** ( *objeto* : Object, Campo Object ; *propriedade* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade a remover |
+| objeto | Object, Campo Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade a remover |
@@ -43,6 +43,6 @@ Você quer eliminar a propriedade "idade" de um objeto:
| | |
| --- | --- |
| Número do comando | 1226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
index 1b978bea6fa5ac..d14b2b1601a0d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-array.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set-array
displayed_sidebar: docs
---
-**OB SET ARRAY** ( *objeto* ; *propriedade* ; *array* )
+**OB SET ARRAY** ( *objeto* : Object, Object ; *propriedade* : Text ; *array* : Array, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade a definir |
-| array | Array, Variable | → | Array a armazenar em propriedade |
+| objeto | Object, Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade a definir |
+| array | Array, Variable | → | Array a armazenar em propriedade |
@@ -136,6 +136,6 @@ Usar um array de imagem:
| | |
| --- | --- |
| Número do comando | 1227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
index 2069836da129f3..6d513f3d301cd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set-null.md
@@ -5,12 +5,12 @@ slug: /commands/ob-set-null
displayed_sidebar: docs
---
-**OB SET NULL** ( *objeto* ; *propriedade* )
+**OB SET NULL** ( *objeto* : Object, Campo Object ; *propriedade* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Campo Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade onde o valor nulo será aplicado |
+| objeto | Object, Campo Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade onde o valor nulo será aplicado |
@@ -45,6 +45,6 @@ Queremos colocar o valor nulo na propriedade "idade" para Lea:
| | |
| --- | --- |
| Número do comando | 1233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
index 997512fb89a522..f80be61aa2a636 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-set.md
@@ -5,13 +5,13 @@ slug: /commands/ob-set
displayed_sidebar: docs
---
-**OB SET** ( *objeto* ; *propriedade* ; *valor* {; *propriedade2* ; *valor2* ; ... ; *propriedadeN* ; *valorN*} )
+**OB SET** ( *objeto* : Object, Object ; *propriedade* : Text ; *valor* : Expression {; ...(*propriedade* : Text, *valor* : Expression)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object, Object | → | Objeto estruturado |
-| propriedade | Text | → | Nome da propriedade a configurar |
-| valor | Expression | → | Novo valor da propriedade |
+| objeto | Object, Object | → | Objeto estruturado |
+| propriedade | Text | → | Nome da propriedade a configurar |
+| valor | Expression | → | Novo valor da propriedade |
@@ -204,6 +204,6 @@ Se quiser armazenar uma imagem em um campo objeto. Pode escrever:
| | |
| --- | --- |
| Número do comando | 1220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
index a3e3342a5a1d18..6d2cbca8656501 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/ob-values.md
@@ -5,11 +5,11 @@ slug: /commands/ob-values
displayed_sidebar: docs
---
-**OB Values** ( *objeto* ) : Collection
+**OB Values** ( *objeto* : Object ) : Collection
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto a retornar valores de propriedade |
+| objeto | Object | → | Objeto a retornar valores de propriedade |
| Resultado | Collection | ← | Coleção de valores propriedade (variante) |
@@ -50,6 +50,6 @@ Se quiser uma coleção com todos os valores de propriedade de um objeto:
| | |
| --- | --- |
| Número do comando | 1718 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
index 79446cd713cffe..6c75b368d458b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-duplicate.md
@@ -5,20 +5,20 @@ slug: /commands/object-duplicate
displayed_sidebar: docs
---
-**OBJECT DUPLICATE** ( {* ;} *objeto* {; *novoNome* {; *novaVar* {; *relacionadoA* {; *moverH* {; *moverV* {; *redimH* {; *redimV*}}}}}}} {; *} )
+**OBJECT DUPLICATE** ( * ; *objeto* : Text {; *novoNome* : Text {; *novaVar* : Pointer {; *relacionadoA* : Text {; *moverH* : Integer {; *moverV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
**OBJECT DUPLICATE** ( *objeto* : Field, Variable {; *novoNome* : Text {; *novaVar* : Pointer {; *relacionadoA* : Text {; *moverH* : Integer {; *moverV* : Integer {; *redimH* : Integer {; *redimV* : Integer}}}}}}} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * for omitido) |
-| novoNome | Text | → | Nome do novo objeto |
-| novaVar | Pointer | → | Ponteiro para a variável do novo objeto |
-| relacionadoA | Text | → | Nome do objeto editável anterior (ou do botão de opção) |
-| moverH | Integer | → | Deslocamento horizontal do novo objeto (>0 = a direita, <0 para a esquerda) |
-| moverV | Integer | → | Deslocamento vertical do novo objeto (>0 = para baixo, <0 = para cima) |
-| redimH | Integer | → | Valor do redimensionamento horizontal do objeto |
-| redimV | Integer | → | Valor do redimensionamento vrtical do objeto |
-| * | Operador | → | se especificado = coordenadas absolutadas, se omitida = coordenadas relativas |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * for omitido) |
+| novoNome | Text | → | Nome do novo objeto |
+| novaVar | Pointer | → | Ponteiro para a variável do novo objeto |
+| relacionadoA | Text | → | Nome do objeto editável anterior (ou do botão de opção) |
+| moverH | Integer | → | Deslocamento horizontal do novo objeto (>0 = a direita, <0 para a esquerda) |
+| moverV | Integer | → | Deslocamento vertical do novo objeto (>0 = para baixo, <0 = para cima) |
+| redimH | Integer | → | Valor do redimensionamento horizontal do objeto |
+| redimV | Integer | → | Valor do redimensionamento vrtical do objeto |
+| * | Operador | → | se especificado = coordenadas absolutadas, se omitida = coordenadas relativas |
@@ -106,7 +106,7 @@ Criação de um novo botão opção "bRadio6" baseado no botão opção existent
| | |
| --- | --- |
| Número do comando | 1111 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
index e0c9ff2d77db4c..831c39c0a8734f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-action.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-action
displayed_sidebar: docs
---
-**OBJECT Get action** ( {* ;} *objeto* ) : Text
+**OBJECT Get action** ( * ; *objeto* : Text ) : Text
**OBJECT Get action** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, objeto è um nome de objeto (string). Se omitido, objeto é um campo ou variável |
-| objeto | any | → | Nome de Objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| * | Operador | → | Se for especificado, objeto è um nome de objeto (string). Se omitido, objeto é um campo ou variável |
+| objeto | any | → | Nome de Objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
| Resultado | Text | ← | Nome da ação padrão associada e (se houver) parâmetro string |
@@ -49,6 +49,6 @@ Se quiser associar a ação "Cancelar" com todos os objetos no formulário que a
| | |
| --- | --- |
| Número do comando | 1457 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
index 82d4a725c61ac0..5b2df78f751e9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-auto-spellcheck.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT Get auto spellcheck** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get auto spellcheck** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get auto spellcheck** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
| Resultado | Boolean | ← | True = correção automática,False = não correção automática |
@@ -37,6 +37,6 @@ O comando devolve **True** quando a correção ortográfica automática está at
| | |
| --- | --- |
| Número do comando | 1174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
index 011f7265a9ad4b..38b34ab16b0b73 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-best-size.md
@@ -5,15 +5,15 @@ slug: /commands/object-get-best-size
displayed_sidebar: docs
---
-**OBJECT GET BEST SIZE** ( {* ;} *objeto* ; *largIdeal* ; *alturaIdeal* {; *larguraMax*} )
+**OBJECT GET BEST SIZE** ( * ; *objeto* : Text ; *largIdeal* : Integer ; *alturaIdeal* : Integer {; *larguraMax* : Integer} )
**OBJECT GET BEST SIZE** ( *objeto* : Field, Variable ; *largIdeal* : Integer ; *alturaIdeal* : Integer {; *larguraMax* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| largIdeal | Integer | ← | Largura ideal do objeto |
| alturaIdeal | Integer | ← | Altura ideal do objeto |
-| larguraMax | Integer | → | Altura máxima do objeto |
+| larguraMax | Integer | → | Altura máxima do objeto |
@@ -57,6 +57,6 @@ Consulte o exemplo no comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 717 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
index 3d95c7bb60af9d..1b4959a4c13f93 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-border-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-border-style
displayed_sidebar: docs
---
-**OBJECT Get border style** ( {* ;} *objeto* ) : Integer
+**OBJECT Get border style** ( * ; *objeto* : Text ) : Integer
**OBJECT Get border style** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especifica, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se for especificado *) ou
Campo ou variável (se for omitido *) |
+| * | Operador | → | Se especifica, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se for especificado *) ou
Campo ou variável (se for omitido *) |
| Resultado | Integer | ← | Estilo de linha de borde |
@@ -44,6 +44,6 @@ O comando devolve um valor que corresponde ao estilo da linha fronteira. Pode co
| | |
| --- | --- |
| Número do comando | 1263 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
index 6721133a284832..547987d5c5e218 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-context-menu.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-context-menu
displayed_sidebar: docs
---
-**OBJECT Get context menu** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get context menu** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get context menu** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
| Resultado | Boolean | ← | True = menu contextual ativo, False = menu contextual inativo |
@@ -34,6 +34,6 @@ O comando devolve **True** se o menu contextual está ativo para o objeto e **Fa
| | |
| --- | --- |
| Número do comando | 1252 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
index c076f29921b443..3889036e188b57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-coordinates.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-coordinates
displayed_sidebar: docs
---
-**OBJECT GET COORDINATES** ( {* ;} *objeto* ; *esquerda* ; *superior* ; *direita* ; *inferior* )
+**OBJECT GET COORDINATES** ( * ; *objeto* : Text ; *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
**OBJECT GET COORDINATES** ( *objeto* : Field, Variable ; *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| esquerda | Integer | ← | Coordenadas da esquerda do objeto |
| superior | Integer | ← | Coordenadas superiores do objeto |
| direita | Integer | ← | Coordenada direita do objeto |
@@ -90,6 +90,6 @@ O método devolve as coordenadas teóricas. Se o listbox é redimensionado, pode
| | |
| --- | --- |
| Número do comando | 663 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
index 3b721a07ee9d1b..1dfd4540369afe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-corner-radius.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-corner-radius
displayed_sidebar: docs
---
-**OBJECT Get corner radius** ( {* ;} *objeto* ) : Integer
+**OBJECT Get corner radius** ( * ; *objeto* : Text ) : Integer
**OBJECT Get corner radius** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Campo ou variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Campo ou variável (se omitido *) |
| Resultado | Integer | ← | Rádio de esquinas arredondadas (em píxels) |
@@ -52,6 +52,6 @@ O seguinte código pode ser adicionado a um método button:
| | |
| --- | --- |
| Número do comando | 1324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
index 4c6272e1f12749..41969e25c4cc68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-data-source.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-data-source
displayed_sidebar: docs
---
-**OBJECT Get data source** ( {* ;} *objeto* ) : Pointer
+**OBJECT Get data source** ( * ; *objeto* : Text ) : Pointer
**OBJECT Get data source** ( *objeto* : Field, Variable ) : Pointer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
| Resultado | Pointer | ← | Ponteiro a fonte de dados atual do objeto |
@@ -47,6 +47,6 @@ Executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1265 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
index dc2305bd047257..9e87572863e7d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-drag-and-drop-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT GET DRAG AND DROP OPTIONS** ( {* ;} *objeto* ; *arrastavel* ; *arrastavelAuto* ; *soltavel* ; *soltavelAuto* )
+**OBJECT GET DRAG AND DROP OPTIONS** ( * ; *objeto* : Text ; *arrastavel* : Boolean ; *arrastavelAuto* : Boolean ; *soltavel* : Boolean ; *soltavelAuto* : Boolean )
**OBJECT GET DRAG AND DROP OPTIONS** ( *objeto* : Field, Variable ; *arrastavel* : Boolean ; *arrastavelAuto* : Boolean ; *soltavel* : Boolean ; *soltavelAuto* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| arrastavel | Boolean | ← | 0 = False, 1 = True |
| arrastavelAuto | Boolean | ← | 0 = False, 1 = True |
| soltavel | Boolean | ← | 0 = False, 1 = True |
@@ -42,6 +42,6 @@ Cada parâmetro devolve True ou False dependendo se a opção correspondente est
| | |
| --- | --- |
| Número do comando | 1184 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
index 2b79f511d90dd7..df82d330c3a3ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enabled
displayed_sidebar: docs
---
-**OBJECT Get enabled** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get enabled** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get enabled** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
-| objeto | any | → | Object name (if * is specified) or
Variable (if * is omitted) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável |
+| objeto | any | → | Object name (if * is specified) or
Variable (if * is omitted) |
| Resultado | Boolean | ← | True = objeto ativado: ou então é falso |
@@ -40,6 +40,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1079 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
index 4e5f8454ac3770..1ee3e76438fcab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-enterable.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-enterable
displayed_sidebar: docs
---
-**OBJECT Get enterable** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get enterable** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get enterable** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome objeto (string). Se omitido, objeto é uma variável ou um campo. |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome objeto (string). Se omitido, objeto é uma variável ou um campo. |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * é omitido) |
| Resultado | Boolean | ← | True = objeto editável, ou então, falso |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1067 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
index b35dd60224c20e..64d058731f5504 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-events.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-events
displayed_sidebar: docs
---
-**OBJECT GET EVENTS** ( {* ;} *objeto* ; *arrEvents* )
+**OBJECT GET EVENTS** ( * ; *objeto* : Text ; *arrEvents* : Integer array )
**OBJECT GET EVENTS** ( *objeto* : Field, Variable ; *arrEvents* : Integer array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto "" para designar o formulário (se for especificado *) ou
Campo ou variável (se for omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto "" para designar o formulário (se for especificado *) ou
Campo ou variável (se for omitido *) |
| arrEvents | Integer array | ← | Array de eventos desativados |
@@ -52,6 +52,6 @@ Você quer ativar dois eventos e obter a lista de eventos para um objeto:
| | |
| --- | --- |
| Número do comando | 1238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
index 63827a3606740d..287098830ae002 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-filter.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-filter
displayed_sidebar: docs
---
-**OBJECT Get filter** ( {* ;} *objeto* ) : Text
+**OBJECT Get filter** ( * ; *objeto* : Text ) : Text
**OBJECT Get filter** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
| Resultado | Text | ← | Nome do filtro |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1073 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
index 04fe876394373e..0c76b2fc170a20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT Get focus rectangle invisible** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get focus rectangle invisible** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get focus rectangle invisible** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
| Resultado | Boolean | ← | True = retângulo de foco oculto, False = retângulo de foco visível |
@@ -34,6 +34,6 @@ O comando devolve **True** se o retângulo de foco está oculto e **False** quan
| | |
| --- | --- |
| Número do comando | 1178 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
index 80bbc741621677..abe29be90b935b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-size.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-size
displayed_sidebar: docs
---
-**OBJECT Get font size** ( {* ;} *objeto* ) : Integer
+**OBJECT Get font size** ( * ; *objeto* : Text ) : Integer
**OBJECT Get font size** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * é omitido). |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * é omitido). |
| Resultado | Integer | ← | Tamanho de fonte em pontos |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1070 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
index 9ccbd5f339555d..6fd3dc42131dee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font-style.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font-style
displayed_sidebar: docs
---
-**OBJECT Get font style** ( * ; *objeto* ) : Integer
+**OBJECT Get font style** ( * ; *objeto* : any ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou um campo. |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou um campo. |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou Campo (se * é omitido) |
| Resultado | Integer | ← | Estilo de fonte |
@@ -39,6 +39,6 @@ Pode comparar o valor retornado pelo comando com o valor de um ou mais das segui
| | |
| --- | --- |
| Número do comando | 1071 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
index 3fbcdbfd2eba45..fcc1231555010b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-font.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-font
displayed_sidebar: docs
---
-**OBJECT Get font** ( {* ;} *objeto* ) : Text
+**OBJECT Get font** ( * ; *objeto* : Text ) : Text
**OBJECT Get font** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido). |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido). |
| Resultado | Text | ← | Nome da fonte |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1069 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
index 57738696088935..60779e923d4cc4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-format.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-format
displayed_sidebar: docs
---
-**OBJECT Get format** ( {* ;} *objeto* ) : Text
+**OBJECT Get format** ( * ; *objeto* : Text ) : Text
**OBJECT Get format** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| Resultado | Text | ← | Exibir formato de objeto |
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número do comando | 894 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
index e633a2b34e3cc1..93b203c00bf02b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-help-tip.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-help-tip
displayed_sidebar: docs
---
-**OBJECT Get help tip** ( {* ;} *objeto* ) : Text
+**OBJECT Get help tip** ( * ; *objeto* : Text ) : Text
**OBJECT Get help tip** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| Resultado | Text | ← | Mensagem de ajuda do objeto |
@@ -42,6 +42,6 @@ O título de um botão imagem é guardado em forma de mensagem de ajuda. Este t
| | |
| --- | --- |
| Número do comando | 1182 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
index 6b5fa921f31c32..750f7d727a3c37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-horizontal-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT Get horizontal alignment** ( {* ;} *objeto* ) : Integer
+**OBJECT Get horizontal alignment** ( * ; *objeto* : Text ) : Integer
**OBJECT Get horizontal alignment** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| Resultado | Integer | ← | Código de alinhamento |
@@ -61,6 +61,6 @@ Os objetos de formulário aos quais se pode aplicar alinhamento são os seguinte
| | |
| --- | --- |
| Número do comando | 707 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
index 810004d65c37e1..391818c6ca8d35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-indicator-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-indicator-type
displayed_sidebar: docs
---
-**OBJECT Get indicator type** ( {* ;} *objeto* ) : Integer
+**OBJECT Get indicator type** ( * ; *objeto* : Text ) : Integer
**OBJECT Get indicator type** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
| Resultado | Integer | ← | Tipo de indicador |
@@ -40,6 +40,6 @@ Pode comparar o valor devolvido pelo comando com as seguintes constantes, que se
| | |
| --- | --- |
| Número do comando | 1247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
index 5fb93f35984465..60f7b5ff9ea6d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-keyboard-layout.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT Get keyboard layout** ( {* ;} *objeto* ) : Text
+**OBJECT Get keyboard layout** ( * ; *objeto* : Text ) : Text
**OBJECT Get keyboard layout** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo(se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo(se omitido *) |
| Resultado | Text | ← | Código da linguagem de configuração, "" = sem configuração |
@@ -32,6 +32,6 @@ O comando devolve uma cadeia indicando o código da linguagem utilizada, baseado
| | |
| --- | --- |
| Número do comando | 1180 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
index f5bd040cc9617c..d6c6c8c420aa6c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-name.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-name
displayed_sidebar: docs
---
-**OBJECT Get list name** ( {* ;} *objeto* {; *tipoLista*} ) : Text
+**OBJECT Get list name** ( * ; *objeto* : Text {; *tipoLista* : Integer} ) : Text
**OBJECT Get list name** ( *objeto* : Field, Variable {; *tipoLista* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido) |
-| tipoLista | Integer | → | Tipo de lista: lista de seleção, lista de obrigatórios ou lista de excluídos |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido) |
+| tipoLista | Integer | → | Tipo de lista: lista de seleção, lista de obrigatórios ou lista de excluídos |
| Resultado | Text | ← | Nome da lista de escolha (especificado no modo Desenho) |
@@ -43,6 +43,6 @@ Se nenhuma lista do tipo definido está associada ao *objeto*, o comando devolve
| | |
| --- | --- |
| Número do comando | 1072 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
index 37783c631ef12e..fd4c17074005a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-list-reference.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-list-reference
displayed_sidebar: docs
---
-**OBJECT Get list reference** ( {* ;} *objeto* {; *tipoLista*} ) : Integer
+**OBJECT Get list reference** ( * ; *objeto* : Text {; *tipoLista* : Integer} ) : Integer
**OBJECT Get list reference** ( *objeto* : Field, Variable {; *tipoLista* : Integer} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
-| tipoLista | Integer | → | Tipo de lista: lista de Seleção, lista obrigatória ou a lista de excluídos |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| tipoLista | Integer | → | Tipo de lista: lista de Seleção, lista obrigatória ou a lista de excluídos |
| Resultado | Integer | ← | Número de referência de lista |
@@ -43,6 +43,6 @@ Se não há uma lista hierárquica associada ao objeto para o *tipoLista* defini
| | |
| --- | --- |
| Número do comando | 1267 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
index af21f520e1539e..dfcc7415fb4e34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-maximum-value
displayed_sidebar: docs
---
-**OBJECT GET MAXIMUM VALUE** ( {* ;} *objeto* ; *valorMax* )
+**OBJECT GET MAXIMUM VALUE** ( * ; *objeto* : Text ; *valorMax* : Date, Time, Real )
**OBJECT GET MAXIMUM VALUE** ( *objeto* : Field, Variable ; *valorMax* : Date, Time, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| valorMax | Date, Time, Number | ← | Valor máximo atual para objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| valorMax | Date, Time, Real | ← | Valor máximo atual para objeto |
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1245 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
index 7f2428db8dfa8e..60a4e78a48d58e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-minimum-value
displayed_sidebar: docs
---
-**OBJECT GET MINIMUM VALUE** ( {* ;} *objeto* ; *valorMin* )
+**OBJECT GET MINIMUM VALUE** ( * ; *objeto* : Text ; *valorMin* : Date, Time, Real )
**OBJECT GET MINIMUM VALUE** ( *objeto* : Field, Variable ; *valorMin* : Date, Time, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| valorMin | Date, Time, Number | ← | Valor mínimo atual do objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| valorMin | Date, Time, Real | ← | Valor mínimo atual do objeto |
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1243 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
index 524d1c4c7eb8c6..11353070fc3d82 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-multiline.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-multiline
displayed_sidebar: docs
---
-**OBJECT Get multiline** ( {* ;} *objeto* ) : Integer
+**OBJECT Get multiline** ( * ; *objeto* : Text ) : Integer
**OBJECT Get multiline** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| Resultado | Integer | ← | Estado Multi linha do objeto |
@@ -43,6 +43,6 @@ O valor devolvido corresponde a uma das seguintes constantes do tema "*Proprieda
| | |
| --- | --- |
| Número do comando | 1254 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
index 24d6124cf84e9d..b92272455d80f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-name.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-name
displayed_sidebar: docs
---
-**OBJECT Get name** {( *seletor* )} : Text
+**OBJECT Get name** ( *seletor* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Categoria de objeto |
+| seletor | Integer | → | Categoria de objeto |
| Resultado | Text | ← | Nome de objeto |
@@ -44,6 +44,6 @@ Depois da execução deste método objeto, a variável *$btnName* contém o valo
| | |
| --- | --- |
| Número do comando | 1087 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
index 277b0f81887cb1..d7c66f3af8e578 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-placeholder.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-placeholder
displayed_sidebar: docs
---
-**OBJECT Get placeholder** ( {* ;} *objeto* ) : Text
+**OBJECT Get placeholder** ( * ; *objeto* : Text ) : Text
**OBJECT Get placeholder** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
| Resultado | Text | ← | Texto de exemplo associado ao objeto |
@@ -42,6 +42,6 @@ Se quer receber o texto do marcador de campo:
| | |
| --- | --- |
| Número do comando | 1296 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
index 4774e96fb5d30a..33c91a62230fb9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-pointer.md
@@ -5,13 +5,13 @@ slug: /commands/object-get-pointer
displayed_sidebar: docs
---
-**OBJECT Get pointer** {( *seletor* {; *nomeObjeto* {; *nomeSubformulario*}})} : Pointer
+**OBJECT Get pointer** ( *seletor* : Integer {; *nomeObjeto* : Text {; *nomeSubformulario* : Text}}) : Pointer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Categoria objeto |
-| nomeObjeto | Text | → | Nome do objeto |
-| nomeSubformulario | Text | → | Nome de objeto de subformulário |
+| seletor | Integer | → | Categoria objeto |
+| nomeObjeto | Text | → | Nome do objeto |
+| nomeSubformulario | Text | → | Nome de objeto de subformulário |
| Resultado | Pointer | ← | Ponteiro à variável de objeto |
@@ -61,6 +61,6 @@ Dado um formulário "SF" utilizado duas vezes como sub-formulário no mesmo form
| | |
| --- | --- |
| Número do comando | 1124 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
index 74f1ba1c6f0638..a335440fbf5fe5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-print-variable-frame.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT GET PRINT VARIABLE FRAME** ( {* ;} *objeto* ; *tamVariavel* {; *subformFixo*} )
+**OBJECT GET PRINT VARIABLE FRAME** ( * ; *objeto* : Text ; *tamVariavel* : Boolean {; *subformFixo* : Integer} )
**OBJECT GET PRINT VARIABLE FRAME** ( *objeto* : Field, Variable ; *tamVariavel* : Boolean {; *subformFixo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
| tamVariavel | Boolean | ← | True = Impressão tamanho variável, False = impressão tamanho fixo |
| subformFixo | Integer | ← | Opção para impressão de sub formulários de tamanho fixo |
@@ -41,6 +41,6 @@ Se o *objeto* é um sub formulário e se a impressão em tamanho variável está
| | |
| --- | --- |
| Número do comando | 1241 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
index 1b75dde2dcab80..b0ec4031ceee9d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-resizing-options.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-resizing-options
displayed_sidebar: docs
---
-**OBJECT GET RESIZING OPTIONS** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT GET RESIZING OPTIONS** ( * ; *objeto* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT GET RESIZING OPTIONS** ( *objeto* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| horizontal | Integer | ← | Opção de redimensionar horizontalmente |
| vertical | Integer | ← | Opção de redimensionar verticalmente |
@@ -49,6 +49,6 @@ O parâmetro *vertical* devolve um valor indicando a opção de redimensionament
| | |
| --- | --- |
| Número do comando | 1176 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
index 6f870415be94f7..8c9801d0043846 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-rgb-colors.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-rgb-colors
displayed_sidebar: docs
---
-**OBJECT GET RGB COLORS** ( {* ;} *objeto* ; *corPrimeiroPlano* {; *corFundo* {; *corFundoAlternativo*}} )
+**OBJECT GET RGB COLORS** ( * ; *objeto* : Text ; *corPrimeiroPlano* : Text, Integer {; *corFundo* : Text, Integer {; *corFundoAlternativo* : Text, Integer}} )
**OBJECT GET RGB COLORS** ( *objeto* : Field, Variable ; *corPrimeiroPlano* : Text, Integer {; *corFundo* : Text, Integer {; *corFundoAlternativo* : Text, Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificar, objeto é um nome de objeto (string) se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome do objeto (se * é especificado) ou Variável ou Campo (se * é omitido) |
+| * | Operador | → | Se especificar, objeto é um nome de objeto (string) se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome do objeto (se * é especificado) ou Variável ou Campo (se * é omitido) |
| corPrimeiroPlano | Text, Integer | ← | Valor da cor RGB do primeiro plano |
| corFundo | Text, Integer | ← | Valor da cor do RGB para segundo plano (fundo) |
| corFundoAlternativo | Text, Integer | ← | Valor da cor RGB do fundo alternativo |
@@ -41,6 +41,6 @@ Para obter mais informação sobre do formato dos parâmetros *corPrimeiroPlano*
| | |
| --- | --- |
| Número do comando | 1074 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
index 651a3ffb44a0e3..32b5af80807881 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scroll-position.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scroll-position
displayed_sidebar: docs
---
-**OBJECT GET SCROLL POSITION** ( {* ;} *objeto* ; *vPosicao* {; *hPosicao*} )
+**OBJECT GET SCROLL POSITION** ( * ; *objeto* : Text ; *vPosicao* : Integer {; *hPosicao* : Integer} )
**OBJECT GET SCROLL POSITION** ( *objeto* : Field, Variable ; *vPosicao* : Integer {; *hPosicao* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificar, objeto é um nome de objeto (string) se omitir, objeto é uma variável, um campo ou uma tabela. |
-| objeto | any | → | Nome de objeto (se * é especificado) ou variável ou campo ou tabela (se * é omitido) |
+| * | Operador | → | Se especificar, objeto é um nome de objeto (string) se omitir, objeto é uma variável, um campo ou uma tabela. |
+| objeto | any | → | Nome de objeto (se * é especificado) ou variável ou campo ou tabela (se * é omitido) |
| vPosicao | Integer | ← | Número da primeira linha exibido ou deslocamento vertical em pixels (imagens) |
| hPosicao | Integer | ← | Número da primeira coluna exibido ou rolagem horizontal em pixels (imagens) |
@@ -37,6 +37,6 @@ Se *objeto* designa uma imagem (variável ou campo), *vPosição* retorna o movi
| | |
| --- | --- |
| Número do comando | 1114 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
index bdd9f1f27f822b..22a5fe0c321a74 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-scrollbar.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-scrollbar
displayed_sidebar: docs
---
-**OBJECT GET SCROLLBAR** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT GET SCROLLBAR** ( * ; *objeto* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT GET SCROLLBAR** ( *objeto* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou um campo. |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável ou um campo. |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
| horizontal | Boolean, Integer | ← | True = exibido, False = escondido |
| vertical | Boolean, Integer | ← | True = disponível, False = escondido |
@@ -49,6 +49,6 @@ Para obter mais informação, consulte a descrição do comando [OBJECT SET SCRO
| | |
| --- | --- |
| Número do comando | 1076 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
index c29e73135cf1ef..a04a5eb5913d49 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-shortcut.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-shortcut
displayed_sidebar: docs
---
-**OBJECT GET SHORTCUT** ( {* ;} *objeto* ; *tecla* ; *modificadores* )
+**OBJECT GET SHORTCUT** ( * ; *objeto* : Text ; *tecla* : Text ; *modificadores* : Integer )
**OBJECT GET SHORTCUT** ( *objeto* : Field, Variable ; *tecla* : Text ; *modificadores* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| tecla | Text | ← | Tecla associada ao objeto |
| modificadores | Integer | ← | Máscara ou combinação de máscaras de teclas de modificação |
@@ -47,6 +47,6 @@ Se nenhuma tecla de modificação foi definida para o atalho, modificadores devo
| | |
| --- | --- |
| Número do comando | 1186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
index a4168e8b17971a..347f2cf4fcaef3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-style-sheet.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-style-sheet
displayed_sidebar: docs
---
-**OBJECT Get style sheet** ( {* ;} *objeto* ) : Text
+**OBJECT Get style sheet** ( * ; *objeto* : Text ) : Text
**OBJECT Get style sheet** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
| Resultado | Text | ← | Nome da folha de estilo |
@@ -52,6 +52,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1258 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
index cf832304c45c7b..7cad975bce66b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-size.md
@@ -5,7 +5,7 @@ slug: /commands/object-get-subform-container-size
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM CONTAINER SIZE** ( *largura* ; *altura* )
+**OBJECT GET SUBFORM CONTAINER SIZE** ( *largura* : Integer ; *altura* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ O evento On Resize é gerado no método formulario de subformulário se o objeto
| | |
| --- | --- |
| Número do comando | 1148 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
index 953360ebdbfa09..4b83c6f2c5a5b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número do comando | 1785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
index c7d6c8646aa793..c40c6a3ef42fb0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-subform.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-subform
displayed_sidebar: docs
---
-**OBJECT GET SUBFORM** ( {* ;} *objeto* ; *pontTabela* ; *subFormDet* {; *subFormList*} )
+**OBJECT GET SUBFORM** ( * ; *objeto* : Text ; *pontTabela* ; *subFormDet* : Text {; *subFormList* : Text} )
**OBJECT GET SUBFORM** ( *objeto* : Field, Variable ; *pontTabela* ; *subFormDet* : Text {; *subFormList* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| pontTable | Table | ← | Ponteiro à tabela do formulário |
| subFormDet | Text | ← | Nome do formulário detalhado do sub-formulário |
| subFormList | Text | ← | Nome do formulário listado do sub-formulário (formulário tabela) |
@@ -46,6 +46,6 @@ Se não houver formulário lista, uma string vazia é devolvida no parâmetro *s
| | |
| --- | --- |
| Número do comando | 1139 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
index 091911132a4699..5074a8678ae235 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-text-orientation.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-text-orientation
displayed_sidebar: docs
---
-**OBJECT Get text orientation** ( {* ;} *object* ) : Integer
+**OBJECT Get text orientation** ( * ; *object* : Text ) : Integer
**OBJECT Get text orientation** ( *object* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especifica, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
-| object | any | → | Nome de objeto (se for especificado *) ou Campo ou variável (se for omitido *) |
+| * | Operador | → | Se especifica, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
+| object | any | → | Nome de objeto (se for especificado *) ou Campo ou variável (se for omitido *) |
| Resultado | Integer | ← | Ângulo de rotação de texto |
@@ -61,6 +61,6 @@ Quando se executa o formulário, é chamada a seguinte declaração:
| | |
| --- | --- |
| Número do comando | 1283 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
index 67dcf5ca559a2a..53cf8627511cea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-three-states-checkbox.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT Get three states checkbox** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get three states checkbox** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get three states checkbox** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
| Resultado | Boolean | ← | True = caixa de seleção de três estados, False = caixa de seleção padrão |
@@ -30,6 +30,6 @@ A propriedade "Três estados" se pode definir seja usando a lista de propriedade
| | |
| --- | --- |
| Número do comando | 1250 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
index 31b68882ab6f09..b4de765fc7a7a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-title.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-title
displayed_sidebar: docs
---
-**OBJECT Get title** ( {* ;} *objeto* ) : Text
+**OBJECT Get title** ( * ; *objeto* : Text ) : Text
**OBJECT Get title** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objueto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * é especificado) ou variável ou campo (se * for omitido) |
+| * | Operador | → | se especificado, objueto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * é especificado) ou variável ou campo (se * for omitido) |
| Resultado | Text | ← | Título do botão |
@@ -36,6 +36,6 @@ Se passar o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nom
| | |
| --- | --- |
| Número do comando | 1068 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
index 5b39ad299c5c7b..5775eed4f93d1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-type.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-type
displayed_sidebar: docs
---
-**OBJECT Get type** ( {* ;} *object* ) : Integer
+**OBJECT Get type** ( * ; *object* : Text ) : Integer
**OBJECT Get type** ( *object* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
-| object | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é uma variável |
+| object | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| Resultado | Integer | ← | Tipo de objeto |
@@ -101,6 +101,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1300 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
index d2b825e7320360..3d1118f6a6355a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-get-value
displayed_sidebar: docs
---
-**OBJECT Get value** ( *nomObjeto* ) : any
+**OBJECT Get value** ( *nomObjeto* : Text ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomObjeto | Text | → | Nome do objeto |
+| nomObjeto | Text | → | Nome do objeto |
| Resultado | any | ← | Valor atual da fonte de dados do objeto formulário |
@@ -44,6 +44,6 @@ Ver o exemplo para o comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número do comando | 1743 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
index e198154f386e0c..4e61c9324c8eaa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-vertical-alignment.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT Get vertical alignment** ( {* ;} *objeto* ) : Integer
+**OBJECT Get vertical alignment** ( * ; *objeto* : Text ) : Integer
**OBJECT Get vertical alignment** ( *objeto* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
| Resultado | Integer | ← | Tipo de alienação |
@@ -48,6 +48,6 @@ O alinhamento vertical pode ser aplicado aos seguintes tipos de objetos de formu
| | |
| --- | --- |
| Número do comando | 1188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
index fb771dc9abd231..7aebdd3574f6ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-get-visible.md
@@ -5,12 +5,12 @@ slug: /commands/object-get-visible
displayed_sidebar: docs
---
-**OBJECT Get visible** ( {* ;} *objeto* ) : Boolean
+**OBJECT Get visible** ( * ; *objeto* : Text ) : Boolean
**OBJECT Get visible** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * for especificado) ou variável ou campo (se * é omitido) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * for especificado) ou variável ou campo (se * é omitido) |
| Resultado | Boolean | ← | True = objeto visível , ou então False |
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nome
| | |
| --- | --- |
| Número do comando | 1075 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
index c9513357754e67..6a92996b21f610 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-is-styled-text.md
@@ -5,12 +5,12 @@ slug: /commands/object-is-styled-text
displayed_sidebar: docs
---
-**OBJECT Is styled text** ( {* ;} *objeto* ) : Boolean
+**OBJECT Is styled text** ( * ; *objeto* : Text ) : Boolean
**OBJECT Is styled text** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou
Campo ou variável (se omitido *) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou
Campo ou variável (se omitido *) |
| Resultado | Boolean | ← | True se o objeto é um texto multi estilo, False em caso contrário |
@@ -48,6 +48,6 @@ Um formulário contém um campo representado por dois objetos diferentes, um dos
| | |
| --- | --- |
| Número do comando | 1261 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
index c9e58fb9ce6934..1ec46ebffd52e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-move.md
@@ -5,17 +5,17 @@ slug: /commands/object-move
displayed_sidebar: docs
---
-**OBJECT MOVE** ( {* ;} *objeto* ; *moverH* ; *moverV* {; *redimH* {; *redimV* {; *}}} )
+**OBJECT MOVE** ( * ; *objeto* : Text ; *moverH* : Integer ; *moverV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
**OBJECT MOVE** ( *objeto* : Field, Variable ; *moverH* : Integer ; *moverV* : Integer {; *redimH* : Integer {; *redimV* : Integer {; *}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um uma variável |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável (se * é omitido) |
-| moverH | Integer | → | Valor do movimento horizontal do objeto (>0 - para a direita, <0 - para esquerda) |
-| moverV | Integer | → | Valor do movimento vertical do objeto (>0 - para baixo, <0 - para cima) |
-| redimH | Integer | → | Valor do redimensionamento horizontal do objeto |
-| redimV | Integer | → | Valor do redimensionamento vrtical do objeto |
-| * | Operador | → | se especificado = coordenadas absolutas e se omitido = coordenadas relativas |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um uma variável |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável (se * é omitido) |
+| moverH | Integer | → | Valor do movimento horizontal do objeto (>0 - para a direita, <0 - para esquerda) |
+| moverV | Integer | → | Valor do movimento vertical do objeto (>0 - para baixo, <0 - para cima) |
+| redimH | Integer | → | Valor do redimensionamento horizontal do objeto |
+| redimV | Integer | → | Valor do redimensionamento vrtical do objeto |
+| * | Operador | → | se especificado = coordenadas absolutas e se omitido = coordenadas relativas |
@@ -72,6 +72,6 @@ A seguinte instrução move o botão “botão\_1” as seguintes coordenadas (1
| | |
| --- | --- |
| Número do comando | 664 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
index d6972fea9ea921..3bfd67d0b22d1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-action.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-action
displayed_sidebar: docs
---
-**OBJECT SET ACTION** ( {* ;} *objeto* ; *acao* )
+**OBJECT SET ACTION** ( * ; *objeto* : Text ; *acao* : Text )
**OBJECT SET ACTION** ( *objeto* : Field, Variable ; *acao* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado ) ou
Campo ou variável (se * for omitido) |
-| acao | Text | → | Ação para associar |
+| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado ) ou
Campo ou variável (se * for omitido) |
+| acao | Text | → | Ação para associar |
@@ -95,6 +95,6 @@ Se quiser associar a ação padrão **Validate** com um botão:
| | |
| --- | --- |
| Número do comando | 1259 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
index 21e9373c6ea4d5..648793410bc3d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-auto-spellcheck.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-auto-spellcheck
displayed_sidebar: docs
---
-**OBJECT SET AUTO SPELLCHECK** ( {* ;} *objeto* ; *correAuto* )
+**OBJECT SET AUTO SPELLCHECK** ( * ; *objeto* : Text ; *correAuto* : Boolean )
**OBJECT SET AUTO SPELLCHECK** ( *objeto* : Field, Variable ; *correAuto* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| correAuto | Boolean | → | True = correção automática,False= não correção automática |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| correAuto | Boolean | → | True = correção automática,False= não correção automática |
@@ -37,6 +37,6 @@ Passe **True** em *correAuto* para ativar esta função para objeto e **False**
| | |
| --- | --- |
| Número do comando | 1173 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
index 3841fbb06ac4f0..d8d4b63e9690f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-border-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-border-style
displayed_sidebar: docs
---
-**OBJECT SET BORDER STYLE** ( {* ;} *objeto* ; *estiloBorde* )
+**OBJECT SET BORDER STYLE** ( * ; *objeto* : Text ; *estiloBorde* : Integer )
**OBJECT SET BORDER STYLE** ( *objeto* : Field, Variable ; *estiloBorde* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| estiloBorde | Integer | → | Estilo de linha de borde |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| estiloBorde | Integer | → | Estilo de linha de borde |
@@ -44,6 +44,6 @@ No parâmetro *estiloBorde*, passe o valor do estilo da linha fronteira que dese
| | |
| --- | --- |
| Número do comando | 1262 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
index 9535970b5d5263..be70328d7d97f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-context-menu.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-context-menu
displayed_sidebar: docs
---
-**OBJECT SET CONTEXT MENU** ( {* ;} *objeto* ; *menuContext* )
+**OBJECT SET CONTEXT MENU** ( * ; *objeto* : Text ; *menuContext* : Boolean )
**OBJECT SET CONTEXT MENU** ( *objeto* : Field, Variable ; *menuContext* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou
Campo ou variável (se omitido *) |
-| menuContext | Boolean | → | True = ativar o menu contextual, False = desativar o menu contextual |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou
Campo ou variável (se omitido *) |
+| menuContext | Boolean | → | True = ativar o menu contextual, False = desativar o menu contextual |
@@ -34,6 +34,6 @@ Passe **True** no parâmetro *menuContext* para ativar o menu contextual, e **Fa
| | |
| --- | --- |
| Número do comando | 1251 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
index b0e88beec16117..9ffc9b5389898e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-coordinates.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-coordinates
displayed_sidebar: docs
---
-**OBJECT SET COORDINATES** ( {* ;} *object* ; *esquerda* ; *superior* {; *direita* ; *bottom*} )
+**OBJECT SET COORDINATES** ( {* ;} *object* : Integer ; *esquerda* : Integer ; *superior* : Integer {; *direita* : Integer ; *bottom* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificar, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
-| object | Integer | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| esquerda | Integer | → | Coordenada esquerda do objeto em pixels |
-| superior | Integer | → | Coordenada superior do objeto em pixels |
-| direita | Integer | → | Coordenada direita do objeto em pixels |
-| bottom | Integer | → | Coordenada inferior do objeto em pixels |
+| * | Operador | → | Se especificar, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
+| object | Integer | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| esquerda | Integer | → | Coordenada esquerda do objeto em pixels |
+| superior | Integer | → | Coordenada superior do objeto em pixels |
+| direita | Integer | → | Coordenada direita do objeto em pixels |
+| bottom | Integer | → | Coordenada inferior do objeto em pixels |
@@ -60,6 +60,6 @@ A seguinte declaração localiza oi objeto "button\_1" nas coordenadas (10,20) (
| | |
| --- | --- |
| Número do comando | 1248 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
index 27be4a5ad4b10f..1205781ed913f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-corner-radius.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-corner-radius
displayed_sidebar: docs
---
-**OBJECT SET CORNER RADIUS** ( {* ;} *objeto* ; *radio* )
+**OBJECT SET CORNER RADIUS** ( * ; *objeto* : Text ; *radio* : Integer )
**OBJECT SET CORNER RADIUS** ( *objeto* : Field, Variable ; *radio* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificar, objeto é um nome de objeto (cadeia) Se omitir, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificar *) ou Campo ou variável (se omitir *) |
-| radio | Integer | → | Novo rádio de esquinas arredondadas (em píxels) |
+| * | Operador | → | Se especificar, objeto é um nome de objeto (cadeia) Se omitir, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificar *) ou Campo ou variável (se omitir *) |
+| radio | Integer | → | Novo rádio de esquinas arredondadas (em píxels) |
@@ -70,6 +70,6 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner
| | |
| --- | --- |
| Número do comando | 1323 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
index 4c161fdde61d75..8978fb33bb4387 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-data-source.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-data-source
displayed_sidebar: docs
---
-**OBJECT SET DATA SOURCE** ( {* ;} *objeto* ; *fonteDados* )
+**OBJECT SET DATA SOURCE** ( * ; *objeto* : Text ; *fonteDados* : Pointer )
**OBJECT SET DATA SOURCE** ( *objeto* : Field, Variable ; *fonteDados* : Pointer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) o
Campo ou variável (se * for omitido) |
-| fonteDados | Pointer | → | Ponteiro a nova fonte de dados do objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) o
Campo ou variável (se * for omitido) |
+| fonteDados | Pointer | → | Ponteiro a nova fonte de dados do objeto |
@@ -55,6 +55,6 @@ Mudança da fonte de dados para uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1264 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
index a478cf3c6cd33b..be085219e18955 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-drag-and-drop-options.md
@@ -5,16 +5,16 @@ slug: /commands/object-set-drag-and-drop-options
displayed_sidebar: docs
---
-**OBJECT SET DRAG AND DROP OPTIONS** ( {* ;} *objeto* ; *arrastavel* ; *arrastavelAuto* ; *soltavel* ; *soltavelAuto* )
+**OBJECT SET DRAG AND DROP OPTIONS** ( * ; *objeto* : Text ; *arrastavel* : Boolean ; *arrastavelAuto* : Boolean ; *soltavel* : Boolean ; *soltavelAuto* : Boolean )
**OBJECT SET DRAG AND DROP OPTIONS** ( *objeto* : Field, Variable ; *arrastavel* : Boolean ; *arrastavelAuto* : Boolean ; *soltavel* : Boolean ; *soltavelAuto* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| arrastavel | Boolean | → | 0 = False, 1 = True |
-| arrastavelAuto | Boolean | → | 0 = False, 1 = True |
-| soltavel | Boolean | → | 0 = False, 1 = True |
-| soltavelAuto | Boolean | → | 0 = False, 1 = True |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| arrastavel | Boolean | → | 0 = False, 1 = True |
+| arrastavelAuto | Boolean | → | 0 = False, 1 = True |
+| soltavel | Boolean | → | 0 = False, 1 = True |
+| soltavelAuto | Boolean | → | 0 = False, 1 = True |
@@ -48,6 +48,6 @@ Definição de uma área de texto em arrastar e soltar auto:
| | |
| --- | --- |
| Número do comando | 1183 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
index 4fd862752acf52..537d36a555f536 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enabled.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enabled
displayed_sidebar: docs
---
-**OBJECT SET ENABLED** ( {* ;} *objeto* ; *ativo* )
+**OBJECT SET ENABLED** ( * ; *objeto* : Text ; *ativo* : Boolean )
**OBJECT SET ENABLED** ( *objeto* : Field, Variable ; *ativo* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(string), se omitido, objeto é uma variável ou um campo. |
-| objeto | any | → | Nome de objeto (se * é especificado)ou variável (se * é omitido) |
-| ativo | Boolean | → | True = objeto ativo, ou então False |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(string), se omitido, objeto é uma variável ou um campo. |
+| objeto | any | → | Nome de objeto (se * é especificado)ou variável (se * é omitido) |
+| ativo | Boolean | → | True = objeto ativo, ou então False |
@@ -44,6 +44,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1123 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
index bf868f70c3796f..609e255487885d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-enterable.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-enterable
displayed_sidebar: docs
---
-**OBJECT SET ENTERABLE** ( {* ;} *objeto* ; *editavel* )
+**OBJECT SET ENTERABLE** ( * ; *objeto* : Text ; *editavel* : Boolean, Integer )
**OBJECT SET ENTERABLE** ( *objeto* : Field, Variable ; *editavel* : Boolean, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
-| editavel | Boolean, Integer | → | True se editável; False para não editável |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| editavel | Boolean, Integer | → | True se editável; False para não editável |
@@ -78,6 +78,6 @@ Este é o método de objeto de uma caixa de seleção localizada no cabeçalho d
| | |
| --- | --- |
| Número do comando | 238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
index fa0545ec89c2fa..150c644ebcc60f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-events.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-events
displayed_sidebar: docs
---
-**OBJECT SET EVENTS** ( {* ;} *objeto* ; *arrEventos* ; *modo* )
+**OBJECT SET EVENTS** ( * ; *objeto* : Text ; *arrEventos* : Integer array ; *modo* : Integer )
**OBJECT SET EVENTS** ( *objeto* : Field, Variable ; *arrEventos* : Integer array ; *modo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto ou "" para designar o formulário (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| arrEventos | Integer array | → | Array de eventos a definir |
-| modo | Integer | → | Modo de ativação dos eventos definidos em arrEventos |
+| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto ou "" para designar o formulário (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| arrEventos | Integer array | → | Array de eventos a definir |
+| modo | Integer | → | Modo de ativação dos eventos definidos em arrEventos |
@@ -111,6 +111,6 @@ Desativação de um só evento do formulário sem modificar os outros:
| | |
| --- | --- |
| Número do comando | 1239 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
index 081525f9855e3f..5d5f6ebde454b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-filter.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-filter
displayed_sidebar: docs
---
-**OBJECT SET FILTER** ( {* ;} *objeto* ; *filtroEntrada* )
+**OBJECT SET FILTER** ( * ; *objeto* : Text ; *filtroEntrada* : Text )
**OBJECT SET FILTER** ( *objeto* : Field, Variable ; *filtroEntrada* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| filtroEntrada | Text | → | Novo filtro de entrada de dados para a área editável |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| filtroEntrada | Text | → | Novo filtro de entrada de dados para a área editável |
@@ -61,6 +61,6 @@ O exemplo a seguir permite unicamente a entrada das letras “a,” “b,” “
| | |
| --- | --- |
| Número do comando | 235 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
index 0c95898c6f01fe..2a9f17074ee032 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-focus-rectangle-invisible
displayed_sidebar: docs
---
-**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( {* ;} *objeto* ; *invisível* )
+**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( * ; *objeto* : Text ; *invisível* : Boolean )
**OBJECT SET FOCUS RECTANGLE INVISIBLE** ( *objeto* : Field, Variable ; *invisível* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| invisível | Boolean | → | True = retângulo de foco oculto, False = retângulo de foco invisível |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| invisível | Boolean | → | True = retângulo de foco oculto, False = retângulo de foco invisível |
@@ -35,6 +35,6 @@ Passe **True** no parâmetro *invisível* para ocultar o retângulo de foco e **
| | |
| --- | --- |
| Número do comando | 1177 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
index 0633c2e5b940e1..99e1c9f381d58b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-size.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-size
displayed_sidebar: docs
---
-**OBJECT SET FONT SIZE** ( {* ;} *objeto* ; *tamanho* )
+**OBJECT SET FONT SIZE** ( * ; *objeto* : Text ; *tamanho* : Integer )
**OBJECT SET FONT SIZE** ( *objeto* : Field, Variable ; *tamanho* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
-| tamanho | Integer | → | Tamanho da fonte em pontos |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
+| tamanho | Integer | → | Tamanho da fonte em pontos |
@@ -57,6 +57,6 @@ O exemplo a seguir define o tamanho de fonte para todos os objetos de formulári
| | |
| --- | --- |
| Número do comando | 165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
index 39665217ea3fff..8735288dc8be2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font-style.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font-style
displayed_sidebar: docs
---
-**OBJECT SET FONT STYLE** ( {* ;} *objeto* ; *estilos* )
+**OBJECT SET FONT STYLE** ( * ; *objeto* : Text ; *estilos* : Integer )
**OBJECT SET FONT STYLE** ( *objeto* : Field, Variable ; *estilos* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| estilos | Integer | → | Estilo de fonte |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| estilos | Integer | → | Estilo de fonte |
@@ -59,6 +59,6 @@ Este exemplo define o estilo de fonte Plain para todos os objetos de formulário
| | |
| --- | --- |
| Número do comando | 166 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
index 6b3b7ed44e00ef..eed710ece5a423 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-font.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-font
displayed_sidebar: docs
---
-**OBJECT SET FONT** ( {* ;} *objeto* ; *fonte* )
+**OBJECT SET FONT** ( * ; *objeto* : Text ; *fonte* : Text )
**OBJECT SET FONT** ( *objeto* : Field, Variable ; *fonte* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| fonte | Text | → | Nome da fonte ou número da fonte |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| fonte | Text | → | Nome da fonte ou número da fonte |
@@ -66,6 +66,6 @@ O seguinte exemplo utiliza a opção especial *%password*, desenhada para a entr
| | |
| --- | --- |
| Número do comando | 164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
index 1c2b571fe0b448..bcd173743511c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-format.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-format
displayed_sidebar: docs
---
-**OBJECT SET FORMAT** ( {* ;} *objeto* ; *formato* )
+**OBJECT SET FORMAT** ( * ; *objeto* : Text ; *formato* : Text )
**OBJECT SET FORMAT** ( *objeto* : Field, Variable ; *formato* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| formato | Text | → | Novo formato de exibição do objeto |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| formato | Text | → | Novo formato de exibição do objeto |
@@ -373,6 +373,6 @@ Passe um termômetro ao modo "Barber shop"
| | |
| --- | --- |
| Número do comando | 236 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
index f1b28b51ad97b6..ce056f358d3679 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-help-tip.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-help-tip
displayed_sidebar: docs
---
-**OBJECT SET HELP TIP** ( {* ;} *objeto* ; *mensagemAjuda* )
+**OBJECT SET HELP TIP** ( * ; *objeto* : Text ; *mensagemAjuda* : Text )
**OBJECT SET HELP TIP** ( *objeto* : Field, Variable ; *mensagemAjuda* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| mensagemAjuda | Text | → | Conteúdo da mensagem de Ajuda |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| mensagemAjuda | Text | → | Conteúdo da mensagem de Ajuda |
@@ -135,6 +135,6 @@ O resultado é...
| | |
| --- | --- |
| Número do comando | 1181 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
index 2a9a96a7927976..9622fb3d3e91ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-horizontal-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-horizontal-alignment
displayed_sidebar: docs
---
-**OBJECT SET HORIZONTAL ALIGNMENT** ( {* ;} *objeto* ; *alinhamento* )
+**OBJECT SET HORIZONTAL ALIGNMENT** ( * ; *objeto* : Text ; *alinhamento* : Integer )
**OBJECT SET HORIZONTAL ALIGNMENT** ( *objeto* : Field, Variable ; *alinhamento* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| alinhamento | Integer | → | Código de alinhamento |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| alinhamento | Integer | → | Código de alinhamento |
@@ -59,6 +59,6 @@ Os objetos de formulário aos quais pode aplicar este comando são os seguintes:
| | |
| --- | --- |
| Número do comando | 706 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
index 776b08b8ed0bdf..4fdd8a5596f9ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-indicator-type.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-indicator-type
displayed_sidebar: docs
---
-**OBJECT SET INDICATOR TYPE** ( {* ;} *objeto* ; *indicador* )
+**OBJECT SET INDICATOR TYPE** ( * ; *objeto* : Text ; *indicador* : Integer )
**OBJECT SET INDICATOR TYPE** ( *objeto* : Field, Variable ; *indicador* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| indicador | Integer | → | Tipo de indicador |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| indicador | Integer | → | Tipo de indicador |
@@ -40,6 +40,6 @@ No parâmetro *indicador*, passe o tipo de indicador a mostrar. Pode utilizar um
| | |
| --- | --- |
| Número do comando | 1246 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
index 8cca80fb091200..bd0021c384d671 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-keyboard-layout.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-keyboard-layout
displayed_sidebar: docs
---
-**OBJECT SET KEYBOARD LAYOUT** ( {* ;} *objeto* ; *codigoLing* )
+**OBJECT SET KEYBOARD LAYOUT** ( * ; *objeto* : Text ; *codigoLing* : Text )
**OBJECT SET KEYBOARD LAYOUT** ( *objeto* : Field, Variable ; *codigoLing* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
-| codigoLing | Text | → | Código de lenguaje RFC3066 ISO639 e ISO3166,"" = não muda |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
+| codigoLing | Text | → | Código de lenguaje RFC3066 ISO639 e ISO3166,"" = não muda |
@@ -32,6 +32,6 @@ Em *codigoLing*, passe uma cadeia indicando o código de linguagem a utilizar, b
| | |
| --- | --- |
| Número do comando | 1179 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
index 7800adade5c043..fd19e0f04b38ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-name.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-name
displayed_sidebar: docs
---
-**OBJECT SET LIST BY NAME** ( {* ;} *objeto* {; *tipoLista*}; *lista* )
+**OBJECT SET LIST BY NAME** ( * ; *objeto* : Text {; *tipoLista* : Integer}; *lista* : Text )
**OBJECT SET LIST BY NAME** ( *objeto* : Field, Variable {; *tipoLista* : Integer}; *lista* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| tipoLista | Integer | → | Tipo de lista: lista de seleção, lista de obrigatórios ou lista de excluídos |
-| lista | Text | → | Nome da lista a ser usada como Lista de Escolha (definida no ambiente Desenho) |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| tipoLista | Integer | → | Tipo de lista: lista de seleção, lista de obrigatórios ou lista de excluídos |
+| lista | Text | → | Nome da lista a ser usada como Lista de Escolha (definida no ambiente Desenho) |
@@ -99,6 +99,6 @@ Você quer eliminar a lista de associações:
| | |
| --- | --- |
| Número do comando | 237 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
index 3ea1aa9fe11c0a..9be11a55af4c0f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-list-by-reference.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-list-by-reference
displayed_sidebar: docs
---
-**OBJECT SET LIST BY REFERENCE** ( {* ;} *objeto* {; *tipoLista*}; *lista* )
+**OBJECT SET LIST BY REFERENCE** ( * ; *objeto* : Text {; *tipoLista* : Integer}; *lista* : Integer )
**OBJECT SET LIST BY REFERENCE** ( *objeto* : Field, Variable {; *tipoLista* : Integer}; *lista* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| tipoLista | Integer | → | Tipo de lista: Lista de valores, Lista de obrigatórios ou Lista de excluídos |
-| lista | Integer | → | Número de referência de lista |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| tipoLista | Integer | → | Tipo de lista: Lista de valores, Lista de obrigatórios ou Lista de excluídos |
+| lista | Integer | → | Número de referência de lista |
@@ -134,6 +134,6 @@ Com o propósito de atualizar a lista associada ao pop-up gerenciado por array,
| | |
| --- | --- |
| Número do comando | 1266 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
index e4b2e90a999b31..df8eaf65900f3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-maximum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-maximum-value
displayed_sidebar: docs
---
-**OBJECT SET MAXIMUM VALUE** ( {* ;} *objeto* ; *valorMax* )
+**OBJECT SET MAXIMUM VALUE** ( * ; *objeto* : Text ; *valorMax* : Date, Time, Real )
**OBJECT SET MAXIMUM VALUE** ( *objeto* : Field, Variable ; *valorMax* : Date, Time, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia) Se omitido, objeto é um campo ou variável |
-| objeto | any | → | Nome do objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| valorMax | Date, Time, Number | → | Valor máximo para o objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto(cadeia) Se omitido, objeto é um campo ou variável |
+| objeto | any | → | Nome do objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| valorMax | Date, Time, Real | → | Valor máximo para o objeto |
@@ -35,6 +35,6 @@ Em *valorMax*, passe o novo valor máximo que deseja atribuir ao objeto para o p
| | |
| --- | --- |
| Número do comando | 1244 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
index ef5eed1c6c34a4..b76b0348361109 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-minimum-value.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-minimum-value
displayed_sidebar: docs
---
-**OBJECT SET MINIMUM VALUE** ( {* ;} *objeto* ; *valorMinimo* )
+**OBJECT SET MINIMUM VALUE** ( * ; *objeto* : Text ; *valorMinimo* : Date, Time, Real )
**OBJECT SET MINIMUM VALUE** ( *objeto* : Field, Variable ; *valorMinimo* : Date, Time, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| valorMinimo | Date, Time, Number | → | Valor mínimo para o objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omite, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| valorMinimo | Date, Time, Real | → | Valor mínimo para o objeto |
@@ -35,6 +35,6 @@ Em *valorMinimo*, passe o novo valor mínimo a atribuir ao objeto para o process
| | |
| --- | --- |
| Número do comando | 1242 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
index 5e853697a8c5ae..d6019840843637 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-multiline.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-multiline
displayed_sidebar: docs
---
-**OBJECT SET MULTILINE** ( {* ;} *objeto* ; *multilinha* )
+**OBJECT SET MULTILINE** ( * ; *objeto* : Text ; *multilinha* : Integer )
**OBJECT SET MULTILINE** ( *objeto* : Field, Variable ; *multilinha* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se for especificado *) ou
campo ou variável (se for omitido *) |
-| multilinha | Integer | → | Estado da propriedade multi linha |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se for especificado *) ou
campo ou variável (se for omitido *) |
+| multilinha | Integer | → | Estado da propriedade multi linha |
@@ -48,6 +48,6 @@ Você quer proibir várias linhas em uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1253 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
index 52a9b04de24ab0..52d9a68425e297 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-placeholder.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-placeholder
displayed_sidebar: docs
---
-**OBJECT SET PLACEHOLDER** ( {* ;} *objeto* ; *textoExemplo* )
+**OBJECT SET PLACEHOLDER** ( * ; *objeto* : Text ; *textoExemplo* : Text )
**OBJECT SET PLACEHOLDER** ( *objeto* : Field, Variable ; *textoExemplo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| textoExemplo | Text | → | Texto de exemplo associado ao objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| textoExemplo | Text | → | Texto de exemplo associado ao objeto |
@@ -50,6 +50,6 @@ Você quer mostrar o texto "Buscar" um combo box:
| | |
| --- | --- |
| Número do comando | 1295 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
index 5810ede217ffcb..10799795f0f418 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-print-variable-frame.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-print-variable-frame
displayed_sidebar: docs
---
-**OBJECT SET PRINT VARIABLE FRAME** ( {* ;} *objeto* ; *marcoVariavel* {; *subFormFixo*} )
+**OBJECT SET PRINT VARIABLE FRAME** ( * ; *objeto* : Text ; *marcoVariavel* : Boolean {; *subFormFixo* : Integer} )
**OBJECT SET PRINT VARIABLE FRAME** ( *objeto* : Field, Variable ; *marcoVariavel* : Boolean {; *subFormFixo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| marcoVariavel | Boolean | → | True = Impressão de marco variável, False = Impressão de marco fixo |
-| subFormFixo | Integer | → | Opções impressão de sub formulários em tamanho fixo |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| marcoVariavel | Boolean | → | True = Impressão de marco variável, False = Impressão de marco fixo |
+| subFormFixo | Integer | → | Opções impressão de sub formulários em tamanho fixo |
@@ -46,6 +46,6 @@ O parâmetro opcional *subformFixo* lhe permite configurar uma opção adicional
| | |
| --- | --- |
| Número do comando | 1240 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
index 933f730c4c05bc..200bde0f660554 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-resizing-options.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-resizing-options
displayed_sidebar: docs
---
-**OBJECT SET RESIZING OPTIONS** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT SET RESIZING OPTIONS** ( * ; *objeto* : Text ; *horizontal* : Integer ; *vertical* : Integer )
**OBJECT SET RESIZING OPTIONS** ( *objeto* : Field, Variable ; *horizontal* : Integer ; *vertical* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| horizontal | Integer | → | Opção de redimensionamento horizontal |
-| vertical | Integer | → | Opção de redimensionamento vertical |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| horizontal | Integer | → | Opção de redimensionamento horizontal |
+| vertical | Integer | → | Opção de redimensionamento vertical |
@@ -48,6 +48,6 @@ No parâmetro *vertical*, passe um valor que indique a opção de redimensioname
| | |
| --- | --- |
| Número do comando | 1175 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
index 2b1efdeef96db4..e8223e52a9401a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-rgb-colors.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-rgb-colors
displayed_sidebar: docs
---
-**OBJECT SET RGB COLORS** ( {* ;} *objeto* ; *corPrimeiroPlano* {; *corFundo* {; *corFundoAlternativo*}} )
+**OBJECT SET RGB COLORS** ( * ; *objeto* : Text ; *corPrimeiroPlano* : Text, Integer {; *corFundo* : Text, Integer {; *corFundoAlternativo* : Text, Integer}} )
**OBJECT SET RGB COLORS** ( *objeto* : Field, Variable ; *corPrimeiroPlano* : Text, Integer {; *corFundo* : Text, Integer {; *corFundoAlternativo* : Text, Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| corPrimeiroPlano | Text, Integer | → | Valor de cor RGB para a cor de Primeiro Plano |
-| corFundo | Text, Integer | → | Valor RGB da cor de Fundo |
-| corFundoAlternativo | Text, Integer | → | Valor RGB da cor de fundo alternativa |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| corPrimeiroPlano | Text, Integer | → | Valor de cor RGB para a cor de Primeiro Plano |
+| corFundo | Text, Integer | → | Valor RGB da cor de Fundo |
+| corFundoAlternativo | Text, Integer | → | Valor RGB da cor de fundo alternativa |
@@ -110,6 +110,6 @@ Muda o fundo transparente com uma cor de fonte clara:
| | |
| --- | --- |
| Número do comando | 628 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
index a6ace0fc6b72fe..715c3314b7cf03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scroll-position.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-scroll-position
displayed_sidebar: docs
---
-**OBJECT SET SCROLL POSITION** ( * ; *objeto* {; *posiçao* {; *hPosicao*}}{; *} )
+**OBJECT SET SCROLL POSITION** ( * ; *objeto* : any {; *posiçao* : Integer {; *hPosicao* : Integer}}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Tabela ou Campo ou Variável (se * é omitido) |
-| posiçao | Integer | → | Número da fila a selecionar ou rolagem vertical em pixels (imagens) |
-| hPosicao | Integer | → | Número de coluna a exibir (list box) ou rolagem horizontal em pixels (imagens) |
-| * | Operador | → | Exibição da linha (e coluna se parâmetro hPosição é passada) na primeira posição após rolagem. |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Tabela ou Campo ou Variável (se * é omitido) |
+| posiçao | Integer | → | Número da fila a selecionar ou rolagem vertical em pixels (imagens) |
+| hPosicao | Integer | → | Número de coluna a exibir (list box) ou rolagem horizontal em pixels (imagens) |
+| * | Operador | → | Exibição da linha (e coluna se parâmetro hPosição é passada) na primeira posição após rolagem. |
@@ -96,6 +96,6 @@ Tenha a certeza de não omitir o segundo parâmetro *\** neste caso, caso contr
| | |
| --- | --- |
| Número do comando | 906 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
index 2088077ff867bf..c22b1cb12fcb42 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-scrollbar.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-scrollbar
displayed_sidebar: docs
---
-**OBJECT SET SCROLLBAR** ( {* ;} *objeto* ; *horizontal* ; *vertical* )
+**OBJECT SET SCROLLBAR** ( * ; *objeto* : Text ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
**OBJECT SET SCROLLBAR** ( *objeto* : Field, Variable ; *horizontal* : Boolean, Integer ; *vertical* : Boolean, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| horizontal | Boolean, Integer | → | True = exibir, False = esconder |
-| vertical | Boolean, Integer | → | True = exibir, False = esconder |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| horizontal | Boolean, Integer | → | True = exibir, False = esconder |
+| vertical | Boolean, Integer | → | True = exibir, False = esconder |
@@ -49,6 +49,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos indicando s
| | |
| --- | --- |
| Número do comando | 843 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
index d5a15c1c696768..808a8ad117fb00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-shortcut.md
@@ -5,14 +5,14 @@ slug: /commands/object-set-shortcut
displayed_sidebar: docs
---
-**OBJECT SET SHORTCUT** ( {* ;} *objeto* ; *tecla* {; *modifiers*} )
+**OBJECT SET SHORTCUT** ( * ; *objeto* : Text ; *tecla* : Text {; *modifiers* : Integer} )
**OBJECT SET SHORTCUT** ( *objeto* : Field, Variable ; *tecla* : Text {; *modifiers* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável ou um campo |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
-| tecla | Text | → | Tecla à associar ao objeto |
-| modifiers | Integer | → | Modifier key mask or combination of masks |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável ou um campo |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável ou campo (se omitido *) |
+| tecla | Text | → | Tecla à associar ao objeto |
+| modifiers | Integer | → | Modifier key mask or combination of masks |
@@ -94,6 +94,6 @@ Você quer associar um atalho de teclado diferente em função da linguagem atua
| | |
| --- | --- |
| Número do comando | 1185 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
index abf463649a34dd..14899a4869c386 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-style-sheet.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-style-sheet
displayed_sidebar: docs
---
-**OBJECT SET STYLE SHEET** ( {* ;} *objeto* ; *nomFolhaEstilo* )
+**OBJECT SET STYLE SHEET** ( * ; *objeto* : Text ; *nomFolhaEstilo* : Text )
**OBJECT SET STYLE SHEET** ( *objeto* : Field, Variable ; *nomFolhaEstilo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| nomFolhaEstilo | Text | → | Nome da folha de estilo |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| nomFolhaEstilo | Text | → | Nome da folha de estilo |
@@ -54,6 +54,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1257 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
index 4b47ab001e3a66..07076e25f35c3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform-container-value.md
@@ -5,11 +5,11 @@ slug: /commands/object-set-subform-container-value
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* )
+**OBJECT SET SUBFORM CONTAINER VALUE** ( *value* : any )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| value | any | → | New value for the data source |
+| value | any | → | New value for the data source |
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número do comando | 1784 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
index efcd4365cc9b81..dbe0364967e526 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-subform.md
@@ -5,15 +5,15 @@ slug: /commands/object-set-subform
displayed_sidebar: docs
---
-**OBJECT SET SUBFORM** ( {* ;} *objeto* {; *aTabela*}; *subFormDet* {; *subFormList*} )
+**OBJECT SET SUBFORM** ( * ; *objeto* : Text {; *aTabela*}; *subFormDet* : Text, Object {; *subFormList* : Text, Object} )
**OBJECT SET SUBFORM** ( *objeto* : Field, Variable {; *aTabela*}; *subFormDet* : Text, Object {; *subFormList* : Text, Object} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| aTable | Table | → | Tabela de formulário (se tabela de formulário) |
-| subFormDet | Text, Object | → | Nome do formulário detalhado de sub-formulário |
-| subFormList | Text, Object | → | Nome do formulário listado de sub-formulário (formulário tabela) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| aTable | Table | → | Tabela de formulário (se tabela de formulário) |
+| subFormDet | Text, Object | → | Nome do formulário detalhado de sub-formulário |
+| subFormList | Text, Object | → | Nome do formulário listado de sub-formulário (formulário tabela) |
@@ -48,6 +48,6 @@ Quando modifica um sub-formulário página, o comando pode executar-se em qualqu
| | |
| --- | --- |
| Número do comando | 1138 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
index 3bd887841c22b2..4c6567cc9524bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-text-orientation.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-text-orientation
displayed_sidebar: docs
---
-**OBJECT SET TEXT ORIENTATION** ( {* ;} *objeto* ; *orientacao* )
+**OBJECT SET TEXT ORIENTATION** ( * ; *objeto* : Text ; *orientacao* : Integer )
**OBJECT SET TEXT ORIENTATION** ( *objeto* : Field, Variable ; *orientacao* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| orientacao | Integer | → | Valor de orientação do objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| orientacao | Integer | → | Valor de orientação do objeto |
@@ -55,6 +55,6 @@ Deseja aplicar uma orientação de 270° a uma variável em seu formulário:
| | |
| --- | --- |
| Número do comando | 1284 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
index f74d6f16cfae43..32bc0a857acd08 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-three-states-checkbox.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-three-states-checkbox
displayed_sidebar: docs
---
-**OBJECT SET THREE STATES CHECKBOX** ( {* ;} *objeto* ; *tresEsta* )
+**OBJECT SET THREE STATES CHECKBOX** ( * ; *objeto* : Text ; *tresEsta* : Boolean )
**OBJECT SET THREE STATES CHECKBOX** ( *objeto* : Field, Variable ; *tresEsta* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado ) ou Campo ou variável (se * for omitido) |
-| tresEsta | Boolean | → | True = caixa de seleção de três estados, False = caixa de seleção padrão |
+| * | Operador | → | Se for especificado, objeto é um nome de objeto (cadeia) Se for omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado ) ou Campo ou variável (se * for omitido) |
+| tresEsta | Boolean | → | True = caixa de seleção de três estados, False = caixa de seleção padrão |
@@ -36,6 +36,6 @@ No parâmetro *tresEsta*, passe **True** para ativar o modo "três estados", ou
| | |
| --- | --- |
| Número do comando | 1249 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
index 65791437e7aab3..3902d27f4e3f89 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-title.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-title
displayed_sidebar: docs
---
-**OBJECT SET TITLE** ( {* ;} *objeto* ; *titulo* )
+**OBJECT SET TITLE** ( * ; *objeto* : Text ; *titulo* : Text )
**OBJECT SET TITLE** ( *objeto* : Field, Variable ; *titulo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
-| titulo | Text | → | Novo título do objeto |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Variável (se * é omitido) |
+| titulo | Text | → | Novo título do objeto |
@@ -72,6 +72,6 @@ Você quer inserir os títulos em duas linhas:
| | |
| --- | --- |
| Número do comando | 194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
index d7bba722ade4f0..4b43c1ca8285ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-value.md
@@ -5,12 +5,12 @@ slug: /commands/object-set-value
displayed_sidebar: docs
---
-**OBJECT SET VALUE** ( *nomObjeto* ; *valor* )
+**OBJECT SET VALUE** ( *nomObjeto* : Text ; *valor* : any )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomObjeto | Text | → | Nome de objeto |
-| valor | any | → | Novo valor para a fonte de dados do objeto formulário |
+| nomObjeto | Text | → | Nome de objeto |
+| valor | any | → | Novo valor para a fonte de dados do objeto formulário |
@@ -45,6 +45,6 @@ Se quiser o valor da data source de um objeto formulário, obtenha seu nome e es
| | |
| --- | --- |
| Número do comando | 1742 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
index 14f5a2e57dc1eb..0f3112d9c12347 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-vertical-alignment.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-vertical-alignment
displayed_sidebar: docs
---
-**OBJECT SET VERTICAL ALIGNMENT** ( {* ;} *objeto* ; *alinhamento* )
+**OBJECT SET VERTICAL ALIGNMENT** ( * ; *objeto* : Text ; *alinhamento* : Integer )
**OBJECT SET VERTICAL ALIGNMENT** ( *objeto* : Field, Variable ; *alinhamento* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
-| alinhamento | Integer | → | Código de alinhamento |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia)Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se especificado *) ou Variável (se omitido *) |
+| alinhamento | Integer | → | Código de alinhamento |
@@ -47,6 +47,6 @@ A alienação vertical pode aplicar-se aos seguintes tipos de objetos de formul
| | |
| --- | --- |
| Número do comando | 1187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
index 5c722a2487ebb5..803e34b1f446a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-set-visible.md
@@ -5,13 +5,13 @@ slug: /commands/object-set-visible
displayed_sidebar: docs
---
-**OBJECT SET VISIBLE** ( {* ;} *objeto* ; *visivel* )
+**OBJECT SET VISIBLE** ( * ; *objeto* : Text ; *visivel* : Boolean )
**OBJECT SET VISIBLE** ( *objeto* : Field, Variable ; *visivel* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
-| visivel | Boolean | → | True para visível, False para invisível |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se* é especificado) ou Campo ou Variável (se * é omitido) |
+| visivel | Boolean | → | True para visível, False para invisível |
@@ -64,6 +64,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 603 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
index 565b8cf945d493..294e96d002edab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/object-to-path.md
@@ -5,11 +5,11 @@ slug: /commands/object-to-path
displayed_sidebar: docs
---
-**Object to path** ( *objRota* ) : Text
+**Object to path** ( *objRota* : Object ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objRota | Object | → | Objeto que descreve os conteúdos da rota |
+| objRota | Object | → | Objeto que descreve os conteúdos da rota |
| Resultado | Text | ← | Nome da rota |
@@ -61,6 +61,6 @@ Se quisermos duplicar e mudar o nome de um arquivo em sua própria pasta
| | |
| --- | --- |
| Número do comando | 1548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
index fee1ef99e1a45e..be6f3ac01b2f73 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-many.md
@@ -5,11 +5,11 @@ slug: /commands/old-related-many
displayed_sidebar: docs
---
-**OLD RELATED MANY** ( *campo* )
+**OLD RELATED MANY** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Um Campo |
+| campo | Field | → | Um Campo |
@@ -31,7 +31,7 @@ OLD RELATED MANY muda a seleção da tabela relacionada e seleciona o primeiro r
| | |
| --- | --- |
| Número do comando | 263 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
index e6c0144767d232..9eee0d208e7211 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/old-related-one
displayed_sidebar: docs
---
-**OLD RELATED ONE** ( *campo* )
+**OLD RELATED ONE** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Muitos campos |
+| campo | Field | → | Muitos campos |
@@ -37,7 +37,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 44 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md
index a7b2a792ecb7b5..80a098cbb71fde 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/old.md
@@ -5,11 +5,11 @@ slug: /commands/old
displayed_sidebar: docs
---
-**Old** ( *campo* ) : any
+**Old** ( *campo* : Field ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo ao qual devolver o valor anterior |
+| campo | Field | → | Campo ao qual devolver o valor anterior |
| Resultado | any | ← | Valor original do campo |
@@ -45,6 +45,6 @@ Para restaurar o valor original de um campo, atribua-lhe o valor retornado por O
| | |
| --- | --- |
| Número do comando | 35 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
index 5056ad19e6303e..f1eb0d72fd5c43 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-err-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-err-call
displayed_sidebar: docs
---
-**ON ERR CALL** ( *metodoErro* {; *escopo*} )
+**ON ERR CALL** ( *metodoErro* : Text {; *escopo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| metodoErro | Text | → | Método de erro a ser chamado, ou string Vazia para não capturar erros |
-| escopo | Integer | → | Escopo do método de erro |
+| metodoErro | Text | → | Método de erro a ser chamado, ou string Vazia para não capturar erros |
+| escopo | Integer | → | Escopo do método de erro |
@@ -191,6 +191,6 @@ O método abaixo de gestão de erros ignora as interrupções de usuário e most
| | |
| --- | --- |
| Número do comando | 155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
index 22a83179f97f2b..f9cb99993064a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-event-call.md
@@ -5,12 +5,12 @@ slug: /commands/on-event-call
displayed_sidebar: docs
---
-**ON EVENT CALL** ( *metodoEvento* {; *nomeProcesso*} )
+**ON EVENT CALL** ( *metodoEvento* : Text {; *nomeProcesso* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| metodoEvento | Text | → | Método evento a ser invocado, ou cadeia vazia para parar eventos interceptados |
-| nomeProcesso | Text | → | Nome do processo |
+| metodoEvento | Text | → | Método evento a ser invocado, ou cadeia vazia para parar eventos interceptados |
+| nomeProcesso | Text | → | Nome do processo |
@@ -112,7 +112,7 @@ Se um relatório for impresso utilizando [PRINT SELECTION](print-selection.md "P
| | |
| --- | --- |
| Número do comando | 190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
index 5efd08334c8351..3a213732339c51 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-action-database-method.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| $1 | Objeto | → | Informação passada pela aplicação móvel |
+| $1 | Objeto | → | Informação passada pela aplicação móvel |
| Resultado | Object | ← | Estado da ação e sincronização de dados |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
index b1254d1f8504a2..ff0294404ee909 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-mobile-app-authentication-database-method.md
@@ -5,11 +5,11 @@ slug: /commands/on-mobile-app-authentication-database-method
displayed_sidebar: docs
---
-**On Mobile App Authentication database method** ( *mobileinfo* ; *status* )
+**On Mobile App Authentication database method** ( *mobileinfo* : Object ; *status* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mobileinfo | Object | → | Informação passada pela aplicação móvel |
+| mobileinfo | Object | → | Informação passada pela aplicação móvel |
| status | Object | ← | Status de autenticação |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
index 0efa560a6e6ade..f93fc55a62f24d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/on-server-open-connection-database-method.md
@@ -133,6 +133,6 @@ O seguinte exemplo evita uma nova conexão entre as 2 e 4 A.M.
| | |
| --- | --- |
| Número do comando | 16001 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
index c2ac171918cf72..2f57b466fafe1f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/one-record-select.md
@@ -5,11 +5,11 @@ slug: /commands/one-record-select
displayed_sidebar: docs
---
-**ONE RECORD SELECT** {( *tabela* )}
+**ONE RECORD SELECT** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual reduzir a seleção ao registro atual, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela na qual reduzir a seleção ao registro atual, ou tabela padrão, se omitido |
@@ -37,7 +37,7 @@ Aviso: lembre que um número de registro pode ser reutilizado se o registro for
| | |
| --- | --- |
| Número do comando | 189 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
index e617984d420052..b883beb6f9a728 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Se o comando foi executado corretamente, a variável de sistema OK é definida c
| | |
| --- | --- |
| Número do comando | 1047 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
index e0a2f037ab70fe..cd1ebea5677a37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-color-picker.md
@@ -5,11 +5,11 @@ slug: /commands/open-color-picker
displayed_sidebar: docs
---
-**OPEN COLOR PICKER** {( *textOrBackground* )}
+**OPEN COLOR PICKER** ({ *textOrBackground* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| textOrBackground | Integer | → | 0 ou se omite = cor do texto, 1 = cor do fundo do texto |
+| textOrBackground | Integer | → | 0 ou se omite = cor do texto, 1 = cor do fundo do texto |
@@ -34,6 +34,6 @@ Se a cor mudou, o evento formulário On After Edit é gerado para o objeto.
| | |
| --- | --- |
| Número do comando | 1304 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
index 28ad8e3b8b809f..fca527ebdcb391 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-data-file.md
@@ -5,11 +5,11 @@ slug: /commands/open-data-file
displayed_sidebar: docs
---
-**OPEN DATA FILE** ( *endAcesso* )
+**OPEN DATA FILE** ( *endAcesso* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| endAcesso | Text | → | Nome o endereço de acesso completo ao arquivo de dados a ser aberto |
+| endAcesso | Text | → | Nome o endereço de acesso completo ao arquivo de dados a ser aberto |
@@ -60,6 +60,6 @@ No contexto de implementação de uma aplicação fusionada, se quiser abrir ou
| | |
| --- | --- |
| Número do comando | 312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
index af7e17e0800cea..bb9e3b818613fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-database.md
@@ -5,11 +5,11 @@ slug: /commands/open-database
displayed_sidebar: docs
---
-**OPEN DATABASE** ( *filePath* )
+**OPEN DATABASE** ( *filePath* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| filePath | Text | → | Nome ou via de acesso completa do arquivo de base de dados a abrir (.4db, .4dc, .4dbase ou .4dlink) |
+| filePath | Text | → | Nome ou via de acesso completa do arquivo de base de dados a abrir (.4db, .4dc, .4dbase ou .4dlink) |
@@ -77,6 +77,6 @@ Se quiser selecionar um servidor no início desde uma aplicação monousuário.
| | |
| --- | --- |
| Número do comando | 1321 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
index 04af9333f2ed1d..e939472369b1bc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-document.md
@@ -5,13 +5,13 @@ slug: /commands/open-document
displayed_sidebar: docs
---
-**Open document** ( *documento* {; *tipoArquivo*}{; *modo*} ) : Time
+**Open document** ( *documento* : Text {; *tipoArquivo* : Text}{; *modo* : Integer} ) : Time
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
-| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
-| modo | Integer | → | Modo de abertura do documento |
+| documento | Text | → | Nome de documento ou rota de acesso completa ou string vazia para caixa de diálogo de arquivo |
+| tipoArquivo | Text | → | Lista de tipos de documentos a serem pesquisados, ou "*" para não pesquisar os documentos |
+| modo | Integer | → | Modo de abertura do documento |
| Resultado | Time | ← | Número de referência de documento |
@@ -103,7 +103,7 @@ Se passa o valor 3 em *modo*, a função retorna ?00:00:00? (sem referência de
| | |
| --- | --- |
| Número do comando | 264 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
index 791f7cfad2e50f..45910a799db120 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Abaixo o código do botão:
| | |
| --- | --- |
| Número do comando | 1303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
index 0e41ba8fd1c170..f42d30d12ef75f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-form-window.md
@@ -5,16 +5,16 @@ slug: /commands/open-form-window
displayed_sidebar: docs
---
-**Open form window** ( {*tabela* ;} *nomeForm* {; *tipo* {; *hPos* {; *vPos* {; *}}}} ) : Integer
+**Open form window** ( {*tabela* : Table ;} *nomeForm* : Text, Object {; *tipo* : Integer {; *hPos* : Integer {; *vPos* : Integer {; *}}}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela do formulário ou tabela padrão, se omitido |
-| nomeForm | Text, Object | → | Nome do formulário |
-| tipo | Integer | → | tipo de janela |
-| hPos | Integer | → | Posição horizontal da janela |
-| vPos | Integer | → | Posição vertical da janela |
-| * | Operador | → | Salvar posição atual e tamanho da janela |
+| tabela | Table | → | Tabela do formulário ou tabela padrão, se omitido |
+| nomeForm | Text, Object | → | Nome do formulário |
+| tipo | Integer | → | tipo de janela |
+| hPos | Integer | → | Posição horizontal da janela |
+| vPos | Integer | → | Posição vertical da janela |
+| * | Operador | → | Salvar posição atual e tamanho da janela |
| Resultado | Integer | ← | Número de referência de janela |
@@ -140,6 +140,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 675 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
index e07309a725d5d6..3e7d872e1ab9f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ A variável sistema OK se estabelece em 1 se o trabalho de impressão foi aberto
| | |
| --- | --- |
| Número do comando | 995 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
index 19dfa31b5e2181..d1d886f0c25128 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-resource-file.md
@@ -5,12 +5,12 @@ slug: /commands/open-resource-file
displayed_sidebar: docs
---
-**Open resource file** ( *resNomArq* {; *tipoArquivo*} ) : Time
+**Open resource file** ( *resNomArq* : Text {; *tipoArquivo* : Text} ) : Time
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNomArq | Text | → | Nome curto ou longo ou arquivo de resource ou string Vazia para caixa de diálogo Abrir Arquivo |
-| tipoArquivo | Text | → | Tipo de arquivo Mac OS (string de 4-caracteres), ou arquivo de extensao Windows (string 1- a 3-caracteres), ou Todos arquivos, se omitido. |
+| resNomArq | Text | → | Nome curto ou longo ou arquivo de resource ou string Vazia para caixa de diálogo Abrir Arquivo |
+| tipoArquivo | Text | → | Tipo de arquivo Mac OS (string de 4-caracteres), ou arquivo de extensao Windows (string 1- a 3-caracteres), ou Todos arquivos, se omitido. |
| Resultado | Time | ← | Número de referência do arquivo de Resouce |
@@ -105,7 +105,7 @@ Se o arquivo de recursos não puder ser aberto por um problema do recurso ou de
| | |
| --- | --- |
| Número do comando | 497 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
index 294e22b3f11160..b0fb698cd8c68f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
index 3ea2921c9ecd50..9a5a878c0ef1ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependendo dos privilegios de acesso do usuário atual, certas funções dispon
| | |
| --- | --- |
| Número do comando | 1018 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
index 5ca57cfdeb5858..a5d7f22798c717 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-settings-window.md
@@ -5,13 +5,13 @@ slug: /commands/open-settings-window
displayed_sidebar: docs
---
-**OPEN SETTINGS WINDOW** ( *seletor* {; *acesso* {; *tipoConfiguração*}} )
+**OPEN SETTINGS WINDOW** ( *seletor* : Text {; *acesso* : Boolean {; *tipoConfiguração* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Text | → | Chave que designa um tema ou página ou um grupo de parâmetros da caixa de diálogo Preferências |
-| acesso | Boolean | → | True=Bloquear as outras páginas da caixa de diálogo, False ou se omitir=Deixar ativas as outras páginas da caixa de diálogo |
-| tipoConfiguração | Integer | → | 0 ou omitido = configuração da estrutura; 1 = configuração de usuário, 2 = Configuração usuário para arquivo de dados |
+| seletor | Text | → | Chave que designa um tema ou página ou um grupo de parâmetros da caixa de diálogo Preferências |
+| acesso | Boolean | → | True=Bloquear as outras páginas da caixa de diálogo, False ou se omitir=Deixar ativas as outras páginas da caixa de diálogo |
+| tipoConfiguração | Integer | → | 0 ou omitido = configuração da estrutura; 1 = configuração de usuário, 2 = Configuração usuário para arquivo de dados |
@@ -171,7 +171,7 @@ Se a caixa de diálogo Preferências/Propriedades é validada, a variável siste
| | |
| --- | --- |
| Número do comando | 903 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
index ead62a70e25a12..c1ce0df0092922 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-url.md
@@ -5,13 +5,13 @@ slug: /commands/open-url
displayed_sidebar: docs
---
-**OPEN URL** ( *rota* {; *appName*}{; *} )
+**OPEN URL** ( *rota* : Text {; *appName* : Text}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Path of document or URL to open |
-| appName | Text | → | Name of application to use |
-| * | Operador | → | Se especificado = URL não é traduzido, se omitido = URL é traduzido |
+| rota | Text | → | Path of document or URL to open |
+| appName | Text | → | Name of application to use |
+| * | Operador | → | Se especificado = URL não é traduzido, se omitido = URL é traduzido |
@@ -84,6 +84,6 @@ Pode abrir um arquivo texto com diferentes aplicações:
| | |
| --- | --- |
| Número do comando | 673 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
index 9c494b25da5e85..39003f1bd11081 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/open-window.md
@@ -5,17 +5,17 @@ slug: /commands/open-window
displayed_sidebar: docs
---
-**Open window** ( *esquerda* ; *superior* ; *direita* ; *inferior* {; *tipo* {; *titulo* {; *caixaFechar*}}} ) : Integer
+**Open window** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer {; *tipo* : Integer {; *titulo* : Text {; *caixaFechar* : Text}}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| esquerda | Integer | → | Coordenada global da área de conteúdo da janela |
-| superior | Integer | → | Coordenada superior da área de conteúdos da janela |
-| direita | Integer | → | Coordenada direita da área de conteúdos da janela, ou -1 para usar tamanho padrão do formulário |
-| inferior | Integer | → | Coordenada inferior da área de conteúdos da janela, ou -1 para usar tamanho padrão do formulário |
-| tipo | Integer | → | tipo da janela |
-| titulo | Text | → | Título da janela ou "" para usar título do formulário padrão |
-| caixaFechar | Text | → | Método a chamar quando a caixa control-menu recebe um clique duplo, ou quanod a caixa Fechar é clicada |
+| esquerda | Integer | → | Coordenada global da área de conteúdo da janela |
+| superior | Integer | → | Coordenada superior da área de conteúdos da janela |
+| direita | Integer | → | Coordenada direita da área de conteúdos da janela, ou -1 para usar tamanho padrão do formulário |
+| inferior | Integer | → | Coordenada inferior da área de conteúdos da janela, ou -1 para usar tamanho padrão do formulário |
+| tipo | Integer | → | tipo da janela |
+| titulo | Text | → | Título da janela ou "" para usar título do formulário padrão |
+| caixaFechar | Text | → | Método a chamar quando a caixa control-menu recebe um clique duplo, ou quanod a caixa Fechar é clicada |
| Resultado | Integer | ← | Número de referência de janela |
@@ -142,6 +142,6 @@ Este exemplo ilustra o mecanismo de “atraso” de mostrar janelas em macOS:
| | |
| --- | --- |
| Número do comando | 153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
index 939c6a13482ac5..ebf2859bede7b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-attribute.md
@@ -5,15 +5,15 @@ slug: /commands/order-by-attribute
displayed_sidebar: docs
---
-**ORDER BY ATTRIBUTE** ( {*tabela* ;} *campoObjeto* ; *rotaAtrib* ; > ou < {; *campoObjeto2* ; *rotaAtrib2* ; > ou <2 ; ... ; *campoObjetoN* ; *rotaAtribN* ; > ou
+**ORDER BY ATTRIBUTE** ( {*aTable* : Table ;} {; ...(*objectField* : Field ; *attributePath* : Text {; >,<})} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai ordenar registros selecionados, ou a tabela padrão, se omitido |
-| campoObjeto | Object | → | Campo Objeto contendo o atributo de ordenação |
-| rotaAtrib | Text | → | Nome ou rota do atributo para o qual vai estabelecer a ordem para cada nível |
-| > ou < | Operador | → | Direção de ordenação para cada nível: > para ordenar em ordem ascendente, ou < para ordenar em ordem descendente. |
-| * | Operador | → | Continuar a bandeira de ordem |
+| tabela | Table | → | Tabela para a qual vai ordenar registros selecionados, ou a tabela padrão, se omitido |
+| campoObjeto | Object | → | Campo Objeto contendo o atributo de ordenação |
+| rotaAtrib | Text | → | Nome ou rota do atributo para o qual vai estabelecer a ordem para cada nível |
+| > ou < | Operador | → | Direção de ordenação para cada nível: > para ordenar em ordem ascendente, ou < para ordenar em ordem descendente. |
+| * | Operador | → | Continuar a bandeira de ordem |
@@ -118,6 +118,6 @@ Os registros estão na seguinte ordem:
| | |
| --- | --- |
| Número do comando | 1407 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
index 5cb4f7f199ca09..e0f3c1b76904d6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by-formula.md
@@ -5,13 +5,13 @@ slug: /commands/order-by-formula
displayed_sidebar: docs
---
-**ORDER BY FORMULA** ( *tabela* ; *expressao* {; >ou<}{; *expressao2* ; >ou<2 ; ... ; *expressaoN* ; >ou
+**ORDER BY FORMULA** ( *aTable* : Table ; *formula* : Expression {; >,<} {; ...(*formula* : Expression {; >,<})} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai ordenar os registros |
-| expressao | Expression | → | Fórmula de ordem para cada nível (pode ser de tipo Alfanumérico, Real, Inteiro, Inteiro longo, Data, Hora ou Booleano) |
-| >ou< | Operador | → | Sentido da ordenação para cada nível: > ordem crescente, ou < ordem decrescente |
+| tabela | Table | → | Tabela na qual vai ordenar os registros |
+| expressao | Expression | → | Fórmula de ordem para cada nível (pode ser de tipo Alfanumérico, Real, Inteiro, Inteiro longo, Data, Hora ou Booleano) |
+| >ou< | Operador | → | Sentido da ordenação para cada nível: > ordem crescente, ou < ordem decrescente |
@@ -51,7 +51,7 @@ Este exemplo ordena os registros da tabela \[Pessoas\] em ordem descendente, bas
| | |
| --- | --- |
| Número do comando | 300 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
index 671e1ebda15f94..2ce35a26be1ebb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/order-by.md
@@ -5,14 +5,14 @@ slug: /commands/order-by
displayed_sidebar: docs
---
-**ORDER BY** ( {*tabela* ;}{ *campo* }{; > ou < }{; *campo2* ; > ou <2 ; ... ; *campoN* ; > ou
+**ORDER BY** ( {*aTable* : Table ;}{; ...(*aField* : Field {; >,<}) } {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai ordenar os registros selecionados, ou tabela Padrão, se omitido |
-| campo | Field | → | Campo no qual estabelecer a ordem para cada nível |
-| > ou < | Operador | → | Direção da ordem para cada nível: > para ordenar em ordem ascendente, ou < para ordenar em ordem descendente |
-| * | Operador | → | Continuar a bandeira de ordem |
+| tabela | Table | → | Tabela na qual vai ordenar os registros selecionados, ou tabela Padrão, se omitido |
+| campo | Field | → | Campo no qual estabelecer a ordem para cada nível |
+| > ou < | Operador | → | Direção da ordem para cada nível: > para ordenar em ordem ascendente, ou < para ordenar em ordem descendente |
+| * | Operador | → | Continuar a bandeira de ordem |
@@ -210,7 +210,7 @@ Sem importar como se defina a ordenação, se a operação de ordenação vai a
| | |
| --- | --- |
| Número do comando | 49 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
index b8f833fba9d4f4..e6a93d94e1b744 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **Outside call,** tenha certeza de qu
| | |
| --- | --- |
| Número do comando | 328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
index 4c68e4378a28ab..be305d7c833d6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/page-break.md
@@ -5,11 +5,12 @@ slug: /commands/page-break
displayed_sidebar: docs
---
-**PAGE BREAK** {( *|> )}
+**PAGE BREAK** ({ *|> })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| *|> | → | * Cancela o trabalho de impressão iniciado com o Formulário de Impressão, ou > para forçar um trabalho de impressão. |
+| * | Operator | → | Cancel printing job started with Print form |
+| > | Operator | → | Force one printing job |
@@ -49,7 +50,7 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 6 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
index 5a23faa1615574..d92a931a77bd57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/parse-formula.md
@@ -5,12 +5,12 @@ slug: /commands/parse-formula
displayed_sidebar: docs
---
-**Parse formula** ( *formula* {; *opções*}{; *mensagemErro*} ) : Text
+**Parse formula** ( *formula* : Text {; *opções* : Integer}{; *mensagemErro* : Text} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| formula | Text | → | Fórmula de texto simples |
-| opções | Integer | → | Instruções para input/output |
+| formula | Text | → | Fórmula de texto simples |
+| opções | Integer | → | Instruções para input/output |
| mensagemErro | Text | ← | Mensagem de erro (string vazia se não houver erro) |
| Resultado | Text | ← | Fórmula transformada (texto simples) |
@@ -112,6 +112,6 @@ O parâmetro opcional *mensagemE* *rro* receberá uma mensagem de erro se houver
| | |
| --- | --- |
| Número do comando | 1576 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
index dd1cc09df259b8..bb6be924640ab9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pasteboard-data-size.md
@@ -5,11 +5,11 @@ slug: /commands/pasteboard-data-size
displayed_sidebar: docs
---
-**Pasteboard data size** ( *tipoDados* ) : Integer
+**Pasteboard data size** ( *tipoDados* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoDados | Text | → | Tipo de dados a adicionar |
+| tipoDados | Text | → | Tipo de dados a adicionar |
| Resultado | Integer | ← | Tamanho (em bytes) dos dados armazenados na área de transferência ou então código do erro |
@@ -96,7 +96,7 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 400 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
index da89f3af40ad59..412c13a5431470 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/path-to-object.md
@@ -5,12 +5,12 @@ slug: /commands/path-to-object
displayed_sidebar: docs
---
-**Path to object** ( *rota* {; *tipoRota*} ) : Object
+**Path to object** ( *rota* : Text {; *tipoRota* : Integer} ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rota | Text | → | Nome da rota |
-| tipoRota | Integer | → | Sintaxe do tipo de rota: System (padrão) ou Posix |
+| rota | Text | → | Nome da rota |
+| tipoRota | Integer | → | Sintaxe do tipo de rota: System (padrão) ou Posix |
| Resultado | Object | ← | Objeto que descreve o conteúdo da rota. |
@@ -179,6 +179,6 @@ Se quiser saber a quantidade de subpastas em uma rota:
| | |
| --- | --- |
| Número do comando | 1547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
index c6f93c72b8319a..c4e3f4f340f7b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-indexes.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Tabela para a qual parar os índices |
+| aTable | Table | → | Tabela para a qual parar os índices |
@@ -53,6 +53,6 @@ Exemplo de método de importação massivo de dados:
| | |
| --- | --- |
| Número do comando | 1293 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
index 4c39710196130b..0b1a55e5f1add1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pause-process.md
@@ -5,11 +5,11 @@ slug: /commands/pause-process
displayed_sidebar: docs
---
-**PAUSE PROCESS** ( *processo* )
+**PAUSE PROCESS** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo |
+| processo | Integer | → | Número de processo |
@@ -37,6 +37,6 @@ Quando se suspende a execução de um processo, as janelas que pertencem a este
| | |
| --- | --- |
| Número do comando | 319 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
index 688fe3ada5d47a..28fb5390c51703 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-codec-list.md
@@ -5,13 +5,13 @@ slug: /commands/picture-codec-list
displayed_sidebar: docs
---
-**PICTURE CODEC LIST** ( *arrayCodec* {; *arrayNomes*}{; *} )
+**PICTURE CODEC LIST** ( *arrayCodec* : Text array {; *arrayNomes* : Text array}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| arrayCodec | Text array | ← | Identificadores de codecs de imagens disponíveis |
| arrayNomes | Text array | ← | Nomes dos Codecs de imagens |
-| * | Operador | → | Retorna a lista de Codecs de leitura |
+| * | Operador | → | Retorna a lista de Codecs de leitura |
@@ -41,6 +41,6 @@ Por padrão, se não passa o parâmetro *\**, o comando devolve unicamente os co
| | |
| --- | --- |
| Número do comando | 992 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
index fbe8606c93683d..0236cdc2a706f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-library-list.md
@@ -5,7 +5,7 @@ slug: /commands/picture-library-list
displayed_sidebar: docs
---
-**PICTURE LIBRARY LIST** ( *refsImagem* ; *nomsImagem* )
+**PICTURE LIBRARY LIST** ( *refsImagem* : Integer array ; *nomsImagem* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -98,6 +98,6 @@ O exemplo a seguir exporta a biblioteca de imagens a um documento armazenado no
| | |
| --- | --- |
| Número do comando | 564 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
index 95e7c1dd3fc993..5e49566f986d31 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-properties.md
@@ -5,11 +5,11 @@ slug: /commands/picture-properties
displayed_sidebar: docs
---
-**PICTURE PROPERTIES** ( *imagem* ; *largura* ; *altura* {; *hDesp* {; *vDesp* {; *modo*}}} )
+**PICTURE PROPERTIES** ( *imagem* : Picture ; *largura* : Real ; *altura* : Real {; *hDesp* : Integer {; *vDesp* : Integer {; *modo* : Integer}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem para a qual conseguir informação |
+| imagem | Picture | → | Imagem para a qual conseguir informação |
| largura | Real | ← | Largura da imagem expressa em pixels |
| altura | Real | ← | Altura da imagem expressa em pixels |
| hDesp | Integer | ← | Offset horizontal quando a imagem é exibida no segundo plano |
@@ -35,6 +35,6 @@ Os parâmetros *hDesp*, *vDesp*, e *modo* devolvem as posições horizontal e ve
| | |
| --- | --- |
| Número do comando | 457 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
index 3f3e6f9a9213d5..c9efe97dbd6def 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-size.md
@@ -5,11 +5,11 @@ slug: /commands/picture-size
displayed_sidebar: docs
---
-**Picture size** ( *imagem* ) : Integer
+**Picture size** ( *imagem* : Picture ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem para qual vai retornar o tamanho em bytes |
+| imagem | Picture | → | Imagem para qual vai retornar o tamanho em bytes |
| Resultado | Integer | ← | Tamanho, em bytes, da imagem |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 356 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
index 52cf99d547cf8c..570bd5bcaaa6f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/picture-to-blob.md
@@ -5,13 +5,13 @@ slug: /commands/picture-to-blob
displayed_sidebar: docs
---
-**PICTURE TO BLOB** ( *imagem* ; *imagemBlob* ; *codec* )
+**PICTURE TO BLOB** ( *imagem* : Picture ; *imagemBlob* : Blob ; *codec* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Campo ou variável tipo Imagem |
+| imagem | Picture | → | Campo ou variável tipo Imagem |
| imagemBlob | Blob | ← | BLOB para receber a imagem convertida |
-| codec | Text | → | Codec de identificação de Imagem |
+| codec | Text | → | Codec de identificação de Imagem |
@@ -56,7 +56,7 @@ Se quiser converter uma imagem de um formato proprietário a formato GIF e mostr
| | |
| --- | --- |
| Número do comando | 692 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md
index 0ac76861501fcf..f40eff500c602b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/play.md
@@ -5,12 +5,12 @@ slug: /commands/play
displayed_sidebar: docs
---
-**PLAY** ( *nomeObjeto* {; *canal*} )
+**PLAY** ( *nomeObjeto* : Text {; *canal* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeObjeto | Text | → | Nome d arquivo de som ou recurso de Mac OS "snd" ou string vazia de som de sistema para parar a ação assincrônica |
-| canal | Integer | → | Se especificado, canal de sintetizadr e execução assincrônica; se omitido, execução sincrônica |
+| nomeObjeto | Text | → | Nome d arquivo de som ou recurso de Mac OS "snd" ou string vazia de som de sistema para parar a ação assincrônica |
+| canal | Integer | → | Se especificado, canal de sintetizadr e execução assincrônica; se omitido, execução sincrônica |
@@ -63,6 +63,6 @@ O código de exemplo abaixo reproduz um som do sistema em macOS:
| | |
| --- | --- |
| Número do comando | 290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
index 45960f1281587d..783f31638b7b9e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/plugin-list.md
@@ -5,7 +5,7 @@ slug: /commands/plugin-list
displayed_sidebar: docs
---
-**PLUGIN LIST** ( *numerosArray* ; *arrayNomes* )
+**PLUGIN LIST** ( *numerosArray* : Integer array ; *arrayNomes* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -34,6 +34,6 @@ PLUGIN LIST leva todos os plug-ins em consideração, incluindo aqueles que est
| | |
| --- | --- |
| Número do comando | 847 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
index ba088dfc861065..62974737cf1e37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-record.md
@@ -5,11 +5,11 @@ slug: /commands/pop-record
displayed_sidebar: docs
---
-**POP RECORD** {( *tabela* )}
+**POP RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual desempilhar o registro, a tabela padrão, se omitido |
+| tabela | Table | → | Tabela da qual desempilhar o registro, a tabela padrão, se omitido |
@@ -39,7 +39,7 @@ O exemplo a seguir recupera o registro de um cliente na pilha:
| | |
| --- | --- |
| Número do comando | 177 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
index 80d33042c501c0..283bb02773dddd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/pop-up-menu.md
@@ -5,14 +5,14 @@ slug: /commands/pop-up-menu
displayed_sidebar: docs
---
-**Pop up menu** ( *conteudo* {; *padrao* {; *coordX* ; *coordY*}} ) : Integer
+**Pop up menu** ( *conteudo* : Text {; *padrao* : Integer {; *coordX* : Integer ; *coordY* : Integer}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conteudo | Text | → | Definição texto do menu |
-| padrao | Integer | → | Número do item de menu selecionado como padrão |
-| coordX | Integer | → | Coordenadas X da esquina esquerda superior |
-| coordY | Integer | → | Coordenadas Y de esquina superior esquerda |
+| conteudo | Text | → | Definição texto do menu |
+| padrao | Integer | → | Número do item de menu selecionado como padrão |
+| coordX | Integer | → | Coordenadas X da esquina esquerda superior |
+| coordY | Integer | → | Coordenadas Y de esquina superior esquerda |
| Resultado | Integer | ← | Número de item de menu selecionado |
@@ -123,6 +123,6 @@ O próximo é o menu pop-up tal como aparece em Windows (esquerda) e Macintosh (
| | |
| --- | --- |
| Número do comando | 542 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md
index 2e99045391e232..5456be27df1463 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/position.md
@@ -5,24 +5,17 @@ slug: /commands/position
displayed_sidebar: docs
---
-**Position** ( *pesquisar* ; *cadeia* {; *inicio* {; *comprEncont*}}{; *} ) -> Resultado
-**Position** ( *pesquisar* ; *string* ; *inicio* ; *comprimentoEncontrado* ; *opções* ) -> Resultado
+**Position** ( *find* : Text ; *aString* : Text {; *start* : Integer {; *lengthFound* : Integer}}{; *} ) -> Integer
**Position** ( *find* : Text ; *aString* : Text; *start* : Integer ; *lengthFound* : Integer ; *options* : Integer ) -> Integer
+
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pesquisar | Text | → | Cadeia a procurar |
-| cadeia | Text | → | Cadeia na qual procurar |
-| inicio | Integer | → | Posição na cadeia onde iniciar a pesquisa |
+| pesquisar | Text | → | Cadeia a procurar |
+| cadeia | Text | → | Cadeia na qual procurar |
+| inicio | Integer | → | Posição na cadeia onde iniciar a pesquisa |
| comprEncont | Integer | ← | Comprimento da cadeia encontrada |
-| * | Operador | → | Se passado: avaliação baseada em códigos de caracteres |
-| Resultado | Integer | ← | Posição da primeira ocorrência |
-| Position ( pesquisar ; string ; inicio ; comprimentoEncontrado ; opções ) -> Resultado |
-| Parâmetro | Tipo | Descrição |
-| pesquisar | Text | → | String a pesquisar |
-| string | Text | → | texto no qual procurar |
-| inicio | Integer | → | Posição no texto onde a pesquisa começa |
-| comprimentoEncontrado | Integer | → | Comprimento do texto encontrado |
-| opções | Integer | → | Condições de pesquisa |
+| * | Operador | → | Se passado: avaliação baseada em códigos de caracteres |
+| opções | Integer | → | Condições de pesquisa |
| Resultado | Integer | ← | Posição da primeira ocorrência |
@@ -123,6 +116,6 @@ No exemplo abaixo, se quiser encontrar todas as instâncias de uma string e subs
| | |
| --- | --- |
| Número do comando | 15 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
index cee42b92f0732b..ee25b3db016bbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-click.md
@@ -5,14 +5,14 @@ slug: /commands/post-click
displayed_sidebar: docs
---
-**POST CLICK** ( *mouseX* ; *mouseY* {; *processo*} {; *} )
+**POST CLICK** ( *mouseX* : Integer ; *mouseY* : Integer {; *processo* : Integer} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mouseX | Integer | → | Coordenada Horizontal |
-| mouseY | Integer | → | Coordenada Vertical |
-| processo | Integer | → | Número de referência do processo destino; ou, omitido, fila de evento de Aplicação, ou 0 |
-| * | Operator | → | Se especificado sistema de coordenadas global é usado; se omitido, sistema de coordenadas locais é usado |
+| mouseX | Integer | → | Coordenada Horizontal |
+| mouseY | Integer | → | Coordenada Vertical |
+| processo | Integer | → | Número de referência do processo destino; ou, omitido, fila de evento de Aplicação, ou 0 |
+| * | Operator | → | Se especificado sistema de coordenadas global é usado; se omitido, sistema de coordenadas locais é usado |
@@ -34,6 +34,6 @@ Se especificar o parâmetro processo *processo*, o clique é enviado ao processo
| | |
| --- | --- |
| Número do comando | 466 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
index 9eb57590e65540..f182edc984036d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-event.md
@@ -5,17 +5,17 @@ slug: /commands/post-event
displayed_sidebar: docs
---
-**POST EVENT** ( *que* ; *mensagem* ; *quando* ; *mouseX* ; *mouseY* ; *modificadores* {; *processo*} )
+**POST EVENT** ( *que* : Integer ; *mensagem* : Integer ; *quando* : Integer ; *mouseX* : Integer ; *mouseY* : Integer ; *modificadores* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| que | Integer | → | Tipo de evento |
-| mensagem | Integer | → | Mensagem de evento |
-| quando | Integer | → | Tempo de evento expresso em ticks |
-| mouseX | Integer | → | Coordenadas horizontais do mouse |
-| mouseY | Integer | → | Coordenadas verticais do mouse |
-| modificadores | Integer | → | Estado de teclas modificadoras |
-| processo | Integer | → | Número de referência do processo de destino; ou fila de evento de aplicação, se omitido, ou 0. |
+| que | Integer | → | Tipo de evento |
+| mensagem | Integer | → | Mensagem de evento |
+| quando | Integer | → | Tempo de evento expresso em ticks |
+| mouseX | Integer | → | Coordenadas horizontais do mouse |
+| mouseY | Integer | → | Coordenadas verticais do mouse |
+| modificadores | Integer | → | Estado de teclas modificadoras |
+| processo | Integer | → | Número de referência do processo de destino; ou fila de evento de aplicação, se omitido, ou 0. |
@@ -77,6 +77,6 @@ Se passa o parâmetro *processo,* o evento é enviado através do processo cujo
| | |
| --- | --- |
| Número do comando | 467 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
index 6a4c3263103f35..a813155a746709 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-key.md
@@ -5,13 +5,13 @@ slug: /commands/post-key
displayed_sidebar: docs
---
-**POST KEY** ( *codigo* {; *modificadores* {; *processo*}} )
+**POST KEY** ( *codigo* : Integer {; *modificadores* : Integer {; *processo* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| codigo | Integer | → | Código do caractere ou código da tecla de função |
-| modificadores | Integer | → | Estado de teclas modificadoras |
-| processo | Integer | → | Número de referência do processo destino; ou fila do evento de aplicação, se omitido, ou 0 |
+| codigo | Integer | → | Código do caractere ou código da tecla de função |
+| modificadores | Integer | → | Estado de teclas modificadoras |
+| processo | Integer | → | Número de referência do processo destino; ou fila do evento de aplicação, se omitido, ou 0 |
@@ -41,6 +41,6 @@ Ver exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 465 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
index 2d867e592ba8f8..89fbfb6a1ffa09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/post-outside-call.md
@@ -5,11 +5,11 @@ slug: /commands/post-outside-call
displayed_sidebar: docs
---
-**POST OUTSIDE CALL** ( *processo* )
+**POST OUTSIDE CALL** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | número de processo |
+| processo | Integer | → | número de processo |
@@ -46,7 +46,7 @@ Ver o exemplo de [On Exit Database Method](metodo-banco-de-dados-on-exit.md "On
| | |
| --- | --- |
| Número do comando | 329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
index 8f12c40a059eb4..5bf89845c8479b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/previous-record.md
@@ -5,11 +5,11 @@ slug: /commands/previous-record
displayed_sidebar: docs
---
-**PREVIOUS RECORD** {( *tabela* )}
+**PREVIOUS RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai mover o registro previamente selecionado, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual vai mover o registro previamente selecionado, ou tabela padrão, se omitido |
@@ -32,7 +32,7 @@ Se PREVIOUS RECORD move o ponteiro do registro atual antes da seleção atual, B
| | |
| --- | --- |
| Número do comando | 110 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
index c87f7163b09a7a..60eb7a1d3b7750 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-label.md
@@ -5,13 +5,13 @@ slug: /commands/print-label
displayed_sidebar: docs
---
-**PRINT LABEL** ( {*tabela* }{;}{ *documento* {; *|>}} )
+**PRINT LABEL** ( {*tabela* : Table }{;}{ *documento* : Text {; *|>}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a imprimir, ou tabela padrão, se omitido |
-| documento | Text | → | Nome do documento de etiquetas do disco |
-| *|> | → | * para apagar as caixas de diálogo de impressão, ou > para não reiniciar os parâmetros de impressão |
+| tabela | Table | → | Tabela a imprimir, ou tabela padrão, se omitido |
+| documento | Text | → | Nome do documento de etiquetas do disco |
+| *|> | -> | * para apagar as caixas de diálogo de impressão, ou > para não reiniciar os parâmetros de impressão | * to suppress the printing dialog box, or > to not reinitialize print settings |
@@ -111,7 +111,7 @@ O exemplo a seguir lhe permite ao usuário efetuar uma pesquisa na tabela \[Pess
| | |
| --- | --- |
| Número do comando | 39 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
index a65ffb9f1f3721..3f301443b40496 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-object.md
@@ -5,16 +5,16 @@ slug: /commands/print-object
displayed_sidebar: docs
---
-**Print object** ( {* ;} *objeto* {; *posX* {; *posY* {; *largura* {; *alto*}}}} ) : Boolean
+**Print object** ( * ; *objeto* : Text {; *posX* : Integer {; *posY* : Integer {; *largura* : Integer {; *alto* : Integer}}}} ) : Boolean
**Print object** ( *objeto* : Field, Variable {; *posX* : Integer {; *posY* : Integer {; *largura* : Integer {; *alto* : Integer}}}} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
-| posX | Integer | → | Localização horizontal do objeto |
-| posY | Integer | → | Localização Vertical do objeto |
-| largura | Integer | → | Largura do objeto (pixels) |
-| alto | Integer | → | Altura do objeto (pixels) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se* for especificado) ou variável (se * é omitido) |
+| posX | Integer | → | Localização horizontal do objeto |
+| posY | Integer | → | Localização Vertical do objeto |
+| largura | Integer | → | Largura do objeto (pixels) |
+| alto | Integer | → | Altura do objeto (pixels) |
| Resultado | Boolean | ← | Verdade = objeto impresso completamente; de outro modo False |
@@ -101,6 +101,6 @@ Exemplo de impressão de um list box completo:
| | |
| --- | --- |
| Número do comando | 1095 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
index b3a3697243cd33..17048b50fed12a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-option-values.md
@@ -5,11 +5,11 @@ slug: /commands/print-option-values
displayed_sidebar: docs
---
-**PRINT OPTION VALUES** ( *opçao* ; *arrayNoms* {; *info1Array* {; *info2Array*}} )
+**PRINT OPTION VALUES** ( *opçao* : Integer ; *arrayNoms* : Text array {; *info1Array* : Integer array {; *info2Array* : Integer array}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opçao | Integer | → | Número de opção |
+| opçao | Integer | → | Número de opção |
| arrayNoms | Text array | ← | Nomes dos valores |
| info1Array | Integer array | ← | Valores (1) da opção |
| info2Array | Integer array | ← | Valores (2) da opção |
@@ -59,6 +59,6 @@ Toda a informação devolvida por estes comandos é fornecida pelo sistema opera
| | |
| --- | --- |
| Número do comando | 785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
index 54d10dfbaf857f..769e8d0d69f9b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-record.md
@@ -5,12 +5,12 @@ slug: /commands/print-record
displayed_sidebar: docs
---
-**PRINT RECORD** ( {*tabela*}{;}{* | > } )
+**PRINT RECORD** ( {*tabela* : Table}{;}{* | > } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual imprimir o registro, ou Tabela padrão, caso omitido |
-| * | > | Operador | → | * to suppress the printing dialog box, or > to not reinitialize print settings |
+| tabela | Table | → | Tabela para a qual imprimir o registro, ou Tabela padrão, caso omitido |
+| * | > | Operador | → | * to suppress the printing dialog box, or > to not reinitialize print settings |
@@ -70,6 +70,6 @@ O exemplo a seguir imprime o mesmo registro atual em dois formulários diferente
| | |
| --- | --- |
| Número do comando | 71 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
index 0610af75e6a3ae..cfe96d6441eca7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-selection.md
@@ -5,12 +5,12 @@ slug: /commands/print-selection
displayed_sidebar: docs
---
-**PRINT SELECTION** ( {*tabela*}{;}{* | > } )
+**PRINT SELECTION** ( {*tabela* : Table}{;}{* | > } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual imprimir a seleção, ou Tabela por padrão, se for omitido |
-| * | > | Operador | → | * para apagar as caixas de diálogo de impressão, ou > para não reiniciar as preferências de impressão |
+| tabela | Table | → | Tabela para a qual imprimir a seleção, ou Tabela por padrão, se for omitido |
+| * | > | Operador | → | * para apagar as caixas de diálogo de impressão, ou > para não reiniciar as preferências de impressão |
@@ -66,7 +66,7 @@ O exemplo a seguir seleciona todos os registros na tabela \[Pessoas\]. O comando
| | |
| --- | --- |
| Número do comando | 60 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
index c7961d05b10c3d..5b4f56409537a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings-to-blob.md
@@ -5,7 +5,7 @@ slug: /commands/print-settings-to-blob
displayed_sidebar: docs
---
-**Print settings to BLOB** ( *confImpress* ) : Integer
+**Print settings to BLOB** ( *confImpress* : Blob ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -59,6 +59,6 @@ Se quiser armazenar a configuração de impressão atual no disco:
| | |
| --- | --- |
| Número do comando | 1433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
index 25a0b8da5bf21e..cb2ed327987acc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/print-settings.md
@@ -5,11 +5,11 @@ slug: /commands/print-settings
displayed_sidebar: docs
---
-**PRINT SETTINGS** {( *dialType* )}
+**PRINT SETTINGS** ({ *dialType* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dialType | Integer | → | Caixas de diálogo a mostrar |
+| dialType | Integer | → | Caixas de diálogo a mostrar |
@@ -46,7 +46,7 @@ Se o usuário clicar em OK em ambas caixas de diálogo, a variável sistema OK t
| | |
| --- | --- |
| Número do comando | 106 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
index 6f66367677f1c5..1c959e6aef6244 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printers-list.md
@@ -5,7 +5,7 @@ slug: /commands/printers-list
displayed_sidebar: docs
---
-**PRINTERS LIST** ( *arrayNoms* {; *altNomesArray* {; *modelosArray*}} )
+**PRINTERS LIST** ( *arrayNoms* : Text array {; *altNomesArray* : Text array {; *modelosArray* : Text array}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -50,7 +50,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 789 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
index f9b858b3aa08fe..14b69068cb718c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ O exemplo a seguir muda a posição dos números de página em um relatório de
| | |
| --- | --- |
| Número do comando | 275 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
index 6634f09802c106..e83aa8b314ad43 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-4d-tags.md
@@ -5,13 +5,13 @@ slug: /commands/process-4d-tags
displayed_sidebar: docs
---
-**PROCESS 4D TAGS** ( *dadosEntrada* ; *dadosSaida* {; *param*}{; *param2* ; ... ; *paramN*} )
+**PROCESS 4D TAGS** ( *dadosEntrada* : Text ; *dadosSaida* : Text {; *...param* : Expression} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dadosEntrada | Text | → | Dados que contém as etiquetas HTML a processar |
+| dadosEntrada | Text | → | Dados que contém as etiquetas HTML a processar |
| dadosSaida | Text | ← | Dados processados |
-| param | Expression | → | Parâmetros passados ao template sendo executado |
+| param | Expression | → | Parâmetros passados ao template sendo executado |
@@ -87,6 +87,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número do comando | 816 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
index f7ccd99444f604..fa1e5e8508f760 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este status acontece muito raramente. Processos são geralmente parados antes do
| | |
| --- | --- |
| Número do comando | 672 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
index 6489f0598e0187..d212d77df0efb9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/process-state.md
@@ -5,11 +5,11 @@ slug: /commands/process-state
displayed_sidebar: docs
---
-**Process state** ( *processo* ) : Integer
+**Process state** ( *processo* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo |
+| processo | Integer | → | Número de processo |
| Resultado | Integer | ← | Estado do processo |
@@ -65,6 +65,6 @@ O seguinte exemplo coloca o nome e número de referencia para cada processo nos
| | |
| --- | --- |
| Número do comando | 330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
index f6832d683f46b9..c7b01c675b8ba6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/push-record.md
@@ -5,11 +5,11 @@ slug: /commands/push-record
displayed_sidebar: docs
---
-**PUSH RECORD** {( *tabela* )}
+**PUSH RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual empilhar os registros, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual empilhar os registros, ou tabela padrão, se omitido |
@@ -39,6 +39,6 @@ O seguinte exemplo empilha o registro de um cliente:
| | |
| --- | --- |
| Número do comando | 176 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
index d1a6d9f89c3ea7..3738f724b58686 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-blob-to-report.md
@@ -5,12 +5,12 @@ slug: /commands/qr-blob-to-report
displayed_sidebar: docs
---
-**QR BLOB TO REPORT** ( *area* ; *BLOB* )
+**QR BLOB TO REPORT** ( *area* : Integer ; *BLOB* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| Blob | Blob | → | BLOB que contém o relatório |
+| area | Integer | → | Referência da área |
+| Blob | Blob | → | BLOB que contém o relatório |
@@ -49,7 +49,7 @@ A instrução a seguir recupera o relatório rápido armazenado em Campo4 e o mo
| | |
| --- | --- |
| Número do comando | 771 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
index 48a57f342c5973..5fdf39d63a6c9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-count-columns.md
@@ -5,11 +5,11 @@ slug: /commands/qr-count-columns
displayed_sidebar: docs
---
-**QR Count columns** ( *area* ) : Integer
+**QR Count columns** ( *area* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Resultado | Integer | ← | Número de colunas em área |
@@ -39,7 +39,7 @@ O código a seguir permite adicionar uma coluna adicional à direita da última
| | |
| --- | --- |
| Número do comando | 764 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
index efeaafb6d30601..0e5439ed8ff6b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-delete-column
displayed_sidebar: docs
---
-**QR DELETE COLUMN** ( *area* ; *numColuna* )
+**QR DELETE COLUMN** ( *area* : Integer ; *numColuna* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Número de Coluna |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Número de Coluna |
@@ -40,7 +40,7 @@ O exemplo a seguir garante de que o relatório seja listado e apaga a terceira c
| | |
| --- | --- |
| Número do comando | 749 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
index 1ae84577909950..b255818f1b037b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-delete-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-delete-offscreen-area
displayed_sidebar: docs
---
-**QR DELETE OFFSCREEN AREA** ( *area* )
+**QR DELETE OFFSCREEN AREA** ( *area* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
@@ -28,7 +28,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 754 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
index a7824e2679ed5e..ee95af5bf78a5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-execute-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-execute-command
displayed_sidebar: docs
---
-**QR EXECUTE COMMAND** ( *area* ; *comando* )
+**QR EXECUTE COMMAND** ( *area* : Integer ; *comando* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| comando | Integer | → | Comando de menu a ser executado |
+| area | Integer | → | Referência da área |
+| comando | Integer | → | Comando de menu a ser executado |
@@ -48,7 +48,7 @@ Se passa um número de *comando* incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 791 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
index 2a400f8f82811d..5363257da7ac12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-find-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-find-column
displayed_sidebar: docs
---
-**QR Find column** ( *area* ; *expressao* ) : Integer
+**QR Find column** ( *area* : Integer ; *expressao* : Text, Pointer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| expressao | Text, Pointer | → | Objeto de coluna |
+| area | Integer | → | Referência da área |
+| expressao | Text, Pointer | → | Objeto de coluna |
| Resultado | Integer | ← | Número da coluna |
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número do comando | 776 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
index d3cdba83dcb16c..57697222ca525b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-area-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-area-property
displayed_sidebar: docs
---
-**QR Get area property** ( *area* ; *propriedade* ) : Integer
+**QR Get area property** ( *area* : Integer ; *propriedade* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| propriedade | Integer | → | Elemento de interface |
+| area | Integer | → | Referência da área |
+| propriedade | Integer | → | Elemento de interface |
| Resultado | Integer | ← | 1-exibir, 0 - ocultar |
@@ -39,7 +39,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 795 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
index 9626480e3d51c6..3dc45fdd83a71b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-borders.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-borders
displayed_sidebar: docs
---
-**QR GET BORDERS** ( *area* ; *coluna* ; *linha* ; *borda* ; linha | nivel {; *cor*} )
+**QR GET BORDERS** ( *area* : Integer ; *coluna* : Integer ; *linha* : Integer ; *borda* : Integer ; linha | nivel {; *cor* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| coluna | Integer | → | Número de coluna |
-| linha | Integer | → | Número da Linha |
-| borda | Integer | → | Border value |
+| area | Integer | → | Referência da área |
+| coluna | Integer | → | Número de coluna |
+| linha | Integer | → | Número da Linha |
+| borda | Integer | → | Border value |
| linha | nivel | Integer | ← | Grossura da linha |
| cor | Integer | ← | Cor da borda |
@@ -73,7 +73,7 @@ Se o parâmetro *borda* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 798 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
index 68437b94e7fa2f..83ba16abc9f8e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-command-status.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-command-status
displayed_sidebar: docs
---
-**QR Get command status** ( *area* ; *comando* {; *valor*} ) : Integer
+**QR Get command status** ( *area* : Integer ; *comando* : Integer {; *valor* : Integer, Text} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| comando | Integer | → | Número de comando |
+| area | Integer | → | Referência da área |
+| comando | Integer | → | Número de comando |
| valor | Integer, Text | ← | Valor do subelemento selecionado |
| Resultado | Integer | ← | Estado do comando |
@@ -42,7 +42,7 @@ Se o parâmetro *comando* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 792 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
index 0475378dff8635..6131a544b5f857 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-destination.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-destination
displayed_sidebar: docs
---
-**QR GET DESTINATION** ( *area* ; *tipo* {; *especificos*} )
+**QR GET DESTINATION** ( *area* : Integer ; *tipo* : Integer {; *especificos* : Text, Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| tipo | Integer | ← | Tipo de relatório |
| especificos | Text, Variable | ← | Específicos associados ao tipo de saída |
@@ -42,7 +42,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 756 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
index 42b706ca62632f..65eac20c4e6ae3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-document-property.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-document-property
displayed_sidebar: docs
---
-**QR Get document property** ( *area* ; *propriedade* ) : Integer
+**QR Get document property** ( *area* : Integer ; *propriedade* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| propriedade | Integer | → | 1 = Diálogo de Impressão, 2 = Unidade de documento |
+| area | Integer | → | Referência da área |
+| propriedade | Integer | → | 1 = Diálogo de Impressão, 2 = Unidade de documento |
| Resultado | Integer | ← | Valor da propriedade |
@@ -52,6 +52,6 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 773 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
index 6b290a38441259..e69df2a75564f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-drop-column.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-drop-column
displayed_sidebar: docs
---
-**QR Get drop column** ( *area* ) : Integer
+**QR Get drop column** ( *area* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Resultado | Integer | ← | Espaço de soltar |
@@ -32,7 +32,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 747 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
index 37258962e7e161..ac060960d482ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-header-and-footer.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-header-and-footer
displayed_sidebar: docs
---
-**QR GET HEADER AND FOOTER** ( *area* ; *seletor* ; *tituloEsq* ; *tituloCentro* ; *tituloDir* ; *alto* {; *imagem* {; *alinImag*}} )
+**QR GET HEADER AND FOOTER** ( *area* : Integer ; *seletor* : Integer ; *tituloEsq* : Text ; *tituloCentro* : Text ; *tituloDir* : Text ; *alto* : Integer {; *imagem* : Picture {; *alinImag* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| seletor | Integer | → | 1= Cabeçalho, 2 = Rodapé |
+| area | Integer | → | Referência da área |
+| seletor | Integer | → | 1= Cabeçalho, 2 = Rodapé |
| tituloEsq | Text | ← | Título mostrado à esquerda |
| tituloCentro | Text | ← | Texto mostrado ao centro |
| tituloDir | Text | ← | Texto exibido à direita |
@@ -72,7 +72,7 @@ O código a seguir recupera o conteúdo e a altura do título do cabeçalho e os
| | |
| --- | --- |
| Número do comando | 775 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
index a38a5134cf0a2c..261177b4c50fa2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-html-template.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-html-template
displayed_sidebar: docs
---
-**QR Get HTML template** ( *area* ) : Text
+**QR Get HTML template** ( *area* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Resultado | Text | ← | Código HTML usado como modelo |
@@ -31,7 +31,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 751 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
index 15b919e0766cae..72c757288ee2d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-column.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-column
displayed_sidebar: docs
---
-**QR GET INFO COLUMN** ( *area* ; *numColuna* ; *titulo* ; *objeto* ; *ocultar* ; *tamanho* ; *valoresRepetidos* ; *formato* {; *resultVar*} )
+**QR GET INFO COLUMN** ( *area* : Integer ; *numColuna* : Integer ; *titulo* : Text ; *objeto* : Text ; *ocultar* : Integer ; *tamanho* : Integer ; *valoresRepetidos* : Integer ; *formato* : Text {; *resultVar* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
| titulo | Text | ← | Título da coluna |
| objeto | Text | ← | Objeto atribuído a coluna |
| ocultar | Integer | ← | 0=exibir, 1=ocultar |
@@ -117,7 +117,7 @@ Pode escrever:
| | |
| --- | --- |
| Número do comando | 766 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
index 5e5435a88485e1..cb87e41ed31cfd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-info-row.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-info-row
displayed_sidebar: docs
---
-**QR Get info row** ( *area* ; *linha* ) : Integer
+**QR Get info row** ( *area* : Integer ; *linha* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área criada |
-| linha | Integer | → | Designa a Linha |
+| area | Integer | → | Referência da área criada |
+| linha | Integer | → | Designa a Linha |
| Resultado | Integer | ← | 0=exibir, 1=ocultar |
@@ -44,7 +44,7 @@ Se o parâmetro *linha* é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 769 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
index 6c4c722a4aa396..63018fa823da86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-kind.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-kind
displayed_sidebar: docs
---
-**QR Get report kind** ( *area* ) : Integer
+**QR Get report kind** ( *area* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Resultado | Integer | ← | Tipo de relatório |
@@ -40,7 +40,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 755 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
index 64e72a2c114549..6b8415a5d1d0b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-report-table.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-report-table
displayed_sidebar: docs
---
-**QR Get report table** ( *area* ) : Integer
+**QR Get report table** ( *area* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Resultado | Integer | ← | Nº de tabela |
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 758 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
index a4070bcdf7a487..8ba1dd3e270164 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-selection.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-selection
displayed_sidebar: docs
---
-**QR GET SELECTION** ( *area* ; *esquerda* ; *superior* {; *direita* {; *inferior* }} )
+**QR GET SELECTION** ( *area* : Integer ; *esquerda* : Integer ; *superior* : Integer {; *direita* : Integer {; *inferior* : Integer }} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| esquerda | Integer | ← | Limite esquerdo |
| superior | Integer | ← | Limite superior |
| direita | Integer | ← | Limite direito |
@@ -44,7 +44,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 793 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
index 620cba93fe01ab..a0203e45bced24 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-sorts.md
@@ -5,11 +5,11 @@ slug: /commands/qr-get-sorts
displayed_sidebar: docs
---
-**QR GET SORTS** ( *area* ; *aColunas* ; *aOrdem* )
+**QR GET SORTS** ( *area* : Integer ; *aColunas* : Real array ; *aOrdem* : Real array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| aColunas | Real array | ← | Colunas que estão ordenadas |
| aOrdem | Real array | ← | Sentido da ordenação |
@@ -40,7 +40,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 753 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
index 007f900e494c37..56dde008956796 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-text-property.md
@@ -5,14 +5,14 @@ slug: /commands/qr-get-text-property
displayed_sidebar: docs
---
-**QR Get text property** ( *area* ; *numColuna* ; *numLinha* ; *propriedade* ) : any
+**QR Get text property** ( *area* : Integer ; *numColuna* : Integer ; *numLinha* : Integer ; *propriedade* : Integer ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
-| numLinha | Integer | → | N° da linha |
-| propriedade | Integer | → | Número da propriedade |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
+| numLinha | Integer | → | N° da linha |
+| propriedade | Integer | → | Número da propriedade |
| Function result | Inteiro longo, String | ← | Valor da propriedade selecionada |
@@ -73,7 +73,7 @@ Se o parâmetro *propriedade* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 760 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
index 328ca001b1f04a..1ad9e295b671ce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-data.md
@@ -5,13 +5,13 @@ slug: /commands/qr-get-totals-data
displayed_sidebar: docs
---
-**QR GET TOTALS DATA** ( *area* ; *numColuna* ; *numQuebra* ; *operador* ; *texto* )
+**QR GET TOTALS DATA** ( *area* : Integer ; *numColuna* : Integer ; *numQuebra* : Integer ; *operador* : Integer ; *texto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
-| numQuebra | Integer | → | Número de quebra |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
+| numQuebra | Integer | → | Número de quebra |
| operador | Integer | ← | Valor do operador para a célula |
| texto | Text | ← | Conteúdo da célula |
@@ -77,7 +77,7 @@ Se o parâmetro *numQuebra* é incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 768 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
index c219a931aa3ed2..2547fdfaf34321 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-get-totals-spacing.md
@@ -5,12 +5,12 @@ slug: /commands/qr-get-totals-spacing
displayed_sidebar: docs
---
-**QR GET TOTALS SPACING** ( *area* ; *subtotal* ; *valor* )
+**QR GET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| subtotal | Integer | → | Nº de subtotal |
+| area | Integer | → | Referência da área |
+| subtotal | Integer | → | Nº de subtotal |
| valor | Integer | ← | 0= sem espaço, 32000=insere um salto de página, >0=espaço adicionado no topo do nível de quebra, <0=incremento proporcional |
@@ -42,7 +42,7 @@ Se o parâmetro *subtotal* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
index 7273fd494986c0..595493d38aba01 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-insert-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-insert-column
displayed_sidebar: docs
---
-**QR INSERT COLUMN** ( *area* ; *numColuna* ; *objeto* )
+**QR INSERT COLUMN** ( *area* : Integer ; *numColuna* : Integer ; *objeto* : Field, Variable, Pointer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Número de Coluna |
-| objeto | Field, Variable, Pointer | → | Objeto a inserir na coluna |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Número de Coluna |
+| objeto | Field, Variable, Pointer | → | Objeto a inserir na coluna |
@@ -44,7 +44,7 @@ A seguinte instrução insere (ou cria) uma primeira coluna na área MinhaArea,
| | |
| --- | --- |
| Número do comando | 748 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
index d27694c61532ba..c9f13703becfe4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-move-column.md
@@ -5,13 +5,13 @@ slug: /commands/qr-move-column
displayed_sidebar: docs
---
-**QR MOVE COLUMN** ( *area* ; *numColuna* ; *novaPosição* )
+**QR MOVE COLUMN** ( *area* : Integer ; *numColuna* : Integer ; *novaPosição* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Número de coluna |
-| novaPosição | Integer | → | Nova posição para a coluna |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Número de coluna |
+| novaPosição | Integer | → | Nova posição para a coluna |
@@ -45,6 +45,6 @@ O resultado será:
| | |
| --- | --- |
| Número do comando | 1325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
index 6036e7677c8e92..04d3d06875e6bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-area.md
@@ -5,11 +5,11 @@ slug: /commands/qr-new-area
displayed_sidebar: docs
---
-**QR NEW AREA** ( *ptr* )
+**QR NEW AREA** ( *ptr* : Pointer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ptr | Pointer | → | Ponteiro para uma variável |
+| ptr | Pointer | → | Ponteiro para uma variável |
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1320 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
index fc741513590068..a10c592ff61992 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 735 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
index 9e5c1919e16d10..5591069564c55f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-on-command.md
@@ -5,12 +5,12 @@ slug: /commands/qr-on-command
displayed_sidebar: docs
---
-**QR ON COMMAND** ( *area* ; *nomeMetodo* )
+**QR ON COMMAND** ( *area* : Integer ; *nomeMetodo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| nomeMetodo | Text | → | Nome do método a ser chamado |
+| area | Integer | → | Referência da área |
+| nomeMetodo | Text | → | Nome do método a ser chamado |
@@ -47,7 +47,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 790 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
index d5adc3a0c95404..18f93e7e578a49 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report-to-blob.md
@@ -5,11 +5,11 @@ slug: /commands/qr-report-to-blob
displayed_sidebar: docs
---
-**QR REPORT TO BLOB** ( *area* ; *BLOB* )
+**QR REPORT TO BLOB** ( *area* : Integer ; *BLOB* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
+| area | Integer | → | Referência da área |
| Blob | Blob | ← | BLOB a hospedar o Relatório Rápido |
@@ -37,7 +37,7 @@ A seguinte instrução atribui o relatório rápido armazenado na área MinhaAre
| | |
| --- | --- |
| Número do comando | 770 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
index 754d8acdc78420..69dea1c39b8e03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-report.md
@@ -5,14 +5,14 @@ slug: /commands/qr-report
displayed_sidebar: docs
---
-**QR REPORT** ( {*tabela* ;} *documento* {; *nomeMetodo*}{; *} )
+**QR REPORT** ( {*tabela* : Table ;} *documento* : Text {; *nomeMetodo* : Text}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a utilizar para o relatório ou tabela por padrão se for omitido |
-| documento | Text | → | Documento de Relatório Rápido a carregar |
-| nomeMetodo | Text | → | Nome do mètodo a chamar |
-| * | Operador | → | Eliminação das caixas de diálogo de impressão |
+| tabela | Table | → | Tabela a utilizar para o relatório ou tabela por padrão se for omitido |
+| documento | Text | → | Documento de Relatório Rápido a carregar |
+| nomeMetodo | Text | → | Nome do mètodo a chamar |
+| * | Operador | → | Eliminação das caixas de diálogo de impressão |
@@ -140,7 +140,7 @@ O método myCallbackMeth converte o relatório quando é gerado:
| | |
| --- | --- |
| Número do comando | 197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
index bed46f737a2ed2..626d996643de85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-run.md
@@ -5,11 +5,11 @@ slug: /commands/qr-run
displayed_sidebar: docs
---
-**QR RUN** ( *area* )
+**QR RUN** ( *area* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área a executar |
+| area | Integer | → | Referência da área a executar |
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 746 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
index a00e288a2e0119..b2d091d1e7b619 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-area-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-area-property
displayed_sidebar: docs
---
-**QR SET AREA PROPERTY** ( *area* ; *propriedade* ; *valor* )
+**QR SET AREA PROPERTY** ( *area* : Integer ; *propriedade* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| propriedade | Integer | → | Elemento de interface |
-| valor | Integer | → | 1=exibir, 0=ocultar |
+| area | Integer | → | Referência da área |
+| propriedade | Integer | → | Elemento de interface |
+| valor | Integer | → | 1=exibir, 0=ocultar |
@@ -47,7 +47,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 796 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
index 13e1cacb3da997..0179444beea2ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-borders.md
@@ -5,16 +5,16 @@ slug: /commands/qr-set-borders
displayed_sidebar: docs
---
-**QR SET BORDERS** ( *area* ; *coluna* ; *linha* ; *borda* ; linha | nivel {; *cor*} )
+**QR SET BORDERS** ( *area* : Integer ; *coluna* : Integer ; *linha* : Inteiro longo ; *borda* : Integer ; linha | nivel {; *cor* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| coluna | Integer | → | Número de coluna |
-| linha | Integer | → | Nº da linha |
-| borda | Integer | → | Valor composto da borda |
-| linha | nivel | Inteiro longo | → | Largura da linha |
-| cor | Integer | → | Cor da linha |
+| area | Integer | → | Referência da área |
+| coluna | Integer | → | Número de coluna |
+| linha | Integer | → | Nº da linha |
+| borda | Integer | → | Valor composto da borda |
+| linha | nivel | Inteiro longo | → | Largura da linha |
+| cor | Integer | → | Cor da linha |
@@ -77,7 +77,7 @@ Se o parâmetro *largura* é incorreto, se gera o erro -9855.
| | |
| --- | --- |
| Número do comando | 797 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
index 3782bad224a85b..63214fc89db29c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-destination.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-destination
displayed_sidebar: docs
---
-**QR SET DESTINATION** ( *area* ; *tipo* {; *especificos*} )
+**QR SET DESTINATION** ( *area* : Integer ; *tipo* : Integer {; *especificos* : Text, Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| tipo | Integer | → | Tipo do relatório |
-| especificos | Text, Variable | → | Específicos conectados ao tipo de saída |
+| area | Integer | → | Referência da área |
+| tipo | Integer | → | Tipo do relatório |
+| especificos | Text, Variable | → | Específicos conectados ao tipo de saída |
@@ -58,7 +58,7 @@ O código a seguir define o arquivo texto Midoc.txt como tipo de destino do rela
| | |
| --- | --- |
| Número do comando | 745 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
index b54001ee4c1455..bc9b59afea6b21 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-document-property.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-document-property
displayed_sidebar: docs
---
-**QR SET DOCUMENT PROPERTY** ( *area* ; *propriedade* ; *valor* )
+**QR SET DOCUMENT PROPERTY** ( *area* : Integer ; *propriedade* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| propriedade | Integer | → | 1=Diálogo de impressão, 2=Unidade do documento |
-| valor | Integer | → | Valor da propriedade |
+| area | Integer | → | Referência da área |
+| propriedade | Integer | → | 1=Diálogo de impressão, 2=Unidade do documento |
+| valor | Integer | → | Valor da propriedade |
@@ -41,7 +41,7 @@ Se passa um valor incorreto do parâmetro propriedade, se gera o erro -9852 ou -
| | |
| --- | --- |
| Número do comando | 772 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
index c7f08640a709f2..b49f5fe7bea1c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-header-and-footer.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-header-and-footer
displayed_sidebar: docs
---
-**QR SET HEADER AND FOOTER** ( *area* ; *seletor* ; *tituloEsq* ; *tituloCentro* ; *tituloDir* ; *altura* {; *imagem* {; *alinImag*}} )
+**QR SET HEADER AND FOOTER** ( *area* : Integer ; *seletor* : Integer ; *tituloEsq* : Text ; *tituloCentro* : Text ; *tituloDir* : Text ; *altura* : Integer {; *imagem* : Picture {; *alinImag* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| seletor | Integer | → | 1= Cabeçalho, 2 = Rodapé |
-| tituloEsq | Text | → | Texto a esquerda |
-| tituloCentro | Text | → | Texto centralizado |
-| tituloDir | Text | → | Texto a direita |
-| altura | Integer | → | Altura do cabeçalho ou rodap~e |
-| imagem | Picture | → | Imagem a exibir |
-| alinImag | Integer | → | Atributo de alinhamento da imagem |
+| area | Integer | → | Referência da área |
+| seletor | Integer | → | 1= Cabeçalho, 2 = Rodapé |
+| tituloEsq | Text | → | Texto a esquerda |
+| tituloCentro | Text | → | Texto centralizado |
+| tituloDir | Text | → | Texto a direita |
+| altura | Integer | → | Altura do cabeçalho ou rodap~e |
+| imagem | Picture | → | Imagem a exibir |
+| alinImag | Integer | → | Atributo de alinhamento da imagem |
@@ -61,7 +61,7 @@ A seguiete instrução coloca o título “Título do centro” no cabeçalho do
| | |
| --- | --- |
| Número do comando | 774 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
index 8465eae9e54f58..536bdabd6e329c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-html-template.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-html-template
displayed_sidebar: docs
---
-**QR SET HTML TEMPLATE** ( *area* ; *modelo* )
+**QR SET HTML TEMPLATE** ( *area* : Integer ; *modelo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| modelo | Text | → | Modelo HTML |
+| area | Integer | → | Referência da área |
+| modelo | Text | → | Modelo HTML |
@@ -79,7 +79,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 750 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
index edf846974bb8ab..5e7a2ffc479930 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-column.md
@@ -5,18 +5,18 @@ slug: /commands/qr-set-info-column
displayed_sidebar: docs
---
-**QR SET INFO COLUMN** ( *area* ; *numColuna* ; *titulo* ; *objeto* ; *ocultar* ; *tamanho* ; *valoresRepetidos* ; *formato* )
+**QR SET INFO COLUMN** ( *area* : Integer ; *numColuna* : Integer ; *titulo* : Text ; *objeto* : Field, Variable ; *ocultar* : Integer ; *tamanho* : Integer ; *valoresRepetidos* : Integer ; *formato* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
-| titulo | Text | → | Título da coluna |
-| objeto | Field, Variable | → | Objeto atribuido a coluna |
-| ocultar | Integer | → | 0=exibir, 1=ocultar |
-| tamanho | Integer | → | Tamanho da coluna |
-| valoresRepetidos | Integer | → | 0=não repetido, 1= repetido |
-| formato | Text | → | Formatação dos dados |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
+| titulo | Text | → | Título da coluna |
+| objeto | Field, Variable | → | Objeto atribuido a coluna |
+| ocultar | Integer | → | 0=exibir, 1=ocultar |
+| tamanho | Integer | → | Tamanho da coluna |
+| valoresRepetidos | Integer | → | 0=não repetido, 1= repetido |
+| formato | Text | → | Formatação dos dados |
@@ -113,7 +113,7 @@ Se o parâmetro *numColuna* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 765 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
index 3b5b887f880e55..3146c4f75dd6b6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-info-row.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-info-row
displayed_sidebar: docs
---
-**QR SET INFO ROW** ( *area* ; *linha* ; *ocultar* )
+**QR SET INFO ROW** ( *area* : Integer ; *linha* : Integer ; *ocultar* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área criada |
-| linha | Integer | → | Designa a Linha |
-| ocultar | Integer | → | 0=exibir, 1=ocultar |
+| area | Integer | → | Referência da área criada |
+| linha | Integer | → | Designa a Linha |
+| ocultar | Integer | → | 0=exibir, 1=ocultar |
@@ -55,7 +55,7 @@ A instrução a seguir oculta o conteúdo da linha detalhe:
| | |
| --- | --- |
| Número do comando | 763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
index 7b581dfa1b11c7..3b7ddaddbf0755 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-kind.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-kind
displayed_sidebar: docs
---
-**QR SET REPORT KIND** ( *area* ; *tipo* )
+**QR SET REPORT KIND** ( *area* : Integer ; *tipo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| tipo | Integer | → | Tipo do relatório |
+| area | Integer | → | Referência da área |
+| tipo | Integer | → | Tipo do relatório |
@@ -44,7 +44,7 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 738 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
index b461c065c18dc8..e939faee331153 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-report-table.md
@@ -5,12 +5,12 @@ slug: /commands/qr-set-report-table
displayed_sidebar: docs
---
-**QR SET REPORT TABLE** ( *area* ; *tabela* )
+**QR SET REPORT TABLE** ( *area* : Integer ; *tabela* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| tabela | Integer | → | Número de tabela |
+| area | Integer | → | Referência da área |
+| tabela | Integer | → | Número de tabela |
@@ -33,7 +33,7 @@ Se o parâmetro *tabela* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 757 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
index 7e3d0e91f0d167..e89c12864a83fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-selection.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-selection
displayed_sidebar: docs
---
-**QR SET SELECTION** ( *area* ; *esquerda* ; *superior* {; *direita* {; *inferior* }} )
+**QR SET SELECTION** ( *area* : Integer ; *esquerda* : Integer ; *superior* : Integer {; *direita* : Integer {; *inferior* : Integer }} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| esquerda | Integer | → | Borda esquerda |
-| superior | Integer | → | margem superiro |
-| direita | Integer | → | limite direita |
-| inferior | Integer | → | limite inferior |
+| area | Integer | → | Referência da área |
+| esquerda | Integer | → | Borda esquerda |
+| superior | Integer | → | margem superiro |
+| direita | Integer | → | limite direita |
+| inferior | Integer | → | limite inferior |
@@ -41,7 +41,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 794 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
index ba08f0b983f8c1..f0945e1e747725 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-sorts.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-sorts
displayed_sidebar: docs
---
-**QR SET SORTS** ( *area* ; *aColunas* {; *aOrdem*} )
+**QR SET SORTS** ( *area* : Integer ; *aColunas* : Real array {; *aOrdem* : Real array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| aColunas | Real array | → | Colunas |
-| aOrdem | Real array | → | Ordenar |
+| area | Integer | → | Referência da área |
+| aColunas | Real array | → | Colunas |
+| aOrdem | Real array | → | Ordenar |
@@ -53,7 +53,7 @@ Se passa um número de área *inválido*, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 752 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
index 1a129716bec3dc..a22b9d4ac3b456 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-text-property.md
@@ -5,15 +5,15 @@ slug: /commands/qr-set-text-property
displayed_sidebar: docs
---
-**QR SET TEXT PROPERTY** ( *area* ; *numColuna* ; *numLinha* ; *propriedade* ; *valor* )
+**QR SET TEXT PROPERTY** ( *area* : Integer ; *numColuna* : Integer ; *numLinha* : Integer ; *propriedade* : Integer ; *valor* : Integer, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
-| numLinha | Integer | → | N° da linha |
-| propriedade | Integer | → | Valor do operador para a célula |
-| valor | Integer, Text | → | Valor para a propriedade selecionada |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
+| numLinha | Integer | → | N° da linha |
+| propriedade | Integer | → | Valor do operador para a célula |
+| valor | Integer, Text | → | Valor para a propriedade selecionada |
@@ -90,7 +90,7 @@ Este método define vários atributos para o título da primeira coluna:
| | |
| --- | --- |
| Número do comando | 759 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
index 5f3dfee1870b0d..cfeb27fc97032a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-data.md
@@ -5,14 +5,14 @@ slug: /commands/qr-set-totals-data
displayed_sidebar: docs
---
-**QR SET TOTALS DATA** ( *area* ; *numColuna* ; *numQuebra* ; operador | valor )
+**QR SET TOTALS DATA** ( *area* : Integer ; *numColuna* : Integer ; *numQuebra* : Integer ; operador | valor )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| numColuna | Integer | → | Nº da coluna |
-| numQuebra | Integer | → | Número de quebra |
-| operador | valor | Inteiro longo, String | → | Operador para a célula ou conteúdo da célula |
+| area | Integer | → | Referência da área |
+| numColuna | Integer | → | Nº da coluna |
+| numQuebra | Integer | → | Número de quebra |
+| operador | valor | Inteiro longo, String | → | Operador para a célula ou conteúdo da célula |
@@ -104,7 +104,7 @@ Se o parâmetro *numQuebra* for incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 767 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
index b3331e2e63e5c0..283073fb1a20d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/qr-set-totals-spacing.md
@@ -5,13 +5,13 @@ slug: /commands/qr-set-totals-spacing
displayed_sidebar: docs
---
-**QR SET TOTALS SPACING** ( *area* ; *subtotal* ; *valor* )
+**QR SET TOTALS SPACING** ( *area* : Integer ; *subtotal* : Integer ; *valor* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| area | Integer | → | Referência da área |
-| subtotal | Integer | → | Nº de subtotal |
-| valor | Integer | → | 0=sem espaço, 32000=insere um salta de página, >0=espaço adicionado ao topo da quebra de nível, <0=incremento proporcional |
+| area | Integer | → | Referência da área |
+| subtotal | Integer | → | Nº de subtotal |
+| valor | Integer | → | 0=sem espaço, 32000=insere um salta de página, >0=espaço adicionado ao topo da quebra de nível, <0=incremento proporcional |
@@ -44,7 +44,7 @@ Se o parâmetro *subtotal*, é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
index 24cea723b6e105..debe23c294f6c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-by-attribute
displayed_sidebar: docs
---
-**QUERY BY ATTRIBUTE** ( {*umaTabela*}{;}{*opConj* ;} *campoObjeto* ; *caminhoAtributo* ; *opPesq* ; *valor* {; *} )
+**QUERY BY ATTRIBUTE** ( {*umaTabela*}{;}{*opConj* : Operator ;} *campoObjeto* : Field ; *caminhoAtributo* : Text ; *opPesq* : Text, Operator ; *valor* : Text, Real, Date, Time {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umaTable | Table | → | Tabela para a qual retornar uma seleção de registros, ou tabela padrão se for omitido |
-| opConj | * | → | Operador de Conjunção para juntar múltiplas pesquisas |
-| campoObjeto | Field | → | Campo Objeto para atributos de pesquisa |
-| caminhoAtributo | Text | → | Nome ou caminho do atributo |
-| opPesq | Text, * | → | Operador pesquisa (comparador) |
-| valor | Text, Number, Date, Time | → | Valor a comparar |
-| * | Operador | → | Continua a flag de pesquisa |
+| umaTable | Table | → | Tabela para a qual retornar uma seleção de registros, ou tabela padrão se for omitido |
+| opConj | Operator | → | Operador de Conjunção para juntar múltiplas pesquisas |
+| campoObjeto | Field | → | Campo Objeto para atributos de pesquisa |
+| caminhoAtributo | Text | → | Nome ou caminho do atributo |
+| opPesq | Text, Operator | → | Operador pesquisa (comparador) |
+| valor | Text, Real, Date, Time | → | Valor a comparar |
+| * | Operador | → | Continua a flag de pesquisa |
@@ -412,7 +412,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 1331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
index c720b336d8dd03..8c92451c49354e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-example.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-example
displayed_sidebar: docs
---
-**QUERY BY EXAMPLE** ( {*tabela*}{;}{*} )
+**QUERY BY EXAMPLE** ( {*tabela* : Table}{;}{*} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai retornar a seleção de registros, ou a tabela Padrão, se omitido |
-| * | Operador | → | Se passado, a barra de rolagem não será exibida |
+| tabela | Table | → | Tabela para a qual vai retornar a seleção de registros, ou a tabela Padrão, se omitido |
+| * | Operador | → | Se passado, a barra de rolagem não será exibida |
@@ -46,7 +46,7 @@ Se o usuário clicar no botão Aceitar, ou pressionar a tecla Enter, a variável
| | |
| --- | --- |
| Número do comando | 292 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
index 1f24520b19c10d..7d4906ea66494e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-formula
displayed_sidebar: docs
---
-**QUERY BY FORMULA** ( *tabela* {; *formula*} )
+**QUERY BY FORMULA** ( *tabela* : Table {; *formula* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual retornar a seleção de registros |
-| formula | Boolean | → | Fórmula de pesquisa |
+| tabela | Table | → | Tabela para a qual retornar a seleção de registros |
+| formula | Boolean | → | Fórmula de pesquisa |
@@ -86,7 +86,7 @@ Este exemplo utiliza uma união para buscar todas as linhas de faturas de client
| | |
| --- | --- |
| Número do comando | 48 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
index 3a53446e0a1e87..7df4b59e082b54 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-by-sql.md
@@ -5,12 +5,12 @@ slug: /commands/query-by-sql
displayed_sidebar: docs
---
-**QUERY BY SQL** ( {*tabela* ;} *sqlFormula* )
+**QUERY BY SQL** ( {*tabela* : Table ;} *sqlFormula* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual se devolve a seleção de registros ou tabela padrão se o parâmetro for omitido |
-| sqlFormula | Text | → | Fórmula válida de pesquisa SQL representando a cláusula WHERE da pesquisa SELECT |
+| tabela | Table | → | Tabela para a qual se devolve a seleção de registros ou tabela padrão se o parâmetro for omitido |
+| sqlFormula | Text | → | Fórmula válida de pesquisa SQL representando a cláusula WHERE da pesquisa SELECT |
@@ -169,7 +169,7 @@ Se o formato da condição de pesquisa for correto, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 942 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
index 7c32338e544eb5..88d1e7f80e1ea5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-attribute.md
@@ -5,17 +5,17 @@ slug: /commands/query-selection-by-attribute
displayed_sidebar: docs
---
-**QUERY SELECTION BY ATTRIBUTE** ( {*umaTabela*}{;}{*operadorConj* ;} *campoObj* ; *rotaAtributo* ; *operadorPesq* ; *valor* {; *} )
+**QUERY SELECTION BY ATTRIBUTE** ( {*umaTabela*}{;}{*operadorConj* : Operator ;} *campoObj* : Field ; *rotaAtributo* : Text ; *operadorPesq* : Text, Operator ; *valor* : Text, Real, Date, Time {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umaTable | Table | → | Tabela para a quel vai retornar uma seleção de registros, ou tabela Padrão se omitido |
-| operadorConj | * | → | Operador Conjunção para usar para unir múltiplas pesquisas (se alguma) |
-| campoObj | Field | → | Campo objeto para atributos de pesquisa |
-| rotaAtributo | Text | → | Nome ou rota do atributo |
-| operadorPesq | *, Text | → | Operador Pesquisa (comparador) |
-| valor | Text, Number, Date, Time | → | Valor a comparar |
-| * | Operador | → | Continua flag de pesquisa |
+| umaTable | Table | → | Tabela para a quel vai retornar uma seleção de registros, ou tabela Padrão se omitido |
+| operadorConj | Operator | → | Operador Conjunção para usar para unir múltiplas pesquisas (se alguma) |
+| campoObj | Field | → | Campo objeto para atributos de pesquisa |
+| rotaAtributo | Text | → | Nome ou rota do atributo |
+| operadorPesq | Text, Operator | → | Operador Pesquisa (comparador) |
+| valor | Text, Real, Date, Time | → | Valor a comparar |
+| * | Operador | → | Continua flag de pesquisa |
@@ -51,7 +51,7 @@ Se quiser encontrar pessoas com uma idade entre 20 e 30 nos registros que foram
| | |
| --- | --- |
| Número do comando | 1424 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
index 8b956aa2dab6a7..d5e10df1e38aa4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-by-formula.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-by-formula
displayed_sidebar: docs
---
-**QUERY SELECTION BY FORMULA** ( *tabela* {; *formula*} )
+**QUERY SELECTION BY FORMULA** ( *tabela* : Table {; *formula* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual retornar a seleção de registros |
-| formula | Boolean | → | Fórmula de pesquisa |
+| tabela | Table | → | Tabela para a qual retornar a seleção de registros |
+| formula | Boolean | → | Fórmula de pesquisa |
@@ -36,7 +36,7 @@ Para maior informação, consulte a descrição do comando [QUERY BY FORMULA](qu
| | |
| --- | --- |
| Número do comando | 207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
index e9d682d5fae309..164062ee0b1136 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-selection-with-array
displayed_sidebar: docs
---
-**QUERY SELECTION WITH ARRAY** ( *campoAlvo* ; *array* )
+**QUERY SELECTION WITH ARRAY** ( *campoAlvo* : Field ; *array* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoAlvo | Field | → | Campo usado para comparar os valores |
-| array | Array | → | Array de valores pesquisados |
+| campoAlvo | Field | → | Campo usado para comparar os valores |
+| array | Array | → | Array de valores pesquisados |
@@ -34,7 +34,7 @@ Para maior informação, consulte a descrição do comando [QUERY WITH ARRAY](qu
| | |
| --- | --- |
| Número do comando | 1050 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
index 60cfb6633f5237..6d43edc2576d76 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-selection.md
@@ -5,13 +5,13 @@ slug: /commands/query-selection
displayed_sidebar: docs
---
-**QUERY SELECTION** ( {*tabela* }{;}{ *criterioPesquisa* {; *}} )
+**QUERY SELECTION** ( {*tabela* : Table }{;}{ *criterioPesquisa* : Expression {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual devolver uma seleção de registros ou Tabela por padrão, se for omitido |
-| criterioPesquisa | Expression | → | Critério de Pesquisa |
-| * | Operador | → | Flag para continuar a pesquisa |
+| tabela | Table | → | Tabela para a qual devolver uma seleção de registros ou Tabela por padrão, se for omitido |
+| criterioPesquisa | Expression | → | Critério de Pesquisa |
+| * | Operador | → | Flag para continuar a pesquisa |
@@ -49,7 +49,7 @@ Isso faz com que encontre todas as empresas localizadas em Nova Iorque, com ativ
| | |
| --- | --- |
| Número do comando | 341 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
index 6a4ea8de46657e..45a241420f80a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query-with-array.md
@@ -5,12 +5,12 @@ slug: /commands/query-with-array
displayed_sidebar: docs
---
-**QUERY WITH ARRAY** ( *campoAlvo* ; *array* )
+**QUERY WITH ARRAY** ( *campoAlvo* : Field ; *array* : Array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campoAlvo | Field | → | Campo usado para comparar os valores |
-| array | Array | → | Array de valores pesquisados |
+| campoAlvo | Field | → | Campo usado para comparar os valores |
+| array | Array | → | Array de valores pesquisados |
@@ -45,7 +45,7 @@ O exemplo a seguir lhe permite recuperar os registros de clientes franceses e am
| | |
| --- | --- |
| Número do comando | 644 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md
index f83c52cda5a8d8..6383b314abdcff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/query.md
@@ -5,13 +5,13 @@ slug: /commands/query
displayed_sidebar: docs
---
-**QUERY** ( {*tabela* }{;}{ *criterioPesquisa* {; *}} )
+**QUERY** ( {*tabela* : Table }{;}{ *criterioPesquisa* : Expression {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual devolver uma seleção de registros ou Tabela por padrão, se for omitido |
-| criterioPesquisa | Expression | → | Critério de pesquisa |
-| * | Operador | → | Continuar a execução da pesquisa |
+| tabela | Table | → | Tabela para a qual devolver uma seleção de registros ou Tabela por padrão, se for omitido |
+| criterioPesquisa | Expression | → | Critério de pesquisa |
+| * | Operador | → | Continuar a execução da pesquisa |
@@ -316,7 +316,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
index 1b407bf746795b..525ea6d02330d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/quit-4d.md
@@ -5,11 +5,11 @@ slug: /commands/quit-4d
displayed_sidebar: docs
---
-**QUIT 4D** {( *tempo* )}
+**QUIT 4D** ({ *tempo* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tempo | Integer | → | Tempo (em seg) antes de sair do servidor |
+| tempo | Integer | → | Tempo (em seg) antes de sair do servidor |
@@ -72,6 +72,6 @@ O método de projeto listado aqui está associado com o item Quit ou Exit do men
| | |
| --- | --- |
| Número do comando | 291 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md
index 5a941fa13ccc26..14790443bfd7c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/random.md
@@ -39,6 +39,6 @@ O exemplo a seguir atribui um valor aleatório entre 10 e 30 à variável *vlRes
| | |
| --- | --- |
| Número do comando | 100 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
index 01c82f252bb92d..232ed928a56555 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only-state.md
@@ -5,11 +5,11 @@ slug: /commands/read-only-state
displayed_sidebar: docs
---
-**Read only state** {( *tabela* )} : Boolean
+**Read only state** ( *tabela* : Table ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai testar o estado apenas-leitura, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela na qual vai testar o estado apenas-leitura, ou tabela padrão, se omitido |
| Resultado | Boolean | ← | Acesso à tabela é apenas-leitura (TRUE) ou Acesso a tabela é leitura-escrita (FALSE) |
@@ -44,6 +44,6 @@ O seguinte exemplo testa o estado da tabela \[Faturas\]. Se o estado da tabela \
| | |
| --- | --- |
| Número do comando | 362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
index 4108625dfef6b1..89d8e017f0b4fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-only.md
@@ -5,11 +5,11 @@ slug: /commands/read-only
displayed_sidebar: docs
---
-**READ ONLY** {( aTabela | * )}
+**READ ONLY** ({ aTabela | * })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTabela | * | Tabela, Operador | → | Tabela para qual estabelecer o estado apenas leitura, ou * para todas as tabelas, ou tabela padrão, se for omitido |
+| aTabela | * | Tabela, Operador | → | Tabela para qual estabelecer o estado apenas leitura, ou * para todas as tabelas, ou tabela padrão, se for omitido |
@@ -32,6 +32,6 @@ Utilize READ ONLY quando não necessite modificar os registros.
| | |
| --- | --- |
| Número do comando | 145 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
index 818a61bb6a937f..56275d4b2a859a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/read-picture-file
displayed_sidebar: docs
---
-**READ PICTURE FILE** ( *nomeArquivo* ; *imagem* {; *} )
+**READ PICTURE FILE** ( *nomeArquivo* : Text ; *imagem* : Picture {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Nome ou rota completa do arquivo a ser lido, ou string vazio |
+| nomeArquivo | Text | → | Nome ou rota completa do arquivo a ser lido, ou string vazio |
| imagem | Picture | ← | Campo ou variável que recebe a imagem |
-| * | Operador | → | Se passado = aceitar qualquer tipo de arquivo |
+| * | Operador | → | Se passado = aceitar qualquer tipo de arquivo |
@@ -47,7 +47,7 @@ Se a execução do comando é correta, a variável sistema Document contém a ro
| | |
| --- | --- |
| Número do comando | 678 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
index ed68b5e30c1121..6c6d089c31e5ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/read-write.md
@@ -5,11 +5,11 @@ slug: /commands/read-write
displayed_sidebar: docs
---
-**READ WRITE** {( tabela | * )}
+**READ WRITE** ({ tabela | * })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | * | Tabela, Operador | → | Tabela para a qual vai estabelecer o estado apenas leitura, ou * para todas as tabelas, ou tabela padrão, se omitido |
+| tabela | * | Tabela, Operador | → | Tabela para a qual vai estabelecer o estado apenas leitura, ou * para todas as tabelas, ou tabela padrão, se omitido |
@@ -36,6 +36,6 @@ Utilize READ WRITE quando tenha que modificar um registro e guardar as mudanças
| | |
| --- | --- |
| Número do comando | 146 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
index 270fe59d69dd87..40d17f474e721f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/real-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/real-to-blob
displayed_sidebar: docs
---
-**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; offset } )
**REAL TO BLOB** ( *real* ; *blob* ; *realFormat* {; *} )
+**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; offset } )
**REAL TO BLOB** ( *real* : Real ; *blob* : Blob ; *realFormat* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| real | Real | → | Valor de tipo real a escrever no BLOB |
-| Blob | Blob | → | BLOB a receber o valor Real |
-| realFormat | Integer | → | 0 Formato real nativo 1 Formato real estendido 2 Formato real doble Macintosh 3 Formato real duplo Windows |
-| offset | * | Variável, Operador |↔ | Offset no BLOB (expressado em bytes) ou * para adicionar o valor |
-|||| Novo offset depois da escritura se * for omitido |
+| real | Real | → | Valor de tipo real a escrever no BLOB |
+| Blob | Blob | → | BLOB a receber o valor Real |
+| realFormat | Integer | → | 0 Formato real nativo 1 Formato real estendido 2 Formato real doble Macintosh 3 Formato real duplo Windows |
+| offset | * | Variável, Operador | ↔ | Offset no BLOB (expressado em bytes) ou * para adicionar o valor |
+| | | | Novo offset depois da escritura se * for omitido |
@@ -138,6 +138,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 552 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
index 58f60de10a56c9..f9d0161840a0cc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-buffer.md
@@ -5,7 +5,7 @@ slug: /commands/receive-buffer
displayed_sidebar: docs
---
-**RECEIVE BUFFER** ( *receiveVar* )
+**RECEIVE BUFFER** ( *receiveVar* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -70,7 +70,7 @@ Note que o acesso à variável interprocesso *vtBuffer* deve ser protegida por u
| | |
| --- | --- |
| Número do comando | 172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
index 41ca4c67ce14e5..f8ff166d64f01f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-packet.md
@@ -5,13 +5,13 @@ slug: /commands/receive-packet
displayed_sidebar: docs
---
-**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *stopChar* )
**RECEIVE PACKET** ( {*docRef* ;} *receiveVar* ; *numBytes* )
+**RECEIVE PACKET** ( {*docRef* : Time ;} *receiveVar* : Text, Blob ; *stopChar* : String, Inteiro longo )
**RECEIVE PACKET** ( {*docRef* : Time ;} *receiveVar* : Text, Blob ; *numBytes* : String, Inteiro longo )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência do documento, o canal atual (porta serial ou documento) |
+| docRef | Time | → | Número de referência do documento, o canal atual (porta serial ou documento) |
| receiveVar | Text, Blob | ← | Variável a receber os dados |
-| stopChar | numBytes | String, Inteiro longo | → | Caractere(s) no qual parar a recepção, ou Número de bytes a receber |
+| stopChar | numBytes | String, Inteiro longo | → | Caractere(s) no qual parar a recepção, ou Número de bytes a receber |
@@ -121,7 +121,7 @@ Depois de um chamado a RECEIVE PACKET, a variável sistema OK recebe o valor 1 s
| | |
| --- | --- |
| Número do comando | 104 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
index 55cfed8d211116..4e7324b0511665 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-record.md
@@ -5,11 +5,11 @@ slug: /commands/receive-record
displayed_sidebar: docs
---
-**RECEIVE RECORD** {( *tabela* )}
+**RECEIVE RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual receber o registro, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela na qual receber o registro, ou tabela padrão, se omitido |
@@ -157,7 +157,7 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK
| | |
| --- | --- |
| Número do comando | 79 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
index 62cfe7e1450e10..62310e564ddeb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/receive-variable.md
@@ -5,7 +5,7 @@ slug: /commands/receive-variable
displayed_sidebar: docs
---
-**RECEIVE VARIABLE** ( *variavel* )
+**RECEIVE VARIABLE** ( *variavel* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -47,7 +47,7 @@ A variável de sistema OK é definida como 1 se a variável for recebida. Caso c
| | |
| --- | --- |
| Número do comando | 81 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
index 080cf9065e7503..38bcbe70b58880 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/record-number.md
@@ -5,11 +5,11 @@ slug: /commands/record-number
displayed_sidebar: docs
---
-**Record number** {( *tabela* )} : Integer
+**Record number** ( *tabela* : Table ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para qual devolver o número do registro atual, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para qual devolver o número do registro atual, ou tabela padrão, se omitido |
| Resultado de função | Integer | ← | Nº de registro atual |
@@ -49,6 +49,6 @@ O exemplo a seguir salva o número do registro atual e depois procura na tabela
| | |
| --- | --- |
| Número do comando | 243 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
index 12eaa3ec46e3c3..3c1e16c0ba09b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-selection.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-selection
displayed_sidebar: docs
---
-**Records in selection** {( *tabela* )} : Integer
+**Records in selection** ( *tabela* : Table ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual retornar número dos registros selecionados, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual retornar número dos registros selecionados, ou tabela padrão, se omitido |
| Resultado | Integer | ← | Registros em seleção da tabela |
@@ -41,6 +41,6 @@ End for
| | |
| --- | --- |
| Número do comando | 76 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
index 825df14cb703d3..bb2c3a49e0d119 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-set.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-set
displayed_sidebar: docs
---
-**Records in set** ( *conjunto* ) : Integer
+**Records in set** ( *conjunto* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nome do conjunto a testar |
+| conjunto | Text | → | Nome do conjunto a testar |
| Resultado Função | Integer | ← | Número de registros em conjunto |
@@ -39,6 +39,6 @@ O seguinte exemplo mostra um alerta indicando a porcentagem de clientes classifi
| | |
| --- | --- |
| Número do comando | 195 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
index 68a89e92d7fe6b..878b88ca41c89d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/records-in-table.md
@@ -5,11 +5,11 @@ slug: /commands/records-in-table
displayed_sidebar: docs
---
-**Records in table** {( *tabela* )} : Integer
+**Records in table** ( *tabela* : Table ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai devolver o número de registros, ou tabela padrão, se omitida |
+| tabela | Table | → | Tabela para a qual vai devolver o número de registros, ou tabela padrão, se omitida |
| Resultado | Integer | ← | Número total de registros na tabela |
@@ -35,6 +35,6 @@ O exemplo a seguir mostra um alerta que indica o número de registros na tabela:
| | |
| --- | --- |
| Número do comando | 83 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
index 94513ee91f071d..36539a010a5392 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw-window.md
@@ -5,11 +5,11 @@ slug: /commands/redraw-window
displayed_sidebar: docs
---
-**REDRAW WINDOW** {( *janela* )}
+**REDRAW WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
@@ -30,6 +30,6 @@ Se omitir o parâmetro *janela*, REDRAW WINDOW aplica à janela do primeiro plan
| | |
| --- | --- |
| Número do comando | 456 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
index 9b3dbc445e47ae..97461c2c5ef8bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/redraw.md
@@ -5,11 +5,11 @@ slug: /commands/redraw
displayed_sidebar: docs
---
-**REDRAW** ( *objeto* )
+**REDRAW** ( *objeto* : any )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | any | → | Tabela para a qual vai redesenhar o sub-formulário; ou Campo para o qual redesenhar a área; ou Variável para a qual redesenhar a área; ou List Box a ser atualizada; ou Formulário de tabela a redesenhar ou um navegador Web. |
+| objeto | any | → | Tabela para a qual vai redesenhar o sub-formulário; ou Campo para o qual redesenhar a área; ou Variável para a qual redesenhar a área; ou List Box a ser atualizada; ou Formulário de tabela a redesenhar ou um navegador Web. |
@@ -28,6 +28,6 @@ No contexto dos list boxes em modo seleção,quando a instrução REDRAW for apl
| | |
| --- | --- |
| Número do comando | 174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
index 63606e25b6087f..87dcabb16741cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-restore-window.md
@@ -5,11 +5,11 @@ slug: /commands/reduce-restore-window
displayed_sidebar: docs
---
-**REDUCE RESTORE WINDOW** ( *janela* )
+**REDUCE RESTORE WINDOW** ( *janela* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência de janela |
+| janela | Integer | → | Número de referência de janela |
@@ -35,6 +35,6 @@ O comando muda o estado da janela:
| | |
| --- | --- |
| Número do comando | 1829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
index 755a25adf4e559..b0c14f1834bc9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reduce-selection.md
@@ -5,12 +5,12 @@ slug: /commands/reduce-selection
displayed_sidebar: docs
---
-**REDUCE SELECTION** ( {*tabela* ;} *numero* )
+**REDUCE SELECTION** ( {*tabela* : Table ;} *numero* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai reduzir a seleção, ou tabela padrão, se omitido |
-| numero | Integer | → | Número de registros para manter selecionados |
+| tabela | Table | → | Tabela para a qual vai reduzir a seleção, ou tabela padrão, se omitido |
+| numero | Integer | → | Número de registros para manter selecionados |
@@ -61,7 +61,7 @@ O seguinte exemplo pesquisa as estatísticas corretas para uma concorrência mun
| | |
| --- | --- |
| Número do comando | 351 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
index 941de89ab89b1c..15a42802f57c28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Se quiser atualizar sua licença e receber uma mensagem quando se completar:
| | |
| --- | --- |
| Número do comando | 1336 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
index 70642eb8af46d1..8edf2a9fbfa6f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/regenerate-missing-table.md
@@ -5,11 +5,11 @@ slug: /commands/regenerate-missing-table
displayed_sidebar: docs
---
-**REGENERATE MISSING TABLE** ( *nomeTabela* )
+**REGENERATE MISSING TABLE** ( *nomeTabela* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeTabela | Text | → | Nome de tabela não encontrada a regenerar |
+| nomeTabela | Text | → | Nome de tabela não encontrada a regenerar |
@@ -65,6 +65,6 @@ Este método regenera todas as tabelas não encontradas eventualmente presentes
| | |
| --- | --- |
| Número do comando | 1126 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
index 8448ddb53963a4..d54fd14399b000 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-client.md
@@ -5,13 +5,13 @@ slug: /commands/register-client
displayed_sidebar: docs
---
-**REGISTER CLIENT** ( *nomeCliente* {; *periodo*}{; *} )
+**REGISTER CLIENT** ( *nomeCliente* : Text {; *periodo* : Integer}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeCliente | Text | → | Nome da sessão 4D Client |
-| periodo | Integer | → | ***Ignorado a partir da versão 11.3*** |
-| * | Operador | → | Processo local |
+| nomeCliente | Text | → | Nome da sessão 4D Client |
+| periodo | Integer | → | ***Ignorado a partir da versão 11.3*** |
+| * | Operador | → | Processo local |
@@ -118,7 +118,7 @@ Se um cliente 4D está registrado corretamente, a variável do sistema OK é igu
| | |
| --- | --- |
| Número do comando | 648 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
index c4aca58bfed99d..766df85bde56bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/register-data-key.md
@@ -5,11 +5,11 @@ slug: /commands/register-data-key
displayed_sidebar: docs
---
-**Register data key** ( *curPassPhrase* ) : Boolean
**Register data key** ( *curDataKey* ) : Boolean
+**Register data key** ( *curPassPhrase* : Texto, Objeto ) : Boolean
**Register data key** ( *curDataKey* : Texto, Objeto ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| curPassPhrase | curDataKey | Texto, Objeto | → | Frase passe atual (texto) ou chave de criptografia de dados atual (objeto) |
+| curPassPhrase | curDataKey | Texto, Objeto | → | Frase passe atual (texto) ou chave de criptografia de dados atual (objeto) |
| Resultado | Boolean | ← | True se a chave de criptografia tiver sido adicionada com sucesso ao chaveiro 4D, False se já estiver no chaveiro. |
@@ -54,6 +54,6 @@ No primeiro parâmetro, passe *curPassPhrase* ou *curDataKey* que define a chave
| | |
| --- | --- |
| Número do comando | 1638 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
index ede7d9c51d896a..7a8623a09b26ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject-new-remote-connections.md
@@ -5,11 +5,11 @@ slug: /commands/reject-new-remote-connections
displayed_sidebar: docs
---
-**REJECT NEW REMOTE CONNECTIONS** ( *rejeitarStatus* )
+**REJECT NEW REMOTE CONNECTIONS** ( *rejeitarStatus* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rejeitarStatus | Boolean | → | Verdadeiro se novas conexões forem rejeitadas, senão false |
+| rejeitarStatus | Boolean | → | Verdadeiro se novas conexões forem rejeitadas, senão false |
@@ -45,6 +45,6 @@ Se quiser rejeitar ou aceitar as novas conexões de clientes:
| | |
| --- | --- |
| Número do comando | 1635 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
index 0663293cd90b7d..22f142009661a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reject.md
@@ -5,11 +5,11 @@ slug: /commands/reject
displayed_sidebar: docs
---
-**REJECT** {( *campo* )}
+**REJECT** ({ *campo* : Field })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo a rejeitar |
+| campo | Field | → | Campo a rejeitar |
@@ -67,6 +67,6 @@ O seguinte exemplo é parte de um método de objeto para um campo *\[Empregados\
| | |
| --- | --- |
| Número do comando | 38 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
index 9edc759de17f65..1ead4b98b4b04b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many-selection.md
@@ -5,11 +5,11 @@ slug: /commands/relate-many-selection
displayed_sidebar: docs
---
-**RELATE MANY SELECTION** ( *campo* )
+**RELATE MANY SELECTION** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo da tabela Muitos (onde a relação começa) |
+| campo | Field | → | Campo da tabela Muitos (onde a relação começa) |
@@ -41,7 +41,7 @@ Este exemplo seleciona todas as faturas de clientes com crédito superior ou igu
| | |
| --- | --- |
| Número do comando | 340 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
index cf9cbab1ccc7e8..bc2fe720aeda6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-many.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela1 | campo1 | Tabela, Campo | → | Tabela para estabelecer todas as relações Um a Muitos, ou campo UM |
+| tabela1 | campo1 | Tabela, Campo | → | Tabela para estabelecer todas as relações Um a Muitos, ou campo UM |
@@ -72,7 +72,7 @@ Note que é necessário o comando RELATE MANY, mesmo que as relações sejam aut
| | |
| --- | --- |
| Número do comando | 262 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
index 9895d0226870f7..8345a633851da5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one-selection.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one-selection
displayed_sidebar: docs
---
-**RELATE ONE SELECTION** ( *tabelaN* ; *tabela1* )
+**RELATE ONE SELECTION** ( *tabelaN* : Table ; *tabela1* : Table )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabelaN | Table | → | Nome da tabela Muitos (onde inicia a relação) |
-| tabela1 | Table | → | Nome da Tabela Um (onde termina a relação) |
+| tabelaN | Table | → | Nome da tabela Muitos (onde inicia a relação) |
+| tabela1 | Table | → | Nome da Tabela Um (onde termina a relação) |
@@ -64,7 +64,7 @@ A seguinte técnica utiliza **RELATE ONE SELECTION** para obter o mesmo resultad
| | |
| --- | --- |
| Número do comando | 349 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
index e8ad729dffef2c..7253d9ac05eef4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/relate-one.md
@@ -5,12 +5,12 @@ slug: /commands/relate-one
displayed_sidebar: docs
---
-**RELATE ONE** ( tabelasN | campoN {; *discriminante* } )
+**RELATE ONE** ( tabelasN | campoN {; *discriminante* : Field } )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabelasN | campoN | Tabela, Campo | → | Tabela para a qual estabelecer todas as relações automáticas, ou Campo com as relações manuais para tabela Um |
-| discriminante | Field | → | Campo discriminante da tabela 1 |
+| tabelasN | campoN | Tabela, Campo | → | Tabela para a qual estabelecer todas as relações automáticas, ou Campo com as relações manuais para tabela Um |
+| discriminante | Field | → | Campo discriminante da tabela 1 |
@@ -95,7 +95,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 42 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
index 0a5977ac1303d9..f68620b3857249 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/release-menu.md
@@ -5,11 +5,11 @@ slug: /commands/release-menu
displayed_sidebar: docs
---
-**RELEASE MENU** ( *menu* )
+**RELEASE MENU** ( *menu* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Text | → | Referência de menu |
+| menu | Text | → | Referência de menu |
@@ -60,6 +60,6 @@ Este exemplo mostra as diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número do comando | 978 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
index bc940569239a7c..c25823efaa0eee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-external-data.md
@@ -5,11 +5,11 @@ slug: /commands/reload-external-data
displayed_sidebar: docs
---
-**RELOAD EXTERNAL DATA** ( *oCampo* )
+**RELOAD EXTERNAL DATA** ( *oCampo* : Text, Blob, Picture, Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| oCampo | Text, Blob, Picture, Object | → | Campo para definir a localização de armazenamento |
+| oCampo | Text, Blob, Picture, Object | → | Campo para definir a localização de armazenamento |
@@ -32,6 +32,6 @@ A continuação deve recarregar os dados utilizando o comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número do comando | 1135 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
index 8c498c54845b80..cf7f22fa8464f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Quando o comando for chamado de:
| | |
| --- | --- |
| Número do comando | 1739 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
index 8858662b71c060..c78804054a79ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-from-set.md
@@ -5,12 +5,12 @@ slug: /commands/remove-from-set
displayed_sidebar: docs
---
-**REMOVE FROM SET** ( {*tabela* ;} *conjunto* )
+**REMOVE FROM SET** ( {*tabela* : Table ;} *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Registro atual da tabela, ou tabela padrão, se omitido |
-| conjunto | Text | → | Nome do conjunto ao qual para remover o registro atual |
+| tabela | Table | → | Registro atual da tabela, ou tabela padrão, se omitido |
+| conjunto | Text | → | Nome do conjunto ao qual para remover o registro atual |
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 561 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
index 531f9f2b8de18e..aafd8f6c025c98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/remove-picture-from-library.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refImag | nomImag | Inteiro longo, String | → | Número de referência ou nome da imagem da biblioteca de imagens |
+| refImag | nomImag | Inteiro longo, String | → | Número de referência ou nome da imagem da biblioteca de imagens |
@@ -55,7 +55,7 @@ O exemplo a seguir apaga da biblioteca de imagens toda imagem cujo nome comece p
| | |
| --- | --- |
| Número do comando | 567 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
index 163e593cf7ec46..4babe75c4ec930 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/replace-string.md
@@ -5,15 +5,15 @@ slug: /commands/replace-string
displayed_sidebar: docs
---
-**Replace string** ( *fonte* ; *obsoleto* ; *novo* {; *quantasVezes*}{; *} ) : Text
+**Replace string** ( *source* : Text ; *oldString* : Text ; *newString* : Text {; *howMany* : Integer}{; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Text | → | Cadeia original |
-| obsoleto | Text | → | Caracteres a substituir |
-| novo | Text | → | Cadeia que vai substituir a velha (se estiver vazia, as ocorrências são apagadas) |
-| quantasVezes | Integer | → | Quantas vezes substituir; se omitido, todas as ocorrências serão substituídas |
-| * | Operador | → | Se passado: avaliação baseada em códigos de caracteres |
+| fonte | Text | → | Cadeia original |
+| obsoleto | Text | → | Caracteres a substituir |
+| novo | Text | → | Cadeia que vai substituir a velha (se estiver vazia, as ocorrências são apagadas) |
+| quantasVezes | Integer | → | Quantas vezes substituir; se omitido, todas as ocorrências serão substituídas |
+| * | Operador | → | Se passado: avaliação baseada em códigos de caracteres |
| Resultado | Text | ← | Cadeia resultante |
@@ -78,6 +78,6 @@ O exemplo abaixo ilustra o uso do parâmetro \* no caso de uma avaliação diacr
| | |
| --- | --- |
| Número do comando | 233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md
index 9fcd615a350abe..394b5253c3dbf3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/request.md
@@ -5,14 +5,14 @@ slug: /commands/request
displayed_sidebar: docs
---
-**Request** ( *mensagem* {; *respostaPadrao* {; *okBotaoTitulo* {; *cancelarBotaoTitulo*}}} ) : Text
+**Request** ( *mensagem* : Text {; *respostaPadrao* : Text {; *okBotaoTitulo* : Text {; *cancelarBotaoTitulo* : Text}}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de alerta |
-| respostaPadrao | Text | → | Dados automáticos para a área de entrada de texto |
-| okBotaoTitulo | Text | → | Título do botão OK |
-| cancelarBotaoTitulo | Text | → | Título do botão Cancelar |
+| mensagem | Text | → | Mensagem a exibir na caixa de diálogo de alerta |
+| respostaPadrao | Text | → | Dados automáticos para a área de entrada de texto |
+| okBotaoTitulo | Text | → | Título do botão OK |
+| cancelarBotaoTitulo | Text | → | Título do botão Cancelar |
| Resultado | Text | ← | Valor introduzido pelo usuário |
@@ -84,7 +84,7 @@ Mostrará a seguinte caixa de diálogo (em Windows):
| | |
| --- | --- |
| Número do comando | 163 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
index 07bac0db162637..1387027dc7367c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resize-form-window.md
@@ -5,12 +5,12 @@ slug: /commands/resize-form-window
displayed_sidebar: docs
---
-**RESIZE FORM WINDOW** ( *largura* ; *altura* )
+**RESIZE FORM WINDOW** ( *largura* : Integer ; *altura* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| largura | Integer | → | Pixels a adicionar ou remover da largura da janela do formulário atual |
-| altura | Integer | → | Pixels a adicionar ou remover da altura da janela do formulário atual |
+| largura | Integer | → | Pixels a adicionar ou remover da largura da janela do formulário atual |
+| altura | Integer | → | Pixels a adicionar ou remover da altura da janela do formulário atual |
@@ -51,6 +51,6 @@ Depois da execução desta linha:
| | |
| --- | --- |
| Número do comando | 890 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
index c54b645f5567b3..30e07e97d3fead 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-alias.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-alias
displayed_sidebar: docs
---
-**RESOLVE ALIAS** ( *rotaAlias* ; *rotaObjetivo* )
+**RESOLVE ALIAS** ( *rotaAlias* : Text ; *rotaObjetivo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaAlias | Text | → | Nome ou rota de acesso do alias/atalho |
+| rotaAlias | Text | → | Nome ou rota de acesso do alias/atalho |
| rotaObjetivo | Text | ← | Nome ou rota de acesso do alias/atalho alvo |
@@ -37,7 +37,7 @@ Se *rotaAlias* especifica um alias/atalho, a variável sistema OK assume o valor
| | |
| --- | --- |
| Número do comando | 695 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
index e67916dc0ab84e..0edfdc00b884bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resolve-pointer.md
@@ -5,11 +5,11 @@ slug: /commands/resolve-pointer
displayed_sidebar: docs
---
-**RESOLVE POINTER** ( *umPonteiro* ; *nomeVar* ; *numTabela* ; *numCampo* )
+**RESOLVE POINTER** ( *umPonteiro* ; *nomeVar* : Text ; *numTabela* : Integer ; *numCampo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umPointer | Pointer | → | Ponteiro do qual recuperar o objeto referenciado |
+| umPointer | Pointer | → | Ponteiro do qual recuperar o objeto referenciado |
| nomeVar | Text | ← | Nome da variável referenciada ou da string vazia |
| numTabela | Integer | ← | Número de tabela referenciada ou elemento array ou 0 ou -1 |
| numCampo | Integer | ← | Número de campo referenciado ou 0 |
@@ -114,6 +114,6 @@ Este é um exemplo de ponteiro a um array 2D:
| | |
| --- | --- |
| Número do comando | 394 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
index e227b40fcb133c..fc2a3853980968 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-list.md
@@ -5,14 +5,14 @@ slug: /commands/resource-list
displayed_sidebar: docs
---
-**RESOURCE LIST** ( *resTipo* ; *resNum* ; *resNomes* {; *resArquivo*} )
+**RESOURCE LIST** ( *resTipo* : Text ; *resNum* : Integer array ; *resNomes* : Text array {; *resArquivo* : Time} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resTipo | Text | → | Tipo de resource de 4 caracteres |
+| resTipo | Text | → | Tipo de resource de 4 caracteres |
| resNum | Integer array | ← | Nº de resources para recursos desse tipo |
| resNomes | Text array | ← | Nomes de resouces para recursos desse tipo |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
@@ -75,6 +75,6 @@ O exemplo a seguir copia os recursos imagem presentes em todos os arquivos de re
| | |
| --- | --- |
| Número do comando | 500 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
index d32a3167dc27f0..8de4ff8361fa72 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resource-type-list.md
@@ -5,12 +5,12 @@ slug: /commands/resource-type-list
displayed_sidebar: docs
---
-**RESOURCE TYPE LIST** ( *resTipos* {; *resArquivo*} )
+**RESOURCE TYPE LIST** ( *resTipos* : Text array {; *resArquivo* : Time} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| resTipos | Text array | ← | Lista de tipos resources disponíveis |
-| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
+| resArquivo | Time | → | Número de referência do arquivo Resource, ou todos os arquivos de referência abertos, se omitido |
@@ -84,6 +84,6 @@ Quando este método de projeto for implementado em um banco, pode escrever:
| | |
| --- | --- |
| Número do comando | 499 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
index a009df459f57e0..b7336b4f3d06a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restart-4d.md
@@ -5,12 +5,12 @@ slug: /commands/restart-4d
displayed_sidebar: docs
---
-**RESTART 4D** {( *demora* {; *mensagem*} )}
+**RESTART 4D** ({ *demora* : Integer {; *mensagem* : Text} })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| demora | Integer | → | Tempo de atraso (segundos) antes que 4D reinicie |
-| mensagem | Text | → | Texto a mostrar nas máquinas clientes |
+| demora | Integer | → | Tempo de atraso (segundos) antes que 4D reinicie |
+| mensagem | Text | → | Texto a mostrar nas máquinas clientes |
@@ -40,7 +40,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1, cas
| | |
| --- | --- |
| Número do comando | 1292 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
index 1a25e903ba4f9a..d0253635b8e22d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore-info.md
@@ -5,11 +5,11 @@ slug: /commands/restore-info
displayed_sidebar: docs
---
-**RESTORE INFO** ( *seletor* ; *info1* ; *info2* )
+**RESTORE INFO** ( *seletor* : Integer ; *info1* : Integer, Date ; *info2* : Text, Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Tipo de informação a ser obtida |
+| seletor | Integer | → | Tipo de informação a ser obtida |
| info1 | Integer, Date | ← | Valor 1 do seletor |
| info2 | Text, Time | ← | Valor 2 do seletor |
@@ -41,6 +41,6 @@ O tipo e o conteúdo dos parâmetros *info1* e *info2* dependem do valor do *sel
| | |
| --- | --- |
| Número do comando | 889 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
index 2305ca8eb3edec..fee2a6c9dc86a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/restore.md
@@ -5,12 +5,12 @@ slug: /commands/restore
displayed_sidebar: docs
---
-**RESTORE** {( *endArquivo* {; *endPastaDestino*} )}
+**RESTORE** ({ *endArquivo* : Text {; *endPastaDestino* : Text} })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| endArquivo | Text | → | Endereço de acesso do arquivo a ser restituído |
-| endPastaDestino | Text | → | Endereço de acesso da pasta de destino |
+| endArquivo | Text | → | Endereço de acesso do arquivo a ser restituído |
+| endPastaDestino | Text | → | Endereço de acesso da pasta de destino |
@@ -39,7 +39,7 @@ Nota: em um aplicativo 4D compilado e fusionado com 4D Volume Desktop, o comando
| | |
| --- | --- |
| Número do comando | 918 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
index 01c38f04b6f8fb..cc598ea894dddd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-indexes.md
@@ -5,12 +5,12 @@ slug: /commands/resume-indexes
displayed_sidebar: docs
---
-**RESUME INDEXES** ( *aTable* {; *} )
+**RESUME INDEXES** ( *aTable* : Table {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Table for which to resume indexes |
-| * | Operador | → | If passed = asynchronous indexing |
+| aTable | Table | → | Table for which to resume indexes |
+| * | Operador | → | If passed = asynchronous indexing |
@@ -33,6 +33,6 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D.
| | |
| --- | --- |
| Número do comando | 1294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
index e912723796234e..51892328f52cbe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-process.md
@@ -5,11 +5,11 @@ slug: /commands/resume-process
displayed_sidebar: docs
---
-**RESUME PROCESS** ( *processo* )
+**RESUME PROCESS** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo |
+| processo | Integer | → | Número de processo |
@@ -31,7 +31,7 @@ Se *processo* foi atrasado anteriormente, consulte os comandos [PAUSE PROCESS](p
| | |
| --- | --- |
| Número do comando | 320 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
index b60f4f4c6c61d8..90dad76cb4665c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1386 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
index 558c8cddf256b0..de60796cb39780 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando deve ser utilizado unicamente no contexto do evento de formulário
| | |
| --- | --- |
| Número do comando | 712 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md
index 9b2a4f8bbca70a..ae766ebcb8a5a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/round.md
@@ -5,12 +5,12 @@ slug: /commands/round
displayed_sidebar: docs
---
-**Round** ( *round* ; *decimais* ) : Real
+**Round** ( *round* : Real ; *decimais* : Integer ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| round | Real | → | Número a ser arredondado |
-| decimais | Integer | → | Número de casas decimais a arredondar |
+| round | Real | → | Número a ser arredondado |
+| decimais | Integer | → | Número de casas decimais a arredondar |
| Resultado | Real | ← | Valor arredondado ao número de casas decimais especificada por decimais |
@@ -43,6 +43,6 @@ O exemplo a seguir ilustra como Round funciona com diferentes argumentos. Cada l
| | |
| --- | --- |
| Número do comando | 94 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
index f9776a5323e0a2..38401be709dee9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-list.md
@@ -5,12 +5,12 @@ slug: /commands/save-list
displayed_sidebar: docs
---
-**SAVE LIST** ( *lista* ; *nomeLista* )
+**SAVE LIST** ( *lista* : Integer ; *nomeLista* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| nomeLista | Text | → | Nome da lista como aparecerá no editor de listas do entorno Desenho |
+| lista | Integer | → | Número de referência da lista |
+| nomeLista | Text | → | Nome da lista como aparecerá no editor de listas do entorno Desenho |
@@ -31,6 +31,6 @@ Seus conteúdos são substituídos se houver uma lista com o mesmo nome.
| | |
| --- | --- |
| Número do comando | 384 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
index 129e55889ce882..1bd8c51bf4d568 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-record.md
@@ -5,11 +5,11 @@ slug: /commands/save-record
displayed_sidebar: docs
---
-**SAVE RECORD** {( *tabela* )}
+**SAVE RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai salvar o registro atual, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual vai salvar o registro atual, ou tabela padrão, se omitido |
@@ -54,6 +54,6 @@ O exemplo a seguir é parte de um método que lê registros de um documento. Nes
| | |
| --- | --- |
| Número do comando | 53 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
index 4d5ac77f48f461..16393014623485 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-related-one.md
@@ -5,11 +5,11 @@ slug: /commands/save-related-one
displayed_sidebar: docs
---
-**SAVE RELATED ONE** ( *campo* )
+**SAVE RELATED ONE** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo Muitos |
+| campo | Field | → | Campo Muitos |
@@ -31,6 +31,6 @@ SAVE RELATED ONE não guardará um registro bloqueado. Quando utilize este coman
| | |
| --- | --- |
| Número do comando | 43 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
index 35237aa742398d..3628035334717b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-set.md
@@ -5,12 +5,12 @@ slug: /commands/save-set
displayed_sidebar: docs
---
-**SAVE SET** ( *conjunto* ; *documento* )
+**SAVE SET** ( *conjunto* : Text ; *documento* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nome do conjunto a salvar |
-| documento | Text | → | Nome do arquivo de disco para o qual vai salvar o conjunto |
+| conjunto | Text | → | Nome do conjunto a salvar |
+| documento | Text | → | Nome do arquivo de disco para o qual vai salvar o conjunto |
@@ -48,7 +48,7 @@ Se o usuário clicar no botão Cancelar na caixa de diálogo de salvar arquivos,
| | |
| --- | --- |
| Número do comando | 184 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
index 64e90c3fc51d26..ce1c73a0accaad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/save-variables.md
@@ -5,12 +5,12 @@ slug: /commands/save-variables
displayed_sidebar: docs
---
-**SAVE VARIABLES** ( *documento* ; *variavel* {; *variavel2* ; ... ; *variavelN*} )
+**SAVE VARIABLES** ( *documento* : Text ; *variavel* : Variable {; *...variavel* : Variable} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Documento no qual vai guardar as variáveis |
-| variavel | Variable | → | Variáveis a guardar |
+| documento | Text | → | Documento no qual vai guardar as variáveis |
+| variavel | Variable | → | Variáveis a guardar |
@@ -54,7 +54,7 @@ Se as variáveis são guardadas corretamente, a variável sistema OK assume o va
| | |
| --- | --- |
| Número do comando | 75 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
index 9acf029cb5aff2..6e050756d01039 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-processing-instruction.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-processing-instruction
displayed_sidebar: docs
---
-**SAX ADD PROCESSING INSTRUCTION** ( *documento* ; *instruçao* )
+**SAX ADD PROCESSING INSTRUCTION** ( *documento* : Time ; *instruçao* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| instruçao | Text | → | Instrução a inserir no documento |
+| documento | Time | → | Referência do documento aberto |
+| instruçao | Text | → | Instrução a inserir no documento |
@@ -51,7 +51,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 857 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
index 2851a02f448256..8c54624c13ba72 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-cdata.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-cdata
displayed_sidebar: docs
---
-**SAX ADD XML CDATA** ( *documento* ; *dados* )
+**SAX ADD XML CDATA** ( *documento* : Time ; *dados* : Blob, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| dados | Blob, Text | → | Texto ou BLOB a inserir no documento entre etiquetas CData |
+| documento | Time | → | Referência do documento aberto |
+| dados | Blob, Text | → | Texto ou BLOB a inserir no documento entre etiquetas CData |
@@ -81,7 +81,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 856 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
index 4183e85e6fcb1a..6854fede089016 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-comment.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-comment
displayed_sidebar: docs
---
-**SAX ADD XML COMMENT** ( *documento* ; *comentario* )
+**SAX ADD XML COMMENT** ( *documento* : Time ; *comentario* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| comentario | Text | → | Comentário a ser adicionado |
+| documento | Time | → | Referência do documento aberto |
+| comentario | Text | → | Comentário a ser adicionado |
@@ -52,7 +52,7 @@ No caso de um erro, o comando devolve um erro que pode ser interceptado usando u
| | |
| --- | --- |
| Número do comando | 852 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
index ff006b54066754..b5aa1e279a0d98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-doctype.md
@@ -5,12 +5,12 @@ slug: /commands/sax-add-xml-doctype
displayed_sidebar: docs
---
-**SAX ADD XML DOCTYPE** ( *documento* ; *docType* )
+**SAX ADD XML DOCTYPE** ( *documento* : Time ; *docType* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| docType | Text | → | DOCTYPE a ser adicionado |
+| documento | Time | → | Referência do documento aberto |
+| docType | Text | → | DOCTYPE a ser adicionado |
@@ -52,7 +52,7 @@ Em caso de erro, o comando retorna um erro que possa ser interceptado usando um
| | |
| --- | --- |
| Número do comando | 851 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
index af95e9bc75a5b5..85eb110f64bc0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-add-xml-element-value.md
@@ -5,13 +5,13 @@ slug: /commands/sax-add-xml-element-value
displayed_sidebar: docs
---
-**SAX ADD XML ELEMENT VALUE** ( *documento* ; *dados* {; *} )
+**SAX ADD XML ELEMENT VALUE** ( *documento* : Time ; *dados* : Text, Variable {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| dados | Text, Variable | → | Texto ou variáveis a inserir no documento |
-| * | Operador | → | Se passado: criptografa os caracteres especiais; se omitido: não codifica. |
+| documento | Time | → | Referência do documento aberto |
+| dados | Text, Variable | → | Texto ou variáveis a inserir no documento |
+| * | Operador | → | Se passado: criptografa os caracteres especiais; se omitido: não codifica. |
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 855 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
index 2030a3ad4d8948..b49636eb95404f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-close-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-close-xml-element
displayed_sidebar: docs
---
-**SAX CLOSE XML ELEMENT** ( *documento* )
+**SAX CLOSE XML ELEMENT** ( *documento* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
@@ -43,6 +43,6 @@ Se o último elemento aberto for **, a instrução abaixo:
| | |
| --- | --- |
| Número do comando | 854 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
index be3d9f40b1575f..aae9b94040706d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-cdata.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-cdata
displayed_sidebar: docs
---
-**SAX GET XML CDATA** ( *documento* ; *valor* )
+**SAX GET XML CDATA** ( *documento* : Time ; *valor* : Text, Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| valor | Text, Blob | ← | Valor do elemento |
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 878 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
index bab6fcaa2b11b9..be1e31c3134fff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-comment.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-comment
displayed_sidebar: docs
---
-**SAX GET XML COMMENT** ( *documento* ; *comentario* )
+**SAX GET XML COMMENT** ( *documento* : Time ; *comentario* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| comentario | Text | ← | XML comment |
@@ -32,7 +32,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 874 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
index d953f1ab0de676..626bc1d3961546 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-document-values.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-document-values
displayed_sidebar: docs
---
-**SAX GET XML DOCUMENT VALUES** ( *documento* ; *codificaçao* ; *versao* ; *autonomo* )
+**SAX GET XML DOCUMENT VALUES** ( *documento* : Time ; *codificaçao* : Text ; *versao* : Text ; *autonomo* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| codificaçao | Text | ← | conjunto de caracteres do documento XML |
| versao | Text | ← | Versão XML |
| autonomo | Boolean | ← | True = documento é autônomo; senão False |
@@ -36,7 +36,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 873 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
index ccc8215dfdfa05..48fd03d03ef257 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element-value.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element-value
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT VALUE** ( *documento* ; *valor* )
+**SAX GET XML ELEMENT VALUE** ( *documento* : Time ; *valor* : Text, Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| valor | Text, Blob | ← | Valor do elemento |
@@ -50,7 +50,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Ca
| | |
| --- | --- |
| Número do comando | 877 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
index 1f6a9f1ed0a6fe..baa2825fee86c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-element.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-element
displayed_sidebar: docs
---
-**SAX GET XML ELEMENT** ( *documento* ; *nome* ; *prefixo* ; *nomesAtributos* ; *valoresAtributos* )
+**SAX GET XML ELEMENT** ( *documento* : Time ; *nome* : Text ; *prefixo* : Text ; *nomesAtributos* : Text array ; *valoresAtributos* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| nome | Text | ← | Element name |
| prefixo | Text | ← | Namespace |
| nomesAtributos | Text array | ← | Attribute names |
@@ -63,7 +63,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 876 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
index 78523f2c695fa6..6c0c015eca6c6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-entity.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-entity
displayed_sidebar: docs
---
-**SAX GET XML ENTITY** ( *documento* ; *nome* ; *valor* )
+**SAX GET XML ENTITY** ( *documento* : Time ; *nome* : Text ; *valor* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| nome | Text | ← | Nome da entidade |
| valor | Text | ← | Entity value |
@@ -54,7 +54,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 879 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
index 766fb7507a62c0..75755ccb89dcd2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-node.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-node
displayed_sidebar: docs
---
-**SAX Get XML node** ( *documento* ) : Integer
+**SAX Get XML node** ( *documento* : Time ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| Resultado | Integer | ← | Event returned by function |
@@ -62,7 +62,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 860 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
index e3d5a7fa15dda3..db0b71c4837053 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-get-xml-processing-instruction.md
@@ -5,11 +5,11 @@ slug: /commands/sax-get-xml-processing-instruction
displayed_sidebar: docs
---
-**SAX GET XML PROCESSING INSTRUCTION** ( *documento* ; *nome* ; *valor* )
+**SAX GET XML PROCESSING INSTRUCTION** ( *documento* : Time ; *nome* : Text ; *valor* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
+| documento | Time | → | Referência do documento aberto |
| nome | Text | ← | Instruction name |
| valor | Text | ← | Instruction value |
@@ -46,6 +46,6 @@ A instrução abaixo devolverá “PI” em *vNom* e “TextProcess” em *vValo
| | |
| --- | --- |
| Número do comando | 875 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
index 1953574c739935..904e0a1ed6df33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element-arrays.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element-arrays
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT ARRAYS** ( *documento* ; *etiqueta* {; *atribNomesArray* ; *attribValuesArray*} {; *atribNomesArray2* ; *attribValuesArray2* ; ... ; *atribNomesArrayN* ; *attribValuesArrayN*} )
+**SAX OPEN XML ELEMENT ARRAYS** ( *documento* : Time ; *etiqueta* : Text {; *atribNomesArray* : Text array ; *attribValuesArray* : Array} {; ...(*atribNomesArray* : Text array, *attribValuesArray* : Array)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| etiqueta | Text | → | Nome do elemento a abrir |
-| atribNomesArray | Text array | → | Array de nomes de atributo |
-| attribValuesArray | Text array, Integer array, Date array, Real array, Picture array, Boolean array | → | Array of attribute values |
+| documento | Time | → | Referência do documento aberto |
+| etiqueta | Text | → | Nome do elemento a abrir |
+| atribNomesArray | Text array | → | Array de nomes de atributo |
+| attribValuesArray | Array | → | Array of attribute values |
@@ -60,6 +60,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 921 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
index c710a6cf21687f..fb1de935bbc002 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-open-xml-element.md
@@ -5,14 +5,14 @@ slug: /commands/sax-open-xml-element
displayed_sidebar: docs
---
-**SAX OPEN XML ELEMENT** ( *documento* ; *etiqueta* {; *nomeAtrib* ; *valorAtributo*} {; *nomeAtrib2* ; *valorAtributo2* ; ... ; *nomeAtribN* ; *valorAtributoN*} )
+**SAX OPEN XML ELEMENT** ( *documento* : Time ; *etiqueta* : Text {; *nomeAtrib* : Text ; *valorAtributo* : Text} {; ...(*nomeAtrib* : Text, *valorAtributo* : Text)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| etiqueta | Text | → | Nome do elemento a abrir |
-| nomeAtrib | Text | → | Nome de atributo |
-| valorAtributo | Text | → | Valor do atributo |
+| documento | Time | → | Referência do documento aberto |
+| etiqueta | Text | → | Nome do elemento a abrir |
+| nomeAtrib | Text | → | Nome de atributo |
+| valorAtributo | Text | → | Valor do atributo |
@@ -57,7 +57,7 @@ Se passar em tag um caractere inválido, se gera um erro.
| | |
| --- | --- |
| Número do comando | 853 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
index 8025a371e6858f..7ecabebdfb4b53 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sax-set-xml-declaration.md
@@ -5,13 +5,13 @@ slug: /commands/sax-set-xml-declaration
displayed_sidebar: docs
---
-**SAX SET XML DECLARATION** ( *documento* ; *codificaçao* {; *autonomo*} )
+**SAX SET XML DECLARATION** ( *documento* : Time ; *codificaçao* : Text {; *autonomo* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Time | → | Referência do documento aberto |
-| codificaçao | Text | → | Conjunto de caracteres usado no documento XML |
-| autonomo | Boolean | → | True= o documento é autônomo (standalone); False (padrão) = documento não é standalone |
+| documento | Time | → | Referência do documento aberto |
+| codificaçao | Text | → | Conjunto de caracteres usado no documento XML |
+| autonomo | Boolean | → | True= o documento é autônomo (standalone); False (padrão) = documento não é standalone |
@@ -50,6 +50,6 @@ O código abaixo:
| | |
| --- | --- |
| Número do comando | 858 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
index 692e5e1f813a04..b469c5aae8da63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/scan-index.md
@@ -5,13 +5,13 @@ slug: /commands/scan-index
displayed_sidebar: docs
---
-**SCAN INDEX** ( *campo* ; *numero* {; > ou <} )
+**SCAN INDEX** ( *campo* : Field ; *numero* : Integer {; > ou <} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo indexado onde vai procurar o índice |
-| numero | Integer | → | Nº de registros a retornar |
-| > ou < | Operador | → | >a partir do começo do índice, |
+| campo | Field | → | Campo indexado onde vai procurar o índice |
+| numero | Integer | → | Nº de registros a retornar |
+| > ou < | Operador | → | >a partir do começo do índice, |
@@ -57,7 +57,7 @@ O seguinte exemplo envia cartas aos 50 piores clientes e aos 50 melhores cliente
| | |
| --- | --- |
| Número do comando | 350 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
index 1a3042eba87c9e..87829f0f8b1b58 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-coordinates.md
@@ -5,7 +5,7 @@ slug: /commands/screen-coordinates
displayed_sidebar: docs
---
-**SCREEN COORDINATES** ( *esquerda* ; *superior* ; *direita* ; *inferior* {; *tela* {; *areaTela*}} )
+**SCREEN COORDINATES** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer {; *tela* : Integer {; *areaTela* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -13,8 +13,8 @@ displayed_sidebar: docs
| superior | Integer | ← | Coordenada superior da área da tela |
| direita | Integer | ← | Coordenada direita da área da tela |
| inferior | Integer | ← | Coordenada inferior da área da tela |
-| tela | Integer | → | Número da tela, ou tela principal se omitida |
-| areaTela | Integer | → | Tela inteira (padrão)ou então área de trabalho |
+| tela | Integer | → | Número da tela, ou tela principal se omitida |
+| areaTela | Integer | → | Tela inteira (padrão)ou então área de trabalho |
@@ -51,6 +51,6 @@ As imagens abaixo demostram as diferenças entre o tamanho da tela e a área de
| | |
| --- | --- |
| Número do comando | 438 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
index 1fc3b0ece745ac..5de0848c8c42c3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-depth.md
@@ -5,13 +5,13 @@ slug: /commands/screen-depth
displayed_sidebar: docs
---
-**SCREEN DEPTH** ( *profundidade* ; *cor* {; *tela*} )
+**SCREEN DEPTH** ( *profundidade* : Integer ; *cor* : Integer {; *tela* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| profundidade | Integer | ← | Profundidade da tela (número de cores = 2 ^ profundidade) |
| cor | Integer | ← | 1 = Tela cor 0 = Tela branco e preto ou escala de cinzas |
-| tela | Integer | → | Número da tela, ou tela principal se omitida |
+| tela | Integer | → | Número da tela, ou tela principal se omitida |
@@ -65,6 +65,6 @@ Sua aplicação mostra vários gráficos a cor. Pode escrever em alguma parte em
| | |
| --- | --- |
| Número do comando | 439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
index 30892339844ab0..cd52628e9e0d9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-height.md
@@ -5,11 +5,11 @@ slug: /commands/screen-height
displayed_sidebar: docs
---
-**Screen height** {( * )} : Integer
+**Screen height** ( * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Windows: altura da janela da aplicação ou altura da tela se especificada * Macintosh: altura da tela principal |
+| * | Operador | → | Windows: altura da janela da aplicação ou altura da tela se especificada * Macintosh: altura da tela principal |
| Resultado | Integer | ← | Altura expressada em pixeles |
@@ -30,6 +30,6 @@ Em Mac OS, Screen height devolve a altura da tela principal, ou seja a tela onde
| | |
| --- | --- |
| Número do comando | 188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
index b6f84e32ba1965..d85af6f43c773e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/screen-width.md
@@ -5,11 +5,11 @@ slug: /commands/screen-width
displayed_sidebar: docs
---
-**Screen width** {( * )} : Integer
+**Screen width** ( * ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Windows: largo da janela da aplicação ou altura da tela se especificada * Macintosh: largo da tela principal |
+| * | Operador | → | Windows: largo da janela da aplicação ou altura da tela se especificada * Macintosh: largo da tela principal |
| Resultado | Integer | ← | Largo expressado em pixeles |
@@ -30,6 +30,6 @@ Em Macintosh, Screen width devolve o largo da tela principal, ou seja o largo da
| | |
| --- | --- |
| Número do comando | 187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
index bf14ed4dad33d9..1654ad6440de92 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-document.md
@@ -5,14 +5,14 @@ slug: /commands/select-document
displayed_sidebar: docs
---
-**Select document** ( *diretorio* ; *tipoArquivos* ; *titulo* ; *opçoes* {; *selecionados*} ) : Text
+**Select document** ( *diretorio* : Text, Integer ; *tipoArquivos* : Text ; *titulo* : Text ; *opçoes* : Integer {; *selecionados* : Text array} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| diretorio | Text, Integer | → | Rota de acesso do diretório a exibir na caixa de diálogo de seleção de documentos, ou String vazia para exibir a pasta de usuário padrão ("Meus documentos" em Windows e "Documentos" em Mac OS) ou Número da rota de acesso memorizada. |
-| tipoArquivos | Text | → | Lista de tipos de documentos a filtrar, ou "*" para não filtrar os documentos |
-| titulo | Text | → | Título da caixa de diálogo de seleção |
-| opçoes | Integer | → | Opções de seleção |
+| diretorio | Text, Integer | → | Rota de acesso do diretório a exibir na caixa de diálogo de seleção de documentos, ou String vazia para exibir a pasta de usuário padrão ("Meus documentos" em Windows e "Documentos" em Mac OS) ou Número da rota de acesso memorizada. |
+| tipoArquivos | Text | → | Lista de tipos de documentos a filtrar, ou "*" para não filtrar os documentos |
+| titulo | Text | → | Título da caixa de diálogo de seleção |
+| opçoes | Integer | → | Opções de seleção |
| selecionados | Text array | ← | Array que contém a lista de rotas de acesso + nomes dos arquivos selecionados |
| Resultado | Text | ← | Nome dos arquivos selecionados (primeiro arquivo da lista em caso de seleção múltipla) |
@@ -103,7 +103,7 @@ Se não for selecionado nenhum arquivo (por exemplo, se o usuário clicar no bot
| | |
| --- | --- |
| Número do comando | 905 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
index 60a59854a02d6d..cb10af6a928409 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-folder.md
@@ -5,13 +5,13 @@ slug: /commands/select-folder
displayed_sidebar: docs
---
-**Select folder** ( {*mensagem* }{;}{ *rotaPadrao* {; *opções*}} ) : Text
+**Select folder** ( {*mensagem* : Text }{;}{ *rotaPadrao* : Text, Integer {; *opções* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mensagem | Text | → | Título da janela |
-| rotaPadrao | Text, Integer | → | • Rota padrão ou • String vazia para mostrar a pasta de usuário padrão (“Meus documentos” em Windows, “Documentos” em Mac OS), ou • Número de rota memorizada |
-| opções | Integer | → | Opções de seleção em Mac OS |
+| mensagem | Text | → | Título da janela |
+| rotaPadrao | Text, Integer | → | • Rota padrão ou • String vazia para mostrar a pasta de usuário padrão (“Meus documentos” em Windows, “Documentos” em Mac OS), ou • Número de rota memorizada |
+| opções | Integer | → | Opções de seleção em Mac OS |
| Resultado | Text | ← | Rota de acesso à pasta selecionada |
@@ -95,7 +95,7 @@ O exemplo abaixo lhe permite selecionar a pasta na qual serão armazenadas as im
| | |
| --- | --- |
| Número do comando | 670 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
index 9e6ca62a7f1bda..7394f4c0b2af47 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-position.md
@@ -5,14 +5,14 @@ slug: /commands/select-list-items-by-position
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY POSITION** ( {* ;} *lista* ; *posiçaoElem* {; *posiçaoArray*} )
+**SELECT LIST ITEMS BY POSITION** ( {* ;} *lista* : Integer, Text ; *posiçaoElem* : Integer {; *posiçaoArray* : Integer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| posiçaoElem | Integer | → | Posição do elemento na(s) lista(s) expandida(s) /contraída(s) |
-| posiçaoArray | Integer array | → | Array de posições na(s) lista(s) expandida(s) /contraída(s) |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| posiçaoElem | Integer | → | Posição do elemento na(s) lista(s) expandida(s) /contraída(s) |
+| posiçaoArray | Integer array | → | Array de posições na(s) lista(s) expandida(s) /contraída(s) |
@@ -78,6 +78,6 @@ São selecionados os elementos segundo, terceiro e quinto da lista hierárquica
| | |
| --- | --- |
| Número do comando | 381 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
index c5b7ac1dad0cd3..6f950065309087 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-list-items-by-reference.md
@@ -5,13 +5,13 @@ slug: /commands/select-list-items-by-reference
displayed_sidebar: docs
---
-**SELECT LIST ITEMS BY REFERENCE** ( *lista* ; *refElem* {; *refArray*} )
+**SELECT LIST ITEMS BY REFERENCE** ( *lista* : Integer ; *refElem* : Integer {; *refArray* : Integer array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| refElem | Integer | → | Número de referência do elemento ou 0 para o último elemento adicionado à lista |
-| refArray | Integer array | → | Array de números de referência de elementos |
+| lista | Integer | → | Número de referência da lista |
+| refElem | Integer | → | Número de referência do elemento ou 0 para o último elemento adicionado à lista |
+| refArray | Integer array | → | Array de números de referência de elementos |
@@ -55,6 +55,6 @@ Se trabalha com os números de referência dos elementos, tenha certeza de const
| | |
| --- | --- |
| Número do comando | 630 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
index e35f038b408902..4f1b981151a5f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/select-rgb-color.md
@@ -5,12 +5,12 @@ slug: /commands/select-rgb-color
displayed_sidebar: docs
---
-**Select RGB color** {( *corDefeito* {; *mensagem*} )} : Integer
+**Select RGB color** ( *corDefeito* : Integer {; *mensagem* : Text} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| corDefeito | Integer | → | Cor RGB pré-selecionada |
-| mensagem | Text | → | Título da janela de seleção |
+| corDefeito | Integer | → | Cor RGB pré-selecionada |
+| mensagem | Text | → | Título da janela de seleção |
| Resultado | Integer | ← | Cor RGB |
@@ -46,7 +46,7 @@ O efeito da validação desta caixa de diálogo muda dependendo da plataforma:
| | |
| --- | --- |
| Número do comando | 956 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
index 20bd3db7531272..9c0608dc02b735 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-list-items.md
@@ -5,14 +5,14 @@ slug: /commands/selected-list-items
displayed_sidebar: docs
---
-**Selected list items** ( {* ;} *lista* {; *arrayElem* {; *}} ) : Integer
+**Selected list items** ( {* ;} *lista* : Integer, Text {; *arrayElem* : Integer array {; *}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
| arrayElem | Integer array | ← | Se omitido o segundo *: Array contém as posições dos elementos selecionados na(s) lista(s) Se passado o segundo *: Array contém as referências dos elementos selecionados |
-| * | Operador | → | Se omitido: posição(es) do(s) elemento(s) Se passado: referencia(s) do(s) elemento(s) |
+| * | Operador | → | Se omitido: posição(es) do(s) elemento(s) Se passado: referencia(s) do(s) elemento(s) |
| Resultado | Integer | ← | Se omitido o segundo *: posição do elemento selecionado na(s) lista(s) expandida(s) Se passado o segundo *: Referência do elemento selecionado |
@@ -90,6 +90,6 @@ Esta é uma lista chamada *hList,* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 379 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
index 98123549011004..47722e1ac74c8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selected-record-number.md
@@ -5,11 +5,11 @@ slug: /commands/selected-record-number
displayed_sidebar: docs
---
-**Selected record number** {( *tabela* )} : Integer
+**Selected record number** ( *tabela* : Table ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual retornar o número de registros selecionados ou tabela padrão se omitida |
+| tabela | Table | → | Tabela para a qual retornar o número de registros selecionados ou tabela padrão se omitida |
| Resultado | Integer | ← | Nº registro selecionado do registro atual |
@@ -41,6 +41,6 @@ O seguinte exemplo guarda o número do registro atual da seleção em uma variá
| | |
| --- | --- |
| Número do comando | 246 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
index be9ed057e763c2..d41b098e41e3d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-range-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/selection-range-to-array
displayed_sidebar: docs
---
-**SELECTION RANGE TO ARRAY** ( *inicio* ; *fim* {; umCampo | umaTabela ; *array*} {; umCampo | umaTabela2 ; *array2* ; ... ; umCampo | umaTabelaN ; *arrayN*} )
+**SELECTION RANGE TO ARRAY** ( *start* : Integer ; *end* : Integer {; ...(*data* : Field, Table ; *array* : Array)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| inicio | Integer | → | Número do registro selecionado onde a recuperação de dados começa |
-| fim | Integer | → | Número de registro selecionado onde termina a recuperação de dados |
-| umCampo | umaTabela | Campo, Tabela | → | Campo usado para pedir dados ou Tabela usada para pedir números de registros |
+| inicio | Integer | → | Número do registro selecionado onde a recuperação de dados começa |
+| fim | Integer | → | Número de registro selecionado onde termina a recuperação de dados |
+| umCampo | umaTabela | Campo, Tabela | → | Campo usado para pedir dados ou Tabela usada para pedir números de registros |
| array | Array | ← | Array para receber dados do campo ou número de registros |
@@ -114,6 +114,6 @@ Use os 50 primeiros registros atuais da tabela \[facturas\] para carregar vário
| | |
| --- | --- |
| Número do comando | 368 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
index 4260e54080038c..26fd0a7a119f5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-array.md
@@ -5,15 +5,15 @@ slug: /commands/selection-to-array
displayed_sidebar: docs
---
-**SELECTION TO ARRAY** {( umCampo | umaTabela ; *array* {; *campo* ; *array* {; *campo2* ; *array2* ; ... ; *campoN* ; *arrayN*}}{; *})}
+**SELECTION TO ARRAY** ({ umCampo | umaTabela ; *array* : Array {; *campo* : Field ; *array* : Array {; ...(*campo* : Field, *array* : Array)}}{; *}})
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| umCampo | umaTabela | Campo, Tabela | → | Campo usado para pedir dados ou Tabela usada para pedir números de registros |
+| umCampo | umaTabela | Campo, Tabela | → | Campo usado para pedir dados ou Tabela usada para pedir números de registros |
| array | Array | ← | Array para receber dados do campo ou número de registros |
-| campo | Field | → | Campo a ser requisitado no array |
+| campo | Field | → | Campo a ser requisitado no array |
| array | Array | ← | Array a receber os dados do campo |
-| * | Operador | → | Aguarde execução |
+| * | Operador | → | Aguarde execução |
@@ -85,6 +85,6 @@ O mesmo exemplo pode ser escrito:
| | |
| --- | --- |
| Número do comando | 260 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
index fb08f9c47c6b84..a228e5ceca47dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/selection-to-json.md
@@ -5,13 +5,13 @@ slug: /commands/selection-to-json
displayed_sidebar: docs
---
-**Selection to JSON** ( *aTabela* {; *oCampo*}{; *oCampo2* ; ... ; *oCampoN*}{; *modelo*}) : Text
+**Selection to JSON** ( *aTabela* {; *...oCampo*}{; *modelo* : Object}) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Tabela a serializar |
-| oField | Field | → | Campo(s) cujo(s) conteúdos devem ser serializados |
-| modelo | Object | → | Objeto para a seleção de etiquetas e de campos |
+| aTable | Table | → | Tabela a serializar |
+| oField | Field | → | Campo(s) cujo(s) conteúdos devem ser serializados |
+| modelo | Object | → | Objeto para a seleção de etiquetas e de campos |
| Resultado | Text | ← | Cadeia que contém o array JSON serializado |
@@ -97,6 +97,6 @@ Pode usar a sintaxe *modelo* para exportar campos de tabelas diferentes:
| | |
| --- | --- |
| Número do comando | 1234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md
index d541db3734dea5..ae2aeb102f1df3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver o exemplo do comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER")
| | |
| --- | --- |
| Número do comando | 308 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
index 150ec16c078b29..e5bfc3801fed14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/semaphore.md
@@ -5,12 +5,12 @@ slug: /commands/semaphore
displayed_sidebar: docs
---
-**Semaphore** ( *semaforo* {; *tickCount*} ) : Boolean
+**Semaphore** ( *semaforo* : Text {; *tickCount* : Integer} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| semaforo | Text | → | Semáforo a testar e estabelecer |
-| tickCount | Integer | → | Máximo tempo de espera |
+| semaforo | Text | → | Semáforo a testar e estabelecer |
+| tickCount | Integer | → | Máximo tempo de espera |
| Resultado | Boolean | ← | O semáforo foi criado corretamente (FALSE) ou O semáforo já tinha sido criado (TRUE) |
@@ -160,6 +160,6 @@ Sintaxe:
| | |
| --- | --- |
| Número do comando | 143 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
index 020275461c5a1a..a93c0269141fe0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-message-to-remote-user.md
@@ -5,12 +5,12 @@ slug: /commands/send-message-to-remote-user
displayed_sidebar: docs
---
-**SEND MESSAGE TO REMOTE USER** ( *message* {; *userSession*} )
+**SEND MESSAGE TO REMOTE USER** ( *message* : Text {; *userSession* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| message | Text | → | Text sent to user |
-| userSession | Text | → | User's session ID |
+| message | Text | → | Text sent to user |
+| userSession | Text | → | User's session ID |
@@ -58,6 +58,6 @@ You want to send a message to all users, then send a message to a specific user:
| | |
| --- | --- |
| Número do comando | 1632 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
index 96864af34ba099..9e2ddb5ee35760 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-packet.md
@@ -5,12 +5,12 @@ slug: /commands/send-packet
displayed_sidebar: docs
---
-**SEND PACKET** ( {*docRef* ;} *pacote* )
+**SEND PACKET** ( {*docRef* : Time ;} *pacote* : Text, Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência do documento, o canal atual (porta serial ou documento) |
-| pacote | Text, Blob | → | String ou BLOB a ser enviado |
+| docRef | Time | → | Número de referência do documento, o canal atual (porta serial ou documento) |
+| pacote | Text, Blob | → | String ou BLOB a ser enviado |
@@ -88,6 +88,6 @@ Este exemplo ilustra o envio e recuperação de caracteres estendidos através d
| | |
| --- | --- |
| Número do comando | 103 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
index c4bfeecd7a37f7..34468d4cbe840b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-record.md
@@ -5,11 +5,11 @@ slug: /commands/send-record
displayed_sidebar: docs
---
-**SEND RECORD** {( *tabela* )}
+**SEND RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela da qual enviar o registro corrente, ou Tabela padrão, se omitido |
+| tabela | Table | → | Tabela da qual enviar o registro corrente, ou Tabela padrão, se omitido |
@@ -40,6 +40,6 @@ O registro completo é enviado. Isso significa que imagens e BLOBs armazenados o
| | |
| --- | --- |
| Número do comando | 78 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
index babb27a927346e..b0af9b3c9b95e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/send-variable.md
@@ -5,11 +5,11 @@ slug: /commands/send-variable
displayed_sidebar: docs
---
-**SEND VARIABLE** ( *variavel* )
+**SEND VARIABLE** ( *variavel* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variavel | Variable | → | Variável a ser enviada |
+| variavel | Variable | → | Variável a ser enviada |
@@ -38,6 +38,6 @@ Veja o exemplo para o comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD
| | |
| --- | --- |
| Número do comando | 80 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
index 041ca73ccd0f9c..82e03e64dc6d12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sequence-number.md
@@ -5,11 +5,11 @@ slug: /commands/sequence-number
displayed_sidebar: docs
---
-**Sequence number** {( *tabela* )} : Integer
+**Sequence number** ( *tabela* : Table ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual devolver o número de sequência, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela para a qual devolver o número de sequência, ou tabela padrão, se omitido |
| Resultado | Integer | ← | Número de sequência |
@@ -65,6 +65,6 @@ O exemplo a seguir é parte de um método de formulário. Estas linhas de códig
| | |
| --- | --- |
| Número do comando | 244 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
index 0c57b700c9dcf2..98f7136b721c90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-about.md
@@ -5,12 +5,12 @@ slug: /commands/set-about
displayed_sidebar: docs
---
-**SET ABOUT** ( *textoElem* ; *metodo* )
+**SET ABOUT** ( *textoElem* : Text ; *metodo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| textoElem | Text | → | Novo item do menu Sobre |
-| metodo | Text | → | Nome de método a executar quando o item de menu for escolhido |
+| textoElem | Text | → | Novo item do menu Sobre |
+| metodo | Text | → | Nome de método a executar quando o item de menu for escolhido |
@@ -49,6 +49,6 @@ O exemplo abaixo reinicializa o comando de menu Sobre 4D:
| | |
| --- | --- |
| Número do comando | 316 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
index ee861138b88e3c..b3b3c9d0aa7fd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-application-color-scheme.md
@@ -5,11 +5,11 @@ slug: /commands/set-application-color-scheme
displayed_sidebar: docs
---
-**SET APPLICATION COLOR SCHEME** ( *esquemaCor* )
+**SET APPLICATION COLOR SCHEME** ( *esquemaCor* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| esquemaCor | Text | → | "light/claro", "dark/escuro" ou "inherited/herdado" |
+| esquemaCor | Text | → | "light/claro", "dark/escuro" ou "inherited/herdado" |
@@ -42,6 +42,6 @@ No parâmetro *esquemaCor*, passe um esquema de cores a aplicar:
| | |
| --- | --- |
| Número do comando | 1762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
index 5deae5a2fde741..14ff57e4f878f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-assert-enabled.md
@@ -5,12 +5,12 @@ slug: /commands/set-assert-enabled
displayed_sidebar: docs
---
-**SET ASSERT ENABLED** ( *asserções* {; *} )
+**SET ASSERT ENABLED** ( *asserções* : Boolean {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| asserções | Boolean | → | TRUE = Ativa asserções FALSE = desativa asserções |
-| * | Operador | → | Se omitido = comando aplica a todos os processos (existidos ou que serão criados) se passado, o comando = aplica apenas ao processo atual. |
+| asserções | Boolean | → | TRUE = Ativa asserções FALSE = desativa asserções |
+| * | Operador | → | Se omitido = comando aplica a todos os processos (existidos ou que serão criados) se passado, o comando = aplica apenas ao processo atual. |
@@ -44,6 +44,6 @@ Desativação de asserções
| | |
| --- | --- |
| Número do comando | 1131 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
index 390200ecc448b7..e1a97de94652df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-automatic-relations.md
@@ -5,12 +5,12 @@ slug: /commands/set-automatic-relations
displayed_sidebar: docs
---
-**SET AUTOMATIC RELATIONS** ( *um* {; *muitos*} )
+**SET AUTOMATIC RELATIONS** ( *um* : Boolean {; *muitos* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| um | Boolean | → | Estado de todas as relação Muitos a Um |
-| muitos | Boolean | → | Estado de todas as relações Um a Muitos |
+| um | Boolean | → | Estado de todas as relação Muitos a Um |
+| muitos | Boolean | → | Estado de todas as relações Um a Muitos |
@@ -50,6 +50,6 @@ O exemplo a seguir torna automáticas todas as relações Muitos a Um e restabel
| | |
| --- | --- |
| Número do comando | 310 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
index 0408644f96e3a8..99dcad23398bda 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blob-size.md
@@ -5,13 +5,13 @@ slug: /commands/set-blob-size
displayed_sidebar: docs
---
-**SET BLOB SIZE** ( *BLOB* ; *tamanho* {; *preenchimento*} )
+**SET BLOB SIZE** ( *BLOB* : Blob ; *tamanho* : Integer {; *preenchimento* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | Campo ou variável BLOB |
-| tamanho | Integer | → | Novo tamanho do BLOB |
-| preenchimento | Integer | → | Código ASCII do caractere de preenchimento |
+| Blob | Blob | → | Campo ou variável BLOB |
+| tamanho | Integer | → | Novo tamanho do BLOB |
+| preenchimento | Integer | → | Código ASCII do caractere de preenchimento |
@@ -56,6 +56,6 @@ O exemplo a seguir cria um BLOB de 16K cheios de 0xFF:
| | |
| --- | --- |
| Número do comando | 606 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
index 5e781c6b7cabea..29b676df031989 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-blobs-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-blobs-cache-priority
displayed_sidebar: docs
---
-**SET BLOBS CACHE PRIORITY** ( *Tabela* ; *prioridade* )
+**SET BLOBS CACHE PRIORITY** ( *Tabela* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela cujo valor de prioridade de dados dos "blobs" vai ser estabelecido para a sessão |
-| prioridade | Integer | → | Valor de prioridade de cache para BLOBS na tabela |
+| Table | Table | → | Tabela cujo valor de prioridade de dados dos "blobs" vai ser estabelecido para a sessão |
+| prioridade | Integer | → | Valor de prioridade de cache para BLOBS na tabela |
@@ -54,6 +54,6 @@ Em , se quiser definir uma prioridade alta para a tabela \[Customer\]:
| | |
| --- | --- |
| Número do comando | 1425 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
index bb1d7f31485b0b..a851bb81476979 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cache-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-cache-size
displayed_sidebar: docs
---
-**SET CACHE SIZE** ( *tamanho* {; *libMin*} )
+**SET CACHE SIZE** ( *tamanho* : Real {; *libMin* : Real} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tamanho | Real | → | Tamanho do banco de dados em bytes |
-| libMin | Real | → | Mínimo número de bytes a liberar quando cache estiver cheia |
+| tamanho | Real | → | Tamanho do banco de dados em bytes |
+| libMin | Real | → | Mínimo número de bytes a liberar quando cache estiver cheia |
@@ -45,6 +45,6 @@ Se quiser adicionar 100 MB ao tamanho da cache de seu banco de ados atual. Pode
| | |
| --- | --- |
| Número do comando | 1399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
index 2c59763682f6b3..48d33ee72ae24e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-channel.md
@@ -10,12 +10,12 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| porta | Integer | → | Número da porta serial |
-| configuraçao | Integer | → | Configuração da porta serial |
-| SET CHANNEL ( operaçao ; documento ) |
-| Parâmetro | Tipo | Descrição |
-| operaçao | Integer | → | Operação de documento a ser realizada |
-| documento | Text | → | Nome do documento |
+| porta | Integer | → | Número da porta serial |
+| configuraçao | Integer | → | Configuração da porta serial |
+| SET CHANNEL ( operaçao ; documento ) | | | |
+| Parâmetro | Tipo | Descrição | |
+| operaçao | Integer | → | Operação de documento a ser realizada |
+| documento | Text | → | Nome do documento |
@@ -175,7 +175,7 @@ Veja os exemplos para os comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BU
| | |
| --- | --- |
| Número do comando | 77 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
index 396093ebf31528..68288118d371db 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-current-printer.md
@@ -5,11 +5,11 @@ slug: /commands/set-current-printer
displayed_sidebar: docs
---
-**SET CURRENT PRINTER** ( *nomImpr* )
+**SET CURRENT PRINTER** ( *nomImpr* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomImpr | Text | → | Nome da impressora a ser usada |
+| nomImpr | Text | → | Nome da impressora a ser usada |
@@ -60,7 +60,7 @@ Criação de um documento PDF em Windows:
| | |
| --- | --- |
| Número do comando | 787 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
index 9abbf381cc77cd..23af1a6205c60b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-cursor.md
@@ -5,11 +5,11 @@ slug: /commands/set-cursor
displayed_sidebar: docs
---
-**SET CURSOR** {( *cursor* )}
+**SET CURSOR** ({ *cursor* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cursor | Integer | → | Número de resource de cursor |
+| cursor | Integer | → | Número de resource de cursor |
@@ -42,6 +42,6 @@ Se quiser que o cursor seja exibido 
+**SET DATABASE LOCALIZATION** ( *codigoIdioma* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| codigoIdioma | Text | → | Seletor de idioma |
-| * | Operador | → | Escopo do comando |
+| codigoIdioma | Text | → | Seletor de idioma |
+| * | Operador | → | Escopo do comando |
@@ -75,7 +75,7 @@ A interface do seu aplicativo usa a string estática ":xliff:shopping". Os arqui
| | |
| --- | --- |
| Número do comando | 1104 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
index 97dd6fa8a4ebe1..3ccf1f4ebd9d7b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-database-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-database-parameter
displayed_sidebar: docs
---
-**SET DATABASE PARAMETER** ( {*tabela* ;} *seletor* ; *value* )
+**SET DATABASE PARAMETER** ( {*tabela* : Table ;} *seletor* : Integer ; *value* : Real, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela a qual atribuir o parâmetro ou, Tabela padrão se o parâmetro for omitido. |
-| seletor | Integer | → | Código do banco de dados a ser modificado |
-| value | Real, Text | → | Valor do parâmetro |
+| tabela | Table | → | Tabela a qual atribuir o parâmetro ou, Tabela padrão se o parâmetro for omitido. |
+| seletor | Integer | → | Código do banco de dados a ser modificado |
+| value | Real, Text | → | Valor do parâmetro |
@@ -1052,6 +1052,6 @@ Você quer exportar dados em JSON que contém uma data 4D convertida. Note que a
| | |
| --- | --- |
| Número do comando | 642 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
index 9df570daf6edff..0f63e8e756ea94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-default-century.md
@@ -5,12 +5,12 @@ slug: /commands/set-default-century
displayed_sidebar: docs
---
-**SET DEFAULT CENTURY** ( *seculo* {; *anoPivo*} )
+**SET DEFAULT CENTURY** ( *seculo* : Integer {; *anoPivo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seculo | Integer | → | Século por padrão (menos um) para a entrada de anos com dois dígitos |
-| anoPivo | Integer | → | Ano pivô para a entrada de anos com dois dígitos |
+| seculo | Integer | → | Século por padrão (menos um) para a entrada de anos com dois dígitos |
+| anoPivo | Integer | → | Ano pivô para a entrada de anos com dois dígitos |
@@ -71,6 +71,6 @@ Este comando afeta só a entrada de dados. Não tem nenhum efeito no armazenamen
| | |
| --- | --- |
| Número do comando | 392 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
index 11404aa028904e..805fefb1b1491e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-position.md
@@ -5,13 +5,13 @@ slug: /commands/set-document-position
displayed_sidebar: docs
---
-**SET DOCUMENT POSITION** ( *docRef* ; *offset* {; *ancora*} )
+**SET DOCUMENT POSITION** ( *docRef* : Time ; *offset* : Real {; *ancora* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência de documento |
-| offset | Real | → | Posição de arquivo (expresso em bytes) |
-| ancora | Integer | → | 1 = em relação ao começo do arquivo 2= em relação ao final do arquivo 3= em relação a posição atual |
+| docRef | Time | → | Número de referência de documento |
+| offset | Real | → | Posição de arquivo (expresso em bytes) |
+| ancora | Integer | → | 1 = em relação ao começo do arquivo 2= em relação ao final do arquivo 3= em relação a posição atual |
@@ -36,6 +36,6 @@ Se omite o parâmetro opcional *ancora*, a posição é relativa ao início do d
| | |
| --- | --- |
| Número do comando | 482 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
index c54affe180a3b3..e8a1a68242f441 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-document-properties
displayed_sidebar: docs
---
-**SET DOCUMENT PROPERTIES** ( *documento* ; *bloqueado* ; *invisivel* ; *criadoEm* ; *criadoAs* ; *modificadoEm* ; *modificadoAs* )
+**SET DOCUMENT PROPERTIES** ( *documento* : Text ; *bloqueado* : Boolean ; *invisivel* : Boolean ; *criadoEm* : Date ; *criadoAs* : Time ; *modificadoEm* : Date ; *modificadoAs* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| documento | Text | → | Nome do documento ou rota de acesso completa |
-| bloqueado | Boolean | → | Bloqueado (True) ou Desbloqueado (False) |
-| invisivel | Boolean | → | Invisível (True) ou Visível (False) |
-| criadoEm | Date | → | Data de criação |
-| criadoAs | Time | → | HOra de criação |
-| modificadoEm | Date | → | última modificação de data |
-| modificadoAs | Time | → | última hora modificada |
+| documento | Text | → | Nome do documento ou rota de acesso completa |
+| bloqueado | Boolean | → | Bloqueado (True) ou Desbloqueado (False) |
+| invisivel | Boolean | → | Invisível (True) ou Visível (False) |
+| criadoEm | Date | → | Data de criação |
+| criadoAs | Time | → | HOra de criação |
+| modificadoEm | Date | → | última modificação de data |
+| modificadoAs | Time | → | última hora modificada |
@@ -41,7 +41,7 @@ As datas e horas de criação e última modificação são administradas pelo ad
| | |
| --- | --- |
| Número do comando | 478 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
index cf167f029083cf..0cb68676ca1940 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-document-size.md
@@ -5,12 +5,12 @@ slug: /commands/set-document-size
displayed_sidebar: docs
---
-**SET DOCUMENT SIZE** ( *docRef* ; *tamanho* )
+**SET DOCUMENT SIZE** ( *docRef* : Time ; *tamanho* : Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| docRef | Time | → | Número de referência de documento |
-| tamanho | Real | → | Novo tamanho expresso em bytes |
+| docRef | Time | → | Número de referência de documento |
+| tamanho | Real | → | Novo tamanho expresso em bytes |
@@ -33,6 +33,6 @@ Em Macintosh, é modificado o tamanho do data fork do documento
| | |
| --- | --- |
| Número do comando | 480 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
index e3df36a529d9d0..6905324d61cb4a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-drag-icon.md
@@ -5,13 +5,13 @@ slug: /commands/set-drag-icon
displayed_sidebar: docs
---
-**SET DRAG ICON** ( *icone* {; *deslH* {; *deslV*}} )
+**SET DRAG ICON** ( *icone* : Picture {; *deslH* : Integer {; *deslV* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| icone | Picture | → | Ícone a utilizar durante arrastar |
-| deslH | Integer | → | Deslocamento horizontal do borde esquerdo da imagem com respeito a posição do cursor (> = 0, a esquerda, <0 = a direita) |
-| deslV | Integer | → | Deslocamento vertical do borde superior da imagem com respeito a posição do cursor (> 0 = para cima, <0 = para baixo) |
+| icone | Picture | → | Ícone a utilizar durante arrastar |
+| deslH | Integer | → | Deslocamento horizontal do borde esquerdo da imagem com respeito a posição do cursor (> = 0, a esquerda, <0 = a direita) |
+| deslV | Integer | → | Deslocamento vertical do borde superior da imagem com respeito a posição do cursor (> 0 = para cima, <0 = para baixo) |
@@ -63,6 +63,6 @@ Note que pode modificar a posição do cursor com respeito a imagem:
| | |
| --- | --- |
| Número do comando | 1272 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
index bac32a359c9482..c7fc4e1ec7ca91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-environment-variable.md
@@ -5,12 +5,12 @@ slug: /commands/set-environment-variable
displayed_sidebar: docs
---
-**SET ENVIRONMENT VARIABLE** ( *nomeVar* ; *valorVar* )
+**SET ENVIRONMENT VARIABLE** ( *nomeVar* : Text ; *valorVar* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeVar | Text | → | nome da variável a estabelecer. |
-| valorVar | Text | → | Valor da variável ou "" para resetar para o valor padrão |
+| nomeVar | Text | → | nome da variável a estabelecer. |
+| valorVar | Text | → | Valor da variável ou "" para resetar para o valor padrão |
@@ -23,7 +23,7 @@ Recomenda-se usar a classe [`4D.SystemWorker class`](../API/SystemWorkerClass.md
## Descrição
-O comando **SET ENVIRONMENT VARIABLE** permite fixar o valor de uma variável de ambiente em macOS e Windows. Está projetado para ser utilizado com o comando [LAUNCH EXTERNAL PROCESS](launch-external-process.md).. Também funciona com o comando [PHP Execute](php-execute.md).
+O comando **SET ENVIRONMENT VARIABLE** permite fixar o valor de uma variável de ambiente em macOS e Windows. Está projetado para ser utilizado com o comando [LAUNCH EXTERNAL PROCESS](launch-external-process.md).
Passe o nome da variável a definir em *nomVar* e seu valor em *valorVar*.
@@ -49,6 +49,6 @@ Consulte os exemplos do comando [LAUNCH EXTERNAL PROCESS](launch-external-proces
| | |
| --- | --- |
| Número do comando | 812 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
index ad5e4d87f2df01..518df31fb0cb18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-external-data-path.md
@@ -5,12 +5,12 @@ slug: /commands/set-external-data-path
displayed_sidebar: docs
---
-**SET EXTERNAL DATA PATH** ( *aCampo* ; *rota* )
+**SET EXTERNAL DATA PATH** ( *aCampo* : Text, Blob, Picture ; *rota* : Text, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aCampo | Text, Blob, Picture | → | Campo para definir o local de armazenamento |
-| rota | Text, Integer | → | Caminho e nome do arquivo d armazenamento externo ou0=usar definição da estrutura1=usar pasta padrão |
+| aCampo | Text, Blob, Picture | → | Campo para definir o local de armazenamento |
+| rota | Text, Integer | → | Caminho e nome do arquivo d armazenamento externo ou0=usar definição da estrutura1=usar pasta padrão |
@@ -64,6 +64,6 @@ Se você deseja guardar o conteúdo de um arquivo existente no campo imagem, arm
| | |
| --- | --- |
| Número do comando | 1134 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
index d8220d5135a866..a424589215c8f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-relation.md
@@ -5,13 +5,13 @@ slug: /commands/set-field-relation
displayed_sidebar: docs
---
-**SET FIELD RELATION** ( tabelaN | campoN ; *um* ; *muitos* )
+**SET FIELD RELATION** ( tabelaN | campoN ; *um* : Integer ; *muitos* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabelaN | campoN | Tabela, Campo | → | Tabela de início das relações ou Campo de início da relação |
-| um | Integer | → | Estado da relação Muitos a Um a partir do campo ou das relações Muitos a Um da tabela |
-| muitos | Integer | → | Estado da relação Um a Muitos a partir do campo ou das relações Um a Muitos da tabela |
+| tabelaN | campoN | Tabela, Campo | → | Tabela de início das relações ou Campo de início da relação |
+| um | Integer | → | Estado da relação Muitos a Um a partir do campo ou das relações Muitos a Um da tabela |
+| muitos | Integer | → | Estado da relação Um a Muitos a partir do campo ou das relações Um a Muitos da tabela |
@@ -55,7 +55,7 @@ QR REPORT(\[Faturas\];Char(1))\[#/code4D\]
| | |
| --- | --- |
| Número do comando | 919 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
index de78f15102e3ad..34d7d500b0af8f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-titles.md
@@ -5,14 +5,14 @@ slug: /commands/set-field-titles
displayed_sidebar: docs
---
-**SET FIELD TITLES** ( *tabela* ; *titulosCampos* ; *numCampos* {; *} )
+**SET FIELD TITLES** ( *tabela* : Table ; *titulosCampos* : Text array ; *numCampos* : Integer array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai estabelecer os títulos dos campos |
-| titulosCampos | Text array | → | Nomes dos campos do jeito que eles vão aparecer nas caixas de diálogo |
-| numCampos | Integer array | → | Números de campos atuais |
-| * | Operator | → | Use os nomes personalizados no editor de fórmulas |
+| tabela | Table | → | Tabela para a qual vai estabelecer os títulos dos campos |
+| titulosCampos | Text array | → | Nomes dos campos do jeito que eles vão aparecer nas caixas de diálogo |
+| numCampos | Integer array | → | Números de campos atuais |
+| * | Operator | → | Use os nomes personalizados no editor de fórmulas |
@@ -66,6 +66,6 @@ Ver o exemplo do comando [SET TABLE TITLES](set-table-titles.md).
| | |
| --- | --- |
| Número do comando | 602 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
index 5185097731b586..0e7ad9d92f76ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-field-value-null.md
@@ -5,11 +5,11 @@ slug: /commands/set-field-value-null
displayed_sidebar: docs
---
-**SET FIELD VALUE NULL** ( *campo* )
+**SET FIELD VALUE NULL** ( *campo* : Field )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | Campo onde o valor NULL vai ser atribuído |
+| campo | Field | → | Campo onde o valor NULL vai ser atribuído |
@@ -34,6 +34,6 @@ O valor NULL é utilizado pelo motor SQL de 4D. Para maior informação, consult
| | |
| --- | --- |
| Número do comando | 965 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
index be49f23ca7a15f..05c952e105e663 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-file-to-pasteboard.md
@@ -5,12 +5,12 @@ slug: /commands/set-file-to-pasteboard
displayed_sidebar: docs
---
-**SET FILE TO PASTEBOARD** ( *rotaArquivo* {; *} )
+**SET FILE TO PASTEBOARD** ( *rotaArquivo* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaArquivo | Text | → | Nome do arquivo ou rota de acesso completa |
-| * | Operador | → | Se passar = adicionar; se omitido = substituir |
+| rotaArquivo | Text | → | Nome do arquivo ou rota de acesso completa |
+| * | Operador | → | Se passar = adicionar; se omitido = substituir |
@@ -33,6 +33,6 @@ O comando admite o asterisco *\** como parâmetro opcional. Automaticamente, qua
| | |
| --- | --- |
| Número do comando | 975 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
index 5160463b2d30d2..13fae7fd9b111f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-access.md
@@ -5,11 +5,11 @@ slug: /commands/set-group-access
displayed_sidebar: docs
---
-**SET GROUP ACCESS** {( *grupos* )}
+**SET GROUP ACCESS** ({ *grupos* : Collection })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| grupos | Collection | → | Nome dos grupos ao qual a conta de usuário 4D deve pertencer durante a sessão |
+| grupos | Collection | → | Nome dos grupos ao qual a conta de usuário 4D deve pertencer durante a sessão |
@@ -50,7 +50,7 @@ Se quiser promover o usuário atual aos grupos "admin" e "plugins" durante a ses
| | |
| --- | --- |
| Número do comando | 1737 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
index c7b54af7ca0a51..0b6994c2bb132e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-group-properties.md
@@ -5,15 +5,14 @@ slug: /commands/set-group-properties
displayed_sidebar: docs
---
-**Set group properties** ( *refGrupo* ; *nome* ; *proprietario* {; *membros*} ) : Integer
+**Set group properties** ( *refGrupo* : Integer ; *nome* : Text ; *proprietario* : Integer {; *membros* : Integer array} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refGrupo | Integer | → | Número de ID do grupo; ou -1 para adicionar um grupo Designer, ou -2 para adicionar um grupo Administrador |
-| ← | Número de ID única do grupo adicionado (se houver) |
-| nome | Text | → | Novo nome do grupo |
-| proprietario | Integer | → | Número de ID do novo proprietário do grupo |
-| membros | Integer array | → | Novos membros do grupo |
+| refGrupo | Integer | ↔ | *in:* Unique ID number of group, -1 for adding a group
*out:* Unique ID number of added group (if any) |
+| nome | Text | → | Novo nome do grupo |
+| proprietario | Integer | → | Número de ID do novo proprietário do grupo |
+| membros | Integer array | → | Novos membros do grupo |
| Resultado | Integer | ← | Nº de ID do novo grupo |
@@ -62,7 +61,7 @@ Se você não tiver os acessos de privilégio para chamar Set group properties o
| | |
| --- | --- |
| Número do comando | 614 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
index 55781c270c8a11..11f6894378088e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-help-menu.md
@@ -5,11 +5,11 @@ slug: /commands/set-help-menu
displayed_sidebar: docs
---
-**SET HELP MENU** ( *menuCol* )
+**SET HELP MENU** ( *menuCol* : Collection )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menuCol | Collection | → | Coleção de objetos menu |
+| menuCol | Collection | → | Coleção de objetos menu |
@@ -65,6 +65,6 @@ Se quiser personalizar o menu **Ajuda** de sua aplicação:
| | |
| --- | --- |
| Número do comando | 1801 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
index 6489f85a35f35d..6caecbc2eef947 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-index-cache-priority
displayed_sidebar: docs
---
-**SET INDEX CACHE PRIORITY** ( *Campo* ; *prioridade* )
+**SET INDEX CACHE PRIORITY** ( *Campo* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Field | Field | → | Campo cujo valor de prioridade de índices vai ser estabelecida para a sessão |
-| prioridade | Integer | → | Valor de prioridade cache para o campo índice |
+| Field | Field | → | Campo cujo valor de prioridade de índices vai ser estabelecida para a sessão |
+| prioridade | Integer | → | Valor de prioridade cache para o campo índice |
@@ -54,6 +54,6 @@ Em , se quiser estabelecer uma alta prioridade para os índices campo \[Customer
| | |
| --- | --- |
| Número do comando | 1401 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
index 2343edf4d1d55d..abf56d8d1c5783 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-index.md
@@ -5,13 +5,13 @@ slug: /commands/set-index
displayed_sidebar: docs
---
-**SET INDEX** ( *campo* ; *indice* {; *} )
+**SET INDEX** ( *campo* : Field ; *indice* : Boolean, Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campo | Field | → | campo para o qual criar ou apagar o índice |
-| indice | Boolean, Integer | → | True = criar índice, False = apagar índice, ou Criar um índice do tipo: -1=palavras chaves, 0= por padrão, 1=B-Tree padrão, 3=B-Tree cluster |
-| * | Operator | → | Índice assincrônico se * for passado |
+| campo | Field | → | campo para o qual criar ou apagar o índice |
+| indice | Boolean, Integer | → | True = criar índice, False = apagar índice, ou Criar um índice do tipo: -1=palavras chaves, 0= por padrão, 1=B-Tree padrão, 3=B-Tree cluster |
+| * | Operator | → | Índice assincrônico se * for passado |
@@ -96,6 +96,6 @@ O exemplo abaixo indexa o campo *\[Clientes\]Num*:
| | |
| --- | --- |
| Número do comando | 344 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
index 0f97d4a257446c..25845071026db6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-font.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-font
displayed_sidebar: docs
---
-**SET LIST ITEM FONT** ( {* ;} *lista* ; refElem | * ; *fonte* )
+**SET LIST ITEM FONT** ( {* ;} *lista* : Integer, Text ; refElem | * ; *fonte* : Text, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| fonte | Text, Integer | → | Nome ou número de fonte |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| fonte | Text, Integer | → | Nome ou número de fonte |
@@ -50,6 +50,6 @@ Aplicar a fonte Times ao elemento atual da lista:
| | |
| --- | --- |
| Número do comando | 953 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
index 5dfad97bd5e137..821c75eeab3bac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-list-item-icon
displayed_sidebar: docs
---
-**SET LIST ITEM ICON** ( {* ;} *lista* ; refElem | * ; *icone* )
+**SET LIST ITEM ICON** ( {* ;} *lista* : Integer, Text ; refElem | * ; *icone* : Picture )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| icone | Picture | → | Ícone a associar ao elemento |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Inteiro longo, Operador | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| icone | Picture | → | Ícone a associar ao elemento |
@@ -52,6 +52,6 @@ Queremos atribuir a mesma imagem a dois elementos diferentes. O seguinte código
| | |
| --- | --- |
| Número do comando | 950 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
index 252cd4e8f1eb89..43bcf072105296 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-parameter.md
@@ -5,15 +5,15 @@ slug: /commands/set-list-item-parameter
displayed_sidebar: docs
---
-**SET LIST ITEM PARAMETER** ( {* ;} *lista* ; refElem | * ; *seletor* ; *valor* )
+**SET LIST ITEM PARAMETER** ( {* ;} *lista* : Integer, Text ; refElem | * ; *seletor* : Text ; *valor* : Text, Boolean, Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| seletor | Text | → | Constante do parâmetro |
-| valor | Text, Boolean, Real | → | Valor do parâmetro |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| seletor | Text | → | Constante do parâmetro |
+| valor | Text, Boolean, Real | → | Valor do parâmetro |
@@ -69,6 +69,6 @@ APPEND TO LIST($myList;ak standard action title;1)
| | |
| --- | --- |
| Número do comando | 986 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
index 50473a12b36a01..7962cd54640eb2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item-properties
displayed_sidebar: docs
---
-**SET LIST ITEM PROPERTIES** ( {* ;} *lista* ; refElem | * ; *editavel* ; *estilos* {; *icone* {; *cor*}} )
+**SET LIST ITEM PROPERTIES** ( {* ;} *lista* : Integer, Text ; refElem | * ; *editavel* : Boolean ; *estilos* : Integer {; *icone* : Text, Integer {; *cor* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se for especificado, lista é um nome de objeto (string). Se omitido, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número lista referência (se* for omitido) ou Nome do objeto tipo lista (se * for passado) |
-| refElem | * | Operador, Inteiro longo | → | Número referência Item, ou 0 para o último item anexado a lista, ou * para o item de lista atual |
-| editavel | Boolean | → | True = editável, False = não editável |
-| estilos | Integer | → | Estilo de fonte para o item |
-| icone | Text, Integer | → | Nome da Imagem ou número ("" ou 0 se não houver ícone) |
-| cor | Integer | → | Valor de cor RGB ou -1 = volta para a cor original |
+| * | Operador | → | Se for especificado, lista é um nome de objeto (string). Se omitido, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número lista referência (se* for omitido) ou Nome do objeto tipo lista (se * for passado) |
+| refElem | * | Operador, Inteiro longo | → | Número referência Item, ou 0 para o último item anexado a lista, ou * para o item de lista atual |
+| editavel | Boolean | → | True = editável, False = não editável |
+| estilos | Integer | → | Estilo de fonte para o item |
+| icone | Text, Integer | → | Nome da Imagem ou número ("" ou 0 se não houver ícone) |
+| cor | Integer | → | Valor de cor RGB ou -1 = volta para a cor original |
@@ -85,6 +85,6 @@ O exemplo a seguir modifica o texto do elemento atual de *lista* negrito e verme
| | |
| --- | --- |
| Número do comando | 386 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
index abea7a48689e8e..bf990913c68302 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-item.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-item
displayed_sidebar: docs
---
-**SET LIST ITEM** ( {* ;} *lista* ; refElem | * ; *novoText* ; *novoNum* {; *sublista* ; *expandida*} )
+**SET LIST ITEM** ( {* ;} *lista* : Integer, Text ; refElem | * ; *novoText* : Text ; *novoNum* : Integer {; *sublista* : Integer ; *expandida* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
-| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
-| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
-| novoText | Text | → | Novo texto do elemento |
-| novoNum | Integer | → | Novo número de referência do elemento |
-| sublista | Integer | → | Nova sub-lista associada ao elemento, ou 0 = nenhuma sub-lista (separar atual, se existe), ou -1 = nenhuma muda |
-| expandida | Boolean | → | Indica se a sub-lista deve ser expandida ou contraída |
+| * | Operador | → | Se especificada, lista é um nome de objeto (cadeia) Se omitida, lista é um número de referência de lista |
+| lista | Integer, Text | → | Número de referência de lista (se omitida *) ou Nome do objeto de tipo lista (se passada *) |
+| refElem | * | Operador, Inteiro longo | → | Número de referencia do elemento, ou 0 para o último elemento adicionado à lista ou * para o elemento da lista atualmente selecionada |
+| novoText | Text | → | Novo texto do elemento |
+| novoNum | Integer | → | Novo número de referência do elemento |
+| sublista | Integer | → | Nova sub-lista associada ao elemento, ou 0 = nenhuma sub-lista (separar atual, se existe), ou -1 = nenhuma muda |
+| expandida | Boolean | → | Indica se a sub-lista deve ser expandida ou contraída |
@@ -83,6 +83,6 @@ Ver exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 385 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
index 75671b04ce0235..6ef98260083a3d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-list-properties.md
@@ -5,17 +5,17 @@ slug: /commands/set-list-properties
displayed_sidebar: docs
---
-**SET LIST PROPERTIES** ( *lista* ; *aparencia* {; *icone* {; *alturaLinha* {; *duploClique* {; *multiSeleçao* {; *editavel*}}}}} )
+**SET LIST PROPERTIES** ( *lista* : Integer ; *aparencia* : Integer {; *icone* : Integer {; *alturaLinha* : Integer {; *duploClique* : Integer {; *multiSeleçao* : Integer {; *editavel* : Integer}}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| aparencia | Integer | → | Estilo gráfico da lista 1 = Lista hierárquica à Macintosh 2 = Lista hierárquica à Windows 0 = Aparição auto dependendo da plataforma |
-| icone | Integer | → | ID de recurso Mac OS ‘cicn’ ou 0 = ícone por padrão da plataforma |
-| alturaLinha | Integer | → | Altura mínima da linha expressada em pixels |
-| duploClique | Integer | → | Expandir/Contrair sub-lista com duplo-clique 0 = Sim, 1= Não |
-| multiSeleçao | Integer | → | Seleções múltiplas: 0 = Não (por padrão), 1 = Sim |
-| editavel | Integer | → | 0=Lista não é editável pelo usuário, 1=Lista não é editável pelo usuário (padrão) |
+| lista | Integer | → | Número de referência da lista |
+| aparencia | Integer | → | Estilo gráfico da lista 1 = Lista hierárquica à Macintosh 2 = Lista hierárquica à Windows 0 = Aparição auto dependendo da plataforma |
+| icone | Integer | → | ID de recurso Mac OS ‘cicn’ ou 0 = ícone por padrão da plataforma |
+| alturaLinha | Integer | → | Altura mínima da linha expressada em pixels |
+| duploClique | Integer | → | Expandir/Contrair sub-lista com duplo-clique 0 = Sim, 1= Não |
+| multiSeleçao | Integer | → | Seleções múltiplas: 0 = Não (por padrão), 1 = Sim |
+| editavel | Integer | → | 0=Lista não é editável pelo usuário, 1=Lista não é editável pelo usuário (padrão) |
@@ -70,6 +70,6 @@ Se deseja recusar a sublista de expandir/contrair ao dar duplo clique, pode escr
| | |
| --- | --- |
| Número do comando | 387 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
index d6de072df27e2b..fb093fe111db20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-macro-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/set-macro-parameter
displayed_sidebar: docs
---
-**SET MACRO PARAMETER** ( *seletor* ; *paramTexto* )
+**SET MACRO PARAMETER** ( *seletor* : Integer ; *paramTexto* )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Seleção a usar |
-| paramText | Text | → | Texto enviado |
+| seletor | Integer | → | Seleção a usar |
+| paramText | Text | → | Texto enviado |
@@ -62,6 +62,6 @@ Esta macro cria um novo texto que será devolvido ao método que faz a chamada:
| | |
| --- | --- |
| Número do comando | 998 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
index 570f3f5facb957..c2c9af5e8b40f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-bar.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-bar
displayed_sidebar: docs
---
-**SET MENU BAR** ( *barra* {; *processo*}{; *} )
+**SET MENU BAR** ( *barra* : Integer, Text, Text {; *processo* : Integer}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| barra | Integer, Text, Text | → | Número ou nome da barra de menu ou referência de Menu |
-| processo | Integer | → | Número de referência de processo |
-| * | Operador | → | Guardar estado da barra de menu |
+| barra | Integer, Text, Text | → | Número ou nome da barra de menu ou referência de Menu |
+| processo | Integer | → | Número de referência de processo |
+| * | Operador | → | Guardar estado da barra de menu |
@@ -124,6 +124,6 @@ Neste exemplo, criaremos por programação, uma barra de menus incluindo os segu
| | |
| --- | --- |
| Número do comando | 67 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
index 3f79bd6a1b3768..f54306aa0e4d39 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-icon.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-icon
displayed_sidebar: docs
---
-**SET MENU ITEM ICON** ( *menu* ; *menuItem* ; *iconeRef* {; *processo*} )
+**SET MENU ITEM ICON** ( *menu* : Integer, Text ; *menuItem* : Integer ; *iconeRef* : Text, Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de referência ou Número de Menu |
-| menuItem | Integer | → | Número do item de menu ou -1 para o último item adicionado ao menu |
-| iconeRef | Text, Integer | → | Nome ou número de imagem a ser associado com o item de menu |
-| processo | Integer | → | Número de processo |
+| menu | Integer, Text | → | Número de referência ou Número de Menu |
+| menuItem | Integer | → | Número do item de menu ou -1 para o último item adicionado ao menu |
+| iconeRef | Text, Integer | → | Nome ou número de imagem a ser associado com o item de menu |
+| processo | Integer | → | Número de processo |
@@ -49,6 +49,6 @@ Uso de uma imagem localizada na pasta Recursos do banco de dados:
| | |
| --- | --- |
| Número do comando | 984 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
index 2414ce389ef1a5..3b9705fab9f9e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-mark.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-mark
displayed_sidebar: docs
---
-**SET MENU ITEM MARK** ( *menu* ; *menuItem* ; *marcar* {; *processo*} )
+**SET MENU ITEM MARK** ( *menu* : Integer, Text ; *menuItem* : Integer ; *marcar* : Text {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de Item ou -1 para o último item adicionado |
-| marcar | Text | → | Marcar item Novo menu |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de Item ou -1 para o último item adicionado |
+| marcar | Text | → | Marcar item Novo menu |
+| processo | Integer | → | Número de referência de processo |
@@ -42,7 +42,7 @@ Ver exemplo para o comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número do comando | 208 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
index 066f2f7a1dd46e..420198023bd27b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-method.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-method
displayed_sidebar: docs
---
-**SET MENU ITEM METHOD** ( *menu* ; *menuItem* ; *nomeMetodo* {; *processo*} )
+**SET MENU ITEM METHOD** ( *menu* : Integer, Text ; *menuItem* : Integer ; *nomeMetodo* : Text {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| nomeMetodo | Text | → | Nome do método |
-| processo | Integer | → | Número de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| nomeMetodo | Text | → | Nome do método |
+| processo | Integer | → | Número de processo |
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 982 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
index ff42ac0c6dc0ff..93e242afc42a42 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/set-menu-item-parameter
displayed_sidebar: docs
---
-**SET MENU ITEM PARAMETER** ( *menu* ; *menuItem* ; *param* )
+**SET MENU ITEM PARAMETER** ( *menu* : Integer, Text ; *menuItem* : Integer ; *param* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| param | Text | → | String a ser associado como parâmetro |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| param | Text | → | String a ser associado como parâmetro |
@@ -47,6 +47,6 @@ Este código oferece um menu que inclui os nomes das janelas abertas e permite r
| | |
| --- | --- |
| Número do comando | 1004 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
index e8858aca133090..56b919d0fab53e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-property.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-property
displayed_sidebar: docs
---
-**SET MENU ITEM PROPERTY** ( *menu* ; *menuItem* ; *propriedade* ; *valor* {; *processo*} )
+**SET MENU ITEM PROPERTY** ( *menu* : Integer, Text ; *menuItem* : Integer ; *propriedade* : Text ; *valor* : Text, Real, Boolean {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
-| propriedade | Text | → | Tipo de propriedade |
-| valor | Text, Number, Boolean | → | Valor da propriedade |
-| processo | Integer | → | Número de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado ao menu |
+| propriedade | Text | → | Tipo de propriedade |
+| valor | Text, Real, Boolean | → | Valor da propriedade |
+| processo | Integer | → | Número de processo |
@@ -68,6 +68,6 @@ Proprierdade personalizada - Nesta propriedade pode passar qualquer texto person
| | |
| --- | --- |
| Número do comando | 973 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
index 917609c912dd2b..a5039556f1ca9e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-shortcut.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item-shortcut
displayed_sidebar: docs
---
-**SET MENU ITEM SHORTCUT** ( *menu* ; *menuItem* ; *itemKey* ; *modificadores* {; *processo*} )
+**SET MENU ITEM SHORTCUT** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemKey* : Text, Integer ; *modificadores* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
-| itemKey | Text, Integer | → | Letra de atalho do teclado ou código do Caractere do atalho de teclado (sintaxe antiga) |
-| modificadores | Integer | → | Modificador(es) para associar com atalho (ignorado se código de tecla for passado) |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para o último item adicionado |
+| itemKey | Text, Integer | → | Letra de atalho do teclado ou código do Caractere do atalho de teclado (sintaxe antiga) |
+| modificadores | Integer | → | Modificador(es) para associar com atalho (ignorado se código de tecla for passado) |
+| processo | Integer | → | Número de referência de processo |
@@ -82,7 +82,7 @@ Definição do atalho\\shortcut para o item de menu "Close:
| | |
| --- | --- |
| Número do comando | 423 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
index c44ca3c8e2fa92..70439dfee68351 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item-style.md
@@ -5,14 +5,14 @@ slug: /commands/set-menu-item-style
displayed_sidebar: docs
---
-**SET MENU ITEM STYLE** ( *menu* ; *menuItem* ; *itemEstilo* {; *processo*} )
+**SET MENU ITEM STYLE** ( *menu* : Integer, Text ; *menuItem* : Integer ; *itemEstilo* : Integer {; *processo* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item de menu ou -1 para último item adicionado |
-| itemEstilo | Integer | → | Novo estilo de item de menu |
-| processo | Integer | → | Número de referência de processo |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item de menu ou -1 para último item adicionado |
+| itemEstilo | Integer | → | Novo estilo de item de menu |
+| processo | Integer | → | Número de referência de processo |
@@ -44,7 +44,7 @@ No parâmetro *itemEstilo* pode definir o estilo do elemento. Passe uma combina
| | |
| --- | --- |
| Número do comando | 425 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
index 1c8889b0000543..67e95c59d5667b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-menu-item.md
@@ -5,15 +5,15 @@ slug: /commands/set-menu-item
displayed_sidebar: docs
---
-**SET MENU ITEM** ( *menu* ; *menuItem* ; *textoElem* {; *processo*}{; *} )
+**SET MENU ITEM** ( *menu* : Integer, Text ; *menuItem* : Integer ; *textoElem* : Text {; *processo* : Integer}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| menu | Integer, Text | → | Número de menu ou menu de referência |
-| menuItem | Integer | → | Número de item menu ou -1 para o último item adicionado |
-| textoElem | Text | → | Novo texto para o item de menu |
-| processo | Integer | → | Número de referência do processo |
-| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
+| menu | Integer, Text | → | Número de menu ou menu de referência |
+| menuItem | Integer | → | Número de item menu ou -1 para o último item adicionado |
+| textoElem | Text | → | Novo texto para o item de menu |
+| processo | Integer | → | Número de referência do processo |
+| * | Operador | → | Se passado: considerar metacaracteres como caracteres comuns |
@@ -38,7 +38,7 @@ Se omitir o parâmetro *processo*, SET MENU ITEM é aplicada à barra de menus d
| | |
| --- | --- |
| Número do comando | 348 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
index 08724708fc07e6..70cf9384fc30cf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-file-name.md
@@ -5,12 +5,12 @@ slug: /commands/set-picture-file-name
displayed_sidebar: docs
---
-**SET PICTURE FILE NAME** ( *imagem* ; *nomArquivo* )
+**SET PICTURE FILE NAME** ( *imagem* : Picture, Picture ; *nomArquivo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture, Picture | → | Imagem para à qual definir o nome por padrão |
-| nomArquivo | Text | → | Nome da imagem por padrão |
+| imagem | Picture, Picture | → | Imagem para à qual definir o nome por padrão |
+| nomArquivo | Text | → | Nome da imagem por padrão |
@@ -32,6 +32,6 @@ O nome por defeito se utiliza como nome de arquivo quando a imagem se exporta em
| | |
| --- | --- |
| Número do comando | 1172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
index 6072c79fe081b9..bc7b97fd7eb407 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-metadata.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-metadata
displayed_sidebar: docs
---
-**SET PICTURE METADATA** ( *imagem* ; *nomeMeta* ; *conteudoMeta* {; *nomeMeta2* ; *conteudoMeta2* ; ... ; *nomeMetaN* ; *conteudoMetaN*} )
+**SET PICTURE METADATA** ( *imagem* : Picture ; *nomeMeta* : Text ; *conteudoMeta* : Variable {; ...(*nomeMeta* : Text, *conteudoMeta* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem cujos metadados você deseja estabelecer |
-| nomeMeta | Text | → | Nome ou caminho do bloco a ser estabelecido |
-| conteudoMeta | Variable | → | Conteúdo do metadado |
+| imagem | Picture | → | Imagem cujos metadados você deseja estabelecer |
+| nomeMeta | Text | → | Nome ou caminho do bloco a ser estabelecido |
+| conteudoMeta | Variable | → | Conteúdo do metadado |
@@ -93,7 +93,7 @@ Quanto todos os metadados são manipulados via uma referência de elementos DOM,
| | |
| --- | --- |
| Número do comando | 1121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
index 458ed3480a54ad..cef635cd16d283 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-library.md
@@ -5,13 +5,13 @@ slug: /commands/set-picture-to-library
displayed_sidebar: docs
---
-**SET PICTURE TO LIBRARY** ( *imagem* ; *refImag* ; *nomeImagem* )
+**SET PICTURE TO LIBRARY** ( *imagem* : Picture ; *refImag* : Integer ; *nomeImagem* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Nova Imagem |
-| refImag | Integer | → | Número de referência da Biblioteca de Imagens |
-| nomeImagem | Text | → | Novo nome da imagem |
+| imagem | Picture | → | Nova Imagem |
+| refImag | Integer | → | Número de referência da Biblioteca de Imagens |
+| nomeImagem | Text | → | Novo nome da imagem |
@@ -98,7 +98,7 @@ Se não houver suficiente memória para adicionar a imagem à biblioteca de imag
| | |
| --- | --- |
| Número do comando | 566 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
index 26869f8eada82d..d40989e0d0130e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-picture-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-picture-to-pasteboard
displayed_sidebar: docs
---
-**SET PICTURE TO PASTEBOARD** ( *imagem* )
+**SET PICTURE TO PASTEBOARD** ( *imagem* : Picture )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Imagem a ser colocada na área de transferência |
+| imagem | Picture | → | Imagem a ser colocada na área de transferência |
@@ -54,7 +54,7 @@ Se não houver suficiente memória para colocar uma cópia da imagem na área de
| | |
| --- | --- |
| Número do comando | 521 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
index 587d200faabc56..466989478c0fee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-plugin-access.md
@@ -5,12 +5,12 @@ slug: /commands/set-plugin-access
displayed_sidebar: docs
---
-**SET PLUGIN ACCESS** ( *plugIn* ; *grupo* )
+**SET PLUGIN ACCESS** ( *plugIn* : Integer ; *grupo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| plugIn | Integer | → | Número de plug-in |
-| grupo | Text | → | Nome do grupo associado ao plug-in |
+| plugIn | Integer | → | Número de plug-in |
+| grupo | Text | → | Nome do grupo associado ao plug-in |
@@ -49,6 +49,6 @@ Passe no parâmetro *grupo* o nome do grupo cujos usuários estão autorizados a
| | |
| --- | --- |
| Número do comando | 845 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
index 19aaa57019010e..993ac4582beb6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-marker.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-marker
displayed_sidebar: docs
---
-**SET PRINT MARKER** ( *markNum* ; *posiçao* {; *} )
+**SET PRINT MARKER** ( *markNum* : Integer ; *posiçao* : Integer {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| markNum | Integer | → | Número do marcador |
-| posiçao | Integer | → | Nova posição do marcador |
-| * | Operador | → | Se passado = mover marcadores seguintes; se omitido = não move os marcadores seguintes |
+| markNum | Integer | → | Número do marcador |
+| posiçao | Integer | → | Nova posição do marcador |
+| * | Operador | → | Se passado = mover marcadores seguintes; se omitido = não move os marcadores seguintes |
@@ -192,6 +192,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número do comando | 709 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
index 34bd80231247b2..dec6e591159b46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-option.md
@@ -5,13 +5,13 @@ slug: /commands/set-print-option
displayed_sidebar: docs
---
-**SET PRINT OPTION** ( *opção* ; *valor1* {; *valor2*} )
+**SET PRINT OPTION** ( *opção* : Integer ; *valor1* : Integer, Text {; *valor2* : Integer, Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opção | Integer | → | Número da opção |
-| valor1 | Integer, Text | → | Valor 1 da opção |
-| valor2 | Integer, Text | → | Valor 2 da opção |
+| opção | Integer | → | Número da opção |
+| valor1 | Integer, Text | → | Valor 1 da opção |
+| valor2 | Integer, Text | → | Valor 2 da opção |
@@ -86,7 +86,7 @@ Se o valor passado por uma *opção* é incorreto ou se não estiver disponível
| | |
| --- | --- |
| Número do comando | 733 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
index fcf698b84f585d..dd0d7c4e7b2662 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-print-preview.md
@@ -5,11 +5,11 @@ slug: /commands/set-print-preview
displayed_sidebar: docs
---
-**SET PRINT PREVIEW** ( *vistaprevia* )
+**SET PRINT PREVIEW** ( *vistaprevia* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| vistaprevia | Boolean | → | Pré-visualização em tela (TRUE), ou sem vista prévia (FALSE) |
+| vistaprevia | Boolean | → | Pré-visualização em tela (TRUE), ou sem vista prévia (FALSE) |
@@ -42,6 +42,6 @@ O exemplo a seguir seleciona a opção Pré-visualização em tela para mostrar
| | |
| --- | --- |
| Número do comando | 364 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
index 3846ddba741032..8f5727bd1049a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-printable-margin.md
@@ -5,14 +5,14 @@ slug: /commands/set-printable-margin
displayed_sidebar: docs
---
-**SET PRINTABLE MARGIN** ( *esquerda* ; *superior* ; *direita* ; *inferior* )
+**SET PRINTABLE MARGIN** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| esquerda | Integer | → | Margem esquerda |
-| superior | Integer | → | Margem superior |
-| direita | Integer | → | Margem direita |
-| inferior | Integer | → | Margem inferior |
+| esquerda | Integer | → | Margem esquerda |
+| superior | Integer | → | Margem superior |
+| direita | Integer | → | Margem direita |
+| inferior | Integer | → | Margem inferior |
@@ -63,6 +63,6 @@ O exemplo a seguir lhe permite obter o tamanho do papel:
| | |
| --- | --- |
| Número do comando | 710 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
index b6da796384460c..e21f8eb5676ae1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-process-variable.md
@@ -5,13 +5,13 @@ slug: /commands/set-process-variable
displayed_sidebar: docs
---
-**SET PROCESS VARIABLE** ( *processo* ; *dstVar* ; *expr* {; *dstVar2* ; *expr2* ; ... ; *dstVarN* ; *exprN*} )
+**SET PROCESS VARIABLE** ( *processo* : Integer ; *dstVar* : Variable ; *expr* : Variable {; ...(*dstVar* : Variable, *expr* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número do processo de destino |
-| dstVar | Variable | → | Variável de destino |
-| expr | Variable | → | Fonte da expressão (ou variável fonte) |
+| processo | Integer | → | Número do processo de destino |
+| dstVar | Variable | → | Variável de destino |
+| expr | Variable | → | Fonte da expressão (ou variável fonte) |
@@ -102,6 +102,6 @@ Este exemplo escreve a instância das variáveis *v1*, *v2* e *v3* utilizando a
| | |
| --- | --- |
| Número do comando | 370 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
index c63155b0429f6d..6fe29a8108cd4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-and-lock.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-and-lock
displayed_sidebar: docs
---
-**SET QUERY AND LOCK** ( *bloq* )
+**SET QUERY AND LOCK** ( *bloq* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| bloq | Boolean | → | True = bloquear os registros encontrados por pesquisas; False = Não bloquear os registros |
+| bloq | Boolean | → | True = bloquear os registros encontrados por pesquisas; False = Não bloquear os registros |
@@ -75,7 +75,7 @@ Se o comando não é chamado no contexto de uma transação, um erro é gerado.
| | |
| --- | --- |
| Número do comando | 661 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
index 03747d3013696a..6e0c6b4a2c7c51 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-destination.md
@@ -5,13 +5,13 @@ slug: /commands/set-query-destination
displayed_sidebar: docs
---
-**SET QUERY DESTINATION** ( *tipoDestino* {; *objetoDestino* {; *destPonteiro*}} )
+**SET QUERY DESTINATION** ( *tipoDestino* : Integer {; *objetoDestino* : Text, Variable {; *destPonteiro*}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoDestino | Integer | → | 0 - seleção atual 1 - conjunto 2 - seleção temporária 3 - variável |
-| objetoDestino | Text, Variable | → | Nome do conjunto, ou nome da seleção temporária, ou Variável |
-| destPointer | Pointer | → | Poneiro a variável local se destinação for Tipo=3 |
+| tipoDestino | Integer | → | 0 - seleção atual 1 - conjunto 2 - seleção temporária 3 - variável |
+| objetoDestino | Text, Variable | → | Nome do conjunto, ou nome da seleção temporária, ou Variável |
+| destPointer | Pointer | → | Poneiro a variável local se destinação for Tipo=3 |
@@ -260,6 +260,6 @@ Depois de implementar este método de projeto em sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 396 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
index 9e37fcf57b8537..3acf45bda43237 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-query-limit.md
@@ -5,11 +5,11 @@ slug: /commands/set-query-limit
displayed_sidebar: docs
---
-**SET QUERY LIMIT** ( *limite* )
+**SET QUERY LIMIT** ( *limite* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| limite | Integer | → | Número de registros, ou 0 se não houver limite |
+| limite | Integer | → | Número de registros, ou 0 se não houver limite |
@@ -69,6 +69,6 @@ Ver o segundo exemplo do comando [SET QUERY DESTINATION](set-query-destination.m
| | |
| --- | --- |
| Número do comando | 395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
index 2594ce9bf5c686..4145f75382feca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-real-comparison-level.md
@@ -5,11 +5,11 @@ slug: /commands/set-real-comparison-level
displayed_sidebar: docs
---
-**SET REAL COMPARISON LEVEL** ( *epsilon* )
+**SET REAL COMPARISON LEVEL** ( *epsilon* : Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| epsilon | Real | → | Valor epsilon para comparações de igualdade entre reais |
+| epsilon | Real | → | Valor epsilon para comparações de igualdade entre reais |
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL** , pode aumentar ou reduzir o valor epsi
| | |
| --- | --- |
| Número do comando | 623 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
index bc2fdeb8a12a63..368c85ea9fdb95 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-recent-fonts.md
@@ -5,11 +5,11 @@ slug: /commands/set-recent-fonts
displayed_sidebar: docs
---
-**SET RECENT FONTS** ( *fontsArray* )
+**SET RECENT FONTS** ( *fontsArray* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fontsArray | Text array | → | Array of font names |
+| fontsArray | Text array | → | Array of font names |
@@ -47,6 +47,6 @@ Then the menu contains:
| | |
| --- | --- |
| Número do comando | 1305 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
index b0a389fbcc7913..a449423176a0f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-cache-priority.md
@@ -5,12 +5,12 @@ slug: /commands/set-table-cache-priority
displayed_sidebar: docs
---
-**SET TABLE CACHE PRIORITY** ( *Tabela* ; *prioridade* )
+**SET TABLE CACHE PRIORITY** ( *Tabela* ; *prioridade* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Table | Table | → | Tabela cuja prioridade de dados escalar vai ser estabelecida para a sessão |
-| prioridade | Integer | → | Valor de prioridade de cache para valores escalares na tabela |
+| Table | Table | → | Tabela cuja prioridade de dados escalar vai ser estabelecida para a sessão |
+| prioridade | Integer | → | Valor de prioridade de cache para valores escalares na tabela |
@@ -55,6 +55,6 @@ Em , se quiser estabelecer uma prioridade mais alta para os dados escalares \[Cu
| | |
| --- | --- |
| Número do comando | 1400 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
index db33419f1ee5d4..39257e43073e6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-table-titles.md
@@ -5,13 +5,13 @@ slug: /commands/set-table-titles
displayed_sidebar: docs
---
-**SET TABLE TITLES** {( *titulosTabela* ; *numTabelas* {; *})}
+**SET TABLE TITLES** ({ *titulosTabela* : Text array ; *numTabelas* : Integer array {; *}})
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| titulosTabela | Text array | → | Nomes de tabela da maneira que aparecem na caixa de diálogo |
-| numTabelas | Integer array | → | Número atual de tabela |
-| * | Operador | → | Use os nomes personalizados no editor de fórmulas |
+| titulosTabela | Text array | → | Nomes de tabela da maneira que aparecem na caixa de diálogo |
+| numTabelas | Integer array | → | Número atual de tabela |
+| * | Operador | → | Use os nomes personalizados no editor de fórmulas |
@@ -185,6 +185,6 @@ Se quiser remover todos os campos personalizados e nomes de tabela definidos:
| | |
| --- | --- |
| Número do comando | 601 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
index add0df1906b67f..4a7a2354546683 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-text-to-pasteboard.md
@@ -5,11 +5,11 @@ slug: /commands/set-text-to-pasteboard
displayed_sidebar: docs
---
-**SET TEXT TO PASTEBOARD** ( *texto* )
+**SET TEXT TO PASTEBOARD** ( *texto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a copiar na área de transferência |
+| texto | Text | → | Texto a copiar na área de transferência |
@@ -43,7 +43,7 @@ Se o texto se coloca corretamente na área de transferência, a variável OK tom
| | |
| --- | --- |
| Número do comando | 523 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
index 480c7f5a7980ab..2b98ab840c2252 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timeout.md
@@ -5,11 +5,11 @@ slug: /commands/set-timeout
displayed_sidebar: docs
---
-**SET TIMEOUT** ( *segundos* )
+**SET TIMEOUT** ( *segundos* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| segundos | Integer | → | Segundos até o timeout |
+| segundos | Integer | → | Segundos até o timeout |
@@ -55,7 +55,7 @@ O exemplo a seguir define a porta serial para receber dados. Em seguida, ele def
| | |
| --- | --- |
| Número do comando | 268 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
index 78e6f6774af247..3d752cd96818bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-timer.md
@@ -5,11 +5,11 @@ slug: /commands/set-timer
displayed_sidebar: docs
---
-**SET TIMER** ( *ticCont* )
+**SET TIMER** ( *ticCont* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| ticCont | Integer | → | Número de tics |
+| ticCont | Integer | → | Número de tics |
@@ -51,6 +51,6 @@ Imaginemos que você queira, quando um formulário aparece em tela, que o comput
| | |
| --- | --- |
| Número do comando | 645 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
index 35de72115cbdcd..8ff44e1230c11c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-update-folder.md
@@ -5,12 +5,12 @@ slug: /commands/set-update-folder
displayed_sidebar: docs
---
-**SET UPDATE FOLDER** ( *viaPasta* {; *errosDiscretos*} )
+**SET UPDATE FOLDER** ( *viaPasta* : Text {; *errosDiscretos* : Boolean} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| viaPasta | Text | → | Via de acesso da pasta (pacote sob macOS) que contém a aplicação atualizada |
-| errosDiscretos | Boolean | → | False (por padrão) = mostrar mensagens de erro, True = não reportar eles |
+| viaPasta | Text | → | Via de acesso da pasta (pacote sob macOS) que contém a aplicação atualizada |
+| errosDiscretos | Boolean | → | False (por padrão) = mostrar mensagens de erro, True = não reportar eles |
@@ -59,7 +59,7 @@ Você criou uma pasta "MyUpdates" em seu disco, na qual localizou uma nova vers
| | |
| --- | --- |
| Número do comando | 1291 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
index 803978307a67ca..beec89504741f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-alias.md
@@ -5,11 +5,11 @@ slug: /commands/set-user-alias
displayed_sidebar: docs
---
-**SET USER ALIAS** ( *alias* )
+**SET USER ALIAS** ( *alias* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| alias | Text | → | Alias ou apelido é o nome de usuário alternativo para a conta de usuário 4D ou "" para resetar |
+| alias | Text | → | Alias ou apelido é o nome de usuário alternativo para a conta de usuário 4D ou "" para resetar |
@@ -46,7 +46,7 @@ Seus usuários se administran através de uma tabela personalizada e utilizam a
| | |
| --- | --- |
| Número do comando | 1666 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
index af1a2da5dbd594..4c6a6f8f892b02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-user-properties.md
@@ -5,19 +5,18 @@ slug: /commands/set-user-properties
displayed_sidebar: docs
---
-**Set user properties** ( *refUsuario* ; *nome* ; *inicio* ; *senha* ; *numLogin* ; *ultLogin* {; *adesao* {; *propGrupo*}} ) : Integer
+**Set user properties** ( *refUsuario* : Integer ; *nome* : Text ; *inicio* : Text ; *senha* : Text ; *numLogin* : Integer ; *ultLogin* : Date {; *adesao* : Integer array {; *propGrupo* : Integer}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refUsuario | Integer | → | Número de ID de conta de usuário; -1 para adicionar um usuário |
-| ← | Número de ID de conta de usuário adicionado (se houver) |
-| nome | Text | → | Novo nome de usuário |
-| inicio | Text | → | Novo método de início |
-| senha | Text | → | Nova senha (não criptografada); ou * para deixar a senha intocada |
-| numLogin | Integer | → | Novo número de logins do banco de dados |
-| ultLogin | Date | → | Nova data do último login ao banco de dados |
-| adesao | Integer array | → | Números de IDs dos grupos aos quais pertence o usuário |
-| propGrupo | Integer | → | Número de referência de usuário do proprietário do grupo |
+| refUsuario | Integer | ↔ | *in:* Unique ID number of user account, -1 for adding a user
*out:* Unique ID number of added user account (if any) |
+| nome | Text | → | Novo nome de usuário |
+| inicio | Text | → | Novo método de início |
+| senha | Text | → | Nova senha (não criptografada); ou * para deixar a senha intocada |
+| numLogin | Integer | → | Novo número de logins do banco de dados |
+| ultLogin | Date | → | Nova data do último login ao banco de dados |
+| adesao | Integer array | → | Números de IDs dos grupos aos quais pertence o usuário |
+| propGrupo | Integer | → | Número de referência de usuário do proprietário do grupo |
| Resultado | Integer | ← | Número de ID de referência do novo usuário |
@@ -70,6 +69,6 @@ Se você não tiver os acessos de privilégio para chamar Set user properties ou
| | |
| --- | --- |
| Número do comando | 612 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
index dcb4c75f243def..b34e001f02585a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-rect.md
@@ -5,16 +5,16 @@ slug: /commands/set-window-rect
displayed_sidebar: docs
---
-**SET WINDOW RECT** ( *esquerda* ; *superior* ; *direita* ; *inferior* {; *janela*}{; *} )
+**SET WINDOW RECT** ( *esquerda* : Integer ; *superior* : Integer ; *direita* : Integer ; *inferior* : Integer {; *janela* : Integer}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| esquerda | Integer | → | Coordenada global esquerda da área de conteúdo da janela |
-| superior | Integer | → | Coordenada global superior da área de conteúdo da janela |
-| direita | Integer | → | Coordenada global direita da área de conteúdo da janela |
-| inferior | Integer | → | Coordenada global inferior da área de conteúdo da janela |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
-| * | Operador | → | Se omitido (padrão) = muda janela para o fundo
Se passado = não muda o nível da janela |
+| esquerda | Integer | → | Coordenada global esquerda da área de conteúdo da janela |
+| superior | Integer | → | Coordenada global superior da área de conteúdo da janela |
+| direita | Integer | → | Coordenada global direita da área de conteúdo da janela |
+| inferior | Integer | → | Coordenada global inferior da área de conteúdo da janela |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| * | Operador | → | Se omitido (padrão) = muda janela para o fundo
Se passado = não muda o nível da janela |
@@ -66,6 +66,6 @@ A janela aparece desta forma:
| | |
| --- | --- |
| Número do comando | 444 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
index 2e0c7ce37232e5..33efc2f6e804f0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/set-window-title.md
@@ -5,12 +5,12 @@ slug: /commands/set-window-title
displayed_sidebar: docs
---
-**SET WINDOW TITLE** ( *titulo* {; *janela*} )
+**SET WINDOW TITLE** ( *titulo* : Text {; *janela* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| titulo | Text | → | título da janela |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| titulo | Text | → | título da janela |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
@@ -55,6 +55,6 @@ Enquanto realiza uma entrada de dados em um formulário, você clica em um botã
| | |
| --- | --- |
| Número do comando | 213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
index c24df7a23432bf..2dee0356cd8da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ O método abaixo de objeto para o botão *bUnBotao* realiza diferentes ações d
| | |
| --- | --- |
| Número do comando | 543 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
index 3201e023231be9..332e46ee195c1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver exemplo do comando [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Número do comando | 431 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
index 3a7dcd441de488..b1e37731c5426f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-on-disk.md
@@ -5,12 +5,12 @@ slug: /commands/show-on-disk
displayed_sidebar: docs
---
-**SHOW ON DISK** ( *nomeRota* {; *} )
+**SHOW ON DISK** ( *nomeRota* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeRota | Text | → | Rota de acesso ao item a exibir |
-| * | Operador | → | Se o item é uma pasta, mostras os conteúdos |
+| nomeRota | Text | → | Rota de acesso ao item a exibir |
+| * | Operador | → | Se o item é uma pasta, mostras os conteúdos |
@@ -54,7 +54,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 922 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
index a515aba1145695..4d0c7d212e2925 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-process.md
@@ -5,11 +5,11 @@ slug: /commands/show-process
displayed_sidebar: docs
---
-**SHOW PROCESS** ( *processo* )
+**SHOW PROCESS** ( *processo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo a ser mostrado |
+| processo | Integer | → | Número de processo a ser mostrado |
@@ -37,6 +37,6 @@ O exemplo a seguir mostra um processo chamado Clientes, que foi ocultado previam
| | |
| --- | --- |
| Número do comando | 325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
index 8aa99d9f6dcaf3..15ae20957e3db8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte o exemplo do comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número do comando | 433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
index 47bf686ab4e6f7..c2c45ee7533837 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/show-window.md
@@ -5,11 +5,11 @@ slug: /commands/show-window
displayed_sidebar: docs
---
-**SHOW WINDOW** {( *janela* )}
+**SHOW WINDOW** ({ *janela* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela ou processo atual da janela de primeiro plano, se omitido |
+| janela | Integer | → | Número de referência da janela ou processo atual da janela de primeiro plano, se omitido |
@@ -32,6 +32,6 @@ Consulte o exemplo do comando [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Número do comando | 435 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
index d5fdb4035b6679..c4b7e4790c9fbe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sin.md
@@ -5,11 +5,11 @@ slug: /commands/sin
displayed_sidebar: docs
---
-**Sin** ( *numero* ) : Real
+**Sin** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número, em radianos, cujo seno será devolvido |
+| numero | Real | → | Número, em radianos, cujo seno será devolvido |
| Resultado | Real | ← | Seno de número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 17 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
index 4e55615a7cd735..dcbfd36a26b8e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/size-of-array.md
@@ -5,11 +5,11 @@ slug: /commands/size-of-array
displayed_sidebar: docs
---
-**Size of array** ( *array* ) : Integer
+**Size of array** ( *array* : Array ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array cujo tamanho é retornado |
+| array | Array | → | Array cujo tamanho é retornado |
| Resultado | Integer | ← | Retorna o número de elementos no array |
@@ -52,6 +52,6 @@ O exemplo a seguir retorna o número de colunas em um array bidimensional:
| | |
| --- | --- |
| Número do comando | 274 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
index d5169dd07de118..3ef38866d1bb88 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-declaration.md
@@ -5,14 +5,14 @@ slug: /commands/soap-declaration
displayed_sidebar: docs
---
-**SOAP DECLARATION** ( *variavel* ; *tipo* ; entrada_saida {; *apelido*} )
+**SOAP DECLARATION** ( *variavel* : Variable ; *tipo* : Integer ; entrada_saida {; *apelido* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variavel | Variable | → | Variável que referencia um argumento de entrada ou saída SOAP |
-| tipo | Integer | → | Tipo 4D para o qual o argumento aponta |
-| entrada_saida | Integer | → | 1 = entrada SOAP; 2 = saída SOAP |
-| apelido | Text | → | Nome publicado por esse argumento usando trocas SOAP |
+| variavel | Variable | → | Variável que referencia um argumento de entrada ou saída SOAP |
+| tipo | Integer | → | Tipo 4D para o qual o argumento aponta |
+| entrada_saida | Integer | → | 1 = entrada SOAP; 2 = saída SOAP |
+| apelido | Text | → | Nome publicado por esse argumento usando trocas SOAP |
@@ -187,6 +187,6 @@ Este exemplo illustra os resultados dos diferentes tipos de declarações:
| | |
| --- | --- |
| Número do comando | 782 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
index 2bbb3c4bdd82d4..cf454a44b85920 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/soap-get-info
displayed_sidebar: docs
---
-**SOAP get info** ( *numInfo* ) : Text
+**SOAP get info** ( *numInfo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numInfo | Integer | → | Número do tipo de informação SOAP a conseguir |
+| numInfo | Integer | → | Número do tipo de informação SOAP a conseguir |
| Resultado | Text | ← | Informação SOAP |
@@ -40,6 +40,6 @@ Passe no parâmetro *numInfo* o número do tipo de informação SOAP que deseja
| | |
| --- | --- |
| Número do comando | 784 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
index 7d2f65be1bb3e3..40b9dd5d9c216f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-reject-new-requests.md
@@ -5,11 +5,11 @@ slug: /commands/soap-reject-new-requests
displayed_sidebar: docs
---
-**SOAP REJECT NEW REQUESTS** ( *rejeitarEstado* )
+**SOAP REJECT NEW REQUESTS** ( *rejeitarEstado* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rejeitarEstado | Boolean | → | True se novas petições forem rejeitadas, senão false |
+| rejeitarEstado | Boolean | → | True se novas petições forem rejeitadas, senão false |
@@ -42,6 +42,6 @@ Se quiser recusar qualquer petição nova a seu servidor de serviços web:
| | |
| --- | --- |
| Número do comando | 1636 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
index a4c01ca7d5a69b..40ba01664cbee5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Este comando pode ser utilizado por razões de segurança no *On Web Authenticat
| | |
| --- | --- |
| Número do comando | 783 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
index f72b5291c48a0c..599ad8ce834ad5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/soap-send-fault.md
@@ -5,12 +5,12 @@ slug: /commands/soap-send-fault
displayed_sidebar: docs
---
-**SOAP SEND FAULT** ( *tipoErro* ; *descriçao* )
+**SOAP SEND FAULT** ( *tipoErro* : Integer ; *descriçao* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoErro | Integer | → | 1 = Erro cliente; 2= erro Servidor |
-| descriçao | Text | → | Descrição do erro a enviar ao cliente SOAP |
+| tipoErro | Integer | → | 1 = Erro cliente; 2= erro Servidor |
+| descriçao | Text | → | Descrição do erro a enviar ao cliente SOAP |
@@ -50,6 +50,6 @@ Regresando ao exemplo do serviço Web “Raiz\_quadrada” da descrição do com
| | |
| --- | --- |
| Número do comando | 781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
index d10fe7b66fcbb9..12aeac74c88f6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-array.md
@@ -5,12 +5,12 @@ slug: /commands/sort-array
displayed_sidebar: docs
---
-**SORT ARRAY** ( *array* {; *array2* ; ... ; *arrayN*}{; > or <} )
+**SORT ARRAY** ( *array* : Array {; *...array* : Array}{; > or <} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| array | Array | → | Array a ser ordenado |
-| > or < | Operador | → | ">" para ordenar em ordem crescente, ou "<" para ordernar em ordem decrescente, ou ordem crescente se omitido |
+| array | Array | → | Array a ser ordenado |
+| > or < | Operador | → | ">" para ordenar em ordem crescente, ou "<" para ordernar em ordem decrescente, ou ordem crescente se omitido |
@@ -87,6 +87,6 @@ Você exibe os nomes da tabela *\[Pessoas\]* em uma janela flutuante. Quando voc
| | |
| --- | --- |
| Número do comando | 229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
index c0805083da3e69..ea97669d85188b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sort-list.md
@@ -5,12 +5,12 @@ slug: /commands/sort-list
displayed_sidebar: docs
---
-**SORT LIST** ( *lista* {; > ou <} )
+**SORT LIST** ( *lista* : Integer {; > ou <} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| lista | Integer | → | Número de referência da lista |
-| > ou < | Operador | → | Critério de ordenação: > ordenar em ordem ascendente, ou < ordenar em ordem descendente |
+| lista | Integer | → | Número de referência da lista |
+| > ou < | Operador | → | Critério de ordenação: > ordenar em ordem ascendente, ou < ordenar em ordem descendente |
@@ -62,6 +62,6 @@ A lista se verá assim:
| | |
| --- | --- |
| Número do comando | 391 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
index f981c1497a0441..66fc4ec7bccc60 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-add-to-user-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-add-to-user-dictionary
displayed_sidebar: docs
---
-**SPELL ADD TO USER DICTIONARY** ( *palavras* )
+**SPELL ADD TO USER DICTIONARY** ( *palavras* : Text, Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| palavras | Text, Text array | → | Palavra ou lista de palavras para agregar ao dicionário do usuário |
+| palavras | Text, Text array | → | Palavra ou lista de palavras para agregar ao dicionário do usuário |
@@ -42,6 +42,6 @@ Adição de nomes próprios ao dicionário de usuário:
| | |
| --- | --- |
| Número do comando | 1214 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
index dd79e97a8b9107..52a48bd50a4afc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-check-text.md
@@ -5,14 +5,14 @@ slug: /commands/spell-check-text
displayed_sidebar: docs
---
-**SPELL CHECK TEXT** ( *texto* ; *posErr* ; *longErr* ; *posVerif* ; *arrSug* )
+**SPELL CHECK TEXT** ( *texto* : Text ; *posErr* : Integer ; *longErr* : Integer ; *posVerif* : Integer ; *arrSug* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a revisar |
+| texto | Text | → | Texto a revisar |
| posErr | Integer | ← | Posição do primeiro caracter da palavra desconhecida |
| longErr | Integer | ← | Longitude da palavra desconhecida |
-| posVerif | Integer | → | Posição de inicio da verificação |
+| posVerif | Integer | → | Posição de inicio da verificação |
| arrSug | Text array | ← | Lista de sugestões |
@@ -58,7 +58,7 @@ Queremos contar o número possível de erros em um texto:
| | |
| --- | --- |
| Número do comando | 1215 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
index ea0ea7e1641117..f9fc23652c2e11 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ A verificação ortográfica começa com a primeira palavra de campo ou variáve
| | |
| --- | --- |
| Número do comando | 900 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
index 1a7d6ba24459cb..dc3fd9cd3c9cb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar a linguagem do dicionário atual:
| | |
| --- | --- |
| Número do comando | 1205 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
index 282f9610990834..10552f326e8909 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-get-dictionary-list.md
@@ -5,7 +5,7 @@ slug: /commands/spell-get-dictionary-list
displayed_sidebar: docs
---
-**SPELL GET DICTIONARY LIST** ( *lingID* ; *lingArquivos* ; *lingNoms* )
+**SPELL GET DICTIONARY LIST** ( *lingID* : Integer array ; *lingArquivos* : Text array ; *lingNoms* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -57,6 +57,6 @@ Você coloca "fr-classic+reform1990.aff" e "fr-classic+reform1990.dic" como tamb
| | |
| --- | --- |
| Número do comando | 1204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
index ba9bbfd6bcae3e..f6ee26f405e9be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/spell-set-current-dictionary.md
@@ -5,11 +5,11 @@ slug: /commands/spell-set-current-dictionary
displayed_sidebar: docs
---
-**SPELL SET CURRENT DICTIONARY** ( *dicionário* )
+**SPELL SET CURRENT DICTIONARY** ( *dicionário* : Integer, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dicionário | Integer, Text | → | Dicionário a ser usado para correção ortográfica |
+| dicionário | Integer, Text | → | Dicionário a ser usado para correção ortográfica |
@@ -55,7 +55,7 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder:
| | |
| --- | --- |
| Número do comando | 904 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
index 31552055bbcc71..5c7247f325dbc5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/split-string.md
@@ -5,13 +5,13 @@ slug: /commands/split-string
displayed_sidebar: docs
---
-**Split string** ( *stringAseparar* ; *string* {; *opções*} ) : Collection
+**Split string** ( *stringAseparar* : Text ; *string* : Text {; *opções* : Integer} ) : Collection
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| stringAseparar | Text | → | Valor string |
-| string | Text | → | String que stringAseparar separa. Se string vazia (""), cada caractere de stringAseparar é uma substring |
-| opções | Integer | → | Opções referentes a strings vazias e espaços |
+| stringAseparar | Text | → | Valor string |
+| string | Text | → | String que stringAseparar separa. Se string vazia (""), cada caractere de stringAseparar é uma substring |
+| opções | Integer | → | Opções referentes a strings vazias e espaços |
| Resultado | Collection | ← | Coleção de substrings |
@@ -63,6 +63,6 @@ O parâmetro *separador* pode ser uma string de múltiplos caracteres:
| | |
| --- | --- |
| Número do comando | 1554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
index 76482ba1b08bed..a9c1080b5dea63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 824 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
index 4f2c931efa03e5..2a4d97ff6fe828 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá na variável 4D *vNome* os nomes (ename) armazenados na
| | |
| --- | --- |
| Número do comando | 821 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
index 042f5f28163303..6ad1e8f67896f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute-script.md
@@ -5,14 +5,14 @@ slug: /commands/sql-execute-script
displayed_sidebar: docs
---
-**SQL EXECUTE SCRIPT** ( *rotaScript* ; *açãoErro* {; *nomeAtrib* ; *valorAtrib*} {; *nomeAtrib2* ; *valorAtrib2* ; ... ; *nomeAtribN* ; *valorAtribN*} )
+**SQL EXECUTE SCRIPT** ( *rotaScript* : Text ; *açãoErro* : Integer {; *nomeAtrib* : Text ; *valorAtrib* : Text} {; ...(*nomeAtrib* : Text, *valorAtrib* : Text)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaScript | Text | → | Nome completo da rota do arquivo que contém o script SQL a ser executado |
-| açãoErro | Integer | → | Ação a executar em caso de erro durante a execução do script |
-| nomeAtrib | Text | → | Nome do atributo a usar |
-| valorAtrib | Text | → | Valor do atributo |
+| rotaScript | Text | → | Nome completo da rota do arquivo que contém o script SQL a ser executado |
+| açãoErro | Integer | → | Ação a executar em caso de erro durante a execução do script |
+| nomeAtrib | Text | → | Nome do atributo a usar |
+| valorAtrib | Text | → | Valor do atributo |
@@ -65,7 +65,7 @@ Se o script for executado corretamente (nenhum erro ocorre), a variável Sistema
| | |
| --- | --- |
| Número do comando | 1089 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
index 2e2d03a3eca295..b91ebba78ef4bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-execute.md
@@ -5,11 +5,11 @@ slug: /commands/sql-execute
displayed_sidebar: docs
---
-**SQL EXECUTE** ( *instrucaoSQL* {; *objAssoc*}{; *objAssoc2* ; ... ; *objAssocN*} )
+**SQL EXECUTE** ( *instrucaoSQL* : Text {; *...objAssoc* : Variable, Field} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| instrucaoSQL | Text | → | Comando SQL a executar |
+| instrucaoSQL | Text | → | Comando SQL a executar |
| objAssoc | Variable, Field | ← | Recebe resultado (se necessário) |
@@ -163,7 +163,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1, do co
| | |
| --- | --- |
| Número do comando | 820 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
index 85b8749743949c..08ec9874f90c15 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-database.md
@@ -5,14 +5,14 @@ slug: /commands/sql-export-database
displayed_sidebar: docs
---
-**SQL EXPORT DATABASE** ( *rotaPasta* {; *numArquivos* {; *tamMaxArquivos* {; *tamLimCampos*}}} )
+**SQL EXPORT DATABASE** ( *rotaPasta* : Text {; *numArquivos* : Integer {; *tamMaxArquivos* : Integer {; *tamLimCampos* : Integer}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| rotaPasta | Text | → | Nome da rota da pasta de exportação ou "" para exibir caixa de diálogo de seleção de pasta |
-| numArquivos | Integer | → | Máximo número de arquivos por pasta |
-| tamMaxArquivos | Integer | → | Tamanho máximo dos arquivos exportados (em Kb) |
-| tamLimCampos | Integer | → | Tamanho limite (em bytes) abaixo do qual os conteúdos dos campos texto, BLOB ou Imagem são integrados no arquivo principal |
+| rotaPasta | Text | → | Nome da rota da pasta de exportação ou "" para exibir caixa de diálogo de seleção de pasta |
+| numArquivos | Integer | → | Máximo número de arquivos por pasta |
+| tamMaxArquivos | Integer | → | Tamanho máximo dos arquivos exportados (em Kb) |
+| tamLimCampos | Integer | → | Tamanho limite (em bytes) abaixo do qual os conteúdos dos campos texto, BLOB ou Imagem são integrados no arquivo principal |
@@ -60,7 +60,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1065 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
index d47aa826aa9a02..09e2714de829e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-export-selection.md
@@ -5,15 +5,15 @@ slug: /commands/sql-export-selection
displayed_sidebar: docs
---
-**SQL EXPORT SELECTION** ( *tabela* ; *rotaPasta* {; *numArquivos* {; *tamMaxArquivos* {; *tamLimCampos*}}} )
+**SQL EXPORT SELECTION** ( *tabela* : Table ; *rotaPasta* : Text {; *numArquivos* : Integer {; *tamMaxArquivos* : Integer {; *tamLimCampos* : Integer}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela para a qual vai exportar a seleção |
-| rotaPasta | Text | → | Nome da rota da pasta de exportação ou "" para exibir caixa de diálogo de seleção de pasta |
-| numArquivos | Integer | → | Máximo número de arquivos por pasta |
-| tamMaxArquivos | Integer | → | Tamanho máximo de arquivo Export.sql (em Kb) |
-| tamLimCampos | Integer | → | Tamanho limite (em bytes) abaixo do qual os conteúdos dos campos Texto, BLOB ou Imagem são incluídos no arquivo principal |
+| tabela | Table | → | Tabela para a qual vai exportar a seleção |
+| rotaPasta | Text | → | Nome da rota da pasta de exportação ou "" para exibir caixa de diálogo de seleção de pasta |
+| numArquivos | Integer | → | Máximo número de arquivos por pasta |
+| tamMaxArquivos | Integer | → | Tamanho máximo de arquivo Export.sql (em Kb) |
+| tamLimCampos | Integer | → | Tamanho limite (em bytes) abaixo do qual os conteúdos dos campos Texto, BLOB ou Imagem são incluídos no arquivo principal |
@@ -42,7 +42,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1064 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
index b9b0a93b3b111a..a95aab02fae9e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar a fonte de dados atual, geralmente antes de execu
| | |
| --- | --- |
| Número do comando | 990 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
index 71f492dbe38a8d..4d164c90ccb139 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-data-source-list.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-data-source-list
displayed_sidebar: docs
---
-**SQL GET DATA SOURCE LIST** ( *tipoFonte* ; *arrayNomesFontes* ; *arrayDrivers* )
+**SQL GET DATA SOURCE LIST** ( *tipoFonte* : Integer ; *arrayNomesFontes* : Text array ; *arrayDrivers* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoFonte | Integer | → | Tipo da fonte: usuário ou sistema |
+| tipoFonte | Integer | → | Tipo da fonte: usuário ou sistema |
| arrayNomesFontes | Text array | ← | Array dos nomes das fontes dos dados |
| arrayDrivers | Text array | ← | Array dos drives das fontes |
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 989 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
index 9bddf0eb395755..b37190c8fa9fdb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-last-error.md
@@ -5,7 +5,7 @@ slug: /commands/sql-get-last-error
displayed_sidebar: docs
---
-**SQL GET LAST ERROR** ( *codigoErro* ; *textoErro* ; *erroODBC* ; *erroSQLServer* )
+**SQL GET LAST ERROR** ( *codigoErro* : Integer ; *textoErro* : Text ; *erroODBC* : Text ; *erroSQLServer* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -38,6 +38,6 @@ Os dos últimos parâmetros apenas são preenchidos quando o erro vem da fonte O
| | |
| --- | --- |
| Número do comando | 825 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
index 77c33b8d2b0117..9806bac9762575 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/sql-get-option
displayed_sidebar: docs
---
-**SQL GET OPTION** ( *opçao* ; *valor* )
+**SQL GET OPTION** ( *opçao* : Integer ; *valor* : Integer, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opçao | Integer | → | Número de opção |
+| opçao | Integer | → | Número de opção |
| valor | Integer, Text | ← | Valor de opção |
@@ -33,7 +33,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 819 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
index 9c21b606cf706b..03a654988ddebb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-load-record.md
@@ -5,11 +5,11 @@ slug: /commands/sql-load-record
displayed_sidebar: docs
---
-**SQL LOAD RECORD** {( *numReg* )}
+**SQL LOAD RECORD** ({ *numReg* : Integer })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numReg | Integer | → | Número de registros a carregar |
+| numReg | Integer | → | Número de registros a carregar |
@@ -38,7 +38,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 822 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
index eac948a7751658..0280590bd3c916 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-login.md
@@ -5,14 +5,14 @@ slug: /commands/sql-login
displayed_sidebar: docs
---
-**SQL LOGIN** {( *entradaDados* ; *nomeUsuario* ; *senha* ; * )}
+**SQL LOGIN** ({ *entradaDados* : Text ; *nomeUsuario* : Text ; *senha* : Text ; * })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| entradaDados | Text | → | Nome da publicação do banco de dados 4D ou o endereço IP do banco remoto ou Nome da fonte de dados de entrada no ODBC Manager ou "" para exibir a caixa de diálogo de seleção |
-| nomeUsuario | Text | → | Nome do usuário registrado na fonte de dados |
-| senha | Text | → | Senha do usuário registrado na fonte de dados |
-| * | Operador | → | Aplicado ao Begin SQL/End SQL se omitido: não aplica (banco de dados local); se passado: aplica. |
+| entradaDados | Text | → | Nome da publicação do banco de dados 4D ou o endereço IP do banco remoto ou Nome da fonte de dados de entrada no ODBC Manager ou "" para exibir a caixa de diálogo de seleção |
+| nomeUsuario | Text | → | Nome do usuário registrado na fonte de dados |
+| senha | Text | → | Senha do usuário registrado na fonte de dados |
+| * | Operador | → | Aplicado ao Begin SQL/End SQL se omitido: não aplica (banco de dados local); se passado: aplica. |
@@ -208,7 +208,7 @@ Se a conexão for exitosa, a variável sistema OK assume o valor 1, do contrári
| | |
| --- | --- |
| Número do comando | 817 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
index c6904fcfdb5232..5813744cd097b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Se o logout é feito corretamente, a variável Sistema OK assume o valor 1; do c
| | |
| --- | --- |
| Número do comando | 872 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
index b4266380c6afcb..05a64d115c235f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-option
displayed_sidebar: docs
---
-**SQL SET OPTION** ( *opçao* ; *valor* )
+**SQL SET OPTION** ( *opçao* : Integer ; *valor* : Integer, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opçao | Integer | → | Número da opçaõ a estabelecer |
-| valor | Integer, Text | → | Novo valor da opçãop |
+| opçao | Integer | → | Número da opçaõ a estabelecer |
+| valor | Integer, Text | → | Novo valor da opçãop |
@@ -51,7 +51,7 @@ Se o comando for executado corretamente, a variável Sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 818 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
index 0dba1473319610..4c223f744bd7ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sql-set-parameter.md
@@ -5,12 +5,12 @@ slug: /commands/sql-set-parameter
displayed_sidebar: docs
---
-**SQL SET PARAMETER** ( *objeto* ; *paramTipo* )
+**SQL SET PARAMETER** ( *objeto* : Object ; *paramTipo* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objeto | Object | → | Objeto 4D a ser usado (variável, array ou campo) |
-| paramTipo | Integer | → | Tipo de parâmetro |
+| objeto | Object | → | Objeto 4D a ser usado (variável, array ou campo) |
+| paramTipo | Integer | → | Tipo de parâmetro |
@@ -81,7 +81,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 823 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
index 78633e57d1c302..6716a7c58032bc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/square-root.md
@@ -5,11 +5,11 @@ slug: /commands/square-root
displayed_sidebar: docs
---
-**Square root** ( *numero* ) : Real
+**Square root** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número cuja raiz quadrada é calculada |
+| numero | Real | → | Número cuja raiz quadrada é calculada |
| Resultado | Real | ← | Raiz quadrada do número |
@@ -48,6 +48,6 @@ Por exemplo, Hipotenusa (4;3) devolve 5.
| | |
| --- | --- |
| Número do comando | 539 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
index 1ff2825c2feee1..506ad3946d2e83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-compute-expressions.md
@@ -5,14 +5,14 @@ slug: /commands/st-compute-expressions
displayed_sidebar: docs
---
-**ST COMPUTE EXPRESSIONS** ( {* ;} *objeto* {; *inicioSel* {; *fimSel*}} )
+**ST COMPUTE EXPRESSIONS** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
**ST COMPUTE EXPRESSIONS** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
@@ -72,7 +72,7 @@ Você deseja atualizar as referências incluídas na seleção de texto:
| | |
| --- | --- |
| Número do comando | 1285 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
index d6cc9e524fb20f..1b6bc214304a9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-freeze-expressions.md
@@ -5,15 +5,15 @@ slug: /commands/st-freeze-expressions
displayed_sidebar: docs
---
-**ST FREEZE EXPRESSIONS** ( {* ;} *objeto* {; *inicioSel* {; *fimSel*}}{; *} )
+**ST FREEZE EXPRESSIONS** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}}{; *} )
**ST FREEZE EXPRESSIONS** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *fimSel* : Integer}}{; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
-| * | Operador | → | Se passar = atualizar as expressões antes de congelar elas |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se passar = atualizar as expressões antes de congelar elas |
@@ -72,6 +72,6 @@ Você quer inserir a hora atual ao início do texto e logo congelar ela antes de
| | |
| --- | --- |
| Número do comando | 1282 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
index a613da34dd341f..84205f2f2e36af 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-attributes.md
@@ -5,15 +5,15 @@ slug: /commands/st-get-attributes
displayed_sidebar: docs
---
-**ST GET ATTRIBUTES** ( {* ;} *objeto* ; *inicioSel* ; *fimSel* ; *nomeAtributo* ; *valorAtrib* {; *nomeAtributo2* ; *valorAtrib2* ; ... ; *nomeAtributoN* ; *valorAtribN*} )
+**ST GET ATTRIBUTES** ( * ; *objeto* : Text ; *inicioSel* : Integer ; *fimSel* : Integer ; *nomeAtributo* : Integer ; *valorAtrib* : Variable {; ...(*nomeAtributo* : Integer, *valorAtrib* : Variable)} )
**ST GET ATTRIBUTES** ( *objeto* : Field, Variable ; *inicioSel* : Integer ; *fimSel* : Integer ; *nomeAtributo* : Integer ; *valorAtrib* : Variable {; ...(*nomeAtributo* : Integer, *valorAtrib* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * é específico) ou variável ou campo (se * é omitido) |
-| inicioSel | Integer | → | início da seleção de texto |
-| fimSel | Integer | → | Fim da seleção de texto |
-| nomeAtributo | Integer | → | Atributo a ser lido |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string) se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * é específico) ou variável ou campo (se * é omitido) |
+| inicioSel | Integer | → | início da seleção de texto |
+| fimSel | Integer | → | Fim da seleção de texto |
+| nomeAtributo | Integer | → | Atributo a ser lido |
| valorAtrib | Variable | ← | Valor atual do atributo |
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1094 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
index 45a9ddb8814021..8d4c045a0459cf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-content-type.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-content-type
displayed_sidebar: docs
---
-**ST Get content type** ( {* ;} *objeto* {; *inicioSel* {; *fimSel* {; *inicioBloq* {; *fimBloq*}}}} ) : Integer
+**ST Get content type** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *fimSel* : Integer {; *inicioBloq* : Integer {; *fimBloq* : Integer}}}} ) : Integer
**ST Get content type** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *fimSel* : Integer {; *inicioBloq* : Integer {; *fimBloq* : Integer}}}} ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
| inicioBloq | Integer | ← | Inicio de posição do primeiro tipo da seleção |
| fimBloq | Integer | ← | Fim de posição do primeiro tipo da seleção |
| Resultado | Integer | ← | Tipo de conteúdo |
@@ -106,7 +106,7 @@ Você deseja mostrar os comandos de um menu contextual baseado no tipo de conte
| | |
| --- | --- |
| Número do comando | 1286 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
index df9a07507e8bfc..be7ed269ab6296 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-expression.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-expression
displayed_sidebar: docs
---
-**ST Get expression** ( {* ;} *objeto* {; *inicioSel* {; *fimSel*}} ) : Text
+**ST Get expression** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} ) : Text
**ST Get expression** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *fimSel* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
| Resultado | Text | ← | Etiqueta da expressão |
@@ -98,7 +98,7 @@ Você quer executar um método 4D quando é feito clique em um link de um usuár
| | |
| --- | --- |
| Número do comando | 1287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
index 4b3f42d90de8f5..462da843cf1625 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-options.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-options
displayed_sidebar: docs
---
-**ST GET OPTIONS** ( {* ;} *objeto* ; *opcao* ; *valor* {; *opcao2* ; *valor2* ; ... ; *opcaoN* ; *valorN*} )
+**ST GET OPTIONS** ( * ; *objeto* : Text ; *opcao* : Integer ; *valor* : Integer {; ...(*opcao* : Integer, *valor* : Integer)} )
**ST GET OPTIONS** ( *objeto* : Field, Variable ; *opcao* : Integer ; *valor* : Integer {; ...(*opcao* : Integer, *valor* : Integer)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| opcao | Integer | → | Opção a ler |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| opcao | Integer | → | Opção a ler |
| valor | Integer | ← | Valor atual da opção |
@@ -40,6 +40,6 @@ Passe o código da opção a ler no parâmetro *opcao*. O comando devolve em *va
| | |
| --- | --- |
| Número do comando | 1290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
index 2349e6d819eb29..b9e76f4dc56b06 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-plain-text.md
@@ -5,13 +5,13 @@ slug: /commands/st-get-plain-text
displayed_sidebar: docs
---
-**ST Get plain text** ( {* ;} *objeto* {; *refMode*} ) : Text
+**ST Get plain text** ( * ; *objeto* : Text {; *refMode* : Integer} ) : Text
**ST Get plain text** ( *objeto* : Field, Variable {; *refMode* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou campo (se * é omitido) |
-| refMode | Integer | → | Mode for handling references found in the text |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se * é especificado) ou Variável ou campo (se * é omitido) |
+| refMode | Integer | → | Mode for handling references found in the text |
| Resultado | Text | ← | Texto sem tags |
@@ -114,7 +114,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1092 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
index d27aedadcc7f9a..43344bccd7107f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-text.md
@@ -5,14 +5,14 @@ slug: /commands/st-get-text
displayed_sidebar: docs
---
-**ST Get text** ( {* ;} *objeto* {; *inicioSel* {; *fimSel*}} ) : Text
+**ST Get text** ( * ; *objeto* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} ) : Text
**ST Get text** ( *objeto* : Field, Variable {; *inicioSel* : Integer {; *fimSel* : Integer}} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se nao, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se * for especificada) ou campo texto ou variável (se * for omitida) |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | final da seleção |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se nao, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se * for especificada) ou campo texto ou variável (se * for omitida) |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | final da seleção |
| Resultado | Text | ← | Texto incluindo etiquetas de estilo |
@@ -67,7 +67,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1116 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
index c015a42585f495..78f0e73d84004e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-get-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-get-url
displayed_sidebar: docs
---
-**ST GET URL** ( {* ;} *objeto* ; *textoURL* ; *enderecoURL* {; *inicioSel* {; *fimSel*}} )
+**ST GET URL** ( * ; *objeto* : Text ; *textoURL* : Text ; *enderecoURL* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
**ST GET URL** ( *objeto* : Field, Variable ; *textoURL* : Text ; *enderecoURL* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
| textoURL | Text | ← | Texto visível do URL |
| enderecoURL | Text | ← | Endereço do URL |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
@@ -75,6 +75,6 @@ Quando há um evento de duplo clique, se comprova que não existe em realidade u
| | |
| --- | --- |
| Número do comando | 1288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
index d067bdf52e4ced..8f2b41cba3665e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-expression.md
@@ -5,15 +5,15 @@ slug: /commands/st-insert-expression
displayed_sidebar: docs
---
-**ST INSERT EXPRESSION** ( {* ;} *objeto* ; *expressao* {; *inicioSel* {; *fimSel*}} )
+**ST INSERT EXPRESSION** ( {* ;} *objeto* : Object ; *expressao* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | Object | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| expressao | Text | → | Expressão e (opcional) formato a inserir |
-| inicioSel | Integer | → | Início da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | Object | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| expressao | Text | → | Expressão e (opcional) formato a inserir |
+| inicioSel | Integer | → | Início da seleção |
+| fimSel | Integer | → | Fim da seleção |
@@ -94,7 +94,7 @@ Deseja substituir o texto selecionado com o resultado de um método projeto:
| | |
| --- | --- |
| Número do comando | 1281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
index be9a39621a2036..e038ea3b20df24 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-insert-url.md
@@ -5,16 +5,16 @@ slug: /commands/st-insert-url
displayed_sidebar: docs
---
-**ST INSERT URL** ( {* ;} *objeto* ; *textoURL* ; *enderecoURL* {; *inicioSel* {; *fimSel*}} )
+**ST INSERT URL** ( * ; *objeto* : Text ; *textoURL* : Text ; *enderecoURL* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
**ST INSERT URL** ( *objeto* : Field, Variable ; *textoURL* : Text ; *enderecoURL* : Text {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
-| textoURL | Text | → | Texto visível do URL |
-| enderecoURL | Text | → | Endereço do URL |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | Fim da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou
Campo ou variável (se * for omitido) |
+| textoURL | Text | → | Texto visível do URL |
+| enderecoURL | Text | → | Endereço do URL |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | Fim da seleção |
@@ -68,7 +68,7 @@ Você deseja inserir um link ao web site de 4D para substituir o texto seleciona
| | |
| --- | --- |
| Número do comando | 1280 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
index 7035da313593f8..6c4e1c9e531fdb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-attributes.md
@@ -5,16 +5,16 @@ slug: /commands/st-set-attributes
displayed_sidebar: docs
---
-**ST SET ATTRIBUTES** ( {* ;} *objeto* ; *inicioSel* ; *fimSel* ; *nomeAtrib* ; *valorAtributo* {; *nomeAtrib2* ; *valorAtributo2* ; ... ; *nomeAtribN* ; *valorAtributoN*} )
+**ST SET ATTRIBUTES** ( * ; *objeto* : Text ; *inicioSel* : Integer ; *fimSel* : Integer ; *nomeAtrib* : Text ; *valorAtributo* : Text, Integer {; ...(*nomeAtrib* : Text, *valorAtributo* : Text, Integer)} )
**ST SET ATTRIBUTES** ( *objeto* : Field, Variable ; *inicioSel* : Integer ; *fimSel* : Integer ; *nomeAtrib* : Text ; *valorAtributo* : Text, Integer {; ...(*nomeAtrib* : Text, *valorAtributo* : Text, Integer)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo. |
-| objeto | any | → | Nome de objeto (se * for especificado) ou campo ou variável texto (se * for omitido) |
-| inicioSel | Integer | → | Início da nova seleção de texto |
-| fimSel | Integer | → | Fim da nova seleção de texto |
-| nomeAtrib | Text | → | Atributo a definir |
-| valorAtributo | Text, Integer | → | Novo valor do atributo |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo. |
+| objeto | any | → | Nome de objeto (se * for especificado) ou campo ou variável texto (se * for omitido) |
+| inicioSel | Integer | → | Início da nova seleção de texto |
+| fimSel | Integer | → | Fim da nova seleção de texto |
+| nomeAtrib | Text | → | Atributo a definir |
+| valorAtributo | Text, Integer | → | Novo valor do atributo |
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1093 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
index 1ae4b5598541be..6735202c3704bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-options.md
@@ -5,14 +5,14 @@ slug: /commands/st-set-options
displayed_sidebar: docs
---
-**ST SET OPTIONS** ( {* ;} *objeto* ; *opcao* ; *valor* {; *opcao2* ; *valor2* ; ... ; *opcaoN* ; *valorN*} )
+**ST SET OPTIONS** ( * ; *objeto* : Text ; *opcao* : Integer ; *valor* : Integer {; ...(*opcao* : Integer, *valor* : Integer)} )
**ST SET OPTIONS** ( *objeto* : Field, Variable ; *opcao* : Integer ; *valor* : Integer {; ...(*opcao* : Integer, *valor* : Integer)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
-| objeto | any | → | Nome do objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
-| opcao | Integer | → | Opção a definir |
-| valor | Integer | → | Novo valor da opção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (cadeia) Se omitido, objeto é um campo ou uma variável |
+| objeto | any | → | Nome do objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| opcao | Integer | → | Opção a definir |
+| valor | Integer | → | Novo valor da opção |
@@ -67,6 +67,6 @@ O seguinte código permite mudar o modo de visualização da área:
| | |
| --- | --- |
| Número do comando | 1289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
index 2d3f3e78fcdf80..c1c2dbbacb78f0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-plain-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-plain-text
displayed_sidebar: docs
---
-**ST SET PLAIN TEXT** ( {* ;} *objeto* ; *novoTexto* {; *inicioSel* {; *fimSel*}} )
+**ST SET PLAIN TEXT** ( * ; *objeto* : Text ; *novoTexto* {; *inicioSel* : Integer {; *fimSel* : Integer}} )
**ST SET PLAIN TEXT** ( *objeto* : Field, Variable ; *novoTexto* {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | se especificado, objeto é um nome de objeto (string), se não, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido) |
-| novoText | Text | → | Texto a inserir |
-| inicioSel | Integer | → | Inicio da seleção |
-| fimSel | Integer | → | final da seleção |
+| * | Operador | → | se especificado, objeto é um nome de objeto (string), se não, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável ou campo (se * for omitido) |
+| novoText | Text | → | Texto a inserir |
+| inicioSel | Integer | → | Inicio da seleção |
+| fimSel | Integer | → | final da seleção |
@@ -98,7 +98,7 @@ No caso de um erro, a variável não muda. Quando se produz um erro em uma vari
| | |
| --- | --- |
| Número do comando | 1136 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
index 5f7c81a27d66e4..125e56d0871d8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/st-set-text.md
@@ -5,15 +5,15 @@ slug: /commands/st-set-text
displayed_sidebar: docs
---
-**ST SET TEXT** ( {* ;} *objeto* ; *novoTexto* {; *inicioSel* {; *fimSel*}} )
+**ST SET TEXT** ( * ; *objeto* : Text ; *novoTexto* {; *inicioSel* : Integer {; *fimSel* : Integer}} )
**ST SET TEXT** ( *objeto* : Field, Variable ; *novoTexto* {; *inicioSel* : Integer {; *fimSel* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
-| objeto | any | → | Nome de objeto (se * for especificado) ou campo ou variável Texto (se * for omitido) |
-| novoText | Text | → | Texto a inserir |
-| inicioSel | Integer | → | Início da seleção |
-| fimSel | Integer | → | Final da seleção |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string), se omitido, objeto é uma variável ou campo |
+| objeto | any | → | Nome de objeto (se * for especificado) ou campo ou variável Texto (se * for omitido) |
+| novoText | Text | → | Texto a inserir |
+| inicioSel | Integer | → | Início da seleção |
+| fimSel | Integer | → | Final da seleção |
@@ -95,7 +95,7 @@ Consulte o exemplo do comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número do comando | 1115 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
index caf38ef4c219f3..3cfb425aab1b64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-monitoring-activity.md
@@ -5,12 +5,12 @@ slug: /commands/start-monitoring-activity
displayed_sidebar: docs
---
-**START MONITORING ACTIVITY** ( *duração* {; *fonte*} )
+**START MONITORING ACTIVITY** ( *duração* : Real {; *fonte* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| duração | Real | → | Duração de tempo (em segundos) antes do inicio do logging |
-| fonte | Integer | → | Origem da operação |
+| duração | Real | → | Duração de tempo (em segundos) antes do inicio do logging |
+| fonte | Integer | → | Origem da operação |
@@ -98,6 +98,6 @@ Se quiser iniciar/parar o monitoramento e revisão de dados 4D e atividades de d
| | |
| --- | --- |
| Número do comando | 1712 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
index e86821839b3596..316f5be51d44ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Se o servidor SQL tiver sido lançado corretamente, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 962 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
index 93bfc49e92d927..3046583e92e646 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir da versão 11 de 4D, pode aninhar várias transações (subtransações
| | |
| --- | --- |
| Número do comando | 239 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
index 695a9a8e37a524..191368fbbd5057 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/std-deviation.md
@@ -5,11 +5,11 @@ slug: /commands/std-deviation
displayed_sidebar: docs
---
-**Std deviation** ( *series* ) : Real
+**Std deviation** ( *series* : Field, Array ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna o desvio padrão |
+| series | Field, Array | → | Dados para os quais se retorna o desvio padrão |
| Resultado | Real | ← | Desvio padrão da série |
@@ -64,6 +64,6 @@ Este exemplo obtém o desvio padrão de uma série de valores localizados num ar
| | |
| --- | --- |
| Número do comando | 26 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
index c4432a27f9e300..645f011dc86005 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver exemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número do comando | 1721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
index 6f8a956484f650..6af82de68ebad1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Se o servidor SQL foi lançado, todas as conexões SQL são interrompidas e o se
| | |
| --- | --- |
| Número do comando | 963 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
index da5319d7e8d255..daa8fde4f47070 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este exemplo mostra uma forma padrão de estabelecer valores de **Armazenamento*
| | |
| --- | --- |
| Número do comando | 1525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
index 05b1c117d78714..e09cccdda86eb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/string-list-to-array.md
@@ -5,13 +5,13 @@ slug: /commands/string-list-to-array
displayed_sidebar: docs
---
-**STRING LIST TO ARRAY** ( *resNum* ; *cadeias* {; *resArquivo*} )
+**STRING LIST TO ARRAY** ( *resNum* : Integer ; *cadeias* : Text array {; *resArquivo* : Time} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| resNum | Integer | → | Nº do recurso ou atributo "id" do elemento "group" (XLIFF) |
+| resNum | Integer | → | Nº do recurso ou atributo "id" do elemento "group" (XLIFF) |
| cadeias | Text array | ← | Strings do recurso STR# ou strings do elemento "group"(XLIFF) |
-| resArquivo | Time | → | Arquivo de número de referencia de Resource se omitido: todos os arquivos XLIFF ou arquivos de resources abertos |
+| resArquivo | Time | → | Arquivo de número de referencia de Resource se omitido: todos os arquivos XLIFF ou arquivos de resources abertos |
@@ -48,7 +48,7 @@ Se o recurso for encontrado, a variável sistema OK assume o valor 1, do contrá
| | |
| --- | --- |
| Número do comando | 511 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
index ad28cd42d23555..650b377bc5829f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/structure-file.md
@@ -5,11 +5,11 @@ slug: /commands/structure-file
displayed_sidebar: docs
---
-**Structure file** {( * )} : Text
+**Structure file** ( * ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Retorna o arquivo de estrutura do banco de dados local |
+| * | Operador | → | Retorna o arquivo de estrutura do banco de dados local |
| Resultado | Text | ← | Nome longo do arquivo de estrutura do banco de dados |
@@ -79,6 +79,6 @@ O exemplo a seguir pode ser usado para descobrir se o método é chamado de um c
| | |
| --- | --- |
| Número do comando | 489 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
index e0910cf9b91cad..dfcf4e6b16e40b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/substring.md
@@ -5,13 +5,13 @@ slug: /commands/substring
displayed_sidebar: docs
---
-**Substring** ( *fonte* ; *aPartirDe* {; *numCars*} ) : Text
+**Substring** ( *fonte* : Text ; *aPartirDe* : Integer {; *numCars* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| fonte | Text | → | Cadeia da qual se tira a substring |
-| aPartirDe | Integer | → | Posição do primeiro caractere |
-| numCars | Integer | → | Número de caracteres a pegar |
+| fonte | Text | → | Cadeia da qual se tira a substring |
+| aPartirDe | Integer | → | Posição do primeiro caractere |
+| numCars | Integer | → | Número de caracteres a pegar |
| Resultado | Text | ← | Substring de fonte |
@@ -70,6 +70,6 @@ O seguinte método de projeto adiciona os parágrafos que são encontrados no te
| | |
| --- | --- |
| Número do comando | 12 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
index 289aa12ed78661..6fe8cddaddbcc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/subtotal.md
@@ -5,12 +5,12 @@ slug: /commands/subtotal
displayed_sidebar: docs
---
-**Subtotal** ( *valores* {; *saltoPag*} ) : Real
+**Subtotal** ( *valores* : Field {; *saltoPag* : Integer} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| valores | Field | → | Campo númerico ou variável onde quer devolver o subtotal |
-| saltoPag | Integer | → | Nivel de quebra para o qual realizar um salto de página |
+| valores | Field | → | Campo númerico ou variável onde quer devolver o subtotal |
+| saltoPag | Integer | → | Nivel de quebra para o qual realizar um salto de página |
| Resultado | Real | ← | Subtotal dos valores |
@@ -67,6 +67,6 @@ A função Subtotal é necessária para mostrar valores em um formulário.
| | |
| --- | --- |
| Número do comando | 97 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
index b0ea2c6618c4d5..ec3ce6d26b3039 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum-squares.md
@@ -5,11 +5,11 @@ slug: /commands/sum-squares
displayed_sidebar: docs
---
-**Sum squares** ( *series* ) : Real
+**Sum squares** ( *series* : Field, Array ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna a soma de quadrados. |
+| series | Field, Array | → | Dados para os quais se retorna a soma de quadrados. |
| Resultado | Real | ← | Soma dos quadrados dos valores da série |
@@ -64,6 +64,6 @@ Este exemplo permite obter a soma de quadrados dos valores localizados num array
| | |
| --- | --- |
| Número do comando | 28 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
index 0e8487b01befae..7a0e89be792a16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/sum.md
@@ -5,12 +5,12 @@ slug: /commands/sum
displayed_sidebar: docs
---
-**Sum** ( *series* {; *atributoRota*} ) : Real
+**Sum** ( *series* : Field, Array {; *atributoRota* : Text} ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna a Soma |
-| atributoRota | Text | → | Rota do atributo para o qual vai retornar a soma |
+| series | Field, Array | → | Dados para os quais se retorna a Soma |
+| atributoRota | Text | → | Rota do atributo para o qual vai retornar a soma |
| Resultado | Real | ← | Soma para a série |
@@ -79,7 +79,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 1 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
index 41f14e2005420c..ef6f95a8ad446c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1385 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
index 9759e06fd372ca..d5a6cc02f22c79 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-export-to-picture.md
@@ -5,13 +5,13 @@ slug: /commands/svg-export-to-picture
displayed_sidebar: docs
---
-**SVG EXPORT TO PICTURE** ( *refElemento* ; *varImagem* {; *tipoExport*} )
+**SVG EXPORT TO PICTURE** ( *refElemento* : Text ; *varImagem* {; *tipoExport* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência do elemento Root XMLK |
-| varPicture | Picture | → | Variável de imagem que recebe a árvore XML (Imagem SVG) |
-| tipoExport | Integer | → | 0= Não armazenar fonte de dados, 1 = Copiar fonte de dados (padrão), 2 = Fonte de dados própria |
+| refElemento | Text | → | Referência do elemento Root XMLK |
+| varPicture | Picture | → | Variável de imagem que recebe a árvore XML (Imagem SVG) |
+| tipoExport | Integer | → | 0= Não armazenar fonte de dados, 1 = Copiar fonte de dados (padrão), 2 = Fonte de dados própria |
@@ -59,6 +59,6 @@ O exemplo abaixo pode ser utilizado para mostrar “Hello World” em uma imagem
| | |
| --- | --- |
| Número do comando | 1017 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
index 22d1644e0cd68d..d7a83c07b549fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -5,14 +5,14 @@ slug: /commands/svg-find-element-id-by-coordinates
displayed_sidebar: docs
---
-**SVG Find element ID by coordinates** ( {* ;} *objetoImagem* ; *X* ; *Y* ) : Text
+**SVG Find element ID by coordinates** ( {* ;} *objetoImagem* ; *X* : Integer ; *Y* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string), se omitido, objetoImagem é um campo ou variável |
-| objetoPicture | Picture | → | Nome de objeto (Se * for especificado) ou Campo ou Variável (se * for omitido) |
-| X | Integer | → | Coordenadas X em píxels |
-| Y | Integer | → | Coordenadas Y em píxels |
+| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string), se omitido, objetoImagem é um campo ou variável |
+| objetoPicture | Picture | → | Nome de objeto (Se * for especificado) ou Campo ou Variável (se * for omitido) |
+| X | Integer | → | Coordenadas X em píxels |
+| Y | Integer | → | Coordenadas Y em píxels |
| Resultado | Text | ← | ID do elemento encontrado na localização X, Y |
@@ -57,7 +57,7 @@ Se *objetoImagem* não contiver uma imagem SVG válida, o comando retorna uma ca
| | |
| --- | --- |
| Número do comando | 1054 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
index b5fbf356b9078a..cacbbe9e104d24 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-find-element-ids-by-rect.md
@@ -5,16 +5,16 @@ slug: /commands/svg-find-element-ids-by-rect
displayed_sidebar: docs
---
-**SVG Find element IDs by rect** ( {* ;} *objetoImagem* ; *x* ; *y* ; *largura* ; *alto* ; *arrIDs* ) : Boolean
+**SVG Find element IDs by rect** ( {* ;} *objetoImagem* ; *x* : Integer ; *y* : Integer ; *largura* : Integer ; *alto* : Integer ; *arrIDs* : Text array ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
-| objetoPicture | Picture | → | Nome do objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
-| x | Integer | → | Coordenada horizontal da esquina esquerda superior do retângulo de seleção |
-| y | Integer | → | Coordenada vertical da esquina superior esquerda do retângulo de seleção |
-| largura | Integer | → | Largura da seleção retangular |
-| alto | Integer | → | Altura da seleção retangular |
+| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
+| objetoPicture | Picture | → | Nome do objeto (se * for especificado) ou Campo ou variável (se * for omitido) |
+| x | Integer | → | Coordenada horizontal da esquina esquerda superior do retângulo de seleção |
+| y | Integer | → | Coordenada vertical da esquina superior esquerda do retângulo de seleção |
+| largura | Integer | → | Largura da seleção retangular |
+| alto | Integer | → | Altura da seleção retangular |
| arrIDs | Text array | ← | IDs dos elementos cujas molduras do retângulo intersecciona com o retângulo de seleção |
| Resultado | Boolean | ← | True = ao menos um elemento é encontrado |
@@ -47,6 +47,6 @@ Todos os elementos cujo retângulo circundante está em intersecção com o ret
| | |
| --- | --- |
| Número do comando | 1109 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
index 38a90682b2297d..2e249a915e0c61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-get-attribute.md
@@ -5,14 +5,14 @@ slug: /commands/svg-get-attribute
displayed_sidebar: docs
---
-**SVG GET ATTRIBUTE** ( {* ;} *objetoImagem* ; id_Elemento ; *nomeAtrib* ; *valorAtributo* )
+**SVG GET ATTRIBUTE** ( {* ;} *objetoImagem* ; id_Elemento ; *nomeAtrib* : Text ; *valorAtributo* : Text, Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
-| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for omitido) |
-| id_Elemento | Text | → | ID do elemento cujo valor de atributo você deseja conseguir |
-| nomeAtrib | Text | → | Atributo cujo valor você deseja obter |
+| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
+| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for omitido) |
+| id_Elemento | Text | → | ID do elemento cujo valor de atributo você deseja conseguir |
+| nomeAtrib | Text | → | Atributo cujo valor você deseja obter |
| valorAtributo | Text, Integer | ← | Valor atual do atributo |
@@ -48,6 +48,6 @@ Para obter mais informação acerca dos atributos SVG, consulte a descripção d
| | |
| --- | --- |
| Número do comando | 1056 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
index 71668792fc4ff1..5406b3a236174d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-set-attribute.md
@@ -5,16 +5,16 @@ slug: /commands/svg-set-attribute
displayed_sidebar: docs
---
-**SVG SET ATTRIBUTE** ( {* ;} *objetoImagem* ; id_Elemento ; *nomeAtrib* ; *valorAtributo* {; *nomeAtrib2* ; *valorAtributo2* ; ... ; *nomeAtribN* ; *valorAtributoN*} {; *})
+**SVG SET ATTRIBUTE** ( {* ;} *objetoImagem* ; id_Elemento ; *nomeAtrib* : Text ; *valorAtributo* : Text, Integer {; ...(*nomeAtrib* : Text, *valorAtributo* : Text, Integer)} {; *})
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objImagem é um nome objeto (string). Se omitido, objImagem é uma variável |
-| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for otimido) |
-| id_Elemento | Text | → | ID do elemento onde um ou mais atributos são estabelecidos |
-| nomeAtrib | Text | → | Atributo a estabelecer |
-| valorAtributo | Text, Integer | → | Novo valor do atributo |
-| * | Operador | → | Se passado = modifica a própria imagem SVG |
+| * | Operador | → | Se especificado, objImagem é um nome objeto (string). Se omitido, objImagem é uma variável |
+| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for otimido) |
+| id_Elemento | Text | → | ID do elemento onde um ou mais atributos são estabelecidos |
+| nomeAtrib | Text | → | Atributo a estabelecer |
+| valorAtributo | Text, Integer | → | Novo valor do atributo |
+| * | Operador | → | Se passado = modifica a própria imagem SVG |
@@ -100,7 +100,7 @@ Modificação do conteúdo de um elemento de tipo texto:
| | |
| --- | --- |
| Número do comando | 1055 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
index 99e556a53227e4..5c8c30b4d23122 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/svg-show-element.md
@@ -5,14 +5,14 @@ slug: /commands/svg-show-element
displayed_sidebar: docs
---
-**SVG SHOW ELEMENT** ( {* ;} *objetoImagem* ; *id* {; *margem*} )
+**SVG SHOW ELEMENT** ( {* ;} *objetoImagem* ; *id* : Text {; *margem* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
-| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for otimido) |
-| id | Text | → | Atributo ID do elemento a exibir |
-| margem | Integer | → | Margem de visbilidade (em pixels por padrão) |
+| * | Operador | → | Se especificado, objetoImagem é um nome de objeto (string). Se omitido, objetoImagem é uma variável |
+| objetoPicture | Picture | → | Nome de objeto (se * for especificado) ou variável ou campo (se * for otimido) |
+| id | Text | → | Atributo ID do elemento a exibir |
+| margem | Integer | → | Margem de visbilidade (em pixels por padrão) |
@@ -34,7 +34,7 @@ Se este comando não for executado no contexto de um formulário ou se for passa
| | |
| --- | --- |
| Número do comando | 1108 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
index 00b6ecd24d27e4..c31ae1c50c0de4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-folder.md
@@ -5,11 +5,11 @@ slug: /commands/system-folder
displayed_sidebar: docs
---
-**System folder** {( *tipo* )} : Text
+**System folder** ( *tipo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipo | Integer | → | Tipo de pasta sistema |
+| tipo | Integer | → | Tipo de pasta sistema |
| Resultado | Text | ← | Rota de acesso de uma pasta do sistema ativo |
@@ -55,6 +55,6 @@ Se omitido o parâmetro *tipo*, a função devolverá a rota à pasta sistema at
| | |
| --- | --- |
| Número do comando | 487 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
index 5756dd933242c1..91b85212c1c350 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/system-info.md
@@ -150,6 +150,6 @@ devolve um objeto que contém a informação abaixo:
| | |
| --- | --- |
| Número do comando | 1571 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
index 6848822275c460..7c43ce6ed24a01 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-fragmentation.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| aTable | Table | → | Tabela para a qual obter a taxa de fragmentação |
+| aTable | Table | → | Tabela para a qual obter a taxa de fragmentação |
| Resultado | Real | ← | Porcentagem de fragmentação |
@@ -47,6 +47,6 @@ Este método lhe permite requisitar a compactação do arquivo de dados no caso
| | |
| --- | --- |
| Número do comando | 1127 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
index 519029087d76d4..1318029a93ff04 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table-name.md
@@ -5,11 +5,11 @@ slug: /commands/table-name
displayed_sidebar: docs
---
-**Table name** ( *numTabela* ) : Text
**Table name** ( *pontTabela* ) : Text
+**Table name** ( *numTabela* : Inteiro longo, Ponteiro ) : Text
**Table name** ( *pontTabela* : Inteiro longo, Ponteiro ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
+| numTabela|pontTabela | Inteiro longo, Ponteiro | → | Número da tabela ou ponteiro a tabela |
| Resultado | Text | ← | Nome da tabela |
@@ -44,6 +44,6 @@ O seguinte é um exemplo de um método genérico que mostra os registros de uma
| | |
| --- | --- |
| Número do comando | 256 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md
index 93ddf40fefc6e3..307321a9812499 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/table.md
@@ -5,24 +5,24 @@ slug: /commands/table
displayed_sidebar: docs
---
-**Table** ( *numTabela* ) : Pointer
**Table** ( *ptrTabela* ) : Integer
**Table** ( *ptrCampo* ) : Integer
+**Table** ( *numTabela* : Integer ) : Pointer
**Table** ( *ptrTabela* : Pointer ) : Integer
**Table** ( *ptrCampo* : Pointer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numTabela | Integer | → | Número de tabela |
-| ptrTabela | Pointer | → | Ponteiro de Tabela |
-| ptrCampo | Pointer | → | Ponteiro de Campo |
-| Resultado | any | ← | Ponteiro tabela, se um número de tabela for passado
Número de tabela, se um ponteiro de tabela ou um ponteiro de Campo for passado |
+| numTabela | Integer | → | Número de tabela |
+| ptrTabela | Pointer | → | Ponteiro de Tabela |
+| ptrCampo | Pointer | → | Ponteiro de Campo |
+| Resultado | Pointer, Integer | ← | Ponteiro tabela, se um número de tabela for passado
Número de tabela, se um ponteiro de tabela ou um ponteiro de Campo for passado |
## Descrição
-O comando Table tem três sintaxes diferentes:
+O comando Table tem três sintaxes diferentes:
-* Se passa um número de tabela em *numTabela*, Table retorna um ponteiro para a tabela.
-* Se passa um ponteiro de tabela em *Ponteiro*, Table retorna o número da tabela.
-* Se passa um ponteiro de campo em *Ponteiro*, Table retorna o número de tabela do campo.
+* Se passa um número de tabela em *numTabela*, Table retorna um ponteiro para a tabela.
+* Se passa um ponteiro de tabela em *ptrTabela*, Table retorna o número da tabela.
+* Se passa um ponteiro de campo em *ptrCampo*, Table retorna o número de tabela do campo.
## Exemplo 1
@@ -68,6 +68,6 @@ Este exemplo, a variável *numTabela* é igual ao número da tabela a qual perte
| | |
| --- | --- |
| Número do comando | 252 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
index 46aeb70193912b..bb54afd248ddca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tan.md
@@ -5,11 +5,11 @@ slug: /commands/tan
displayed_sidebar: docs
---
-**Tan** ( *numero* ) : Real
+**Tan** ( *numero* : Real ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número, em radianos, cuja tangente é devolvida |
+| numero | Real | → | Número, em radianos, cuja tangente é devolvida |
| Resultado | Real | ← | Tangente do número |
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 19 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
index 51abf30210f8bb..44a7af018ece7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 486 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
index 2701e0d2c7afdf..59816dfc0a26b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-path-name.md
@@ -5,11 +5,11 @@ slug: /commands/test-path-name
displayed_sidebar: docs
---
-**Test path name** ( *nomeRota* ) : Integer
+**Test path name** ( *nomeRota* : Text ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeRota | Text | → | Rota ao diretório, pasta ou documento |
+| nomeRota | Text | → | Rota ao diretório, pasta ou documento |
| resultado | Integer | ← | 1 - rota de acesso do documento existente, 0 - rota do diretório ou pasta existente, <0 - rota inválida, código de erro do gestor de arquivo OS |
@@ -56,6 +56,6 @@ O seguinte exemplo prova a presença do documento “Diário” na pasta da base
| | |
| --- | --- |
| Número do comando | 476 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
index 981ec3431ea1d1..7a26a3d419ec77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/test-semaphore.md
@@ -5,11 +5,11 @@ slug: /commands/test-semaphore
displayed_sidebar: docs
---
-**Test semaphore** ( *semaforo* ) : Boolean
+**Test semaphore** ( *semaforo* : Text ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| semaforo | Text | → | Semáforo a testar |
+| semaforo | Text | → | Semáforo a testar |
| Resultado | Boolean | ← | True = o semáforo existe, False = o semáforo não existe |
@@ -48,6 +48,6 @@ O exemplo a seguir lhe permite conhecer o estado de um processo (em nosso caso,
| | |
| --- | --- |
| Número do comando | 652 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
index 11de3eea24b0ab..475bfda57bc3e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-array.md
@@ -5,17 +5,17 @@ slug: /commands/text-to-array
displayed_sidebar: docs
---
-**TEXT TO ARRAY** ( *varText* ; *arrText* ; *largo* ; *nomFonte* ; *tamFonte* {; *estiloFonte* {; *}} )
+**TEXT TO ARRAY** ( *varText* : Text ; *arrText* : Text array ; *largo* : Integer ; *nomFonte* : Text ; *tamFonte* : Integer {; *estiloFonte* : Integer {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| varText | Text | → | Texto original a dividir |
+| varText | Text | → | Texto original a dividir |
| arrText | Text array | ← | Array que contém o texto dividido em palavras ou linhas |
-| largo | Integer | → | Largo máximo da cadeia(em pixeles) |
-| nomFonte | Text | → | Nome da fonte |
-| tamFonte | Integer | → | Tamanho da fonte |
-| estiloFonte | Integer | → | Estilo da fonte |
-| * | Operador | → | Se passado = interpretar o texto como multistyle |
+| largo | Integer | → | Largo máximo da cadeia(em pixeles) |
+| nomFonte | Text | → | Nome da fonte |
+| tamFonte | Integer | → | Tamanho da fonte |
+| estiloFonte | Integer | → | Estilo da fonte |
+| * | Operador | → | Se passado = interpretar o texto como multistyle |
@@ -114,6 +114,6 @@ Deve imprimir em uma área de 400 pixeles de largo um texto de um máximo de 80
| | |
| --- | --- |
| Número do comando | 1149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
index a40071b30a5fec..0a0851b7aad5a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-blob.md
@@ -5,15 +5,15 @@ slug: /commands/text-to-blob
displayed_sidebar: docs
---
-**TEXT TO BLOB** ( *texto* ; *BLOB* {; *textFormat* {; offset | *}} )
+**TEXT TO BLOB** ( *texto* : Text ; *BLOB* : Blob {; *textFormat* : Integer {; offset | *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| texto | Text | → | Texto a escrever no BLOB |
-| Blob | Blob | → | BLOB a receber o texto |
-| textFormat | Integer | → | Formato e conjunto de caracteres de texto |
+| texto | Text | → | Texto a escrever no BLOB |
+| Blob | Blob | → | BLOB a receber o texto |
+| textFormat | Integer | → | Formato e conjunto de caracteres de texto |
| offset | * | Variável, Operador | ↔ | Offset no BLOB (expressado em bytes) ou * para adicionar o valor |
-||| | Novo offset depois da escritura se * for omitido |
+| | | | Novo offset depois da escritura se * for omitido |
@@ -112,6 +112,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
index 1d5b93a2c4dd9a..21fcbe0ac87fcc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/text-to-document.md
@@ -5,14 +5,14 @@ slug: /commands/text-to-document
displayed_sidebar: docs
---
-**TEXT TO DOCUMENT** ( *nomeArquivo* ; *texto* {; *conjCaracteres* {; *modoRetorno*}} )
+**TEXT TO DOCUMENT** ( *nomeArquivo* : Text ; *texto* : Text {; *conjCaracteres* : Text, Integer {; *modoRetorno* : Integer}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Nome do documento ou caminho de acesso ao documento |
-| texto | Text | → | Texto a armazenar no documento |
-| conjCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
-| modoRetorno | Integer | → | Modo de processamento para os retornos de linha |
+| nomeArquivo | Text | → | Nome do documento ou caminho de acesso ao documento |
+| texto | Text | → | Texto a armazenar no documento |
+| conjCaracteres | Text, Integer | → | Nome ou número do conjunto de caracteres |
+| modoRetorno | Integer | → | Modo de processamento para os retornos de linha |
@@ -88,6 +88,6 @@ Exemplo que permite ao usuário indicar a localização do arquivo a criar:
| | |
| --- | --- |
| Número do comando | 1237 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
index 94fabd42170ddd..59c130534a76f0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/throw.md
@@ -5,16 +5,13 @@ slug: /commands/throw
displayed_sidebar: docs
---
-**throw** ( *errorCode* {; *descrição*} )
-*throw* {( *erroObj* )}
+**throw** ( *errorCode* : Integer {; *description* : Text} )
**throw** ( *errorObj* : Object )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| errorCode | Integer | → | Um inteiro longo representando o código de erro |
-| descrição | Text | → | Um texto fornecendo uma descrição do erro |
-| throw {( erroObj )} |
-| Parâmetro | Tipo | Descrição |
-| erroObj | Object | → | Um objeto contendo propriedades para construir o erro |
+| errorCode | Integer | → | Um inteiro longo representando o código de erro |
+| descrição | Text | → | Um texto fornecendo uma descrição do erro |
+| erroObj | Object | → | Um objeto contendo propriedades para construir o erro |
@@ -111,6 +108,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número do comando | 1805 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
index d38b5b18e03de7..df7b70511a2bfb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver o exemplo do comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número do comando | 458 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
index 5b5a7d9eaf783c..34086e4dc387ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time-string.md
@@ -5,11 +5,11 @@ slug: /commands/time-string
displayed_sidebar: docs
---
-**Time string** ( *segundos* ) : Text
+**Time string** ( *segundos* : Integer, Time ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| segundos | Integer, Time | → | Segundos desde a meia noite |
+| segundos | Integer, Time | → | Segundos desde a meia noite |
| Resultado | Text | ← | Hora como uma cadeia em formato 24 horas |
@@ -42,6 +42,6 @@ O exemplo a seguir mostra uma caixa de alerta com a mensagem, “46 800 segundos
| | |
| --- | --- |
| Número do comando | 180 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md
index 246b704d3641d3..3843c7ee25e2e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/time.md
@@ -9,7 +9,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| horaText | Text, Integer | → | Hora para a qual devolver o número de segundos |
+| horaText | Text, Integer | → | Hora para a qual devolver o número de segundos |
| Resultado | Time | ← | Hora especificada por horaString |
@@ -57,6 +57,6 @@ Pode expressar todo valor numérico como uma hora:
| | |
| --- | --- |
| Número do comando | 179 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
index 5220e3ef76a7be..1733c2192c97c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 1445 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
index c59585ab3b3121..2e5a5b32509d47 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Se não se mostrar nenhuma barra de ferramentas, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1016 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
index 3d7827114f3e6d..e7d72358baa439 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trace.md
@@ -66,6 +66,6 @@ O método de projeto DEBUG é listado aqui:
| | |
| --- | --- |
| Número do comando | 157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
index 316002dc4317d8..42116dfd72057d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 961 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
index 324c996ad586b9..5128b324e9ceaf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/transform-picture.md
@@ -5,17 +5,16 @@ slug: /commands/transform-picture
displayed_sidebar: docs
---
-**TRANSFORM PICTURE** ( *imagem* ; *operador* {; *param1* {; *param2* {; *param3* {; *param4*}}}} )
+**TRANSFORM PICTURE** ( *imagem* : Picture ; *operador* : Integer {; *param1* : Real {; *param2* : Real {; *param3* : Real {; *param4* : Real}}}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| imagem | Picture | → | Fonte da imagem a ser transformada |
-| ← | Imagem resultante depois da transformação |
-| operador | Integer | → | Tipo de transformação a ser feita |
-| param1 | Real | → | Parâmetro de transformação |
-| param2 | Real | → | Parâmetro de transformação |
-| param3 | Real | → | Parâmetro de transformação |
-| param4 | Real | → | Parâmetro de transformação |
+| imagem | Picture | ↔ | *in:* Source picture to be transformed
*out:* Resulting picture after transformation |
+| operador | Integer | → | Tipo de transformação a ser feita |
+| param1 | Real | → | Parâmetro de transformação |
+| param2 | Real | → | Parâmetro de transformação |
+| param3 | Real | → | Parâmetro de transformação |
+| param4 | Real | → | Parâmetro de transformação |
@@ -78,6 +77,6 @@ Este é um exemplo de corte de uma imagem (a imagem se mostra no formulário com
| | |
| --- | --- |
| Número do comando | 988 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
index a8f48256d41c8f..cf5107bbda31c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ Utilize o comando **Trigger event** para estruturar seus triggers desta maneira:
| | |
| --- | --- |
| Número do comando | 369 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
index b0f478baa7b365..3ef5751940a151 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para maior informação sobre níveis de execução, consulte o tema triggers em
| | |
| --- | --- |
| Número do comando | 398 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
index 8659df6b324255..efd0e026d91761 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trigger-properties.md
@@ -5,11 +5,11 @@ slug: /commands/trigger-properties
displayed_sidebar: docs
---
-**TRIGGER PROPERTIES** ( *nivelTrigger* ; *dbEvent* ; *numTabela* ; *numRegistro* )
+**TRIGGER PROPERTIES** ( *nivelTrigger* : Integer ; *dbEvent* : Integer ; *numTabela* : Integer ; *numRegistro* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nivelTrigger | Integer | → | Nível de ciclo de execução do Trigger |
+| nivelTrigger | Integer | → | Nível de ciclo de execução do Trigger |
| dbEvent | Integer | ← | Evento de banco de dados |
| numTabela | Integer | ← | Número de tabela envolvido |
| numRegistro | Integer | ← | Número de registro envolvido |
@@ -45,6 +45,6 @@ O número de tabela e de registro para o registro relacionado pelo evento de ban
| | |
| --- | --- |
| Número do comando | 399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md
index 5cc1ad9887f6e6..58461d1a68a3f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/true.md
@@ -35,6 +35,6 @@ O exemplo a seguir atribui a variável *vbOpcoes* a Verdadeiro :
| | |
| --- | --- |
| Número do comando | 214 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
index 260ff6a9bca935..553ed6f6096121 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/trunc.md
@@ -5,12 +5,12 @@ slug: /commands/trunc
displayed_sidebar: docs
---
-**Trunc** ( *numero* ; *decimais* ) : Real
+**Trunc** ( *numero* : Real ; *decimais* : Integer ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| numero | Real | → | Número a ser truncado |
-| decimais | Integer | → | Número de decimais usadas para truncar |
+| numero | Real | → | Número a ser truncado |
+| decimais | Integer | → | Número de decimais usadas para truncar |
| Resultado | Real | ← | Número com a parte decimal truncada ao número de casas decimais especificada por Decimais |
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra a maneira como **Trunc** funciona com diferentes argu
| | |
| --- | --- |
| Número do comando | 95 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
index cb8bd37e9b4cfd..ea608bb43194dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/truncate-table.md
@@ -5,11 +5,11 @@ slug: /commands/truncate-table
displayed_sidebar: docs
---
-**TRUNCATE TABLE** {( *tabela* )}
+**TRUNCATE TABLE** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela onde todos os registros serão apagados ou tabela padrão se esse parâmetro for omitido |
+| tabela | Table | → | Tabela onde todos os registros serão apagados ou tabela padrão se esse parâmetro for omitido |
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 1051 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md
index b9da50bc3133e4..526db1bdd33f02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/type.md
@@ -5,11 +5,11 @@ slug: /commands/type
displayed_sidebar: docs
---
-**Type** ( *campVar* ) : Integer
+**Type** ( *campVar* : Field, Variable ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| campVar | Field, Variable | → | Campo ou Variável a ser testada |
+| campVar | Field, Variable | → | Campo ou Variável a ser testada |
| Resultado | Integer | ← | Número de tipo de dados |
@@ -147,6 +147,6 @@ Ver exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número do comando | 295 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
index a057cdd8cce4ae..e1e471785a1c0f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/undefined.md
@@ -5,11 +5,11 @@ slug: /commands/undefined
displayed_sidebar: docs
---
-**Undefined** ( *variavel* ) : Boolean
+**Undefined** ( *variavel* : Expression ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variavel | Expression | → | Variável a testar |
+| variavel | Expression | → | Variável a testar |
| Resultado | Boolean | ← | TRUE=Variável é atualmente indefinida; FALSE= Variável é atualmente definida |
@@ -68,6 +68,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 82 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md
index 900d6eff78a388..ed5b95b86638db 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/union.md
@@ -5,13 +5,13 @@ slug: /commands/union
displayed_sidebar: docs
---
-**UNION** ( *conjunto1* ; *conjunto2* ; *conjuntoResultado* )
+**UNION** ( *conjunto1* : Text ; *conjunto2* : Text ; *conjuntoResultado* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto1 | Text | → | Primeiro conjunto |
-| conjunto2 | Text | → | Segundo conjunto |
-| conjuntoResultado | Text | → | Conjunto Resultado |
+| conjunto1 | Text | → | Primeiro conjunto |
+| conjunto2 | Text | → | Segundo conjunto |
+| conjuntoResultado | Text | → | Conjunto Resultado |
@@ -57,6 +57,6 @@ Este exemplo adiciona registros ao conjunto de melhores clientes. Os registros s
| | |
| --- | --- |
| Número do comando | 120 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
index eab8929bc03e5b..5773cbd15baa4a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unload-record.md
@@ -5,11 +5,11 @@ slug: /commands/unload-record
displayed_sidebar: docs
---
-**UNLOAD RECORD** {( *tabela* )}
+**UNLOAD RECORD** ({ *tabela* : Table })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tabela | Table | → | Tabela na qual vai descarregar o registro, ou tabela padrão, se omitido |
+| tabela | Table | → | Tabela na qual vai descarregar o registro, ou tabela padrão, se omitido |
@@ -35,6 +35,6 @@ Se um registro tiver uma quantidade importante de dados, de campos de imagem, ou
| | |
| --- | --- |
| Número do comando | 212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
index 72d6efe4ac9588..9e7ba14863e600 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Se o registro de um cliente é cancelado corretamente, a variável do sistema OK
| | |
| --- | --- |
| Número do comando | 649 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
index 702ec95d312474..8bab47241c8283 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/uppercase.md
@@ -5,12 +5,12 @@ slug: /commands/uppercase
displayed_sidebar: docs
---
-**Uppercase** ( *cadeia* {; *} ) : Text
+**Uppercase** ( *cadeia* : Text {; *} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cadeia | Text | → | Cadeia a converter para maiúsculas |
-| * | Operador | → | Se passado: manter os acentos |
+| cadeia | Text | → | Cadeia a converter para maiúsculas |
+| * | Operador | → | Se passado: manter os acentos |
| Resultado | Text | ← | Cadeia em letras maiúsculas |
@@ -43,6 +43,6 @@ Ver o exemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número do comando | 13 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
index 39839af4f61a47..9eded8ccacd1ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-character-set.md
@@ -5,12 +5,12 @@ slug: /commands/use-character-set
displayed_sidebar: docs
---
-**USE CHARACTER SET** ( *mapa* {; *mapaEntradaSaida*} )
+**USE CHARACTER SET** ( *mapa* : Text, Operator {; *mapaEntradaSaida* : Integer} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| mapa | Text, * | → | Nome do conjunto de caracteres a ser usado (modo Unicode), ou nome do Documento do mapa ASCII a ser usado (ASCII mode) ou * para reiniciar para o conjunto de caracteres/mapa ASCII padrão |
-| mapaEntradaSaida | Integer | → | 0 = Mapa de saída 1 = Mapa de entrada, se omitido, mapa de saída |
+| mapa | Text, Operator | → | Nome do conjunto de caracteres a ser usado (modo Unicode), ou nome do Documento do mapa ASCII a ser usado (ASCII mode) ou * para reiniciar para o conjunto de caracteres/mapa ASCII padrão |
+| mapaEntradaSaida | Integer | → | 0 = Mapa de saída 1 = Mapa de entrada, se omitido, mapa de saída |
@@ -58,7 +58,7 @@ A variável de sistema OK é definida como 1 se o mapa é carregado corretamente
| | |
| --- | --- |
| Número do comando | 205 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
index b7632dc66d3620..6602a171c3aefd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-named-selection.md
@@ -5,11 +5,11 @@ slug: /commands/use-named-selection
displayed_sidebar: docs
---
-**USE NAMED SELECTION** ( *nome* )
+**USE NAMED SELECTION** ( *nome* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nome | Text | → | Nome da seleção temporal a utilizar |
+| nome | Text | → | Nome da seleção temporal a utilizar |
@@ -35,7 +35,7 @@ Lembre que uma seleção temporária é uma representação de uma seleção de
| | |
| --- | --- |
| Número do comando | 332 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
index b7200361d1f848..77beb9ab4c5d8b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/use-set.md
@@ -5,11 +5,11 @@ slug: /commands/use-set
displayed_sidebar: docs
---
-**USE SET** ( *conjunto* )
+**USE SET** ( *conjunto* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| conjunto | Text | → | Nome do conjunto a usar |
+| conjunto | Text | → | Nome do conjunto a usar |
@@ -41,7 +41,7 @@ O seguinte exemplo utiliza [LOAD SET](load-set.md) para carregar um conjunto de
| | |
| --- | --- |
| Número do comando | 118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
index 71ed8f0dde7510..457e3cb6afd02b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/user-in-group.md
@@ -5,12 +5,12 @@ slug: /commands/user-in-group
displayed_sidebar: docs
---
-**User in group** ( *usuario* ; *grupo* ) : Boolean
+**User in group** ( *usuario* : Text ; *grupo* : Text ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| usuario | Text | → | Nome de usuário |
-| grupo | Text | → | Nome do grupo |
+| usuario | Text | → | Nome de usuário |
+| grupo | Text | → | Nome do grupo |
| Resultado | Boolean | ← | TRUE = usuário no grupo; FALSE = usuário não está no grupo |
@@ -48,6 +48,6 @@ O exemplo abaixo procura faturas específicas. Se o usuário atual estiver no gr
| | |
| --- | --- |
| Número do comando | 338 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
index 9de894423e4c8b..3ee130ed02243f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/users-to-blob.md
@@ -5,12 +5,11 @@ slug: /commands/users-to-blob
displayed_sidebar: docs
---
-**USERS TO BLOB** ( *usuarios* )
+**USERS TO BLOB** ( *usuarios* : Blob )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| usuarios | Blob | → | Blob que contém os usuários |
-| ← | Conta de usuários (criptografadas) |
+| usuarios | Blob | ↔ | *in:* BLOB that must contain users
*out:* User accounts (encrypted) |
@@ -37,7 +36,7 @@ Este conceito permite conservar um backup de usuários no banco e implementar um
| | |
| --- | --- |
| Número do comando | 849 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
index cc42039416852d..73fb9ebcc42a7f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-password.md
@@ -5,13 +5,13 @@ slug: /commands/validate-password
displayed_sidebar: docs
---
-**Validate password** ( *refUsuario* ; *senha* {; *digest*} ) : Boolean
+**Validate password** ( *refUsuario* : Integer, Text ; *senha* : Text {; *digest* : Boolean} ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refUsuario | Integer, Text | → | ID de usuário |
-| senha | Text | → | Senha não criptografada |
-| digest | Boolean | → | Senha digest = True, Senha texto plano (por padrão) = False |
+| refUsuario | Integer, Text | → | ID de usuário |
+| senha | Text | → | Senha não criptografada |
+| digest | Boolean | → | Senha digest = True, Senha texto plano (por padrão) = False |
| Resultado | Boolean | ← | TRUE= senha válida; FALSE = senha inválida |
@@ -65,6 +65,6 @@ No [On 4D Mobile Authentication database method](on-4d-mobile-authentication-dat
| | |
| --- | --- |
| Número do comando | 638 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
index 60920cecbbfe2a..8f45486d5fd487 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Note que quando OK for estabelecido como 0, a transação é automaticamente can
| | |
| --- | --- |
| Número do comando | 240 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
index 5d97e07d3f0c14..3019e74301a7fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/value-type.md
@@ -5,11 +5,11 @@ slug: /commands/value-type
displayed_sidebar: docs
---
-**Value type** ( *expressão* ) : Integer
+**Value type** ( *expressão* : Expression ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| expressão | Expression | → | Expressão cujo valor resultante será testado |
+| expressão | Expression | → | Expressão cujo valor resultante será testado |
| Resultado | Integer | ← | Número do tipo de dado |
@@ -122,6 +122,6 @@ var $sum : Real
| | |
| --- | --- |
| Número do comando | 1509 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
index 3cae34d5f2c3e4..835faee410fe2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-blob.md
@@ -5,14 +5,14 @@ slug: /commands/variable-to-blob
displayed_sidebar: docs
---
-**VARIABLE TO BLOB** ( *variável* ; *BLOB* {; offset | *} )
+**VARIABLE TO BLOB** ( *variável* : Variable ; *BLOB* : Blob {; offset | *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| variável | Variable | → | Variável a ser armazenada no BLOB |
-| Blob | Blob | → | BLOB a receber a variável |
+| variável | Variable | → | Variável a ser armazenada no BLOB |
+| Blob | Blob | → | BLOB a receber a variável |
| offset | * | Variável, Operador | ↔ | Offset da variável(expressado em bytes) no BLOB ou * para adicionar o valor |
-| ||| Novo offset depois de escrita se * for omitido |
+| | | | Novo offset depois de escrita se * for omitido |
@@ -139,7 +139,7 @@ Depois que esses métodos foram adicionados a sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 532 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
index 68ff5e5b9c55a5..465a57dd737aa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variable-to-variable.md
@@ -5,13 +5,13 @@ slug: /commands/variable-to-variable
displayed_sidebar: docs
---
-**VARIABLE TO VARIABLE** ( *processo* ; *dstVar* ; *srcVar* {; *dstVar2* ; *srcVar2* ; ... ; *dstVarN* ; *srcVarN*} )
+**VARIABLE TO VARIABLE** ( *processo* : Integer ; *dstVar* : Variable ; *srcVar* : Variable {; ...(*dstVar* : Variable, *srcVar* : Variable)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| processo | Integer | → | Número de processo de destino |
-| dstVar | Variable | → | Variável de destino |
-| srcVar | Variable | → | Variável fonte |
+| processo | Integer | → | Número de processo de destino |
+| dstVar | Variable | → | Variável de destino |
+| srcVar | Variable | → | Variável fonte |
@@ -66,6 +66,6 @@ O exemplo a seguir lê um array processo desde o processo indicado por *$vlProce
| | |
| --- | --- |
| Número do comando | 635 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
index ea1bcb37258aa8..46a7c62326354b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/variance.md
@@ -5,11 +5,11 @@ slug: /commands/variance
displayed_sidebar: docs
---
-**Variance** ( *series* ) : Real
+**Variance** ( *series* : Field, Array ) : Real
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| series | Field, Array | → | Dados para os quais se retorna a variância |
+| series | Field, Array | → | Dados para os quais se retorna a variância |
| Resultado | Real | ← | Variância da série |
@@ -72,6 +72,6 @@ Este exemplo permite obter a variância de valores localizados num array:
| | |
| --- | --- |
| Número do comando | 27 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
index f3d094fe7ae447..cfc727d5009df8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-current-data-file.md
@@ -5,15 +5,15 @@ slug: /commands/verify-current-data-file
displayed_sidebar: docs
---
-**VERIFY CURRENT DATA FILE** {( *objetos* ; *opções* ; *metodo* {; *arrayTabelas* {; *arrayCampos*}} )}
+**VERIFY CURRENT DATA FILE** ({ *objetos* : Integer ; *opções* : Integer ; *metodo* : Text {; *arrayTabelas* : Integer array {; *arrayCampos* : Integer array}} })
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| objetos | Integer | → | Objeto a ser verificado |
-| opções | Integer | → | Opções de verificação |
-| metodo | Text | → | Nome do método 4D de retrochamada |
-| arrayTabelas | Integer array | → | Números de tabelas a serem verificadas |
-| arrayCampos | 2D Integer array, 2D Integer array, 2D Real array | → | Número de índices a serem verificados |
+| objetos | Integer | → | Objeto a ser verificado |
+| opções | Integer | → | Opções de verificação |
+| metodo | Text | → | Nome do método 4D de retrochamada |
+| arrayTabelas | Integer array | → | Números de tabelas a serem verificadas |
+| arrayCampos | Integer array | → | 2D array, numbers of indexes to be checked |
@@ -48,7 +48,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 1008 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
index c5aa97607c4c85..aa33199cf6232f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-data-file.md
@@ -5,17 +5,17 @@ slug: /commands/verify-data-file
displayed_sidebar: docs
---
-**VERIFY DATA FILE** ( *endEstrutura* ; *endDados* ; *objetos* ; *opçoes* ; *metodo* {; *arrayTabelas* {; *arrayCampos*}} )
+**VERIFY DATA FILE** ( *endEstrutura* : Text ; *endDados* : Text ; *objetos* : Integer ; *opçoes* : Integer ; *metodo* : Text {; *arrayTabelas* : Integer array {; *arrayCampos* : Integer array}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| endEstrutura | Text | → | Endereço do arquivo de estrutura a ser verificado |
-| endDados | Text | → | Endereço do arquivo de dados a ser verificado |
-| objetos | Integer | → | Objetos a serem verificados |
-| opçoes | Integer | → | Opções de verificação |
-| metodo | Text | → | Nome do método 4D de retrochamada |
-| arrayTabelas | Integer array | → | Números de tabelas a serem verificadas |
-| arrayCampos | 2D Integer array, 2D Integer array, 2D Real array | → | Número de índices a serem verificados |
+| endEstrutura | Text | → | Endereço do arquivo de estrutura a ser verificado |
+| endDados | Text | → | Endereço do arquivo de dados a ser verificado |
+| objetos | Integer | → | Objetos a serem verificados |
+| opçoes | Integer | → | Opções de verificação |
+| metodo | Text | → | Nome do método 4D de retrochamada |
+| arrayTabelas | Integer array | → | Números de tabelas a serem verificadas |
+| arrayCampos | Integer array | → | Número de índices a serem verificados |
@@ -160,7 +160,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 939 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
index 99c38736146dff..83644d8fa878b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/verify-password-hash.md
@@ -5,12 +5,12 @@ slug: /commands/verify-password-hash
displayed_sidebar: docs
---
-**Verify password hash** ( *senha* ; *hash* ) : Boolean
+**Verify password hash** ( *senha* : Text ; *hash* : Text ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| senha | Text | → | A senha do usuário. Só os primeiros 72 caracteres são usados |
-| hash | Text | → | O hash da senha |
+| senha | Text | → | A senha do usuário. Só os primeiros 72 caracteres são usados |
+| hash | Text | → | O hash da senha |
| Resultado | Boolean | ← | Retorna TRUE se a senha e o hash coincidirem, ou então retorna FALSE |
@@ -59,6 +59,6 @@ Este exemplo verifica um hash de senha previamente criado por [Generate password
| | |
| --- | --- |
| Número do comando | 1534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
index c23802925d5698..950e1379c4d3f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prova permite executar código diferente dependendo de que versão é uma a
| | |
| --- | --- |
| Número do comando | 495 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
index 924373c324ab02..781a4792ab698a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-attributes.md
@@ -5,11 +5,11 @@ slug: /commands/volume-attributes
displayed_sidebar: docs
---
-**VOLUME ATTRIBUTES** ( *volume* ; *tamanho* ; *usado* ; *livre* )
+**VOLUME ATTRIBUTES** ( *volume* : Text ; *tamanho* : Real ; *usado* : Real ; *livre* : Real )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| volume | Text | → | Nome volume |
+| volume | Text | → | Nome volume |
| tamanho | Real | ← | Tamanho do volume expresso em bytes |
| usado | Real | ← | Espaço usado expresso em bytes |
| livre | Real | ← | Espaço livre expresso em bytes |
@@ -101,7 +101,7 @@ Quando tiver sido adicionado este método de projeto a sua aplicação, pode esc
| | |
| --- | --- |
| Número do comando | 472 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
index 3889715b85ddc5..d9d5373e561401 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/volume-list.md
@@ -5,7 +5,7 @@ slug: /commands/volume-list
displayed_sidebar: docs
---
-**VOLUME LIST** ( *volumes* )
+**VOLUME LIST** ( *volumes* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -45,6 +45,6 @@ Utilizando uma área de rolagem chamada *atVolumes*,se quiser mostrar a lista de
| | |
| --- | --- |
| Número do comando | 471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
index cc512ae0f5812b..cdb71b1a06960d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-back-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-back-url-available
displayed_sidebar: docs
---
-**WA Back URL available** ( {* ;} *objeto* ) : Boolean
+**WA Back URL available** ( * ; *objeto* : Text ) : Boolean
**WA Back URL available** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Boolean | ← | TRUE se houver uma URL anterior na sequência de URLs abertas; senão, FALSE |
@@ -31,6 +31,6 @@ O comando retorna *True* se existe uma URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1026 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
index 1a1f494cd1d981..14c913bdac8dc6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-create-url-history-menu.md
@@ -5,13 +5,13 @@ slug: /commands/wa-create-url-history-menu
displayed_sidebar: docs
---
-**WA Create URL history menu** ( {* ;} *objeto* {; *endereço*} ) : Text
+**WA Create URL history menu** ( * ; *objeto* : Text {; *endereço* : Integer} ) : Text
**WA Create URL history menu** ( *objeto* : Field, Variable {; *endereço* : Integer} ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| endereço | Integer | → | 0 ou omitido = Lista de URLs anteriores; 1 = Lista de próximas URLs |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| endereço | Integer | → | 0 ou omitido = Lista de URLs anteriores; 1 = Lista de próximas URLs |
| Resultado | Text | ← | Menu reference |
@@ -73,6 +73,6 @@ O código abaixo pode estar associado a um botão 3D com menu pop up chamado "An
| | |
| --- | --- |
| Número do comando | 1049 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
index 6e2e8833b2ec13..6d80e9a9bddeda 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-evaluate-javascript.md
@@ -5,14 +5,14 @@ slug: /commands/wa-evaluate-javascript
displayed_sidebar: docs
---
-**WA Evaluate JavaScript** ( {* ;} *objeto* ; *codeJS* {; *tipo*} ) : any
+**WA Evaluate JavaScript** ( * ; *objeto* : Text ; *codeJS* : Text {; *tipo* : Integer} ) : any
**WA Evaluate JavaScript** ( *objeto* : Field, Variable ; *codeJS* : Text {; *tipo* : Integer} ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| codeJS | Text | → | Código Java Script |
-| tipo | Integer | → | Tipo ao qual converter o resultado |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| codeJS | Text | → | Código Java Script |
+| tipo | Integer | → | Tipo ao qual converter o resultado |
| Resultado | Date, Time, Object, Pointer, Real, Text | ← | Resultado da função |
@@ -107,6 +107,6 @@ Logo pode avaliar o código JavaScript desde 4D:
| | |
| --- | --- |
| Número do comando | 1029 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
index 6b58e769ca5e60..45525ef11f70b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-execute-javascript-function.md
@@ -5,16 +5,16 @@ slug: /commands/wa-execute-javascript-function
displayed_sidebar: docs
---
-**WA EXECUTE JAVASCRIPT FUNCTION** ( {* ;} *objeto* ; *funcaoJS* ; resultado|* {; *param*}{; *param2* ; ... ; *paramN*} )
+**WA EXECUTE JAVASCRIPT FUNCTION** ( * ; *objeto* : Text ; *funcaoJS* : Text ; resultado|* {; *...param* : any} )
**WA EXECUTE JAVASCRIPT FUNCTION** ( *objeto* : Field, Variable ; *funcaoJS* : Text ; resultado|* {; *...param* : any} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| funcaoJS | Text | → | Nome da função JavaScript a executar |
-| resultado|* | Variável | → | * para a função sem resultado ou |
-| ← | Resultado da função (se esperado) |
-| param | Text, Number, Date, Object, Collection | → | Parâmetros a passar a função |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| funcaoJS | Text | → | Nome da função JavaScript a executar |
+| result | Variable | ← | Function result (if expected) |
+| * | Operator | → | Function with no result |
+| param | any | → | Parâmetros a passar a função |
@@ -63,6 +63,6 @@ A função JavaScript "getCustomerInfo" recebe um número ID como parâmetro e d
| | |
| --- | --- |
| Número do comando | 1043 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
index 379b046a5f247e..3dfae113dd9bfa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-forward-url-available.md
@@ -5,12 +5,12 @@ slug: /commands/wa-forward-url-available
displayed_sidebar: docs
---
-**WA Forward URL available** ( {* ;} *objeto* ) : Boolean
+**WA Forward URL available** ( * ; *objeto* : Text ) : Boolean
**WA Forward URL available** ( *objeto* : Field, Variable ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Boolean | ← | TRUE se houver uma URL depois da sequencia de URLs abertas; senão, FALSE |
@@ -31,6 +31,6 @@ O comando retorna *True* se existir um URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1027 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
index f0aa20a5dd7158..6de7a66927614e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-current-url
displayed_sidebar: docs
---
-**WA Get current URL** ( {* ;} *objeto* ) : Text
+**WA Get current URL** ( * ; *objeto* : Text ) : Text
**WA Get current URL** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Text | ← | URL carregada na área web atualmente |
@@ -41,6 +41,6 @@ A página mostrada na URL "www.apple.com" e a página "www.4dhispano.com" está
| | |
| --- | --- |
| Número do comando | 1025 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
index 30732cb3aafade..3ca626e7174399 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-external-links-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-external-links-filters
displayed_sidebar: docs
---
-**WA GET EXTERNAL LINKS FILTERS** ( {* ;} *objeto* ; *arrFiltro* ; *permitirArrRecusar* )
+**WA GET EXTERNAL LINKS FILTERS** ( * ; *objeto* : Text ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
**WA GET EXTERNAL LINKS FILTERS** ( *objeto* : Field, Variable ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| arrFiltro | Text array | ← | Array de filtros |
| permitirArrRecusar | Boolean array | ← | Permitir array recusar |
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando [WA SET EXTERNAL LINKS FILTERS](wa-set-e
| | |
| --- | --- |
| Número do comando | 1033 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
index b1478385c135d7..da5897a19e0f3d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-filtered-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-filtered-url
displayed_sidebar: docs
---
-**WA Get last filtered URL** ( {* ;} *objeto* ) : Text
+**WA Get last filtered URL** ( * ; *objeto* : Text ) : Text
**WA Get last filtered URL** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Text | ← | Última URL filtrada |
@@ -38,6 +38,6 @@ A URL pode ter sido filtrada por uma das seguintes razões:
| | |
| --- | --- |
| Número do comando | 1035 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
index 2b6c2d388e626f..714d7ec7830154 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-last-url-error.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-last-url-error
displayed_sidebar: docs
---
-**WA GET LAST URL ERROR** ( {* ;} *objeto* ; *url* ; *descriçao* ; *codigoErro* )
+**WA GET LAST URL ERROR** ( * ; *objeto* : Text ; *url* : Text ; *descriçao* : Text ; *codigoErro* : Integer )
**WA GET LAST URL ERROR** ( *objeto* : Field, Variable ; *url* : Text ; *descriçao* : Text ; *codigoErro* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| url | Text | ← | URL na origem do erro |
| descriçao | Text | ← | Description of error (macOS) |
| codigoErro | Integer | ← | Código de Erro |
@@ -40,6 +40,6 @@ Esta informação se retorna em três variáveis:
| | |
| --- | --- |
| Número do comando | 1034 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
index 31cd582cc42cf0..fb26eb6e876248 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-content.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-content
displayed_sidebar: docs
---
-**WA Get page content** ( {* ;} *objeto* ) : Text
+**WA Get page content** ( * ; *objeto* : Text ) : Text
**WA Get page content** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Text | ← | HTML source code |
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se o conteúdo da página atual não estiv
| | |
| --- | --- |
| Número do comando | 1038 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
index 36bc821b478688..3df3bdf7424340 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-page-title.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-page-title
displayed_sidebar: docs
---
-**WA Get page title** ( {* ;} *objeto* ) : Text
+**WA Get page title** ( * ; *objeto* : Text ) : Text
**WA Get page title** ( *objeto* : Field, Variable ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| Resultado | Text | ← | Título da página atual |
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se não houver título disponível para o
| | |
| --- | --- |
| Número do comando | 1036 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
index ac716f4e4c48cb..5be7e3d8327942 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-preference.md
@@ -5,13 +5,13 @@ slug: /commands/wa-get-preference
displayed_sidebar: docs
---
-**WA GET PREFERENCE** ( {* ;} *objeto* ; *seletor* ; *valor* )
+**WA GET PREFERENCE** ( * ; *objeto* : Text ; *seletor* : Integer ; *valor* : Variable )
**WA GET PREFERENCE** ( *objeto* : Field, Variable ; *seletor* : Integer ; *valor* : Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| seletor | Integer | → | Preferência a obter |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| seletor | Integer | → | Preferência a obter |
| valor | Variable | ← | Valor atual da preferência |
@@ -40,6 +40,6 @@ Passe no parâmetro *valor* uma variável que receberá o valor atual da prefer
| | |
| --- | --- |
| Número do comando | 1042 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
index a7cb89a868e941..bb69567c38481b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-filters.md
@@ -5,12 +5,12 @@ slug: /commands/wa-get-url-filters
displayed_sidebar: docs
---
-**WA GET URL FILTERS** ( {* ;} *objeto* ; *arrFiltro* ; *permitirArrRecusar* )
+**WA GET URL FILTERS** ( * ; *objeto* : Text ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
**WA GET URL FILTERS** ( *objeto* : Field, Variable ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| arrFiltro | Text array | ← | Array de filtros |
| permitirArrRecusar | Boolean array | ← | Permitir array recusar |
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando WA GET URL FILTERS. Se os arrays se rein
| | |
| --- | --- |
| Número do comando | 1031 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
index 0bbc268d953cf8..a598a17a59b74f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-get-url-history.md
@@ -5,14 +5,14 @@ slug: /commands/wa-get-url-history
displayed_sidebar: docs
---
-**WA GET URL HISTORY** ( {* ;} *objeto* ; *arrayURLs* {; *endereço* {; *arrTitulos*}} )
+**WA GET URL HISTORY** ( * ; *objeto* : Text ; *arrayURLs* : Text array {; *endereço* : Integer {; *arrTitulos* : Text array}} )
**WA GET URL HISTORY** ( *objeto* : Field, Variable ; *arrayURLs* : Text array {; *endereço* : Integer {; *arrTitulos* : Text array}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
| arrayURLs | Text array | ← | Array das URLs visitadas |
-| endereço | Integer | → | 0 ou omitido = Lista das URLs anteriores; 1 = Lista das próximas URLs |
+| endereço | Integer | → | 0 ou omitido = Lista das URLs anteriores; 1 = Lista das próximas URLs |
| arrTitulos | Text array | ← | Array de titulos |
@@ -49,6 +49,6 @@ Nota de Compatibilidade: A partir de 4D v19 R5, esse comando só retorna a URL a
| | |
| --- | --- |
| Número do comando | 1048 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
index fa769253a72bdb..6f6435626a9b41 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-back-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-back-url
displayed_sidebar: docs
---
-**WA OPEN BACK URL** ( {* ;} *objeto* )
+**WA OPEN BACK URL** ( * ; *objeto* : Text )
**WA OPEN BACK URL** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -30,6 +30,6 @@ Se não houver um URL antecedente, o comando não faz nada. Pode testar a dispon
| | |
| --- | --- |
| Número do comando | 1021 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
index 35195d480c92c3..f7cae154be81ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-forward-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-forward-url
displayed_sidebar: docs
---
-**WA OPEN FORWARD URL** ( {* ;} *objeto* )
+**WA OPEN FORWARD URL** ( * ; *objeto* : Text )
**WA OPEN FORWARD URL** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1022 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
index d54805b9542cfc..386178faa6ac17 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-url.md
@@ -5,13 +5,13 @@ slug: /commands/wa-open-url
displayed_sidebar: docs
---
-**WA OPEN URL** ( {* ;} *objeto* ; *url* )
+**WA OPEN URL** ( * ; *objeto* : Text ; *url* : Text )
**WA OPEN URL** ( *objeto* : Field, Variable ; *url* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| url | Text | → | URL a carregar na área Web |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| url | Text | → | URL a carregar na área Web |
@@ -51,6 +51,6 @@ Este comando tem o mesmo efeito que a modificação do valor da variável "URL"
| | |
| --- | --- |
| Número do comando | 1020 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
index 93728d1c0a4ab7..b96b3d8c177d24 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-open-web-inspector.md
@@ -5,12 +5,12 @@ slug: /commands/wa-open-web-inspector
displayed_sidebar: docs
---
-**WA OPEN WEB INSPECTOR** ( {* ;} *objeto* )
+**WA OPEN WEB INSPECTOR** ( * ; *objeto* : Text )
**WA OPEN WEB INSPECTOR** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
-| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for omitido) |
+| * | Operador | → | Se especificado objeto é um nome de objeto (string). Se omitido, objeto é uma variável |
+| objeto | any | → | Nome de objeto (se * for especificado) ou Variável (se * for omitido) |
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1736 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
index 10b4ff9566a62b..25c7110cf1e822 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-refresh-current-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-refresh-current-url
displayed_sidebar: docs
---
-**WA REFRESH CURRENT URL** ( {* ;} *objeto* )
+**WA REFRESH CURRENT URL** ( * ; *objeto* : Text )
**WA REFRESH CURRENT URL** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1023 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
index 7adeffa62b03e7..141569fa637f12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-run-offscreen-area.md
@@ -5,11 +5,11 @@ slug: /commands/wa-run-offscreen-area
displayed_sidebar: docs
---
-**WA Run offscreen area** ( *parâmetro* ) : any
+**WA Run offscreen area** ( *parâmetro* : Object ) : any
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| parâmetro | Object | → | Objeto que contém os atributos da área web |
+| parâmetro | Object | → | Objeto que contém os atributos da área web |
| Resultado | any | ← | Valor retornado pelo método de callback |
@@ -101,7 +101,7 @@ A variável de sistema OK é estabelecida como 0 se o timeout foi alcançaddo ou
| | |
| --- | --- |
| Número do comando | 1727 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
index f29981bf9c0171..f20e3d7eabab93 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-external-links-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-external-links-filters
displayed_sidebar: docs
---
-**WA SET EXTERNAL LINKS FILTERS** ( {* ;} *objeto* ; *arrFiltro* ; *permitirArrRecusar* )
+**WA SET EXTERNAL LINKS FILTERS** ( * ; *objeto* : Text ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
**WA SET EXTERNAL LINKS FILTERS** ( *objeto* : Field, Variable ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| arrFiltro | Text array | → | Array filtros |
-| permitirArrRecusar | Boolean array | → | Allow-deny array |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| arrFiltro | Text array | → | Array filtros |
+| permitirArrRecusar | Boolean array | → | Allow-deny array |
@@ -79,6 +79,6 @@ Este exemplo combina os filtros de sites e de links externos:
| | |
| --- | --- |
| Número do comando | 1032 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
index 55b5120accae59..921f89e3ffc675 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-page-content.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-page-content
displayed_sidebar: docs
---
-**WA SET PAGE CONTENT** ( {* ;} *objeto* ; *conteúdo* ; *bancoURL* )
+**WA SET PAGE CONTENT** ( * ; *objeto* : Text ; *conteúdo* : Text ; *bancoURL* : Text )
**WA SET PAGE CONTENT** ( *objeto* : Field, Variable ; *conteúdo* : Text ; *bancoURL* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| conteúdo | Text | → | código de fonte HTML |
-| bancoURL | Text | → | URL para referências relativas (macOS) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| conteúdo | Text | → | código de fonte HTML |
+| bancoURL | Text | → | URL para referências relativas (macOS) |
@@ -51,6 +51,6 @@ Mostrar a frase "Olá mundo!" e definição de uma URL de banco "file:///" banco
| | |
| --- | --- |
| Número do comando | 1037 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
index c4a9ee405d0c9c..61bc511a40c983 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-preference.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-preference
displayed_sidebar: docs
---
-**WA SET PREFERENCE** ( {* ;} *objeto* ; *seletor* ; *valor* )
+**WA SET PREFERENCE** ( * ; *objeto* : Text ; *seletor* : Integer ; *valor* : Boolean )
**WA SET PREFERENCE** ( *objeto* : Field, Variable ; *seletor* : Integer ; *valor* : Boolean )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| seletor | Integer | → | Preferência a ser modificada |
-| valor | Boolean | → | Valor de preferência (True=permitido; False = não permitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| seletor | Integer | → | Preferência a ser modificada |
+| valor | Boolean | → | Valor de preferência (True=permitido; False = não permitido) |
@@ -58,6 +58,6 @@ WA SET PREFERENCE( *;"myarea"; WA enable URL drop ; True)
| | |
| --- | --- |
| Número do comando | 1041 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
index b93037b2af090b..fe92ff9a05b847 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-set-url-filters.md
@@ -5,14 +5,14 @@ slug: /commands/wa-set-url-filters
displayed_sidebar: docs
---
-**WA SET URL FILTERS** ( {* ;} *objeto* ; *arrFiltro* ; *permitirArrRecusar* )
+**WA SET URL FILTERS** ( * ; *objeto* : Text ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
**WA SET URL FILTERS** ( *objeto* : Field, Variable ; *arrFiltro* : Text array ; *permitirArrRecusar* : Boolean array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
-| arrFiltro | Text array | → | Array filtros |
-| permitirArrRecusar | Boolean array | → | Array autorizar- recusar |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| arrFiltro | Text array | → | Array filtros |
+| permitirArrRecusar | Boolean array | → | Array autorizar- recusar |
@@ -145,6 +145,6 @@ Imagine que deseja negar o acesso a endereços IP específicos:
| | |
| --- | --- |
| Número do comando | 1030 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
index a9c21f44ebdc93..103946a25e8ffc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-stop-loading-url.md
@@ -5,12 +5,12 @@ slug: /commands/wa-stop-loading-url
displayed_sidebar: docs
---
-**WA STOP LOADING URL** ( {* ;} *objeto* )
+**WA STOP LOADING URL** ( * ; *objeto* : Text )
**WA STOP LOADING URL** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1024 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
index 181d4385cf0f39..6ca45e1b82d926 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-in.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-in
displayed_sidebar: docs
---
-**WA ZOOM IN** ( {* ;} *objeto* )
+**WA ZOOM IN** ( * ; *objeto* : Text )
**WA ZOOM IN** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1039 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
index 7d98dd328e8d43..f92848a4aee9a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/wa-zoom-out.md
@@ -5,12 +5,12 @@ slug: /commands/wa-zoom-out
displayed_sidebar: docs
---
-**WA ZOOM OUT** ( {* ;} *objeto* )
+**WA ZOOM OUT** ( * ; *objeto* : Text )
**WA ZOOM OUT** ( *objeto* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
-| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
+| * | Operador | → | Se especificado, objeto é um nome de objeto (string); se omitido, objeto é uma variável |
+| objeto | any | → | Nome objeto (se * for especificado) ou Variável (se * é omitido) |
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1040 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
index a974122f5c3d8f..66975a05a69dc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte o exemplo do comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número do comando | 1211 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
index 0d00dc002732b2..295c69f2e9b0a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-body-part.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-body-part
displayed_sidebar: docs
---
-**WEB GET BODY PART** ( *parte* ; *conteudo* ; *nome* ; *tipoMime* ; *nomArquivo* )
+**WEB GET BODY PART** ( *parte* : Integer ; *conteudo* : Blob, Text ; *nome* : Text ; *tipoMime* : Text ; *nomArquivo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| parte | Integer | → | Número de parte |
+| parte | Integer | → | Número de parte |
| conteudo | Blob, Text | ← | Conteúdo de parte |
| nome | Text | ← | Nome da variável "input" |
| tipoMime | Text | ← | Tipo mime do arquivo |
@@ -98,6 +98,6 @@ Este é o código do método GetFile:
| | |
| --- | --- |
| Número do comando | 1212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
index c1da2c04176b5f..5cc8ac7671cd61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Se este comando se chama fora do contexto de uma sessão web, devolve uma cadeia
| | |
| --- | --- |
| Número do comando | 1162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
index 00bbaf87a010f5..c43c9053585515 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-body.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-body
displayed_sidebar: docs
---
-**WEB GET HTTP BODY** ( *corpo* )
+**WEB GET HTTP BODY** ( *corpo* : Blob, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -54,6 +54,6 @@ Quando o formulário é enviado ao servidor web, a variável $textoPetição rec
| | |
| --- | --- |
| Número do comando | 814 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
index ce866963da24ec..8458af20ce2468 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-http-header.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-http-header
displayed_sidebar: docs
---
-**WEB GET HTTP HEADER** ( cabeçalho|arrayCampo {; *valorArray*} )
+**WEB GET HTTP HEADER** ( cabeçalho|arrayCampo {; *valorArray* : Text array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -123,6 +123,6 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de
| | |
| --- | --- |
| Número do comando | 697 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
index d0cd6a1fc2a158..f552f61898c2e4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-option.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-option
displayed_sidebar: docs
---
-**WEB GET OPTION** ( *seletor* ; *valor* )
+**WEB GET OPTION** ( *seletor* : Integer ; *valor* : Integer, Text, Collection )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Código da opção a modificar |
+| seletor | Integer | → | Código da opção a modificar |
| valor | Integer, Text, Collection | ← | Valor da opção |
@@ -69,6 +69,6 @@ Quando usar o seletor web debug log, pode receber uma das constantes abaixo no p
| | |
| --- | --- |
| Número do comando | 1209 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
index 15d647b7df0e80..072fcab6ae627d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-server-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-get-server-info
displayed_sidebar: docs
---
-**WEB Get server info** {( *comCache* )} : Object
+**WEB Get server info** ( *comCache* : Boolean ) : Object
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| comCache | Boolean | → | True para retornar a descrição web cache. Senão (pré-determinado) a descrição da cache não é retornada |
+| comCache | Boolean | → | True para retornar a descrição web cache. Senão (pré-determinado) a descrição da cache não é retornada |
| Resultado | Object | ← | Informação no servidor Web executando e servidor SOAP |
@@ -94,6 +94,6 @@ Depois de executar o código abaixo:
| | |
| --- | --- |
| Número do comando | 1531 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
index def4ed1281a3fb..a40a4b071f22c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-statistics.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-statistics
displayed_sidebar: docs
---
-**WEB GET STATISTICS** ( *paginas* ; *hits* ; *uso* )
+**WEB GET STATISTICS** ( *paginas* : Text array ; *hits* : Integer array ; *uso* : Integer )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -68,6 +68,6 @@ Pode enviar a página "stats.shtm" utilizando um link URL ou utilizando o comand
| | |
| --- | --- |
| Número do comando | 658 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
index 5a23d645060217..5b19e9d8a511eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-get-variables.md
@@ -5,7 +5,7 @@ slug: /commands/web-get-variables
displayed_sidebar: docs
---
-**WEB GET VARIABLES** ( *nomeArray* ; *valorArray* )
+**WEB GET VARIABLES** ( *nomeArray* : Text array ; *valorArray* : Text array )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
@@ -69,6 +69,6 @@ A variável vNOME contém ROBERTO e vCIDADE contém PARIS.
| | |
| --- | --- |
| Número do comando | 683 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
index b03257f652ebbd..66f213e98eff35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por exemplo, recusar as tentativas de conexão em modo nã
| | |
| --- | --- |
| Número do comando | 698 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
index 0beb0e3441d67b..b56a079f8ced0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Você quer verificar que o servidor web se está executando:
| | |
| --- | --- |
| Número do comando | 1313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
index 645aa96e7228cc..97e851fb0a293d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-close-session.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-close-session
displayed_sidebar: docs
---
-**WEB LEGACY CLOSE SESSION** ( *sessao* )
+**WEB LEGACY CLOSE SESSION** ( *sessao* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| sessao | Text | → | Sessão UUID |
+| sessao | Text | → | Sessão UUID |
@@ -41,6 +41,6 @@ Depois da execução deste comando, se um cliente web envia um pedido com uma co
| | |
| --- | --- |
| Número do comando | 1208 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
index 63c6dbddba7e21..e534f6deed9d71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-legacy-get-session-expiration.md
@@ -5,11 +5,11 @@ slug: /commands/web-legacy-get-session-expiration
displayed_sidebar: docs
---
-**WEB LEGACY GET SESSION EXPIRATION** ( *idSessao* ; *dataVenc* ; *horaVenc* )
+**WEB LEGACY GET SESSION EXPIRATION** ( *idSessao* : Text ; *dataVenc* : Date ; *horaVenc* : Time )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| idSessao | Text | → | UUID de sessão |
+| idSessao | Text | → | UUID de sessão |
| dataVenc | Date | ← | Data de vencimento da cookie |
| horaVenc | Time | ← | Hora de vencimento da cookie |
@@ -44,6 +44,6 @@ O parâmetro *dataVenc* recebe a data de vencimento e o parâmetro *horaVenc* re
| | |
| --- | --- |
| Número do comando | 1207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
index 8c2c57cc4577bb..50411a5d3bf259 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-blob.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-blob
displayed_sidebar: docs
---
-**WEB SEND BLOB** ( *BLOB* ; *tipo* )
+**WEB SEND BLOB** ( *BLOB* : Blob ; *tipo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| Blob | Blob | → | Blob a enviar ao browser |
-| tipo | Text | → | Tipo de dados do BLOB |
+| Blob | Blob | → | Blob a enviar ao browser |
+| tipo | Text | → | Tipo de dados do BLOB |
@@ -43,6 +43,6 @@ Consulte o exemplo da rotina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número do comando | 654 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
index 8bd34953d8d786..e157947aa013a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-file.md
@@ -5,11 +5,11 @@ slug: /commands/web-send-file
displayed_sidebar: docs
---
-**WEB SEND FILE** ( *htmlArquivo* )
+**WEB SEND FILE** ( *htmlArquivo* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| htmlArquivo | Text | → | Rota do arquivo HTML ou string vazia para terminar SEND HTML FILE |
+| htmlArquivo | Text | → | Rota do arquivo HTML ou string vazia para terminar SEND HTML FILE |
@@ -54,7 +54,7 @@ Se o arquivo a ser enviado existir e o timeout não tiver passado, OK é estabel
| | |
| --- | --- |
| Número do comando | 619 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
index cfb336fc67ce6b..4ff5710c02c69c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-http-redirect.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-http-redirect
displayed_sidebar: docs
---
-**WEB SEND HTTP REDIRECT** ( *url* {; *} )
+**WEB SEND HTTP REDIRECT** ( *url* : Text {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| url | Text | → | Nova URL |
-| * | Operador | → | Se especificado = URL não for traduzido, se omitido = URL é traduzido |
+| url | Text | → | Nova URL |
+| * | Operador | → | Se especificado = URL não for traduzido, se omitido = URL é traduzido |
@@ -62,6 +62,6 @@ End case
| | |
| --- | --- |
| Número do comando | 659 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
index cd90608f3bfbd2..a595a74b504332 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-raw-data.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-raw-data
displayed_sidebar: docs
---
-**WEB SEND RAW DATA** ( *dados* {; *} )
+**WEB SEND RAW DATA** ( *dados* : Blob {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| dados | Blob | → | Dados HTTP a enviar |
-| * | Operador | → | Enviar em pedaços |
+| dados | Blob | → | Dados HTTP a enviar |
+| * | Operador | → | Enviar em pedaços |
@@ -89,6 +89,6 @@ Este exemplo ilustra o uso da opção chunked com o comando **WEB SEND RAW DATA*
| | |
| --- | --- |
| Número do comando | 815 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
index 9165b8bfe67768..78e8277d56a5d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-send-text.md
@@ -5,12 +5,12 @@ slug: /commands/web-send-text
displayed_sidebar: docs
---
-**WEB SEND TEXT** ( *textoHTML* {; *semContexto*} )
+**WEB SEND TEXT** ( *textoHTML* : Text {; *semContexto* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| textoHTML | Text | → | Texto do campo HTML ou variável a ser enviado ao navegador Web |
-| semContexto | Text | → | True = Vai para o modo não contextual se False; se omitido = permanece no modo atual. |
+| textoHTML | Text | → | Texto do campo HTML ou variável a ser enviado ao navegador Web |
+| semContexto | Text | → | True = Vai para o modo não contextual se False; se omitido = permanece no modo atual. |
@@ -50,6 +50,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 677 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
index ead975821b28ba..57414e46e14738 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-authenticate.md
@@ -5,14 +5,14 @@ slug: /commands/web-service-authenticate
displayed_sidebar: docs
---
-**WEB SERVICE AUTHENTICATE** ( *nome* ; *senha* {; *metAutenticaçao*} {; *} )
+**WEB SERVICE AUTHENTICATE** ( *nome* : Text ; *senha* : Text {; *metAutenticaçao* : Integer} {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nome | Text | → | nome de usuário |
-| senha | Text | → | senha de usuário |
-| metAutenticaçao | Integer | → | Método autenticação 0 ou omitido = não especificado; 1= BASIC; 2=DIGEST |
-| * | Operador | → | Se passado: autenticação por proxy |
+| nome | Text | → | nome de usuário |
+| senha | Text | → | senha de usuário |
+| metAutenticaçao | Integer | → | Método autenticação 0 ou omitido = não especificado; 1= BASIC; 2=DIGEST |
+| * | Operador | → | Se passado: autenticação por proxy |
@@ -57,6 +57,6 @@ Autenticação com um serviço web localizado atrás de um proxy:
| | |
| --- | --- |
| Número do comando | 786 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
index 9eaaf1dbbd05bd..7ddcaf363e57f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-call.md
@@ -5,16 +5,16 @@ slug: /commands/web-service-call
displayed_sidebar: docs
---
-**WEB SERVICE CALL** ( *urlAcesso* ; *soapAction* ; *nomeMetodo* ; *nomeEspaço* {; *tipoComplexo* {; *}} )
+**WEB SERVICE CALL** ( *urlAcesso* : Text ; *soapAction* : Text ; *nomeMetodo* : Text ; *nomeEspaço* : Text {; *tipoComplexo* : Integer {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| urlAcesso | Text | → | Acesso URL ao Webservice |
-| soapAction | Text | → | Conteúdos do campo SOAPAction |
-| nomeMetodo | Text | → | Nome do método |
-| nomeEspaço | Text | → | nomeespaço XML |
-| tipoComplexo | Integer | → | Configuração de tipos complexos (tipos simples se omitido) |
-| * | Operador | → | Não fechar a conexão |
+| urlAcesso | Text | → | Acesso URL ao Webservice |
+| soapAction | Text | → | Conteúdos do campo SOAPAction |
+| nomeMetodo | Text | → | Nome do método |
+| nomeEspaço | Text | → | nomeespaço XML |
+| tipoComplexo | Integer | → | Configuração de tipos complexos (tipos simples se omitido) |
+| * | Operador | → | Não fechar a conexão |
@@ -173,7 +173,7 @@ Se a petição for corretamente encaminhada, e o Web Service a aceitar, a variá
| | |
| --- | --- |
| Número do comando | 778 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
index e5f5c838a54cbf..f1b5fb86e6c437 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-info.md
@@ -5,11 +5,11 @@ slug: /commands/web-service-get-info
displayed_sidebar: docs
---
-**WEB SERVICE Get info** ( *tipoInfo* ) : Text
+**WEB SERVICE Get info** ( *tipoInfo* : Integer ) : Text
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| tipoInfo | Integer | → | Informação a ser recuperada |
+| tipoInfo | Integer | → | Informação a ser recuperada |
| Resultado | Text | ← | Informação sobre o último erro SOAP |
@@ -35,6 +35,6 @@ Uma string vazia é retornada quando não há informação disponível, particul
| | |
| --- | --- |
| Número do comando | 780 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
index 0b91e16285e977..2578f9ca9ce587 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-get-result.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-get-result
displayed_sidebar: docs
---
-**WEB SERVICE GET RESULT** ( *valorRetornado* {; *nomeRetornado* {; *}} )
+**WEB SERVICE GET RESULT** ( *valorRetornado* : Variable {; *nomeRetornado* : Text {; *}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| valorRetornado | Variable | ← | Valor retornado pelo Web Service |
-| nomeRetornado | Text | → | Nome do parâmetro a ser retornado |
-| * | Operator | → | Liberar memória |
+| nomeRetornado | Text | → | Nome do parâmetro a ser retornado |
+| * | Operator | → | Liberar memória |
@@ -57,6 +57,6 @@ Imagine um serviço web que devolve a hora atual em qualquer cidade do mundo. Os
| | |
| --- | --- |
| Número do comando | 779 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
index 43afd7be19ce30..01a1342ecef919 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-service-set-option
displayed_sidebar: docs
---
-**WEB SERVICE SET OPTION** ( *opçao* ; *valor* )
+**WEB SERVICE SET OPTION** ( *opçao* : Integer ; *valor* : Integer, Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| opçao | Integer | → | Código da opção a estabelecer |
-| valor | Integer, Text | → | Valor da opção |
+| opçao | Integer | → | Código da opção a estabelecer |
+| valor | Integer, Text | → | Valor da opção |
@@ -68,6 +68,6 @@ Utilização da versão 1.2 do protocolo SOAP:
| | |
| --- | --- |
| Número do comando | 901 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
index 1e4457e42d1126..9cbb4e2442387e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-service-set-parameter.md
@@ -5,13 +5,13 @@ slug: /commands/web-service-set-parameter
displayed_sidebar: docs
---
-**WEB SERVICE SET PARAMETER** ( *nome* ; *valor* {; *tipoSoap*} )
+**WEB SERVICE SET PARAMETER** ( *nome* : Text ; *valor* : Variable {; *tipoSoap* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nome | Text | → | Nome do parâmetro a incluir na petição SOAP |
-| valor | Variable | → | Variável 4D que contém o valor do parâmetro |
-| tipoSoap | Text | → | Tipo SOAP do parâmetro |
+| nome | Text | → | Nome do parâmetro a incluir na petição SOAP |
+| valor | Variable | → | Variável 4D que contém o valor do parâmetro |
+| tipoSoap | Text | → | Tipo SOAP do parâmetro |
@@ -78,6 +78,6 @@ Este exemplo define dois parâmetros:
| | |
| --- | --- |
| Número do comando | 777 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
index d5d2515aa57b4c..709b7a4497bad2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-home-page.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-home-page
displayed_sidebar: docs
---
-**WEB SET HOME PAGE** ( *pagInicio* )
+**WEB SET HOME PAGE** ( *pagInicio* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pagInicio | Text | → | Nome da página ou rota de acesso HTML a página ou "" para não enviar a home page personalizada |
+| pagInicio | Text | → | Nome da página ou rota de acesso HTML a página ou "" para não enviar a home page personalizada |
@@ -33,6 +33,6 @@ Para não enviar *pagInicio* como página de inicio para o processo web atual, e
| | |
| --- | --- |
| Número do comando | 639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
index 1f4d74ee2c2b89..9395ac926fd8ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-http-header.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-http-header
displayed_sidebar: docs
---
-**WEB SET HTTP HEADER** ( cabeçalho|arrayCampo {; *valorArray*} )
+**WEB SET HTTP HEADER** ( cabeçalho|arrayCampo {; *valorArray* : Text array} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| cabeçalho|arrayCampo | Texto, Array texto | → | Campo ou variável contendo o cabeçalho HTTP requisitado ou campos cabeçalho HTTP |
-| valorArray | Text array | → | Conteúdo de campo de cabeçalho HTTP |
+| cabeçalho|arrayCampo | Texto, Array texto | → | Campo ou variável contendo o cabeçalho HTTP requisitado ou campos cabeçalho HTTP |
+| valorArray | Text array | → | Conteúdo de campo de cabeçalho HTTP |
@@ -73,6 +73,6 @@ Os campos **Date** e **Content-Length** sempre são definidos por padrão por 4D
| | |
| --- | --- |
| Número do comando | 660 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
index 0c4d8549691b03..9c67e59e6489fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-option.md
@@ -5,12 +5,12 @@ slug: /commands/web-set-option
displayed_sidebar: docs
---
-**WEB SET OPTION** ( *seletor* ; *valor* )
+**WEB SET OPTION** ( *seletor* : Integer ; *valor* : Integer, Text, Collection )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| seletor | Integer | → | Código da opção a modificar |
-| valor | Integer, Text, Collection | → | Valor da opção |
+| seletor | Integer | → | Código da opção a modificar |
+| valor | Integer, Text, Collection | → | Valor da opção |
@@ -89,6 +89,6 @@ Uma entrada registrada se vê dessa maneira:
| | |
| --- | --- |
| Número do comando | 5 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
index d30d2fdbef80a8..be78f8408054e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-set-root-folder.md
@@ -5,11 +5,11 @@ slug: /commands/web-set-root-folder
displayed_sidebar: docs
---
-**WEB SET ROOT FOLDER** ( *pastaRaiz* )
+**WEB SET ROOT FOLDER** ( *pastaRaiz* : Text )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| pastaRaiz | Text | → | Rota de acesso da pasta raiz do webserver |
+| pastaRaiz | Text | → | Rota de acesso da pasta raiz do webserver |
@@ -44,7 +44,7 @@ Se especificar uma rota de acesso inválida, será gerado um erro do administrad
| | |
| --- | --- |
| Número do comando | 634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
index 4952b96f3961a2..aeddf8640a0933 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Se o servidor Web é iniciado corretamente, Ok assume o valor 1; do contrário O
| | |
| --- | --- |
| Número do comando | 617 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
index 2d0f1e9ed08680..ebda38803e1365 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Se o servidor web não for iniciado, o comando não faz nada.
| | |
| --- | --- |
| Número do comando | 618 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
index 593250ea88f87e..9cbf9a52a0e430 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/web-validate-digest.md
@@ -5,12 +5,12 @@ slug: /commands/web-validate-digest
displayed_sidebar: docs
---
-**WEB Validate digest** ( *nomeUsuario* ; *senha* ) : Boolean
+**WEB Validate digest** ( *nomeUsuario* : Text ; *senha* : Text ) : Boolean
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeUsuario | Text | → | Nome do usuário |
-| senha | Text | → | Senha de usuário |
+| nomeUsuario | Text | → | Nome do usuário |
+| senha | Text | → | Senha de usuário |
| Resultado | Boolean | ← | True = Autenticação OK; False = autenticação falha |
@@ -63,6 +63,6 @@ Exemplo de método de base On Web Authentication em modo Digest:
| | |
| --- | --- |
| Número do comando | 946 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
index fa4900ce8f19b2..571830b0e1a04a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-kind.md
@@ -5,11 +5,11 @@ slug: /commands/window-kind
displayed_sidebar: docs
---
-**Window kind** {( *janela* )} : Integer
+**Window kind** ( *janela* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
+| janela | Integer | → | Número de referência da Janela, ou a janela ativa do processo atual, se omitido |
| Resultado | Integer | ← | Tipo de janela |
@@ -45,6 +45,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Número do comando | 445 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
index bf62935d813cf6..be7bead4a3f4ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-list.md
@@ -5,12 +5,12 @@ slug: /commands/window-list
displayed_sidebar: docs
---
-**WINDOW LIST** ( *janelas* {; *} )
+**WINDOW LIST** ( *janelas* : Array {; *} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
| janelas | Array | ← | Array de números de referência de janelas |
-| * | Operador | → | Se especificado, considere janela flutuante, se omitido, ignore janela flutuante |
+| * | Operador | → | Se especificado, considere janela flutuante, se omitido, ignore janela flutuante |
@@ -56,6 +56,6 @@ O método de projeto abaixo coloca em mosaico todas as janelas abertas atualment
| | |
| --- | --- |
| Número do comando | 442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
index 641820ea757815..c09067286aea55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/window-process.md
@@ -5,11 +5,11 @@ slug: /commands/window-process
displayed_sidebar: docs
---
-**Window process** {( *janela* )} : Integer
+**Window process** ( *janela* : Integer ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| janela | Integer | → | Número de referência da janela |
+| janela | Integer | → | Número de referência da janela |
| Resultado | Integer | ← | Número de referência do processo |
@@ -29,6 +29,6 @@ Se omitir o parâmetro *janela*, Window process devolve o número do processo da
| | |
| --- | --- |
| Número do comando | 446 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
index 7aa0be8b8564e9..9f0e2c2df8b598 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-alt-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
index e7c3b932e3e103..51e525647b8fb8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/windows-ctrl-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
index 8a9759e742bbb8..b5736430b4ea64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/write-picture-file.md
@@ -5,13 +5,13 @@ slug: /commands/write-picture-file
displayed_sidebar: docs
---
-**WRITE PICTURE FILE** ( *nomeArquivo* ; *imagem* {; *codec*} )
+**WRITE PICTURE FILE** ( *nomeArquivo* : Text ; *imagem* : Picture {; *codec* : Text} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| nomeArquivo | Text | → | Nome ou rota completa do arquivo a escrever, ou string vazia |
-| imagem | Picture | → | Campo de imagem ou variável a escrever |
-| codec | Text | → | Codec de identificação de Imagem |
+| nomeArquivo | Text | → | Nome ou rota completa do arquivo a escrever, ou string vazia |
+| imagem | Picture | → | Campo de imagem ou variável a escrever |
+| codec | Text | → | Codec de identificação de Imagem |
@@ -56,7 +56,7 @@ Se a execução do comando for correta, a variável sistema Document contém a r
| | |
| --- | --- |
| Número do comando | 680 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
index 10ca52d4ed1487..d33f347a1ee330 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-decode.md
@@ -5,11 +5,11 @@ slug: /commands/xml-decode
displayed_sidebar: docs
---
-**XML DECODE** ( *valorXML* ; *objeto4D* )
+**XML DECODE** ( *valorXML* : Text ; *objeto4D* : Field, Variable )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| valorXML | Text | → | Valor do tipo Texto que vem de uma estrutura XML |
+| valorXML | Text | → | Valor do tipo Texto que vem de uma estrutura XML |
| objeto4D | Field, Variable | ← | Variável 4D ou campo que recebe o valor XML convertido |
@@ -82,6 +82,6 @@ Exemplo do documento XML:
| | |
| --- | --- |
| Número do comando | 1091 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
index 31908f4a791e8f..acfdb08daf7998 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-error.md
@@ -5,11 +5,11 @@ slug: /commands/xml-get-error
displayed_sidebar: docs
---
-**XML GET ERROR** ( *refElemento* ; *textoErro* {; *linha* {; *coluna*}} )
+**XML GET ERROR** ( *refElemento* : Text ; *textoErro* : Variable {; *linha* : Variable {; *coluna* : Variable}} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| refElemento | Text | → | Referência de elemento XML |
+| refElemento | Text | → | Referência de elemento XML |
| textoErro | Variable | ← | Texto do erro |
| linha | Variable | ← | Número de linha |
| coluna | Variable | ← | Número de coluna |
@@ -35,7 +35,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 732 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
index ab7a8e2e6c48dc..fc38e8c1c9f1b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-get-options.md
@@ -5,12 +5,12 @@ slug: /commands/xml-get-options
displayed_sidebar: docs
---
-**XML GET OPTIONS** ( elemRef|documento ; *seletor* ; *valor* {; *seletor2* ; *valor2* ; ... ; *seletorN* ; *valorN*} )
+**XML GET OPTIONS** ( elemRef|documento ; *seletor* : Integer ; *valor* : Integer {; ...(*seletor* : Integer, *valor* : Integer)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| elemRef|documento | Texto | → | Elemento de referência raiz XML ou Referência de documento aberto |
-| seletor | Integer | → | Opção a conseguir |
+| elemRef|documento | Texto | → | Elemento de referência raiz XML ou Referência de documento aberto |
+| seletor | Integer | → | Opção a conseguir |
| valor | Integer | ← | Valor atual da opção |
@@ -43,6 +43,6 @@ Em seletor, passe uma das constantes do tema "*XML*" indicando a opção a obter
| | |
| --- | --- |
| Número do comando | 1096 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
index e6fe262cbf2454..16a19c29144f70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/xml-set-options.md
@@ -5,13 +5,13 @@ slug: /commands/xml-set-options
displayed_sidebar: docs
---
-**XML SET OPTIONS** ( elemRef|documento ; *seletor* ; *valor* {; *seletor2* ; *valor2* ; ... ; *seletorN* ; *valorN*} )
+**XML SET OPTIONS** ( elemRef|documento ; *seletor* : Integer ; *valor* : Integer {; ...(*seletor* : Integer, *valor* : Integer)} )
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| elemRef|documento | Texto | → | Elemento de referencia raiz XML ou Referência de documento aberto |
-| seletor | Integer | → | Opção a estabelecer |
-| valor | Integer | → | Valor da opção |
+| elemRef|documento | Texto | → | Elemento de referencia raiz XML ou Referência de documento aberto |
+| seletor | Integer | → | Opção a estabelecer |
+| valor | Integer | → | Valor da opção |
@@ -75,6 +75,6 @@ Inserir uma imagem SVG:
| | |
| --- | --- |
| Número do comando | 1090 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
index 09067134e16c5f..ff8ab5884d71da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands-legacy/year-of.md
@@ -5,11 +5,11 @@ slug: /commands/year-of
displayed_sidebar: docs
---
-**Year of** ( *data* ) : Integer
+**Year of** ( *data* : Date ) : Integer
| Parâmetro | Tipo | | Descrição |
| --- | --- | --- | --- |
-| data | Date | → | Data para a qual devolver o ano |
+| data | Date | → | Data para a qual devolver o ano |
| Resultado | Integer | ← | Número indicando o ano da data |
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 25 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md
index f0bfe559655e7e..7c082b50dea0b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/compile-project.md
@@ -5,7 +5,7 @@ slug: /commands/compile-project
displayed_sidebar: docs
---
-**Compile project** {( {*projectFile*}{;}{*options*} )} : Object
+**Compile project** ( {*options* : Object} ) : Object
**Compile project** ( *projectFile* : 4D.File } {; *options* : Object} ) : Object
@@ -194,9 +194,9 @@ var $result:=Compile project($options)
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1760 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1760 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/file.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/file.md
index 6aa7a7f2723c79..08aa793906f6d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/file.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**File** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.File
**File** ( *fileConstant* : Integer { ; \* } ) : 4D.File
+**File** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.File
**File** ( *fileConstant* : Integer { ; * } ) : 4D.File
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Rota do arquivo |
| fileConstant | Integer | → | Constante de arquivo 4D |
| pathType | Integer | → | `fk posix path` (padrão) ou `fk platform path` |
-| \* | operator | → | \* para devolver o arquivo da base de dados anfitriã |
+| \* | Operador | → | \* para devolver o arquivo da base de dados anfitriã |
| Resultados | [4D.File](../API/FileClass.md) | ← | Novo objeto arquivo |
@@ -88,9 +88,9 @@ If the command is called from a component, pass the optional `*` parameter to ge
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1566 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1566 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md
index 890b8015f4cf28..11d3d2216f9ded 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/folder.md
@@ -13,7 +13,7 @@ displayed_sidebar: docs
-**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; \* } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; \* } ) : 4D.Folder
+**Folder** ( *path* : Text { ; *pathType* : Integer }{ ; * } ) : 4D.Folder
**Folder** ( *folderConstant* : Integer { ; * } ) : 4D.Folder
@@ -22,7 +22,7 @@ displayed_sidebar: docs
| path | Text | → | Folder path |
| folderConstant | Integer | → | Constante Pasta 4D |
| pathType | Integer | → | `fk posix path` (padrão) ou `fk platform path` |
-| \* | operator | → | \* para devolver a pasta da base de dados do anfitrião |
+| \* | Operador | → | \* para devolver a pasta da base de dados do anfitrião |
| Resultados | [4D.Folder](../API/FolderClass.md) | ← | Novo Objeto Folder |
@@ -78,9 +78,9 @@ If the command is called from a component, pass the optional `*` parameter to ge
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1567 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1567 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md
index aa1fa0dadc9098..8339732fdc4786 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Information about the active licence |
+| Resultado | Object | ← | Information about the active license |
@@ -143,9 +143,9 @@ You want to get information on your current 4D Server license:
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
index ee406cf5ac976a..e1668d9c76b935 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-get-property.md
@@ -4,7 +4,7 @@ title: LISTBOX Get property
displayed_sidebar: docs
---
-**LISTBOX Get property** ( {* ;} *object* ; *property* ) : any
+**LISTBOX Get property** ( * ; *object* : Text ; *property* : Integer ) : any
**LISTBOX Get property** ( *object* : Field, Variable ; *property* : Integer ) : any
@@ -37,6 +37,8 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk column max width | 26 | **[Maximum Width](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)** property
Applies to: Column \* |
| lk column min width | 25 | **[Minimum Width](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)** property
Applies to: Column \* |
| lk column resizable | 15 | **[Resizable](../FormObjects/properties_ResizingOptions.md#resizable)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | **[Detail Form Name](../FormObjects/properties_ListBox.md#detail-form-name)** property for selection type list box
Applies to: List box |
| lk display footer | 8 | **[Display Footers](../FormObjects/properties_Footers.md#display-footers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
| lk display header | 0 | **[Display Headers](../FormObjects/properties_Headers.md#display-headers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
@@ -47,7 +49,7 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura em pixels |
+| lk hor scrollbar height | 3 | Height in pixels (can only be read)
Applies to: List box |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largura em pixels |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Width in pixels (can only be read)
Applies to: List box |
\* These properties only apply to list box columns; if you pass a list box as parameter with one of these properties, **LISTBOX Get property** returns -1, or an empty string, depending on the *property* passed.
@@ -105,9 +104,9 @@ Given a list box "MyListbox", if you execute the following statement:
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 917 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | --- |
+| Número de comando | 917 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
index ba61087a94cf29..6d841d6e612fb9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/listbox-set-property.md
@@ -4,7 +4,7 @@ title: LISTBOX SET PROPERTY
displayed_sidebar: docs
---
-**LISTBOX SET PROPERTY** ( {* ;} *object* ; *property* ; *value* )
+**LISTBOX SET PROPERTY** ( * ; *object* : Text ; *property* : Integer ; *value* : Integer, Text )
**LISTBOX SET PROPERTY** ( *object* : Field, Variable ; *property* : Integer ; *value* : Integer, Text )
@@ -37,6 +37,8 @@ Nos parâmetros *property* e *value*, você indica, respectivamente, a proprieda
| lk column max width | 26 | **[Maximum Width](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)** property
Applies to: Column \* |
| lk column min width | 25 | **[Minimum Width](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)** property
Applies to: Column \* |
| lk column resizable | 15 | **[Resizable](../FormObjects/properties_ResizingOptions.md#resizable)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | **[Detail Form Name](../FormObjects/properties_ListBox.md#detail-form-name)** property for selection type list box
Applies to: List box |
| lk display footer | 8 | **[Display Footers](../FormObjects/properties_Footers.md#display-footers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
| lk display header | 0 | **[Display Headers](../FormObjects/properties_Headers.md#display-headers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
@@ -47,21 +49,17 @@ Nos parâmetros *property* e *value*, você indica, respectivamente, a proprieda
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura em pixels |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
| lk named selection | 28 | **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** property for selection type list box
Applies to: List box |
| lk resizing mode | 11 | **[Column Auto-Resizing](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)** property
Applies to: List box
Possible values:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unit of **[Row Height](../FormObjects/properties_CoordinatesAndSizing.md#row-height)** property
Applies to: List box
Possible values:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
| lk selection mode | 10 | **[Selection Mode](../FormObjects/properties_ListBox.md#selection-mode)** property
Applies to: List box
Possible values:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largura em pixels |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
\* These properties can only be applied to list box columns; however, if you pass a list box as parameter, **LISTBOX SET PROPERTY** applies the *property* to each column of the list box.
@@ -90,9 +88,9 @@ You want to set a maximum width for the column whose name is "ProductNumber":
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1440 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1440 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md
index 6b378039a369f9..278131db8ad132 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/session.md
@@ -26,20 +26,23 @@ displayed_sidebar: docs
## Descrição
-O comando `Session` retorna o objeto `Session` correspondente à sessão atual do usuário.
+The `Session` command returns the `Session` object corresponding to the current session.
-Dependendo do processo a partir do qual o comando é chamado, a sessão atual do usuário pode ser:
+Depending on the process from which the command is called, the current session can be:
- uma sessão web (quando [sessões escaláveis são ativadas](WebServer/sessions.md#enabling-web-sessions)),
-- uma sessão de cliente remoto,
-- a sessão de procedimentos armazenados,
-- a sessão *designer* em um aplicativo autônomo.
+- a remote client session (on the server),
+- a stored procedures session,
+- a standalone session.
Para obter mais informações, consulte [Tipos de sessão](../API/SessionClass.md#session-types).
-If the command is called from a non supported context (e.g. scalable sessions disabled), it returns *Null*.
+The command returns *Null* if:
-## Sessões web
+- it is called in a web process and scalable sessions are disabled on the web server,
+- it is called on a remote 4D.
+
+### Sessões web
O objeto `Session` das sessões web está disponível em qualquer processo web:
@@ -51,7 +54,7 @@ O objeto `Session` das sessões web está disponível em qualquer processo web:
Para obter mais informações sobre as sessões dos usuários da web, consulte a seção [Sessões de Servidor Web](../WebServer/sessions.md).
-## Sessões cliente remoto
+### Sessões cliente remoto
O objeto `Session` das sessões remotas de clientes está disponível em:
@@ -60,21 +63,48 @@ O objeto `Session` das sessões remotas de clientes está disponível em:
- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions),
- 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados.
-Para mais informações em sessões usuários remotos, consulte o parágrafo [**Sessões usuário cliente remoto**](../Desktop/clientServer.md#remote-user-sessions).
+For more information on remote user sessions, please refer to the [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions) paragraph.
-## a sessão de procedimentos armazenados
+### a sessão de procedimentos armazenados
Todos os processos de procedimento armazenado compartilham a mesma sessão de usuário virtual. O objeto `Session` de procedimentos armazenados está disponível em:
- métodos chamados com o comando [`Execute on server`](../commands-legacy/execute-on-server.md),
- `On Server Startup`, `On Server Shutdown`, `On Backup Startup`, `On Backup Shutdown`, and `On System event` database methods
-Para informações sobre procedimentos armazenados, consulte a página [4D Server e 4D Language](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html).
+For more information on stored procedures virtual user session, please refer to the [**Stored procedure sessions**](../Desktop/sessions.md#stored-procedure-sessions) paragraph.
-## Sessão autônoma
+### Sessão autônoma
The `Session` object is available from any process in standalone (single-user) applications so that you can write and test your client/server code using the `Session` object in your 4D development environment.
+For more information on standalone sessions, please refer to the [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions) paragraph.
+
+### `Session` and components
+
+When `Session` is called from the code of different [components loaded in the project](../Concepts/components.md), the command returns an object depending on the calling request and the context:
+
+- in case of a web request, `Session` always returns the session attached to the target web server of the request (and not a session of the component's web server),
+- in case of a remote request executed on the server, `Session` always returns the session attached to the remote user,
+- in case of a stored procedure session or a standalone session, `Session` always returns the single current session (the same object is used during all the work session).
+
+```mermaid
+flowchart TD
+ A[Need a session] --> B{Is it a web request?}
+ B -->|Yes| C[Use the session attached to the web server of the web request]
+ B -->|No| D{Is it a remote request?}
+ D -->|Yes| E[Use the object of the remote user session]
+ D -->|No| F[Use the unique object of the stored procedure/standalone session]
+
+ classDef decision fill:#f9f,stroke:#333,stroke-width:2px;
+ classDef process fill:#bbf,stroke:#333,stroke-width:2px;
+ classDef start fill:#bfb,stroke:#333,stroke-width:2px;
+
+ class B,D decision
+ class A start
+ class C,E,F process
+```
+
## Exemplo
You have defined the `action_Session` method with attribute "Available through 4D tags and URLs". Pode chamar ao método introduzindo a URL abaixo no navegador:
@@ -87,10 +117,10 @@ IP:port/4DACTION/action_Session
//action_Session method
Case of
:(Session#Null)
- If(Session.hasPrivilege("WebAdmin")) //calling the hasPrivilege function
- WEB SEND TEXT("4DACTION --> Session is WebAdmin")
+ If(Session.hasPrivilege("CreateInvoices")) //calling the hasPrivilege function
+ WEB SEND TEXT("4DACTION --> Session is CreateInvoices")
Else
- WEB SEND TEXT("4DACTION --> Session is not WebAdmin")
+ WEB SEND TEXT("4DACTION --> Session is not CreateInvoices")
End if
Else
WEB SEND TEXT("4DACTION --> Session is null")
@@ -100,15 +130,16 @@ IP:port/4DACTION/action_Session
## Veja também
[Session storage](session-storage.md)
-[Session API](../API/SessionClass.md)
+[Session API](../API/SessionClass.md)
+[Desktop sessions](../Desktop/sessions.md)
[Web server user sessions](../WebServer/sessions.md)
[*Scalable sessions for advanced web applications* (blog post)](https://blog.4d.com/scalable-sessions-for-advanced-web-applications/)
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1714 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1714 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md b/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md
index 4873e97e015194..7172f7fbd6a02a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/current/commands/web-server.md
@@ -30,11 +30,11 @@ O comando `WEB Server` retorna o objet
By default, if the *option* parameter is omitted, the command returns a reference to the Web server of the database, i.e. the default Web server. Para designar o servidor Web a ser retornado, você pode passar uma das seguintes constantes no parâmetro *option*:
-| Parâmetros | Valor | Comentário |
-| -------------------------------------------- | ----- | ------------------------------------------------------------------------------ |
-| `Web server database` | 1 | Servidor Web de banco de dados atual (padrão caso omitido) |
-| Parâmetros | 2 | Servidor Web do banco de dados de host de um componente |
-| `Solicitação de recebimento do servidor web` | 3 | Servidor web que recebeu o pedido (servidor Web de destino) |
+| Parâmetros | Valor | Comentário |
+| -------------------------------------------- | ----- | -------------------------------------------------------------------------------------------------- |
+| `Web server database` | 1 | Web server of the project from which the command is called (default if omitted) |
+| Parâmetros | 2 | Servidor Web do banco de dados de host de um componente |
+| `Solicitação de recebimento do servidor web` | 3 | Servidor web que recebeu o pedido (servidor Web de destino) |
O **objeto do servidor web retornado** contém os valores atuais das [propriedades do servidor web](../API/WebServerClass.md).
@@ -58,9 +58,9 @@ Do seu componente, você quer saber se o servidor Web do banco de dados host est
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1674 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1674 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Admin/cli.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Admin/cli.md
index 18e0da05549b97..a1562394fd1044 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Admin/cli.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Admin/cli.md
@@ -43,9 +43,9 @@ Sintaxe:
| `--webadmin-access-key` | Text | Chave de acesso para o servidor web [WebAdmin](webAdmin.md) |
| `--webadmin-auto-start` | Parâmetros | Estado do início automático para o [servidor WebAdmin](webAdmin.md) |
| `--webadmin-store-settings` | | Armazena a chave de acesso e inicia automaticamente os parâmetros nas configurações de arquivo utilizadas (ou seja, o arquivo padrão [`WebAdmin.4DSettings`](webAdmin.md#webadmin-settings) ou um arquivo personalizado designado pelo parâmetro `--webadmin-settings-path`). Use o argumento `--webadmin-store-settings` para salvar essos parâmetros se necessário |
- (*) Alguns diálogos são exibidos antes do banco de dados ser aberto, para que seja impossível escrever no
+ (*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the
-[arquivo Diagnóstico de log](debugLogFiles.md#4ddiagnosticlogtxt) (alerta de licença, diálogo de conversão, seleção de banco de dados, seleção de arquivo de dados). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
+[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
### Exemplos
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/Desktop/building.md
index 837f782d67006f..0d5066c7872a36 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-19/Desktop/building.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/Desktop/building.md
@@ -349,8 +349,8 @@ executable\<ApplicationName>Server\Server Database`.
Para ativar este recurso, adicione as chaves `DatabaseToEmbedInClientWinFolder` e/ou `DatabaseToEmbedInClientMacFolder` no arquivo de configurações do *buildApp*. Quando uma das chaves estiver presente, a aplicação cliente gera uma aplicação monousuário: a estrutura compilada, ao inves do arquivo *EnginedServer.4Dlink* é colocada na pasta "Database".
-* Se existir uma pasta de dados padrão no aplicativo de usuário único, uma licença será incorporada.
-* Se não existir uma pasta de dados padrão no aplicativo de usuário único, ela será executada sem arquivo de dados e sem licença.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
O cenário básico é o seguinte:
@@ -423,7 +423,7 @@ Se houver um conflito entre duas versões diferentes do mesmo plug-in (uma carre
## Página Licenças e certificados
-A página Licences & Certificate pode ser utilizada para:
+The Licenses & Certificate page can be used to:
* designar o(s) número(s) da licença que você deseja integrar em seu aplicativo de stand-alone de usuário único
* assinar a aplicação através de um certificado no macOS.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
index 867f8fc83d2a0d..bd0b8e5bbb7a22 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/FormObjects/subform_overview.md
@@ -123,12 +123,21 @@ Por exemplo, a seguinte instrução:
... recupera um ponteiro para a variável "MyButton" que está localizada no objeto de subformulário "MySubForm". Essa sintaxe pode ser usada para acessar, a partir do formulário pai, qualquer objeto encontrado em um subformulário. Observe também o comando `OBJECT Get name`, que pode ser usado para recuperar o nome do objeto que está em foco.
-#### Comando CALL SUBFORM CONTAINER
+#### Comando CALL SUBFORM CONTAINER {#call-subform-container-command}
O comando `CALL SUBFORM CONTAINER` permite que uma instância de subformulário envie um evento para o objeto contêiner de subformulário, que pode então processá-lo no contexto do formulário pai. O evento é recebido no método do objeto contentor. Ele pode estar na origem de qualquer evento detectado pelo subformulário (clique, arrastar e soltar etc.).
O código do evento não tem restrições (por exemplo, 20000 ou -100). Você pode usar um código que corresponda a um evento existente (por exemplo, 3 para `On Validate`), ou usar um código personalizado. No primeiro caso, você só pode usar eventos que você verificou na Lista de Propriedades para sub-formulários. No segundo caso, o código não deve corresponder a nenhum evento de formulário existente. Recomenda-se usar um valor negativo para ter certeza de que esse código não será usado por 4D em versões futuras.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Para obter mais informações, consulte a descrição do comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-19/REST/configuration.md b/i18n/pt/docusaurus-plugin-content-docs/version-19/REST/configuration.md
index cf9e75be7a7080..f38e4c14ae25e1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-19/REST/configuration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-19/REST/configuration.md
@@ -7,7 +7,7 @@ Utilizando petições HTTP padrão, o servidor 4D REST permite às aplicações
Para iniciar usando as funcionalidades REST, precisa iniciar e configurar o servidor 4D REST.
-> - Em 4D Server, abrir uma sessão REST exige que uma licença cliente 4D free esteja disponível.
+> - On 4D Server, opening a REST session requires that a free 4D client license is available.
> - Em 4D single-user, pode abrir até três sessões REST para fins de teste.
> - You need to manage the [session cookie](authUsers.md#session-cookie) to use the same session for your requesting application.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
index 2a5d25a2b5d896..21837073b19d46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/cli.md
@@ -50,7 +50,7 @@ Sintaxe:
| `--skip-onstartup` | | Inicia o projecto sem executar quaisquer métodos "automáticos", incluindo os métodos de base de dados `On Startup` e `On Exit` |
| `--startup-method` | Nome do método projecto (string) | Método de projecto a executar imediatamente após o método de base `On Startup` (se não for ignorado com `--skip-onstartup`). |
-(\*) Alguns diálogos são exibidos antes do banco de dados ser aberto, para que seja impossível escrever no arquivo Diagnóstico de log (alerta de licença, diálogo de conversão, seleção de banco de dados, seleção de arquivo de dados). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
### Exemplos
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
index 41e9c6471e39ba..a38439cee6a5bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Admin/licenses.md
@@ -32,7 +32,7 @@ As licenças de implementação podem ser incorporadas na etapa de compilação
Algumas licenças 4D têm uma data de validade, após a qual devem ser renovadas. Quando a assinatura da licença for renovada na loja 4D, suas licenças serão atualizadas automaticamente nos seus aplicativos 4D na inicialização [quando você logar](GettingStarted/Installation.md) no assistente de boas-vindas.
-Em alguns casos, a atualização da licença pode exigir que você clique no botão [**Atualizar**](#refresh) da caixa de diálogo Gerenciador de Licenças.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Ativando licenças
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
index 15f00e9ade4a2d..e802e02b2c3b05 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/Desktop/building.md
@@ -408,8 +408,8 @@ Os elementos devem ser instalados:
Para ativar este recurso, adicione as chaves DatabaseToEmbedInClientWinFolder e/ou DatabaseToEmbedInClientMacFolder no arquivo de configurações do buildApp. Quando uma das chaves estiver presente, a aplicação cliente gera uma aplicação monousuário: a estrutura compilada, ao inves do arquivo EnginedServer.4Dlink é colocada na pasta "Database".
-- Se existir uma pasta de dados padrão no aplicativo de usuário único, uma licença será incorporada.
-- Se não existir uma pasta de dados padrão no aplicativo de usuário único, ela será executada sem arquivo de dados e sem licença.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
O cenário básico é o seguinte:
@@ -501,7 +501,7 @@ Os seguintes módulos opcionais podem ser desmarcados:
## Página de licenças e certificados
-A página de Licenças e Certificados pode ser usada:
+The Licenses & Certificate page can be used to:
- configure the [deployment license(s)](../Admin/licenses.md#deployment-licenses) that you want to integrate into your [stand-alone](#application-page) or [client-server](#clientserver-page) application,
- assinar a aplicação através de um certificado no macOS.
@@ -536,7 +536,7 @@ Um aplicativo de avaliação permite que o usuário final execute uma versão co
- O comando [`License info`](../commands/license-info.md) permite que você saiba o tipo de licença do aplicativo (coleção *.attributes*) e sua data de expiração (objeto *.expirationDate*).
- A chave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite que você gerencie as versões de avaliação.
-- O comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) não faz nada quando chamado a partir de uma versão de avaliação.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
index e1f1d4853cf367..1b6cf75aaf74f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/FormObjects/subform_overview.md
@@ -174,12 +174,21 @@ A comunicação entre o formulário pai e as instâncias do subformulário pode
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. O evento é recebido no método do objeto contentor. Ele pode estar na origem de qualquer evento detectado pelo subformulário (clique, arrastar e soltar etc.).
O código do evento não tem restrições (por exemplo, 20000 ou -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. No primeiro caso, você só pode usar eventos que você verificou na Lista de Propriedades para sub-formulários. No segundo caso, o código não deve corresponder a nenhum evento de formulário existente. Recomenda-se usar um valor negativo para ter certeza de que esse código não será usado por 4D em versões futuras.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
index 8694213d126f02..acf1238d4259ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ A área "Visão Geral" fornece várias informações sobre o sistema, aplicativo

-Geralmente, você precisará verificar o [**Gerenciador de licenças**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalhes
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
index 26051dac8ef98f..30d9d9a3e5f73c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/WebServer/sessions.md
@@ -63,7 +63,7 @@ O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
index b90ba930cf567a..4893035d1f7da5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Se quiser deter o processo selecionado da coleção de processos que são mostra
| | |
| --- | --- |
| Número do comando | 1634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
index fc2e03876207c3..eb7ed15869834c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Apesar do comando ABORT está destinado a ser utilizado apenas a partir de um m
| | |
| --- | --- |
| Número do comando | 156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
index e457877fa6e8a1..2a96d945c12756 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/abs.md
@@ -32,6 +32,6 @@ O exemplo a seguir retorna o valor absoluto de –10.3, que é de 10.3:
| | |
| --- | --- |
| Número do comando | 99 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
index 286c5625403d12..668e607a9878f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accept.md
@@ -41,7 +41,7 @@ Não é possível concatenar vários ACCEPT. A execução consecutiva de dois co
| | |
| --- | --- |
| Número do comando | 269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
index 0e17afef02274c..917418d256cfa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Ver o exemplo do comando [BREAK LEVEL](break-level.md) .
| | |
| --- | --- |
| Número do comando | 303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
index 1363c6ae9a97ad..eefe6e616d312b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/action-info.md
@@ -73,6 +73,6 @@ Se quiser saber se a ação copiar está disponível (ou seja, se foram selecion
| | |
| --- | --- |
| Número do comando | 1442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
index 767acc9d0d0ca4..1e5b457b43a1ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 346 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
index 8ab508ed440215..35f10364b2f938 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Se quiser conhecer o estado da transação atual:
| | |
| --- | --- |
| Número do comando | 1387 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
index 7865f2137794b3..8be3e7192eb334 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/activity-snapshot.md
@@ -111,6 +111,6 @@ Obtém arrays do tipo:
| | |
| --- | --- |
| Número do comando | 1277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
index 0948bd545500e2..95666daa979566 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-record.md
@@ -91,7 +91,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 56 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
index b426e5b7ceaa1e..a564ecb4b20802 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Mesmo que você possa utilizar os [Self](self.md) para adicionar dias a uma data
| | |
| --- | --- |
| Número do comando | 393 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
index 1b0fb31d395734..b02dbdf33b7004 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 119 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
index 76c0cc956e7edf..c9398bf66c93a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-blobs-cache-priority.md
@@ -59,6 +59,6 @@ Se quiser mudar temporariamente a prioridade da cache dos campos de texto da tab
| | |
| --- | --- |
| Número do comando | 1431 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
index c491dd93abba56..3c81b4ef0ae72e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Se quiser mudar temporariamente a prioridade de cache para o índice de campo \[
| | |
| --- | --- |
| Número do comando | 1430 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
index 6eecf94e6f8590..9bf426a0d724f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ Se quiser mudar temporariamente a prioridade de cache para os campos escalares \
| | |
| --- | --- |
| Número do comando | 1429 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
index 698814ac268630..34464578b3563a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que seja gerado o ciclo de execução **After**, tenha certeza de que o eve
| | |
| --- | --- |
| Número do comando | 31 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
index 9def9b14705fcc..e4c68f8a8ab6fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Mostra a seguinte caixa de diálogo de alerta (em Windows):
| | |
| --- | --- |
| Número do comando | 41 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
index ba0b8fd2bee10f..07f243c5647afc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ O exemplo a seguir mostra todos os registros da tabela \[Pessoas\]:
| | |
| --- | --- |
| Número do comando | 47 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
index 058caac7927c85..f4d84d973f525a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-data-to-pasteboard.md
@@ -222,7 +222,7 @@ Se os dados no BLOB são adicionados corretamente á área de transferência, a
| | |
| --- | --- |
| Número do comando | 403 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
index 795496109373ff..18221540574467 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ O exemplo abaixo abre um documento existente chamado Nota, adiciona a string “
| | |
| --- | --- |
| Número do comando | 265 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
index b4e110a039e2f3..3ebf056702f8d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-menu-item.md
@@ -86,7 +86,7 @@ Então, em todo método de formulário ou de projeto, pode escrever:
| | |
| --- | --- |
| Número do comando | 411 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
index a569342f2b2a30..763139cc2dea6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-array.md
@@ -49,6 +49,6 @@ O seguinte código:
| | |
| --- | --- |
| Número do comando | 911 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
index 6126786b428f2e..c8f2486a50a84b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/append-to-list.md
@@ -159,6 +159,6 @@ Quando o formulário é executado, a lista será vista desta forma:
| | |
| --- | --- |
| Número do comando | 376 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
index e22c4197f0ae91..85fe178c457150 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Ao iniciar seu banco de dados em Windows, você precisa verificar se uma bibliot
| | |
| --- | --- |
| Número do comando | 491 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
index 607d6ccb71fc76..b36ccbe4011530 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Se o código for executado em 4D Server, o objeto contém (por exemplo):
| | |
| --- | --- |
| Número do comando | 1599 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
index ecbca42b3f5bb9..89e95b82bff5b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Em alguma parte do seu código, diferente do método de banco de dados *Método
| | |
| --- | --- |
| Número do comando | 494 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
index f643176a1c88db..c9962219f50993 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/application-version.md
@@ -125,6 +125,6 @@ Você quer usar o número pequeno de versão da aplicação retornado pelo coman
| | |
| --- | --- |
| Número do comando | 493 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
index 706515fd92b63e..8643798254ae4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ Se o usuário clicar no botão Deter no termômetro de progressão, a variável
| | |
| --- | --- |
| Número do comando | 70 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
index 83ce0a01ceb12b..df7778c386c543 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ O exemplo a seguir mostra o valor de Pi:
| | |
| --- | --- |
| Número do comando | 20 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
index 751421164eeac9..4f3cdf66adcf1f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Este exemplo cria um array local de 100 filas, contendo cada uma 50 elementos de
| | |
| --- | --- |
| Número do comando | 1222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
index 7b9d0a8db9a4bf..a4faf37c269768 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-boolean.md
@@ -66,6 +66,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Booleano e dete
| | |
| --- | --- |
| Número do comando | 223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
index 456c18058b28c3..1258dad2d910ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Data e determin
| | |
| --- | --- |
| Número do comando | 224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
index 80901246a0c518..edda014013c87f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 2 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
index 16540fc9ad7403..0353872c40aec5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 4 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
index 45cb8078b31a9c..af5fff52c9da83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Criação e cheio de um array local de objetos:
| | |
| --- | --- |
| Número do comando | 1221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
index 41efbd4ce2b9c3..2a336192c688de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Este exemplo cria um array de interprocesso de tipo [Imagem](# "Can be any Windo
| | |
| --- | --- |
| Número do comando | 279 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
index ddf4254ae9c091..f2f444e0e33b2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo [Ponteiro](# "A
| | |
| --- | --- |
| Número do comando | 280 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
index 623b9c0a7e2e19..19c848fcad41a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-real.md
@@ -63,6 +63,6 @@ Este exemplo cria um array de interprocesso de 50 elementos do tipo Real e deter
| | |
| --- | --- |
| Número do comando | 219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
index 1296de830ff4aa..c2be60cae221c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-text.md
@@ -59,6 +59,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo texto e atribui
| | |
| --- | --- |
| Número do comando | 222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
index 0332552d9f0fde..e2d245e9a5e4b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Como os arrays de horas aceitam valores numéricos, o seguinte código é válid
| | |
| --- | --- |
| Número do comando | 1223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
index f059113ea6728c..175bc01fb30cb4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Se quiser copiar um array de texto em uma coleção compartilhada:
| | |
| --- | --- |
| Número do comando | 1563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
index f75e0ff8573ac1..986d6be90c2b76 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ O comando ARRAY TO LIST gera o erro *\-9957* quando é aplicado a uma lista que
| | |
| --- | --- |
| Número do comando | 287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
index f766abc6c463ab..ff529468ca01d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ Se quiser copiar uma seleção de registroar para uma tablela arquivo selecionan
| | |
| --- | --- |
| Número do comando | 261 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
index de02a9eb5005d5..199ecf327db8e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/assert.md
@@ -59,7 +59,7 @@ Uma asserção permite provar os parâmetros passados a um método de projeto pa
| | |
| --- | --- |
| Número do comando | 1129 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
index d8c43622c8af0f..3628588731624e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Inserir uma asserção na avaliação de uma expressão:
| | |
| --- | --- |
| Número do comando | 1132 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
index 1f21c43cff91e9..c8ea005d7db882 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/average.md
@@ -96,7 +96,7 @@ Pode fazer os seguintes cálculos:
| | |
| --- | --- |
| Número do comando | 2 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
index 993f6c40b8c406..925cc6b610e40d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Passe o tipo de informação a se obter em *seletor*. É possível utilizar uma
| | |
| --- | --- |
| Número do comando | 888 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
index 549cb0cdf01f9d..cbb37b0abebc6c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/backup.md
@@ -44,7 +44,7 @@ Em caso de que ocorram incidentes durante o backup, a informação relativa ao i
| | |
| --- | --- |
| Número do comando | 887 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
index 0c61c37079f219..fe7315ea6d6e6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Este exemplo lhe permite transferir uma imagem através de um BLOB:
| | |
| --- | --- |
| Número do comando | 896 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
index e68598e4c02bac..d0a62dbac22f16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/base64-encode.md
@@ -43,6 +43,6 @@ Por padrão, se omitir o parâmetro *\**, o comando utiliza uma codificação Ba
| | |
| --- | --- |
| Número do comando | 895 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
index 3fc5b22b1803e8..fa03e3a2b778bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/beep.md
@@ -39,6 +39,6 @@ No exemplo abaixo, se uma pesquisa não encontrar nenhum registro, um bip é emi
| | |
| --- | --- |
| Número do comando | 151 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
index 9c574c569247ee..6011f8667d6f04 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before-selection.md
@@ -67,6 +67,6 @@ Este formulário é utilizado durante a impressão de um relatório. Define uma
| | |
| --- | --- |
| Número do comando | 198 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
index 673844d2f8e8e4..d0ad7be4365596 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que se gere o ciclo de execução **Before** tenha certeza de que a proprie
| | |
| --- | --- |
| Número do comando | 29 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
index 77e0a0e96879c4..a1d2ac33e7095a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que o *Depurador* 4D avaliará o código SQL linha por linha. Em alguns cas
| | |
| --- | --- |
| Número do comando | 948 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
index 1053cc20d5ef98..83ac08e9bfdc63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-properties.md
@@ -81,6 +81,6 @@ Depois que este método tenha sido adicionado à sua aplicação, você pode us
| | |
| --- | --- |
| Número do comando | 536 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
index b886a1ada42046..9c7e548e85ef82 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ A linha de código adiciona 100 bytes ao BLOB *meuBlob*:
| | |
| --- | --- |
| Número do comando | 605 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
index c8ff94cc56cb3d..461d7c8e6376b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-document.md
@@ -59,7 +59,7 @@ Em todos os casos, você pode interceptar o erro usando um método [ON ERR CALL]
| | |
| --- | --- |
| Número do comando | 526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
index 6c3855cf9439f1..4da77811acbf3e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-integer.md
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores inteiros de um BLOB, iniciando no offset 0x200
| | |
| --- | --- |
| Número do comando | 549 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
index 5e34e5de0fd412..924959d9ca184c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ A variável OK recebe o valor 1 se a lista for criada corretamente, caso contrá
| | |
| --- | --- |
| Número do comando | 557 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
index 4cb66a48fcdd13..964cf4f48e3152 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-longint.md
@@ -64,6 +64,6 @@ O exemplo a seguir lê 20 valores Inteiro longo de um BLOB, iniciando no offset
| | |
| --- | --- |
| Número do comando | 551 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
index 41ef802a2914eb..a063f94a28a31d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 682 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
index 074b6714442294..21199d79aff315 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-print-settings.md
@@ -80,6 +80,6 @@ Se quiser aplicar a configuração de impressão salva no disco para o contexto
| | |
| --- | --- |
| Número do comando | 1434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
index 1e0cbefde7047e..8863d8453cb1ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-real.md
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores Reais de um BLOB, iniciando no offset 0x200:
| | |
| --- | --- |
| Número do comando | 553 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
index 837110e45b9934..77e8f6d83f2c6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-text.md
@@ -66,6 +66,6 @@ Após a chamada, a variável é incrementada pelo número de bytes lidos. Portan
| | |
| --- | --- |
| Número do comando | 555 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
index e38a69a7b8ce80..8e39618fe4a493 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ este comando causa a substituição de quaisquer contas e grupos existentes cria
| | |
| --- | --- |
| Número do comando | 850 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
index b568b927074c9c..6ca556bbb76412 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ A variável OK é definida como 1 se a variável foi reescrita com sucesso, caso
| | |
| --- | --- |
| Número do comando | 533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
index 163456424e03df..bcdd7fed7fc4d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Seleciona um valor dependendo do conteúdo de um atributo de campo de objeto, an
| | |
| --- | --- |
| Número do comando | 1537 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
index 2823661e5b035f..540817d407fec0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Se você não passar o parâmetro *conjunto*, o comando utilizará UserSet no pr
| | |
| --- | --- |
| Número do comando | 646 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
index 50c44bb424b5dc..6cce5163930418 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ O exemplo a seguir imprime um relatório com dois níveis de quebra. A seleção
| | |
| --- | --- |
| Número do comando | 302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
index db3e107c94a914..013845fc362f38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ O exemplo a seguir é um método que pode ser executado desde um menu. Ele verif
| | |
| --- | --- |
| Número do comando | 326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
index eb6a81de619d51..f820b551bdee12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/build-application.md
@@ -59,7 +59,7 @@ Se o comando falhar, é gerado um erro que pode ser interceptado com a ajuda do
| | |
| --- | --- |
| Número do comando | 871 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
index ef7a970491cc0f..9b0fd1bfba5fbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Se quiser obter informação da cache do banco de dados e todos os componentes a
| | |
| --- | --- |
| Número do comando | 1402 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
index 6f741945d5fce1..1860474a2a9c99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Depois pode adicionar outras mensagens executando o comando **CALL FORM** novame
| | |
| --- | --- |
| Número do comando | 1391 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
index 5ee52614fda67c..7ffa4462e37c98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ Em *evento*, pode passar todo evento de formulário pré-definido de 4D (pode ut
| | |
| --- | --- |
| Número do comando | 1086 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
index 0ad8b404063726..784a001404e787 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/call-worker.md
@@ -89,6 +89,6 @@ O código de *workerMethod é*:
| | |
| --- | --- |
| Número do comando | 1389 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
index b274becf901739..0fd0e34185bced 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 241 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
index bdd847d3e4a248..ef775cc164adc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Quando o comando CANCEL é executado (anulação de formulário ou de impressão
| | |
| --- | --- |
| Número do comando | 270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
index 8295f468ecad29..8178b4a784ca64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Veja o exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
index b24c45d0a799f0..e3dbb71f2be3f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-current-user.md
@@ -73,6 +73,6 @@ O exemplo abaixo exibe a caixa de diálogo de conexão:
| | |
| --- | --- |
| Número do comando | 289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
index 747b5ef9cdd162..29426c85e9ec71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-licenses.md
@@ -46,7 +46,7 @@ Desta forma um usuário pode ativar licenças sem ter que modificar a base.
| | |
| --- | --- |
| Número do comando | 637 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
index 9cc410fa396191..73ab60a19bf1f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ O exemplo abaixo permite ao usuário mudar sua senha.
| | |
| --- | --- |
| Número do comando | 186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
index d7106a4380f48b..236f7d60a63f91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ O seguinte exemplo ilustra o uso de Change string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
index 9a4ed8cacfceda..f9c47519516e1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/char.md
@@ -43,6 +43,6 @@ O seguinte exemplo utiliza Char para inserir um retorno de carro no texto de uma
| | |
| --- | --- |
| Número do comando | 90 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
index 4d106e9359d233..9263c173cdb39b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/character-code.md
@@ -91,6 +91,6 @@ O segundo código é executado mais rápido por duas razões: apenas referencia
| | |
| --- | --- |
| Número do comando | 91 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
index 9d988a34f741c7..df959ee2478b3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Este comando só pode ser utilizado no contexto de aplicativos monousuários. Ma
| | |
| --- | --- |
| Número do comando | 799 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
index e2f3d336143a0f..796c5491d7afbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/choose.md
@@ -87,6 +87,6 @@ Este código é estritamente equivalente a:
| | |
| --- | --- |
| Número do comando | 955 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
index de0cfc79cd0b4c..54af6d39ae67d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-list.md
@@ -59,6 +59,6 @@ Ver o exemplo do comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 377 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
index 68c967b20795a0..6f67f1b18d2602 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Se *nome* foi criado pelo comando [CUT NAMED SELECTION](cut-named-selection.md "
| | |
| --- | --- |
| Número do comando | 333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
index 1fee1006a81749..fdbf6ab5467358 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 402 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
index 39dbeb749c81b8..6b2e8d99f241bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ Ver o exemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número do comando | 144 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
index 180c1d9aa8fe5a..a54f64a72fef6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Ver o exemplo do comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número do comando | 117 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
index 6284dae573c8e0..13a7832bf0cb90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ Em um formulário, utilize uma lista suspensa (drop down) chamada *MinhaListaSus
| | |
| --- | --- |
| Número do comando | 89 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
index bc10e474866b0d..7bbee55641517a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ As etiquetas não são editáveis mas o são depois de um triplo-clique. Se dese
| | |
| --- | --- |
| Número do comando | 1332 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
index 2488e0eb2f4591..4feec63220683e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ O exemplo abaixo permite ao usuário criar um novo documento, escreva a string "
| | |
| --- | --- |
| Número do comando | 267 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
index 4a37d525f44ee4..ae66b7c49bf036 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-printing-job.md
@@ -29,6 +29,6 @@ Quando tiver executado este comando, a impressora novamente está disponível pa
| | |
| --- | --- |
| Número do comando | 996 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
index 0679c51d5aed17..42119806e29191 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ Lembre chamar finalmente **CLOSE RESOURCE FILE** para um arquivo de recursos que
| | |
| --- | --- |
| Número do comando | 498 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
index df7c94a7126e75..333aeaa59d2b9c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ O seguinte exemplo abre uma janela formulario e cria novos registros com o coman
| | |
| --- | --- |
| Número do comando | 154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
index 34080ce1e8cbaf..2879faf94119d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Se quiser copiar diferentes valores de propriedade de uma coleção de objetos e
| | |
| --- | --- |
| Número do comando | 1562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
index 49553f02216c63..c7f55c193cef70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 987 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
index a7c224daa61c94..fca6952d3d55be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compact-data-file.md
@@ -76,7 +76,7 @@ Se um arquivo de histórico for gerado, seu nome de caminho completo é retornad
| | |
| --- | --- |
| Número do comando | 937 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
index 2e41f717822180..69ecacfd7f064a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compare-strings.md
@@ -109,6 +109,6 @@ Os exemplos abaixo ilustram o impacto específico das opções no **contexto da
| | |
| --- | --- |
| Número do comando | 1756 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
index c3f457c0d9b494..ab1e5c6b57f110 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Para maiores informações sobre componentes 4D, por favor consulte o Manual de
| | |
| --- | --- |
| Número do comando | 1001 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
index 7e0eabe1d8ec6d..ce9803c8955aea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/compress-blob.md
@@ -97,7 +97,7 @@ A variável OK é definida como 1 se o BLOB foi compactado com sucesso, caso con
| | |
| --- | --- |
| Número do comando | 534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
index eeba309ab48c01..33fc162d7a9998 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/confirm.md
@@ -98,7 +98,7 @@ Mostrará a seguinte caixa de diálogo de confirmação (em Macintosh):
| | |
| --- | --- |
| Número do comando | 162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
index f8883de58f2f2c..11a633b3266da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado com uma área de rolagem, lhe permite modificar o valor
| | |
| --- | --- |
| Número do comando | 713 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
index 340aad7621635b..13068fb535e32f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ Se quiser abrir uma janela pop-up na posição do cursor do mouse, em Windows, p
| | |
| --- | --- |
| Número do comando | 1365 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
index 397118cfd8bf24..4a2ede562298bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-from-text.md
@@ -192,7 +192,7 @@ Se o comando tiver sido executado corretamente, a variável OK assume o valor 1\
| | |
| --- | --- |
| Número do comando | 1011 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
index 7bede5ea388852..df3f50c026c378 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Exemplos em Windows:
| | |
| --- | --- |
| Número do comando | 1107 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
index 2f7f7ab77a1bb6..8134c65dd7f46f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Exemplo em Windows
| | |
| --- | --- |
| Número do comando | 1106 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
index 3ccba98f836be4..959f4b85a49b37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-picture.md
@@ -56,6 +56,6 @@ Conversão de uma imagem com qualidade de 60%:
| | |
| --- | --- |
| Número do comando | 1002 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
index 6c11e07b809172..1f2bfae7a5ae5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/convert-to-text.md
@@ -37,7 +37,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Do co
| | |
| --- | --- |
| Número do comando | 1012 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
index df80334b03b0d6..8a1a59a4c09deb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ O exemplo seguinte preenche o array chamado C. Ele então cria um novo array, ch
| | |
| --- | --- |
| Número do comando | 226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
index 52027b72f53e09..7b2c8d1cc605a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ A cópia começa na posição (expressa em relação ao início do BLOB fonte) e
| | |
| --- | --- |
| Número do comando | 558 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
index 3f0036f7eded81..92d5e73b7153ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-document.md
@@ -124,7 +124,7 @@ Os seguintes exemplos criam diferentes arquivos e pastas na pasta da base (exemp
| | |
| --- | --- |
| Número do comando | 541 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
index e2cd37f19c40d8..23a88bd19b7419 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Quando tiver terminado de utilizar a nova lista, chame a [CLEAR LIST](clear-list
| | |
| --- | --- |
| Número do comando | 626 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
index a46e77b93c6239..6e66f3ebf0d9de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ O seguinte exemplo permite verificar se há outras faturas vencidas na tabela *\
| | |
| --- | --- |
| Número do comando | 331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
index d0e0e8435ab11b..9529b456c7c59a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Como o comando devolve uma coleção, pode ser utilizada com **.join()** para cr
| | |
| --- | --- |
| Número do comando | 1790 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
index ccd498f4e1f19e..4468abd51545ce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ O seguinte exemplo em Cliente/Servidor, copia o conjunto processo "*ConjuntoA*",
| | |
| --- | --- |
| Número do comando | 600 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
index 3066e6e41e8a09..acec1838134160 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cos.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 18 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
index 0fc1a668bbde4a..ea5d40dd5dcd22 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Para contar referências de objeto em um array de objeto:
| | |
| --- | --- |
| Número do comando | 907 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
index d94e207084d8a3..d74dda4ccaea6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-list-items.md
@@ -66,6 +66,6 @@ Aqui temos uma lista chamada *hList* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 380 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
index 02caf58ace8e81..78edf105865565 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Count menu items é aplicada a barra de menus
| | |
| --- | --- |
| Número do comando | 405 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
index 6d6173c0518c7e..c7b8d93d85e152 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Se omitir o parâmetro *processo*, Count menus é aplicada a barra de menus do p
| | |
| --- | --- |
| Número do comando | 404 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
index 787de278861aeb..1b1e97cb5352b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 259 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
index 810b045f72d422..599c90c0b37ac4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 437 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
index 173307e1848c2a..39633fe6a41e0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver o exemplo para [Process state](process-state.md "Process state") e [On Exit
| | |
| --- | --- |
| Número do comando | 335 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
index c18f85308e1c22..be052305d92329 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 343 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
index 1fed2ea54541fd..b719e8fa7a5b67 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Quando em versão monousuário de 4D, **Count users** devolve 1.
| | |
| --- | --- |
| Número do comando | 342 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
index 126f84991639c4..8372c0153434be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 694 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
index 9d6ee42954cd57..125691c25e32d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Antes de iniciar a operação, o comando verifica que o endereço de acesso não
| | |
| --- | --- |
| Número do comando | 313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
index b9f548f7c478a2..9772706654b501 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-document.md
@@ -78,7 +78,7 @@ Se o documento for criado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 266 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
index f12c6f438f4da1..cebc8a162039f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Consulte o exemplo da seção *Conjuntos*.
| | |
| --- | --- |
| Número do comando | 140 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
index ca70d9de695ac2..7d7971c757eff4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-folder.md
@@ -73,7 +73,7 @@ Criação da subpasta "\\Fevereiro\\" na atual pasta "C:\\Arquivos\\":
| | |
| --- | --- |
| Número do comando | 475 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
index e8d0e0ee07d72f..75e33415e1a882 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Criação de um índice composto nos campos “Cidade” e “CódigoPostal” d
| | |
| --- | --- |
| Número do comando | 966 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
index 95e503858861fa..47859697695c2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-menu.md
@@ -48,6 +48,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
index 597f9892992882..f87664744994aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ O seguinte exemplo arquiva os registros que tem mais de 30 dias. Esta operação
| | |
| --- | --- |
| Número do comando | 68 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
index abbcf9b2905921..15f1cfe3fb4041 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ Se já existe um registro relacionado, CREATE RELATED ONE atua como [RELATE ONE]
| | |
| --- | --- |
| Número do comando | 65 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
index 07300a1a5e2e4a..8242c7d0a4cff9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ Se um número de registro não é válido (registro não criado), é gerado o er
| | |
| --- | --- |
| Número do comando | 640 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
index 004aebce97c60a..d41f84980ccf27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set-from-array.md
@@ -45,7 +45,7 @@ Em um array de inteiros longos, se um número de registro não for válido (regi
| | |
| --- | --- |
| Número do comando | 641 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
index 67077644465fc2..da5e25b6a3c457 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ O seguinte exemplo cria um conjunto depois de realizar uma pesquisa, de maneira
| | |
| --- | --- |
| Número do comando | 116 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
index e4832914007e52..4f3e8fe31d685a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/create-thumbnail.md
@@ -65,6 +65,6 @@ O parâmetro opcional *profundidade* define o número de cores em Mac OS (ou sej
| | |
| --- | --- |
| Número do comando | 679 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
index dda8e54ecbb890..bb393d1b7e38f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-client-authentication.md
@@ -77,6 +77,6 @@ Com esta configuração, não se mostra um diálogo de senha para um 4D remoto q
| | |
| --- | --- |
| Número do comando | 1355 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
index 4ad4c1cc81b3d8..81d8dc635e75ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ O seguinte método de projeto permite fazer isso:
| | |
| --- | --- |
| Número do comando | 33 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
index 91b3d979048031..f4644e9d2e7a63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Desde que uma tabela padrão tenha sido estabelecida, a linha de código abaixo
| | |
| --- | --- |
| Número do comando | 363 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
index 0db4f9ac5c8cba..3e91906021bfea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Se quiser obter o formulário atual se este for um formulário projeto:
| | |
| --- | --- |
| Número do comando | 1298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
index fc93e2ca7ac383..a2147ea835c7e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-table.md
@@ -67,6 +67,6 @@ Para isso, utilize o método de objeto para criar a variável *vstRegistroAtual*
| | |
| --- | --- |
| Número do comando | 627 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
index edab403553be64..21bfff1c185075 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ A janela do formulário atual pode ser gerada automaticamente por um comando tal
| | |
| --- | --- |
| Número do comando | 827 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
index 1f33614328e51b..9f6d5715636421 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Inclusive se não está correndo a versão cliente/servidor de 4D, sua aplicaç
| | |
| --- | --- |
| Número do comando | 483 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
index c4baf6cada6c01..6fe162c9ebb580 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-name.md
@@ -52,6 +52,6 @@ Este comando não pode ser chamado desde uma fórmula 4D.
| | |
| --- | --- |
| Número do comando | 684 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
index 2684f0b00fcf0e..1678b9e9a185ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1201 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
index 0e8daf0aab8045..e661d06be3782d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Se quiser chamar a um processo worker e passar o nome de processo de chamada com
| | |
| --- | --- |
| Número do comando | 1392 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
index 0f8245586e7c3e..6b5efeb65032fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver os exemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") e [PROCESS
| | |
| --- | --- |
| Número do comando | 322 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
index d9f3341cb1b066..4bfe3a2463af0a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [Current machine](current-machine.md "Current machine")
| | |
| --- | --- |
| Número do comando | 484 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
index 06b21f1aa1acd9..c48658da9ab410 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ O exemplo a seguir extrai as horas, minutos e segundos da hora atual:
| | |
| --- | --- |
| Número do comando | 178 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
index bf6ca9b2277e94..44359d2cd01ad0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Ver exemplo do comando [User in group](user-in-group.md).
| | |
| --- | --- |
| Número do comando | 182 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
index ed6b23a766be13..6c632554924355 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ O método seguinte vazia a seleção atual de uma tabela *\[Clientes\]*:
| | |
| --- | --- |
| Número do comando | 334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
index 31d6a7185fdd05..fc8079b548b48e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Se quiser conhecer o estado de criptografia de um arquivo de dados que correspon
| | |
| --- | --- |
| Número do comando | 1609 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
index 2ecc9db7158037..6016f1603171c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Se você está trabalhando, por exemplo, com o banco na pasta Documentos:MeusCDs
| | |
| --- | --- |
| Número do comando | 490 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
index 4fd0c9210ae528..5c115fb9230f4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/database-measures.md
@@ -335,6 +335,6 @@ Queremos obter as medidas de bytes de cachê nos últimos dois minutos:
| | |
| --- | --- |
| Número do comando | 1314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
index d75ddbb802aed6..4f05d6a454e156 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/date.md
@@ -100,6 +100,6 @@ Se quiser obter uma data de um atributo de objeto, qualquer que seja a opção a
| | |
| --- | --- |
| Número do comando | 102 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
index 2cf62f7d5aa44f..7aa2ca0b26974c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ O seguinte exemplo é uma função que retorna o dia atual como uma string:
| | |
| --- | --- |
| Número do comando | 114 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
index 4d8adaa2f28cb4..0aa5c24fa2449c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Veja o exemplo para o comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 23 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
index d70dff2d1b7dfe..de41f2b6429663 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução Deactivated, tenha certeza de que o e
| | |
| --- | --- |
| Número do comando | 347 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
index 1ae0d0b1424f9d..e3437412ba346e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dec.md
@@ -36,6 +36,6 @@ O exemplo a seguir utiliza um valor monetário expresso como um número real, e
| | |
| --- | --- |
| Número do comando | 9 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
index 84f8d19fc50922..3226f2ecbb2f7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ Consulte os exemplos dados para o comando .
| | |
| --- | --- |
| Número do comando | 690 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
index 2059fb2bd19556..ccdeb35094f63f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/decrypt-data-blob.md
@@ -65,6 +65,6 @@ O exemplo abaixo mostra como decriptogrofar um arquivo criptografado localizado
| | |
| --- | --- |
| Número do comando | 1774 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
index f68e352d5d2592..1878afb9272892 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/default-table.md
@@ -83,6 +83,6 @@ Neste código o resultado da tabela padrão:
| | |
| --- | --- |
| Número do comando | 46 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
index 21742e6cf836da..ad959bab45bbd7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 323 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
index 98f6f9efc41d62..664874beb8130c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-document.md
@@ -54,7 +54,7 @@ A eliminação de um documento faz que a variável sistema assuma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
index 2667f1a8d6dc83..9685c2a3d399b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Pode interceptar estes erros usando o método isntalado pelo comando [ON ERR CAL
| | |
| --- | --- |
| Número do comando | 693 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
index bda519d71df6ba..3a67ac47680185 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ O exemplo a seguir deleta o última elemento de um array, se ele existir:
| | |
| --- | --- |
| Número do comando | 228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
index 8bd49203857b53..bcd59469bd7f5d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 560 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
index 1d0f1c4d4083f0..facd713ce2d126 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ O código a seguir apaga o elemento selecionado da lista *hList*. Se o elemento
| | |
| --- | --- |
| Número do comando | 624 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
index 81990f8e6f679a..9869e190578309 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-index.md
@@ -51,6 +51,6 @@ Este exemplo ilustra as duas sintaxes do comando:
| | |
| --- | --- |
| Número do comando | 967 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
index fc57389b0bf99b..c0c7bd025e5a61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-menu-item.md
@@ -39,7 +39,7 @@ Se omite o parâmetro *processo*, DELETE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 413 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
index 68cad0872cabdb..5f86c851cc5e46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ O exemplo apaga um registro de um empregado. O código pergunta ao usuário o n
| | |
| --- | --- |
| Número do comando | 58 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
index 5587dd98d88b8b..d96312092cf9a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-selection.md
@@ -68,7 +68,7 @@ Se for encontrado um registro bloqueado durante a execução de DELETE SELECTION
| | |
| --- | --- |
| Número do comando | 66 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
index e0a128a797b725..779b450062f450 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-string.md
@@ -50,6 +50,6 @@ O exemplo abaixo ilustra o uso de Delete string. Os resultados são atribuídos
| | |
| --- | --- |
| Número do comando | 232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
index 4f605058d83448..31a09cebd17dba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Se não tiver os privilégios de acesso para chamar DELETE USER ou se outro proc
| | |
| --- | --- |
| Número do comando | 615 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
index 74169651eb379b..1c9c472ae2805b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/describe-query-execution.md
@@ -72,6 +72,6 @@ $vResultPath :
| | |
| --- | --- |
| Número do comando | 1044 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
index 394f75f713293a..b0cc0268c71e4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/difference.md
@@ -60,6 +60,6 @@ Ao final da lista de registros há um botão com um método de objeto. O método
| | |
| --- | --- |
| Número do comando | 122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
index 7f0c87d99cd523..d5cab7057b2536 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Se o parâmetro *menuItem* designa um submenu hierárquico, todos os elementos d
| | |
| --- | --- |
| Número do comando | 150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
index f4c87de62af72a..b0d44a2ea781eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Os archivos chave (arquivos de extensão ".4DKeyChain") devem ser armazenados no
| | |
| --- | --- |
| Número do comando | 1639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
index 097784272de961..bd5431b659ab5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Sob Windows, é mostrada a janela da mensagem se não se detecta atividade na m
| | |
| --- | --- |
| Número do comando | 910 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
index e39cabe9d2c1d0..7c07fe7ddb14e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ O exemplo a seguir mostra uma série de registros como uma apresentação de sli
| | |
| --- | --- |
| Número do comando | 105 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
index c38da8f214a121..0a2f7f1920c5fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/display-selection.md
@@ -107,7 +107,7 @@ Também pode utilizar outros comandos, tais como [PRINT SELECTION](print-selecti
| | |
| --- | --- |
| Número do comando | 59 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
index 4e7e8146dad6a8..6485c7a7e514f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este exemplo lhe permite aplicar uma cor alternativa em um formulário listado m
| | |
| --- | --- |
| Número do comando | 897 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
index d17ea7f3c3af6d..744551be40bfe5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-paths.md
@@ -73,6 +73,6 @@ O array *aTPaths* obtém os elementos abaixo:
| | |
| --- | --- |
| Número do comando | 1395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
index 966937c4d9b06b..ac59d161e2f6a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-attribute-values.md
@@ -70,6 +70,6 @@ O array *aLAges* obtém os seguintes 9 elementos:
| | |
| --- | --- |
| Número do comando | 1397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
index fbd6bee17a79d0..9e22c4539508dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/distinct-values.md
@@ -89,6 +89,6 @@ Para calcular as estatísticas, se quiser ordenar o número de valores distintos
| | |
| --- | --- |
| Número do comando | 339 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
index 27e2822e5f26f9..d73ec0aeb8be98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ Lista de todos os documentos em modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número do comando | 474 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
index 6ba21e731b4190..5afb2f416bcfa4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ Em cada caso, você pode interceptar o erro usando um método de interrupção [
| | |
| --- | --- |
| Número do comando | 525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
index 31be176bc8231a..09b063ee006cd1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Quando executa este código:
| | |
| --- | --- |
| Número do comando | 1236 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
index b94fca6fbb9779..5d9d5b4d191b34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Se o conteúdo de *valorFilho* não é válido, se devolve um erro.
| | |
| --- | --- |
| Número do comando | 1080 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
index fe3e03691d6183..1712f018f20e99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Ver o exemplo do comando [DOM Insert XML element](dom-insert-xml-element.md "DOM
| | |
| --- | --- |
| Número do comando | 1082 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
index 4d5e776133e462..0717867c39a31b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 722 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
index 73c5e0fe1004df..2588e30a7f05ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 727 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
index d4ef74d60a815c..dc22cd0eb1928e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 726 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
index 1a4e58bd8275e2..5b4363f5242ed6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Para isso, basta escrever:
| | |
| --- | --- |
| Número do comando | 1097 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
index 503dc18baad87a..8234e9d326c1c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-element.md
@@ -162,7 +162,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 865 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
index 63e942ae1a70c1..67a9568e5d7e97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-create-xml-ref.md
@@ -104,7 +104,7 @@ Se o comando foi executado corretamente, a variável sistema Ok assume o valor 1
| | |
| --- | --- |
| Número do comando | 861 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
index 3fa9ba56b0b946..2986cc043ba5b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-file.md
@@ -68,7 +68,7 @@ Se gera um erro quando:
| | |
| --- | --- |
| Número do comando | 862 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
index b9aee23f6f8dbc..745b71a2b8f1df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-export-to-var.md
@@ -61,7 +61,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 863 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
index 5ace150093d0eb..43b00effbfb6cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ O comando retorna como resultado a referência XML do elemento encontrado.
| | |
| --- | --- |
| Número do comando | 1010 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
index 02e80ca9778c9a..4678af0de0c6f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-find-xml-element.md
@@ -116,7 +116,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 864 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
index 3e407cf03c392d..c1bde5539dd3cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 723 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
index 556727eb5090b3..a983f4358e0372 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 925 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
index 3348dff70c3fcf..305d70c5e691f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -66,7 +66,7 @@ Se o comando tiver sido executado corretamente e se o elemento analisado não fo
| | |
| --- | --- |
| Número do comando | 724 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
index b932d66d403795..6c3abaa8c19e27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-parent-xml-element.md
@@ -42,7 +42,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 923 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
index a769c10ee8cf7f..42442abc8243a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Se o comando for executado corretamente e se o elemento referenciado não for o
| | |
| --- | --- |
| Número do comando | 924 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
index 05e2804c606a0d..ed25b1e5eb7a70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1053 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
index 22d5da927c5567..a5359542ea297d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 729 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
index 728fd0e7831367..b2589ef44e1fce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 728 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
index e5ed9aa065082b..aafc4188bacde3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-child-nodes.md
@@ -69,6 +69,6 @@ Depois da execução destas instruções:
| | |
| --- | --- |
| Número do comando | 1081 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
index 19fb2e1e28c66d..4a4a22777c1f6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-document-ref.md
@@ -58,6 +58,6 @@ Neste exemplo, queremos encontrar a declaração DTD do documento XML:
| | |
| --- | --- |
| Número do comando | 1088 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
index fe13eed41f4fdb..c9ae2104d76238 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
index 18dc25afa0669c..96aa7425de9884 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
index 7108c98615f512..61dad5276686f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 725 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
index df2dd76f6265d7..db782bdb4fe18a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ Em *xmlInfo*, passe um código indicando o tipo de informação a ser recuperado
| | |
| --- | --- |
| Número do comando | 721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
index 6510370087b940..6b7b08f7ce85f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-insert-xml-element.md
@@ -84,6 +84,6 @@ Para fazer isso, simplesmente execute o código abaixo:
| | |
| --- | --- |
| Número do comando | 1083 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
index b583da8a2c589f..007e4a9c956214 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-source.md
@@ -98,7 +98,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 719 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
index 8ab27decf8d04f..f79ab9c804d2c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-parse-xml-variable.md
@@ -88,7 +88,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 720 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
index 230c57c6bec277..7e90b607107c62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ O código abaixo permite remover o primeiro atributo "N=1":
| | |
| --- | --- |
| Número do comando | 1084 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
index 205576bb180286..78145bd85e1065 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-remove-xml-element.md
@@ -33,7 +33,7 @@ Um erro é gerado quando o elemento de referência for inválido
| | |
| --- | --- |
| Número do comando | 869 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
index 4a6f339182dcec..d7addd8ddee635 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-attribute.md
@@ -73,7 +73,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 866 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
index 9a7e164cb6b885..0367d0f71614c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ O exemplo define a codificação a utilizar e a opção autônoma do elemento *e
| | |
| --- | --- |
| Número do comando | 859 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
index 23f289999f77b4..616e62490356f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 867 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
index 3efdc5641ab700..7ab06f347f4a99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dom-set-xml-element-value.md
@@ -125,7 +125,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 868 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
index 14fc23b32421d4..f55cd256266347 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drag-window.md
@@ -59,6 +59,6 @@ Depois pode arrastar a janela clicando em qualquer das margens.
| | |
| --- | --- |
| Número do comando | 452 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
index 7eb200549adcba..165b67d35f27e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-position.md
@@ -99,6 +99,6 @@ O método de objeto de list box da esquerda (destino) contém o código abaixo:
| | |
| --- | --- |
| Número do comando | 608 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
index 588bedea4758b2..4d3aa3c919dab3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/drop-remote-user.md
@@ -49,6 +49,6 @@ Se quiser eliminar um usu\[ario remoto específico:
| | |
| --- | --- |
| Número do comando | 1633 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
index e07914aa73884c..1717f687e5301c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORD pode ser executado durante a entrada de dados. Isso permite dup
| | |
| --- | --- |
| Número do comando | 225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
index 5e9872983e2c11..0108954d708397 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ Este código permite criar um menu emergente dinâmico hierárquico baseado em a
| | |
| --- | --- |
| Número do comando | 1006 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
index 2ee9fbf19b6237..5fed7724f275c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ O exemplo abaixo mostra ao usuário a janela de gestão de usuários e grupos:
| | |
| --- | --- |
| Número do comando | 281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
index 597b913b30901f..c383c4855a237a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ Se o usuário valida a caixa de diálogo, a variável de sistema OK toma o valor
| | |
| --- | --- |
| Número do comando | 806 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
index e209ac0bcd6bc7..d984d33e0d3176 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/edit-item.md
@@ -79,6 +79,6 @@ Dadas duas colunas em una list box onde os nomes das variáveis são “Array1
| | |
| --- | --- |
| Número do comando | 870 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
index cc8274d3ba2d6a..c3b8675e326040 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/enable-menu-item.md
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, ENABLE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
index 2eab0b0d583687..c23aacad8b64dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-blob.md
@@ -191,6 +191,6 @@ A empresa quer usar a Internet para trocar informações. Cada filial recebe inf
| | |
| --- | --- |
| Número do comando | 689 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
index 9f6a148f853aa3..e0093558336d5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ Para criptografar um arquivo texto na pasta RESOURCES no banco de dados:
| | |
| --- | --- |
| Número do comando | 1773 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
index dd39d8305157db..436afa8975ad62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/encrypt-data-file.md
@@ -137,6 +137,6 @@ Re-encriptar um arquivo de dados criptografado com a chave atual (por exemplo, q
| | |
| --- | --- |
| Número do comando | 1610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
index 1cfb09b0fd0fe8..20fb01d800ecfa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-selection.md
@@ -66,6 +66,6 @@ Este método de formulário é utilizado durante a impressão de um relatório.
| | |
| --- | --- |
| Número do comando | 36 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
index d88b780267e29a..aa6b9b56e5ab86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Uma sequência de instruções SQL deve estar rodeada pelas palavras chaves [Beg
| | |
| --- | --- |
| Número do comando | 949 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
index 7b5c29da9d3f60..56780db4e83794 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Este é o código do botão **Compare**:
| | |
| --- | --- |
| Número do comando | 1196 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
index 364ecb4b58bf27..e5af182398f269 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW , que apaga o conteúdo de uma janela, com [CLOSE WINDO
| | |
| --- | --- |
| Número do comando | 160 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
index d091d531915c78..e8bf8996ffeca6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/euro-converter.md
@@ -85,6 +85,6 @@ Estes são alguns exemplos de conversões que podem ser realizadas com este coma
| | |
| --- | --- |
| Número do comando | 676 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
index 4102addacef01a..3f1e0667501e1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-formula.md
@@ -69,6 +69,6 @@ Se quiser executar instruções usando chamadas para comandos 4D e tabelas. Já
| | |
| --- | --- |
| Número do comando | 63 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
index 1c26533b84f2c1..a380e95772035b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method-in-subform.md
@@ -81,7 +81,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1085 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
index bb08b4e45c9ff4..445399382b2cb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1007 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
index 3446f299d400fb..ab0ed9700df91a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-client.md
@@ -67,7 +67,7 @@ A variável do sistema **OK é** igual a 1 se o 4D Server recebeu corretamente o
| | |
| --- | --- |
| Número do comando | 651 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
index bb71bd0fa7d88b..e9068f7704ce12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/execute-on-server.md
@@ -202,6 +202,6 @@ Consulte a seção *Serviços baseados nos procedimentos armazenados (exemplo)*
| | |
| --- | --- |
| Número do comando | 373 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
index f5e0b5fe29c497..facef8ffe26034 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/exp.md
@@ -37,6 +37,6 @@ O exemplo a seguir atribui a exponencial de 1 a *vrE* (o log de *vrE* é 1):
| | |
| --- | --- |
| Número do comando | 21 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
index 9c0b5ac26f12b5..783d5db9743921 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ A variável OK é definida como 1 se o BLOB foi expandido com êxito, caso contr
| | |
| --- | --- |
| Número do comando | 535 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
index 9e3982c2b12d10..6dd5a3fa1cacb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-data.md
@@ -102,7 +102,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo padrão de abrir arqui
| | |
| --- | --- |
| Número do comando | 666 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
index a0cbe52f09e948..1c4a5a74df05fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 84 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
index 4d6dbce9e418ad..74468c131ed23d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure-file.md
@@ -119,6 +119,6 @@ Se quiser exportar apenas os métodos projeto e banco de dados, e um arquivo de
| | |
| --- | --- |
| Número do comando | 1565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
index e35fba4e06d4d2..72dfd591e905d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-structure.md
@@ -64,6 +64,6 @@ Se quiser exportar a estrutura atual do banco de dados em formato html:
| | |
| --- | --- |
| Número do comando | 1311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
index 8040a6e138d058..a6d7e7590cb9f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK toma el valor 1 se a exportação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 85 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
index 841d09ac761331..03205a63fc9393 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
index deb86609ace2e8..d915c915539573 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/false.md
@@ -35,6 +35,6 @@ O exemplo atribui a variável *vbOpcoes* Falso:
| | |
| --- | --- |
| Número do comando | 215 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
index 130b1473093741..843dcb87879022 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ Este exemplo mostra um alerta. Este método passa um ponteiro a um campo:
| | |
| --- | --- |
| Número do comando | 257 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
index 263f722305ec4c..e86a389d96d3a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/field.md
@@ -67,6 +67,6 @@ No seguinte exemplo, a variável *numCampo* for igual ao número do campo de \[T
| | |
| --- | --- |
| Número do comando | 253 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
index a94ce375e661a2..44e54a13901bf4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Ver o exemplo do comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número do comando | 321 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
index 8255b6086893a4..66f860917fb3b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/filter-keystroke.md
@@ -247,6 +247,6 @@ O método ObterTextoSelecionado é o seguinte:
| | |
| --- | --- |
| Número do comando | 389 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
index 9bea6a64561659..80ff081fef6112 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-array.md
@@ -123,6 +123,6 @@ $o1:={a10;b"xyz"}
| | |
| --- | --- |
| Número do comando | 230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
index d4e5c84a38836e..2383b4b2a85385 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-field.md
@@ -68,6 +68,6 @@ Tenha em conta >= permite cobrir todos os casos. De fato, a função devolve um
| | |
| --- | --- |
| Número do comando | 653 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
index 5e57a8c63b1397..ee32062d574abe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Dada a seguinte lista hierárquica:
| | |
| --- | --- |
| Número do comando | 952 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
index bf6bd08757b85b..c2df3c731027bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-in-sorted-array.md
@@ -79,6 +79,6 @@ Você quer encontrar o número de ocorrências das cadeias que começam por "tes
| | |
| --- | --- |
| Número do comando | 1333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
index 0d34fcb71c9955..1f9536a708017d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ O parâmetro *parteJanela*, devolve 3 se toca a janela, caso contrário 0\. (**N
| | |
| --- | --- |
| Número do comando | 449 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
index f767161b9d7222..85659b94ea4c26 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ O exemplo a seguir carrega o primeiro registro da tabela \[Clientes\]:
| | |
| --- | --- |
| Número do comando | 50 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
index 6697550df4d539..a05ff524658866 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ Geralmente não precisa chamar este comando, já que 4D salva modificações de
| | |
| --- | --- |
| Número do comando | 297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
index 20d379b14c17be..5533e11f81c3aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ O exemplo abaixo é um método de objeto para um botão. O método de objeto mod
| | |
| --- | --- |
| Número do comando | 278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
index 461ce312f13c14..29ce8526165809 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/folder-list.md
@@ -32,7 +32,7 @@ Se não houver pastas na localização especificada, o comando retorna um array
| | |
| --- | --- |
| Número do comando | 473 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
index de63239968fa4f..ecb50bf683254b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ You want to make sure the font used in a text area is available on the user syst
| | |
| --- | --- |
| Número do comando | 1700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
index 68b76ea7d101af..7679049b0a2434 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-list.md
@@ -81,6 +81,6 @@ Você quer obter uma lista de fontes recentes:
| | |
| --- | --- |
| Número do comando | 460 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
index 225dbfcb0c0f90..60e0422c3d142b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Se quiser selecionar estilos da familia de fontes "Verdana" (se estiver disponí
| | |
| --- | --- |
| Número do comando | 1362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
index 9a8fd4324b52a2..1fdc1d083eb324 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-convert-to-dynamic.md
@@ -65,6 +65,6 @@ Se executar o código:
| | |
| --- | --- |
| Número do comando | 1570 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
index 281626980d741d..abcf4f18583bc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Se quiser carregar uma imagem dependendo do esquema atual do formulário:
| | |
| --- | --- |
| Número do comando | 1761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
index 6bc0f9e0a59422..e22a23a03b8bc5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ Em um formulário, se seleciona um comando de menu da barra de menu ou quando o
| | |
| --- | --- |
| Número do comando | 276 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
index dd0f865e485bfb..6b97ae8a41ebdd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ Pode excluir certos objetos da ordem de entrada:
| | |
| --- | --- |
| Número do comando | 1469 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
index 35710ac8c6a137..663c6d568e85e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1077 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
index edce296d4a2bd7..d468d6aecd26fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-names.md
@@ -71,6 +71,6 @@ Exemplos de usos típicos:
| | |
| --- | --- |
| Número do comando | 1167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
index 69a5fc540a321a..b87c9f781ab324 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-objects.md
@@ -130,6 +130,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 898 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
index 6c8fd8f8ced1d4..c9abc5b76710eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ O parâmetro *título* retorna o título da janela do formulário, tal como foi
| | |
| --- | --- |
| Número do comando | 674 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
index 8da1146ea7781e..adda11f8c4271d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1078 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
index 1609277164f59e..da3046d608ba80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-goto-page.md
@@ -54,6 +54,6 @@ O exemplo a seguir é um método de objeto para um botão que mostra uma página
| | |
| --- | --- |
| Número do comando | 247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
index bade255567ce07..4381b372bbf651 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Automaticamente, o comando retorna uma captura de tela da página 1 do formulár
| | |
| --- | --- |
| Número do comando | 940 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
index aae870a9acfdb5..fcf2295dbf8d5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ Se quiser definir a ordem de entrada dos objetos no formulário baseado em seus
| | |
| --- | --- |
| Número do comando | 1468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
index 2425631f7b894a..b3bde4654a177a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 892 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
index 7530cc182df1b7..359d7c634ee39e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-input.md
@@ -110,6 +110,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 55 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
index 974c11333c387b..368514d73cd797 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ Os exemplos abaixo usam a rota a um formulário json para imprimir os registros
| | |
| --- | --- |
| Número do comando | 54 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
index 15a41e8c5455eb..0efb5e989f6262 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ O método de objeto associado com este botão é o seguinte:
| | |
| --- | --- |
| Número do comando | 891 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
index 50fb4c0d0dc7cf..71f5f7e9bedf7d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 893 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
index 9b839cf53bb588..7bade102b8571a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Chamar este comando é necessário quando se utiliza o comando [FORM LOAD](../co
| | |
| --- | --- |
| Número do comando | 1299 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
index 52367fdfd83a7f..8ca322f3372a50 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Ver o exemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número do comando | 327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
index 6e34fc24ded10a..0c0d269df25da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 447 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
index 5cc373106ee7e1..e43b909a61259d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-certificate-request.md
@@ -92,6 +92,6 @@ Este es o método do botão **Gerar**
| | |
| --- | --- |
| Número do comando | 691 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
index 650f3b48898ce5..b030d5dd26135b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-digest.md
@@ -90,6 +90,6 @@ Esses exemplos ilustram como recuperar a chave digest de um texto:
| | |
| --- | --- |
| Número do comando | 1147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
index 008ffc109bc5ae..128647495840a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-encryption-keypair.md
@@ -58,6 +58,6 @@ Ver o exemplo do comando [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Número do comando | 688 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
index 79d5acb7aef30d..adfd6e28551e05 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Este exemplo gera um hash de senha utilizando bcrypt com um fator de custo 4.
| | |
| --- | --- |
| Número do comando | 1533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
index 56294b8bc75f92..8657cd897c40ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Se quiser obter a rota do último arquivo de backup:
| | |
| --- | --- |
| Número do comando | 1418 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
index e02b6160ba3404..d0739a82ea9a3f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-4d-folder.md
@@ -218,7 +218,7 @@ Se o parâmetro *pasta* não é válido ou se o endereço de acesso retornado é
| | |
| --- | --- |
| Número do comando | 485 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
index 2e22fa2035c999..3d840b7465b13d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1428 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
index 8a2749ef524255..8b236016ad945c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1427 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
index 63e89161358249..f51eab71d5ea81 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Os tipos de campos de dados escalares incluem campos de tipo data/hora, numéric
| | |
| --- | --- |
| Número do comando | 1426 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
index 97c23a1959451d..0d291ca9a5f436 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Este exemplo autoriza um conjunto de métodos específicos para criar um relató
| | |
| --- | --- |
| Número do comando | 908 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
index d5b782d2d86def..8a47c44a055428 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Veja a descrição do comando [SET APPLICATION COLOR SCHEME](set-application-col
| | |
| --- | --- |
| Número do comando | 1763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
index 4cbe46de376000..35dc3ddcb398be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Automaticamente, as asserções estão ativas mas é possível desativá-las uti
| | |
| --- | --- |
| Número do comando | 1130 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
index 8ba14ef7756b7b..e6cc436d366dd5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-automatic-relations.md
@@ -38,6 +38,6 @@ Consulte o exemplo do comando [GET FIELD RELATION](get-field-relation.md "GET FI
| | |
| --- | --- |
| Número do comando | 899 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
index a082611a6f700c..b4472ae08d5870 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver exemplo de comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número do comando | 1432 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
index 2a259397372cc5..7e386d9eca7429 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Se não tiver uma impressora instalada, um erro é gerado
| | |
| --- | --- |
| Número do comando | 788 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
index cebcf19c842582..cf505476efd7a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-localization.md
@@ -58,6 +58,6 @@ O idioma atual do banco de dados pode ser usada para determinar a pasta. lproj o
| | |
| --- | --- |
| Número do comando | 1009 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
index 94f6716c7ea950..2f6fab4e9c89f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-database-parameter.md
@@ -1017,6 +1017,6 @@ Em [Método banco de dados On Startup](metodo-banco-de-dados-on-startup.md), pod
| | |
| --- | --- |
| Número do comando | 643 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
index 63766b5fbc0f79..d08a9877759b57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-default-user.md
@@ -28,6 +28,6 @@ Se nenhum usuário por padrão estiver definido, o comando retorna 0.
| | |
| --- | --- |
| Número do comando | 826 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
index 1f26a8209b7beb..99a2125b199e62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ O parâmetro opcional *tamanho* permite indicar as dimensões em píxels do íco
| | |
| --- | --- |
| Número do comando | 700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
index b9bcabf1ec8b4a..b75715d572a366 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document position devolve a posição, a partir do início do documento, ond
| | |
| --- | --- |
| Número do comando | 481 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
index 43dd0a242d0bc2..cb76b66a234533 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-properties.md
@@ -214,7 +214,7 @@ Quando esse método tiver sido implementado no banco de dados, nóste mos todo o
| | |
| --- | --- |
| Número do comando | 477 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
index dda1aa285c0bb4..49a46ebd567d18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Em Macintosh, se não passa o parâmetro opcional *\**, se retorna o tamanho do
| | |
| --- | --- |
| Número do comando | 479 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
index 3fbc0b33fb33b3..ce21d729330dea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ End if
| | |
| --- | --- |
| Número do comando | 655 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
index bdebe49beb34ea..7ba8d12979b5a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Este comando devolve uma cadeia vazia nos seguintes casos:
| | |
| --- | --- |
| Número do comando | 1133 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
index 381772674173d0..416e7dd458b115 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ Se nenhuma lista estiver associada ao campo ou se o tipo do campo não permitir
| | |
| --- | --- |
| Número do comando | 685 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
index 31dd7faeca7cf2..95565e4ed03158 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-properties.md
@@ -79,6 +79,6 @@ Este exemplo recupera nas variáveis *vTipo*, *vTamanho*, *vIndice*, *vUnico* e
| | |
| --- | --- |
| Número do comando | 258 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
index 4401c920c7a6f1..efd1d0d831351c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-relation.md
@@ -98,6 +98,6 @@ O código a seguir ilustra as diferentes possibilidades oferecidas pelos comando
| | |
| --- | --- |
| Número do comando | 920 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
index 806fe5ec0395f3..3cf670964e4a90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-field-titles.md
@@ -35,6 +35,6 @@ Em ambos casos, o comando não retorna campos invisíveis.
| | |
| --- | --- |
| Número do comando | 804 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
index 59b0acdb8b61e5..c6aac0efe9abfb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ O exemplo a seguir pode ser utilizado para recuperar em um array todas as rotas
| | |
| --- | --- |
| Número do comando | 976 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
index 6fb39e8efebd93..c031cd17306147 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Se qusier verificar se o usuário atual pertence ao grupo "plugins":
| | |
| --- | --- |
| Número do comando | 1738 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
index 0946a1b750c00c..3e3c15441265b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP LIST ou se
| | |
| --- | --- |
| Número do comando | 610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
index 881f87ff6ea353..fc3c7d167b322b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP PROPERTIES
| | |
| --- | --- |
| Número do comando | 613 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
index b442b47d82b2cc..afbc20a0dd3f67 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ Modificação do estilo do texto ressaltado:
| | |
| --- | --- |
| Número do comando | 209 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
index a234579063e9e3..dea578777fe348 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-highlighted-records.md
@@ -49,7 +49,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 902 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
index 036d8da163744b..d5ad884781225c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-indexed-string.md
@@ -44,7 +44,7 @@ Se o recurso for encontrado, OK toma o valor 1, do contrário assume o valor 0 (
| | |
| --- | --- |
| Número do comando | 510 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
index c26af57d6405f4..45371f386059b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-font.md
@@ -37,6 +37,6 @@ Finalmente, pode passar \* em *refElem*: neste caso, o comando se aplicará ao e
| | |
| --- | --- |
| Número do comando | 954 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
index 00283f83a546a2..d6b74ee8a1add6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-icon.md
@@ -44,6 +44,6 @@ Se nenhum ícone está associado ao elemento, a variável ícone seja retornada
| | |
| --- | --- |
| Número do comando | 951 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
index 88ccf5f3ecc6aa..3636ca18983c1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter-arrays.md
@@ -81,6 +81,6 @@ Caso também queiras obter os valores dos parâmetros, escreva:
| | |
| --- | --- |
| Número do comando | 1195 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
index 75352f6691f5cf..807a74b02847a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-parameter.md
@@ -41,6 +41,6 @@ Em *seletor*, pode passar a constante Additional text ou a constante de ação p
| | |
| --- | --- |
| Número do comando | 985 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
index 66b6dd89fa0853..387b310a7694a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ Para maior informação sobre estas propriedades, consulte a descrição do coma
| | |
| --- | --- |
| Número do comando | 631 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
index 1b4805ec6ffaa2..13fc2c2c124442 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ Consulte o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST
| | |
| --- | --- |
| Número do comando | 378 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
index 2961ffe1dd9c65..ae1eb37507048b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Para uma completa descrição da aparência, ícones de knots, altura de linha m
| | |
| --- | --- |
| Número do comando | 632 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
index 08e2bcba1e6c0c..508744ccbcb115 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-macro-parameter.md
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MACRO PARAMETER](set-macro-parameter.md "SET
| | |
| --- | --- |
| Número do comando | 997 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
index cfd3c555a89805..3958539772fd7b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Consulte o exemplo do comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITEMS
| | |
| --- | --- |
| Número do comando | 979 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
index 16a8ac94ce138b..8491fb5cf40549 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Se nenhum ícone está associado a linha de menu, o comando devolve uma imagem v
| | |
| --- | --- |
| Número do comando | 983 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
index da14d520d522d3..4b38094e8081fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-key.md
@@ -53,7 +53,7 @@ Para obter um atalho associado com um comando de menu, é útil implementar uma
| | |
| --- | --- |
| Número do comando | 424 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
index 8848784bcd5624..653c435748bee9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ O exemplo a seguir exemplo inverte a marca de uma linha de menu:
| | |
| --- | --- |
| Número do comando | 428 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
index 48a3c704a0d75d..695dab84702769 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-method.md
@@ -35,6 +35,6 @@ O comando devolve o nome do método 4D como uma cadeia de caracteres (expressão
| | |
| --- | --- |
| Número do comando | 981 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
index a365e37e29022c..cf9af089b89d85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-modifiers.md
@@ -57,6 +57,6 @@ Consulte o exemplo do comando [Get menu item key](get-menu-item-key.md "Get menu
| | |
| --- | --- |
| Número do comando | 980 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
index 3d5b3c7ec1dd99..e659f4f2a81f2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1003 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
index e369dede4580d6..c51c1388718798 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-property.md
@@ -38,6 +38,6 @@ Nota de compatibilidade: Como padrão, se o valor da variável não for digitado
| | |
| --- | --- |
| Número do comando | 972 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
index 1176b2f6881cb1..52e6abe30c79a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Para provar se um elemento de menu é mostrado em negrito, escreve:
| | |
| --- | --- |
| Número do comando | 426 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
index 3b063e20d0d666..cb3ba1a5dab921 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, Get menu item é aplicado a barra de menus do
| | |
| --- | --- |
| Número do comando | 422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
index da614ddbaadd83..619766a9c592a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Imagine que queira conhecer o conteúdo da barra de menu do processo atual:
| | |
| --- | --- |
| Número do comando | 977 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
index 5bc057a143dc8a..c4b9168921588e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Get menu title é aplicado à barra de menus d
| | |
| --- | --- |
| Número do comando | 430 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
index e42368a286c682..00933eb6ae62eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-missing-table-names.md
@@ -38,6 +38,6 @@ Quando tiver identificado as tabelas faltantes do banco, pode reativá-las atrav
| | |
| --- | --- |
| Número do comando | 1125 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
index 755fe989dee0ab..0320525055d8c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data-type.md
@@ -43,6 +43,6 @@ Para maior informação sobre os tipos de dados suportados, consulte a seção *
| | |
| --- | --- |
| Número do comando | 958 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
index c217745231e547..b76572d494cf5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Se os dados são extraídos corretamente, a variável OK toma o valor 1; do cont
| | |
| --- | --- |
| Número do comando | 401 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
index d35a6ec286f7a4..145ff963628cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Se a imagem nao tiver um nome por defeito, o comando devolve uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 1171 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
index 9ca7ea86d1f827..434c863da0d433 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-formats.md
@@ -54,6 +54,6 @@ Se quiser saber os formatos de imagem armazenados em um campo para o registro at
| | |
| --- | --- |
| Número do comando | 1406 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
index 729b4779d14105..471a935e0af3e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-library.md
@@ -59,7 +59,7 @@ Se não houver suficiente memória para devolver a imagem, se gera o erro -108\.
| | |
| --- | --- |
| Número do comando | 565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
index d479bf17d1d95b..b801dee8885e2b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Se a imagem for extraída corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 522 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
index c6de3888704f13..1ccede1df81983 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Caso a imagem não contém palavras-chaves ou metadados IPTC/Keywords, o comando
| | |
| --- | --- |
| Número do comando | 1142 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
index 1365f6f27c0e54..1418bfeefac9fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ La variable sistema *OK* devolve 1 se a recuperación dos metadados es correta e
| | |
| --- | --- |
| Número do comando | 1122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
index 0bbddd68b8f12f..9f9387242524fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
index d9b3c5e3ffe635..e3e0e75a616d2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Passe no parâmetro *plugIn* o número do plug-in do que deseja conhecer o grupo
| | |
| --- | --- |
| Número do comando | 846 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
index 6d20804eea0d28..f163b62149b757 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Usando ponteiros para elementos de arrays bi-dimensionais:
| | |
| --- | --- |
| Número do comando | 304 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
index 6546b0ff48a337..2c28d0bfe86032 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-marker.md
@@ -66,6 +66,6 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md).
| | |
| --- | --- |
| Número do comando | 708 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
index 169875a3f82d3c..59d530d64f50a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 734 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
index df3df71de2226d..4e0b15e0cbaba6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que o usuário pode modificar esta opção antes de validar a caixa de diá
| | |
| --- | --- |
| Número do comando | 1197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
index 71cc5d4842098e..25bb1337420509 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Para saber o tamanho total da página, pode:
| | |
| --- | --- |
| Número do comando | 703 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
index c2ef6a0959007e..1fe9b1b0116adc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printable-margin.md
@@ -49,6 +49,6 @@ Por padrão, em 4D o cálculo das impressões é realizada baseada nas “margen
| | |
| --- | --- |
| Número do comando | 711 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
index 524d406c7bcc1d..1f8c94d59201de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ As margens de impressão direita e esquerda não influem no valor devolvido, dif
| | |
| --- | --- |
| Número do comando | 702 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
index d794e86b1004d6..cd629f19a1bb55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-process-variable.md
@@ -123,6 +123,6 @@ Ver o exemplo do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 371 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
index 76fcb5df5e07de..dcd4a67ed1999c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Queremos modificar temporariamente o destino de pesquisa e restabelecer os parâ
| | |
| --- | --- |
| Número do comando | 1155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
index ded8ef123cab27..e65efcc091f3ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defeito, caso nenhum limite tenha sido definido, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
index 943c26d4959e0b..480cd03acb35d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ Consulte o exemplo do comando [REGISTER CLIENT](register-client.md).
| | |
| --- | --- |
| Número do comando | 650 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
index ae3c0b5cdf1236..dab35a4ceeeb5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-relation-properties.md
@@ -47,6 +47,6 @@ Quando o comando tiver sido executado:
| | |
| --- | --- |
| Número do comando | 686 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
index e1fc5dac328f38..8d1be14a333cef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Se o recurso não existir, Get resource name retorna uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 513 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
index 2c65e9421c07a7..ba563d6a35f1fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ A variável sistema OK toma o valor 0 se o recurso não existir, do contrário a
| | |
| --- | --- |
| Número do comando | 515 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
index 174aaacd4de478..64fb62688f90bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 508 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
index 879de675dcac71..fd5dd3c0bee2c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-selected-menu-item-parameter.md
@@ -31,6 +31,6 @@ Se nenhuma linha de menu for selecionada, o comando retorna uma cadeia vazia"".
| | |
| --- | --- |
| Número do comando | 1005 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
index 03ecb18b8483f2..ff9fd21f0efd75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Este método de projeto pode ser usado para tratar a mesma porta serial (sem pro
| | |
| --- | --- |
| Número do comando | 909 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
index 771f8a7692dc25..e21a7e225ce8b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ A variável sistema OK toma o valor 1 se for encontrado o recurso, do contrário
| | |
| --- | --- |
| Número do comando | 506 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
index 82aca824762ce3..070ef183865c5d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Se quiser conhecer a configuração atual da folha de estilo "Automatic"
| | |
| --- | --- |
| Número do comando | 1256 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
index 66c2e8eacb76c1..6d6e819ecab87b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número do comando | 1137 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
index ee8a20a5b3a8bf..6c2e71843a469d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ No parâmetro *formato*, passe o tipo do parâmetro do qual queira conhecer o va
| | |
| --- | --- |
| Número do comando | 994 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
index 6b24de1b0d5065..2896f4ec565640 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Una vez executado o comando:
| | |
| --- | --- |
| Número do comando | 687 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
index cf5139fa4e25eb..8007c834298abf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-table-titles.md
@@ -34,6 +34,6 @@ Em ambos os casos, o comando não retorna as tabelas invisíveis.
| | |
| --- | --- |
| Número do comando | 803 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
index efb5c5e11b840c..13f6087193bdc0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Se o texto for extraído corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 524 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
index 370da681a4f423..dbfc9c33f6b39a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Para contar as palavras de um texto:
| | |
| --- | --- |
| Número do comando | 1141 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
index a1afa6f308f691..020f08146f514e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-text-resource.md
@@ -48,7 +48,7 @@ Se o recurso for encontrado, OK assume o valor 1\. Do contrário, assume o valor
| | |
| --- | --- |
| Número do comando | 504 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
index 947d52b62fdf37..e655fec8891a34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER LIST ou se
| | |
| --- | --- |
| Número do comando | 609 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
index d52547c37bfa70..9c03c9bd01fe48 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-user-properties.md
@@ -60,7 +60,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER PROPERTIES
| | |
| --- | --- |
| Número do comando | 611 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
index b193f755c93ab7..5a0a4e3c0c249d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md)..
| | |
| --- | --- |
| Número do comando | 443 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
index f49ab2f2865e1d..c08bcbf6e0c4c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Ver exemplo do comando [SET WINDOW TITLE](set-window-title.md).
| | |
| --- | --- |
| Número do comando | 450 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
index c342d4f0233d59..0bb2a5dfb25e4a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Veja o exemplo do comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número do comando | 206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
index 6c2c2ff463a86a..d4d534537a069f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-record.md
@@ -35,7 +35,7 @@ Veja o exemplo para Record Number.
| | |
| --- | --- |
| Número do comando | 242 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
index 2fefbcb8894f0a..e921aee921bc7f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-selected-record.md
@@ -65,7 +65,7 @@ O seguinte método de objeto para *atNomes* seleciona o registro correto na sele
| | |
| --- | --- |
| Número do comando | 245 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
index cd35dbee0c0cd3..265a5d825a07ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ Mostra a janela a seguir (em Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número do comando | 161 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
index d76b55524762b1..609297e68292ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ Ver o exemplo do comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número do comando | 298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
index e59e3af8edc00c..13e61afc08c277 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/graph.md
@@ -286,6 +286,6 @@ Neste exemplo, personalizamos alguns parâmetros:
| | |
| --- | --- |
| Número do comando | 169 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
index cb311eb8b16d1c..8196824d5bb3fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ O método abaixo mostra um registro em toda a tela (Macintosh) até que dê um c
| | |
| --- | --- |
| Número do comando | 432 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
index 908cd8a71b24cb..c29c580bffa8e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ O exemplo a seguir oculta todas as janelas que pertencem ao processo atual:
| | |
| --- | --- |
| Número do comando | 324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
index 66c13bd0629d07..6c1b06ee64beff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar isto, no evento formulário On Resize da janela estandarte, é neces
| | |
| --- | --- |
| Número do comando | 434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
index a4127905ca3ea9..29579678a26274 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Este exemplo corresponde a um método de um botão localizado em um formulário
| | |
| --- | --- |
| Número do comando | 436 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
index 916bcd27723724..ab20a2ec807c00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Quando o usuário clicar no botão, aparece a caixa de diálogo padrão procurar
| | |
| --- | --- |
| Número do comando | 656 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
index d823bf4d1b6a9e..07789b277782cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/highlight-text.md
@@ -67,6 +67,6 @@ Ver o exemplo do comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTROK
| | |
| --- | --- |
| Número do comando | 210 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
index 9ee51b18ccaf3e..5354764fcd8e41 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-authenticate.md
@@ -64,6 +64,6 @@ Exemplos de petições com autenticação:
| | |
| --- | --- |
| Número do comando | 1161 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
index 5cee8662407e03..2b6e35efaef802 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1307 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
index 13242a8232c3c4..f817f6fba3c92f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get-option.md
@@ -50,6 +50,6 @@ No parâmetro *valor*, passe uma variável para receber o valor atual da *opçã
| | |
| --- | --- |
| Número do comando | 1159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
index e35fa93fd6dc4c..38e57d5d1ffa28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-get.md
@@ -110,7 +110,7 @@ Recuperação de um vídeo:
| | |
| --- | --- |
| Número do comando | 1157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
index 292bafd5491037..5518c0e636c409 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-request.md
@@ -133,6 +133,6 @@ Petição para adicionar um registro em JSON a um banco de dados remoto:
| | |
| --- | --- |
| Número do comando | 1158 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
index a653ea6cdcca24..0cc341a6fb1cc7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1306 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
index 671cbcd08ff909..c6fc2b39b1c701 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/http-set-option.md
@@ -51,6 +51,6 @@ Não importa a ordem das opções de chamada. Se a mesma opção é definida mai
| | |
| --- | --- |
| Número do comando | 1160 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
index e5a035f59db46a..312bd4da7cbc19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/idle.md
@@ -57,6 +57,6 @@ com:
| | |
| --- | --- |
| Número do comando | 311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
index d25ae7c9b5ef71..80dac80102587b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-data.md
@@ -52,7 +52,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo de salvar arquivos ou
| | |
| --- | --- |
| Número do comando | 665 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
index 51d18f5f56b4a8..c64182e7dc27a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se la importação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 86 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
index e9c2afaf93618d..736d6358ddb301 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Você deseja importar uma definição de estrutura guardada na base de dados atu
| | |
| --- | --- |
| Número do comando | 1310 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
index 2cb53441bc3cb9..b86a2754d022fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 87 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
index 74c0fbf8ffa069..52985b99ff2ace 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
index 2438fcc2674190..037e525cd9139d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In break**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 113 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
index 35a43d24490303..f47d895284c5a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In footer** tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
index 72b9063383920e..529959bf005c85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In header**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 112 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
index 107d96c285318d..2338acf38a4250 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Se realiza as operações (adição, modificação, ou eliminação de registros
| | |
| --- | --- |
| Número do comando | 397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
index e0e6e44734192b..71d2be47e884ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ O exemplo a seguir adiciona um elemento a um array:
| | |
| --- | --- |
| Número do comando | 227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
index 061faeed10e05d..68458dc45701d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Antes da chamada, você passa no parâmetro *offset* a posição de inserção e
| | |
| --- | --- |
| Número do comando | 559 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
index 14fdab0f65b588..d19f57dfb1ed2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ O código a seguir insere um elemento (sem sub-lista associada) justo antes do e
| | |
| --- | --- |
| Número do comando | 625 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
index cd2f923f1a7907..4d86333d70f884 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ O exemplo a seguir cria um menu que consiste em dois comandos os quais atribuem
| | |
| --- | --- |
| Número do comando | 412 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
index f457cb04b4d06a..c1eea8687b72d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ O seguinte exemplo ilustra o uso de Insert string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
index 770b084c786323..f64e6298ec25a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/int.md
@@ -36,6 +36,6 @@ O exemplo a seguir ilustra o funcionamento de Int para números positivos e nega
| | |
| --- | --- |
| Número do comando | 8 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
index 2d169191e3b3ca..001266be1917f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
index 7e9cd5964d2427..14b1c292316781 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/integrate-mirror-log-file.md
@@ -108,7 +108,7 @@ Se a integração é efetuada corretamente, a variável sistema OK recebe o valo
| | |
| --- | --- |
| Número do comando | 1312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
index 3d8f35435d8cd1..4a19467dabcc85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/intersection.md
@@ -54,6 +54,6 @@ O exemplo a seguir pesquisa os clientes que são atendidos por dois representant
| | |
| --- | --- |
| Número do comando | 121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
index 6dc0cdb09414d8..0a08901d439576 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Se quiser executar uma ação padrão **Goto page** (página 3) no formulário p
| | |
| --- | --- |
| Número do comando | 1439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
index e366934eac0579..73d0e21c4faf3b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-list.md
@@ -32,6 +32,6 @@ Ver os exemplos do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 621 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
index 43c9d1e5c4a0e4..af5f418dcb7982 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
index 63fd806b859f7f..549d28f56f53a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ Em uma de suas rotinas, você inclui a depuração do código apenas quando voc
| | |
| --- | --- |
| Número do comando | 492 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
index 656a98e2497a66..74832e3a6e827a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método vai impedir a abertura do banco de dados se o arquivo de dados esti
| | |
| --- | --- |
| Número do comando | 716 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
index 6be8c97ff4d318..8a9cce7a3cea94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Se quiser permitir que o usuário selecione uma linha começando com a letra ou
| | |
| --- | --- |
| Número do comando | 1744 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
index 1183b9ea2dd329..0f714564e6c5fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Este comando permite detectar as eventuais eliminações de campos, que criam qu
| | |
| --- | --- |
| Número do comando | 1000 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
index 88206ad17e745e..d0c556b329d6d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ O valor retornado por esse comando só tem significado se a opção *Mapear valo
| | |
| --- | --- |
| Número do comando | 964 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
index 9e7c67f427e762..5d324a67c3c4a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este exemplo permite ter em conta todos os tipos de impressões:
| | |
| --- | --- |
| Número do comando | 1198 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
index 5d0c1bfdd2e08a..882a01a4cd801c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-in-set.md
@@ -42,6 +42,6 @@ O seguinte exemplo é um método de objeto de um botão que testa se o registro
| | |
| --- | --- |
| Número do comando | 273 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
index 6950caa2c41e76..8d7fbd6bca9f28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-license-available.md
@@ -54,6 +54,6 @@ O comando Is license available pode ser utilizado de três maneiras diferentes:
| | |
| --- | --- |
| Número do comando | 714 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
index deae3525fe3eef..28feff871e84f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual for macOS:
| | |
| --- | --- |
| Número do comando | 1572 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
index 813feb4b87e983..f421613afc01e1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-new-record.md
@@ -46,6 +46,6 @@ As duas instruções a seguir são idênticas. A segunda é recomendada para que
| | |
| --- | --- |
| Número do comando | 668 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
index 079b44674ccc6c..755b603a6c9f5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Caso deseje conhecer o nome da variável apontada ou o número do campo, pode ut
| | |
| --- | --- |
| Número do comando | 315 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
index ee7a8cad01a9a3..d917b4dda6fe97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Se não passa o parâmetro *\**, o comando prova o arquivo buscando sua extensã
| | |
| --- | --- |
| Número do comando | 1113 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
index 00123c38e55f39..78a8d58f3acab2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-record-loaded.md
@@ -50,6 +50,6 @@ Ao invés de utilizar as ações automáticas “Seguinte registro” ou “Regi
| | |
| --- | --- |
| Número do comando | 669 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
index 75df7e1a559145..082fe65216493e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Este comando permite detectar as eventuais eliminações de tabelas, que criam q
| | |
| --- | --- |
| Número do comando | 999 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
index 353bab361d62cf..997ac273ebb81f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Se não tiver os privilégios de acesso adequados para chamar Is user deleted ou
| | |
| --- | --- |
| Número do comando | 616 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
index 91643e6f6ae4ae..e534164f19e955 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-waiting-mouse-up.md
@@ -64,6 +64,6 @@ O código abaixo pode ser usado para gerenciar uma propriedade de tracking de mo
| | |
| --- | --- |
| Número do comando | 1422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
index bc0486e55570fe..f5682430101e14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Se quiser mudar entre o estado maximizado e o anterior:
| | |
| --- | --- |
| Número do comando | 1830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
index 745793e9ddb501..3cf9f824ca7d9b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
index aa63fde340e0d2..9ebb36425aaa28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual é Windows:
| | |
| --- | --- |
| Número do comando | 1573 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
index b5ca67ca4e5363..857fffeb229d56 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ Neste exemplo, os dados dos campos dos registros de uma tabela se extraem e loca
| | |
| --- | --- |
| Número do comando | 1219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
index d0ec48905c56df..10c66fcd1162e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-parse.md
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número do comando | 1218 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
index 2ceae240cc999d..684e7813a7d281 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ Se executar:
| | |
| --- | --- |
| Número do comando | 1478 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
index bfacd8e9bc181e..9a0edb24c5058a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversão de uma seleção 4D em um array objeto:
| | |
| --- | --- |
| Número do comando | 1228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
index 99f8addbfbda06..c0d8d6785bff4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-stringify.md
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número do comando | 1217 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
index ce15679e11cba2..b836f535962a10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Uso do comando **JSON TO SELECTION** para adicionar os registros a tabela \[Comp
| | |
| --- | --- |
| Número do comando | 1235 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
index 829921a645cf2d..d7c8911f9cf73c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Se quiser validar um objeto JSON com um esquema e obter a lista de erros de vali
| | |
| --- | --- |
| Número do comando | 1456 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
index 37c6c1510e51f7..9e546f5b35f023 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/keystroke.md
@@ -182,6 +182,6 @@ Utilizando as habilidades da comunicação interprocesso de 4D, pode construir i
| | |
| --- | --- |
| Número do comando | 390 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
index 90aeb42bcdfc72..71168d3ba70aba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/kill-worker.md
@@ -60,6 +60,6 @@ No método (*theWorker*), adicionou código para manejar esta situaçao:
| | |
| --- | --- |
| Número do comando | 1390 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
index 6dac24196ff77f..6fbe6acf4aae7a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ Os campos estão numerados na ordem na qual foram criados. Se nenhum campo foi a
| | |
| --- | --- |
| Número do comando | 255 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
index 411703a9565ac3..d8667020546486 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-path.md
@@ -40,6 +40,6 @@ A descrição da rota da última pesquisa pode ser comparada com a descrição d
| | |
| --- | --- |
| Número do comando | 1045 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
index 7d1a8c96ac0b8a..d781ca26ce382c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ A descrição do plano da última pesquisa pode ser comparada com a descrição
| | |
| --- | --- |
| Número do comando | 1046 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
index fbd4f7afb1a623..383b706db6b7c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ O exemplo a seguir designa o último registro da tabela \[Pessoas\] como registr
| | |
| --- | --- |
| Número do comando | 200 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
index 129e2f3e9dd893..10469527a169a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ O seguinte exemplo inicializa os elementos do array *arrayTabelas*, com os nomes
| | |
| --- | --- |
| Número do comando | 254 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
index d465cd7da0fd41..32279249b8325a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado em um processo de atualização aut
| | |
| --- | --- |
| Número do comando | 1301 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
index b26fc7d4ff8013..57ba368d4d254f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/launch-external-process.md
@@ -142,7 +142,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 811 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
index 4840fa44741a00..dbfa07b55e2814 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-login.md
@@ -102,6 +102,6 @@ Este exemplo tenta conectar-se a um aplicativo:
| | |
| --- | --- |
| Número do comando | 1326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
index ad7b6c29277334..4315b2f6055157 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
index f299785afd3358..396ed745192694 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Estes exemplos ilustram o uso do parâmetro *atributosEmArray*:
| | |
| --- | --- |
| Número do comando | 1329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
index d2772aa7b965ec..5a463e046614cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Queremos obter um array de todas as entradas que se encontram no atributo "membe
| | |
| --- | --- |
| Número do comando | 1328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
index 539257dcf32c80..721afc5712bd18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/length.md
@@ -35,6 +35,6 @@ Este exemplo ilustra o uso de **Length**. Os resultados, descritos nos comentár
| | |
| --- | --- |
| Número do comando | 16 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
index e3bbea2bdc8f15..bb242995fcca6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este exemplo é um modelo para um método de formulário. Mostra cada evento pos
| | |
| --- | --- |
| Número do comando | 101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
index 437685d21b6ce1..e42992f1b8d2aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ Essa tabela detalha os conteúdos do objeto sessão para sessões REST:
| | |
| --- | --- |
| Número do comando | 1782 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
index 2c254c1241cfd0..1e45429b4e517f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-parent.md
@@ -77,6 +77,6 @@ Os números de referência dos elementos são os seguintes:
| | |
| --- | --- |
| Número do comando | 633 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
index a1bc19e07b84c3..44bc3a6c66c668 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Se o elemento não existir, List item position retorna 0.
| | |
| --- | --- |
| Número do comando | 629 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
index ca2c33fff1c639..dc9b2b2a6ca3db 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Os números das listas correspondem a sua ordem de criação. No editor de lista
| | |
| --- | --- |
| Número do comando | 957 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
index c070f404229339..29d59a1270a869 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Se executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1255 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
index b43798524f0ac5..410b6949b8c68e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Se executa a seguinte instrução:
| | |
| --- | --- |
| Número do comando | 288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
index 99509da955d165..89c76118fed372 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Veja o exemplo para o comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 556 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
index fdbe998c48d794..382b6e668421dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Este exemplo colapsa o primeiro nível de linhas de quebra da seleção no list
| | |
| --- | --- |
| Número do comando | 1101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
index 434631a41731b3..eabf024d565686 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Se o parâmetro *posicionCol* é maior que o número de colunas no list box, o c
| | |
| --- | --- |
| Número do comando | 830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
index 9bf58f1b55bcdb..fdd9663175dd3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Se o parâmetro *posição* é superior ao número de linhas do array do list bo
| | |
| --- | --- |
| Número do comando | 914 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
index 3c3f4d7e422a5b..9178324f346edc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-duplicate-column.md
@@ -97,6 +97,6 @@ A partir de 4D v14 R3, pode duplicar dinamicamente as colunas de list box e 4D s
| | |
| --- | --- |
| Número do comando | 1273 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
index 7e2baf79f296c2..d8899449e2cc4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-expand.md
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número do comando | 1100 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
index 5b270fb047c17b..1ce139e9dcc0e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Exemplos típicos de uso:
| | |
| --- | --- |
| Número do comando | 1278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
index a582a2f2b4d710..32d73dd66e5251 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Para seleção de registro, list boxes do tipo coleção ou seleção de entidad
| | |
| --- | --- |
| Número do comando | 832 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
index 75ee83dbdc0c37..aa9c9f04bb9e1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-auto-row-height.md
@@ -64,6 +64,6 @@ vhMax:=LISTBOX Get auto row height(*;"LB";lk row max height;lk lines)
| | |
| --- | --- |
| Número do comando | 1502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
index 6e7499c757a0ea..6cadb6a1447424 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-coordinates.md
@@ -58,6 +58,6 @@ Você quer desenhar um retângulo vermelho arredor da célula selecionada de um
| | |
| --- | --- |
| Número do comando | 1330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
index dba7dcc7049aa6..adce54dc3ea9c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-cell-position.md
@@ -61,6 +61,6 @@ Se a seleção é modificada utilizando as flechas do teclado, *coluna* devolve
| | |
| --- | --- |
| Número do comando | 971 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
index 6f02d9e26bbdf5..34449aa8cf5937 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Passado o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1202 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
index 0bd6cc3ff23911..aed0fb51287564 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ Se não tiver definido nenhum valor de largura mínima ou máxima para a coluna,
| | |
| --- | --- |
| Número do comando | 834 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
index 1920788fb595f2..50f647a481fc99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footer-calculation.md
@@ -36,6 +36,6 @@ Pode comparar o valor devolvido com as constantes do tema *Listbox Footer Calcul
| | |
| --- | --- |
| Número do comando | 1150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
index aeefdc6550b46a..056939b8e90370 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-footers-height.md
@@ -41,6 +41,6 @@ Por defeito, é omitido o parâmetro *unidad*e, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1146 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
index 6130ce6d4d2feb..d6f95936306f92 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ Em *corH* e *corV*, o comando devolve os valores das cores RGB. O formato de cor
| | |
| --- | --- |
| Número do comando | 1200 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
index b9e1a6cee046a4..ecc8743b0478fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ O comando devolve nos parâmetros *horizontal* e *vertical*, o valor **True** ou
| | |
| --- | --- |
| Número do comando | 1199 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
index 8d4b22a9de9a0f..8ec37ffb3e4571 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ Por defeito, se omitido o parâmetro *unidade*, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1144 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
index b079475c0f3612..1344dbbc36fd2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Se o list box está em modo hierárquico, o comando preenche o array *hierarquia
| | |
| --- | --- |
| Número do comando | 1099 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
index 60f4cb50e39af7..ef0f7056765982 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-locked-columns.md
@@ -35,6 +35,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma área
| | |
| --- | --- |
| Número do comando | 1152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
index 51a8131679c081..004cafd5509b87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
index 5025c7b21b2d74..7b516d56d0a161 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 915 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
index 87bc5423f3d98b..c191e68145235a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
index 9ada22d4710e17..72f1352171cd99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impressão de pelo menos 500 linhas do list box, conhecendo que algumas linhas e
| | |
| --- | --- |
| Número do comando | 1110 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
index ff2ab85a4a1966..83affa257c9f9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color-as-number.md
@@ -64,6 +64,6 @@ Given the following list box:
| | |
| --- | --- |
| Número do comando | 1271 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
index cd468e8497fb36..bf3607bd66ece8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Dado a list box abaixo:
| | |
| --- | --- |
| Número do comando | 1658 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
index c094faebfc4356..6a04cb7c563531 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Dado o seguinte list box:
| | |
| --- | --- |
| Número do comando | 1269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
index 839cb94158b8a4..6944999f28ffad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ O valor da altura da linha se expressa:
| | |
| --- | --- |
| Número do comando | 1408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
index b093645f9d4095..54b81659a8b297 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Por padrão, se omitir o parâmetro *unidade*, a altura da linha devolvida é ex
| | |
| --- | --- |
| Número do comando | 836 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
index f943a445ba0f66..c6dda400b83711 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma conjun
| | |
| --- | --- |
| Número do comando | 1154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
index df3329b166039a..c9fe81a328663f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-get-table-source.md
@@ -38,6 +38,6 @@ Se o list box está associado com arrays, *numTabela* devolve -1 e *tempo*, se
| | |
| --- | --- |
| Número do comando | 1014 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
index 8fb51ccc4c1aa1..1963961ddf0a61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column-formula.md
@@ -124,6 +124,6 @@ A coluna é anexada à list box :
| | |
| --- | --- |
| Número do comando | 970 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
index ae223d99f04314..36e3e02f999d6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-column.md
@@ -103,6 +103,6 @@ Você deseja inserir uma coluna de forma dinâmica em um array de tipo list box
| | |
| --- | --- |
| Número do comando | 829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
index 5fa66e76ab0891..619f72c651e856 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Se o parâmetro *numFilas* excede o número de linhas de tabelas nas arrays do l
| | |
| --- | --- |
| Número do comando | 913 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
index 0372043b65dbc1..f558baf1d0a36e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Você quer inverter a segunda e terceira coluna do list box:
| | |
| --- | --- |
| Número do comando | 1274 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
index 3e4ae4fa578995..427b674b4d009a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Este comando deve ser utilizado com o evento de formulário On column moved (ver
| | |
| --- | --- |
| Número do comando | 844 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
index cff1c2583c0e0c..ad297a2618530e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Este comando deve ser utilizado com o evento de formulário On row moved (ver o
| | |
| --- | --- |
| Número do comando | 837 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
index edcbf72035f99a..1cdce0b62a15a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Este é o resultado:
| | |
| --- | --- |
| Número do comando | 1117 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
index 7067e574aaad67..11e9148a929f2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ Depois da execução do método, os arrays são sincronizados: se o array fonte
| | |
| --- | --- |
| Número do comando | 912 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
index f9dc6907fd70c4..aece715ed4c377 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-select-rows.md
@@ -89,6 +89,6 @@ Exemplo com a coleção de objetos:
| | |
| --- | --- |
| Número do comando | 1715 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
index de6968f90bf53c..66731b31972ab9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-array.md
@@ -71,6 +71,6 @@ Se quiser definir um array de altura de linha para um list box:
| | |
| --- | --- |
| Número do comando | 1279 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
index 7b9a205430e4c3..ff2de0afc7d4a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Se quiser definir as alturas mínimas e máximas para um list box com uma altura
| | |
| --- | --- |
| Número do comando | 1501 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
index de67fac9a21651..dbc5b41913d050 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ O parâmetro *tipoDados* designa o tipo de dados resultantes da execução da f
| | |
| --- | --- |
| Número do comando | 1203 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
index 75aaa2be2f3cb1..42fa3c6b2f3db4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-column-width.md
@@ -38,6 +38,6 @@ Os parâmetros opcionais *larguraMin e* *larguraMax* permitem definir os limites
| | |
| --- | --- |
| Número do comando | 833 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
index 3911cc3e560fd4..84674101d93562 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ Se o tipo de dados da coluna ou de pelo menos uma coluna do list box (se objeto
| | |
| --- | --- |
| Número do comando | 1140 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
index e6dcfe0eb99b93..d449fc81fceb55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-footers-height.md
@@ -41,6 +41,6 @@ Passe no parâmetro *altura* a altura a definir. Por defeito, é omitido o parâ
| | |
| --- | --- |
| Número do comando | 1145 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
index fd6fbbf4f4e6fe..c2085ccfdb3dc2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Os parâmetros *horizontal* e *vertical* lhe permitem especificar as linhas as q
| | |
| --- | --- |
| Número do comando | 842 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
index 25c79997227965..88265ffbba0b1b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos que indicam
| | |
| --- | --- |
| Número do comando | 841 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
index 110ddd6f379b0f..cbe8f4b372cb07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-headers-height.md
@@ -45,6 +45,6 @@ Cabeçalhos devem respeitar a altura mínima estabelecida pelo sistema. Esta alt
| | |
| --- | --- |
| Número do comando | 1143 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
index bb1c167fe23a90..1db8d06b74da2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Definição dos arrays aPais, aRegião e aCidade como hierarquia de um list box:
| | |
| --- | --- |
| Número do comando | 1098 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
index b5072bb13eac81..068a92cd9d5842 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Para eliminar o bloqueio de colunas, passe 0 em *numColunas*.
| | |
| --- | --- |
| Número do comando | 1151 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
index 47646c7e01c7e4..36f4cfc2fd143f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ Em um array de tipo list box, queremos estabelecer as cores de uma fila e para u
| | |
| --- | --- |
| Número do comando | 1270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
index c7a768433d75e3..b2f4156a09b106 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-font-style.md
@@ -84,6 +84,6 @@ Depois da segunda declaração, todas as células da terceira fila mudam de fila
| | |
| --- | --- |
| Número do comando | 1268 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
index 59190c045ea68a..1414fe7b3c363f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-row-height.md
@@ -90,6 +90,6 @@ Por outro lado, se o código abaixo for executado posteriormente...
| | |
| --- | --- |
| Número do comando | 1409 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
index 01222546ee93b6..840a65449cdbe5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Nota: para mais informação sobre o cálculo das alturas das linhas, consulte o
| | |
| --- | --- |
| Número do comando | 835 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
index 5ce961e465a203..61b713b3ba2e98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ As colunas estáticas não podem mover-se no list box.
| | |
| --- | --- |
| Número do comando | 1153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
index d63ccc3ef152f1..fe67cfc2b1800f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ Se o list box já conter as colunas, seus conteúdos são atualizados depois da
| | |
| --- | --- |
| Número do comando | 1013 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
index c9935cd3f09d35..75d4cfa03febb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ Nota: O comando LISTBOX SORT COLUMNS não leva em consideração a propriedade d
| | |
| --- | --- |
| Número do comando | 916 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
index d5975aabf7692d..055b0a367dd17d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Obterá o resultado abaixo (objeto stringified):
| | |
| --- | --- |
| Número do comando | 1528 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
index d2382522ba8145..c81cc9570bbea4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Você cria um banco para o mercado internacional e necessita mudar aos diferente
| | |
| --- | --- |
| Número do comando | 383 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
index a4bebd22205eeb..20c95ec0d786af 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 52 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
index 752c050dde26ad..8c7a200fb5e61b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ Se o usuário clicar em Cancelar na caixa de diálogo de abrir arquivos, ou se f
| | |
| --- | --- |
| Número do comando | 185 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
index 36a2ca0c6a3046..50358afc22c40c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ Se as variáveis são carregadas corretamente, a variável sistema OK assume o v
| | |
| --- | --- |
| Número do comando | 74 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
index d3b786b4f2c774..0ed5231228a1d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-document-path.md
@@ -71,6 +71,6 @@ Se a linguagem atuarl for, por exemplo, francês canadense (fr-ca), o comando de
| | |
| --- | --- |
| Número do comando | 1105 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
index cfb9b660c0c2ce..66d5eb4b01f0a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Se *r
| | |
| --- | --- |
| Número do comando | 991 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
index 6d74bd005e4e35..ef344ab69a3f4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-by.md
@@ -45,6 +45,6 @@ nomeProcesso devolve o endereço IP do locker, p. ex. "127.0.0.1"
| | |
| --- | --- |
| Número do comando | 353 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
index 40eeaaaaed523c..9c775d034cca8c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked-records-info.md
@@ -96,6 +96,6 @@ Se o código é executado em um 4D Server e o bloqueio é causado por uma máqui
| | |
| --- | --- |
| Número do comando | 1316 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
index 2f708f4551752a..6721f7526128b8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Durante uma transação, [LOAD RECORD](load-record.md) e Locked se utilizam com
| | |
| --- | --- |
| Número do comando | 147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
index 2b7c274d195cc0..6a49480c71e44f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-event.md
@@ -70,6 +70,6 @@ Cada vez que se abre o banco de dados, esta informação será escrita no visor
| | |
| --- | --- |
| Número do comando | 667 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
index 1c91d6716beb8f..7e100de00f78c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ Ocomando **LOG FILE TO JSON** modifica o valor das variáveis OK e Document: se
| | |
| --- | --- |
| Número do comando | 1352 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
index 6a1fea010d7a6d..4dcec288d50595 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Se o banco de dados funciona com um arquivo de histórico, a variável de sistem
| | |
| --- | --- |
| Número do comando | 928 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
index 31d68874df06fd..a1af1872956c1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/log.md
@@ -37,6 +37,6 @@ A linha a seguir mostra 1:
| | |
| --- | --- |
| Número do comando | 22 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
index 6a09169f4c95d1..641e2e647cd6dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Se quiser recuperar os números dos registros da seleção atual:
| | |
| --- | --- |
| Número do comando | 647 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
index 55cf937f22045f..7a56941fbd6a92 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Depois de executar esse código:
| | |
| --- | --- |
| Número do comando | 550 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
index c3b0af3c7430c5..513552455d6308 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/lowercase.md
@@ -53,6 +53,6 @@ Este exemplo compara os resultados obtidos de acordo com se é passado ou não o
| | |
| --- | --- |
| Número do comando | 14 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
index 5e8a5d9e094940..9f902107137138 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-command-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 546 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
index 0f7fe0f0fa3fc4..442603ffbfbdee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-control-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 544 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
index 65d6fbba895448..c6880d3a3cb640 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/macintosh-option-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 545 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
index 593ee2f6d49baa..def39ee6becb9d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/match-regex.md
@@ -118,7 +118,7 @@ Em caso de erro, o comando gera um erro que pode interceptar através de um mét
| | |
| --- | --- |
| Número do comando | 1019 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
index 5389cff7419cd2..c281b57abc5374 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/max.md
@@ -76,7 +76,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 3 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
index 7f8237f4e6dbee..e8b56dd1a4da78 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/maximize-window.md
@@ -85,6 +85,6 @@ Neste contexto, se o usuário fizer clique no botão:
| | |
| --- | --- |
| Número do comando | 453 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
index 11a20716b8440d..2b719ce5be5f00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ Depois que o comando for executado, as estatísticas são fornecidas nos arrays
| | |
| --- | --- |
| Número do comando | 1118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
index e269b66a5b98f3..962b27c39eddad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ O comando retorna 0:
| | |
| --- | --- |
| Número do comando | 440 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
index c64b779bb38ff9..e493d1815d18de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 441 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
index 392a2a046a7dbc..8680b6045bf156 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/menu-selected.md
@@ -67,7 +67,7 @@ O método a seguir de formulário utiliza Menu selected para proporcionar os arg
| | |
| --- | --- |
| Número do comando | 152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
index 6587f3ebe41a61..30bd6e06b05c23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/message.md
@@ -118,6 +118,6 @@ O resultado é o seguinte (em Windows):
| | |
| --- | --- |
| Número do comando | 88 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
index 8f302045d87732..8293299fcb877f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-off.md
@@ -71,6 +71,6 @@ O exemplo a seguir elimina os termômetros de progresso antes de realizar uma or
| | |
| --- | --- |
| Número do comando | 175 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
index fed12c360863cf..4db4282b894d6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 181 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
index e74b53317ddca2..5ab687ab4aac9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Este comando é particularmente útil no contexto de componentes porque lhe perm
| | |
| --- | --- |
| Número do comando | 704 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
index a40e96fe98075d..c71e92a9ec9ade 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Se nenhum método do tipo for instalado, uma cadeia vazia ("") é retornada.
| | |
| --- | --- |
| Número do comando | 705 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
index d8dddeaa7d229b..ae6348c9f72ecd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attribute.md
@@ -47,6 +47,6 @@ O comando retorna **True** se for selecionado um atributo e **False** se for des
| | |
| --- | --- |
| Número do comando | 1169 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
index f1b1fcb470c84e..a8ae2b5785fb10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-attributes.md
@@ -65,6 +65,6 @@ Depois da execução, $att contém, por exemplo:
| | |
| --- | --- |
| Número do comando | 1334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
index a0dea41383c35f..7880521e75d8b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-code.md
@@ -130,6 +130,6 @@ O documento resultante conterá:
| | |
| --- | --- |
| Número do comando | 1190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
index f6106ac605876b..f40b20b287973c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-comments.md
@@ -62,6 +62,6 @@ Se o comando é executado desde um componente, se aplica por defeito aos método
| | |
| --- | --- |
| Número do comando | 1189 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
index 9b62fd2204f516..a6f8e8b1f830c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-folders.md
@@ -35,6 +35,6 @@ Se executado este comando desde um componente, devolve por defeito os caminhos d
| | |
| --- | --- |
| Número do comando | 1206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
index 19d00bc6d59fa6..aee3e4fe73ba6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Se quiser obter as datas de modificação dos métodos de um módulo com o prefi
| | |
| --- | --- |
| Número do comando | 1170 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
index 84471da80b125c..0373c2c641774a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Exemplos de uso:
| | |
| --- | --- |
| Número do comando | 1166 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
index 7a41af2ade99ab..0cc94e1cd841c1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Se o comando for executado desde um componente, retorna como padrão as rotas do
| | |
| --- | --- |
| Número do comando | 1164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
index 0aa7d987fa2539..4bc8f67ee2c731 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ Lista de todos os objetos dos formulários "input" da tabela \[Empregados\] a pa
| | |
| --- | --- |
| Número do comando | 1168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
index 663e126cebf0d5..eb1c7766a421e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Consulte o exemplo do comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número do comando | 1163 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
index acbeca34ffa9d3..ede2eadbfed09a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Pode executar este comando desde um componente, mas neste caso, deve passar o pa
| | |
| --- | --- |
| Número do comando | 1213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
index 6bcb3b06dd0c3c..2ce45eb92e74ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-resolve-path.md
@@ -89,6 +89,6 @@ Resolução de uma rota de método de formulário tabela:
| | |
| --- | --- |
| Número do comando | 1165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
index 458ad1b1925424..380818b653ee32 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ Em *modo*, passe uma das seguintes constantes do tema *Design Object Access*:
| | |
| --- | --- |
| Número do comando | 1191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
index 0e856454b851f0..29a9f1edae4c1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Definição de vários pares de atributos/valores:
| | |
| --- | --- |
| Número do comando | 1192 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
index 7a0e8a9928e8bf..b9ef3c9b86236d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-attributes.md
@@ -66,6 +66,6 @@ Se você desejar modificar apenas um atributo:
| | |
| --- | --- |
| Número do comando | 1335 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
index 4b6e92b6ec2b66..5b7b86d5985c88 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-code.md
@@ -102,6 +102,6 @@ Este exemplo exporta e importa a totalidade dos métodos projeto de uma aplicaç
| | |
| --- | --- |
| Número do comando | 1194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
index 6dd799ac96b68f..41de27397989e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/method-set-comments.md
@@ -75,6 +75,6 @@ Pode executar o comando de uma componente, mas neste caso você deve passar o pa
| | |
| --- | --- |
| Número do comando | 1193 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
index f35653ca0b8274..70f40de3f566c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ O código abaixo espera até 5 segundos para que um registro bloqueado seja desb
| | |
| --- | --- |
| Número do comando | 459 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
index d1fbcc299d6373..c8b95e668ff7cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/min.md
@@ -84,7 +84,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 4 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
index 3e9cd4c032e5b7..23a63f49296680 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/minimize-window.md
@@ -56,6 +56,6 @@ Mac OS
| | |
| --- | --- |
| Número do comando | 454 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
index c7f16d5eb12a45..cdbbe9bb2205e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Se quiser resetar todas as sessões atuais para todas as aplicações móveis:
| | |
| --- | --- |
| Número do comando | 1596 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
index a2666d95d9b1aa..af0a1495659995 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mod.md
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra o funcionamento de Mod com diferentes argumentos. Cad
| | |
| --- | --- |
| Número do comando | 98 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
index 9e689f60c20384..01ebec192bf277 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ O exemplo a seguir mostra uma utilização típica de Modified record:
| | |
| --- | --- |
| Número do comando | 314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
index 26de8a9da5510a..63fa57371cfabb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modified.md
@@ -73,6 +73,6 @@ Seleciona um registro para a tabela *\[umaTabela\]*, depois chama múltiplas sub
| | |
| --- | --- |
| Número do comando | 32 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
index f6f2a3631704f8..37147df11e3bfc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-record.md
@@ -54,7 +54,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 57 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
index e610cd0fb6a9bb..e0592c24371f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/modify-selection.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
index b9a5d309adef21..6d5f54b297098c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/monitored-activity.md
@@ -141,6 +141,6 @@ Ver exemplos para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número do comando | 1713 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
index b453f55c06c301..fee8bd605c8f1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 24 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
index 4185d1e0d00996..c599517e1016fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/mouse-position.md
@@ -47,6 +47,6 @@ Ver o exemplo do comando [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Número do comando | 468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
index a578dc7a51d0a9..20bfbcc40b5a86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ O exemplo abaixo move o documento DocNome:
| | |
| --- | --- |
| Número do comando | 540 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
index 9f0746ba5b6640..8b907efd0e866e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/multi-sort-array.md
@@ -119,6 +119,6 @@ Se quiser que o array de nomes seja usado como um terceiro critério de ordenaç
| | |
| --- | --- |
| Número do comando | 718 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
index a2dd5ffca1561c..f21ad0573495ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Se quiser salvar uma chave de criptografia em um arquivo .4DKeyChain:
| | |
| --- | --- |
| Número do comando | 1611 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
index 76ec5e9f80873f..d15888faa5d44f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 375 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
index 7901ee6aea6997..e66f393b3b1c8e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-object.md
@@ -114,6 +114,6 @@ Com este comando, pode fácilmente manejar objetos em loops:
| | |
| --- | --- |
| Número do comando | 1471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
index 53c1ae787e74a3..ee6c2fd0e3acd2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-process.md
@@ -112,6 +112,6 @@ No editor de barras de menus, pode substituir ADICIONAR CLIENTES pelo método IN
| | |
| --- | --- |
| Número do comando | 317 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
index 667737736b27b9..c9099318daab31 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Se quiser criar e modificar um objeto compartido. A estrutura deve ser chamada p
| | |
| --- | --- |
| Número do comando | 1526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
index f6eacfbcfb5b99..74189639da8cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Ver o exemplo do comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número do comando | 51 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
index 2c797723510036..90af57aacc5834 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/next-window.md
@@ -29,6 +29,6 @@ O comando Next window devolve o número de referência da janela localizada “a
| | |
| --- | --- |
| Número do comando | 448 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
index 050d471da31651..f96e83c580574c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/no-default-table.md
@@ -48,6 +48,6 @@ Em um banco que contenha um formulário de projeto chamado "oFormulário" e um f
| | |
| --- | --- |
| Número do comando | 993 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
index 36818f1f757ec1..3f258a07501ad6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/not.md
@@ -38,6 +38,6 @@ Este exemplo atribui primeiro Verdadeiro a uma variável, logo muda o valor da v
| | |
| --- | --- |
| Número do comando | 34 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
index a9b7f5e1bdcbab..845f906cb24bcb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ O parâmetro atual pode estar definido:
| | |
| --- | --- |
| Número do comando | 1052 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
index c3a8bfa342e45d..1d2d97bf92f602 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/null.md
@@ -136,6 +136,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 1517 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
index dc5ff15d374417..611646aab07c06 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/num.md
@@ -91,6 +91,6 @@ Este exemplo compara os resultados obtidos dependendo do separador “atual”:
| | |
| --- | --- |
| Número do comando | 11 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
index e5983c4ff4d4bf..f8f59ca20e7258 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Depois, em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
index 48d71f727a8eb4..5a8b5f6f000104 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-copy.md
@@ -171,6 +171,6 @@ Imagine que queira copiar *$sharedObj* em *$sharedCol mas* como eles pertencem a
| | |
| --- | --- |
| Número do comando | 1225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
index 1b2660004d4ffa..04f0708de5b4a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ Usando um objeto com um map hash (sistema key/value) oferece um acesso rápido e
| | |
| --- | --- |
| Número do comando | 1720 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
index 62a03bc499d94e..19869a271d9d2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ Queremos mudar um valor no primeiro elemento do array:
| | |
| --- | --- |
| Número do comando | 1229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
index a2164eb1fd7de0..cca4c663a36c09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-property-names.md
@@ -103,6 +103,6 @@ Utilizando um elemento de array de objetos:
| | |
| --- | --- |
| Número do comando | 1232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
index ce618e77cdb54e..3d18000c7c88c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get-type.md
@@ -59,6 +59,6 @@ Queremos obter o tipo de valores padrão:
| | |
| --- | --- |
| Número do comando | 1230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
index cdaafe67a4299a..d4a3616a3ae2ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-get.md
@@ -226,6 +226,6 @@ Se quiser conhecer o tamanho de uma imagem armazenada em um atributo objeto:
| | |
| --- | --- |
| Número do comando | 1224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
index 09458d5b0f129d..ef00d0f68e5331 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-instance-of.md
@@ -58,6 +58,6 @@ Depois em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
index 71a10c2577612e..815c43cff05e77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Esta prova é equivalente a:
| | |
| --- | --- |
| Número do comando | 1231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
index b34aba03cef654..19802458dab338 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Estes são os diferentes resultados deste comando como também do comando [OB Is
| | |
| --- | --- |
| Número do comando | 1297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
index 4113a2ee60d38e..a0eeadb2f1720b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Este comando devolve **True** se for passado uma seleção de entidades compaív
| | |
| --- | --- |
| Número do comando | 1759 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
index 6d0cd25e92e502..76daff6b1e52be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-keys.md
@@ -52,6 +52,6 @@ Se quiser uma coleção com todos os nomes de propriedade de primeiro-nível de
| | |
| --- | --- |
| Número do comando | 1719 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
index e08324ddb819a7..5cd387c1514aef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Você quer eliminar a propriedade "idade" de um objeto:
| | |
| --- | --- |
| Número do comando | 1226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
index 1b978bea6fa5ac..5cf8548535af37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-array.md
@@ -136,6 +136,6 @@ Usar um array de imagem:
| | |
| --- | --- |
| Número do comando | 1227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
index 2069836da129f3..3eb3f8397fff5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Queremos colocar o valor nulo na propriedade "idade" para Lea:
| | |
| --- | --- |
| Número do comando | 1233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
index 997512fb89a522..13f459f139c4f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-set.md
@@ -204,6 +204,6 @@ Se quiser armazenar uma imagem em um campo objeto. Pode escrever:
| | |
| --- | --- |
| Número do comando | 1220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
index a3e3342a5a1d18..8dd53956a36773 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Se quiser uma coleção com todos os valores de propriedade de um objeto:
| | |
| --- | --- |
| Número do comando | 1718 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
index 79446cd713cffe..ec0dee76ebd3e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-duplicate.md
@@ -106,7 +106,7 @@ Criação de um novo botão opção "bRadio6" baseado no botão opção existent
| | |
| --- | --- |
| Número do comando | 1111 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
index e0c9ff2d77db4c..b9f6736013eeb0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Se quiser associar a ação "Cancelar" com todos os objetos no formulário que a
| | |
| --- | --- |
| Número do comando | 1457 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
index 82d4a725c61ac0..caca0a149d969e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ O comando devolve **True** quando a correção ortográfica automática está at
| | |
| --- | --- |
| Número do comando | 1174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
index 011f7265a9ad4b..5ad093fa972cb4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-best-size.md
@@ -57,6 +57,6 @@ Consulte o exemplo no comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 717 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
index 3d95c7bb60af9d..9a22500595c74f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ O comando devolve um valor que corresponde ao estilo da linha fronteira. Pode co
| | |
| --- | --- |
| Número do comando | 1263 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
index 6721133a284832..03536e45d27362 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ O comando devolve **True** se o menu contextual está ativo para o objeto e **Fa
| | |
| --- | --- |
| Número do comando | 1252 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
index c076f29921b443..6b5e83bc00566d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ O método devolve as coordenadas teóricas. Se o listbox é redimensionado, pode
| | |
| --- | --- |
| Número do comando | 663 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
index 3b721a07ee9d1b..2949e9b1055bb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ O seguinte código pode ser adicionado a um método button:
| | |
| --- | --- |
| Número do comando | 1324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
index 4c6272e1f12749..47e95d463bc99a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-data-source.md
@@ -47,6 +47,6 @@ Executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1265 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
index dc2305bd047257..d6b1d1c1a822b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Cada parâmetro devolve True ou False dependendo se a opção correspondente est
| | |
| --- | --- |
| Número do comando | 1184 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
index 2b79f511d90dd7..e4a7f6b2cdfba3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1079 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
index 4e5f8454ac3770..36df351a077b2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1067 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
index b35dd60224c20e..0d9b9ebac4fb93 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Você quer ativar dois eventos e obter a lista de eventos para um objeto:
| | |
| --- | --- |
| Número do comando | 1238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
index 63827a3606740d..3ecf3e23b79715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1073 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
index 04fe876394373e..7c7f6d8828adac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ O comando devolve **True** se o retângulo de foco está oculto e **False** quan
| | |
| --- | --- |
| Número do comando | 1178 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
index 80bbc741621677..0c6ab53ae42512 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1070 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
index 9ccbd5f339555d..556fafe1ffe4b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Pode comparar o valor retornado pelo comando com o valor de um ou mais das segui
| | |
| --- | --- |
| Número do comando | 1071 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
index 3fbcdbfd2eba45..2a8eea47fb59ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1069 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
index 57738696088935..73a3d32240d365 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número do comando | 894 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
index e633a2b34e3cc1..08a10afd388b0b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ O título de um botão imagem é guardado em forma de mensagem de ajuda. Este t
| | |
| --- | --- |
| Número do comando | 1182 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
index 6b5fa921f31c32..d9893526d1a771 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-horizontal-alignment.md
@@ -61,6 +61,6 @@ Os objetos de formulário aos quais se pode aplicar alinhamento são os seguinte
| | |
| --- | --- |
| Número do comando | 707 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
index 810004d65c37e1..2aeff68de83c7e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Pode comparar o valor devolvido pelo comando com as seguintes constantes, que se
| | |
| --- | --- |
| Número do comando | 1247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
index 5fb93f35984465..61096d03400cd0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ O comando devolve uma cadeia indicando o código da linguagem utilizada, baseado
| | |
| --- | --- |
| Número do comando | 1180 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
index f5bd040cc9617c..09de3cbd9920c1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-name.md
@@ -43,6 +43,6 @@ Se nenhuma lista do tipo definido está associada ao *objeto*, o comando devolve
| | |
| --- | --- |
| Número do comando | 1072 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
index 37783c631ef12e..d731bf2bbdbfc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-list-reference.md
@@ -43,6 +43,6 @@ Se não há uma lista hierárquica associada ao objeto para o *tipoLista* defini
| | |
| --- | --- |
| Número do comando | 1267 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
index af21f520e1539e..ad380208611dbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1245 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
index 7f2428db8dfa8e..16509f561bd4ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1243 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
index 524d1c4c7eb8c6..98c8336a5bfc25 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-multiline.md
@@ -43,6 +43,6 @@ O valor devolvido corresponde a uma das seguintes constantes do tema "*Proprieda
| | |
| --- | --- |
| Número do comando | 1254 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
index 24d6124cf84e9d..0358e114d7fa83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Depois da execução deste método objeto, a variável *$btnName* contém o valo
| | |
| --- | --- |
| Número do comando | 1087 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
index 277b0f81887cb1..19c03c6e43b19f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Se quer receber o texto do marcador de campo:
| | |
| --- | --- |
| Número do comando | 1296 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
index 4774e96fb5d30a..0d08564586ded9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-pointer.md
@@ -61,6 +61,6 @@ Dado um formulário "SF" utilizado duas vezes como sub-formulário no mesmo form
| | |
| --- | --- |
| Número do comando | 1124 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
index 74f1ba1c6f0638..61c606232e9ad3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-print-variable-frame.md
@@ -41,6 +41,6 @@ Se o *objeto* é um sub formulário e se a impressão em tamanho variável está
| | |
| --- | --- |
| Número do comando | 1241 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
index 1b75dde2dcab80..43794e702c9b07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ O parâmetro *vertical* devolve um valor indicando a opção de redimensionament
| | |
| --- | --- |
| Número do comando | 1176 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
index 6f870415be94f7..f6f70a538179b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Para obter mais informação sobre do formato dos parâmetros *corPrimeiroPlano*
| | |
| --- | --- |
| Número do comando | 1074 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
index 651a3ffb44a0e3..aad02be556e0bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Se *objeto* designa uma imagem (variável ou campo), *vPosição* retorna o movi
| | |
| --- | --- |
| Número do comando | 1114 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
index bdd9f1f27f822b..f2f60e869e2c3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-scrollbar.md
@@ -49,6 +49,6 @@ Para obter mais informação, consulte a descrição do comando [OBJECT SET SCRO
| | |
| --- | --- |
| Número do comando | 1076 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
index c29e73135cf1ef..0680f620f9e2ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-shortcut.md
@@ -47,6 +47,6 @@ Se nenhuma tecla de modificação foi definida para o atalho, modificadores devo
| | |
| --- | --- |
| Número do comando | 1186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
index a4168e8b17971a..6a5d95080e7468 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-style-sheet.md
@@ -52,6 +52,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1258 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
index cf832304c45c7b..ec504667ffa601 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-size.md
@@ -38,6 +38,6 @@ O evento On Resize é gerado no método formulario de subformulário se o objeto
| | |
| --- | --- |
| Número do comando | 1148 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
index 953360ebdbfa09..4b83c6f2c5a5b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número do comando | 1785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
index c7d6c8646aa793..8ae7822fd2632d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-subform.md
@@ -46,6 +46,6 @@ Se não houver formulário lista, uma string vazia é devolvida no parâmetro *s
| | |
| --- | --- |
| Número do comando | 1139 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
index 091911132a4699..d93511891c69c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Quando se executa o formulário, é chamada a seguinte declaração:
| | |
| --- | --- |
| Número do comando | 1283 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
index 67dcf5ca559a2a..07478df0ac6318 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ A propriedade "Três estados" se pode definir seja usando a lista de propriedade
| | |
| --- | --- |
| Número do comando | 1250 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
index 31b68882ab6f09..2f4c0a7153af99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-title.md
@@ -36,6 +36,6 @@ Se passar o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nom
| | |
| --- | --- |
| Número do comando | 1068 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
index 5b39ad299c5c7b..7e0233f8a7de44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1300 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
index d2b825e7320360..01e0503c9f0b27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Ver o exemplo para o comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número do comando | 1743 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
index e198154f386e0c..c0c0b4c7b63ddc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ O alinhamento vertical pode ser aplicado aos seguintes tipos de objetos de formu
| | |
| --- | --- |
| Número do comando | 1188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
index fb771dc9abd231..1261ecd76ba132 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nome
| | |
| --- | --- |
| Número do comando | 1075 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
index c9513357754e67..c0ce9cee1bd358 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Um formulário contém um campo representado por dois objetos diferentes, um dos
| | |
| --- | --- |
| Número do comando | 1261 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
index c9e58fb9ce6934..0dfef8ebb8225b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-move.md
@@ -72,6 +72,6 @@ A seguinte instrução move o botão “botão\_1” as seguintes coordenadas (1
| | |
| --- | --- |
| Número do comando | 664 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
index d6972fea9ea921..0f19867fff73e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-action.md
@@ -95,6 +95,6 @@ Se quiser associar a ação padrão **Validate** com um botão:
| | |
| --- | --- |
| Número do comando | 1259 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
index 21e9373c6ea4d5..66eb19abea51b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Passe **True** em *correAuto* para ativar esta função para objeto e **False**
| | |
| --- | --- |
| Número do comando | 1173 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
index 3841fbb06ac4f0..d56b4a831036dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ No parâmetro *estiloBorde*, passe o valor do estilo da linha fronteira que dese
| | |
| --- | --- |
| Número do comando | 1262 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
index 9535970b5d5263..d4a05e35d4c28e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Passe **True** no parâmetro *menuContext* para ativar o menu contextual, e **Fa
| | |
| --- | --- |
| Número do comando | 1251 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
index b0e88beec16117..0c615333c0f2ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ A seguinte declaração localiza oi objeto "button\_1" nas coordenadas (10,20) (
| | |
| --- | --- |
| Número do comando | 1248 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
index 27be4a5ad4b10f..47d7817c1ece12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-corner-radius.md
@@ -70,6 +70,6 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner
| | |
| --- | --- |
| Número do comando | 1323 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
index 4c161fdde61d75..0a9ba529220231 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Mudança da fonte de dados para uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1264 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
index a478cf3c6cd33b..c9688328cb8478 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Definição de uma área de texto em arrastar e soltar auto:
| | |
| --- | --- |
| Número do comando | 1183 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
index 4fd862752acf52..e060e8c95a3ff2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1123 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
index bf868f70c3796f..2859509d7e3584 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Este é o método de objeto de uma caixa de seleção localizada no cabeçalho d
| | |
| --- | --- |
| Número do comando | 238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
index fa0545ec89c2fa..6194c6e85a21b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-events.md
@@ -111,6 +111,6 @@ Desativação de um só evento do formulário sem modificar os outros:
| | |
| --- | --- |
| Número do comando | 1239 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
index 081525f9855e3f..cafdf4a81aa434 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ O exemplo a seguir permite unicamente a entrada das letras “a,” “b,” “
| | |
| --- | --- |
| Número do comando | 235 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
index 0c95898c6f01fe..e01216be2ac070 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -35,6 +35,6 @@ Passe **True** no parâmetro *invisível* para ocultar o retângulo de foco e **
| | |
| --- | --- |
| Número do comando | 1177 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
index 0633c2e5b940e1..90dfef22398d90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-size.md
@@ -57,6 +57,6 @@ O exemplo a seguir define o tamanho de fonte para todos os objetos de formulári
| | |
| --- | --- |
| Número do comando | 165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
index 39665217ea3fff..1f3daa6907ded9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font-style.md
@@ -59,6 +59,6 @@ Este exemplo define o estilo de fonte Plain para todos os objetos de formulário
| | |
| --- | --- |
| Número do comando | 166 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
index 6b3b7ed44e00ef..459217e506377e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ O seguinte exemplo utiliza a opção especial *%password*, desenhada para a entr
| | |
| --- | --- |
| Número do comando | 164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
index 1c2b571fe0b448..a3e3d1ce0eb3a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-format.md
@@ -373,6 +373,6 @@ Passe um termômetro ao modo "Barber shop"
| | |
| --- | --- |
| Número do comando | 236 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
index f1b28b51ad97b6..322998a2756b70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-help-tip.md
@@ -135,6 +135,6 @@ O resultado é...
| | |
| --- | --- |
| Número do comando | 1181 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
index 2a9a96a7927976..e94c1fb7e4633d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-horizontal-alignment.md
@@ -59,6 +59,6 @@ Os objetos de formulário aos quais pode aplicar este comando são os seguintes:
| | |
| --- | --- |
| Número do comando | 706 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
index 776b08b8ed0bdf..e0e3ff3106932f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ No parâmetro *indicador*, passe o tipo de indicador a mostrar. Pode utilizar um
| | |
| --- | --- |
| Número do comando | 1246 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
index 8cca80fb091200..02ed0b5636e77e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ Em *codigoLing*, passe uma cadeia indicando o código de linguagem a utilizar, b
| | |
| --- | --- |
| Número do comando | 1179 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
index 7800adade5c043..858372de45ea45 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-name.md
@@ -99,6 +99,6 @@ Você quer eliminar a lista de associações:
| | |
| --- | --- |
| Número do comando | 237 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
index 3ea1aa9fe11c0a..f568b2ca8d6456 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-list-by-reference.md
@@ -134,6 +134,6 @@ Com o propósito de atualizar a lista associada ao pop-up gerenciado por array,
| | |
| --- | --- |
| Número do comando | 1266 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
index e4b2e90a999b31..70dee6955b19b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ Em *valorMax*, passe o novo valor máximo que deseja atribuir ao objeto para o p
| | |
| --- | --- |
| Número do comando | 1244 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
index ef5eed1c6c34a4..865e68b301d874 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ Em *valorMinimo*, passe o novo valor mínimo a atribuir ao objeto para o process
| | |
| --- | --- |
| Número do comando | 1242 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
index 5e853697a8c5ae..5232fcb545ba2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ Você quer proibir várias linhas em uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1253 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
index 52a9b04de24ab0..99105d45e607b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Você quer mostrar o texto "Buscar" um combo box:
| | |
| --- | --- |
| Número do comando | 1295 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
index 5810ede217ffcb..5cdbdc8e0cfe75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-print-variable-frame.md
@@ -46,6 +46,6 @@ O parâmetro opcional *subformFixo* lhe permite configurar uma opção adicional
| | |
| --- | --- |
| Número do comando | 1240 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
index 933f730c4c05bc..8cf624dede655b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-resizing-options.md
@@ -48,6 +48,6 @@ No parâmetro *vertical*, passe um valor que indique a opção de redimensioname
| | |
| --- | --- |
| Número do comando | 1175 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
index 2b1efdeef96db4..cc68127d241d23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-rgb-colors.md
@@ -110,6 +110,6 @@ Muda o fundo transparente com uma cor de fonte clara:
| | |
| --- | --- |
| Número do comando | 628 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
index a6ace0fc6b72fe..f1ce31eee66569 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scroll-position.md
@@ -96,6 +96,6 @@ Tenha a certeza de não omitir o segundo parâmetro *\** neste caso, caso contr
| | |
| --- | --- |
| Número do comando | 906 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
index 2088077ff867bf..f9dcf0f1fdde94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-scrollbar.md
@@ -49,6 +49,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos indicando s
| | |
| --- | --- |
| Número do comando | 843 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
index d5a15c1c696768..7fb549651e8534 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-shortcut.md
@@ -94,6 +94,6 @@ Você quer associar um atalho de teclado diferente em função da linguagem atua
| | |
| --- | --- |
| Número do comando | 1185 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
index abf463649a34dd..0e576f64404daa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1257 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
index 4b47ab001e3a66..687e654615a357 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número do comando | 1784 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
index efcd4365cc9b81..2df29ad959618f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-subform.md
@@ -48,6 +48,6 @@ Quando modifica um sub-formulário página, o comando pode executar-se em qualqu
| | |
| --- | --- |
| Número do comando | 1138 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
index 3bd887841c22b2..2c2bac421672c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-text-orientation.md
@@ -55,6 +55,6 @@ Deseja aplicar uma orientação de 270° a uma variável em seu formulário:
| | |
| --- | --- |
| Número do comando | 1284 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
index f74d6f16cfae43..7359255a1b00c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ No parâmetro *tresEsta*, passe **True** para ativar o modo "três estados", ou
| | |
| --- | --- |
| Número do comando | 1249 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
index 65791437e7aab3..41a71eae39e49b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-title.md
@@ -72,6 +72,6 @@ Você quer inserir os títulos em duas linhas:
| | |
| --- | --- |
| Número do comando | 194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
index d7bba722ade4f0..0b6a2b3551b218 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Se quiser o valor da data source de um objeto formulário, obtenha seu nome e es
| | |
| --- | --- |
| Número do comando | 1742 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
index 14f5a2e57dc1eb..b0bbe745a7b1a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ A alienação vertical pode aplicar-se aos seguintes tipos de objetos de formul
| | |
| --- | --- |
| Número do comando | 1187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
index 5c722a2487ebb5..a18443962e70d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 603 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
index 565b8cf945d493..1a1169fd20c5dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Se quisermos duplicar e mudar o nome de um arquivo em sua própria pasta
| | |
| --- | --- |
| Número do comando | 1548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
index fee1ef99e1a45e..a621e2974915cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-many.md
@@ -31,7 +31,7 @@ OLD RELATED MANY muda a seleção da tabela relacionada e seleciona o primeiro r
| | |
| --- | --- |
| Número do comando | 263 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
index e6c0144767d232..e60fc3b02dea35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 44 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
index a7b2a792ecb7b5..76e0f84e350d5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/old.md
@@ -45,6 +45,6 @@ Para restaurar o valor original de um campo, atribua-lhe o valor retornado por O
| | |
| --- | --- |
| Número do comando | 35 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
index 5056ad19e6303e..423367e007eaa2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-err-call.md
@@ -191,6 +191,6 @@ O método abaixo de gestão de erros ignora as interrupções de usuário e most
| | |
| --- | --- |
| Número do comando | 155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
index 22a83179f97f2b..c85eb7a1687d2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-event-call.md
@@ -112,7 +112,7 @@ Se um relatório for impresso utilizando [PRINT SELECTION](print-selection.md "P
| | |
| --- | --- |
| Número do comando | 190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
index 0efa560a6e6ade..f93fc55a62f24d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/on-server-open-connection-database-method.md
@@ -133,6 +133,6 @@ O seguinte exemplo evita uma nova conexão entre as 2 e 4 A.M.
| | |
| --- | --- |
| Número do comando | 16001 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
index c2ac171918cf72..2eb7046383ed68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/one-record-select.md
@@ -37,7 +37,7 @@ Aviso: lembre que um número de registro pode ser reutilizado se o registro for
| | |
| --- | --- |
| Número do comando | 189 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
index e617984d420052..b883beb6f9a728 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Se o comando foi executado corretamente, a variável de sistema OK é definida c
| | |
| --- | --- |
| Número do comando | 1047 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
index e0a2f037ab70fe..d2bb812cbe8701 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Se a cor mudou, o evento formulário On After Edit é gerado para o objeto.
| | |
| --- | --- |
| Número do comando | 1304 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
index 28ad8e3b8b809f..ba4e19e038db4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ No contexto de implementação de uma aplicação fusionada, se quiser abrir ou
| | |
| --- | --- |
| Número do comando | 312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
index af7e17e0800cea..160c067c73b292 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-database.md
@@ -77,6 +77,6 @@ Se quiser selecionar um servidor no início desde uma aplicação monousuário.
| | |
| --- | --- |
| Número do comando | 1321 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
index 04af9333f2ed1d..e93bf442f2c2f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-document.md
@@ -103,7 +103,7 @@ Se passa o valor 3 em *modo*, a função retorna ?00:00:00? (sem referência de
| | |
| --- | --- |
| Número do comando | 264 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
index 791f7cfad2e50f..45910a799db120 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Abaixo o código do botão:
| | |
| --- | --- |
| Número do comando | 1303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
index 0e41ba8fd1c170..8d13a27310c357 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-form-window.md
@@ -140,6 +140,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 675 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
index e07309a725d5d6..3e7d872e1ab9f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ A variável sistema OK se estabelece em 1 se o trabalho de impressão foi aberto
| | |
| --- | --- |
| Número do comando | 995 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
index 19dfa31b5e2181..752bb93ffa6f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-resource-file.md
@@ -105,7 +105,7 @@ Se o arquivo de recursos não puder ser aberto por um problema do recurso ou de
| | |
| --- | --- |
| Número do comando | 497 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
index 294e22b3f11160..b0fb698cd8c68f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
index 3ea2921c9ecd50..9a5a878c0ef1ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependendo dos privilegios de acesso do usuário atual, certas funções dispon
| | |
| --- | --- |
| Número do comando | 1018 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
index 5ca57cfdeb5858..a9d88d3f3bcc22 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-settings-window.md
@@ -171,7 +171,7 @@ Se a caixa de diálogo Preferências/Propriedades é validada, a variável siste
| | |
| --- | --- |
| Número do comando | 903 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
index ead62a70e25a12..61c733d294863d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-url.md
@@ -84,6 +84,6 @@ Pode abrir um arquivo texto com diferentes aplicações:
| | |
| --- | --- |
| Número do comando | 673 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
index 9c494b25da5e85..f590dfabe73cbf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/open-window.md
@@ -142,6 +142,6 @@ Este exemplo ilustra o mecanismo de “atraso” de mostrar janelas em macOS:
| | |
| --- | --- |
| Número do comando | 153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
index 939c6a13482ac5..9fb28cf11c8c27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Os registros estão na seguinte ordem:
| | |
| --- | --- |
| Número do comando | 1407 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
index 5cb4f7f199ca09..94e4d0ed91a626 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by-formula.md
@@ -51,7 +51,7 @@ Este exemplo ordena os registros da tabela \[Pessoas\] em ordem descendente, bas
| | |
| --- | --- |
| Número do comando | 300 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
index 671e1ebda15f94..b1f17374a75e16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/order-by.md
@@ -210,7 +210,7 @@ Sem importar como se defina a ordenação, se a operação de ordenação vai a
| | |
| --- | --- |
| Número do comando | 49 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
index b8f833fba9d4f4..e6a93d94e1b744 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **Outside call,** tenha certeza de qu
| | |
| --- | --- |
| Número do comando | 328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
index 4c68e4378a28ab..0b395fa4066426 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 6 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
index 5a23faa1615574..f711c4fc131770 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/parse-formula.md
@@ -112,6 +112,6 @@ O parâmetro opcional *mensagemE* *rro* receberá uma mensagem de erro se houver
| | |
| --- | --- |
| Número do comando | 1576 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
index dd1cc09df259b8..97f652b0ed99cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pasteboard-data-size.md
@@ -96,7 +96,7 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 400 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
index da89f3af40ad59..2831ed98866b59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/path-to-object.md
@@ -179,6 +179,6 @@ Se quiser saber a quantidade de subpastas em uma rota:
| | |
| --- | --- |
| Número do comando | 1547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
index c6f93c72b8319a..0a68bf9ca21023 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-indexes.md
@@ -53,6 +53,6 @@ Exemplo de método de importação massivo de dados:
| | |
| --- | --- |
| Número do comando | 1293 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
index 4c39710196130b..1eaec5dbee77c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Quando se suspende a execução de um processo, as janelas que pertencem a este
| | |
| --- | --- |
| Número do comando | 319 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
index a65f7c99bd195c..02c92d96e3360a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-execute.md
@@ -287,6 +287,6 @@ Para obter mais informação sobre a função trim, por favor, consulte a docume
| | |
| --- | --- |
| Número do comando | 1058 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
index 2cc5c7419100f2..e05b1393dab396 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-full-response.md
@@ -45,6 +45,6 @@ Dado que os intercâmbios entre 4D e o intérprete PHP se realizam através de F
| | |
| --- | --- |
| Número do comando | 1061 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
index d0d661c3b4861b..15914b09abe576 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-get-option.md
@@ -43,6 +43,6 @@ Passe no parâmetro *opção* uma constante do tema "*PHP*" para designar a opç
| | |
| --- | --- |
| Número do comando | 1060 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
index 666d69703c55cc..20c8126dd1228c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/php-set-option.md
@@ -46,6 +46,6 @@ Como padrão, PHP SET OPTION define a opção para todas as chamadas a [PHP Exec
| | |
| --- | --- |
| Número do comando | 1059 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
index 688fe3ada5d47a..de66eb16305d4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Por padrão, se não passa o parâmetro *\**, o comando devolve unicamente os co
| | |
| --- | --- |
| Número do comando | 992 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
index fbe8606c93683d..2aca2086fb3e46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-library-list.md
@@ -98,6 +98,6 @@ O exemplo a seguir exporta a biblioteca de imagens a um documento armazenado no
| | |
| --- | --- |
| Número do comando | 564 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
index 95e7c1dd3fc993..34ec590ede50c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Os parâmetros *hDesp*, *vDesp*, e *modo* devolvem as posições horizontal e ve
| | |
| --- | --- |
| Número do comando | 457 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
index 3f3e6f9a9213d5..74784c79b25ed8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 356 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
index 52cf99d547cf8c..c45372a023304a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/picture-to-blob.md
@@ -56,7 +56,7 @@ Se quiser converter uma imagem de um formato proprietário a formato GIF e mostr
| | |
| --- | --- |
| Número do comando | 692 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
index 0ac76861501fcf..c10d9e182b4fae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/play.md
@@ -63,6 +63,6 @@ O código de exemplo abaixo reproduz um som do sistema em macOS:
| | |
| --- | --- |
| Número do comando | 290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
index 45960f1281587d..d4c348ecca6b8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LIST leva todos os plug-ins em consideração, incluindo aqueles que est
| | |
| --- | --- |
| Número do comando | 847 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
index ba088dfc861065..b756042a797709 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-record.md
@@ -39,7 +39,7 @@ O exemplo a seguir recupera o registro de um cliente na pilha:
| | |
| --- | --- |
| Número do comando | 177 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
index 80d33042c501c0..7a3f3be55625e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/pop-up-menu.md
@@ -123,6 +123,6 @@ O próximo é o menu pop-up tal como aparece em Windows (esquerda) e Macintosh (
| | |
| --- | --- |
| Número do comando | 542 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
index 58bf867ba1d6c0..dde5a435cec962 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/position.md
@@ -123,6 +123,6 @@ No exemplo abaixo, se quiser encontrar todas as instâncias de uma string e subs
| | |
| --- | --- |
| Número do comando | 15 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
index cee42b92f0732b..b89a3853587f52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Se especificar o parâmetro processo *processo*, o clique é enviado ao processo
| | |
| --- | --- |
| Número do comando | 466 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
index 9eb57590e65540..955caef9a4309b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-event.md
@@ -77,6 +77,6 @@ Se passa o parâmetro *processo,* o evento é enviado através do processo cujo
| | |
| --- | --- |
| Número do comando | 467 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
index 6a4c3263103f35..5a64a7d84dce84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ Ver exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 465 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
index 2d867e592ba8f8..d2bc1f3ecd1d63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/post-outside-call.md
@@ -46,7 +46,7 @@ Ver o exemplo de [On Exit Database Method](metodo-banco-de-dados-on-exit.md "On
| | |
| --- | --- |
| Número do comando | 329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
index 8f12c40a059eb4..2b88f9aefc2ea1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Se PREVIOUS RECORD move o ponteiro do registro atual antes da seleção atual, B
| | |
| --- | --- |
| Número do comando | 110 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
index c87f7163b09a7a..5a8fb74669b9fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-label.md
@@ -111,7 +111,7 @@ O exemplo a seguir lhe permite ao usuário efetuar uma pesquisa na tabela \[Pess
| | |
| --- | --- |
| Número do comando | 39 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
index a65ffb9f1f3721..897eacc0859800 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-object.md
@@ -101,6 +101,6 @@ Exemplo de impressão de um list box completo:
| | |
| --- | --- |
| Número do comando | 1095 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
index b3a3697243cd33..d21c437b4d5a1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ Toda a informação devolvida por estes comandos é fornecida pelo sistema opera
| | |
| --- | --- |
| Número do comando | 785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
index 54d10dfbaf857f..81335db8e5278e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-record.md
@@ -70,6 +70,6 @@ O exemplo a seguir imprime o mesmo registro atual em dois formulários diferente
| | |
| --- | --- |
| Número do comando | 71 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
index 0610af75e6a3ae..f28b1b01681af7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-selection.md
@@ -66,7 +66,7 @@ O exemplo a seguir seleciona todos os registros na tabela \[Pessoas\]. O comando
| | |
| --- | --- |
| Número do comando | 60 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
index c7961d05b10c3d..30b253805a77f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings-to-blob.md
@@ -59,6 +59,6 @@ Se quiser armazenar a configuração de impressão atual no disco:
| | |
| --- | --- |
| Número do comando | 1433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
index 25a0b8da5bf21e..2efc7f3f9f9ad0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Se o usuário clicar em OK em ambas caixas de diálogo, a variável sistema OK t
| | |
| --- | --- |
| Número do comando | 106 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
index 6f66367677f1c5..8879e69d783fa5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 789 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
index f9b858b3aa08fe..14b69068cb718c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ O exemplo a seguir muda a posição dos números de página em um relatório de
| | |
| --- | --- |
| Número do comando | 275 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
index 6634f09802c106..b476ed3823ddc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-4d-tags.md
@@ -87,6 +87,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número do comando | 816 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
index f7ccd99444f604..fa1e5e8508f760 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este status acontece muito raramente. Processos são geralmente parados antes do
| | |
| --- | --- |
| Número do comando | 672 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
index 6489f0598e0187..78f32faa292cc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ O seguinte exemplo coloca o nome e número de referencia para cada processo nos
| | |
| --- | --- |
| Número do comando | 330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
index f6832d683f46b9..8beca2437695dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ O seguinte exemplo empilha o registro de um cliente:
| | |
| --- | --- |
| Número do comando | 176 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
index d1a6d9f89c3ea7..adacd83fc503d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ A instrução a seguir recupera o relatório rápido armazenado em Campo4 e o mo
| | |
| --- | --- |
| Número do comando | 771 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
index 48a57f342c5973..7dec2f46ab47d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ O código a seguir permite adicionar uma coluna adicional à direita da última
| | |
| --- | --- |
| Número do comando | 764 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
index efeaafb6d30601..fbd0b56dfff513 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ O exemplo a seguir garante de que o relatório seja listado e apaga a terceira c
| | |
| --- | --- |
| Número do comando | 749 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
index 1ae84577909950..15483c1dc8f7e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 754 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
index a7824e2679ed5e..d25500c416fe84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-execute-command.md
@@ -48,7 +48,7 @@ Se passa um número de *comando* incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 791 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
index 2a400f8f82811d..c700b53ff1fc61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-find-column.md
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número do comando | 776 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
index d3cdba83dcb16c..342829cb3f3351 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-area-property.md
@@ -39,7 +39,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 795 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
index 9626480e3d51c6..d34dba28c419ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-borders.md
@@ -73,7 +73,7 @@ Se o parâmetro *borda* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 798 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
index 68437b94e7fa2f..97c48a147a7584 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-command-status.md
@@ -42,7 +42,7 @@ Se o parâmetro *comando* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 792 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
index 0475378dff8635..0c831a9e438e7b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 756 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
index 42b706ca62632f..e7c16661bdf958 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-document-property.md
@@ -52,6 +52,6 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 773 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
index 6b290a38441259..987ead7ec9fe19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 747 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
index 37258962e7e161..6a0cce5d6d2d0c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ O código a seguir recupera o conteúdo e a altura do título do cabeçalho e os
| | |
| --- | --- |
| Número do comando | 775 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
index a38a5134cf0a2c..1cbd84a30ad73c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 751 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
index 15b919e0766cae..3a6daeac612775 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-column.md
@@ -117,7 +117,7 @@ Pode escrever:
| | |
| --- | --- |
| Número do comando | 766 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
index 5e5435a88485e1..40f8e265fa8452 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-info-row.md
@@ -44,7 +44,7 @@ Se o parâmetro *linha* é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 769 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
index 6c4c722a4aa396..dd0e0231823494 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-kind.md
@@ -40,7 +40,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 755 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
index 64e72a2c114549..d88c418ed1704f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 758 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
index a4070bcdf7a487..c88a7661462d63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 793 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
index 620cba93fe01ab..20893124c66c19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-sorts.md
@@ -40,7 +40,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 753 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
index 007f900e494c37..c03e719ee4957d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-text-property.md
@@ -73,7 +73,7 @@ Se o parâmetro *propriedade* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 760 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
index 328ca001b1f04a..2bd46e88f5ffd3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-data.md
@@ -77,7 +77,7 @@ Se o parâmetro *numQuebra* é incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 768 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
index c219a931aa3ed2..628a44cb15e432 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ Se o parâmetro *subtotal* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
index 7273fd494986c0..6c2f78768c737c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ A seguinte instrução insere (ou cria) uma primeira coluna na área MinhaArea,
| | |
| --- | --- |
| Número do comando | 748 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
index d27694c61532ba..381d0a4b7b1798 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ O resultado será:
| | |
| --- | --- |
| Número do comando | 1325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
index 6036e7677c8e92..d967c3e5a3d807 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1320 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
index fc741513590068..a10c592ff61992 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 735 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
index 9e5c1919e16d10..06a74e1b49fc0d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-on-command.md
@@ -47,7 +47,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 790 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
index d5adc3a0c95404..910c3ba5cf119c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ A seguinte instrução atribui o relatório rápido armazenado na área MinhaAre
| | |
| --- | --- |
| Número do comando | 770 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
index 754d8acdc78420..1645d40627465e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-report.md
@@ -140,7 +140,7 @@ O método myCallbackMeth converte o relatório quando é gerado:
| | |
| --- | --- |
| Número do comando | 197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
index bed46f737a2ed2..8923d36026ca66 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 746 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
index a00e288a2e0119..8ad2be36747ac4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-area-property.md
@@ -47,7 +47,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 796 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
index 13e1cacb3da997..0eb3322728dd29 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-borders.md
@@ -77,7 +77,7 @@ Se o parâmetro *largura* é incorreto, se gera o erro -9855.
| | |
| --- | --- |
| Número do comando | 797 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
index 3782bad224a85b..14048fab4c289d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-destination.md
@@ -58,7 +58,7 @@ O código a seguir define o arquivo texto Midoc.txt como tipo de destino do rela
| | |
| --- | --- |
| Número do comando | 745 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
index b54001ee4c1455..94d89e1b8ada02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-document-property.md
@@ -41,7 +41,7 @@ Se passa um valor incorreto do parâmetro propriedade, se gera o erro -9852 ou -
| | |
| --- | --- |
| Número do comando | 772 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
index c7f08640a709f2..894af436698462 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ A seguiete instrução coloca o título “Título do centro” no cabeçalho do
| | |
| --- | --- |
| Número do comando | 774 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
index 8465eae9e54f58..b929a1dda29427 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-html-template.md
@@ -79,7 +79,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 750 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
index edf846974bb8ab..cc3766a398e27d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-column.md
@@ -113,7 +113,7 @@ Se o parâmetro *numColuna* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 765 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
index 3b5b887f880e55..6f9bdea021e583 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-info-row.md
@@ -55,7 +55,7 @@ A instrução a seguir oculta o conteúdo da linha detalhe:
| | |
| --- | --- |
| Número do comando | 763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
index 7b581dfa1b11c7..696d14a8acca15 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-kind.md
@@ -44,7 +44,7 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 738 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
index b461c065c18dc8..ebaa32102bbd5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-report-table.md
@@ -33,7 +33,7 @@ Se o parâmetro *tabela* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 757 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
index 7e3d0e91f0d167..bc795e33ea9040 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-selection.md
@@ -41,7 +41,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 794 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
index ba08f0b983f8c1..d2b0fcd9df5323 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-sorts.md
@@ -53,7 +53,7 @@ Se passa um número de área *inválido*, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 752 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
index 1a129716bec3dc..66e85bab218773 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Este método define vários atributos para o título da primeira coluna:
| | |
| --- | --- |
| Número do comando | 759 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
index 5f3dfee1870b0d..8731827c3ca37d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-data.md
@@ -104,7 +104,7 @@ Se o parâmetro *numQuebra* for incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 767 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
index b3331e2e63e5c0..22b25a20ec2cec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/qr-set-totals-spacing.md
@@ -44,7 +44,7 @@ Se o parâmetro *subtotal*, é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
index 24cea723b6e105..2030213c4070c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-attribute.md
@@ -412,7 +412,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 1331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
index c720b336d8dd03..cb2df0a88cff8c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ Se o usuário clicar no botão Aceitar, ou pressionar a tecla Enter, a variável
| | |
| --- | --- |
| Número do comando | 292 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
index 1f24520b19c10d..5657a95b6dddcf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-formula.md
@@ -86,7 +86,7 @@ Este exemplo utiliza uma união para buscar todas as linhas de faturas de client
| | |
| --- | --- |
| Número do comando | 48 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
index 3a53446e0a1e87..c6864029125e20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-by-sql.md
@@ -169,7 +169,7 @@ Se o formato da condição de pesquisa for correto, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 942 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
index 7c32338e544eb5..2725d26c3163a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ Se quiser encontrar pessoas com uma idade entre 20 e 30 nos registros que foram
| | |
| --- | --- |
| Número do comando | 1424 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
index 8b956aa2dab6a7..ab88e806228263 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Para maior informação, consulte a descrição do comando [QUERY BY FORMULA](qu
| | |
| --- | --- |
| Número do comando | 207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
index e9d682d5fae309..5a3bc9b25652fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Para maior informação, consulte a descrição do comando [QUERY WITH ARRAY](qu
| | |
| --- | --- |
| Número do comando | 1050 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
index 60cfb6633f5237..d5a6402c0ba8b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Isso faz com que encontre todas as empresas localizadas em Nova Iorque, com ativ
| | |
| --- | --- |
| Número do comando | 341 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
index 6a4ea8de46657e..484f9c80f0d5ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ O exemplo a seguir lhe permite recuperar os registros de clientes franceses e am
| | |
| --- | --- |
| Número do comando | 644 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
index f83c52cda5a8d8..32e3996901cffb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/query.md
@@ -316,7 +316,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
index 1b407bf746795b..809cfcc4cd1e23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/quit-4d.md
@@ -72,6 +72,6 @@ O método de projeto listado aqui está associado com o item Quit ou Exit do men
| | |
| --- | --- |
| Número do comando | 291 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
index 5a941fa13ccc26..14790443bfd7c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/random.md
@@ -39,6 +39,6 @@ O exemplo a seguir atribui um valor aleatório entre 10 e 30 à variável *vlRes
| | |
| --- | --- |
| Número do comando | 100 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
index 01c82f252bb92d..fb275179779c01 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only-state.md
@@ -44,6 +44,6 @@ O seguinte exemplo testa o estado da tabela \[Faturas\]. Se o estado da tabela \
| | |
| --- | --- |
| Número do comando | 362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
index 4108625dfef6b1..6a4640cf3faa64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Utilize READ ONLY quando não necessite modificar os registros.
| | |
| --- | --- |
| Número do comando | 145 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
index 818a61bb6a937f..7b4e802f4af27c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-picture-file.md
@@ -47,7 +47,7 @@ Se a execução do comando é correta, a variável sistema Document contém a ro
| | |
| --- | --- |
| Número do comando | 678 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
index ed68b5e30c1121..daa8d31b010290 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilize READ WRITE quando tenha que modificar um registro e guardar as mudanças
| | |
| --- | --- |
| Número do comando | 146 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
index 270fe59d69dd87..f5d537ea025ed5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/real-to-blob.md
@@ -138,6 +138,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 552 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
index 58f60de10a56c9..ce75be23e3ff53 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-buffer.md
@@ -70,7 +70,7 @@ Note que o acesso à variável interprocesso *vtBuffer* deve ser protegida por u
| | |
| --- | --- |
| Número do comando | 172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
index 41ca4c67ce14e5..2432b64b7298b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-packet.md
@@ -121,7 +121,7 @@ Depois de um chamado a RECEIVE PACKET, a variável sistema OK recebe o valor 1 s
| | |
| --- | --- |
| Número do comando | 104 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
index 55cfed8d211116..e8fe6bb679ed68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-record.md
@@ -157,7 +157,7 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK
| | |
| --- | --- |
| Número do comando | 79 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
index 62cfe7e1450e10..48d26ec5cbf051 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ A variável de sistema OK é definida como 1 se a variável for recebida. Caso c
| | |
| --- | --- |
| Número do comando | 81 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
index 080cf9065e7503..c7384f1329da03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ O exemplo a seguir salva o número do registro atual e depois procura na tabela
| | |
| --- | --- |
| Número do comando | 243 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
index 12eaa3ec46e3c3..b44ba3c6a7d33c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-selection.md
@@ -41,6 +41,6 @@ End for
| | |
| --- | --- |
| Número do comando | 76 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
index 825df14cb703d3..b4f3becb2dcd3f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ O seguinte exemplo mostra um alerta indicando a porcentagem de clientes classifi
| | |
| --- | --- |
| Número do comando | 195 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
index 68a89e92d7fe6b..7cef78f279490e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ O exemplo a seguir mostra um alerta que indica o número de registros na tabela:
| | |
| --- | --- |
| Número do comando | 83 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
index 94513ee91f071d..c08f0068ddfcd8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Se omitir o parâmetro *janela*, REDRAW WINDOW aplica à janela do primeiro plan
| | |
| --- | --- |
| Número do comando | 456 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
index 9b3dbc445e47ae..f7085deb8e9428 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ No contexto dos list boxes em modo seleção,quando a instrução REDRAW for apl
| | |
| --- | --- |
| Número do comando | 174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
index 63606e25b6087f..b332b629626f44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ O comando muda o estado da janela:
| | |
| --- | --- |
| Número do comando | 1829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
index 755a25adf4e559..e12efe8a5d6c7e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reduce-selection.md
@@ -61,7 +61,7 @@ O seguinte exemplo pesquisa as estatísticas corretas para uma concorrência mun
| | |
| --- | --- |
| Número do comando | 351 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
index 941de89ab89b1c..15a42802f57c28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Se quiser atualizar sua licença e receber uma mensagem quando se completar:
| | |
| --- | --- |
| Número do comando | 1336 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
index 70642eb8af46d1..e6458d3006b7d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Este método regenera todas as tabelas não encontradas eventualmente presentes
| | |
| --- | --- |
| Número do comando | 1126 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
index 8448ddb53963a4..6c439e62b88bef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-client.md
@@ -118,7 +118,7 @@ Se um cliente 4D está registrado corretamente, a variável do sistema OK é igu
| | |
| --- | --- |
| Número do comando | 648 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
index c4aca58bfed99d..f9e71d34d391c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ No primeiro parâmetro, passe *curPassPhrase* ou *curDataKey* que define a chave
| | |
| --- | --- |
| Número do comando | 1638 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
index ede7d9c51d896a..253cb046a42279 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Se quiser rejeitar ou aceitar as novas conexões de clientes:
| | |
| --- | --- |
| Número do comando | 1635 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
index 0663293cd90b7d..058d27215247a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reject.md
@@ -67,6 +67,6 @@ O seguinte exemplo é parte de um método de objeto para um campo *\[Empregados\
| | |
| --- | --- |
| Número do comando | 38 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
index 9edc759de17f65..d73d622e34fc0b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many-selection.md
@@ -41,7 +41,7 @@ Este exemplo seleciona todas as faturas de clientes com crédito superior ou igu
| | |
| --- | --- |
| Número do comando | 340 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
index cf9cbab1ccc7e8..26269cf98d76ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-many.md
@@ -72,7 +72,7 @@ Note que é necessário o comando RELATE MANY, mesmo que as relações sejam aut
| | |
| --- | --- |
| Número do comando | 262 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
index 9895d0226870f7..176401cce539a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one-selection.md
@@ -64,7 +64,7 @@ A seguinte técnica utiliza **RELATE ONE SELECTION** para obter o mesmo resultad
| | |
| --- | --- |
| Número do comando | 349 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
index e8ad729dffef2c..7a3e0b84b95cb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/relate-one.md
@@ -95,7 +95,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 42 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
index 0a5977ac1303d9..8d04d4f31ac3da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Este exemplo mostra as diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número do comando | 978 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
index bc940569239a7c..9db426924d9527 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ A continuação deve recarregar os dados utilizando o comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número do comando | 1135 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
index 8c498c54845b80..cf7f22fa8464f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Quando o comando for chamado de:
| | |
| --- | --- |
| Número do comando | 1739 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
index 8858662b71c060..c4e2cfaa6aa484 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 561 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
index 531f9f2b8de18e..ce50203c273ffb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/remove-picture-from-library.md
@@ -55,7 +55,7 @@ O exemplo a seguir apaga da biblioteca de imagens toda imagem cujo nome comece p
| | |
| --- | --- |
| Número do comando | 567 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
index d0e660575bf8f1..f2e7972ad4a898 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ O exemplo abaixo ilustra o uso do parâmetro \* no caso de uma avaliação diacr
| | |
| --- | --- |
| Número do comando | 233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
index b89c331545cf56..16dd728f720f9c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/request.md
@@ -84,7 +84,7 @@ Mostrará a seguinte caixa de diálogo (em Windows):
| | |
| --- | --- |
| Número do comando | 163 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
index 07bac0db162637..e5f53d6a5c9a2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resize-form-window.md
@@ -51,6 +51,6 @@ Depois da execução desta linha:
| | |
| --- | --- |
| Número do comando | 890 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
index c54b645f5567b3..dd98542883d7a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-alias.md
@@ -37,7 +37,7 @@ Se *rotaAlias* especifica um alias/atalho, a variável sistema OK assume o valor
| | |
| --- | --- |
| Número do comando | 695 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
index e67916dc0ab84e..1e9298b7220677 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resolve-pointer.md
@@ -114,6 +114,6 @@ Este é um exemplo de ponteiro a um array 2D:
| | |
| --- | --- |
| Número do comando | 394 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
index e227b40fcb133c..538856f9c66f38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ O exemplo a seguir copia os recursos imagem presentes em todos os arquivos de re
| | |
| --- | --- |
| Número do comando | 500 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
index d32a3167dc27f0..4669a4f0bb8e34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ Quando este método de projeto for implementado em um banco, pode escrever:
| | |
| --- | --- |
| Número do comando | 499 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
index a009df459f57e0..c625a6fad50f09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1, cas
| | |
| --- | --- |
| Número do comando | 1292 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
index 1a25e903ba4f9a..bdee2e25f347a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore-info.md
@@ -41,6 +41,6 @@ O tipo e o conteúdo dos parâmetros *info1* e *info2* dependem do valor do *sel
| | |
| --- | --- |
| Número do comando | 889 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
index 2305ca8eb3edec..6dec36e67c12ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/restore.md
@@ -39,7 +39,7 @@ Nota: em um aplicativo 4D compilado e fusionado com 4D Volume Desktop, o comando
| | |
| --- | --- |
| Número do comando | 918 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
index 01c38f04b6f8fb..a1725f89e81e14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D.
| | |
| --- | --- |
| Número do comando | 1294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
index e912723796234e..e11239086957cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Se *processo* foi atrasado anteriormente, consulte os comandos [PAUSE PROCESS](p
| | |
| --- | --- |
| Número do comando | 320 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
index b60f4f4c6c61d8..90dad76cb4665c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1386 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
index 558c8cddf256b0..de60796cb39780 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando deve ser utilizado unicamente no contexto do evento de formulário
| | |
| --- | --- |
| Número do comando | 712 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
index 9b2a4f8bbca70a..b916318b07dd1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/round.md
@@ -43,6 +43,6 @@ O exemplo a seguir ilustra como Round funciona com diferentes argumentos. Cada l
| | |
| --- | --- |
| Número do comando | 94 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
index f9776a5323e0a2..d84e6842376f8a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Seus conteúdos são substituídos se houver uma lista com o mesmo nome.
| | |
| --- | --- |
| Número do comando | 384 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
index 129e55889ce882..62d5c4580c9469 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ O exemplo a seguir é parte de um método que lê registros de um documento. Nes
| | |
| --- | --- |
| Número do comando | 53 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
index 4d5ac77f48f461..a143cd6ff75c9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONE não guardará um registro bloqueado. Quando utilize este coman
| | |
| --- | --- |
| Número do comando | 43 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
index 35237aa742398d..47fab03772dcbe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-set.md
@@ -48,7 +48,7 @@ Se o usuário clicar no botão Cancelar na caixa de diálogo de salvar arquivos,
| | |
| --- | --- |
| Número do comando | 184 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
index 64e90c3fc51d26..f62222b609afea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Se as variáveis são guardadas corretamente, a variável sistema OK assume o va
| | |
| --- | --- |
| Número do comando | 75 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
index 9acf029cb5aff2..687af29c3e1bb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-processing-instruction.md
@@ -51,7 +51,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 857 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
index 2851a02f448256..d28c65aa9622a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-cdata.md
@@ -81,7 +81,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 856 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
index 4183e85e6fcb1a..4be2b0912f76fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-comment.md
@@ -52,7 +52,7 @@ No caso de um erro, o comando devolve um erro que pode ser interceptado usando u
| | |
| --- | --- |
| Número do comando | 852 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
index ff006b54066754..67f5dad141daca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-doctype.md
@@ -52,7 +52,7 @@ Em caso de erro, o comando retorna um erro que possa ser interceptado usando um
| | |
| --- | --- |
| Número do comando | 851 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
index af95e9bc75a5b5..0a790746b957e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-add-xml-element-value.md
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 855 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
index 2030a3ad4d8948..64d77bd1cd2946 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ Se o último elemento aberto for **, a instrução abaixo:
| | |
| --- | --- |
| Número do comando | 854 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
index be3d9f40b1575f..da01ebfc265157 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 878 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
index bab6fcaa2b11b9..da0a21a86d5925 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 874 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
index d953f1ab0de676..f1e660ea76cc87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 873 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
index ccc8215dfdfa05..b8ba0ad4c81cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Ca
| | |
| --- | --- |
| Número do comando | 877 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
index 1f6a9f1ed0a6fe..18f71cf63e85e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 876 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
index 78523f2c695fa6..45656e19d1b9ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 879 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
index 766fb7507a62c0..db498f759a6e65 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 860 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
index e3d5a7fa15dda3..6d461907e45c2b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ A instrução abaixo devolverá “PI” em *vNom* e “TextProcess” em *vValo
| | |
| --- | --- |
| Número do comando | 875 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
index 1953574c739935..30ac483550ee57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 921 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
index c710a6cf21687f..ccaf8049c468ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-open-xml-element.md
@@ -57,7 +57,7 @@ Se passar em tag um caractere inválido, se gera um erro.
| | |
| --- | --- |
| Número do comando | 853 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
index 8025a371e6858f..a3f0a7f69668c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ O código abaixo:
| | |
| --- | --- |
| Número do comando | 858 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
index 692e5e1f813a04..2729f7ca898093 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/scan-index.md
@@ -57,7 +57,7 @@ O seguinte exemplo envia cartas aos 50 piores clientes e aos 50 melhores cliente
| | |
| --- | --- |
| Número do comando | 350 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
index 1a3042eba87c9e..0fb02807ca996a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ As imagens abaixo demostram as diferenças entre o tamanho da tela e a área de
| | |
| --- | --- |
| Número do comando | 438 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
index 1fc3b0ece745ac..9081bd5fda837c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ Sua aplicação mostra vários gráficos a cor. Pode escrever em alguma parte em
| | |
| --- | --- |
| Número do comando | 439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
index 30892339844ab0..09ffcfca0e4f91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Em Mac OS, Screen height devolve a altura da tela principal, ou seja a tela onde
| | |
| --- | --- |
| Número do comando | 188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
index b6f84e32ba1965..71b62009300a3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Em Macintosh, Screen width devolve o largo da tela principal, ou seja o largo da
| | |
| --- | --- |
| Número do comando | 187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
index bf14ed4dad33d9..b555103279d860 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-document.md
@@ -103,7 +103,7 @@ Se não for selecionado nenhum arquivo (por exemplo, se o usuário clicar no bot
| | |
| --- | --- |
| Número do comando | 905 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
index 60a59854a02d6d..f04faa4317c45d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-folder.md
@@ -95,7 +95,7 @@ O exemplo abaixo lhe permite selecionar a pasta na qual serão armazenadas as im
| | |
| --- | --- |
| Número do comando | 670 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
index 9e6ca62a7f1bda..dfc97cff05e7d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-position.md
@@ -78,6 +78,6 @@ São selecionados os elementos segundo, terceiro e quinto da lista hierárquica
| | |
| --- | --- |
| Número do comando | 381 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
index c5b7ac1dad0cd3..1ceabe51b3d9a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ Se trabalha com os números de referência dos elementos, tenha certeza de const
| | |
| --- | --- |
| Número do comando | 630 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
index e35f038b408902..e37cd4a1e5151e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/select-rgb-color.md
@@ -46,7 +46,7 @@ O efeito da validação desta caixa de diálogo muda dependendo da plataforma:
| | |
| --- | --- |
| Número do comando | 956 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
index 20bd3db7531272..18bb0cc0e3edc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-list-items.md
@@ -90,6 +90,6 @@ Esta é uma lista chamada *hList,* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 379 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
index 98123549011004..4f0fb786f7afa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ O seguinte exemplo guarda o número do registro atual da seleção em uma variá
| | |
| --- | --- |
| Número do comando | 246 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
index be9ed057e763c2..993034a57b19a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-range-to-array.md
@@ -114,6 +114,6 @@ Use os 50 primeiros registros atuais da tabela \[facturas\] para carregar vário
| | |
| --- | --- |
| Número do comando | 368 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
index 4260e54080038c..1d9b96b02d66ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ O mesmo exemplo pode ser escrito:
| | |
| --- | --- |
| Número do comando | 260 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
index fb08f9c47c6b84..89b19a82b7423e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/selection-to-json.md
@@ -97,6 +97,6 @@ Pode usar a sintaxe *modelo* para exportar campos de tabelas diferentes:
| | |
| --- | --- |
| Número do comando | 1234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
index d541db3734dea5..ae2aeb102f1df3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver o exemplo do comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER")
| | |
| --- | --- |
| Número do comando | 308 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
index 150ec16c078b29..82a3450ab9f477 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/semaphore.md
@@ -160,6 +160,6 @@ Sintaxe:
| | |
| --- | --- |
| Número do comando | 143 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
index 020275461c5a1a..6feef35f584220 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ You want to send a message to all users, then send a message to a specific user:
| | |
| --- | --- |
| Número do comando | 1632 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
index 96864af34ba099..7ad504a8526d87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-packet.md
@@ -88,6 +88,6 @@ Este exemplo ilustra o envio e recuperação de caracteres estendidos através d
| | |
| --- | --- |
| Número do comando | 103 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
index c4bfeecd7a37f7..228171d71276d7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ O registro completo é enviado. Isso significa que imagens e BLOBs armazenados o
| | |
| --- | --- |
| Número do comando | 78 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
index babb27a927346e..64644d3e6f02cc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Veja o exemplo para o comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD
| | |
| --- | --- |
| Número do comando | 80 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
index 041ca73ccd0f9c..c2d247866e2f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sequence-number.md
@@ -65,6 +65,6 @@ O exemplo a seguir é parte de um método de formulário. Estas linhas de códig
| | |
| --- | --- |
| Número do comando | 244 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
index 0c57b700c9dcf2..3555b6b97cb02f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ O exemplo abaixo reinicializa o comando de menu Sobre 4D:
| | |
| --- | --- |
| Número do comando | 316 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
index ee861138b88e3c..cce3296f25944e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ No parâmetro *esquemaCor*, passe um esquema de cores a aplicar:
| | |
| --- | --- |
| Número do comando | 1762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
index 5deae5a2fde741..fdff3d6bb9e9ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Desativação de asserções
| | |
| --- | --- |
| Número do comando | 1131 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
index 390200ecc448b7..c7ca44b8cb414b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ O exemplo a seguir torna automáticas todas as relações Muitos a Um e restabel
| | |
| --- | --- |
| Número do comando | 310 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
index 0408644f96e3a8..8501876b6357f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ O exemplo a seguir cria um BLOB de 16K cheios de 0xFF:
| | |
| --- | --- |
| Número do comando | 606 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
index 5e781c6b7cabea..bc7bc34e35f7e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ Em , se quiser definir uma prioridade alta para a tabela \[Customer\]:
| | |
| --- | --- |
| Número do comando | 1425 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
index bb1d7f31485b0b..9ab6523d8cba83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Se quiser adicionar 100 MB ao tamanho da cache de seu banco de ados atual. Pode
| | |
| --- | --- |
| Número do comando | 1399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
index 2c59763682f6b3..53a43b89993454 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-channel.md
@@ -175,7 +175,7 @@ Veja os exemplos para os comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BU
| | |
| --- | --- |
| Número do comando | 77 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
index 396093ebf31528..4f70dd197fc0ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-current-printer.md
@@ -60,7 +60,7 @@ Criação de um documento PDF em Windows:
| | |
| --- | --- |
| Número do comando | 787 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
index 9abbf381cc77cd..14e86366b5399f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-cursor.md
@@ -42,6 +42,6 @@ Se quiser que o cursor seja exibido )\[#/code4D\]
| | |
| --- | --- |
| Número do comando | 919 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
index de78f15102e3ad..c14f0f8c7dcc83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-titles.md
@@ -66,6 +66,6 @@ Ver o exemplo do comando [SET TABLE TITLES](set-table-titles.md).
| | |
| --- | --- |
| Número do comando | 602 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
index 5185097731b586..610aa20e493404 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-field-value-null.md
@@ -34,6 +34,6 @@ O valor NULL é utilizado pelo motor SQL de 4D. Para maior informação, consult
| | |
| --- | --- |
| Número do comando | 965 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
index be49f23ca7a15f..287352471db6ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-file-to-pasteboard.md
@@ -33,6 +33,6 @@ O comando admite o asterisco *\** como parâmetro opcional. Automaticamente, qua
| | |
| --- | --- |
| Número do comando | 975 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
index 5160463b2d30d2..10234ae3d94266 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-access.md
@@ -50,7 +50,7 @@ Se quiser promover o usuário atual aos grupos "admin" e "plugins" durante a ses
| | |
| --- | --- |
| Número do comando | 1737 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
index c7b54af7ca0a51..f6d40797a5ff2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-group-properties.md
@@ -62,7 +62,7 @@ Se você não tiver os acessos de privilégio para chamar Set group properties o
| | |
| --- | --- |
| Número do comando | 614 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
index 55781c270c8a11..8c85caf3f1f942 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-help-menu.md
@@ -65,6 +65,6 @@ Se quiser personalizar o menu **Ajuda** de sua aplicação:
| | |
| --- | --- |
| Número do comando | 1801 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
index 6489f85a35f35d..ab7fe5e94c0490 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index-cache-priority.md
@@ -54,6 +54,6 @@ Em , se quiser estabelecer uma alta prioridade para os índices campo \[Customer
| | |
| --- | --- |
| Número do comando | 1401 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
index 2343edf4d1d55d..f131e23fd43fd6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-index.md
@@ -96,6 +96,6 @@ O exemplo abaixo indexa o campo *\[Clientes\]Num*:
| | |
| --- | --- |
| Número do comando | 344 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
index 0f97d4a257446c..441d5991643e96 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-font.md
@@ -50,6 +50,6 @@ Aplicar a fonte Times ao elemento atual da lista:
| | |
| --- | --- |
| Número do comando | 953 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
index 5dfad97bd5e137..3a90f779effeb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-icon.md
@@ -52,6 +52,6 @@ Queremos atribuir a mesma imagem a dois elementos diferentes. O seguinte código
| | |
| --- | --- |
| Número do comando | 950 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
index 252cd4e8f1eb89..913a6275cc0dbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-parameter.md
@@ -69,6 +69,6 @@ APPEND TO LIST($myList;ak standard action title;1)
| | |
| --- | --- |
| Número do comando | 986 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
index 50473a12b36a01..142c668cc7e95c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item-properties.md
@@ -85,6 +85,6 @@ O exemplo a seguir modifica o texto do elemento atual de *lista* negrito e verme
| | |
| --- | --- |
| Número do comando | 386 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
index abea7a48689e8e..0c5f016389d293 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-item.md
@@ -83,6 +83,6 @@ Ver exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 385 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
index 75671b04ce0235..b75ab92b52dfbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-list-properties.md
@@ -70,6 +70,6 @@ Se deseja recusar a sublista de expandir/contrair ao dar duplo clique, pode escr
| | |
| --- | --- |
| Número do comando | 387 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
index d6de072df27e2b..fcfbfebe467715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-macro-parameter.md
@@ -62,6 +62,6 @@ Esta macro cria um novo texto que será devolvido ao método que faz a chamada:
| | |
| --- | --- |
| Número do comando | 998 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
index 570f3f5facb957..ad405a330d060d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ Neste exemplo, criaremos por programação, uma barra de menus incluindo os segu
| | |
| --- | --- |
| Número do comando | 67 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
index 3f79bd6a1b3768..5817ba92bf9fee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-icon.md
@@ -49,6 +49,6 @@ Uso de uma imagem localizada na pasta Recursos do banco de dados:
| | |
| --- | --- |
| Número do comando | 984 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
index 2414ce389ef1a5..ead24816b800ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ Ver exemplo para o comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número do comando | 208 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
index 066f2f7a1dd46e..db56ec962e6a1f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-method.md
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 982 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
index ff42ac0c6dc0ff..0082471a7a341a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Este código oferece um menu que inclui os nomes das janelas abertas e permite r
| | |
| --- | --- |
| Número do comando | 1004 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
index e8858aca133090..ccda53fb2dcc6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-property.md
@@ -68,6 +68,6 @@ Proprierdade personalizada - Nesta propriedade pode passar qualquer texto person
| | |
| --- | --- |
| Número do comando | 973 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
index 917609c912dd2b..89f70324284603 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-shortcut.md
@@ -82,7 +82,7 @@ Definição do atalho\\shortcut para o item de menu "Close:
| | |
| --- | --- |
| Número do comando | 423 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
index c44ca3c8e2fa92..0eb92c000be840 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ No parâmetro *itemEstilo* pode definir o estilo do elemento. Passe uma combina
| | |
| --- | --- |
| Número do comando | 425 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
index 1c8889b0000543..3ddb26dd87ffa1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Se omitir o parâmetro *processo*, SET MENU ITEM é aplicada à barra de menus d
| | |
| --- | --- |
| Número do comando | 348 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
index 08724708fc07e6..096fb1aa712471 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ O nome por defeito se utiliza como nome de arquivo quando a imagem se exporta em
| | |
| --- | --- |
| Número do comando | 1172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
index 6072c79fe081b9..0ff3198ebfec61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-metadata.md
@@ -93,7 +93,7 @@ Quanto todos os metadados são manipulados via uma referência de elementos DOM,
| | |
| --- | --- |
| Número do comando | 1121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
index 458ed3480a54ad..94735f6dbb3cbb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-library.md
@@ -98,7 +98,7 @@ Se não houver suficiente memória para adicionar a imagem à biblioteca de imag
| | |
| --- | --- |
| Número do comando | 566 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
index 26869f8eada82d..477fad54c4a7d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-picture-to-pasteboard.md
@@ -54,7 +54,7 @@ Se não houver suficiente memória para colocar uma cópia da imagem na área de
| | |
| --- | --- |
| Número do comando | 521 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
index 587d200faabc56..dbb51debbfdc4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Passe no parâmetro *grupo* o nome do grupo cujos usuários estão autorizados a
| | |
| --- | --- |
| Número do comando | 845 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
index 19aaa57019010e..7283a24d6372b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-marker.md
@@ -192,6 +192,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número do comando | 709 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
index 34bd80231247b2..f3fa50f0ec796b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-option.md
@@ -86,7 +86,7 @@ Se o valor passado por uma *opção* é incorreto ou se não estiver disponível
| | |
| --- | --- |
| Número do comando | 733 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
index fcf698b84f585d..e8839e7c1b0857 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ O exemplo a seguir seleciona a opção Pré-visualização em tela para mostrar
| | |
| --- | --- |
| Número do comando | 364 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
index 3846ddba741032..6e6d6708417b84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ O exemplo a seguir lhe permite obter o tamanho do papel:
| | |
| --- | --- |
| Número do comando | 710 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
index b6da796384460c..bb7ff5426d0d28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-process-variable.md
@@ -102,6 +102,6 @@ Este exemplo escreve a instância das variáveis *v1*, *v2* e *v3* utilizando a
| | |
| --- | --- |
| Número do comando | 370 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
index c63155b0429f6d..9539f0ae51997c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Se o comando não é chamado no contexto de uma transação, um erro é gerado.
| | |
| --- | --- |
| Número do comando | 661 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
index 03747d3013696a..8311b247b14fdc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-destination.md
@@ -260,6 +260,6 @@ Depois de implementar este método de projeto em sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 396 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
index 9e37fcf57b8537..f42f63f9aaed00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Ver o segundo exemplo do comando [SET QUERY DESTINATION](set-query-destination.m
| | |
| --- | --- |
| Número do comando | 395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
index 2594ce9bf5c686..b8a49d80f3d879 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL** , pode aumentar ou reduzir o valor epsi
| | |
| --- | --- |
| Número do comando | 623 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
index bc2fdeb8a12a63..edf134bd682376 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Then the menu contains:
| | |
| --- | --- |
| Número do comando | 1305 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
index b0a389fbcc7913..6fed23b8ace5cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ Em , se quiser estabelecer uma prioridade mais alta para os dados escalares \[Cu
| | |
| --- | --- |
| Número do comando | 1400 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
index db33419f1ee5d4..0635d44f89694b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-table-titles.md
@@ -185,6 +185,6 @@ Se quiser remover todos os campos personalizados e nomes de tabela definidos:
| | |
| --- | --- |
| Número do comando | 601 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
index add0df1906b67f..ce0ce5e8d65895 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Se o texto se coloca corretamente na área de transferência, a variável OK tom
| | |
| --- | --- |
| Número do comando | 523 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
index 480c7f5a7980ab..696a39dc618c33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ O exemplo a seguir define a porta serial para receber dados. Em seguida, ele def
| | |
| --- | --- |
| Número do comando | 268 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
index 78e6f6774af247..f094f098a0fcaa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Imaginemos que você queira, quando um formulário aparece em tela, que o comput
| | |
| --- | --- |
| Número do comando | 645 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
index 35de72115cbdcd..609bdc568fd9d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-update-folder.md
@@ -59,7 +59,7 @@ Você criou uma pasta "MyUpdates" em seu disco, na qual localizou uma nova vers
| | |
| --- | --- |
| Número do comando | 1291 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
index 803978307a67ca..781b0ffa9bdfd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Seus usuários se administran através de uma tabela personalizada e utilizam a
| | |
| --- | --- |
| Número do comando | 1666 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
index af1a2da5dbd594..e5ca0429471987 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-user-properties.md
@@ -70,6 +70,6 @@ Se você não tiver os acessos de privilégio para chamar Set user properties ou
| | |
| --- | --- |
| Número do comando | 612 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
index dcb4c75f243def..9d618d92e62cb8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-rect.md
@@ -66,6 +66,6 @@ A janela aparece desta forma:
| | |
| --- | --- |
| Número do comando | 444 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
index 2e0c7ce37232e5..4c526b5dddcfd1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Enquanto realiza uma entrada de dados em um formulário, você clica em um botã
| | |
| --- | --- |
| Número do comando | 213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
index c24df7a23432bf..2dee0356cd8da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ O método abaixo de objeto para o botão *bUnBotao* realiza diferentes ações d
| | |
| --- | --- |
| Número do comando | 543 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
index 3201e023231be9..332e46ee195c1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver exemplo do comando [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Número do comando | 431 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
index 3a7dcd441de488..e22dcf1bc11d59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-on-disk.md
@@ -54,7 +54,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 922 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
index a515aba1145695..7c189a89abc4a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ O exemplo a seguir mostra um processo chamado Clientes, que foi ocultado previam
| | |
| --- | --- |
| Número do comando | 325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
index 8aa99d9f6dcaf3..15ae20957e3db8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte o exemplo do comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número do comando | 433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
index 47bf686ab4e6f7..26a1c0e755d5ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Consulte o exemplo do comando [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Número do comando | 435 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
index d5fdb4035b6679..29c6d6096adc5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sin.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 17 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
index 4e55615a7cd735..60046b12eb99ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ O exemplo a seguir retorna o número de colunas em um array bidimensional:
| | |
| --- | --- |
| Número do comando | 274 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
index d5169dd07de118..3130cc1aaab1e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-declaration.md
@@ -187,6 +187,6 @@ Este exemplo illustra os resultados dos diferentes tipos de declarações:
| | |
| --- | --- |
| Número do comando | 782 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
index 2bbb3c4bdd82d4..63e39861afab7a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-get-info.md
@@ -40,6 +40,6 @@ Passe no parâmetro *numInfo* o número do tipo de informação SOAP que deseja
| | |
| --- | --- |
| Número do comando | 784 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
index 7d2f65be1bb3e3..b230d9faf2134e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-reject-new-requests.md
@@ -42,6 +42,6 @@ Se quiser recusar qualquer petição nova a seu servidor de serviços web:
| | |
| --- | --- |
| Número do comando | 1636 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
index a4c01ca7d5a69b..40ba01664cbee5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Este comando pode ser utilizado por razões de segurança no *On Web Authenticat
| | |
| --- | --- |
| Número do comando | 783 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
index f72b5291c48a0c..d2444b7940ba80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/soap-send-fault.md
@@ -50,6 +50,6 @@ Regresando ao exemplo do serviço Web “Raiz\_quadrada” da descrição do com
| | |
| --- | --- |
| Número do comando | 781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
index d10fe7b66fcbb9..f6c732801fbe69 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-array.md
@@ -87,6 +87,6 @@ Você exibe os nomes da tabela *\[Pessoas\]* em uma janela flutuante. Quando voc
| | |
| --- | --- |
| Número do comando | 229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
index c0805083da3e69..31581374f46211 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sort-list.md
@@ -62,6 +62,6 @@ A lista se verá assim:
| | |
| --- | --- |
| Número do comando | 391 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
index f981c1497a0441..08adccaa84391c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Adição de nomes próprios ao dicionário de usuário:
| | |
| --- | --- |
| Número do comando | 1214 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
index dd79e97a8b9107..da46f174451025 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ Queremos contar o número possível de erros em um texto:
| | |
| --- | --- |
| Número do comando | 1215 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
index ea0ea7e1641117..f9fc23652c2e11 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ A verificação ortográfica começa com a primeira palavra de campo ou variáve
| | |
| --- | --- |
| Número do comando | 900 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
index 1a7d6ba24459cb..dc3fd9cd3c9cb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar a linguagem do dicionário atual:
| | |
| --- | --- |
| Número do comando | 1205 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
index 282f9610990834..c3f4f3bd1612f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Você coloca "fr-classic+reform1990.aff" e "fr-classic+reform1990.dic" como tamb
| | |
| --- | --- |
| Número do comando | 1204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
index ba9bbfd6bcae3e..9688afba03e293 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/spell-set-current-dictionary.md
@@ -55,7 +55,7 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder:
| | |
| --- | --- |
| Número do comando | 904 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
index 31552055bbcc71..0b7e6698b93601 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ O parâmetro *separador* pode ser uma string de múltiplos caracteres:
| | |
| --- | --- |
| Número do comando | 1554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
index 76482ba1b08bed..a9c1080b5dea63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 824 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
index 4f2c931efa03e5..2a4d97ff6fe828 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá na variável 4D *vNome* os nomes (ename) armazenados na
| | |
| --- | --- |
| Número do comando | 821 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
index 042f5f28163303..1270c772932ccd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute-script.md
@@ -65,7 +65,7 @@ Se o script for executado corretamente (nenhum erro ocorre), a variável Sistema
| | |
| --- | --- |
| Número do comando | 1089 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
index 2e2d03a3eca295..044413ffa9545a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1, do co
| | |
| --- | --- |
| Número do comando | 820 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
index 85b8749743949c..dc20c7dfc40c89 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-database.md
@@ -60,7 +60,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1065 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
index d47aa826aa9a02..7435229919066b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1064 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
index b9b0a93b3b111a..a95aab02fae9e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar a fonte de dados atual, geralmente antes de execu
| | |
| --- | --- |
| Número do comando | 990 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
index 71f492dbe38a8d..50107d943063d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-data-source-list.md
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 989 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
index 9bddf0eb395755..359b20042bae33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-last-error.md
@@ -38,6 +38,6 @@ Os dos últimos parâmetros apenas são preenchidos quando o erro vem da fonte O
| | |
| --- | --- |
| Número do comando | 825 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
index 77c33b8d2b0117..55bd0dcb9619fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 819 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
index 9c21b606cf706b..dd07cf791aa83c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-load-record.md
@@ -38,7 +38,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 822 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
index eac948a7751658..34dd401d9326fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-login.md
@@ -208,7 +208,7 @@ Se a conexão for exitosa, a variável sistema OK assume o valor 1, do contrári
| | |
| --- | --- |
| Número do comando | 817 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
index c6904fcfdb5232..5813744cd097b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Se o logout é feito corretamente, a variável Sistema OK assume o valor 1; do c
| | |
| --- | --- |
| Número do comando | 872 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
index b4266380c6afcb..be96d73f22ff0a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-option.md
@@ -51,7 +51,7 @@ Se o comando for executado corretamente, a variável Sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 818 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
index 0dba1473319610..32fb422f16cb34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sql-set-parameter.md
@@ -81,7 +81,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 823 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
index 78633e57d1c302..273478c552d589 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Por exemplo, Hipotenusa (4;3) devolve 5.
| | |
| --- | --- |
| Número do comando | 539 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
index 1ff2825c2feee1..9bd1f6277b4629 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-compute-expressions.md
@@ -72,7 +72,7 @@ Você deseja atualizar as referências incluídas na seleção de texto:
| | |
| --- | --- |
| Número do comando | 1285 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
index d6cc9e524fb20f..4516d71278a616 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-freeze-expressions.md
@@ -72,6 +72,6 @@ Você quer inserir a hora atual ao início do texto e logo congelar ela antes de
| | |
| --- | --- |
| Número do comando | 1282 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
index a613da34dd341f..aecc95668c47d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-attributes.md
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1094 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
index 45a9ddb8814021..db41c27435cf34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-content-type.md
@@ -106,7 +106,7 @@ Você deseja mostrar os comandos de um menu contextual baseado no tipo de conte
| | |
| --- | --- |
| Número do comando | 1286 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
index df9a07507e8bfc..e287d12fbbbd2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-expression.md
@@ -98,7 +98,7 @@ Você quer executar um método 4D quando é feito clique em um link de um usuár
| | |
| --- | --- |
| Número do comando | 1287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
index 4b3f42d90de8f5..5b7063f1c6323a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Passe o código da opção a ler no parâmetro *opcao*. O comando devolve em *va
| | |
| --- | --- |
| Número do comando | 1290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
index 2349e6d819eb29..a7561b9a0b45fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-plain-text.md
@@ -114,7 +114,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1092 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
index d27aedadcc7f9a..de9b419a973f3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-text.md
@@ -67,7 +67,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1116 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
index c015a42585f495..1e38e00daf4240 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-get-url.md
@@ -75,6 +75,6 @@ Quando há um evento de duplo clique, se comprova que não existe em realidade u
| | |
| --- | --- |
| Número do comando | 1288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
index d067bdf52e4ced..cc9d8f5e59eeb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-expression.md
@@ -94,7 +94,7 @@ Deseja substituir o texto selecionado com o resultado de um método projeto:
| | |
| --- | --- |
| Número do comando | 1281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
index be9a39621a2036..f37f2f665348b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-insert-url.md
@@ -68,7 +68,7 @@ Você deseja inserir um link ao web site de 4D para substituir o texto seleciona
| | |
| --- | --- |
| Número do comando | 1280 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
index 7035da313593f8..973c34a21f4594 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-attributes.md
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1093 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
index 1ae4b5598541be..068cc94882427d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ O seguinte código permite mudar o modo de visualização da área:
| | |
| --- | --- |
| Número do comando | 1289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
index 2d3f3e78fcdf80..0b62bab597a2ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ No caso de um erro, a variável não muda. Quando se produz um erro em uma vari
| | |
| --- | --- |
| Número do comando | 1136 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
index 5f7c81a27d66e4..f1f77bf230acd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Consulte o exemplo do comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número do comando | 1115 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
index caf38ef4c219f3..012b8d87dc4f4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Se quiser iniciar/parar o monitoramento e revisão de dados 4D e atividades de d
| | |
| --- | --- |
| Número do comando | 1712 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
index e86821839b3596..316f5be51d44ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Se o servidor SQL tiver sido lançado corretamente, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 962 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
index 93bfc49e92d927..3046583e92e646 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir da versão 11 de 4D, pode aninhar várias transações (subtransações
| | |
| --- | --- |
| Número do comando | 239 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
index 695a9a8e37a524..860be26caf8c9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/std-deviation.md
@@ -64,6 +64,6 @@ Este exemplo obtém o desvio padrão de uma série de valores localizados num ar
| | |
| --- | --- |
| Número do comando | 26 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
index c4432a27f9e300..645f011dc86005 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver exemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número do comando | 1721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
index 6f8a956484f650..6af82de68ebad1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Se o servidor SQL foi lançado, todas as conexões SQL são interrompidas e o se
| | |
| --- | --- |
| Número do comando | 963 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
index da5319d7e8d255..daa8fde4f47070 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este exemplo mostra uma forma padrão de estabelecer valores de **Armazenamento*
| | |
| --- | --- |
| Número do comando | 1525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
index f91295c0e6fd55..47de39383d262c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string-list-to-array.md
@@ -49,7 +49,7 @@ Se o recurso for encontrado, a variável sistema OK assume o valor 1, do contrá
| | |
| --- | --- |
| Número do comando | 511 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
index c3c39a0c9449fe..0aa511858345ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/string.md
@@ -180,6 +180,6 @@ Se a expressão for avaliada como Null, o comando devolve a string "null". Isto
| | |
| --- | --- |
| Número do comando | 10 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
index ad28cd42d23555..2caf6ec1f51d66 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/structure-file.md
@@ -79,6 +79,6 @@ O exemplo a seguir pode ser usado para descobrir se o método é chamado de um c
| | |
| --- | --- |
| Número do comando | 489 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
index e0910cf9b91cad..5e2f0c51186aad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/substring.md
@@ -70,6 +70,6 @@ O seguinte método de projeto adiciona os parágrafos que são encontrados no te
| | |
| --- | --- |
| Número do comando | 12 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
index 289aa12ed78661..d9cc5c722be8c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/subtotal.md
@@ -67,6 +67,6 @@ A função Subtotal é necessária para mostrar valores em um formulário.
| | |
| --- | --- |
| Número do comando | 97 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
index b0ea2c6618c4d5..34c5f20531ceb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Este exemplo permite obter a soma de quadrados dos valores localizados num array
| | |
| --- | --- |
| Número do comando | 28 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
index 0e8487b01befae..8f3425526b203f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/sum.md
@@ -79,7 +79,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 1 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
index 41f14e2005420c..ef6f95a8ad446c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1385 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
index 9759e06fd372ca..6e97fc7b767305 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-export-to-picture.md
@@ -59,6 +59,6 @@ O exemplo abaixo pode ser utilizado para mostrar “Hello World” em uma imagem
| | |
| --- | --- |
| Número do comando | 1017 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
index 22d1644e0cd68d..da68ce1e15da59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -57,7 +57,7 @@ Se *objetoImagem* não contiver uma imagem SVG válida, o comando retorna uma ca
| | |
| --- | --- |
| Número do comando | 1054 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
index b5fbf356b9078a..b39e72a3e62a35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ Todos os elementos cujo retângulo circundante está em intersecção com o ret
| | |
| --- | --- |
| Número do comando | 1109 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
index 38a90682b2297d..c6d140228d538c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-get-attribute.md
@@ -48,6 +48,6 @@ Para obter mais informação acerca dos atributos SVG, consulte a descripção d
| | |
| --- | --- |
| Número do comando | 1056 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
index 71668792fc4ff1..b479247d36d223 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-set-attribute.md
@@ -100,7 +100,7 @@ Modificação do conteúdo de um elemento de tipo texto:
| | |
| --- | --- |
| Número do comando | 1055 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
index 99e556a53227e4..8eb24f261f1bbb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ Se este comando não for executado no contexto de um formulário ou se for passa
| | |
| --- | --- |
| Número do comando | 1108 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
index 00b6ecd24d27e4..6e6b23a2c7c8eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-folder.md
@@ -55,6 +55,6 @@ Se omitido o parâmetro *tipo*, a função devolverá a rota à pasta sistema at
| | |
| --- | --- |
| Número do comando | 487 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
index 5756dd933242c1..91b85212c1c350 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/system-info.md
@@ -150,6 +150,6 @@ devolve um objeto que contém a informação abaixo:
| | |
| --- | --- |
| Número do comando | 1571 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
index 6848822275c460..8dabdadb00175e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Este método lhe permite requisitar a compactação do arquivo de dados no caso
| | |
| --- | --- |
| Número do comando | 1127 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
index 519029087d76d4..9b383debde10f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ O seguinte é um exemplo de um método genérico que mostra os registros de uma
| | |
| --- | --- |
| Número do comando | 256 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
index 93ddf40fefc6e3..6a66e893c157d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/table.md
@@ -68,6 +68,6 @@ Este exemplo, a variável *numTabela* é igual ao número da tabela a qual perte
| | |
| --- | --- |
| Número do comando | 252 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
index 46aeb70193912b..ab1809804b44b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tan.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 19 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
index 51abf30210f8bb..44a7af018ece7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 486 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
index 2701e0d2c7afdf..8ac09bb1fe4589 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ O seguinte exemplo prova a presença do documento “Diário” na pasta da base
| | |
| --- | --- |
| Número do comando | 476 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
index 981ec3431ea1d1..80ef4376551718 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/test-semaphore.md
@@ -48,6 +48,6 @@ O exemplo a seguir lhe permite conhecer o estado de um processo (em nosso caso,
| | |
| --- | --- |
| Número do comando | 652 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
index c92427793fb0be..bf087ff901871b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ Deve imprimir em uma área de 400 pixeles de largo um texto de um máximo de 80
| | |
| --- | --- |
| Número do comando | 1149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
index a40071b30a5fec..b25e8a9d8f4506 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-blob.md
@@ -112,6 +112,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
index 1d5b93a2c4dd9a..22cea08a07f3b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ Exemplo que permite ao usuário indicar a localização do arquivo a criar:
| | |
| --- | --- |
| Número do comando | 1237 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
index 94fabd42170ddd..e53177e933446c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número do comando | 1805 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
index d38b5b18e03de7..df7b70511a2bfb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver o exemplo do comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número do comando | 458 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
index 82cb9eb421a480..f54e01bbf6547c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ O exemplo a seguir mostra uma caixa de alerta com a mensagem, “46 800 segundos
| | |
| --- | --- |
| Número do comando | 180 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
index c692ba82f17061..4619d7d13703bc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/time.md
@@ -57,6 +57,6 @@ Pode expressar todo valor numérico como uma hora:
| | |
| --- | --- |
| Número do comando | 179 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
index 8426fb3a9f13ec..ee8499f41d5ff2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 1445 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
index c59585ab3b3121..2e5a5b32509d47 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Se não se mostrar nenhuma barra de ferramentas, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1016 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
index 3d7827114f3e6d..e7d72358baa439 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trace.md
@@ -66,6 +66,6 @@ O método de projeto DEBUG é listado aqui:
| | |
| --- | --- |
| Número do comando | 157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
index 316002dc4317d8..42116dfd72057d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 961 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
index 324c996ad586b9..c81646f7fb41a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/transform-picture.md
@@ -78,6 +78,6 @@ Este é um exemplo de corte de uma imagem (a imagem se mostra no formulário com
| | |
| --- | --- |
| Número do comando | 988 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
index a8f48256d41c8f..cf5107bbda31c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ Utilize o comando **Trigger event** para estruturar seus triggers desta maneira:
| | |
| --- | --- |
| Número do comando | 369 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
index b0f478baa7b365..3ef5751940a151 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para maior informação sobre níveis de execução, consulte o tema triggers em
| | |
| --- | --- |
| Número do comando | 398 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
index 8659df6b324255..4919d7f94bffae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trigger-properties.md
@@ -45,6 +45,6 @@ O número de tabela e de registro para o registro relacionado pelo evento de ban
| | |
| --- | --- |
| Número do comando | 399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
index 5cc1ad9887f6e6..58461d1a68a3f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/true.md
@@ -35,6 +35,6 @@ O exemplo a seguir atribui a variável *vbOpcoes* a Verdadeiro :
| | |
| --- | --- |
| Número do comando | 214 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
index 260ff6a9bca935..a1121a22f7c715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra a maneira como **Trunc** funciona com diferentes argu
| | |
| --- | --- |
| Número do comando | 95 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
index cb8bd37e9b4cfd..589074f179f1f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 1051 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
index b9da50bc3133e4..813b3e1cf6d0bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/type.md
@@ -147,6 +147,6 @@ Ver exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número do comando | 295 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
index a057cdd8cce4ae..0b967f8a18fe58 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/undefined.md
@@ -68,6 +68,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 82 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
index 900d6eff78a388..a93499fa3433d6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/union.md
@@ -57,6 +57,6 @@ Este exemplo adiciona registros ao conjunto de melhores clientes. Os registros s
| | |
| --- | --- |
| Número do comando | 120 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
index eab8929bc03e5b..acff0da5747616 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Se um registro tiver uma quantidade importante de dados, de campos de imagem, ou
| | |
| --- | --- |
| Número do comando | 212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
index 72d6efe4ac9588..9e7ba14863e600 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Se o registro de um cliente é cancelado corretamente, a variável do sistema OK
| | |
| --- | --- |
| Número do comando | 649 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
index 702ec95d312474..dc10de0936cd94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Ver o exemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número do comando | 13 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
index 39839af4f61a47..5d6b94d9141475 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-character-set.md
@@ -58,7 +58,7 @@ A variável de sistema OK é definida como 1 se o mapa é carregado corretamente
| | |
| --- | --- |
| Número do comando | 205 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
index b7632dc66d3620..537b570615bc70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ Lembre que uma seleção temporária é uma representação de uma seleção de
| | |
| --- | --- |
| Número do comando | 332 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
index b7200361d1f848..70f0034e813054 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ O seguinte exemplo utiliza [LOAD SET](load-set.md) para carregar um conjunto de
| | |
| --- | --- |
| Número do comando | 118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
index 71ed8f0dde7510..8e398a1759ca02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ O exemplo abaixo procura faturas específicas. Se o usuário atual estiver no gr
| | |
| --- | --- |
| Número do comando | 338 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
index 9de894423e4c8b..082ff21ee9bb36 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ Este conceito permite conservar um backup de usuários no banco e implementar um
| | |
| --- | --- |
| Número do comando | 849 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
index cc42039416852d..ebdb2f109e8e78 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-password.md
@@ -65,6 +65,6 @@ No [On 4D Mobile Authentication database method](on-4d-mobile-authentication-dat
| | |
| --- | --- |
| Número do comando | 638 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
index 60920cecbbfe2a..8f45486d5fd487 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Note que quando OK for estabelecido como 0, a transação é automaticamente can
| | |
| --- | --- |
| Número do comando | 240 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
index 5d97e07d3f0c14..d54988e3f3063d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/value-type.md
@@ -122,6 +122,6 @@ var $sum : Real
| | |
| --- | --- |
| Número do comando | 1509 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
index 3cae34d5f2c3e4..3caee7e52165ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-blob.md
@@ -139,7 +139,7 @@ Depois que esses métodos foram adicionados a sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 532 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
index 68ff5e5b9c55a5..94dda25d517bba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variable-to-variable.md
@@ -66,6 +66,6 @@ O exemplo a seguir lê um array processo desde o processo indicado por *$vlProce
| | |
| --- | --- |
| Número do comando | 635 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
index ea1bcb37258aa8..fee656bd24fde4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Este exemplo permite obter a variância de valores localizados num array:
| | |
| --- | --- |
| Número do comando | 27 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
index f3d094fe7ae447..e585219f632021 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 1008 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
index c5aa97607c4c85..519ada3861fa8b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-data-file.md
@@ -160,7 +160,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 939 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
index 99c38736146dff..0457f3107951c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Este exemplo verifica um hash de senha previamente criado por [Generate password
| | |
| --- | --- |
| Número do comando | 1534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
index c23802925d5698..950e1379c4d3f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prova permite executar código diferente dependendo de que versão é uma a
| | |
| --- | --- |
| Número do comando | 495 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
index 924373c324ab02..bdbcfd66c4329e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ Quando tiver sido adicionado este método de projeto a sua aplicação, pode esc
| | |
| --- | --- |
| Número do comando | 472 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
index 3889715b85ddc5..44de29882d961a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ Utilizando uma área de rolagem chamada *atVolumes*,se quiser mostrar a lista de
| | |
| --- | --- |
| Número do comando | 471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
index cc512ae0f5812b..a0e2f70f4469d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ O comando retorna *True* se existe uma URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1026 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
index 1a1f494cd1d981..b188644a84f8fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ O código abaixo pode estar associado a um botão 3D com menu pop up chamado "An
| | |
| --- | --- |
| Número do comando | 1049 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
index 6e2e8833b2ec13..4b646911340272 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ Logo pode avaliar o código JavaScript desde 4D:
| | |
| --- | --- |
| Número do comando | 1029 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
index 6b58e769ca5e60..532cd129cad168 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ A função JavaScript "getCustomerInfo" recebe um número ID como parâmetro e d
| | |
| --- | --- |
| Número do comando | 1043 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
index 379b046a5f247e..c2fcf3230801a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ O comando retorna *True* se existir um URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1027 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
index f0aa20a5dd7158..b21039de284a8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ A página mostrada na URL "www.apple.com" e a página "www.4dhispano.com" está
| | |
| --- | --- |
| Número do comando | 1025 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
index 30732cb3aafade..013a2238cc86a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando [WA SET EXTERNAL LINKS FILTERS](wa-set-e
| | |
| --- | --- |
| Número do comando | 1033 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
index b1478385c135d7..35e9420c47ea59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-filtered-url.md
@@ -38,6 +38,6 @@ A URL pode ter sido filtrada por uma das seguintes razões:
| | |
| --- | --- |
| Número do comando | 1035 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
index 2b6c2d388e626f..b9f967310409df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-last-url-error.md
@@ -40,6 +40,6 @@ Esta informação se retorna em três variáveis:
| | |
| --- | --- |
| Número do comando | 1034 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
index 31cd582cc42cf0..3c8266f7c567a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se o conteúdo da página atual não estiv
| | |
| --- | --- |
| Número do comando | 1038 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
index 36bc821b478688..4f42eae4954c28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se não houver título disponível para o
| | |
| --- | --- |
| Número do comando | 1036 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
index ac716f4e4c48cb..6b761783c45718 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-preference.md
@@ -40,6 +40,6 @@ Passe no parâmetro *valor* uma variável que receberá o valor atual da prefer
| | |
| --- | --- |
| Número do comando | 1042 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
index a7cb89a868e941..767626549f2161 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando WA GET URL FILTERS. Se os arrays se rein
| | |
| --- | --- |
| Número do comando | 1031 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
index 0bbc268d953cf8..3faa64fff20f3b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ Nota de Compatibilidade: A partir de 4D v19 R5, esse comando só retorna a URL a
| | |
| --- | --- |
| Número do comando | 1048 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
index fa769253a72bdb..2f491b0cf56b2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ Se não houver um URL antecedente, o comando não faz nada. Pode testar a dispon
| | |
| --- | --- |
| Número do comando | 1021 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
index 35195d480c92c3..a76f2950365325 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1022 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
index d54805b9542cfc..70b149f4bf840c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-url.md
@@ -51,6 +51,6 @@ Este comando tem o mesmo efeito que a modificação do valor da variável "URL"
| | |
| --- | --- |
| Número do comando | 1020 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
index 93728d1c0a4ab7..5436d716387d6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1736 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
index 10b4ff9566a62b..690a8975e82252 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1023 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
index 7adeffa62b03e7..c7282dbec45e35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ A variável de sistema OK é estabelecida como 0 se o timeout foi alcançaddo ou
| | |
| --- | --- |
| Número do comando | 1727 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
index f29981bf9c0171..2c0877bda09f5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-external-links-filters.md
@@ -79,6 +79,6 @@ Este exemplo combina os filtros de sites e de links externos:
| | |
| --- | --- |
| Número do comando | 1032 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
index 55b5120accae59..6cf18be7091bb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-page-content.md
@@ -51,6 +51,6 @@ Mostrar a frase "Olá mundo!" e definição de uma URL de banco "file:///" banco
| | |
| --- | --- |
| Número do comando | 1037 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
index c4a9ee405d0c9c..c2eb9336cd9b61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-preference.md
@@ -58,6 +58,6 @@ WA SET PREFERENCE( *;"myarea"; WA enable URL drop ; True)
| | |
| --- | --- |
| Número do comando | 1041 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
index b93037b2af090b..c76f0e0557255f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-set-url-filters.md
@@ -145,6 +145,6 @@ Imagine que deseja negar o acesso a endereços IP específicos:
| | |
| --- | --- |
| Número do comando | 1030 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
index a9c21f44ebdc93..898fac0ff600d7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1024 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
index 181d4385cf0f39..0e62c260a27490 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1039 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
index 7d98dd328e8d43..db80558b9ad234 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1040 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
index a974122f5c3d8f..66975a05a69dc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte o exemplo do comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número do comando | 1211 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
index 0d00dc002732b2..50c8c2c3bdddfc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Este é o código do método GetFile:
| | |
| --- | --- |
| Número do comando | 1212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
index c1da2c04176b5f..5cc8ac7671cd61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Se este comando se chama fora do contexto de uma sessão web, devolve uma cadeia
| | |
| --- | --- |
| Número do comando | 1162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
index 00bbaf87a010f5..d0c03170a5aeb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Quando o formulário é enviado ao servidor web, a variável $textoPetição rec
| | |
| --- | --- |
| Número do comando | 814 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
index ce866963da24ec..751d86cdc2bcf8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-http-header.md
@@ -123,6 +123,6 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de
| | |
| --- | --- |
| Número do comando | 697 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
index d0cd6a1fc2a158..2a2eb018fb867b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Quando usar o seletor web debug log, pode receber uma das constantes abaixo no p
| | |
| --- | --- |
| Número do comando | 1209 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
index 15d647b7df0e80..4937143cbf53f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-server-info.md
@@ -94,6 +94,6 @@ Depois de executar o código abaixo:
| | |
| --- | --- |
| Número do comando | 1531 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
index def4ed1281a3fb..78db4808358904 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-statistics.md
@@ -68,6 +68,6 @@ Pode enviar a página "stats.shtm" utilizando um link URL ou utilizando o comand
| | |
| --- | --- |
| Número do comando | 658 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
index 5a23d645060217..d689b3505d7aa1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-get-variables.md
@@ -69,6 +69,6 @@ A variável vNOME contém ROBERTO e vCIDADE contém PARIS.
| | |
| --- | --- |
| Número do comando | 683 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
index b03257f652ebbd..66f213e98eff35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por exemplo, recusar as tentativas de conexão em modo nã
| | |
| --- | --- |
| Número do comando | 698 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
index 0beb0e3441d67b..b56a079f8ced0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Você quer verificar que o servidor web se está executando:
| | |
| --- | --- |
| Número do comando | 1313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
index 645aa96e7228cc..aa0edc8ac9f4e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Depois da execução deste comando, se um cliente web envia um pedido com uma co
| | |
| --- | --- |
| Número do comando | 1208 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
index 63c6dbddba7e21..33f7b65aed206f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ O parâmetro *dataVenc* recebe a data de vencimento e o parâmetro *horaVenc* re
| | |
| --- | --- |
| Número do comando | 1207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
index 8c2c57cc4577bb..adc7bd6ed87019 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-blob.md
@@ -43,6 +43,6 @@ Consulte o exemplo da rotina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número do comando | 654 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
index 8bd34953d8d786..e122e9462f3936 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-file.md
@@ -54,7 +54,7 @@ Se o arquivo a ser enviado existir e o timeout não tiver passado, OK é estabel
| | |
| --- | --- |
| Número do comando | 619 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
index cfb336fc67ce6b..4b2897e66023c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ End case
| | |
| --- | --- |
| Número do comando | 659 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
index cd90608f3bfbd2..71fb4b8e828f85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-raw-data.md
@@ -89,6 +89,6 @@ Este exemplo ilustra o uso da opção chunked com o comando **WEB SEND RAW DATA*
| | |
| --- | --- |
| Número do comando | 815 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
index 9165b8bfe67768..a3eb0a067c6788 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-send-text.md
@@ -50,6 +50,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 677 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
index ead975821b28ba..66d8d2310cb279 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-authenticate.md
@@ -57,6 +57,6 @@ Autenticação com um serviço web localizado atrás de um proxy:
| | |
| --- | --- |
| Número do comando | 786 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
index 9eaaf1dbbd05bd..a17744248aea33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-call.md
@@ -173,7 +173,7 @@ Se a petição for corretamente encaminhada, e o Web Service a aceitar, a variá
| | |
| --- | --- |
| Número do comando | 778 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
index e5f5c838a54cbf..e36dd4f71224a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ Uma string vazia é retornada quando não há informação disponível, particul
| | |
| --- | --- |
| Número do comando | 780 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
index 0b91e16285e977..15b50ff80df43c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-get-result.md
@@ -57,6 +57,6 @@ Imagine um serviço web que devolve a hora atual em qualquer cidade do mundo. Os
| | |
| --- | --- |
| Número do comando | 779 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
index 43afd7be19ce30..776e0095eda6a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-option.md
@@ -68,6 +68,6 @@ Utilização da versão 1.2 do protocolo SOAP:
| | |
| --- | --- |
| Número do comando | 901 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
index 1e4457e42d1126..cb78eb4171c8a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-service-set-parameter.md
@@ -78,6 +78,6 @@ Este exemplo define dois parâmetros:
| | |
| --- | --- |
| Número do comando | 777 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
index d5d2515aa57b4c..647c92c0b56824 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Para não enviar *pagInicio* como página de inicio para o processo web atual, e
| | |
| --- | --- |
| Número do comando | 639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
index 1f4d74ee2c2b89..b70d00015163a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-http-header.md
@@ -73,6 +73,6 @@ Os campos **Date** e **Content-Length** sempre são definidos por padrão por 4D
| | |
| --- | --- |
| Número do comando | 660 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
index 0c4d8549691b03..33974d39d5295f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-option.md
@@ -89,6 +89,6 @@ Uma entrada registrada se vê dessa maneira:
| | |
| --- | --- |
| Número do comando | 5 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
index d30d2fdbef80a8..5c2b9aae11b17d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-set-root-folder.md
@@ -44,7 +44,7 @@ Se especificar uma rota de acesso inválida, será gerado um erro do administrad
| | |
| --- | --- |
| Número do comando | 634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
index 4952b96f3961a2..aeddf8640a0933 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Se o servidor Web é iniciado corretamente, Ok assume o valor 1; do contrário O
| | |
| --- | --- |
| Número do comando | 617 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
index 2d0f1e9ed08680..ebda38803e1365 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Se o servidor web não for iniciado, o comando não faz nada.
| | |
| --- | --- |
| Número do comando | 618 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
index 593250ea88f87e..f898087880ba75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Exemplo de método de base On Web Authentication em modo Digest:
| | |
| --- | --- |
| Número do comando | 946 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
index fa4900ce8f19b2..c9471bb7be66b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-kind.md
@@ -45,6 +45,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Número do comando | 445 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
index bf62935d813cf6..13f0b3c22d0b12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ O método de projeto abaixo coloca em mosaico todas as janelas abertas atualment
| | |
| --- | --- |
| Número do comando | 442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
index 641820ea757815..e0cad6882b5f2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Se omitir o parâmetro *janela*, Window process devolve o número do processo da
| | |
| --- | --- |
| Número do comando | 446 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
index 7aa0be8b8564e9..9f0e2c2df8b598 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-alt-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
index e7c3b932e3e103..51e525647b8fb8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/windows-ctrl-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
index 8a9759e742bbb8..cf142b2ec8633b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/write-picture-file.md
@@ -56,7 +56,7 @@ Se a execução do comando for correta, a variável sistema Document contém a r
| | |
| --- | --- |
| Número do comando | 680 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
index 10ca52d4ed1487..8dd29daf5d3b18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-decode.md
@@ -82,6 +82,6 @@ Exemplo do documento XML:
| | |
| --- | --- |
| Número do comando | 1091 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
index 31908f4a791e8f..18ccbf84329510 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 732 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
index ab7a8e2e6c48dc..ac87e91192396e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ Em seletor, passe uma das constantes do tema "*XML*" indicando a opção a obter
| | |
| --- | --- |
| Número do comando | 1096 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
index e6fe262cbf2454..453aad392fd4fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/xml-set-options.md
@@ -75,6 +75,6 @@ Inserir uma imagem SVG:
| | |
| --- | --- |
| Número do comando | 1090 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
index 09067134e16c5f..01803444eb6927 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 25 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
index 425413649a3176..00f087e04b394d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Information about the active licence |
+| Resultado | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ You want to get information on your current 4D Server license:
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
index ee406cf5ac976a..54cf1fb343ca39 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk column max width | 26 | **[Maximum Width](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)** property
Applies to: Column \* |
| lk column min width | 25 | **[Minimum Width](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)** property
Applies to: Column \* |
| lk column resizable | 15 | **[Resizable](../FormObjects/properties_ResizingOptions.md#resizable)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | **[Detail Form Name](../FormObjects/properties_ListBox.md#detail-form-name)** property for selection type list box
Applies to: List box |
| lk display footer | 8 | **[Display Footers](../FormObjects/properties_Footers.md#display-footers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
| lk display header | 0 | **[Display Headers](../FormObjects/properties_Headers.md#display-headers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
@@ -47,7 +49,7 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura em pixels |
+| lk hor scrollbar height | 3 | Height in pixels (can only be read)
Applies to: List box |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
@@ -58,10 +60,7 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largura em pixels |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
+| lk ver scrollbar width | 5 | Width in pixels (can only be read)
Applies to: List box |
\* These properties only apply to list box columns; if you pass a list box as parameter with one of these properties, **LISTBOX Get property** returns -1, or an empty string, depending on the *property* passed.
@@ -105,9 +104,9 @@ Given a list box "MyListbox", if you execute the following statement:
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 917 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | --- |
+| Número de comando | 917 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
index ba61087a94cf29..997f46e940b767 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20-R10/commands/listbox-set-property.md
@@ -37,6 +37,8 @@ Nos parâmetros *property* e *value*, você indica, respectivamente, a proprieda
| lk column max width | 26 | **[Maximum Width](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)** property
Applies to: Column \* |
| lk column min width | 25 | **[Minimum Width](../FormObjects/properties_CoordinatesAndSizing.md#minimum-width)** property
Applies to: Column \* |
| lk column resizable | 15 | **[Resizable](../FormObjects/properties_ResizingOptions.md#resizable)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
+| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
+| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
| lk detail form name | 19 | **[Detail Form Name](../FormObjects/properties_ListBox.md#detail-form-name)** property for selection type list box
Applies to: List box |
| lk display footer | 8 | **[Display Footers](../FormObjects/properties_Footers.md#display-footers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
| lk display header | 0 | **[Display Headers](../FormObjects/properties_Headers.md#display-headers)** property
Applies to: List box
Possible values:
lk no (0): hidden
lk yes (1): shown |
@@ -47,21 +49,17 @@ Nos parâmetros *property* e *value*, você indica, respectivamente, a proprieda
| lk font style expression | 24 | **[Style Expression](../FormObjects/properties_Text.md#style-expression)** property for record selection, collection or entity selection type list boxes
Applies to: List box or column |
| lk hide selection highlight | 16 | **[Hide selection highlight](../FormObjects/properties_Appearance.md#hide-selection-highlight)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk highlight set | 27 | **[Highlight Set](../FormObjects/properties_ListBox.md#highlight-set)** property for selection type list box
Applies to: List box |
-| lk hor scrollbar height | 3 | Altura em pixels |
| lk meta expression | 34 | **[Meta Info Expression](../FormObjects/properties_Text.md#meta-info-expression)** property for collection or entity selection type list boxes
Applies to: List box |
| lk movable rows | 35 | **[Movable Rows](../FormObjects/properties_Action.md#movable-rows)** property for array type list box
Applies to: List box (excluding hierarchical mode)
Possible values:
lk no (0): Rows cannot be moved at runtime
lk yes (1): Rows can be moved at runtime (default) |
| lk multi style | 30 | **[Multi-style](../FormObjects/properties_Text.md#multi-style)** property
Applies to: Column \*
Possible values:
lk no (0)
lk yes (1) |
| lk named selection | 28 | **[Named Selection](../FormObjects/properties_DataSource.md#selection-name)** property for selection type list box
Applies to: List box |
| lk resizing mode | 11 | **[Column Auto-Resizing](../FormObjects/properties_ResizingOptions.md#column-auto-resizing)** property
Applies to: List box
Possible values:
lk manual (0)
lk automatic (2) |
| lk row height unit | 17 | Unit of **[Row Height](../FormObjects/properties_CoordinatesAndSizing.md#row-height)** property
Applies to: List box
Possible values:
lk lines (1)
lk pixels (0)
|
+| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
| lk selection mode | 10 | **[Selection Mode](../FormObjects/properties_ListBox.md#selection-mode)** property
Applies to: List box
Possible values:
lk none (0)
lk single (1)
lk multiple (2) |
| lk single click edit | 29 | **[Single-Click Edit](../FormObjects/properties_Entry.md#single-click-edit)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk sortable | 20 | **[Sortable](../FormObjects/properties_Action.md#sortable)** property
Applies to: List box
Possible values:
lk no (0)
lk yes (1) |
| lk truncate | 12 | **[Truncate with ellipsis](../FormObjects/properties_Display.md#truncate-with-ellipsis)** property
Applies to: List box or column
Possible values:
lk without ellipsis (0)
lk with ellipsis (1) |
-| lk ver scrollbar width | 5 | Largura em pixels |
-| lk current item expression | 38 | **[Current item](../FormObjects/properties_DataSource.md#current-item)** property
Applies to: List box (Collection / Entity selection) |
-| lk current item pos expression | 39 | **[Current item position](../FormObjects/properties_DataSource.md#current-item-position)** property
Applies to: List box (Collection / Entity selection) |
-| lk selected items expression | 40 | **[Selected items](../FormObjects/properties_DataSource.md#selected-items)** property
Applies to: List box (Collection / Entity selection) |
\* These properties can only be applied to list box columns; however, if you pass a list box as parameter, **LISTBOX SET PROPERTY** applies the *property* to each column of the list box.
@@ -90,9 +88,9 @@ You want to set a maximum width for the column whose name is "ProductNumber":
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1440 |
-| Thread safe | ✗ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1440 |
+| Thread safe | não |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Admin/cli.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Admin/cli.md
index 39d8b26712446d..60b062648ee459 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Admin/cli.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Admin/cli.md
@@ -50,7 +50,7 @@ Sintaxe:
| `--skip-onstartup` | | Inicia o projecto sem executar quaisquer métodos "automáticos", incluindo os métodos de base de dados `On Startup` e `On Exit` |
| `--startup-method` | Nome do método projecto (string) | Método de projecto a executar imediatamente após o método de base `On Startup` (se não for ignorado com `--skip-onstartup`). |
-[Diagnostic log file](debugLogFiles.md#4ddiagnosticlogtxt) (licence alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
+(*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
### Exemplos
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/Desktop/building.md
index 2e38ed7e9983e1..77e6677b5b1f91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20/Desktop/building.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/Desktop/building.md
@@ -408,8 +408,8 @@ Os elementos devem ser instalados:
Para ativar este recurso, adicione as chaves `DatabaseToEmbedInClientWinFolder` e/ou `DatabaseToEmbedInClientMacFolder` no arquivo de configurações do *buildApp*. Quando uma das chaves estiver presente, a aplicação cliente gera uma aplicação monousuário: a estrutura compilada, ao inves do arquivo *EnginedServer.4Dlink* é colocada na pasta "Database".
-* Se existir uma pasta de dados padrão no aplicativo de usuário único, uma licença será incorporada.
-* Se não existir uma pasta de dados padrão no aplicativo de usuário único, ela será executada sem arquivo de dados e sem licença.
+* If a default data folder exists in the single-user application, a license is embedded.
+* If no default data folder exists in the single-user application, it will be executed without data file and without license.
O cenário básico é o seguinte:
@@ -501,7 +501,7 @@ Os seguintes módulos opcionais podem ser desmarcados:
## Página Licenças e certificados
-A página Licences & Certificate pode ser utilizada para:
+The Licenses & Certificate page can be used to:
* designar o(s) número(s) da licença que você deseja integrar ao seu único usuário [aplicativo autônomo](#application-page), ,
* assinar a aplicação através de um certificado no macOS.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
index be4feab0891541..1fd4d22a84e30e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/FormObjects/subform_overview.md
@@ -180,12 +180,21 @@ A comunicação entre o formulário pai e as instâncias do subformulário pode
> O comando `GOTO OBJECT` procura o objeto de destino no formulário pai, mesmo que seja executado em um subformulário.
-#### Comando CALL SUBFORM CONTAINER
+#### Comando CALL SUBFORM CONTAINER {#call-subform-container-command}
O comando `CALL SUBFORM CONTAINER` permite que uma instância de subformulário envie um [evento](../Events/overview.md) para o objeto contêiner de subformulário, que pode então processá-lo no contexto do formulário pai. O evento é recebido no método do objeto contentor. Ele pode estar na origem de qualquer evento detectado pelo subformulário (clique, arrastar e soltar etc.).
O código do evento não tem restrições (por exemplo, 20000 ou -100). Você pode usar um código que corresponda a um evento existente (por exemplo, 3 para `On Validate`), ou usar um código personalizado. No primeiro caso, você só pode usar eventos que você verificou na Lista de Propriedades para sub-formulários. No segundo caso, o código não deve corresponder a nenhum evento de formulário existente. Recomenda-se usar um valor negativo para ter certeza de que esse código não será usado por 4D em versões futuras.
+Supported events for subforms are:
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
+
Para obter mais informações, consulte a descrição do comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/REST/configuration.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/REST/configuration.md
index 6268ff96abe4ef..a2c797d9519be0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20/REST/configuration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/REST/configuration.md
@@ -7,7 +7,7 @@ Utilizando petições HTTP padrão, o servidor 4D REST permite às aplicações
Para iniciar usando as funcionalidades REST, precisa iniciar e configurar o servidor 4D REST.
-> - Em 4D Server, abrir uma sessão REST exige que uma licença cliente 4D free esteja disponível.
+> - On 4D Server, opening a REST session requires that a free 4D client license is available.
> - Em 4D single-user, pode abrir até três sessões REST para fins de teste.
> - You need to manage the [session cookie](authUsers.md#session-cookie) to use the same session for your requesting application.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md b/i18n/pt/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
index 905fda5a19be2f..0ae93d057e67e4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-20/ServerWindow/monitor.md
@@ -35,7 +35,7 @@ A área "Visão Geral" fornece várias informações sobre o sistema, aplicativo

-Normalmente, você precisará verificar o [**Gerenciador de Licenças**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalhes
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/API/SessionClass.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
index c26001d78e0d51..e7b6c5a2bc11c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/API/SessionClass.md
@@ -3,7 +3,7 @@ id: SessionClass
title: Session
---
-Os objetos de sessão são retornados pelo comando [`Session`](../commands/session.md). Esses objetos fornecem ao desenvolvedor uma interface que permite gerenciar a sessão atual do usuário e executar ações como armazenar dados contextuais, compartilhar informações entre processos de sessão, iniciar processos preemptivos relacionados à sessão ou (somente na Web) gerenciar [privilégios](../ORDA/privileges.md).
+Os objetos de sessão são retornados pelo comando [`Session`](../commands/session.md). These objects provide the developer with an interface allowing to manage the current session and execute actions such as store contextual data, share information between session processes, launch session-related preemptive processes, or (web context only) manage [privileges](../ORDA/privileges.md).
:::tip Related blog posts
@@ -17,14 +17,15 @@ Os objetos de sessão são retornados pelo comando [`Session`](../commands/sessi
Os seguintes tipos de sessões são suportados por essa classe:
-- [**Sessões de usuário web**](WebServer/sessions.md): sessões de usuário web estão disponíveis quando [sessões escaláveis estão habilitadas em seu projeto](WebServer/sessions.md#enabling-web-sessions). Eles são usados para conexões Web e REST e podem receber privilégios.
-- [**Sessões de usuário cliente remoto**](../Desktop/clientServer.md#remote-user-sessions): em aplicações cliente/servidor, os usuários remotos têm suas próprias sessões gerenciadas no servidor.
-- [**Sessão de procedimentos armazenados**](https://doc.4d.com/4Dv20/4D/20/4D-Server-and-the-4D-Language.300-6330554.en.html): Todos os procedimentos armazenados executados no servidor compartilham a mesma sessão de usuário virtual.
-- [**Standalone session**](../Project/overview.md#development): Objeto de sessão local retornado em aplicativo de usuário único (útil nas fases de desenvolvimento e teste de aplicativos cliente/servidor).
+- [**Sessões de usuário web**](WebServer/sessions.md): sessões de usuário web estão disponíveis quando [sessões escaláveis estão habilitadas em seu projeto](WebServer/sessions.md#enabling-web-sessions). They are used for Web connections (including and REST access), and are controlled by assigned [privileges](../ORDA/privileges.md).
+- [**Desktop sessions**](../Desktop/sessions.md), which include:
+ - [**Remote user sessions**](../Desktop/sessions.md#remote-user-sessions): In client/server applications, remote users have their own sessions managed on the server.
+ - [**Stored procedures sessions**](../Desktop/sessions.md#stored-procedure-sessions): Virtual user session for all stored procedures executed on the server.
+ - [**Standalone sessions**](../Desktop/sessions.md#standalone-sessions): Local session object returned in single-user application (useful in development and test phases of client/server applications).
-:::note
+:::warning About session privileges
-A disponibilidade de propriedades e funções no objeto `Session` depende do tipo de sessão.
+All session types can handle privileges, but only the code executed in [web user sessions](WebServer/sessions.md) is actually controlled by session's privileges.
:::
@@ -54,10 +55,10 @@ A disponibilidade de propriedades e funções no objeto `Session` depende do tip
História
-| Release | Mudanças |
-| ------- | -------------------------- |
-| 21 | Support of remote sessions |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 18 R6 | Adicionado |
@@ -73,33 +74,27 @@ A disponibilidade de propriedades e funções no objeto `Session` depende do tip
#### Descrição
-:::note
-
-This function does nothing and always returns **True** with stored procedure sessions and standalone sessions.
-
-:::
-
The `.clearPrivileges()` function removes all the privileges associated to the session (excluding promoted privileges) and returns **True** if the execution was successful.
-A menos que esteja no modo ["forceLogin"](../REST/authUsers.md#force-login-mode), a sessão se torna automaticamente uma sessão de convidado. No modo "forceLogin", `.clearPrivileges()` não transforma a sessão em uma sessão Guest, apenas limpa os privilégios da sessão.
-
:::note
This function does not remove **promoted privileges** from the web process, whether they are added through the [roles.json](../ORDA/privileges.md#rolesjson-file) file or the [`promote()`](#promote) function.
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
```4d
-//Invalidar uma sessão de usuário da web
+//Invalidate a web user session
var $isGuest : Boolean
var $isOK : Boolean
$isOK:=Session.clearPrivileges()
-$isGuest:=Session.isGuest() //$isGuest é True
```
@@ -110,10 +105,10 @@ $isGuest:=Session.isGuest() //$isGuest é True
História
-| Release | Mudanças |
-| ------- | -------------------------- |
-| 21 | Support of remote sessions |
-| 20 R9 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R9 | Adicionado |
@@ -121,33 +116,28 @@ $isGuest:=Session.isGuest() //$isGuest é True
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ------- | :-------------------------: | -------------------------------------- |
-| lifespan | Integer | -> | Duração do token de sessão em segundos |
-| Resultados | Text | <- | UUID of the token |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ------- | :-------------------------: | ------------------------------------------------------------------------ |
+| lifespan | Integer | -> | Session token lifespan in seconds (web sessions only) |
+| Resultados | Text | <- | UUID of the token |
#### Descrição
-:::note
-
-This function is available with web user sessions and remote sessions. It returns an empty string in stored procedure and standalone sessions.
-
-:::
-
A função `.createOTP()` cria um novo OTP (uma senha única) para a sessão e retorna seu UUID. Esse token é exclusivo da sessão em que foi gerado.
Para mais informações sobre os tokens OTP, consulte [esta seção](../WebServer/sessions.md#session-token-otp).
-You can set a custom timeout by passing a value in seconds in *lifespan*. If an expired token is used to restore a session, it is ignored. By default, if the *lifespan* parameter is omitted:
+If an expired token is used to restore a session, it is ignored.
-- with web user sessions, the token is created with the same lifespan as the [`.idleTimeOut`](#idletimeout) of the session.
-- with remote sessions, the token is created with a 10 seconds lifespan.
+For web sessions, you can set a custom timeout by passing a value in seconds in *lifespan*. Por padrão, se o parâmetro *lifespan* for omitido, o token será criado com o mesmo tempo de vida que o [`.idleTimeOut`](#idletimeout) da sessão.
-For **web user sessions**, the returned token can be used in exchanges with third-party applications or websites to securely identify the session. Por exemplo, o token de sessão OTP pode ser usado com um aplicativo de pagamento.
+For desktop sessions, the token is created with a 10 seconds lifespan.
-For **remote sessions**, the returned token can be used on 4D Server to identitfy requests coming from a [remote 4D running Qodly forms in a Web area](../Desktop/clientServer.md#remote-user-sessions).
+The returned token can be used in exchanges with third-party applications or websites to securely identify the session. Por exemplo, o token de sessão OTP pode ser usado com um aplicativo de pagamento.
+
+The returned token can be used by 4D Server or 4D single-user application to identify requests coming from the web that [share the session](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses).
#### Exemplo
@@ -182,12 +172,6 @@ $token := Session.createOTP( 60 ) //o token é válido por 1 mn
#### Descrição
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.demote()` function removes the promoted privilege whose id you passed in *promoteId* from the web process, if it was previously added by the [`.promote()`](#promote) function.
If no privilege with *promoteId* was promoted using [`.promote()`](#promote) in the web process, the function does nothing.
@@ -262,10 +246,10 @@ $expiration:=Session.expirationDate //por exemplo "2021-11-05T17:10:42Z"
História
-| Release | Mudanças |
-| ------- | --------------------------------- |
-| 21 | Support of remote client sessions |
-| 20 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ----------------------------------------- |
+| 21 | Support of remote and standalone sessions |
+| 20 R6 | Adicionado |
@@ -289,9 +273,10 @@ This function returns privileges assigned to a Session using the [`setPrivileges
:::
-With remote client sessions, the privileges only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-With stored procedure sessions and standalone sessions, this function returns a collection only containing "WebAdmin".
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
@@ -360,10 +345,10 @@ $privileges := Session.getPrivileges()
História
-| Release | Mudanças |
-| ------- | ----------------------------------------------------------------------- |
-| 21 | Returns True for promoted privileges, Support of remote client sessions |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | ------------------------------------------------------------------------------- |
+| 21 | Returns True for promoted privileges, Support of remote and standalone sessions |
+| 18 R6 | Adicionado |
@@ -388,26 +373,27 @@ This function returns True for the *privilege* if called from a function that wa
:::
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
-With stored procedure sessions and standalone sessions, this function always returns True, whatever the *privilege*.
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
-Você deseja verificar se o privilégio "WebAdmin" está associado à sessão do usuário da Web:
+You want to check if the "CreateInvoices" privilege is associated to the web user session:
```4d
-If (Session.hasPrivilege("WebAdmin"))
- //Acesso é concedido, não faça nada
+If (Session.hasPrivilege("CreateInvoices"))
+ //Access to Invoice creation features
Else
- //Exibe uma página de autenticação
+ //No access to Invoice creation features
End if
```
#### Veja também
-[*Blog posts about this feature*](https://blog.4d.com/?s=hasPrivilege)
+[*Restrict data according to privileges or information saved in session storage* (blog post)](https://blog.4d.com/?s=hasPrivilege)
@@ -443,10 +429,9 @@ Você pode usar essa propriedade para obter o objeto [`.storage`](#storage) de u
História
-| Release | Mudanças |
-| ------- | -------- |
-
-|v18 R6|Adicionado|
+| Release | Mudanças |
+| ------- | ---------- |
+| 18 R6 | Adicionado |
@@ -501,26 +486,16 @@ End if
#### Descrição
-:::note
-
-Essa propriedade só está disponível com cliente remoto, procedimento armazenado e sessões autônomas.
-
-:::
+The `.info` property describes the desktop or web session.
-A propriedade `.info` descreve o cliente remoto ou a sessão do procedimento armazenado no servidor, ou a sessão autônoma.
-
-:::note
-
-- O objeto `.info` é o mesmo objeto retornado na propriedade "session" pelo comando [`Process activity`](../commands/process-activity.md) para sessões de procedimento armazenado e cliente remoto.
-- O objeto `.info` é o mesmo objeto retornado pelo comando [`Session info`](../commands/session-info.md) para uma sessão autônoma.
-
-:::
+- **Remote sessions** and **Stored procedure sessions**: The `.info` object is the same object as the one returned in the "session" property by the [`Process activity`](../commands/process-activity.md) command.
+- **Standalone sessions**: The `.info` object is the same object as the one returned by the [`Session info`](../commands/session-info.md) command.
O objeto `.info` contém as seguintes propriedades:
| Propriedade | Tipo | Descrição |
| ---------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
-| type | Text | Tipo de sessão: "remote", "storedProcedure", "standalone" |
+| type | Text | Session type: "remote", "storedProcedure", "standalone", "rest", "web" |
| userName | Text | Nome de usuário 4D (o mesmo valor que [`.userName`](#username)) |
| machineName | Text | Sessões remotas: nome da máquina remota. Sessão de procedimentos armazenados: nome da máquina do servidor. Sessão autônoma: nome da máquina |
| systemUserName | Text | Sessões remotas: nome da sessão do sistema aberta na máquina remota. |
@@ -555,9 +530,9 @@ Desde `. nfo` é uma propriedade computada, é recomendável chamá-lo uma vez e
-| Parâmetro | Tipo | | Descrição |
-| ---------- | ---------- | :-------------------------: | ----------------------------------------------------------- |
-| Resultados | Parâmetros | <- | True se a sessão for uma sessão Guest, False caso contrário |
+| Parâmetro | Tipo | | Descrição |
+| ---------- | ---------- | :-------------------------: | -------------------------------------------------------------------------------------- |
+| Resultados | Parâmetros | <- | True if session is a Guest one, False otherwise (web sessions only) |
@@ -565,11 +540,17 @@ Desde `. nfo` é uma propriedade computada, é recomendável chamá-lo uma vez e
:::note
-Essa função sempre retorna **False** com cliente remoto, procedimento armazenado e sessões autônomas.
+This function always returns **False** with desktop sessions.
:::
-A função `.isGuest()` retorna True se a sessão for uma sessão Guest (ou seja, não tem privilégios).
+The `.isGuest()` function returns True as long as `setPrivileges()` is not called in the session or after a [Qodly logout](https://developer.4d.com/qodly/4DQodlyPro/force-login#logout) has been executed in the session.
+
+:::note Compatibidade
+
+In a REST session when the [**Force login mode**](../REST/authUsers.md#force-login-mode) is not enabled, `.isGuest()` returns True if the session has no privileges.
+
+:::
#### Exemplo
@@ -608,12 +589,6 @@ End if
#### Descrição
-:::note
-
-This function does nothing in remote client, stored procedure, and standalone sessions.
-
-:::
-
The `.promote()` function adds the privilege defined in the *privilege* parameter to the current process during the execution of the calling function and returns the id of the promoted privilege.
Dynamically adding privileges is useful when access rights depend on the execution context, which cannot be fully defined in the "roles.json" file. This is particularly relevant when the same function can be executed by users with different access levels. The use of `.promote()` ensures that only the current process is granted the necessary privileges, without affecting others.
@@ -629,6 +604,11 @@ The returned id is incremented each time a privilege is dynamically added to the
To remove a privilege dynamically, call the `demote()` function with the appropriate id.
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
+
#### Exemplo
Several users connect to a single endpoint that serves different applications. A user from application #1 does not need the "super_admin" privilege because they don't create "VerySensitiveInfo". A user from application #2 needs "super_admin" privilege.
@@ -687,12 +667,6 @@ End if
#### Descrição
-:::note
-
-Essa função só está disponível com sessões de usuário Web. Ele retorna False em outros contextos.
-
-:::
-
A função `.restore()` substitui a sessão do usuário da web pela sua sessão original correspondente ao *token* UUID. O armazenamento e os privilégios da sessão são restaurados.
Se a sessão original do usuário tiver sido restaurada corretamente, a função retornará `true`.
@@ -731,7 +705,7 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
| Release | Mudanças |
| ------- | ------------------------------------------- |
-| 21 | Support of remote client sessions |
+| 21 | Support of remote and standalone sessions |
| 19 R8 | Suporte da propriedade "roles" das Settings |
| 18 R6 | Adicionado |
@@ -752,12 +726,6 @@ Function callback($request : 4D.IncomingMessage) : 4D.OutgoingMessage
#### Descrição
-:::note
-
-This function does nothing and always returns **False** with stored procedure sessions and standalone sessions.
-
-:::
-
A função `.setPrivileges()` associa os privilégios e/ou papéis definidos no parâmetro para a sessão e retorna **True** se a execução foi bem sucedida .
- No parâmetro *privilege*, passe uma cadeia de caracteres contendo um nome de privilégio (ou vários nomes de privilégio separados por vírgula).
@@ -782,7 +750,10 @@ Como padrão quando não houver um privilégio associado à sessão, a sessão
A propriedade [`userName`](#username) está disponível no nível do objeto de sessão (somente leitura).
-Regarding remote client sessions, the function only concerns the code executed in the context of a [web request sent through a Web area](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
+:::note
+
+Keep in mind that privileges only apply to the code executed through web accesses, whatever the [session type](#session-types) on which this function is executed.
+:::
#### Exemplo
@@ -814,10 +785,10 @@ End if
História
-| Release | Mudanças |
-| ------- | ------------------------------------------------------------- |
-| 20 R5 | Suporte a sessões de procedimento armazenado e cliente remoto |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | --------------------------- |
+| 20 R5 | Support of desktop sessions |
+| 18 R6 | Adicionado |
@@ -839,6 +810,8 @@ Você pode obter a propriedade `.storage` de uma sessão usando o comando [`Sess
:::
+When a desktop session and a web session are [shared using an OTP](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), they also share the same `.storage` object.
+
#### Exemplo de sessão na web
Você deseja armazenar o IP do cliente na propriedade `.storage`. Você pode escrever no método de banco de dados `On Web Authentication`:
@@ -868,10 +841,10 @@ End use
História
-| Release | Mudanças |
-| ------- | ------------------------------------------------------------- |
-| 20 R5 | Suporte a sessões de procedimento armazenado e cliente remoto |
-| 18 R6 | Adicionado |
+| Release | Mudanças |
+| ------- | --------------------------- |
+| 20 R5 | Support of desktop sessions |
+| 18 R6 | Adicionado |
@@ -881,10 +854,10 @@ End use
A propriedade `.userName` contém o nome de usuário associado à sessão. Pode usá-la para identificar o usuário dentro de seu código.
-- Com sessões da Web, essa propriedade é uma cadeia de caracteres vazia por padrão. Ele pode ser definido usando a propriedade `privileges` da função [`setPrivileges()`](#setprivileges).
-- Com sessões de procedimento remotas e armazenadas, esta propriedade retorna o mesmo nome de usuário que o comando [`Current user`](../commands-legacy/current-user.md).
-- Com sessões autônomas, essa propriedade contém "designer" ou o nome definido com o comando [`SET USER ALIAS`](../commands-legacy/set-user-alias.md).
+- **Web sessions**: This property is an empty string by default. Ele pode ser definido usando a propriedade `privileges` da função [`setPrivileges()`](#setprivileges).
+- **Remote/Stored procedure sessions**: This property returns the same user name as the [`Current user`](../commands-legacy/current-user.md) command.
+- **Standalone sessions**: This property contains "designer" or the name set with the [`SET USER ALIAS`](../commands-legacy/set-user-alias.md) command.
-Essa propriedade é **somente leitura**.
+This property is **read only** for desktop sessions.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/cli.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/cli.md
index 2a5d25a2b5d896..21837073b19d46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/cli.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/cli.md
@@ -50,7 +50,7 @@ Sintaxe:
| `--skip-onstartup` | | Inicia o projecto sem executar quaisquer métodos "automáticos", incluindo os métodos de base de dados `On Startup` e `On Exit` |
| `--startup-method` | Nome do método projecto (string) | Método de projecto a executar imediatamente após o método de base `On Startup` (se não for ignorado com `--skip-onstartup`). |
-(\*) Alguns diálogos são exibidos antes do banco de dados ser aberto, para que seja impossível escrever no arquivo Diagnóstico de log (alerta de licença, diálogo de conversão, seleção de banco de dados, seleção de arquivo de dados). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
+(\*) Some dialogs are displayed before the database is opened, so that it's impossible to write into the [Diagnostic log file](Debugging/debugLogFiles.md#4ddiagnosticlogtxt) (license alert, conversion dialog, database selection, data file selection). Nesses casos, uma mensagem de erro é criada tanto no stream stderr e no arquivo de eventos do sistema, e então a aplicação fecha.
### Exemplos
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/licenses.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
index 41e9c6471e39ba..a38439cee6a5bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Admin/licenses.md
@@ -32,7 +32,7 @@ As licenças de implementação podem ser incorporadas na etapa de compilação
Algumas licenças 4D têm uma data de validade, após a qual devem ser renovadas. Quando a assinatura da licença for renovada na loja 4D, suas licenças serão atualizadas automaticamente nos seus aplicativos 4D na inicialização [quando você logar](GettingStarted/Installation.md) no assistente de boas-vindas.
-Em alguns casos, a atualização da licença pode exigir que você clique no botão [**Atualizar**](#refresh) da caixa de diálogo Gerenciador de Licenças.
+In some cases, the license update may require that you click on the [**Refresh** button](#refresh) of the Licenses Manager dialog box.
## Ativando licenças
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
index fa736ab799085f..7d7aaea444e8c3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Debugging/debugger.md
@@ -42,7 +42,7 @@ A janela do depurador é normalmente apresentada na máquina onde o código é e
:::note Notas
- Se o servidor estiver a funcionar sem interface, não pode ser apresentada qualquer janela do depurador no servidor, pelo ser necessário utilizar o depurador remoto. Ver [Depuración desde máquinas remotas](./debugging-remote.md).
-- Você também pode [anexar o depurador do Qodly Studio a um aplicativo do Servidor 4D](../WebServer/qodly-studio.md#using-qodly-debugger-on-4d-server) se você precisar depurar páginas Qodly em um ambiente implantado.
+- Você também pode [anexar o depurador do Qodly Studio a um aplicativo do Servidor 4D](https://developer.4d.com/qodly/4DQodlyPro/debugging#using-qodly-debugger-on-4d-server) se você precisar depurar páginas Qodly em um ambiente implantado.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/building.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/building.md
index 3d02ec3e74bac3..8f76955d45ae1d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/building.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/building.md
@@ -408,8 +408,8 @@ Os elementos devem ser instalados:
Para ativar este recurso, adicione as chaves DatabaseToEmbedInClientWinFolder e/ou DatabaseToEmbedInClientMacFolder no arquivo de configurações do buildApp. Quando uma das chaves estiver presente, a aplicação cliente gera uma aplicação monousuário: a estrutura compilada, ao inves do arquivo EnginedServer.4Dlink é colocada na pasta "Database".
-- Se existir uma pasta de dados padrão no aplicativo de usuário único, uma licença será incorporada.
-- Se não existir uma pasta de dados padrão no aplicativo de usuário único, ela será executada sem arquivo de dados e sem licença.
+- If a default data folder exists in the single-user application, a license is embedded.
+- If no default data folder exists in the single-user application, it will be executed without data file and without license.
O cenário básico é o seguinte:
@@ -498,10 +498,11 @@ Os seguintes módulos opcionais podem ser desmarcados:
- **SpellChecker**: usado para [correção ortográfica](../FormObjects/properties_Entry.md#auto-spellcheck) e comandos disponíveis para áreas de entrada e para áreas 4D Write Pro.
- **4D Updater**: Controla a [atualização automática](#what-is-a-clientserver-application) das partes do cliente e é usado pelo comando `SET UPDATE FOLDER` para [atualizações automáticas do servidor](#automatic-updating-of-server-or-single-user-applications).
+- **4D Qodly Pro**: Includes [Qodly Studio and its web renderering features](https://developer.4d.com/qodly/).
## Página de licenças e certificados
-A página de Licenças e Certificados pode ser usada:
+The Licenses & Certificate page can be used to:
- configure the [deployment license(s)](../Admin/licenses.md#deployment-licenses) that you want to integrate into your [stand-alone](#application-page) or [client-server](#clientserver-page) application,
- assinar a aplicação através de um certificado no macOS.
@@ -536,7 +537,7 @@ Um aplicativo de avaliação permite que o usuário final execute uma versão co
- O comando [`License info`](../commands/license-info.md) permite que você saiba o tipo de licença do aplicativo (coleção *.attributes*) e sua data de expiração (objeto *.expirationDate*).
- A chave xml BuildApplication [`EvaluationMode`](https://doc.4d.com/4Dv20R8/4D/20-R8/EvaluationMode.300-7542468.en.html) permite que você gerencie as versões de avaliação.
-- O comando [`CHANGE LICENCES`](../commands-legacy/change-licenses.md) não faz nada quando chamado a partir de uma versão de avaliação.
+- The [`CHANGE LICENSES`](../commands-legacy/change-licenses.md) command does nothing when called from an evaluation version.
:::
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
index a4708672d7465a..b73ed88ac74a04 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/clientServer.md
@@ -85,93 +85,3 @@ No entanto, você precisa prestar atenção às seguintes diferenças de comport
> Não é recomendado instalar plug-ins ou componentes no nível da aplicação 4D, ou 4D Server.
-## Sessões de usuário remoto
-
-No servidor, o comando [`Session`](../commands/session.md) retorna um objeto `session` descrevendo a sessão atual do usuário. Este objeto é tratado através das funções e propriedades da [classe `sessão`](../API/SessionClass.md).
-
-:::tip Related blog posts
-
-[Objeto de sessão remota 4D com conexão de Cliente/Servidor e procedimento armazenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure re).
-
-:::
-
-### Utilização
-
-The `session` object allows you to handle information and privileges for the remote user session.
-
-Você pode compartilhar dados entre todos os processos da sessão do usuário usando o objeto compartilhado [`session.storage`](../API/SessionClass.md#storage). Por exemplo, você pode iniciar um procedimento de autenticação e verificação do usuário quando um cliente se conecta ao servidor, envolvendo a inserção de um código enviado por e-mail ou SMS no aplicativo. Em seguida, você adiciona as informações do usuário ao armazenamento de sessão, permitindo que o servidor identifique o usuário. Dessa forma, o servidor 4D pode acessar as informações do usuário para todos os processos do cliente, permitindo a escrita de código personalizado de acordo com o papel do usuário.
-
-You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
-
-### Disponibilidade
-
-O objeto `session` do usuário remoto está disponível em:
-
-- Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente),
-- Triggers,
-- ORDA [funções do modelo de dados](../ORDA/ordaClasses.md) (exceto aquelas declaradas com a palavra-chave [`local`](../ORDA/ordaClasses.md#local-functions),
-- 'Conexão aberta com o servidor' e 'Conexão com o servidor' métodos de banco de dados.
-
-:::info
-
-Todos os procedimentos armazenados no servidor compartilham a mesma sessão do usuário virtual. Para obter mais informações, consulte [esta página em doc.4d.com](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html).
-
-:::
-
-### Sharing the session with Qodly pages in Web areas
-
-Remote client sessions can be used to handle Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
-
-To manage this configuration, you need to use remote client sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside a single user session. You just have to share the same session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, whatever the request origin.
-
-Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request from a Web area, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges only apply to requests coming from the web, not to the 4D code executed in a standard remote session.
-
-Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token on the server for the user session, you add the token (through the `$4DSID` parameter value) to web requests sent from web areas containing Qodly pages so that the user session on the server is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
-
-:::tip Related blog post
-
-[Share your 4D remote client session with web accesses](https://blog.4d.com/share-your-4d-remote-client-session-with-web-accesses)
-
-:::
-
-#### Exemplo
-
-```4d
-var $otp : Text
-
-// Some privileges are put in the remote user session on the server for a further web access
-ds.resetPrivileges("basic")
-
-// An OTP is created on the server for this remote client session
-$otp:=ds.getOTP()
-
-
-// The user has already the required privileges for a web access
-// and the same session is shared between this remote user and the web Qodly app
-WA OPEN URL(*; "Welcome"; "http://127.0.0.1/$lib/renderer/?w=People&$4DSID="+$otp)
-
-```
-
-*resetPrivileges()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and puts some privileges in the session for a further web access
-
-Function resetPrivileges($priv : Text)
-
- Session.clearPrivileges()
- Session.setPrivileges($priv)
-```
-
-*getOTP()* function in the Datastore class:
-
-```4d
-// This function is run on the server
-// and generates an OTP able to retrieve this remote user session
-
-Function getOTP(): Text
-
- return Session.createOTP()
-
-```
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
new file mode 100644
index 00000000000000..59ac7ed6aa960d
--- /dev/null
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Desktop/sessions.md
@@ -0,0 +1,156 @@
+---
+id: desktop-sessions
+title: Desktop Sessions
+---
+
+A **desktop session** is a user-related execution context on 4D Server or 4D single-user that does not result from any web or REST access.
+
+Just like in a [**web user session**](../WebServer/sessions.md), the code executed in a desktop session has access to a [`Session`](../API/SessionClass.md) object which provides functions and properties allowing you to store session values and to share them between user processes, for example using the [`session.storage`](../API/SessionClass.md#storage) object.
+
+However, unlike the code executed in web user sessions, the code executed in desktop sessions is not controlled by [roles and privileges](../ORDA/privileges.md). It can access any parts of the 4D application, including ORDA and data model classes. On 4D Server, [users and groups feature](../Users/handling_users_groups.md) can manage user accesses.
+
+You can nevertheless [**share** a desktop session with a web session](#sharing-a-desktop-session-for-web-accesses) so that a desktop user can access your 4D application through a web interface, using for example Qodly pages and Web areas.
+
+## Tipos de sessão
+
+Desktop sessions include:
+
+- **Remote user sessions**: In client/server applications, the session that manages the user processes on the server.
+- **Stored procedures sessions**: In client/server applications, the unique virtual user session that manages all stored procedures executed on the server.
+- **Standalone sessions**: Local session object returned in single-user application (useful in development and test phases of client/server applications).
+
+:::note
+
+Keep in mind that [**Web sessions**](../WebServer/sessions.md) are used as soon as the 4D project is accessed through web or REST requests and [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
+
+:::
+
+The following diagram shows the different session types and how they interact:
+
+
+
+## Sessões de usuário remoto
+
+On the server, in "user processes" (i.e. processes related to remote users), the [`Session`](../commands/session.md) command returns a `session` object describing the current user session. Este objeto é tratado através das funções e propriedades da [classe `sessão`](../API/SessionClass.md).
+
+:::note
+
+On a remote 4D, the `session` object always returns null.
+
+:::
+
+:::tip Related blog posts
+
+[Objeto de sessão remota 4D com conexão de Cliente/Servidor e procedimento armazenado](https://blog.4d.com/new-4D-remote-session-object-with-client-server-connection-and-stored-procedure re).
+
+:::
+
+### Utilização
+
+The `session` object allows you to handle information and privileges for the remote user session.
+
+Você pode compartilhar dados entre todos os processos da sessão do usuário usando o objeto compartilhado [`session.storage`](../API/SessionClass.md#storage). Por exemplo, você pode iniciar um procedimento de autenticação e verificação do usuário quando um cliente se conecta ao servidor, envolvendo a inserção de um código enviado por e-mail ou SMS no aplicativo. Em seguida, você adiciona as informações do usuário ao armazenamento de sessão, permitindo que o servidor identifique o usuário. Dessa forma, o servidor 4D pode acessar as informações do usuário para todos os processos do cliente, permitindo a escrita de código personalizado de acordo com o papel do usuário.
+
+You can also assign privileges to a remote user session to control access when the session comes from Qodly pages running in web areas.
+
+### Disponibilidade
+
+O objeto `session` do usuário remoto está disponível em:
+
+- Métodos de projeto que têm o atributo [Execute on Server](../Project/code-overview.md#execute-on-server) (são executados no processo "geminado" do processo do cliente),
+- Triggers,
+- ORDA [data model functions](../ORDA/ordaClasses.md) (except those declared with the [`local`](../ORDA/ordaClasses.md#local-functions) keyword),
+- Database methods such as [`On Server Open Connection`](../commands/on-server-open-connection-database-method) and [`On Server Close Connection`](../commands/on-server-close-connection-database-method).
+
+## Stored procedure sessions
+
+On the server, all [stored procedures](https://doc.4d.com/4Dv20/4D/20/Stored-Procedures.300-6330553.en.html) share the same virtual user session.
+
+### Utilização
+
+You can share data between all processes of a store procedure session using the [`session.storage`](../API/SessionClass.md#storage) shared object.
+
+### Disponibilidade
+
+The `session` object of stored procedures is available from:
+
+- Project methods that are called by the [`Execute on Server`](../commands-legacy/execute-on-server.md) command,
+- ORDA [data model functions](../ORDA/ordaClasses.md) called from a stored procedure,
+- Database methods such as [`On Server Startup`](../commands/on-server-startup-database-method) and [`On Server Shutdown`](../commands/on-server-shutdown-database-method).
+
+## Standalone sessions
+
+A standalone session is the single-user session running when you work locally with 4D.
+
+### Utilização
+
+The standalone session can be used to develop and test your client/server application and its interaction with web sessions and [OTP sharing](#sharing-a-desktop-session-for-web-accesses). You can use the `session` object in your code in standalone session just as the `session` object of the remote sessions.
+
+### Disponibilidade
+
+The `session` object of a standalone is available from all methods and code executed on the 4D application.
+
+## Sharing a desktop session for web accesses
+
+Desktop sessions can be used to handle web accesses to the application by the same user and thus, manage their [privileges](../ORDA/privileges.md). This possibility is particularly useful for Client/Server applications where [Qodly pages](https://developer.4d.com/qodly/4DQodlyPro/pageLoaders/pageLoaderOverview) are used for the interface, running on remote machines. With this configuration, your applications have modern CSS-based web interfaces but still benefit from the power and simplicity of integrated client/server development. In such applications, Qodly pages are executed within standard 4D [Web areas](../FormObjects/webArea_overview.md).
+
+To manage this configuration in production, you need to use remote user sessions. Actually, requests coming from both the remote 4D application and its Qodly pages loaded in Web areas need to work inside the same session. You just have to share the session between the remote client and its web pages so that you can have the same [session storage](../API/SessionClass.md#storage) and client license, wherever the request comes from (web or remote 4D).
+
+Note that [privileges](../ORDA/privileges.md) should be set in the session before executing a web request, so that the user automatically gets their privileges for web access (see example). Keep in mind that privileges **only apply to requests coming from the web**.
+
+You can develop this configuration in your 4D Developer application (single-user): you can use the [standalone session](#standalone-sessions) to code and test all features related to web access, whether your application is intended for single-user or client/server deployment.
+
+Shared sessions are handled through [OTP tokens](../WebServer/sessions.md#session-token-otp). After you created an OTP token for the desktop session on the server or on the single-user 4D application, you add the token (through the `$4DSID` parameter value) to web requests sent from Web areas containing Qodly pages (or from any web browser) so that the user session on the server or the single-user application is identified and shared. On the web server side, if a web request contains an *OTP id* in the $4DSID parameter, the session corresponding to this OTP token is used.
+
+:::note
+
+When creating an OTP token in client/server environment, you need to execute the [OTP creation code](../API/SessionClass.md#createotp) **on the server** (the `Session` object is Null on a remote 4D). You can use for example the [`On Server Open Connection`](../commands-legacy/on-server-open-connection-database-method.md) database method.
+
+:::
+
+:::tip Related blog post
+
+[Embed Qodly pages in a 4D web area without extra cost](https://blog.4d.com/embed-qodly-pages-in-a-4d-web-area-without-extra-cost)
+
+:::
+
+### Exemplo
+
+In a form, get an OTP and open a Qodly page in a Web area:
+
+```4d
+Form.otp:=getOTP
+
+Form.url:="http://localhost/$lib/renderer/?w=Products&$4DSID="+Form.otp
+
+WA OPEN URL(*; "QodlyPage"; Form.url)
+
+```
+
+The *getOTP* project method (with the [**Execute on server** property](../Project/project-method-properties.md#execute-on-server) in Client/Server):
+
+```4d
+// In Client Server:
+// ----------------
+// Method executed on the server because the session object is on the server
+// The Session object is Null on the client
+//
+
+#DECLARE() : Text
+
+return Session.createOTP()
+
+```
+
+Here is the code used to put the "viewProducts" privilege in the session:
+
+```4d
+// In Client Server:
+// ----------------
+// This code must be executed on the server because the session object is on the server
+// The Session object is Null on the client
+
+Session.clearPrivileges() // Clean the session from its old privileges
+Session.setPrivileges("viewProducts")
+```
+
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
index a8f2ebed15c8d0..67a39c8d81d25d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/FormEditor/forms.md
@@ -96,81 +96,6 @@ Não há restrições quanto ao número de páginas que um formulário pode ter.
Um formulário de múltiplas páginas possui tanto uma página de fundo quanto várias páginas de exibição. Objetos que são colocados na página de fundo podem ser visíveis em todas as páginas de exibição, mas só podem ser selecionados e editados na página de fundo. Em formulários de várias páginas, você deve colocar sua paleta de botões na página de fundo. Você também precisa incluir um ou mais objetos na página de fundo que forneçam ferramentas de navegação de página para o usuário.
-## Fluent UI rendering (Developer Preview)
-
-On Windows, 4D supports **Fluent UI** form rendering, Microsoft's modern graphical user interface design, based upon **WinUI 3** technology. **WinUI 3** is the foundation of the Windows App SDK and represents the upcoming Windows graphical interfaces.
-
-Fluent UI rendering offers modern and attractive controls, support of dark/light system themes, smoother rendering optimized for high-resolution displays, and consistent user experience aligned with recent Microsoft applications.
-
-| Light theme | Dark theme |
-| --------------------------------------- | -------------------------------------------- |
-|  |  |
-
-:::caution Prévia do desenvolvedor
-
-Fluent UI support is currently in the Developer Preview phase. Não deve ser usado na produção.
-
-:::
-
-:::info Disponibilidade
-
-This feature can be used **in 4D projects on Windows**. It is not available on macOS or in binary 4D databases on Windows.
-
-:::
-
-:::tip Related blog post
-
-[Modernize your 4D interfaces with Fluent UI](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui)
-
-:::
-
-### Requisitos
-
-The Fluent UI rendering requires that the [**Windows App SDK version 1.7.3**](https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/downloads) be installed. You need to install this SDK on any Windows machine displaying your forms.
-
-If the Windows App SDK is not properly installed, 4D will render all your forms in classic mode with no error.
-
-### Enabling the Fluent UI rendering
-
-You can enable the Fluent UI rendering mode at the application level or at the form level. Form setting has priority over application setting.
-
-#### Application setting
-
-Check the **Use Fluent UI on Windows** option in the "Interface" page of the Settings dialog box.
-
-
-
-In this case, the Fluent UI rendering mode will be used by default on Windows for all forms.
-
-#### Form setting
-
-Each form can define its own rendering via the **Widget appearance** property. As opções abaixo estão disponíveis:
-
-- **Inherited**: inherits the global application setting (default),
-- **Classic**: uses the classic Windows style,
-- **Fluent UI**: enables the modern rendering based on Fluent UI.
- 
-
-The corresponding [JSON form property](./properties_JSONref.md) is `fluentUI` with value undefined (i.e. inherited, default value), "true" or "false".
-
-### Specific behaviors
-
-When using 4D forms with Fluent UI rendering, you need to pay attention to the following points:
-
-- The new `FORM Windows theme` command returns the actual display theme of the current form. Possible values: "Classic" or "FluentUI". If there is no current form or the command is called on macOS, and empty string is returned.
-- If [`GET STYLE SHEET INFO`](../commands-legacy/get-style-sheet-info.md) is called in the context of a form, the information returned relates to the current appearance of the form (Classic or FluentUI). If the command is called outside the context of a form, the information returned relates to the [global project settings](#application-setting).
-- [`SET MENU ITEM STYLE`](../commands-legacy/set-menu-item-style.md) with `Underline` *itemStyle* parameter is not supported (ignored) for pop up menus.
-- [Stepper](../FormObjects/stepper.md) form object does not support [double-click event](../Events/onDoubleClicked.md).
-- [Circle buttons](../FormObjects/button_overview.md#circle) are supported (similar as macOS).
-- The [`WA ZOOM IN`](../commands-legacy/wa-zoom-in.md) / [`WA ZOOM OUT`](../commands-legacy/wa-zoom-out.md) commands are not supported in Web areas with system rendering engine.
-- A focus ring can be added to picture and text [inputs](../FormObjects/input_overview.md).
-
-:::info Limitations
-
-This **Developer preview** includes some limitations, which are [listed in the related blog post](https://blog.4d.com/modernize-your-4d-interfaces-with-fluent-ui).
-
-:::
-
## Formulários herdados
Formulários 4D podem usar e ser usados como "formulários herdados," o que significa que todos os objetos do *Formulário A* podem ser usados no *Formulário B*. Neste caso, *Formulário B* "herda" os objetos do *Formulário A*.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
index e1f1d4853cf367..1b6cf75aaf74f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/FormObjects/subform_overview.md
@@ -174,12 +174,21 @@ A comunicação entre o formulário pai e as instâncias do subformulário pode
> El comando `GOTO OBJECT` busca el objeto de destino en el formulario padre aunque se ejecute desde un subformulario.
-#### Comando CALL SUBFORM CONTAINER
+#### CALL SUBFORM CONTAINER command {#call-subform-container-command}
El comando `CALL SUBFORM CONTAINER` permite que una instancia de subformulario envíe un [evento](../Events/overview.md) al objeto contenedor del subformulario, que puede procesarlo en el contexto del formulario padre. O evento é recebido no método do objeto contentor. Ele pode estar na origem de qualquer evento detectado pelo subformulário (clique, arrastar e soltar etc.).
O código do evento não tem restrições (por exemplo, 20000 ou -100). Puede utilizar un código que corresponda a un evento existente (por ejemplo, 3 para `On Validate`), o utilizar un código personalizado. No primeiro caso, você só pode usar eventos que você verificou na Lista de Propriedades para sub-formulários. No segundo caso, o código não deve corresponder a nenhum evento de formulário existente. Recomenda-se usar um valor negativo para ter certeza de que esse código não será usado por 4D em versões futuras.
+Supported events for subforms are:
+
+- [On Load](../Events/onLoad.md)
+- [On Validate](../Events/onValidate.md)
+- [On Getting Focus](../Events/onGettingFocus.md)
+- [On Losing Focus](../Events/onLosingFocus.md)
+- [On Data Change](../Events/onDataChange.md)
+- [On Unload](../Events/onUnload.md)
+
Para más información, consulte la descripción del comando `CALL SUBFORM CONTAINER`.
#### Comando EXECUTE METHOD IN SUBFORM
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/Notes/updates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/Notes/updates.md
index 57c737124d2177..b138a74deefd24 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/Notes/updates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/Notes/updates.md
@@ -18,9 +18,8 @@ Leia [**O que há de novo no 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/
- New [ORDA events on data](../ORDA/orda-events.md): validateSave, saving, afterSave, validateDrop, dropping, afterDrop.
- Support of the new [`restrictedByDefault` property](../ORDA/privileges.md#restriction-modes) in the `roles.json` file to block access by default to all resources without explicit permission.
- New option allowing to use certificates from Windows Certificate Store instead of a local certificates folder in [`HTTPRequest`](../API/HTTPRequestClass.md#4dhttprequestnew) and [`HTTPAgent`](../API/HTTPAgentClass.md#4dhttpagentnew) classes.
-- Client/server:
- - You can display Qodly pages in Web areas and [share the remote client session](../Desktop/clientServer.md#sharing-the-session-with-qodly-pages-in-web-areas).
- - The [QUIC network layer](../settings/client-server.md#network-layer) has been enhanced to handle network interface changes transparently, for example when you travel with your laptop. See [this blog post](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
+- [Sessions API](../API/SessionClass.md) now supports all [desktop sessions](../Desktop/sessions.md) and you can [share a desktop session with a web access](../Desktop/sessions.md#sharing-a-desktop-session-for-web-accesses), facilitating the development of applications using Qodly pages in Web areas.
+- The [QUIC network layer](../settings/client-server.md#network-layer) has been enhanced to handle network interface changes transparently, for example when you travel with your laptop. See [this blog post](https://blog.4d.com/work-and-move-with-quic-and-network-switching).
- You can now [create components directly from the host project](../Extensions/develop-components.md#creating-components) and [edit their code from a dedicated tab](../Extensions/develop-components.md#editing-all-component-code) in the 4D Explorer without leaving or restarting the project.
- The 4D product activation step has been simplified and automated during [sign-in](../GettingStarted/Installation.md#sign-in).
- 4D AIKit component: new features to [invoke a specific tool automatically](../aikit/Classes/OpenAIChatHelper.md#registertool) and [specify a response format](../aikit/Classes/OpenAIChatCompletionsParameters.md#response-format).
@@ -30,10 +29,6 @@ Leia [**O que há de novo no 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/
- [**Fixed bug list**](https://bugs.4d.fr/fixedbugslist?version=21): list of all bugs that have been fixed in 4D 21.
- [**4D Qodly Pro Release notes**](https://developer.4d.com/qodly/4DQodlyPro/release-notes): what's new in Qodly Studio.
-#### Prévia do desenvolvedor
-
-[**Fluent UI** rendering for 4D forms](../FormEditor/forms.md#fluent-ui-rendering-developer-preview) is proposed in Developer Preview during the beta test program.
-
#### Mudanças de comportamento
:::caution Index rebuild
@@ -43,7 +38,9 @@ Leia [**O que há de novo no 4D 21**](https://blog.4d.com/en-whats-new-in-4d-21/
:::
- Web services (SOAP): when [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled, web services now run in [**preemptive processes**](../Develop/preemptive.md) in compiled mode. Make sure that your SOAP code is thread-safe and that the session in which it runs has appropriate [privileges](../API/SessionClass.md#setprivileges).
-- Web server: the support of deprecated `4DSYNC/` and `4DCGI/` URLs is removed. No specific processing is done on these URLs anymore.
+- Web server:
+ - the support of deprecated `4DSYNC/` and `4DCGI/` URLs is removed. No specific processing is done on these URLs anymore,
+ - web processes are no longer recycled when [scalable sessions](../WebServer/sessions.md#enabling-web-sessions) are enabled.
- Web user sessions are now returned by [`Process activity`](../commands/process-activity.md).
- PHP commands are now [deprecated](https://blog.4d.com/deprecation-of-php-commands-removal-of-4d-built-in-php-interpreter/) and should no longer be used in your developments.
- The [`HIGHLIGHT TEXT`](../commands/highlight-text) command is now supported in the context of subforms.
@@ -294,7 +291,7 @@ Se suas aplicações 4D utilizam conexões TLS, é recomendado que você faça a
| Biblioteca | Versão atual | Atualizado em 4D | Comentário |
| ---------- | -------------------------------------- | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- |
-| BoringSSL | fa47b1d | **21** | Usado para QUIC |
+| BoringSSL | 9b86817 | **21** | Usado para QUIC |
| CEF | 7258 | **21** | Chromium 139 |
| Hunspell | 7.3.27 | 20 | Usado para verificação ortográfica em formulários 4D e 4D Write Pro |
| ICU | 77.1 | **21** | This upgrade forces an automatic rebuild of alphanumeric, text and object indexes. |
@@ -304,7 +301,7 @@ Se suas aplicações 4D utilizam conexões TLS, é recomendado que você faça a
| Libuv | 1.51.0 | **21** | Usado para QUIC |
| libZip | 1.11.4 | **21** | Utilizado pelos componentes zip class, 4D Write Pro, svg e serverNet |
| LZMA | 5.8.1 | **21** | |
-| ngtcp2 | 1.16.0 | **21** | Usado para QUIC |
+| ngtcp2 | 1.18.0 | **21** | Usado para QUIC |
| OpenSSL | 3.5.2 | **21** | |
| PDFWriter | 4.7.0 | **21** | Used for [`WP Export document`](../WritePro/commands/wp-export-document.md) and [`WP Export variable`](../WritePro/commands/wp-export-variable.md) |
| SpreadJS | 17.1.0 | 20 R7 | Veja [este post de blog](https://blog.4d.com/4d-view-pro-whats-new-in-4d-20-r7/) para uma visão geral dos novos recursos |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
index 8694213d126f02..acf1238d4259ec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/ServerWindow/monitor.md
@@ -34,7 +34,7 @@ A área "Visão Geral" fornece várias informações sobre o sistema, aplicativo

-Geralmente, você precisará verificar o [**Gerenciador de licenças**](Admin/licenses.md).
+Usually, you will need to check the [**Licenses Manager**](Admin/licenses.md).
## Área Detalhes
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
index 09fd59389d4d97..dec0cf655b0a60 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/WebServer/sessions.md
@@ -63,7 +63,7 @@ O nome do cookie pode ser obtido usando a propriedade [`.sessionCookieName`](API
:::note
-La creación de una sesión web para una petición REST puede requerir que una licencia esté disponible, consulte [esta página](../REST/authUsers.md).
+Creating a web session for a REST request may require that a license is available, see [this page](../REST/authUsers.md).
:::
@@ -71,12 +71,6 @@ The `Session` object of the current session can then be accessed through the [`S

-:::info
-
-Os processos Web geralmente não terminam, eles são reciclados em um pool para aumentar a eficiência. Quando um processo termina de executar uma solicitação, ele é colocado de novo no pool e disponibilizado para a próxima solicitação. Since a web process can be reused by any session, [process variables](Concepts/variables.md#process-variables) must be cleared by your code at the end of its execution (using [`CLEAR VARIABLE`](../commands-legacy/clear-variable.md) for example). Esta limpeza é necessária para todas as informações relacionadas ao processo, como uma referência a um arquivo aberto. Esta es la razón por la que **se recomienda** utilizar el objeto [Sesión](API/SessionClass.md) cuando se quiera guardar información relacionada con la sesión.
-
-:::
-
## Armazenar e compartilhar informações de sessão
Cada objeto `Session` fornece uma propriedade [`.storage`](API/SessionClass.md#storage) que é um [objeto compartilhado](Concepts/shared.md). Essa propriedade permite que você compartilhe informações entre todos os processos manipulados pela sessão.
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
index cea2341af3af22..6553dabb87df02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/defining-a-4d-write-pro-area.md
@@ -85,175 +85,3 @@ Para áreas embebidas em formulários 4D, o modo vista pode ser também definido
-
-## Ações padrão
-
-A interface de usuário de áreas 4D Write Pro pode ser manejada através de um amplo conjunto de **ações padrão**. As ações padrão podem ser atribuidas a:
-
-* comandos de menu, disponíveis através da **barra de menu** ou do comando [Dynamic pop up menu](../../commands/dynamic-pop-up-menu)
-* list items, listas pop up ou drop down, menus pop up hierárquicos
-* botões, check boxes
-* ou executados pelo comando [INVOKE ACTION](../../commands/invoke-action).
-
-Quando são atribuidos aos objetos de interface, as ações padrão manejam a ativação/desativação de objeto em função de contexto. Para mais informação, consulte a seção *Ações padrões*.
-
-Dois tipos de ações estão disponíveis para áreas 4D Write Pro:
-
-* As ações específicas 4D Write Pro, que só podem ser utilizadas com áreas 4D Write Pro,
-* *[Outras ações](#other-actions)*, incluido as fontes, expressões, corretor ortográfico e ações de edição, que podem ser utilizadas com as áreas 4D Write Pro e as outras áreas 4D (ver [*Ações padrões*](#standard-actions)).
-
-### Ações 4D Write Pro
-
-**Notas:**
-
-* As ações que mostram um menu/lista só podem ser associadas aos comandos de menu ou aos objetos pop-up/listas suspensas e menus pop-up hierárquicos (ver *Submenu*).
-* Check boxes e 3D check boxes devem ser associadas com ações de estado, tais como "section/differentFirstPage" ou "visibleHorizontalRuler". Três opções de estado são suportadas com check boxes padrão apenas.
-* um status de ação de seção é sempre igual ao status atual de seção selecionada (estado herdado se o atributo for herdado da seção pai ou de um atributo padrão) já que deve refletir o status de seção selecionada (o status que é aplicado atualmente para a seção). Entretanto, modificar o atributo de seção com uma ação padrão vai sobrepujar o atributo de seção selecionado.
-* *Submenu*: Quando usado sem parâmetros e associados ao comando menu, um pop-up/lista drop down ou um objeto de menu hierárquico pop-up, essas ações exibem um submenu/lista automática. Por exemplo, se atribuir a ação "backgroundColor" a um comando de menu, selecionando este comando de menu na execução vai exibir os itens de submenu de Cor de Fundo. Se atribuir a ação "zoom" a um menu hierárquico pop-up menu, vai conter automaticamente conter uma lista de valores pré-definidos de zoom. Note que essas ações não podem ser atribuídas aos botões.
-* *showDialog*:Adicionar a string "/showDialog" ao nome de ação permite a exibição da caixa de diálogo padrão associada para a ação. Por exemplo, pode ser usado "paragraph/styleSheet/showDialog" para abrir o diálogo de input que permite a entrada de um novo nome de folha de estilo. .
-
-| Ação | Sintaxe | Disponível com | Descrição |
-|---|---|---|---|
-| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
-| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
-| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
-| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
-| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
-| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
-| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
-| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
-| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
-| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
-| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
-| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
-| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
-| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
-| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
-| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
-| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
-| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
-| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
-| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
-| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
-| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
-| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
-| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
-| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
-| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
-| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
-| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
-| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
-| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
-| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
-| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
-| deleteRows | deleteRows | Table | Deletes all selected rows. |
-| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
-| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
-| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
-| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
-| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
-| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
-| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
-| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
-| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
-| footer | footer | Submenu | Displays the Footer submenu. |
-| footer/remove | footer/remove | Footer | Removes the selected footer. |
-| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
-| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
-| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
-| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
-| header | header | Submenu | Displays the Header submenu. |
-| header/remove | header/remove | Header | Removes the selected header. |
-| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
-| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
-| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
-| image | image | Image, Submenu | Displays image layout submenu. |
-| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
-| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
-| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
-| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
-| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
-| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
-| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
-| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
-| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
-| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
-| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
-| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
-| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
-| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
-| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
-| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
-| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
-| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
-| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
-| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
-| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
-| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
-| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
-| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
-| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
-| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
-| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
-| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
-| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
-| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
-| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
-| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
-| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
-| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
-| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
-| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
-| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
-| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
-| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
-| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
-| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
-| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
-| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
-| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
-| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
-| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
-| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
-| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
-| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
-| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
-| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
-| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
-| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
-| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
-| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
-| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
-| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
-| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
-| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
-| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
-| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
-| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
-| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
-| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
-| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
-| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
-| view | view | Submenu | For menu commands only. Default submenu for view settings. |
-| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
-| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
-| visibleFooters | visibleFooters | Document | Shows/hides footers. |
-| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
-| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
-| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
-| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
-| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
-| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
-| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
-| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
-| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
-
-### Outras ações
-
-Outras ações padrão estão disponíveis nos formulários 4D e podem ser utilizadas nas áreas 4D Write Pro:
-
-* *Ações Edição*, tais como ações de copiar/colar.
-* Ações *Fonte*, tais como FontBold ou fontSize.
-* Ações *Expressões dinâmicas*, permitendo manejar a inserção de expressões.
-* Ações *Correção ortográfica*.
\ No newline at end of file
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
new file mode 100644
index 00000000000000..4c41d09667f653
--- /dev/null
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/WritePro/user-legacy/standard-actions.md
@@ -0,0 +1,177 @@
+---
+id: standard-actions
+title: Ações padrão
+displayed_sidebar: docs
+slug: /WritePro/standard-actions
+---
+
+
+A interface de usuário de áreas 4D Write Pro pode ser manejada através de um amplo conjunto de **ações padrão**. As ações padrão podem ser atribuidas a:
+
+* comandos de menu, disponíveis através da **barra de menu** ou do comando [Dynamic pop up menu](../../commands/dynamic-pop-up-menu)
+* list items, listas pop up ou drop down, menus pop up hierárquicos
+* botões, check boxes
+* ou executados pelo comando [INVOKE ACTION](../../commands/invoke-action).
+
+Quando são atribuidos aos objetos de interface, as ações padrão manejam a ativação/desativação de objeto em função de contexto. Para mais informação, consulte a seção *Ações padrões*.
+
+Dois tipos de ações estão disponíveis para áreas 4D Write Pro:
+
+* As ações específicas 4D Write Pro, que só podem ser utilizadas com áreas 4D Write Pro,
+* *[Outras ações](#other-actions)*, incluido as fontes, expressões, corretor ortográfico e ações de edição, que podem ser utilizadas com as áreas 4D Write Pro e as outras áreas 4D (ver [*Ações padrões*](#standard-actions)).
+
+### Ações 4D Write Pro
+
+**Notas:**
+
+* As ações que mostram um menu/lista só podem ser associadas aos comandos de menu ou aos objetos pop-up/listas suspensas e menus pop-up hierárquicos (ver *Submenu*).
+* Check boxes e 3D check boxes devem ser associadas com ações de estado, tais como "section/differentFirstPage" ou "visibleHorizontalRuler". Três opções de estado são suportadas com check boxes padrão apenas.
+* um status de ação de seção é sempre igual ao status atual de seção selecionada (estado herdado se o atributo for herdado da seção pai ou de um atributo padrão) já que deve refletir o status de seção selecionada (o status que é aplicado atualmente para a seção). Entretanto, modificar o atributo de seção com uma ação padrão vai sobrepujar o atributo de seção selecionado.
+* *Submenu*: Quando usado sem parâmetros e associados ao comando menu, um pop-up/lista drop down ou um objeto de menu hierárquico pop-up, essas ações exibem um submenu/lista automática. Por exemplo, se atribuir a ação "backgroundColor" a um comando de menu, selecionando este comando de menu na execução vai exibir os itens de submenu de Cor de Fundo. Se atribuir a ação "zoom" a um menu hierárquico pop-up menu, vai conter automaticamente conter uma lista de valores pré-definidos de zoom. Note que essas ações não podem ser atribuídas aos botões.
+* *showDialog*:Adicionar a string "/showDialog" ao nome de ação permite a exibição da caixa de diálogo padrão associada para a ação. Por exemplo, pode ser usado "paragraph/styleSheet/showDialog" para abrir o diálogo de input que permite a entrada de um novo nome de folha de estilo. .
+
+| Ação | Sintaxe | Disponível com | Descrição |
+|---|---|---|---|
+| anchorHorizontalAlign | {image \| textBox}/anchorHorizontalAlign?value={left \| center \| right} | Image, Textbox, Submenu | Defines the horizontal alignment of the element, relative to the anchorOrigin for images/text boxes in page, or to the layout box for images/text box in embedded mode. This action will reset the horizontal offset to 0. (not enabled for inline images). |
+| anchoring | {image \| textBox}/anchoring | Submenu | Default submenu with anchor settings actions for images or text boxes |
+| anchorLayout | image/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare \| inline}
textBox/anchorLayout?value={front \| behind \| wrapTopBottom \| wrapSquareLeft \| wrapSquareRight \| wrapSquareLargest \| wrapSquare} | Image, Textbox, Submenu | Defines the anchor layout type for an image or a text box. Can be used to transform an inline image to an anchored image, or the reverse. Note: If an image is moved from an anchored mode to inline, the image is inserted at the beginning of the current selected text. "inline" value is not supported for text boxes |
+| anchorOrigin | {image \| textBox}/anchorOrigin?value={paper-box \| header-box \| footer-box} | Image, TextBox, Submenu | Defines the area relative to the absolute position of an anchored image or text box. If the element is relative to the header-box/footer-box which is not visible on a page, the element is not displayed. This action will reset horizontal and vertical offsets to 0. Page mode only, not enabled for inline images. |
+| anchorPage | {image \| textBox}/anchorPage?value={all \| current \| currentSubSection} | Image, TextBox, Submenu | Defines the page(s) where the selected image or text box is displayed (not enabled for inline images). Page mode only. |
+| anchorSection | {image \| textBox}/anchorSection?value={all \| current} | Image, TextBox, Submenu | Defines the section(s) where the selected image or text box is displayed. (not enabled for inline images). Page mode only. |
+| anchorVerticalAlign | {image \| textBox}/anchorVerticalAlign?value={top \| center \| bottom} | Image, TextBox Submenu | Defines the vertical alignment of the image or text box, relative to the anchorOrgin for an image or text box in page, or to the layout box for an image or text box in embedded mode. This action will reset the vertical offset to 0 (not enabled for inline images). Note: See "verticalAlign" action for the vertical alignment inside the text box |
+| avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | |
+| background | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}background | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | For menu commands only. Default submenu for all background attributes. |
+| backgroundClip | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundClip?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background clipping box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundColor?value={ \| transparent} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target background. |
+| backgroundDisplayMode | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundDisplayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Sets the display mode of images used as background. |
+| backgroundImage | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundImage?value=none | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Clears target background image. (default target is paragraph) |
+| backgroundOrigin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundOrigin?value={paper-box \| border-box \| padding-box \| content-box} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image origin box (default target is paragraph). Paper-box targets document and section only. |
+| backgroundPositionH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionH?value={left \| right \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image horizontal alignment (default target is paragraph). Ex: paragraph/backgroundPositionH?value=left |
+| backgroundPositionV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundPositionV?value={top \| bottom \| center} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image vertical alignment (default target is paragraph). Ex: paragraph/backgroundPositionV?value=top |
+| backgroundRepeat | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundRepeat?value={no-repeat \| repeat \| repeat-x \| repeat-y} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image repeat mode. (default target is paragraph) |
+| backgroundSizeH | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}backgroundSizeH?value={ \| \| auto \| cover \| contain} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image width (default target is paragraph). Ex: paragraph/backgroundSizeH?value=100%. section/backgroundSizeH?value=cover |
+| backgroundSizeV | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell}/backgroundSizeV?value={ \| \| auto} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target background image height (default target is paragraph). Ex: paragraph/backgroundSizeV?value=50%. Ex: section/backgroundSizeV?value=40pt |
+| bookmark | bookmark?index= | Submenu | Selects the Nth bookmark. Ex: bookmark?index=2 // selects the second bookmark |
+| borderCollapse | borderCollapse | Paragraph | Collapses selected paragraph borders and interior margins. |
+| borderColor | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderColor \| borderColorLeft \| borderColorRight \| borderColorTop \| borderColorBottom \| borderColorLeftRight \| borderColorTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu, showDialog | Changes target border color (default target is paragraph). Ex: paragraph/borderColorLeft?value=green |
+| borderRadius | {doc \| paragraph \| image \| textBox \| section \| header \| footer/}borderRadius?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Submenu | Changes target border radius (default target is paragraph). Ex: paragraph/borderRadius?value=4pt |
+| borders | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}borders | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Default submenu for target borders. |
+| borderStyle | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderStyle \| borderStyleLeft \| borderStyleRight \| borderStyleTop \| borderStyleBottom \| borderStyleLeftRight \| borderStyleTopBottom}?value={none \| hidden \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border style (default target is paragraph). Ex: paragraph/borderStyleLeft?value=double. Ex: outside/borderStyle?value=solid //set selected paragraphs exterior borders to style solid. Ex: inside/borderStyle?value=none //remove selected paragraphs interior borders |
+| borderWidth | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table \| row \| column \| cell/}{inside \| outside/}{borderWidth \| borderWidthLeft \| borderWidthRight \| borderWidthTop \| borderWidthBottom \| borderWidthLeftRight \| borderWidthTopBottom}?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Table, Row, Column, Cell, Submenu | Changes target border width (default target is paragraph). Ex: paragraph/borderWidthLeft?value=4pt |
+| columnCount | {section/}columnCount?value={1<=number<=20} | Document, Section, Submenu | Number of columns in the current document and/or section. (default target is doc) Ex: section/columnCount?value=3 |
+| columnRuleColor | {section/}columnRuleColor?value={CSS color} | Document, Section, Submenu, showDialog | Color for the decorative line between document or section columns. Ex: columnRuleColor?value="#FFFFFF" |
+| columnRuleStyle | {section/}columnRuleStyle?value={none \| dotted \| dashed \| solid \| double \| groove \| ridge \| inset \| outset} | Document, Section, Submenu | Style for the decorative line between document or section columns. Ex: columnRuleStyle?value="solid" |
+| columnRuleWidth | {section/}columnRuleWidth?value={CSS length} | Document, Section, Submenu | Width of the decorative line between document or section columns. Ex: columnRuleWidth?value="2pt" |
+| columns | {section/}columns | Document, Section, Submenu | Only for a menu item: creates automatically a complete Columns sub-menu with all column actions sub-menus (except insertColumnBreak) |
+| columnSpacing | {section/}columnSpacing?value={CSS length} | Document, Section, Submenu | Space between two columns in the current document and/or section. Ex: columnSpacing?value="1cm" |
+| deleteColumns | deleteColumns | Table | Deletes all selected columns. |
+| deleteRows | deleteRows | Table | Deletes all selected rows. |
+| deleteStyleSheet | {paragraph \| image/}deleteStyleSheet?index={1<= number <= number of target style sheets} | Paragraph, Image, Submenu | Removes the Nth stylesheet from the stored stylesheets for the selected target (default target is paragraph). Menu item name is replaced at runtime with style sheet name. |
+| direction | direction?value={ltr \| rtl} | Paragraph, Submenu | Paragraph direction. |
+| displayFormulaAsSymbol | displayFormulaAsSymbol | Document | Displays formula references as a # symbol. Can only be used when formulas are displayed as references. |
+| doc | doc | Document, Submenu | Default submenu for document body layout (embedded mode attributes or default attributes for sections – but for margin which is reserved for embedded mode only). |
+| dpi | Modifies the dpi of the current view (independent of the document attribute wk dpi used internally for pixel conversion <-> points). | Submenu | Change view dpi. Ex: dpi?value=72 |
+| emptyDatasource | {table}/emptyDatasource?value={showDataRow \| hideDataRow \| showPlaceholderRow \| hideTable } | Table, Submenu | Defines how the table is displayed when its datasource is empty. |
+| fontStyleWrite | fontStyleWrite | Submenu | For menu commands only. Displays default font styles submenu for 4D Write Pro. |
+| fontSubscript | fontSubscript | | Toggles subscript font attribute. |
+| fontSuperscript | fontSuperscript | | Toggles superscript font attribute. |
+| footer | footer | Submenu | Displays the Footer submenu. |
+| footer/remove | footer/remove | Footer | Removes the selected footer. |
+| formulaHighlight | formulaHighlight?value={values \| references \| always \| never} | Document, Submenu | Formula highlight mode for the document. Can be used with a dropdown menu or a button |
+| formulaHighlightColor | formulaHighlightColor?value= | Document, Submenu,showDialog | Formula highlight color for the document |
+| formulaHighlightReferences | formulaHighlightReferences | Document | Toggles formula references highlighting. Can be used with a check box or a menu item |
+| formulaHighlightValues | formulaHighlightValues | Document | Toggles formula values highlighting. Can be used with a check box or a menu item |
+| header | header | Submenu | Displays the Header submenu. |
+| header/remove | header/remove | Header | Removes the selected header. |
+| height | {image \| textBox \| row}/height?value={ \| auto} | Image, TextBox Row, Submenu | Target height. Ex: image/height?value=50pt. For image/width, see width. Ex: row/height?value=12pt |
+| headerRowCount | {table/}headerRowCount | Table, Submenu | Sets the number of header rows in a table. Maximum is 5. |
+| htmlWYSIWIGEnabled | htmlWYSIWIGEnabled | Document | Toggles between html wysiwyg mode. |
+| image | image | Image, Submenu | Displays image layout submenu. |
+| image/displayMode | image/displayMode?value=scaledToFit \| truncated \| truncatedCentered \| proportional \| proportionalCentered \| replicated \| replicatedCentered | Image, Submenu | Sets the display mode of anchored and inline images. Ex: image/displayMode?value=scaledToFit |
+| image/verticalAlign | image/verticalAlign?value={top \| middle \| bottom \| baseline \| super \| sub} | Image, Submenu | Image vertical alignment. Ex: image/verticalAlign?value=super |
+| insertColumnBreak | insertColumnBreak | Paragraph | Inserts a column break at the selection. |
+| insertColumnToTheLeft | insertColumnToTheLeft | Table | Inserts a column to the left of the first selected column(s). |
+| insertColumnToTheRight | insertColumnToTheRight | Table | Inserts a column to the right of the last selected column(s). |
+| insertContinuousSectionBreak | insertContinuousSectionBreak | Paragraph | Inserts a continuous section break at the selection. |
+| insertImage | insertImage | | Opens a picture selection dialog box and inserts the selected picture (if any) as a character in the area. |
+| insertPageBreak | insertPageBreak | Paragraph | Inserts a page break at the selection. |
+| insertRowAbove | insertRowAbove | Table | Inserts a row above the selected row(s). |
+| insertRowBelow | insertRowBelow | Table | Inserts a row below the selected row(s). |
+| insertSectionBreak | insertSectionBreak | Paragraph | Inserts a section break at the selection. |
+| insertSoftHyphen | insertSoftHyphen | | Inserts a soft hyphen at the cursor position. |
+| insertTextBox | insertTextBox | Document | Inserts a text box near the current selection, anchored to the first selected page (page mode). |
+| keepWithNext | keepWithNext | Paragraph | Links a paragraph with the next so that they cannot be separated by automatic page or column breaks. If applied to the last paragraph of the last cell in a table, the last row of the table is linked to the following paragraph. |
+| lineHeight | lineHeight?value={ \| } | Paragraph, Submenu | Paragraph line height. Ex: lineHeight?value=120% |
+| layer | {image \| textBox}/layer | Submenu | Default submenu with layering actions for images or text boxes |
+| listStartNumber | listStartNumber?value={ (longint) \| auto} | Paragraph, Submenu | List start number. Ex: listStartNumber?value=10 |
+| listStyleImage | listStyleImage/showDialog | Paragraph, showDialog | Opens a file dialog to choose a image to display as list style bullet; it will set also list style type to disc – style to be used if image is not found. |
+| listStyleType | listStyleType?value={none \| disc \| circle \| square \| hollow-square \| diamond \| club \| decimal \| decimal-leading- zero \| lower-latin \| lower-roman \| upper-latin \| upper-roman \| lower-greek \| decimal-greek \| armenian \| georgian \| hebrew \| hiragana \| katakana \| cjk-ideographic} | Paragraph, Submenu | Paragraph list style type. |
+| margin | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| table/}{inside \| outside/}{margin \| marginLeft \| marginRight \| marginTop \| marginBottom \| marginLeftRight \| marginTopBottom}?value={ \| auto} | Document, Paragraph, Image, Textbox, Section, Header, Footer, Table, Submenu | Changes target margin (default target is paragraph). Ex: margin?value=4pt //sets all paragraph margins to 4pt. Ex: outside/margin?value=4pt //set exterior paragraph margins to 4pt. Ex: doc/marginLeft?value=1cm //sets left margin to 1cm for the document as used in embedded mode. Ex: section/marginLeft?value=1cm //sets left margin to 1cm for the pages of the first selected section |
+| merge | {paragraph/}merge
cell/merge | Paragraph, Cell | Used with paragraphs: merges paragraphs. Used with cells: merges the selected cells. |
+| minHeight | {paragraph \| image/}minHeight?value= | Paragraph, Image, Submenu | Target min height (default target is paragraph). Ex: paragraph/minHeight?value=50pt |
+| minWidth | {paragraph \| image/}minWidth?value= | Paragraph, Image, Submenu | Target min width (default target is paragraph). Ex: paragraph/minWidth?value=50pt |
+| moveToBack | moveToBack | Image | Moves image to the back. (not enabled for inline images) |
+| moveToFront | moveToFront | Image | Moves image to the front. (not enabled for inline images) |
+| newLineStyleSheet | newLineStyleSheet?index={1<=number<=number of paragraph stylesheets \| newLineStyleSheet}?value=auto | Paragraph, Submenu | Selected paragraph elements will use Nth stylesheet as stylesheet to use for new paragraphs created on Return or while splitting paragraphs; If value=auto, new paragraphs will use the same stylesheet (default). (menu item name is replaced at runtime with stylesheet name) |
+| padding | {doc \| paragraph \| image \| textBox \| section \| header \| footer \| column \| row\| cell/}{inside \| outside/}{padding \| paddingLeft \| paddingRight \| paddingTop \| paddingBottom \| paddingLeftRight \| paddingTopBottom }?value= | Document, Paragraph, Image, TextBox, Section, Header, Footer, Row, Column, Cell, Submenu | Changes target padding. (default target is paragraph) |
+| pageMode | pageMode?value={embedded \| page \| draft} | Submenu | Changes view mode. Ex: pageMode?value=page |
+| pageOrientation | {section/}pageOrientation?value={landscape \| portrait} | Section, Submenu | Changes document or first selected section page orientation (if section is not specified, it will apply to all sections otherwise to the first selected section). Ex: pageOrientation?value=portrait //change orientation to portrait for the whole document. Ex: section/pageOrientation?value=landscape //change orientation to landscape for the first selected section |
+| pageSize | pageSize?index= | Submenu | Changes document page size: number is Nth page size in the list of available pages sizes. The list contains the current printer page sizes, ISO page sizes and the custom page sizes defined by the user. |
+| paragraph | paragraph | Paragraph, Submenu | Default submenu for paragraph layout. |
+| paragraph/avoidPageBreakInside | {paragraph/}avoidPageBreakInside | Paragraph | Allows/disallows page breaks inside paragraphs. |
+| print | print | Document | Prints document as rendered in page mode with view settings of the focused 4D Write Pro area. |
+| refreshImages | refreshImages | Image | Reloads images from the network for images with URLs. |
+| removeSoftHyphens | removeSoftHyphens | | Removes all soft hyphens in the current selection (if the selection is empty, removes soft hyphen before or after the caret if any) |
+| row/avoidPageBreakInside | row/avoidPageBreakInside | Table, Row | Allows/disallows page breaks inside table rows. This action is disabled if: the current selection does not contain a table the table does not allow page breaks the table is inside a header or footer Note: If several tables are selected and some of them don't allow page breaks, this option will be enabled but only applied to the tables that allow page breaks. |
+| section | section | Section, Submenu | Default submenu for page layout for the first selected section. |
+| section/differentFirstPage | section/differentFirstPage | Section | Section has different first page or not. |
+| section/differentLeftRightPages | section/differentLeftRightPages | Section | Section has different left and right pages or not. |
+| section/name/showDialog | section/name/showDialog | Section, showDialog | Displays a dialog allowing to enter the first selected section name. |
+| section/remove | section/remove | Section | Deletes the first section that intersects the user’s selection regardless if the user has selected one or multiple sections. Disabled when only one section remains in the document. |
+| section/reset | section/reset | Section | Resets all first selected section attributes to default attributes - which are inherited from doc attributes for background, border and padding (same as for embedded mode) and 2.5cm for page margins. First selected section column properties are also removed (so only default section properties will apply). |
+| split | {paragraph/}split
cell/split | Paragraph, Cell | Used with paragraph: splits paragraph. Used with cells: splits the selected cells (only cells that have been already merged may be split). |
+| styleSheet | {paragraph \| image/}styleSheet?value={1<=number<=number of target style sheets} | Paragraph, Image, Submenu, showDialog | Applies Nth stylesheet to the selected target elements. With dialog, new stylesheet will use current attributes from the first selected target. (default target is paragraph) Ex: styleSheet?value=1 //apply first paragraph style sheet to the selected paragraphs and set it as paragraph stylesheets. |
+| styleSheets | {paragraph \| image/}styleSheets | Paragraph, Image, Submenu | Default submenu for editing target stylesheets. |
+| tabDecimalSeparator | tabDecimalSeparator?value={point \| comma \| pointOrComma \| system} | Document, Submenu | Defines the character used as decimal separator by decimal tabulations. |
+| tableAlign | tableAlign?value={left \| center \| right}
or
table/tableAlign?value={left \| center \| right} | Table, Submenu | Specifies horizontal alignment for a table. |
+| table/avoidPageBreakInside | table/avoidPageBreakInside | Table | Allows/disallows page breaks inside tables. Disabled if: the current selection does not contain at least one table the table is in a header or a footer |
+| table/bottomCarryOverRow | table/bottomCarryOverRow | Table | Toggles between display/not display of carry-over rows (see Carry-over rows). |
+| textAlign | textAlign?value={left \| right \| center \| justify \| initial} | Paragraph | Paragraph text alignment (initial=use right for rtl or left for ltr direction). |
+| textBox | textBox | Submenu | Submenu with all actions available for the focused/selected text box |
+| textBox/remove | textBox/remove | TextBox | Removes the selected text box |
+| textIndent | textIndent?value= (may be negative) | Paragraph, Submenu | Paragraph text indentation (first line indentation). Ex: textIndent?value=2cm |
+| textLinethrough | textLinethrough | Submenu | For menu commands only. Linethrough submenu (with style and color). |
+| textLinethroughColor | textLinethroughColor?value={ \| currentColor} | Submenu, showDialog | Ex: textLinethroughColor?value=red |
+| textLinethroughStyle | textLinethroughStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textLinethroughStyle?value=dotted |
+| textShadow | textShadow | Submenu | For menu commands only. Default submenu for text shadow (with color and offset). |
+| textShadowColor | textShadowColor?value={ \| none} | Submenu, showDialog | Changes shadow status or color for characters. Ex: textShadowColor?value=green |
+| textShadowOffset | textShadowOffset?value= | Submenu | Only length in pt is supported. Ex: textShadowOffset?value=2pt |
+| textTransform | textTransform?value={none \| capitalize \| uppercase \| lowercase \| small-uppercase} | Submenu | Formats text. Ex: textTransform?value=capitalize |
+| textUnderline | textUnderline | Submenu | For menu commands only. Underline submenu (with style and color) |
+| textUnderlineColor | textUnderlineColor?value={ \| currentColor} | Submenu, showDialog | Ex: textUnderlineColor?value=red |
+| textUnderlineStyle | textUnderlineStyle?value={none \| solid \| dotted \| dashed \| double \| semi-transparent \| word} | Submenu | Ex: textUnderlineStyle?value=dotted |
+| updateStyleSheet | {paragraph \| image/}updateStyleSheet | Paragraph, Image, Submenu | Updates first selected target stylesheet with first selected target current attributes (default target is paragraph) |
+| userUnit | userUnit?value={cm \| mm \| in \| pt} | Submenu | Changes document layout unit (will be reflected on rulers). |
+| verticalAlign | {paragraph \| row \| column \| cell \| textBox/}verticalAlign?value={top \| middle \| bottom} | Paragraph, Row, Column, Cell, TextBox, Submenu | Paragraph vertical alignment. Ex: verticalAlign?value=top. The effect depends on the minHeight value of the paragraph. |
+| view | view | Submenu | For menu commands only. Default submenu for view settings. |
+| visibleBackground | visibleBackground | Document | Shows/hides background, anchored pictures and text boxes |
+| visibleEmptyImages | visibleEmptyImages | Document | Shows/hides a default black rectangle for images that cannot be loaded or computed (empty images or images in an unsupported format). |
+| visibleFooters | visibleFooters | Document | Shows/hides footers. |
+| visibleHeaders | visibleHeaders | Document | Shows/hides headers. |
+| visibleHiddenChars | visibleHiddenChars | Document | Shows/hides hidden characters |
+| visibleHorizontalRuler | visibleHorizontalRuler | Document | Shows/hides horizontal ruler. |
+| visiblePageFrames | visiblePageFrames | Document | Shows/hides page frames. |
+| visibleVerticalRuler | visibleVerticalRuler | Document | Shows/hides vertical ruler (Page mode only). |
+| visibleTableBorders | visibleTableBorders | Document | Shows/hides internal and external table borders as dashed lines where no borders are defined. |
+| widowAndOrphanControlEnabled | widowAndOrphanControlEnabled | Paragraph | Toggles between widow and orphan control mode. |
+| width | {paragraph \| image \| textBox \| column/}width?value= \| auto | Paragraph, Image, TextBox, Column, Submenu | Target width (default target is paragraph). Auto value not available for text boxes (converted to 8 cm) and columns. Ex: image/width?value=50pt |
+| zoom | zoom?value={25% <= percentage in Css <= 400%} | Document, Submenu | Changes document view zoom. Ex: zoom?value=120% |
+
+### Outras ações
+
+Outras ações padrão estão disponíveis nos formulários 4D e podem ser utilizadas nas áreas 4D Write Pro:
+
+* *Ações Edição*, tais como ações de copiar/colar.
+* Ações *Fonte*, tais como FontBold ou fontSize.
+* Ações *Expressões dinâmicas*, permitendo manejar a inserção de expressões.
+* Ações *Correção ortográfica*.
\ No newline at end of file
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png b/i18n/pt/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png
new file mode 100644
index 00000000000000..39f1bac3f9c70d
Binary files /dev/null and b/i18n/pt/docusaurus-plugin-content-docs/version-21/assets/en/Desktop/sessions.png differ
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
index b90ba930cf567a..4893035d1f7da5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort-process-by-id.md
@@ -48,6 +48,6 @@ Se quiser deter o processo selecionado da coleção de processos que são mostra
| | |
| --- | --- |
| Número do comando | 1634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
index fc2e03876207c3..eb7ed15869834c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abort.md
@@ -41,6 +41,6 @@ Apesar do comando ABORT está destinado a ser utilizado apenas a partir de um m
| | |
| --- | --- |
| Número do comando | 156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
index e457877fa6e8a1..2a96d945c12756 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/abs.md
@@ -32,6 +32,6 @@ O exemplo a seguir retorna o valor absoluto de –10.3, que é de 10.3:
| | |
| --- | --- |
| Número do comando | 99 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
index 286c5625403d12..668e607a9878f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accept.md
@@ -41,7 +41,7 @@ Não é possível concatenar vários ACCEPT. A execução consecutiva de dois co
| | |
| --- | --- |
| Número do comando | 269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
index 0e17afef02274c..917418d256cfa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/accumulate.md
@@ -41,6 +41,6 @@ Ver o exemplo do comando [BREAK LEVEL](break-level.md) .
| | |
| --- | --- |
| Número do comando | 303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
index 1363c6ae9a97ad..eefe6e616d312b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/action-info.md
@@ -73,6 +73,6 @@ Se quiser saber se a ação copiar está disponível (ou seja, se foram selecion
| | |
| --- | --- |
| Número do comando | 1442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
index 767acc9d0d0ca4..1e5b457b43a1ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activated.md
@@ -33,6 +33,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 346 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
index 8ab508ed440215..35f10364b2f938 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/active-transaction.md
@@ -49,6 +49,6 @@ Se quiser conhecer o estado da transação atual:
| | |
| --- | --- |
| Número do comando | 1387 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
index 7865f2137794b3..8be3e7192eb334 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/activity-snapshot.md
@@ -111,6 +111,6 @@ Obtém arrays do tipo:
| | |
| --- | --- |
| Número do comando | 1277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
index 0948bd545500e2..95666daa979566 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-record.md
@@ -91,7 +91,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 56 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
index b426e5b7ceaa1e..a564ecb4b20802 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-date.md
@@ -42,6 +42,6 @@ Mesmo que você possa utilizar os [Self](self.md) para adicionar dias a uma data
| | |
| --- | --- |
| Número do comando | 393 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
index 1b0fb31d395734..b02dbdf33b7004 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/add-to-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 119 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
index 76c0cc956e7edf..c9398bf66c93a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-blobs-cache-priority.md
@@ -59,6 +59,6 @@ Se quiser mudar temporariamente a prioridade da cache dos campos de texto da tab
| | |
| --- | --- |
| Número do comando | 1431 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
index c491dd93abba56..3c81b4ef0ae72e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-index-cache-priority.md
@@ -58,6 +58,6 @@ Se quiser mudar temporariamente a prioridade de cache para o índice de campo \[
| | |
| --- | --- |
| Número do comando | 1430 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
index 6eecf94e6f8590..9bf426a0d724f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/adjust-table-cache-priority.md
@@ -56,6 +56,6 @@ Se quiser mudar temporariamente a prioridade de cache para os campos escalares \
| | |
| --- | --- |
| Número do comando | 1429 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
index 698814ac268630..34464578b3563a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/after.md
@@ -30,6 +30,6 @@ Para que seja gerado o ciclo de execução **After**, tenha certeza de que o eve
| | |
| --- | --- |
| Número do comando | 31 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
index 9def9b14705fcc..e4c68f8a8ab6fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/alert.md
@@ -73,6 +73,6 @@ Mostra a seguinte caixa de diálogo de alerta (em Windows):
| | |
| --- | --- |
| Número do comando | 41 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
index ba0b8fd2bee10f..07f243c5647afc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/all-records.md
@@ -40,7 +40,7 @@ O exemplo a seguir mostra todos os registros da tabela \[Pessoas\]:
| | |
| --- | --- |
| Número do comando | 47 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
index 058caac7927c85..f4d84d973f525a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-data-to-pasteboard.md
@@ -222,7 +222,7 @@ Se os dados no BLOB são adicionados corretamente á área de transferência, a
| | |
| --- | --- |
| Número do comando | 403 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
index 795496109373ff..18221540574467 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-document.md
@@ -44,7 +44,7 @@ O exemplo abaixo abre um documento existente chamado Nota, adiciona a string “
| | |
| --- | --- |
| Número do comando | 265 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
index b4e110a039e2f3..3ebf056702f8d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-menu-item.md
@@ -86,7 +86,7 @@ Então, em todo método de formulário ou de projeto, pode escrever:
| | |
| --- | --- |
| Número do comando | 411 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
index a569342f2b2a30..763139cc2dea6d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-array.md
@@ -49,6 +49,6 @@ O seguinte código:
| | |
| --- | --- |
| Número do comando | 911 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
index 6126786b428f2e..c8f2486a50a84b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/append-to-list.md
@@ -159,6 +159,6 @@ Quando o formulário é executado, a lista será vista desta forma:
| | |
| --- | --- |
| Número do comando | 376 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
index e22c4197f0ae91..85fe178c457150 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-file.md
@@ -47,6 +47,6 @@ Ao iniciar seu banco de dados em Windows, você precisa verificar se uma bibliot
| | |
| --- | --- |
| Número do comando | 491 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
index 607d6ccb71fc76..b36ccbe4011530 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-info.md
@@ -137,6 +137,6 @@ Se o código for executado em 4D Server, o objeto contém (por exemplo):
| | |
| --- | --- |
| Número do comando | 1599 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
index ecbca42b3f5bb9..89e95b82bff5b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-type.md
@@ -48,6 +48,6 @@ Em alguma parte do seu código, diferente do método de banco de dados *Método
| | |
| --- | --- |
| Número do comando | 494 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
index f643176a1c88db..c9962219f50993 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/application-version.md
@@ -125,6 +125,6 @@ Você quer usar o número pequeno de versão da aplicação retornado pelo coman
| | |
| --- | --- |
| Número do comando | 493 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
index 706515fd92b63e..8643798254ae4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/apply-to-selection.md
@@ -68,7 +68,7 @@ Se o usuário clicar no botão Deter no termômetro de progressão, a variável
| | |
| --- | --- |
| Número do comando | 70 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
index 83ce0a01ceb12b..df7778c386c543 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/arctan.md
@@ -37,6 +37,6 @@ O exemplo a seguir mostra o valor de Pi:
| | |
| --- | --- |
| Número do comando | 20 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
index 751421164eeac9..4f3cdf66adcf1f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-blob.md
@@ -66,6 +66,6 @@ Este exemplo cria um array local de 100 filas, contendo cada uma 50 elementos de
| | |
| --- | --- |
| Número do comando | 1222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
index 7b9d0a8db9a4bf..a4faf37c269768 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-boolean.md
@@ -66,6 +66,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Booleano e dete
| | |
| --- | --- |
| Número do comando | 223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
index 456c18058b28c3..1258dad2d910ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-date.md
@@ -59,6 +59,6 @@ Este exemplo cria um array interprocesso de 50 elementos do tipo Data e determin
| | |
| --- | --- |
| Número do comando | 224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
index 80901246a0c518..edda014013c87f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-integer.md
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 2 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
index 16540fc9ad7403..0353872c40aec5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-longint.md
@@ -63,6 +63,6 @@ Este exemplo cria um array interprocesso de 4 bytes de 50 elementos do tipo *Int
| | |
| --- | --- |
| Número do comando | 221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
index 45cb8078b31a9c..af5fff52c9da83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-object.md
@@ -75,6 +75,6 @@ Criação e cheio de um array local de objetos:
| | |
| --- | --- |
| Número do comando | 1221 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
index 41efbd4ce2b9c3..2a336192c688de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-picture.md
@@ -66,6 +66,6 @@ Este exemplo cria um array de interprocesso de tipo [Imagem](# "Can be any Windo
| | |
| --- | --- |
| Número do comando | 279 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
index ddf4254ae9c091..f2f444e0e33b2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-pointer.md
@@ -61,6 +61,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo [Ponteiro](# "A
| | |
| --- | --- |
| Número do comando | 280 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
index 623b9c0a7e2e19..19c848fcad41a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-real.md
@@ -63,6 +63,6 @@ Este exemplo cria um array de interprocesso de 50 elementos do tipo Real e deter
| | |
| --- | --- |
| Número do comando | 219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
index 1296de830ff4aa..c2be60cae221c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-text.md
@@ -59,6 +59,6 @@ Este exemplo cria um array de interprocesso de elementos do tipo texto e atribui
| | |
| --- | --- |
| Número do comando | 222 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
index 0332552d9f0fde..e2d245e9a5e4b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-time.md
@@ -69,6 +69,6 @@ Como os arrays de horas aceitam valores numéricos, o seguinte código é válid
| | |
| --- | --- |
| Número do comando | 1223 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
index f059113ea6728c..175bc01fb30cb4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-collection.md
@@ -88,6 +88,6 @@ Se quiser copiar um array de texto em uma coleção compartilhada:
| | |
| --- | --- |
| Número do comando | 1563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
index f75e0ff8573ac1..986d6be90c2b76 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-list.md
@@ -66,7 +66,7 @@ O comando ARRAY TO LIST gera o erro *\-9957* quando é aplicado a uma lista que
| | |
| --- | --- |
| Número do comando | 287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
index f766abc6c463ab..ff529468ca01d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/array-to-selection.md
@@ -86,7 +86,7 @@ Se quiser copiar uma seleção de registroar para uma tablela arquivo selecionan
| | |
| --- | --- |
| Número do comando | 261 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
index de02a9eb5005d5..199ecf327db8e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/assert.md
@@ -59,7 +59,7 @@ Uma asserção permite provar os parâmetros passados a um método de projeto pa
| | |
| --- | --- |
| Número do comando | 1129 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
index d8c43622c8af0f..3628588731624e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/asserted.md
@@ -47,7 +47,7 @@ Inserir uma asserção na avaliação de uma expressão:
| | |
| --- | --- |
| Número do comando | 1132 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
index 1f21c43cff91e9..c8ea005d7db882 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/average.md
@@ -96,7 +96,7 @@ Pode fazer os seguintes cálculos:
| | |
| --- | --- |
| Número do comando | 2 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
index 993f6c40b8c406..925cc6b610e40d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup-info.md
@@ -37,6 +37,6 @@ Passe o tipo de informação a se obter em *seletor*. É possível utilizar uma
| | |
| --- | --- |
| Número do comando | 888 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
index 549cb0cdf01f9d..cbb37b0abebc6c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/backup.md
@@ -44,7 +44,7 @@ Em caso de que ocorram incidentes durante o backup, a informação relativa ao i
| | |
| --- | --- |
| Número do comando | 887 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
index 0c61c37079f219..fe7315ea6d6e6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-decode.md
@@ -61,6 +61,6 @@ Este exemplo lhe permite transferir uma imagem através de um BLOB:
| | |
| --- | --- |
| Número do comando | 896 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
index e68598e4c02bac..d0a62dbac22f16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/base64-encode.md
@@ -43,6 +43,6 @@ Por padrão, se omitir o parâmetro *\**, o comando utiliza uma codificação Ba
| | |
| --- | --- |
| Número do comando | 895 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
index 3fc5b22b1803e8..fa03e3a2b778bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/beep.md
@@ -39,6 +39,6 @@ No exemplo abaixo, se uma pesquisa não encontrar nenhum registro, um bip é emi
| | |
| --- | --- |
| Número do comando | 151 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
index 9c574c569247ee..6011f8667d6f04 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before-selection.md
@@ -67,6 +67,6 @@ Este formulário é utilizado durante a impressão de um relatório. Define uma
| | |
| --- | --- |
| Número do comando | 198 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
index 673844d2f8e8e4..d0ad7be4365596 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/before.md
@@ -30,6 +30,6 @@ Para que se gere o ciclo de execução **Before** tenha certeza de que a proprie
| | |
| --- | --- |
| Número do comando | 29 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
index 77e0a0e96879c4..a1d2ac33e7095a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/begin-sql.md
@@ -51,6 +51,6 @@ Note que o *Depurador* 4D avaliará o código SQL linha por linha. Em alguns cas
| | |
| --- | --- |
| Número do comando | 948 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
index 1053cc20d5ef98..83ac08e9bfdc63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-properties.md
@@ -81,6 +81,6 @@ Depois que este método tenha sido adicionado à sua aplicação, você pode us
| | |
| --- | --- |
| Número do comando | 536 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
index b886a1ada42046..9c7e548e85ef82 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-size.md
@@ -35,6 +35,6 @@ A linha de código adiciona 100 bytes ao BLOB *meuBlob*:
| | |
| --- | --- |
| Número do comando | 605 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
index c8ff94cc56cb3d..461d7c8e6376b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-document.md
@@ -59,7 +59,7 @@ Em todos os casos, você pode interceptar o erro usando um método [ON ERR CALL]
| | |
| --- | --- |
| Número do comando | 526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
index 6c3855cf9439f1..4da77811acbf3e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-integer.md
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores inteiros de um BLOB, iniciando no offset 0x200
| | |
| --- | --- |
| Número do comando | 549 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
index 5e34e5de0fd412..924959d9ca184c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-list.md
@@ -65,7 +65,7 @@ A variável OK recebe o valor 1 se a lista for criada corretamente, caso contrá
| | |
| --- | --- |
| Número do comando | 557 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
index 4cb66a48fcdd13..964cf4f48e3152 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-longint.md
@@ -64,6 +64,6 @@ O exemplo a seguir lê 20 valores Inteiro longo de um BLOB, iniciando no offset
| | |
| --- | --- |
| Número do comando | 551 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
index 41ef802a2914eb..a063f94a28a31d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-picture.md
@@ -57,7 +57,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 682 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
index 074b6714442294..21199d79aff315 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-print-settings.md
@@ -80,6 +80,6 @@ Se quiser aplicar a configuração de impressão salva no disco para o contexto
| | |
| --- | --- |
| Número do comando | 1434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
index 1e0cbefde7047e..8863d8453cb1ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-real.md
@@ -65,6 +65,6 @@ O exemplo a seguir lê 20 valores Reais de um BLOB, iniciando no offset 0x200:
| | |
| --- | --- |
| Número do comando | 553 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
index 837110e45b9934..77e8f6d83f2c6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-text.md
@@ -66,6 +66,6 @@ Após a chamada, a variável é incrementada pelo número de bytes lidos. Portan
| | |
| --- | --- |
| Número do comando | 555 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
index e38a69a7b8ce80..8e39618fe4a493 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-users.md
@@ -52,7 +52,7 @@ este comando causa a substituição de quaisquer contas e grupos existentes cria
| | |
| --- | --- |
| Número do comando | 850 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
index b568b927074c9c..6ca556bbb76412 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/blob-to-variable.md
@@ -47,7 +47,7 @@ A variável OK é definida como 1 se a variável foi reescrita com sucesso, caso
| | |
| --- | --- |
| Número do comando | 533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
index 5551ade44bcad6..7e21e366b8e457 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bool.md
@@ -53,6 +53,6 @@ Seleciona um valor dependendo do conteúdo de um atributo de campo de objeto, an
| | |
| --- | --- |
| Número do comando | 1537 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
index 2823661e5b035f..540817d407fec0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/boolean-array-from-set.md
@@ -38,6 +38,6 @@ Se você não passar o parâmetro *conjunto*, o comando utilizará UserSet no pr
| | |
| --- | --- |
| Número do comando | 646 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
index 50c44bb424b5dc..6cce5163930418 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/break-level.md
@@ -50,6 +50,6 @@ O exemplo a seguir imprime um relatório com dois níveis de quebra. A seleção
| | |
| --- | --- |
| Número do comando | 302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
index db3e107c94a914..013845fc362f38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/bring-to-front.md
@@ -42,6 +42,6 @@ O exemplo a seguir é um método que pode ser executado desde um menu. Ele verif
| | |
| --- | --- |
| Número do comando | 326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
index eb6a81de619d51..f820b551bdee12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/build-application.md
@@ -59,7 +59,7 @@ Se o comando falhar, é gerado um erro que pode ser interceptado com a ajuda do
| | |
| --- | --- |
| Número do comando | 871 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
index ef7a970491cc0f..9b0fd1bfba5fbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cache-info.md
@@ -59,6 +59,6 @@ Se quiser obter informação da cache do banco de dados e todos os componentes a
| | |
| --- | --- |
| Número do comando | 1402 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
index 6f741945d5fce1..1860474a2a9c99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-form.md
@@ -107,6 +107,6 @@ Depois pode adicionar outras mensagens executando o comando **CALL FORM** novame
| | |
| --- | --- |
| Número do comando | 1391 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
index 5ee52614fda67c..7ffa4462e37c98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-subform-container.md
@@ -35,6 +35,6 @@ Em *evento*, pode passar todo evento de formulário pré-definido de 4D (pode ut
| | |
| --- | --- |
| Número do comando | 1086 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
index 0ad8b404063726..784a001404e787 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/call-worker.md
@@ -89,6 +89,6 @@ O código de *workerMethod é*:
| | |
| --- | --- |
| Número do comando | 1389 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
index b274becf901739..0fd0e34185bced 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel-transaction.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 241 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
index bdd847d3e4a248..ef775cc164adc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cancel.md
@@ -56,7 +56,7 @@ Quando o comando CANCEL é executado (anulação de formulário ou de impressão
| | |
| --- | --- |
| Número do comando | 270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
index 8295f468ecad29..8178b4a784ca64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/caps-lock-down.md
@@ -35,6 +35,6 @@ Veja o exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
index b24c45d0a799f0..e3dbb71f2be3f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-current-user.md
@@ -73,6 +73,6 @@ O exemplo abaixo exibe a caixa de diálogo de conexão:
| | |
| --- | --- |
| Número do comando | 289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
index 747b5ef9cdd162..29426c85e9ec71 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-licenses.md
@@ -46,7 +46,7 @@ Desta forma um usuário pode ativar licenças sem ter que modificar a base.
| | |
| --- | --- |
| Número do comando | 637 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
index 9cc410fa396191..73ab60a19bf1f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-password.md
@@ -48,6 +48,6 @@ O exemplo abaixo permite ao usuário mudar sua senha.
| | |
| --- | --- |
| Número do comando | 186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
index 9fe0503be8392f..98ad1f70deaf77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/change-string.md
@@ -44,6 +44,6 @@ O seguinte exemplo ilustra o uso de Change string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
index 9a4ed8cacfceda..f9c47519516e1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/char.md
@@ -43,6 +43,6 @@ O seguinte exemplo utiliza Char para inserir um retorno de carro no texto de uma
| | |
| --- | --- |
| Número do comando | 90 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
index 4d106e9359d233..9263c173cdb39b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/character-code.md
@@ -91,6 +91,6 @@ O segundo código é executado mais rápido por duas razões: apenas referencia
| | |
| --- | --- |
| Número do comando | 91 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
index 9d988a34f741c7..df959ee2478b3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/check-log-file.md
@@ -40,7 +40,7 @@ Este comando só pode ser utilizado no contexto de aplicativos monousuários. Ma
| | |
| --- | --- |
| Número do comando | 799 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
index e2f3d336143a0f..796c5491d7afbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/choose.md
@@ -87,6 +87,6 @@ Este código é estritamente equivalente a:
| | |
| --- | --- |
| Número do comando | 955 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
index de0cfc79cd0b4c..54af6d39ae67d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-list.md
@@ -59,6 +59,6 @@ Ver o exemplo do comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 377 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
index 68c967b20795a0..6f67f1b18d2602 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-named-selection.md
@@ -30,6 +30,6 @@ Se *nome* foi criado pelo comando [CUT NAMED SELECTION](cut-named-selection.md "
| | |
| --- | --- |
| Número do comando | 333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
index 1fee1006a81749..fdbf6ab5467358 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-pasteboard.md
@@ -45,6 +45,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 402 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
index 39dbeb749c81b8..6b2e8d99f241bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-semaphore.md
@@ -34,6 +34,6 @@ Ver o exemplo de [Semaphore](semaphore.md "Semaphore").
| | |
| --- | --- |
| Número do comando | 144 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
index 180c1d9aa8fe5a..a54f64a72fef6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-set.md
@@ -32,6 +32,6 @@ Ver o exemplo do comando [USE SET](use-set.md "USE SET").
| | |
| --- | --- |
| Número do comando | 117 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
index 6284dae573c8e0..13a7832bf0cb90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clear-variable.md
@@ -50,6 +50,6 @@ Em um formulário, utilize uma lista suspensa (drop down) chamada *MinhaListaSus
| | |
| --- | --- |
| Número do comando | 89 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
index bc10e474866b0d..7bbee55641517a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/clickcount.md
@@ -65,6 +65,6 @@ As etiquetas não são editáveis mas o são depois de um triplo-clique. Se dese
| | |
| --- | --- |
| Número do comando | 1332 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
index 2488e0eb2f4591..4feec63220683e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-document.md
@@ -43,6 +43,6 @@ O exemplo abaixo permite ao usuário criar um novo documento, escreva a string "
| | |
| --- | --- |
| Número do comando | 267 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
index 4a37d525f44ee4..ae66b7c49bf036 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-printing-job.md
@@ -29,6 +29,6 @@ Quando tiver executado este comando, a impressora novamente está disponível pa
| | |
| --- | --- |
| Número do comando | 996 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
index 0679c51d5aed17..42119806e29191 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-resource-file.md
@@ -34,6 +34,6 @@ Lembre chamar finalmente **CLOSE RESOURCE FILE** para um arquivo de recursos que
| | |
| --- | --- |
| Número do comando | 498 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
index df7c94a7126e75..333aeaa59d2b9c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/close-window.md
@@ -44,6 +44,6 @@ O seguinte exemplo abre uma janela formulario e cria novos registros com o coman
| | |
| --- | --- |
| Número do comando | 154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
index 34080ce1e8cbaf..2879faf94119d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/collection-to-array.md
@@ -71,6 +71,6 @@ Se quiser copiar diferentes valores de propriedade de uma coleção de objetos e
| | |
| --- | --- |
| Número do comando | 1562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
index 49553f02216c63..c7f55c193cef70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/combine-pictures.md
@@ -57,6 +57,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 987 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
index a7c224daa61c94..fca6952d3d55be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compact-data-file.md
@@ -76,7 +76,7 @@ Se um arquivo de histórico for gerado, seu nome de caminho completo é retornad
| | |
| --- | --- |
| Número do comando | 937 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
index 2e41f717822180..69ecacfd7f064a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compare-strings.md
@@ -109,6 +109,6 @@ Os exemplos abaixo ilustram o impacto específico das opções no **contexto da
| | |
| --- | --- |
| Número do comando | 1756 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
index c3f457c0d9b494..ab1e5c6b57f110 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/component-list.md
@@ -39,6 +39,6 @@ Para maiores informações sobre componentes 4D, por favor consulte o Manual de
| | |
| --- | --- |
| Número do comando | 1001 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
index 7e0eabe1d8ec6d..ce9803c8955aea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/compress-blob.md
@@ -97,7 +97,7 @@ A variável OK é definida como 1 se o BLOB foi compactado com sucesso, caso con
| | |
| --- | --- |
| Número do comando | 534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
index eeba309ab48c01..33fc162d7a9998 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/confirm.md
@@ -98,7 +98,7 @@ Mostrará a seguinte caixa de diálogo de confirmação (em Macintosh):
| | |
| --- | --- |
| Número do comando | 162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
index f8883de58f2f2c..11a633b3266da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/contextual-click.md
@@ -46,6 +46,6 @@ Este método, combinado com uma área de rolagem, lhe permite modificar o valor
| | |
| --- | --- |
| Número do comando | 713 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
index 340aad7621635b..13068fb535e32f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-coordinates.md
@@ -90,6 +90,6 @@ Se quiser abrir uma janela pop-up na posição do cursor do mouse, em Windows, p
| | |
| --- | --- |
| Número do comando | 1365 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
index 397118cfd8bf24..4a2ede562298bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-from-text.md
@@ -192,7 +192,7 @@ Se o comando tiver sido executado corretamente, a variável OK assume o valor 1\
| | |
| --- | --- |
| Número do comando | 1011 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
index 7bede5ea388852..df3f50c026c378 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-posix-to-system.md
@@ -60,6 +60,6 @@ Exemplos em Windows:
| | |
| --- | --- |
| Número do comando | 1107 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
index 2f7f7ab77a1bb6..8134c65dd7f46f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-path-system-to-posix.md
@@ -67,6 +67,6 @@ Exemplo em Windows
| | |
| --- | --- |
| Número do comando | 1106 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
index 3ccba98f836be4..959f4b85a49b37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-picture.md
@@ -56,6 +56,6 @@ Conversão de uma imagem com qualidade de 60%:
| | |
| --- | --- |
| Número do comando | 1002 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
index 6c11e07b809172..1f2bfae7a5ae5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/convert-to-text.md
@@ -37,7 +37,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Do co
| | |
| --- | --- |
| Número do comando | 1012 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
index df80334b03b0d6..8a1a59a4c09deb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-array.md
@@ -41,6 +41,6 @@ O exemplo seguinte preenche o array chamado C. Ele então cria um novo array, ch
| | |
| --- | --- |
| Número do comando | 226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
index 52027b72f53e09..7b2c8d1cc605a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-blob.md
@@ -35,6 +35,6 @@ A cópia começa na posição (expressa em relação ao início do BLOB fonte) e
| | |
| --- | --- |
| Número do comando | 558 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
index 3f0036f7eded81..92d5e73b7153ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-document.md
@@ -124,7 +124,7 @@ Os seguintes exemplos criam diferentes arquivos e pastas na pasta da base (exemp
| | |
| --- | --- |
| Número do comando | 541 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
index e2cd37f19c40d8..23a88bd19b7419 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-list.md
@@ -31,6 +31,6 @@ Quando tiver terminado de utilizar a nova lista, chame a [CLEAR LIST](clear-list
| | |
| --- | --- |
| Número do comando | 626 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
index a46e77b93c6239..6e66f3ebf0d9de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-named-selection.md
@@ -56,6 +56,6 @@ O seguinte exemplo permite verificar se há outras faturas vencidas na tabela *\
| | |
| --- | --- |
| Número do comando | 331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
index d0e0e8435ab11b..9529b456c7c59a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-parameters.md
@@ -86,6 +86,6 @@ Como o comando devolve uma coleção, pode ser utilizada com **.join()** para cr
| | |
| --- | --- |
| Número do comando | 1790 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
index ccd498f4e1f19e..4468abd51545ce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/copy-set.md
@@ -45,6 +45,6 @@ O seguinte exemplo em Cliente/Servidor, copia o conjunto processo "*ConjuntoA*",
| | |
| --- | --- |
| Número do comando | 600 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
index 3066e6e41e8a09..acec1838134160 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cos.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 18 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
index 0fc1a668bbde4a..ea5d40dd5dcd22 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-in-array.md
@@ -63,6 +63,6 @@ Para contar referências de objeto em um array de objeto:
| | |
| --- | --- |
| Número do comando | 907 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
index d94e207084d8a3..d74dda4ccaea6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-list-items.md
@@ -66,6 +66,6 @@ Aqui temos uma lista chamada *hList* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 380 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
index 02caf58ace8e81..78edf105865565 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menu-items.md
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Count menu items é aplicada a barra de menus
| | |
| --- | --- |
| Número do comando | 405 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
index 6d6173c0518c7e..c7b8d93d85e152 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-menus.md
@@ -29,7 +29,7 @@ Se omitir o parâmetro *processo*, Count menus é aplicada a barra de menus do p
| | |
| --- | --- |
| Número do comando | 404 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
index 787de278861aeb..1b1e97cb5352b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-parameters.md
@@ -97,6 +97,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 259 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
index 810b045f72d422..599c90c0b37ac4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-screens.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 437 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
index 173307e1848c2a..39633fe6a41e0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-tasks.md
@@ -35,6 +35,6 @@ Ver o exemplo para [Process state](process-state.md "Process state") e [On Exit
| | |
| --- | --- |
| Número do comando | 335 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
index c18f85308e1c22..be052305d92329 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-user-processes.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 343 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
index 1fed2ea54541fd..b719e8fa7a5b67 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/count-users.md
@@ -29,6 +29,6 @@ Quando em versão monousuário de 4D, **Count users** devolve 1.
| | |
| --- | --- |
| Número do comando | 342 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
index 126f84991639c4..8372c0153434be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-alias.md
@@ -73,7 +73,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 694 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
index 9d6ee42954cd57..125691c25e32d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-data-file.md
@@ -32,6 +32,6 @@ Antes de iniciar a operação, o comando verifica que o endereço de acesso não
| | |
| --- | --- |
| Número do comando | 313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
index b9f548f7c478a2..9772706654b501 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-document.md
@@ -78,7 +78,7 @@ Se o documento for criado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 266 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
index f12c6f438f4da1..cebc8a162039f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-empty-set.md
@@ -34,6 +34,6 @@ Consulte o exemplo da seção *Conjuntos*.
| | |
| --- | --- |
| Número do comando | 140 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
index ca70d9de695ac2..7d7971c757eff4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-folder.md
@@ -73,7 +73,7 @@ Criação da subpasta "\\Fevereiro\\" na atual pasta "C:\\Arquivos\\":
| | |
| --- | --- |
| Número do comando | 475 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
index e8d0e0ee07d72f..75e33415e1a882 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-index.md
@@ -93,6 +93,6 @@ Criação de um índice composto nos campos “Cidade” e “CódigoPostal” d
| | |
| --- | --- |
| Número do comando | 966 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
index 95e503858861fa..47859697695c2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-menu.md
@@ -48,6 +48,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
index 597f9892992882..f87664744994aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-record.md
@@ -52,7 +52,7 @@ O seguinte exemplo arquiva os registros que tem mais de 30 dias. Esta operação
| | |
| --- | --- |
| Número do comando | 68 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
index abbcf9b2905921..15f1cfe3fb4041 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-related-one.md
@@ -30,6 +30,6 @@ Se já existe um registro relacionado, CREATE RELATED ONE atua como [RELATE ONE]
| | |
| --- | --- |
| Número do comando | 65 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
index 07300a1a5e2e4a..8242c7d0a4cff9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-selection-from-array.md
@@ -54,7 +54,7 @@ Se um número de registro não é válido (registro não criado), é gerado o er
| | |
| --- | --- |
| Número do comando | 640 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
index 004aebce97c60a..d41f84980ccf27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set-from-array.md
@@ -45,7 +45,7 @@ Em um array de inteiros longos, se um número de registro não for válido (regi
| | |
| --- | --- |
| Número do comando | 641 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
index 67077644465fc2..da5e25b6a3c457 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-set.md
@@ -38,6 +38,6 @@ O seguinte exemplo cria um conjunto depois de realizar uma pesquisa, de maneira
| | |
| --- | --- |
| Número do comando | 116 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
index e4832914007e52..4f3e8fe31d685a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/create-thumbnail.md
@@ -65,6 +65,6 @@ O parâmetro opcional *profundidade* define o número de cores em Mac OS (ou sej
| | |
| --- | --- |
| Número do comando | 679 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
index dda8e54ecbb890..bb393d1b7e38f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-client-authentication.md
@@ -77,6 +77,6 @@ Com esta configuração, não se mostra um diálogo de senha para um 4D remoto q
| | |
| --- | --- |
| Número do comando | 1355 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
index 4ad4c1cc81b3d8..81d8dc635e75ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-date.md
@@ -103,6 +103,6 @@ O seguinte método de projeto permite fazer isso:
| | |
| --- | --- |
| Número do comando | 33 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
index 91b3d979048031..f4644e9d2e7a63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-default-table.md
@@ -36,6 +36,6 @@ Desde que uma tabela padrão tenha sido estabelecida, a linha de código abaixo
| | |
| --- | --- |
| Número do comando | 363 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
index 0db4f9ac5c8cba..3e91906021bfea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-name.md
@@ -63,6 +63,6 @@ Se quiser obter o formulário atual se este for um formulário projeto:
| | |
| --- | --- |
| Número do comando | 1298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
index fc93e2ca7ac383..a2147ea835c7e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-table.md
@@ -67,6 +67,6 @@ Para isso, utilize o método de objeto para criar a variável *vstRegistroAtual*
| | |
| --- | --- |
| Número do comando | 627 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
index edab403553be64..21bfff1c185075 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-form-window.md
@@ -30,6 +30,6 @@ A janela do formulário atual pode ser gerada automaticamente por um comando tal
| | |
| --- | --- |
| Número do comando | 827 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
index 1f33614328e51b..9f6d5715636421 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-machine.md
@@ -36,6 +36,6 @@ Inclusive se não está correndo a versão cliente/servidor de 4D, sua aplicaç
| | |
| --- | --- |
| Número do comando | 483 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
index c4baf6cada6c01..6fe162c9ebb580 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-name.md
@@ -52,6 +52,6 @@ Este comando não pode ser chamado desde uma fórmula 4D.
| | |
| --- | --- |
| Número do comando | 684 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
index 2684f0b00fcf0e..1678b9e9a185ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-method-path.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1201 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
index 0e8daf0aab8045..e661d06be3782d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process-name.md
@@ -38,6 +38,6 @@ Se quiser chamar a um processo worker e passar o nome de processo de chamada com
| | |
| --- | --- |
| Número do comando | 1392 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
index 0f8245586e7c3e..6b5efeb65032fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-process.md
@@ -32,6 +32,6 @@ Ver os exemplos de [DELAY PROCESS](delay-process.md "DELAY PROCESS") e [PROCESS
| | |
| --- | --- |
| Número do comando | 322 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
index d9f3341cb1b066..4bfe3a2463af0a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-system-user.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [Current machine](current-machine.md "Current machine")
| | |
| --- | --- |
| Número do comando | 484 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
index ccbe4370830fe3..e546bff258d53f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-time.md
@@ -55,6 +55,6 @@ O exemplo a seguir extrai as horas, minutos e segundos da hora atual:
| | |
| --- | --- |
| Número do comando | 178 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
index bf6ca9b2277e94..44359d2cd01ad0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/current-user.md
@@ -44,6 +44,6 @@ Ver exemplo do comando [User in group](user-in-group.md).
| | |
| --- | --- |
| Número do comando | 182 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
index ed6b23a766be13..6c632554924355 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/cut-named-selection.md
@@ -42,7 +42,7 @@ O método seguinte vazia a seleção atual de uma tabela *\[Clientes\]*:
| | |
| --- | --- |
| Número do comando | 334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
index 31d6a7185fdd05..fc8079b548b48e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file-encryption-status.md
@@ -74,6 +74,6 @@ Se quiser conhecer o estado de criptografia de um arquivo de dados que correspon
| | |
| --- | --- |
| Número do comando | 1609 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
index 2ecc9db7158037..6016f1603171c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/data-file.md
@@ -38,6 +38,6 @@ Se você está trabalhando, por exemplo, com o banco na pasta Documentos:MeusCDs
| | |
| --- | --- |
| Número do comando | 490 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
index 4fd0c9210ae528..5c115fb9230f4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/database-measures.md
@@ -335,6 +335,6 @@ Queremos obter as medidas de bytes de cachê nos últimos dois minutos:
| | |
| --- | --- |
| Número do comando | 1314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
index 1840ff18ba6968..9918bd7d0b3afc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/date.md
@@ -100,6 +100,6 @@ Se quiser obter uma data de um atributo de objeto, qualquer que seja a opção a
| | |
| --- | --- |
| Número do comando | 102 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
index 2cf62f7d5aa44f..7aa2ca0b26974c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-number.md
@@ -65,6 +65,6 @@ O seguinte exemplo é uma função que retorna o dia atual como uma string:
| | |
| --- | --- |
| Número do comando | 114 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
index 4d8adaa2f28cb4..0aa5c24fa2449c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/day-of.md
@@ -42,6 +42,6 @@ Veja o exemplo para o comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 23 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
index d70dff2d1b7dfe..de41f2b6429663 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/deactivated.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução Deactivated, tenha certeza de que o e
| | |
| --- | --- |
| Número do comando | 347 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
index 1ae0d0b1424f9d..e3437412ba346e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dec.md
@@ -36,6 +36,6 @@ O exemplo a seguir utiliza um valor monetário expresso como um número real, e
| | |
| --- | --- |
| Número do comando | 9 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
index 84f8d19fc50922..3226f2ecbb2f7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-blob.md
@@ -40,6 +40,6 @@ Consulte os exemplos dados para o comando .
| | |
| --- | --- |
| Número do comando | 690 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
index 2059fb2bd19556..ccdeb35094f63f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/decrypt-data-blob.md
@@ -65,6 +65,6 @@ O exemplo abaixo mostra como decriptogrofar um arquivo criptografado localizado
| | |
| --- | --- |
| Número do comando | 1774 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
index f68e352d5d2592..1878afb9272892 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/default-table.md
@@ -83,6 +83,6 @@ Neste código o resultado da tabela padrão:
| | |
| --- | --- |
| Número do comando | 46 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
index 21742e6cf836da..ad959bab45bbd7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delay-process.md
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 323 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
index 98f6f9efc41d62..664874beb8130c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-document.md
@@ -54,7 +54,7 @@ A eliminação de um documento faz que a variável sistema assuma o valor 1\. Se
| | |
| --- | --- |
| Número do comando | 159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
index 2667f1a8d6dc83..9685c2a3d399b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-folder.md
@@ -48,7 +48,7 @@ Pode interceptar estes erros usando o método isntalado pelo comando [ON ERR CAL
| | |
| --- | --- |
| Número do comando | 693 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
index bda519d71df6ba..3a67ac47680185 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-array.md
@@ -50,6 +50,6 @@ O exemplo a seguir deleta o última elemento de um array, se ele existir:
| | |
| --- | --- |
| Número do comando | 228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
index 8bd49203857b53..bcd59469bd7f5d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-blob.md
@@ -32,6 +32,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 560 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
index 1d0f1c4d4083f0..facd713ce2d126 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-from-list.md
@@ -48,6 +48,6 @@ O código a seguir apaga o elemento selecionado da lista *hList*. Se o elemento
| | |
| --- | --- |
| Número do comando | 624 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
index 81990f8e6f679a..9869e190578309 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-index.md
@@ -51,6 +51,6 @@ Este exemplo ilustra as duas sintaxes do comando:
| | |
| --- | --- |
| Número do comando | 967 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
index fc57389b0bf99b..c0c7bd025e5a61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-menu-item.md
@@ -39,7 +39,7 @@ Se omite o parâmetro *processo*, DELETE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 413 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
index 68cad0872cabdb..5f86c851cc5e46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-record.md
@@ -48,7 +48,7 @@ O exemplo apaga um registro de um empregado. O código pergunta ao usuário o n
| | |
| --- | --- |
| Número do comando | 58 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
index 5587dd98d88b8b..d96312092cf9a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-selection.md
@@ -68,7 +68,7 @@ Se for encontrado um registro bloqueado durante a execução de DELETE SELECTION
| | |
| --- | --- |
| Número do comando | 66 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
index c6afbef87d1772..7d55d7c3bbd0e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-string.md
@@ -50,6 +50,6 @@ O exemplo abaixo ilustra o uso de Delete string. Os resultados são atribuídos
| | |
| --- | --- |
| Número do comando | 232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
index 4f605058d83448..31a09cebd17dba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/delete-user.md
@@ -39,7 +39,7 @@ Se não tiver os privilégios de acesso para chamar DELETE USER ou se outro proc
| | |
| --- | --- |
| Número do comando | 615 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
index 74169651eb379b..1c9c472ae2805b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/describe-query-execution.md
@@ -72,6 +72,6 @@ $vResultPath :
| | |
| --- | --- |
| Número do comando | 1044 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
index 394f75f713293a..b0cc0268c71e4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/difference.md
@@ -60,6 +60,6 @@ Ao final da lista de registros há um botão com um método de objeto. O método
| | |
| --- | --- |
| Número do comando | 122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
index 7f0c87d99cd523..d5cab7057b2536 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/disable-menu-item.md
@@ -36,7 +36,7 @@ Se o parâmetro *menuItem* designa um submenu hierárquico, todos os elementos d
| | |
| --- | --- |
| Número do comando | 150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
index f4c87de62af72a..b0d44a2ea781eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/discover-data-key.md
@@ -55,6 +55,6 @@ Os archivos chave (arquivos de extensão ".4DKeyChain") devem ser armazenados no
| | |
| --- | --- |
| Número do comando | 1639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
index 097784272de961..bd5431b659ab5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-notification.md
@@ -46,6 +46,6 @@ Sob Windows, é mostrada a janela da mensagem se não se detecta atividade na m
| | |
| --- | --- |
| Número do comando | 910 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
index e39cabe9d2c1d0..7c07fe7ddb14e3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-record.md
@@ -46,6 +46,6 @@ O exemplo a seguir mostra uma série de registros como uma apresentação de sli
| | |
| --- | --- |
| Número do comando | 105 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
index c38da8f214a121..0a2f7f1920c5fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/display-selection.md
@@ -107,7 +107,7 @@ Também pode utilizar outros comandos, tais como [PRINT SELECTION](print-selecti
| | |
| --- | --- |
| Número do comando | 59 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
index 4e7e8146dad6a8..6485c7a7e514f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/displayed-line-number.md
@@ -50,6 +50,6 @@ Este exemplo lhe permite aplicar uma cor alternativa em um formulário listado m
| | |
| --- | --- |
| Número do comando | 897 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
index d17ea7f3c3af6d..744551be40bfe5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-paths.md
@@ -73,6 +73,6 @@ O array *aTPaths* obtém os elementos abaixo:
| | |
| --- | --- |
| Número do comando | 1395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
index 966937c4d9b06b..ac59d161e2f6a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-attribute-values.md
@@ -70,6 +70,6 @@ O array *aLAges* obtém os seguintes 9 elementos:
| | |
| --- | --- |
| Número do comando | 1397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
index fbd6bee17a79d0..9e22c4539508dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/distinct-values.md
@@ -89,6 +89,6 @@ Para calcular as estatísticas, se quiser ordenar o número de valores distintos
| | |
| --- | --- |
| Número do comando | 339 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
index 27e2822e5f26f9..d73ec0aeb8be98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-list.md
@@ -119,7 +119,7 @@ Lista de todos os documentos em modo recursivo Posix (relativo):
| | |
| --- | --- |
| Número do comando | 474 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
index 6ba21e731b4190..5afb2f416bcfa4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-blob.md
@@ -56,7 +56,7 @@ Em cada caso, você pode interceptar o erro usando um método de interrupção [
| | |
| --- | --- |
| Número do comando | 525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
index 31be176bc8231a..09b063ee006cd1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/document-to-text.md
@@ -83,6 +83,6 @@ Quando executa este código:
| | |
| --- | --- |
| Número do comando | 1236 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
index b94fca6fbb9779..5d9d5b4d191b34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-child-node.md
@@ -152,6 +152,6 @@ Se o conteúdo de *valorFilho* não é válido, se devolve um erro.
| | |
| --- | --- |
| Número do comando | 1080 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
index fe3e03691d6183..1712f018f20e99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-append-xml-element.md
@@ -34,6 +34,6 @@ Ver o exemplo do comando [DOM Insert XML element](dom-insert-xml-element.md "DOM
| | |
| --- | --- |
| Número do comando | 1082 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
index 4d5e776133e462..0717867c39a31b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-close-xml.md
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 722 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
index 73c5e0fe1004df..2588e30a7f05ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-attributes.md
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 727 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
index d4ef74d60a815c..dc22cd0eb1928e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-count-xml-elements.md
@@ -33,7 +33,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 726 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
index 1a4e58bd8275e2..5b4363f5242ed6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element-arrays.md
@@ -67,6 +67,6 @@ Para isso, basta escrever:
| | |
| --- | --- |
| Número do comando | 1097 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
index 503dc18baad87a..8234e9d326c1c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-element.md
@@ -162,7 +162,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 865 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
index 63e942ae1a70c1..67a9568e5d7e97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-create-xml-ref.md
@@ -104,7 +104,7 @@ Se o comando foi executado corretamente, a variável sistema Ok assume o valor 1
| | |
| --- | --- |
| Número do comando | 861 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
index 3fa9ba56b0b946..2986cc043ba5b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-file.md
@@ -68,7 +68,7 @@ Se gera um erro quando:
| | |
| --- | --- |
| Número do comando | 862 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
index b9aee23f6f8dbc..745b71a2b8f1df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-export-to-var.md
@@ -61,7 +61,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 863 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
index 5ace150093d0eb..43b00effbfb6cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element-by-id.md
@@ -34,7 +34,7 @@ O comando retorna como resultado a referência XML do elemento encontrado.
| | |
| --- | --- |
| Número do comando | 1010 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
index 02e80ca9778c9a..4678af0de0c6f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-find-xml-element.md
@@ -116,7 +116,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 864 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
index 3e407cf03c392d..c1bde5539dd3cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-first-child-xml-element.md
@@ -64,7 +64,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 723 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
index 556727eb5090b3..a983f4358e0372 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-last-child-xml-element.md
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 925 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
index 3348dff70c3fcf..305d70c5e691f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-next-sibling-xml-element.md
@@ -66,7 +66,7 @@ Se o comando tiver sido executado corretamente e se o elemento analisado não fo
| | |
| --- | --- |
| Número do comando | 724 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
index b932d66d403795..6c3abaa8c19e27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-parent-xml-element.md
@@ -42,7 +42,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 923 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
index a769c10ee8cf7f..42442abc8243a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-previous-sibling-xml-element.md
@@ -39,7 +39,7 @@ Se o comando for executado corretamente e se o elemento referenciado não for o
| | |
| --- | --- |
| Número do comando | 924 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
index 05e2804c606a0d..ed25b1e5eb7a70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-root-xml-element.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1053 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
index 22d5da927c5567..a5359542ea297d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-index.md
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 729 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
index 728fd0e7831367..b2589ef44e1fce 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-attribute-by-name.md
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 728 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
index e5ed9aa065082b..aafc4188bacde3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-child-nodes.md
@@ -69,6 +69,6 @@ Depois da execução destas instruções:
| | |
| --- | --- |
| Número do comando | 1081 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
index 19fb2e1e28c66d..4a4a22777c1f6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-document-ref.md
@@ -58,6 +58,6 @@ Neste exemplo, queremos encontrar a declaração DTD do documento XML:
| | |
| --- | --- |
| Número do comando | 1088 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
index fe13eed41f4fdb..c9ae2104d76238 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-name.md
@@ -46,7 +46,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
index 18dc25afa0669c..96aa7425de9884 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element-value.md
@@ -49,7 +49,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
index 7108c98615f512..61dad5276686f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-element.md
@@ -39,7 +39,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 725 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
index df2dd76f6265d7..db782bdb4fe18a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-get-xml-information.md
@@ -39,6 +39,6 @@ Em *xmlInfo*, passe um código indicando o tipo de informação a ser recuperado
| | |
| --- | --- |
| Número do comando | 721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
index 6510370087b940..6b7b08f7ce85f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-insert-xml-element.md
@@ -84,6 +84,6 @@ Para fazer isso, simplesmente execute o código abaixo:
| | |
| --- | --- |
| Número do comando | 1083 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
index b583da8a2c589f..007e4a9c956214 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-source.md
@@ -98,7 +98,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 719 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
index 8ab27decf8d04f..f79ab9c804d2c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-parse-xml-variable.md
@@ -88,7 +88,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 720 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
index 230c57c6bec277..7e90b607107c62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-attribute.md
@@ -50,7 +50,7 @@ O código abaixo permite remover o primeiro atributo "N=1":
| | |
| --- | --- |
| Número do comando | 1084 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
index 205576bb180286..78145bd85e1065 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-remove-xml-element.md
@@ -33,7 +33,7 @@ Um erro é gerado quando o elemento de referência for inválido
| | |
| --- | --- |
| Número do comando | 869 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
index 4a6f339182dcec..d7addd8ddee635 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-attribute.md
@@ -73,7 +73,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 866 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
index 9a7e164cb6b885..0367d0f71614c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-declaration.md
@@ -43,6 +43,6 @@ O exemplo define a codificação a utilizar e a opção autônoma do elemento *e
| | |
| --- | --- |
| Número do comando | 859 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
index 23f289999f77b4..616e62490356f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-name.md
@@ -64,7 +64,7 @@ Um erro é gerado quando:
| | |
| --- | --- |
| Número do comando | 867 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
index 3efdc5641ab700..7ab06f347f4a99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dom-set-xml-element-value.md
@@ -125,7 +125,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 868 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
index 14fc23b32421d4..f55cd256266347 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drag-window.md
@@ -59,6 +59,6 @@ Depois pode arrastar a janela clicando em qualquer das margens.
| | |
| --- | --- |
| Número do comando | 452 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
index 7eb200549adcba..165b67d35f27e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-position.md
@@ -99,6 +99,6 @@ O método de objeto de list box da esquerda (destino) contém o código abaixo:
| | |
| --- | --- |
| Número do comando | 608 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
index 588bedea4758b2..4d3aa3c919dab3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/drop-remote-user.md
@@ -49,6 +49,6 @@ Se quiser eliminar um usu\[ario remoto específico:
| | |
| --- | --- |
| Número do comando | 1633 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
index e07914aa73884c..1717f687e5301c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/duplicate-record.md
@@ -30,7 +30,7 @@ DUPLICATE RECORD pode ser executado durante a entrada de dados. Isso permite dup
| | |
| --- | --- |
| Número do comando | 225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
index 5e9872983e2c11..0108954d708397 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/dynamic-pop-up-menu.md
@@ -97,6 +97,6 @@ Este código permite criar um menu emergente dinâmico hierárquico baseado em a
| | |
| --- | --- |
| Número do comando | 1006 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
index 2ee9fbf19b6237..5fed7724f275c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-access.md
@@ -40,7 +40,7 @@ O exemplo abaixo mostra ao usuário a janela de gestão de usuários e grupos:
| | |
| --- | --- |
| Número do comando | 281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
index 597b913b30901f..c383c4855a237a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-formula.md
@@ -59,7 +59,7 @@ Se o usuário valida a caixa de diálogo, a variável de sistema OK toma o valor
| | |
| --- | --- |
| Número do comando | 806 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
index e209ac0bcd6bc7..d984d33e0d3176 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/edit-item.md
@@ -79,6 +79,6 @@ Dadas duas colunas em una list box onde os nomes das variáveis são “Array1
| | |
| --- | --- |
| Número do comando | 870 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
index cc8274d3ba2d6a..c3b8675e326040 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/enable-menu-item.md
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, ENABLE MENU ITEM é aplicado a barra de menus
| | |
| --- | --- |
| Número do comando | 149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
index 2eab0b0d583687..c23aacad8b64dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-blob.md
@@ -191,6 +191,6 @@ A empresa quer usar a Internet para trocar informações. Cada filial recebe inf
| | |
| --- | --- |
| Número do comando | 689 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
index 9f6a148f853aa3..e0093558336d5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-blob.md
@@ -65,6 +65,6 @@ Para criptografar um arquivo texto na pasta RESOURCES no banco de dados:
| | |
| --- | --- |
| Número do comando | 1773 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
index dd39d8305157db..436afa8975ad62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/encrypt-data-file.md
@@ -137,6 +137,6 @@ Re-encriptar um arquivo de dados criptografado com a chave atual (por exemplo, q
| | |
| --- | --- |
| Número do comando | 1610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
index 1cfb09b0fd0fe8..20fb01d800ecfa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-selection.md
@@ -66,6 +66,6 @@ Este método de formulário é utilizado durante a impressão de um relatório.
| | |
| --- | --- |
| Número do comando | 36 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
index d88b780267e29a..aa6b9b56e5ab86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/end-sql.md
@@ -27,6 +27,6 @@ Uma sequência de instruções SQL deve estar rodeada pelas palavras chaves [Beg
| | |
| --- | --- |
| Número do comando | 949 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
index 7b5c29da9d3f60..56780db4e83794 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/equal-pictures.md
@@ -48,7 +48,7 @@ Este é o código do botão **Compare**:
| | |
| --- | --- |
| Número do comando | 1196 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
index 364ecb4b58bf27..e5af182398f269 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/erase-window.md
@@ -33,6 +33,6 @@ No confunda ERASE WINDOW , que apaga o conteúdo de uma janela, com [CLOSE WINDO
| | |
| --- | --- |
| Número do comando | 160 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
index d091d531915c78..e8bf8996ffeca6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/euro-converter.md
@@ -85,6 +85,6 @@ Estes são alguns exemplos de conversões que podem ser realizadas com este coma
| | |
| --- | --- |
| Número do comando | 676 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
index 4102addacef01a..3f1e0667501e1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-formula.md
@@ -69,6 +69,6 @@ Se quiser executar instruções usando chamadas para comandos 4D e tabelas. Já
| | |
| --- | --- |
| Número do comando | 63 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
index 1c26533b84f2c1..a380e95772035b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method-in-subform.md
@@ -81,7 +81,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1085 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
index bb08b4e45c9ff4..445399382b2cb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-method.md
@@ -38,7 +38,7 @@ Se este comando é executado corretamente, a variável sistema OK toma o valor 1
| | |
| --- | --- |
| Número do comando | 1007 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
index 3446f299d400fb..ab0ed9700df91a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-client.md
@@ -67,7 +67,7 @@ A variável do sistema **OK é** igual a 1 se o 4D Server recebeu corretamente o
| | |
| --- | --- |
| Número do comando | 651 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
index bb71bd0fa7d88b..e9068f7704ce12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/execute-on-server.md
@@ -202,6 +202,6 @@ Consulte a seção *Serviços baseados nos procedimentos armazenados (exemplo)*
| | |
| --- | --- |
| Número do comando | 373 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
index f5e0b5fe29c497..facef8ffe26034 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/exp.md
@@ -37,6 +37,6 @@ O exemplo a seguir atribui a exponencial de 1 a *vrE* (o log de *vrE* é 1):
| | |
| --- | --- |
| Número do comando | 21 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
index 9c0b5ac26f12b5..783d5db9743921 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/expand-blob.md
@@ -70,7 +70,7 @@ A variável OK é definida como 1 se o BLOB foi expandido com êxito, caso contr
| | |
| --- | --- |
| Número do comando | 535 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
index 9e3982c2b12d10..6dd5a3fa1cacb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-data.md
@@ -102,7 +102,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo padrão de abrir arqui
| | |
| --- | --- |
| Número do comando | 666 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
index a0cbe52f09e948..1c4a5a74df05fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-dif.md
@@ -55,7 +55,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 84 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
index 4d6dbce9e418ad..74468c131ed23d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure-file.md
@@ -119,6 +119,6 @@ Se quiser exportar apenas os métodos projeto e banco de dados, e um arquivo de
| | |
| --- | --- |
| Número do comando | 1565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
index e35fba4e06d4d2..72dfd591e905d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-structure.md
@@ -64,6 +64,6 @@ Se quiser exportar a estrutura atual do banco de dados em formato html:
| | |
| --- | --- |
| Número do comando | 1311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
index 8040a6e138d058..a6d7e7590cb9f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-sylk.md
@@ -55,7 +55,7 @@ OK toma el valor 1 se a exportação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 85 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
index 841d09ac761331..03205a63fc9393 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/export-text.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se a exportação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
index deb86609ace2e8..d915c915539573 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/false.md
@@ -35,6 +35,6 @@ O exemplo atribui a variável *vbOpcoes* Falso:
| | |
| --- | --- |
| Número do comando | 215 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
index 130b1473093741..843dcb87879022 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field-name.md
@@ -55,6 +55,6 @@ Este exemplo mostra um alerta. Este método passa um ponteiro a um campo:
| | |
| --- | --- |
| Número do comando | 257 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
index 263f722305ec4c..e86a389d96d3a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/field.md
@@ -67,6 +67,6 @@ No seguinte exemplo, a variável *numCampo* for igual ao número do campo de \[T
| | |
| --- | --- |
| Número do comando | 253 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
index a94ce375e661a2..44e54a13901bf4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-event.md
@@ -45,7 +45,7 @@ Ver o exemplo do comando [ON EVENT CALL](on-event-call.md "ON EVENT CALL").
| | |
| --- | --- |
| Número do comando | 321 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
index 8255b6086893a4..66f860917fb3b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/filter-keystroke.md
@@ -247,6 +247,6 @@ O método ObterTextoSelecionado é o seguinte:
| | |
| --- | --- |
| Número do comando | 389 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
index 9bea6a64561659..80ff081fef6112 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-array.md
@@ -123,6 +123,6 @@ $o1:={a10;b"xyz"}
| | |
| --- | --- |
| Número do comando | 230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
index d4e5c84a38836e..2383b4b2a85385 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-field.md
@@ -68,6 +68,6 @@ Tenha em conta >= permite cobrir todos os casos. De fato, a função devolve um
| | |
| --- | --- |
| Número do comando | 653 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
index 5e57a8c63b1397..ee32062d574abe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-list.md
@@ -68,6 +68,6 @@ Dada a seguinte lista hierárquica:
| | |
| --- | --- |
| Número do comando | 952 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
index bf6bd08757b85b..c2df3c731027bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-in-sorted-array.md
@@ -79,6 +79,6 @@ Você quer encontrar o número de ocorrências das cadeias que começam por "tes
| | |
| --- | --- |
| Número do comando | 1333 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
index 0d34fcb71c9955..1f9536a708017d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/find-window.md
@@ -34,6 +34,6 @@ O parâmetro *parteJanela*, devolve 3 se toca a janela, caso contrário 0\. (**N
| | |
| --- | --- |
| Número do comando | 449 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
index f767161b9d7222..85659b94ea4c26 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/first-record.md
@@ -40,7 +40,7 @@ O exemplo a seguir carrega o primeiro registro da tabela \[Clientes\]:
| | |
| --- | --- |
| Número do comando | 50 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
index 6697550df4d539..a05ff524658866 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/flush-cache.md
@@ -36,6 +36,6 @@ Geralmente não precisa chamar este comando, já que 4D salva modificações de
| | |
| --- | --- |
| Número do comando | 297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
index 20d379b14c17be..5533e11f81c3aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/focus-object.md
@@ -51,6 +51,6 @@ O exemplo abaixo é um método de objeto para um botão. O método de objeto mod
| | |
| --- | --- |
| Número do comando | 278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
index 461ce312f13c14..29ce8526165809 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/folder-list.md
@@ -32,7 +32,7 @@ Se não houver pastas na localização especificada, o comando retorna um array
| | |
| --- | --- |
| Número do comando | 473 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
index de63239968fa4f..ecb50bf683254b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-file.md
@@ -54,6 +54,6 @@ You want to make sure the font used in a text area is available on the user syst
| | |
| --- | --- |
| Número do comando | 1700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
index 68b76ea7d101af..7679049b0a2434 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-list.md
@@ -81,6 +81,6 @@ Você quer obter uma lista de fontes recentes:
| | |
| --- | --- |
| Número do comando | 460 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
index 225dbfcb0c0f90..60e0422c3d142b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/font-style-list.md
@@ -64,6 +64,6 @@ Se quiser selecionar estilos da familia de fontes "Verdana" (se estiver disponí
| | |
| --- | --- |
| Número do comando | 1362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
index 9a8fd4324b52a2..1fdc1d083eb324 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-convert-to-dynamic.md
@@ -65,6 +65,6 @@ Se executar o código:
| | |
| --- | --- |
| Número do comando | 1570 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
index 281626980d741d..abcf4f18583bc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-color-scheme.md
@@ -49,6 +49,6 @@ Se quiser carregar uma imagem dependendo do esquema atual do formulário:
| | |
| --- | --- |
| Número do comando | 1761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
index 6bc0f9e0a59422..e22a23a03b8bc5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-current-page.md
@@ -73,6 +73,6 @@ Em um formulário, se seleciona um comando de menu da barra de menu ou quando o
| | |
| --- | --- |
| Número do comando | 276 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
index dd0f865e485bfb..6b97ae8a41ebdd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-entry-order.md
@@ -57,6 +57,6 @@ Pode excluir certos objetos da ordem de entrada:
| | |
| --- | --- |
| Número do comando | 1469 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
index 35710ac8c6a137..663c6d568e85e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-horizontal-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1077 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
index edce296d4a2bd7..d468d6aecd26fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-names.md
@@ -71,6 +71,6 @@ Exemplos de usos típicos:
| | |
| --- | --- |
| Número do comando | 1167 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
index 69a5fc540a321a..b87c9f781ab324 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-objects.md
@@ -130,6 +130,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 898 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
index 6c8fd8f8ced1d4..c9abc5b76710eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-properties.md
@@ -47,6 +47,6 @@ O parâmetro *título* retorna o título da janela do formulário, tal como foi
| | |
| --- | --- |
| Número do comando | 674 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
index 8da1146ea7781e..adda11f8c4271d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-get-vertical-resizing.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1078 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
index 1609277164f59e..da3046d608ba80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-goto-page.md
@@ -54,6 +54,6 @@ O exemplo a seguir é um método de objeto para um botão que mostra uma página
| | |
| --- | --- |
| Número do comando | 247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
index bade255567ce07..4381b372bbf651 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-screenshot.md
@@ -42,6 +42,6 @@ Automaticamente, o comando retorna uma captura de tela da página 1 do formulár
| | |
| --- | --- |
| Número do comando | 940 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
index aae870a9acfdb5..fcf2295dbf8d5e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-entry-order.md
@@ -59,6 +59,6 @@ Se quiser definir a ordem de entrada dos objetos no formulário baseado em seus
| | |
| --- | --- |
| Número do comando | 1468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
index 2425631f7b894a..b3bde4654a177a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-horizontal-resizing.md
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 892 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
index 7530cc182df1b7..359d7c634ee39e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-input.md
@@ -110,6 +110,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 55 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
index 974c11333c387b..368514d73cd797 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-output.md
@@ -75,6 +75,6 @@ Os exemplos abaixo usam a rota a um formulário json para imprimir os registros
| | |
| --- | --- |
| Número do comando | 54 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
index 15a41e8c5455eb..0efb5e989f6262 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-size.md
@@ -127,6 +127,6 @@ O método de objeto associado com este botão é o seguinte:
| | |
| --- | --- |
| Número do comando | 891 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
index 50fb4c0d0dc7cf..71f5f7e9bedf7d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-set-vertical-resizing.md
@@ -42,6 +42,6 @@ Consulte o exemplo do comando [FORM SET SIZE](form-set-size.md "FORM SET SIZE").
| | |
| --- | --- |
| Número do comando | 893 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
index 9b839cf53bb588..7bade102b8571a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/form-unload.md
@@ -27,6 +27,6 @@ Chamar este comando é necessário quando se utiliza o comando [FORM LOAD](../co
| | |
| --- | --- |
| Número do comando | 1299 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
index 52367fdfd83a7f..8ca322f3372a50 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-process.md
@@ -39,6 +39,6 @@ Ver o exemplo para [BRING TO FRONT](bring-to-front.md "BRING TO FRONT").
| | |
| --- | --- |
| Número do comando | 327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
index 6e34fc24ded10a..0c0d269df25da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/frontmost-window.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 447 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
index 5cc373106ee7e1..e43b909a61259d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-certificate-request.md
@@ -92,6 +92,6 @@ Este es o método do botão **Gerar**
| | |
| --- | --- |
| Número do comando | 691 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
index 650f3b48898ce5..b030d5dd26135b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-digest.md
@@ -90,6 +90,6 @@ Esses exemplos ilustram como recuperar a chave digest de um texto:
| | |
| --- | --- |
| Número do comando | 1147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
index 008ffc109bc5ae..128647495840a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-encryption-keypair.md
@@ -58,6 +58,6 @@ Ver o exemplo do comando [ENCRYPT BLOB](encrypt-blob.md).
| | |
| --- | --- |
| Número do comando | 688 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
index 79d5acb7aef30d..adfd6e28551e05 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/generate-password-hash.md
@@ -73,6 +73,6 @@ Este exemplo gera um hash de senha utilizando bcrypt com um fator de custo 4.
| | |
| --- | --- |
| Número do comando | 1533 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
index 56294b8bc75f92..8657cd897c40ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-file.md
@@ -75,6 +75,6 @@ Se quiser obter a rota do último arquivo de backup:
| | |
| --- | --- |
| Número do comando | 1418 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
index e02b6160ba3404..d0739a82ea9a3f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-4d-folder.md
@@ -218,7 +218,7 @@ Se o parâmetro *pasta* não é válido ou se o endereço de acesso retornado é
| | |
| --- | --- |
| Número do comando | 485 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
index 2e22fa2035c999..3d840b7465b13d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-blobs-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1428 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
index 8a2749ef524255..8b236016ad945c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-index-cache-priority.md
@@ -31,6 +31,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1427 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
index 63e89161358249..f51eab71d5ea81 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-adjusted-table-cache-priority.md
@@ -33,6 +33,6 @@ Os tipos de campos de dados escalares incluem campos de tipo data/hora, numéric
| | |
| --- | --- |
| Número do comando | 1426 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
index 97c23a1959451d..0d291ca9a5f436 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-allowed-methods.md
@@ -49,6 +49,6 @@ Este exemplo autoriza um conjunto de métodos específicos para criar um relató
| | |
| --- | --- |
| Número do comando | 908 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
index d5b782d2d86def..8a47c44a055428 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-application-color-scheme.md
@@ -49,6 +49,6 @@ Veja a descrição do comando [SET APPLICATION COLOR SCHEME](set-application-col
| | |
| --- | --- |
| Número do comando | 1763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
index 4cbe46de376000..35dc3ddcb398be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-assert-enabled.md
@@ -30,6 +30,6 @@ Automaticamente, as asserções estão ativas mas é possível desativá-las uti
| | |
| --- | --- |
| Número do comando | 1130 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
index 8ba14ef7756b7b..e6cc436d366dd5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-automatic-relations.md
@@ -38,6 +38,6 @@ Consulte o exemplo do comando [GET FIELD RELATION](get-field-relation.md "GET FI
| | |
| --- | --- |
| Número do comando | 899 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
index a082611a6f700c..b4472ae08d5870 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-cache-size.md
@@ -30,6 +30,6 @@ Ver exemplo de comando [SET CACHE SIZE](set-cache-size.md).
| | |
| --- | --- |
| Número do comando | 1432 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
index 2a259397372cc5..7e386d9eca7429 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-current-printer.md
@@ -37,6 +37,6 @@ Se não tiver uma impressora instalada, um erro é gerado
| | |
| --- | --- |
| Número do comando | 788 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
index cebcf19c842582..cf505476efd7a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-localization.md
@@ -58,6 +58,6 @@ O idioma atual do banco de dados pode ser usada para determinar a pasta. lproj o
| | |
| --- | --- |
| Número do comando | 1009 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
index 60770b047dd85f..09cf19627bec91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-database-parameter.md
@@ -1039,6 +1039,6 @@ Em [Método banco de dados On Startup](metodo-banco-de-dados-on-startup.md), pod
| | |
| --- | --- |
| Número do comando | 643 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
index 63766b5fbc0f79..d08a9877759b57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-default-user.md
@@ -28,6 +28,6 @@ Se nenhum usuário por padrão estiver definido, o comando retorna 0.
| | |
| --- | --- |
| Número do comando | 826 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
index 1f26a8209b7beb..99a2125b199e62 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-icon.md
@@ -33,7 +33,7 @@ O parâmetro opcional *tamanho* permite indicar as dimensões em píxels do íco
| | |
| --- | --- |
| Número do comando | 700 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
index b9bcabf1ec8b4a..b75715d572a366 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-position.md
@@ -31,6 +31,6 @@ Get document position devolve a posição, a partir do início do documento, ond
| | |
| --- | --- |
| Número do comando | 481 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
index 43dd0a242d0bc2..cb76b66a234533 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-properties.md
@@ -214,7 +214,7 @@ Quando esse método tiver sido implementado no banco de dados, nóste mos todo o
| | |
| --- | --- |
| Número do comando | 477 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
index dda1aa285c0bb4..49a46ebd567d18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-document-size.md
@@ -35,7 +35,7 @@ Em Macintosh, se não passa o parâmetro opcional *\**, se retorna o tamanho do
| | |
| --- | --- |
| Número do comando | 479 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
index 3fbc0b33fb33b3..ce21d729330dea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-edited-text.md
@@ -72,6 +72,6 @@ End if
| | |
| --- | --- |
| Número do comando | 655 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
index bdebe49beb34ea..7ba8d12979b5a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-external-data-path.md
@@ -37,6 +37,6 @@ Este comando devolve uma cadeia vazia nos seguintes casos:
| | |
| --- | --- |
| Número do comando | 1133 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
index 381772674173d0..416e7dd458b115 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-entry-properties.md
@@ -47,6 +47,6 @@ Se nenhuma lista estiver associada ao campo ou se o tipo do campo não permitir
| | |
| --- | --- |
| Número do comando | 685 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
index 31dd7faeca7cf2..95565e4ed03158 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-properties.md
@@ -79,6 +79,6 @@ Este exemplo recupera nas variáveis *vTipo*, *vTamanho*, *vIndice*, *vUnico* e
| | |
| --- | --- |
| Número do comando | 258 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
index 4401c920c7a6f1..efd1d0d831351c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-relation.md
@@ -98,6 +98,6 @@ O código a seguir ilustra as diferentes possibilidades oferecidas pelos comando
| | |
| --- | --- |
| Número do comando | 920 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
index 806fe5ec0395f3..3cf670964e4a90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-field-titles.md
@@ -35,6 +35,6 @@ Em ambos casos, o comando não retorna campos invisíveis.
| | |
| --- | --- |
| Número do comando | 804 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
index 59b0acdb8b61e5..c6aac0efe9abfb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-file-from-pasteboard.md
@@ -47,6 +47,6 @@ O exemplo a seguir pode ser utilizado para recuperar em um array todas as rotas
| | |
| --- | --- |
| Número do comando | 976 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
index 6fb39e8efebd93..c031cd17306147 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-access.md
@@ -41,6 +41,6 @@ Se qusier verificar se o usuário atual pertence ao grupo "plugins":
| | |
| --- | --- |
| Número do comando | 1738 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
index 0946a1b750c00c..3e3c15441265b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-list.md
@@ -38,7 +38,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP LIST ou se
| | |
| --- | --- |
| Número do comando | 610 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
index 881f87ff6ea353..fc3c7d167b322b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-group-properties.md
@@ -45,7 +45,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET GROUP PROPERTIES
| | |
| --- | --- |
| Número do comando | 613 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
index b442b47d82b2cc..afbc20a0dd3f67 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlight.md
@@ -68,6 +68,6 @@ Modificação do estilo do texto ressaltado:
| | |
| --- | --- |
| Número do comando | 209 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
index a234579063e9e3..dea578777fe348 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-highlighted-records.md
@@ -49,7 +49,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 902 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
index 036d8da163744b..d5ad884781225c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-indexed-string.md
@@ -44,7 +44,7 @@ Se o recurso for encontrado, OK toma o valor 1, do contrário assume o valor 0 (
| | |
| --- | --- |
| Número do comando | 510 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
index c26af57d6405f4..45371f386059b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-font.md
@@ -37,6 +37,6 @@ Finalmente, pode passar \* em *refElem*: neste caso, o comando se aplicará ao e
| | |
| --- | --- |
| Número do comando | 954 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
index 00283f83a546a2..d6b74ee8a1add6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-icon.md
@@ -44,6 +44,6 @@ Se nenhum ícone está associado ao elemento, a variável ícone seja retornada
| | |
| --- | --- |
| Número do comando | 951 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
index 88ccf5f3ecc6aa..3636ca18983c1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter-arrays.md
@@ -81,6 +81,6 @@ Caso também queiras obter os valores dos parâmetros, escreva:
| | |
| --- | --- |
| Número do comando | 1195 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
index 75352f6691f5cf..807a74b02847a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-parameter.md
@@ -41,6 +41,6 @@ Em *seletor*, pode passar a constante Additional text ou a constante de ação p
| | |
| --- | --- |
| Número do comando | 985 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
index 66b6dd89fa0853..387b310a7694a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item-properties.md
@@ -57,6 +57,6 @@ Para maior informação sobre estas propriedades, consulte a descrição do coma
| | |
| --- | --- |
| Número do comando | 631 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
index 1b4805ec6ffaa2..13fc2c2c124442 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-item.md
@@ -71,6 +71,6 @@ Consulte o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST
| | |
| --- | --- |
| Número do comando | 378 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
index 2961ffe1dd9c65..ae1eb37507048b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-list-properties.md
@@ -43,6 +43,6 @@ Para uma completa descrição da aparência, ícones de knots, altura de linha m
| | |
| --- | --- |
| Número do comando | 632 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
index 08e2bcba1e6c0c..508744ccbcb115 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-macro-parameter.md
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MACRO PARAMETER](set-macro-parameter.md "SET
| | |
| --- | --- |
| Número do comando | 997 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
index cfd3c555a89805..3958539772fd7b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-bar-reference.md
@@ -45,6 +45,6 @@ Consulte o exemplo do comando [GET MENU ITEMS](get-menu-items.md "GET MENU ITEMS
| | |
| --- | --- |
| Número do comando | 979 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
index 16a8ac94ce138b..8491fb5cf40549 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-icon.md
@@ -39,6 +39,6 @@ Se nenhum ícone está associado a linha de menu, o comando devolve uma imagem v
| | |
| --- | --- |
| Número do comando | 983 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
index da14d520d522d3..4b38094e8081fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-key.md
@@ -53,7 +53,7 @@ Para obter um atalho associado com um comando de menu, é útil implementar uma
| | |
| --- | --- |
| Número do comando | 424 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
index 8848784bcd5624..653c435748bee9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-mark.md
@@ -45,7 +45,7 @@ O exemplo a seguir exemplo inverte a marca de uma linha de menu:
| | |
| --- | --- |
| Número do comando | 428 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
index 48a3c704a0d75d..695dab84702769 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-method.md
@@ -35,6 +35,6 @@ O comando devolve o nome do método 4D como uma cadeia de caracteres (expressão
| | |
| --- | --- |
| Número do comando | 981 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
index a365e37e29022c..cf9af089b89d85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-modifiers.md
@@ -57,6 +57,6 @@ Consulte o exemplo do comando [Get menu item key](get-menu-item-key.md "Get menu
| | |
| --- | --- |
| Número do comando | 980 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
index 3d5b3c7ec1dd99..e659f4f2a81f2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-parameter.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1003 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
index e369dede4580d6..c51c1388718798 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-property.md
@@ -38,6 +38,6 @@ Nota de compatibilidade: Como padrão, se o valor da variável não for digitado
| | |
| --- | --- |
| Número do comando | 972 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
index 1176b2f6881cb1..52e6abe30c79a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item-style.md
@@ -52,7 +52,7 @@ Para provar se um elemento de menu é mostrado em negrito, escreve:
| | |
| --- | --- |
| Número do comando | 426 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
index 3b063e20d0d666..cb3ba1a5dab921 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-item.md
@@ -34,7 +34,7 @@ Se omite o parâmetro *processo*, Get menu item é aplicado a barra de menus do
| | |
| --- | --- |
| Número do comando | 422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
index da614ddbaadd83..619766a9c592a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-items.md
@@ -40,6 +40,6 @@ Imagine que queira conhecer o conteúdo da barra de menu do processo atual:
| | |
| --- | --- |
| Número do comando | 977 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
index 5bc057a143dc8a..c4b9168921588e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-menu-title.md
@@ -32,7 +32,7 @@ Se omite o parâmetro *processo*, Get menu title é aplicado à barra de menus d
| | |
| --- | --- |
| Número do comando | 430 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
index e42368a286c682..00933eb6ae62eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-missing-table-names.md
@@ -38,6 +38,6 @@ Quando tiver identificado as tabelas faltantes do banco, pode reativá-las atrav
| | |
| --- | --- |
| Número do comando | 1125 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
index 755fe989dee0ab..0320525055d8c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data-type.md
@@ -43,6 +43,6 @@ Para maior informação sobre os tipos de dados suportados, consulte a seção *
| | |
| --- | --- |
| Número do comando | 958 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
index c217745231e547..b76572d494cf5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pasteboard-data.md
@@ -59,7 +59,7 @@ Se os dados são extraídos corretamente, a variável OK toma o valor 1; do cont
| | |
| --- | --- |
| Número do comando | 401 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
index d35a6ec286f7a4..145ff963628cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-file-name.md
@@ -31,6 +31,6 @@ Se a imagem nao tiver um nome por defeito, o comando devolve uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 1171 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
index 9ca7ea86d1f827..434c863da0d433 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-formats.md
@@ -54,6 +54,6 @@ Se quiser saber os formatos de imagem armazenados em um campo para o registro at
| | |
| --- | --- |
| Número do comando | 1406 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
index 729b4779d14105..471a935e0af3e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-library.md
@@ -59,7 +59,7 @@ Se não houver suficiente memória para devolver a imagem, se gera o erro -108\.
| | |
| --- | --- |
| Número do comando | 565 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
index d479bf17d1d95b..b801dee8885e2b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-from-pasteboard.md
@@ -46,7 +46,7 @@ Se a imagem for extraída corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 522 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
index c6de3888704f13..1ccede1df81983 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-keywords.md
@@ -39,6 +39,6 @@ Caso a imagem não contém palavras-chaves ou metadados IPTC/Keywords, o comando
| | |
| --- | --- |
| Número do comando | 1142 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
index 1365f6f27c0e54..1418bfeefac9fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-metadata.md
@@ -106,7 +106,7 @@ La variable sistema *OK* devolve 1 se a recuperación dos metadados es correta e
| | |
| --- | --- |
| Número do comando | 1122 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
index 0bbddd68b8f12f..9f9387242524fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-picture-resource.md
@@ -47,7 +47,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
index d9b3c5e3ffe635..e3e0e75a616d2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-plugin-access.md
@@ -39,6 +39,6 @@ Passe no parâmetro *plugIn* o número do plug-in do que deseja conhecer o grupo
| | |
| --- | --- |
| Número do comando | 846 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
index 6d20804eea0d28..f163b62149b757 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-pointer.md
@@ -56,6 +56,6 @@ Usando ponteiros para elementos de arrays bi-dimensionais:
| | |
| --- | --- |
| Número do comando | 304 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
index 6546b0ff48a337..2c28d0bfe86032 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-marker.md
@@ -66,6 +66,6 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md).
| | |
| --- | --- |
| Número do comando | 708 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
index 169875a3f82d3c..59d530d64f50a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-option.md
@@ -55,7 +55,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 734 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
index df3df71de2226d..4e0b15e0cbaba6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-print-preview.md
@@ -29,6 +29,6 @@ Note que o usuário pode modificar esta opção antes de validar a caixa de diá
| | |
| --- | --- |
| Número do comando | 1197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
index 71cc5d4842098e..25bb1337420509 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-area.md
@@ -44,6 +44,6 @@ Para saber o tamanho total da página, pode:
| | |
| --- | --- |
| Número do comando | 703 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
index c2ef6a0959007e..1fe9b1b0116adc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printable-margin.md
@@ -49,6 +49,6 @@ Por padrão, em 4D o cálculo das impressões é realizada baseada nas “margen
| | |
| --- | --- |
| Número do comando | 711 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
index 524d406c7bcc1d..1f8c94d59201de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-printed-height.md
@@ -36,6 +36,6 @@ As margens de impressão direita e esquerda não influem no valor devolvido, dif
| | |
| --- | --- |
| Número do comando | 702 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
index d794e86b1004d6..cd629f19a1bb55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-process-variable.md
@@ -123,6 +123,6 @@ Ver o exemplo do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 371 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
index 76fcb5df5e07de..dcd4a67ed1999c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-destination.md
@@ -62,6 +62,6 @@ Queremos modificar temporariamente o destino de pesquisa e restabelecer os parâ
| | |
| --- | --- |
| Número do comando | 1155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
index ded8ef123cab27..e65efcc091f3ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-query-limit.md
@@ -30,6 +30,6 @@ Por defeito, caso nenhum limite tenha sido definido, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1156 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
index 943c26d4959e0b..480cd03acb35d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-registered-clients.md
@@ -52,7 +52,7 @@ Consulte o exemplo do comando [REGISTER CLIENT](register-client.md).
| | |
| --- | --- |
| Número do comando | 650 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
index ae3c0b5cdf1236..dab35a4ceeeb5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-relation-properties.md
@@ -47,6 +47,6 @@ Quando o comando tiver sido executado:
| | |
| --- | --- |
| Número do comando | 686 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
index e1fc5dac328f38..8d1be14a333cef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-name.md
@@ -30,6 +30,6 @@ Se o recurso não existir, Get resource name retorna uma cadeia vazia.
| | |
| --- | --- |
| Número do comando | 513 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
index 2c65e9421c07a7..ba563d6a35f1fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource-properties.md
@@ -40,7 +40,7 @@ A variável sistema OK toma o valor 0 se o recurso não existir, do contrário a
| | |
| --- | --- |
| Número do comando | 515 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
index 174aaacd4de478..64fb62688f90bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-resource.md
@@ -54,7 +54,7 @@ Se não houver memória suficiente para carregar a imagem, um erro é gerado. Po
| | |
| --- | --- |
| Número do comando | 508 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
index 879de675dcac71..fd5dd3c0bee2c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-selected-menu-item-parameter.md
@@ -31,6 +31,6 @@ Se nenhuma linha de menu for selecionada, o comando retorna uma cadeia vazia"".
| | |
| --- | --- |
| Número do comando | 1005 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
index 03ecb18b8483f2..ff9fd21f0efd75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-serial-port-mapping.md
@@ -55,6 +55,6 @@ Este método de projeto pode ser usado para tratar a mesma porta serial (sem pro
| | |
| --- | --- |
| Número do comando | 909 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
index 5ccb43af28ac60..67cfaa6ee209a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-string-resource.md
@@ -48,7 +48,7 @@ A variável sistema OK toma o valor 1 se for encontrado o recurso, do contrário
| | |
| --- | --- |
| Número do comando | 506 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
index 82aca824762ce3..070ef183865c5d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-style-sheet-info.md
@@ -70,7 +70,7 @@ Se quiser conhecer a configuração atual da folha de estilo "Automatic"
| | |
| --- | --- |
| Número do comando | 1256 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
index 66c2e8eacb76c1..6d6e819ecab87b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-subrecord-key.md
@@ -85,6 +85,6 @@ Este código funcionará tanto con una relación especial como con una estándar
| | |
| --- | --- |
| Número do comando | 1137 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
index ee8a20a5b3a8bf..6c2e71843a469d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-system-format.md
@@ -48,6 +48,6 @@ No parâmetro *formato*, passe o tipo do parâmetro do qual queira conhecer o va
| | |
| --- | --- |
| Número do comando | 994 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
index 6b24de1b0d5065..2896f4ec565640 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-properties.md
@@ -40,6 +40,6 @@ Una vez executado o comando:
| | |
| --- | --- |
| Número do comando | 687 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
index cf5139fa4e25eb..8007c834298abf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-table-titles.md
@@ -34,6 +34,6 @@ Em ambos os casos, o comando não retorna as tabelas invisíveis.
| | |
| --- | --- |
| Número do comando | 803 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
index efb5c5e11b840c..13f6087193bdc0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-from-pasteboard.md
@@ -38,7 +38,7 @@ Se o texto for extraído corretamente, OK toma o valor 1; do contrário OK toma
| | |
| --- | --- |
| Número do comando | 524 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
index 370da681a4f423..dbfc9c33f6b39a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-keywords.md
@@ -89,6 +89,6 @@ Para contar as palavras de um texto:
| | |
| --- | --- |
| Número do comando | 1141 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
index 504322c4e32e52..e1c06148f7b071 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-text-resource.md
@@ -47,7 +47,7 @@ Se o recurso for encontrado, OK assume o valor 1\. Do contrário, assume o valor
| | |
| --- | --- |
| Número do comando | 504 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
index 947d52b62fdf37..e655fec8891a34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-list.md
@@ -41,7 +41,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER LIST ou se
| | |
| --- | --- |
| Número do comando | 609 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
index d52547c37bfa70..9c03c9bd01fe48 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-user-properties.md
@@ -60,7 +60,7 @@ Se não tiver privilégios de acesso para chamar ao comando GET USER PROPERTIES
| | |
| --- | --- |
| Número do comando | 611 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
index b193f755c93ab7..5a0a4e3c0c249d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-rect.md
@@ -41,6 +41,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md)..
| | |
| --- | --- |
| Número do comando | 443 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
index f49ab2f2865e1d..c08bcbf6e0c4c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/get-window-title.md
@@ -33,6 +33,6 @@ Ver exemplo do comando [SET WINDOW TITLE](set-window-title.md).
| | |
| --- | --- |
| Número do comando | 450 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
index c342d4f0233d59..0bb2a5dfb25e4a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-object.md
@@ -55,6 +55,6 @@ Veja o exemplo do comando [REJECT](reject.md "REJECT").
| | |
| --- | --- |
| Número do comando | 206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
index 6c2c2ff463a86a..d4d534537a069f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-record.md
@@ -35,7 +35,7 @@ Veja o exemplo para Record Number.
| | |
| --- | --- |
| Número do comando | 242 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
index 2fefbcb8894f0a..e921aee921bc7f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-selected-record.md
@@ -65,7 +65,7 @@ O seguinte método de objeto para *atNomes* seleciona o registro correto na sele
| | |
| --- | --- |
| Número do comando | 245 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
index cd35dbee0c0cd3..265a5d825a07ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/goto-xy.md
@@ -64,6 +64,6 @@ Mostra a janela a seguir (em Macintosh) por 30 segundos:
| | |
| --- | --- |
| Número do comando | 161 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
index d76b55524762b1..609297e68292ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph-settings.md
@@ -48,6 +48,6 @@ Ver o exemplo do comando [GRAPH](graph.md "GRAPH").
| | |
| --- | --- |
| Número do comando | 298 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
index e59e3af8edc00c..13e61afc08c277 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/graph.md
@@ -286,6 +286,6 @@ Neste exemplo, personalizamos alguns parâmetros:
| | |
| --- | --- |
| Número do comando | 169 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
index cb311eb8b16d1c..8196824d5bb3fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-menu-bar.md
@@ -49,7 +49,7 @@ O método abaixo mostra um registro em toda a tela (Macintosh) até que dê um c
| | |
| --- | --- |
| Número do comando | 432 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
index 908cd8a71b24cb..c29c580bffa8e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-process.md
@@ -41,6 +41,6 @@ O exemplo a seguir oculta todas as janelas que pertencem ao processo atual:
| | |
| --- | --- |
| Número do comando | 324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
index 66c13bd0629d07..6c1b06ee64beff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-tool-bar.md
@@ -45,6 +45,6 @@ Para evitar isto, no evento formulário On Resize da janela estandarte, é neces
| | |
| --- | --- |
| Número do comando | 434 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
index a4127905ca3ea9..29579678a26274 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/hide-window.md
@@ -51,6 +51,6 @@ Este exemplo corresponde a um método de um botão localizado em um formulário
| | |
| --- | --- |
| Número do comando | 436 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
index 916bcd27723724..ab20a2ec807c00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-records.md
@@ -53,6 +53,6 @@ Quando o usuário clicar no botão, aparece a caixa de diálogo padrão procurar
| | |
| --- | --- |
| Número do comando | 656 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
index d823bf4d1b6a9e..07789b277782cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/highlight-text.md
@@ -67,6 +67,6 @@ Ver o exemplo do comando [FILTER KEYSTROKE](filter-keystroke.md "FILTER KEYSTROK
| | |
| --- | --- |
| Número do comando | 210 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
index 9ee51b18ccaf3e..5354764fcd8e41 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-authenticate.md
@@ -64,6 +64,6 @@ Exemplos de petições com autenticação:
| | |
| --- | --- |
| Número do comando | 1161 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
index 5cee8662407e03..2b6e35efaef802 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-certificates-folder.md
@@ -44,6 +44,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1307 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
index 13242a8232c3c4..f817f6fba3c92f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get-option.md
@@ -50,6 +50,6 @@ No parâmetro *valor*, passe uma variável para receber o valor atual da *opçã
| | |
| --- | --- |
| Número do comando | 1159 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
index e35fa93fd6dc4c..38e57d5d1ffa28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-get.md
@@ -110,7 +110,7 @@ Recuperação de um vídeo:
| | |
| --- | --- |
| Número do comando | 1157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
index 292bafd5491037..5518c0e636c409 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-request.md
@@ -133,6 +133,6 @@ Petição para adicionar um registro em JSON a um banco de dados remoto:
| | |
| --- | --- |
| Número do comando | 1158 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
index a653ea6cdcca24..0cc341a6fb1cc7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-certificates-folder.md
@@ -62,6 +62,6 @@ Você quer mudar temporalmente a pasta de certificados:
| | |
| --- | --- |
| Número do comando | 1306 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
index 671cbcd08ff909..c6fc2b39b1c701 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/http-set-option.md
@@ -51,6 +51,6 @@ Não importa a ordem das opções de chamada. Se a mesma opção é definida mai
| | |
| --- | --- |
| Número do comando | 1160 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
index e5a035f59db46a..312bd4da7cbc19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/idle.md
@@ -57,6 +57,6 @@ com:
| | |
| --- | --- |
| Número do comando | 311 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
index d25ae7c9b5ef71..80dac80102587b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-data.md
@@ -52,7 +52,7 @@ Se o usuário clicar em **Cancelar** na caixa de diálogo de salvar arquivos ou
| | |
| --- | --- |
| Número do comando | 665 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
index 51d18f5f56b4a8..c64182e7dc27a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-dif.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se la importação termina com sucesso; do contrário, toma o
| | |
| --- | --- |
| Número do comando | 86 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
index e9c2afaf93618d..736d6358ddb301 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-structure.md
@@ -53,6 +53,6 @@ Você deseja importar uma definição de estrutura guardada na base de dados atu
| | |
| --- | --- |
| Número do comando | 1310 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
index 2cb53441bc3cb9..b86a2754d022fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-sylk.md
@@ -57,7 +57,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 87 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
index 74c0fbf8ffa069..52985b99ff2ace 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/import-text.md
@@ -59,7 +59,7 @@ OK toma o valor 1 se a importação termina com sucesso; do contrário, toma o v
| | |
| --- | --- |
| Número do comando | 168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
index 2438fcc2674190..037e525cd9139d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-break.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In break**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 113 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
index 35a43d24490303..f47d895284c5a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-footer.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In footer** tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
index 72b9063383920e..529959bf005c85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-header.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **In header**, tenha certeza de que o
| | |
| --- | --- |
| Número do comando | 112 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
index 107d96c285318d..2338acf38a4250 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/in-transaction.md
@@ -36,6 +36,6 @@ Se realiza as operações (adição, modificação, ou eliminação de registros
| | |
| --- | --- |
| Número do comando | 397 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
index e0e6e44734192b..71d2be47e884ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-array.md
@@ -51,6 +51,6 @@ O exemplo a seguir adiciona um elemento a um array:
| | |
| --- | --- |
| Número do comando | 227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
index 061faeed10e05d..68458dc45701d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-blob.md
@@ -37,6 +37,6 @@ Antes da chamada, você passa no parâmetro *offset* a posição de inserção e
| | |
| --- | --- |
| Número do comando | 559 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
index 14fdab0f65b588..d19f57dfb1ed2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-in-list.md
@@ -56,6 +56,6 @@ O código a seguir insere um elemento (sem sub-lista associada) justo antes do e
| | |
| --- | --- |
| Número do comando | 625 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
index cd2f923f1a7907..4d86333d70f884 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-menu-item.md
@@ -60,7 +60,7 @@ O exemplo a seguir cria um menu que consiste em dois comandos os quais atribuem
| | |
| --- | --- |
| Número do comando | 412 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
index dbb05ce81a1383..9235c5fc9c5a0b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/insert-string.md
@@ -47,6 +47,6 @@ O seguinte exemplo ilustra o uso de Insert string. Os resultados são atribuído
| | |
| --- | --- |
| Número do comando | 231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
index 770b084c786323..f64e6298ec25a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/int.md
@@ -36,6 +36,6 @@ O exemplo a seguir ilustra o funcionamento de Int para números positivos e nega
| | |
| --- | --- |
| Número do comando | 8 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
index 2d169191e3b3ca..001266be1917f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integer-to-blob.md
@@ -120,6 +120,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
index 7e9cd5964d2427..14b1c292316781 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/integrate-mirror-log-file.md
@@ -108,7 +108,7 @@ Se a integração é efetuada corretamente, a variável sistema OK recebe o valo
| | |
| --- | --- |
| Número do comando | 1312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
index 3d8f35435d8cd1..4a19467dabcc85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/intersection.md
@@ -54,6 +54,6 @@ O exemplo a seguir pesquisa os clientes que são atendidos por dois representant
| | |
| --- | --- |
| Número do comando | 121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
index 6dc0cdb09414d8..0a08901d439576 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/invoke-action.md
@@ -69,6 +69,6 @@ Se quiser executar uma ação padrão **Goto page** (página 3) no formulário p
| | |
| --- | --- |
| Número do comando | 1439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
index e366934eac0579..73d0e21c4faf3b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-list.md
@@ -32,6 +32,6 @@ Ver os exemplos do comando DRAG AND DROP PROPERTIES.
| | |
| --- | --- |
| Número do comando | 621 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
index 43c9d1e5c4a0e4..af5f418dcb7982 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-a-variable.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
index 63fd806b859f7f..549d28f56f53a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-compiled-mode.md
@@ -47,6 +47,6 @@ Em uma de suas rotinas, você inclui a depuração do código apenas quando voc
| | |
| --- | --- |
| Número do comando | 492 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
index 656a98e2497a66..74832e3a6e827a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-data-file-locked.md
@@ -36,6 +36,6 @@ Este método vai impedir a abertura do banco de dados se o arquivo de dados esti
| | |
| --- | --- |
| Número do comando | 716 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
index 6be8c97ff4d318..8a9cce7a3cea94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-editing-text.md
@@ -64,6 +64,6 @@ Se quiser permitir que o usuário selecione uma linha começando com a letra ou
| | |
| --- | --- |
| Número do comando | 1744 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
index 1183b9ea2dd329..0f714564e6c5fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-number-valid.md
@@ -31,6 +31,6 @@ Este comando permite detectar as eventuais eliminações de campos, que criam qu
| | |
| --- | --- |
| Número do comando | 1000 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
index 88206ad17e745e..d0c556b329d6d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-field-value-null.md
@@ -34,6 +34,6 @@ O valor retornado por esse comando só tem significado se a opção *Mapear valo
| | |
| --- | --- |
| Número do comando | 964 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
index 9e7c67f427e762..5d324a67c3c4a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-print-preview.md
@@ -50,6 +50,6 @@ Este exemplo permite ter em conta todos os tipos de impressões:
| | |
| --- | --- |
| Número do comando | 1198 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
index 5d0c1bfdd2e08a..882a01a4cd801c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-in-set.md
@@ -42,6 +42,6 @@ O seguinte exemplo é um método de objeto de um botão que testa se o registro
| | |
| --- | --- |
| Número do comando | 273 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
index 6950caa2c41e76..8d7fbd6bca9f28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-license-available.md
@@ -54,6 +54,6 @@ O comando Is license available pode ser utilizado de três maneiras diferentes:
| | |
| --- | --- |
| Número do comando | 714 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
index deae3525fe3eef..28feff871e84f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-macos.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual for macOS:
| | |
| --- | --- |
| Número do comando | 1572 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
index 813feb4b87e983..f421613afc01e1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-new-record.md
@@ -46,6 +46,6 @@ As duas instruções a seguir são idênticas. A segunda é recomendada para que
| | |
| --- | --- |
| Número do comando | 668 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
index 079b44674ccc6c..755b603a6c9f5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-nil-pointer.md
@@ -42,6 +42,6 @@ Caso deseje conhecer o nome da variável apontada ou o número do campo, pode ut
| | |
| --- | --- |
| Número do comando | 315 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
index ee7a8cad01a9a3..d917b4dda6fe97 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-picture-file.md
@@ -34,6 +34,6 @@ Se não passa o parâmetro *\**, o comando prova o arquivo buscando sua extensã
| | |
| --- | --- |
| Número do comando | 1113 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
index 00123c38e55f39..78a8d58f3acab2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-record-loaded.md
@@ -50,6 +50,6 @@ Ao invés de utilizar as ações automáticas “Seguinte registro” ou “Regi
| | |
| --- | --- |
| Número do comando | 669 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
index 75df7e1a559145..082fe65216493e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-table-number-valid.md
@@ -30,6 +30,6 @@ Este comando permite detectar as eventuais eliminações de tabelas, que criam q
| | |
| --- | --- |
| Número do comando | 999 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
index 353bab361d62cf..997ac273ebb81f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-user-deleted.md
@@ -35,7 +35,7 @@ Se não tiver os privilégios de acesso adequados para chamar Is user deleted ou
| | |
| --- | --- |
| Número do comando | 616 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
index 91643e6f6ae4ae..e534164f19e955 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-waiting-mouse-up.md
@@ -64,6 +64,6 @@ O código abaixo pode ser usado para gerenciar uma propriedade de tracking de mo
| | |
| --- | --- |
| Número do comando | 1422 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
index bc0486e55570fe..f5682430101e14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-maximized.md
@@ -40,6 +40,6 @@ Se quiser mudar entre o estado maximizado e o anterior:
| | |
| --- | --- |
| Número do comando | 1830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
index 745793e9ddb501..3cf9f824ca7d9b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-window-reduced.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
index aa63fde340e0d2..9ebb36425aaa28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/is-windows.md
@@ -39,6 +39,6 @@ Se quiser determinar se o sistema operativo atual é Windows:
| | |
| --- | --- |
| Número do comando | 1573 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
index b5ca67ca4e5363..857fffeb229d56 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse-array.md
@@ -64,6 +64,6 @@ Neste exemplo, os dados dos campos dos registros de uma tabela se extraem e loca
| | |
| --- | --- |
| Número do comando | 1219 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
index d0ec48905c56df..10c66fcd1162e9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-parse.md
@@ -195,6 +195,6 @@ beta[1].golf:{line:10,offset:12}}}
| | |
| --- | --- |
| Número do comando | 1218 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
index 2ceae240cc999d..684e7813a7d281 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-resolve-pointers.md
@@ -236,6 +236,6 @@ Se executar:
| | |
| --- | --- |
| Número do comando | 1478 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
index bfacd8e9bc181e..9a0edb24c5058a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify-array.md
@@ -114,6 +114,6 @@ Conversão de uma seleção 4D em um array objeto:
| | |
| --- | --- |
| Número do comando | 1228 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
index 99f8addbfbda06..c0d8d6785bff4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-stringify.md
@@ -180,6 +180,6 @@ $myTxtCol="[33,"mike","2017-08-28",false]"
| | |
| --- | --- |
| Número do comando | 1217 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
index ce15679e11cba2..b836f535962a10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-to-selection.md
@@ -74,6 +74,6 @@ Uso do comando **JSON TO SELECTION** para adicionar os registros a tabela \[Comp
| | |
| --- | --- |
| Número do comando | 1235 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
index 829921a645cf2d..d7c8911f9cf73c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/json-validate.md
@@ -110,6 +110,6 @@ Se quiser validar um objeto JSON com um esquema e obter a lista de erros de vali
| | |
| --- | --- |
| Número do comando | 1456 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
index 37c6c1510e51f7..9e546f5b35f023 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/keystroke.md
@@ -182,6 +182,6 @@ Utilizando as habilidades da comunicação interprocesso de 4D, pode construir i
| | |
| --- | --- |
| Número do comando | 390 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
index 90aeb42bcdfc72..71168d3ba70aba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/kill-worker.md
@@ -60,6 +60,6 @@ No método (*theWorker*), adicionou código para manejar esta situaçao:
| | |
| --- | --- |
| Número do comando | 1390 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
index 6dac24196ff77f..6fbe6acf4aae7a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-field-number.md
@@ -48,6 +48,6 @@ Os campos estão numerados na ordem na qual foram criados. Se nenhum campo foi a
| | |
| --- | --- |
| Número do comando | 255 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
index 411703a9565ac3..d8667020546486 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-path.md
@@ -40,6 +40,6 @@ A descrição da rota da última pesquisa pode ser comparada com a descrição d
| | |
| --- | --- |
| Número do comando | 1045 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
index 7d1a8c96ac0b8a..d781ca26ce382c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-query-plan.md
@@ -40,6 +40,6 @@ A descrição do plano da última pesquisa pode ser comparada com a descrição
| | |
| --- | --- |
| Número do comando | 1046 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
index fbd4f7afb1a623..383b706db6b7c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-record.md
@@ -38,7 +38,7 @@ O exemplo a seguir designa o último registro da tabela \[Pessoas\] como registr
| | |
| --- | --- |
| Número do comando | 200 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
index 129e2f3e9dd893..10469527a169a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-table-number.md
@@ -45,6 +45,6 @@ O seguinte exemplo inicializa os elementos do array *arrayTabelas*, com os nomes
| | |
| --- | --- |
| Número do comando | 254 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
index d465cd7da0fd41..32279249b8325a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/last-update-log-path.md
@@ -31,6 +31,6 @@ Este comando está destinado a ser utilizado em um processo de atualização aut
| | |
| --- | --- |
| Número do comando | 1301 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
index b26fc7d4ff8013..57ba368d4d254f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/launch-external-process.md
@@ -142,7 +142,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 811 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
index 4840fa44741a00..dbfa07b55e2814 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-login.md
@@ -102,6 +102,6 @@ Este exemplo tenta conectar-se a um aplicativo:
| | |
| --- | --- |
| Número do comando | 1326 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
index ad7b6c29277334..4315b2f6055157 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-logout.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1327 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
index f299785afd3358..396ed745192694 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search-all.md
@@ -121,6 +121,6 @@ Estes exemplos ilustram o uso do parâmetro *atributosEmArray*:
| | |
| --- | --- |
| Número do comando | 1329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
index d2772aa7b965ec..5a463e046614cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ldap-search.md
@@ -89,6 +89,6 @@ Queremos obter um array de todas as entradas que se encontram no atributo "membe
| | |
| --- | --- |
| Número do comando | 1328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
index 539257dcf32c80..721afc5712bd18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/length.md
@@ -35,6 +35,6 @@ Este exemplo ilustra o uso de **Length**. Os resultados, descritos nos comentár
| | |
| --- | --- |
| Número do comando | 16 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
index e3bbea2bdc8f15..bb242995fcca6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/level.md
@@ -72,6 +72,6 @@ Este exemplo é um modelo para um método de formulário. Mostra cada evento pos
| | |
| --- | --- |
| Número do comando | 101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
index 437685d21b6ce1..e42992f1b8d2aa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/license-usage.md
@@ -78,6 +78,6 @@ Essa tabela detalha os conteúdos do objeto sessão para sessões REST:
| | |
| --- | --- |
| Número do comando | 1782 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
index 2c254c1241cfd0..1e45429b4e517f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-parent.md
@@ -77,6 +77,6 @@ Os números de referência dos elementos são os seguintes:
| | |
| --- | --- |
| Número do comando | 633 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
index a1bc19e07b84c3..44bc3a6c66c668 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-item-position.md
@@ -44,6 +44,6 @@ Se o elemento não existir, List item position retorna 0.
| | |
| --- | --- |
| Número do comando | 629 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
index ca2c33fff1c639..dc9b2b2a6ca3db 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-choice-lists.md
@@ -26,6 +26,6 @@ Os números das listas correspondem a sua ordem de criação. No editor de lista
| | |
| --- | --- |
| Número do comando | 957 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
index c070f404229339..29d59a1270a869 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-of-style-sheets.md
@@ -55,6 +55,6 @@ Se executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1255 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
index b43798524f0ac5..410b6949b8c68e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-array.md
@@ -90,6 +90,6 @@ Se executa a seguinte instrução:
| | |
| --- | --- |
| Número do comando | 288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
index 99509da955d165..89c76118fed372 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/list-to-blob.md
@@ -51,7 +51,7 @@ Veja o exemplo para o comando [BLOB to list](blob-to-list.md "BLOB to list").
| | |
| --- | --- |
| Número do comando | 556 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
index fdbe998c48d794..382b6e668421dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-collapse.md
@@ -56,6 +56,6 @@ Este exemplo colapsa o primeiro nível de linhas de quebra da seleção no list
| | |
| --- | --- |
| Número do comando | 1101 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
index 434631a41731b3..eabf024d565686 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-column.md
@@ -39,6 +39,6 @@ Se o parâmetro *posicionCol* é maior que o número de colunas no list box, o c
| | |
| --- | --- |
| Número do comando | 830 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
index 9bf58f1b55bcdb..fdd9663175dd3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-delete-rows.md
@@ -41,7 +41,7 @@ Se o parâmetro *posição* é superior ao número de linhas do array do list bo
| | |
| --- | --- |
| Número do comando | 914 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
index 3c3f4d7e422a5b..9178324f346edc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-duplicate-column.md
@@ -97,6 +97,6 @@ A partir de 4D v14 R3, pode duplicar dinamicamente as colunas de list box e 4D s
| | |
| --- | --- |
| Número do comando | 1273 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
index 7e2baf79f296c2..d8899449e2cc4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-expand.md
@@ -86,6 +86,6 @@ Este ejemplo ilustra diferentes modos de utilizar el comando. Dados los siguient
| | |
| --- | --- |
| Número do comando | 1100 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
index 5b270fb047c17b..1ce139e9dcc0e6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-array.md
@@ -66,6 +66,6 @@ Exemplos típicos de uso:
| | |
| --- | --- |
| Número do comando | 1278 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
index a582a2f2b4d710..32d73dd66e5251 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-arrays.md
@@ -55,6 +55,6 @@ Para seleção de registro, list boxes do tipo coleção ou seleção de entidad
| | |
| --- | --- |
| Número do comando | 832 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
index 75ee83dbdc0c37..aa9c9f04bb9e1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-auto-row-height.md
@@ -64,6 +64,6 @@ vhMax:=LISTBOX Get auto row height(*;"LB";lk row max height;lk lines)
| | |
| --- | --- |
| Número do comando | 1502 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
index 6e7499c757a0ea..6cadb6a1447424 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-coordinates.md
@@ -58,6 +58,6 @@ Você quer desenhar um retângulo vermelho arredor da célula selecionada de um
| | |
| --- | --- |
| Número do comando | 1330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
index dba7dcc7049aa6..adce54dc3ea9c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-cell-position.md
@@ -61,6 +61,6 @@ Se a seleção é modificada utilizando as flechas do teclado, *coluna* devolve
| | |
| --- | --- |
| Número do comando | 971 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
index 6f02d9e26bbdf5..34449aa8cf5937 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-formula.md
@@ -30,6 +30,6 @@ Passado o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1202 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
index 0bd6cc3ff23911..aed0fb51287564 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-column-width.md
@@ -35,6 +35,6 @@ Se não tiver definido nenhum valor de largura mínima ou máxima para a coluna,
| | |
| --- | --- |
| Número do comando | 834 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
index 1920788fb595f2..50f647a481fc99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footer-calculation.md
@@ -36,6 +36,6 @@ Pode comparar o valor devolvido com as constantes do tema *Listbox Footer Calcul
| | |
| --- | --- |
| Número do comando | 1150 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
index aeefdc6550b46a..056939b8e90370 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-footers-height.md
@@ -41,6 +41,6 @@ Por defeito, é omitido o parâmetro *unidad*e, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1146 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
index 6130ce6d4d2feb..d6f95936306f92 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid-colors.md
@@ -36,6 +36,6 @@ Em *corH* e *corV*, o comando devolve os valores das cores RGB. O formato de cor
| | |
| --- | --- |
| Número do comando | 1200 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
index b9e1a6cee046a4..ecc8743b0478fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-grid.md
@@ -33,6 +33,6 @@ O comando devolve nos parâmetros *horizontal* e *vertical*, o valor **True** ou
| | |
| --- | --- |
| Número do comando | 1199 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
index 8d4b22a9de9a0f..8ec37ffb3e4571 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-headers-height.md
@@ -40,6 +40,6 @@ Por defeito, se omitido o parâmetro *unidade*, a altura de linha devolvida se e
| | |
| --- | --- |
| Número do comando | 1144 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
index b079475c0f3612..1344dbbc36fd2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-hierarchy.md
@@ -40,6 +40,6 @@ Se o list box está em modo hierárquico, o comando preenche o array *hierarquia
| | |
| --- | --- |
| Número do comando | 1099 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
index 60f4cb50e39af7..ef0f7056765982 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-locked-columns.md
@@ -35,6 +35,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma área
| | |
| --- | --- |
| Número do comando | 1152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
index 51a8131679c081..004cafd5509b87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-columns.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 831 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
index 5025c7b21b2d74..7b516d56d0a161 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-number-of-rows.md
@@ -35,6 +35,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 915 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
index 87bc5423f3d98b..c191e68145235a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-objects.md
@@ -65,6 +65,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1302 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
index 9ada22d4710e17..72f1352171cd99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-print-information.md
@@ -73,6 +73,6 @@ Impressão de pelo menos 500 linhas do list box, conhecendo que algumas linhas e
| | |
| --- | --- |
| Número do comando | 1110 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
index ff2ab85a4a1966..83affa257c9f9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color-as-number.md
@@ -64,6 +64,6 @@ Given the following list box:
| | |
| --- | --- |
| Número do comando | 1271 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
index cd468e8497fb36..bf3607bd66ece8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-color.md
@@ -63,6 +63,6 @@ Dado a list box abaixo:
| | |
| --- | --- |
| Número do comando | 1658 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
index c094faebfc4356..6a04cb7c563531 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-font-style.md
@@ -55,6 +55,6 @@ Dado o seguinte list box:
| | |
| --- | --- |
| Número do comando | 1269 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
index 839cb94158b8a4..6944999f28ffad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-row-height.md
@@ -40,6 +40,6 @@ O valor da altura da linha se expressa:
| | |
| --- | --- |
| Número do comando | 1408 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
index b093645f9d4095..54b81659a8b297 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-rows-height.md
@@ -42,6 +42,6 @@ Por padrão, se omitir o parâmetro *unidade*, a altura da linha devolvida é ex
| | |
| --- | --- |
| Número do comando | 836 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
index f943a445ba0f66..c6dda400b83711 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-static-columns.md
@@ -37,6 +37,6 @@ Se uma coluna é inserida ou é eliminada por programação dentro de uma conjun
| | |
| --- | --- |
| Número do comando | 1154 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
index df3329b166039a..c9fe81a328663f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-get-table-source.md
@@ -38,6 +38,6 @@ Se o list box está associado com arrays, *numTabela* devolve -1 e *tempo*, se
| | |
| --- | --- |
| Número do comando | 1014 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
index 8fb51ccc4c1aa1..1963961ddf0a61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column-formula.md
@@ -124,6 +124,6 @@ A coluna é anexada à list box :
| | |
| --- | --- |
| Número do comando | 970 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
index ae223d99f04314..36e3e02f999d6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-column.md
@@ -103,6 +103,6 @@ Você deseja inserir uma coluna de forma dinâmica em um array de tipo list box
| | |
| --- | --- |
| Número do comando | 829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
index 5fa66e76ab0891..619f72c651e856 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-insert-rows.md
@@ -39,7 +39,7 @@ Se o parâmetro *numFilas* excede o número de linhas de tabelas nas arrays do l
| | |
| --- | --- |
| Número do comando | 913 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
index 0372043b65dbc1..f558baf1d0a36e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-move-column.md
@@ -46,6 +46,6 @@ Você quer inverter a segunda e terceira coluna do list box:
| | |
| --- | --- |
| Número do comando | 1274 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
index 3e4ae4fa578995..427b674b4d009a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-column-number.md
@@ -36,6 +36,6 @@ Este comando deve ser utilizado com o evento de formulário On column moved (ver
| | |
| --- | --- |
| Número do comando | 844 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
index cff1c2583c0e0c..ad297a2618530e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-moved-row-number.md
@@ -38,6 +38,6 @@ Este comando deve ser utilizado com o evento de formulário On row moved (ver o
| | |
| --- | --- |
| Número do comando | 837 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
index edcbf72035f99a..1cdce0b62a15a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-break.md
@@ -67,6 +67,6 @@ Este é o resultado:
| | |
| --- | --- |
| Número do comando | 1117 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
index 7067e574aaad67..11e9148a929f2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-row.md
@@ -59,6 +59,6 @@ Depois da execução do método, os arrays são sincronizados: se o array fonte
| | |
| --- | --- |
| Número do comando | 912 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
index f9dc6907fd70c4..aece715ed4c377 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-select-rows.md
@@ -89,6 +89,6 @@ Exemplo com a coleção de objetos:
| | |
| --- | --- |
| Número do comando | 1715 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
index de6968f90bf53c..66731b31972ab9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-array.md
@@ -71,6 +71,6 @@ Se quiser definir um array de altura de linha para um list box:
| | |
| --- | --- |
| Número do comando | 1279 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
index 7b9a205430e4c3..ff2de0afc7d4a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-auto-row-height.md
@@ -63,6 +63,6 @@ Se quiser definir as alturas mínimas e máximas para um list box com uma altura
| | |
| --- | --- |
| Número do comando | 1501 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
index de67fac9a21651..dbc5b41913d050 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-formula.md
@@ -47,6 +47,6 @@ O parâmetro *tipoDados* designa o tipo de dados resultantes da execução da f
| | |
| --- | --- |
| Número do comando | 1203 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
index 75aaa2be2f3cb1..42fa3c6b2f3db4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-column-width.md
@@ -38,6 +38,6 @@ Os parâmetros opcionais *larguraMin e* *larguraMax* permitem definir os limites
| | |
| --- | --- |
| Número do comando | 833 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
index 3911cc3e560fd4..84674101d93562 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footer-calculation.md
@@ -56,6 +56,6 @@ Se o tipo de dados da coluna ou de pelo menos uma coluna do list box (se objeto
| | |
| --- | --- |
| Número do comando | 1140 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
index e6dcfe0eb99b93..d449fc81fceb55 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-footers-height.md
@@ -41,6 +41,6 @@ Passe no parâmetro *altura* a altura a definir. Por defeito, é omitido o parâ
| | |
| --- | --- |
| Número do comando | 1145 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
index fd6fbbf4f4e6fe..c2085ccfdb3dc2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid-color.md
@@ -41,6 +41,6 @@ Os parâmetros *horizontal* e *vertical* lhe permitem especificar as linhas as q
| | |
| --- | --- |
| Número do comando | 842 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
index 25c79997227965..88265ffbba0b1b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-grid.md
@@ -35,6 +35,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos que indicam
| | |
| --- | --- |
| Número do comando | 841 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
index 110ddd6f379b0f..cbe8f4b372cb07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-headers-height.md
@@ -45,6 +45,6 @@ Cabeçalhos devem respeitar a altura mínima estabelecida pelo sistema. Esta alt
| | |
| --- | --- |
| Número do comando | 1143 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
index bb1c167fe23a90..1db8d06b74da2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-hierarchy.md
@@ -59,6 +59,6 @@ Definição dos arrays aPais, aRegião e aCidade como hierarquia de um list box:
| | |
| --- | --- |
| Número do comando | 1098 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
index b5072bb13eac81..068a92cd9d5842 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-locked-columns.md
@@ -37,6 +37,6 @@ Para eliminar o bloqueio de colunas, passe 0 em *numColunas*.
| | |
| --- | --- |
| Número do comando | 1151 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
index 47646c7e01c7e4..36f4cfc2fd143f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-color.md
@@ -69,6 +69,6 @@ Em um array de tipo list box, queremos estabelecer as cores de uma fila e para u
| | |
| --- | --- |
| Número do comando | 1270 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
index c7a768433d75e3..b2f4156a09b106 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-font-style.md
@@ -84,6 +84,6 @@ Depois da segunda declaração, todas as células da terceira fila mudam de fila
| | |
| --- | --- |
| Número do comando | 1268 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
index 59190c045ea68a..1414fe7b3c363f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-row-height.md
@@ -90,6 +90,6 @@ Por outro lado, se o código abaixo for executado posteriormente...
| | |
| --- | --- |
| Número do comando | 1409 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
index 01222546ee93b6..840a65449cdbe5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-rows-height.md
@@ -42,6 +42,6 @@ Nota: para mais informação sobre o cálculo das alturas das linhas, consulte o
| | |
| --- | --- |
| Número do comando | 835 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
index 5ce961e465a203..61b713b3ba2e98 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-static-columns.md
@@ -33,6 +33,6 @@ As colunas estáticas não podem mover-se no list box.
| | |
| --- | --- |
| Número do comando | 1153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
index d63ccc3ef152f1..fe67cfc2b1800f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-set-table-source.md
@@ -43,6 +43,6 @@ Se o list box já conter as colunas, seus conteúdos são atualizados depois da
| | |
| --- | --- |
| Número do comando | 1013 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
index c9935cd3f09d35..75d4cfa03febb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/listbox-sort-columns.md
@@ -40,6 +40,6 @@ Nota: O comando LISTBOX SORT COLUMNS não leva em consideração a propriedade d
| | |
| --- | --- |
| Número do comando | 916 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
index d5975aabf7692d..055b0a367dd17d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-4d-view-document.md
@@ -201,6 +201,6 @@ Obterá o resultado abaixo (objeto stringified):
| | |
| --- | --- |
| Número do comando | 1528 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
index d2382522ba8145..c81cc9570bbea4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-list.md
@@ -54,6 +54,6 @@ Você cria um banco para o mercado internacional e necessita mudar aos diferente
| | |
| --- | --- |
| Número do comando | 383 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
index a4bebd22205eeb..20c95ec0d786af 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-record.md
@@ -42,6 +42,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 52 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
index 752c050dde26ad..8c7a200fb5e61b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-set.md
@@ -48,7 +48,7 @@ Se o usuário clicar em Cancelar na caixa de diálogo de abrir arquivos, ou se f
| | |
| --- | --- |
| Número do comando | 185 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
index 36a2ca0c6a3046..50358afc22c40c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/load-variables.md
@@ -51,7 +51,7 @@ Se as variáveis são carregadas corretamente, a variável sistema OK assume o v
| | |
| --- | --- |
| Número do comando | 74 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
index d3b786b4f2c774..0ed5231228a1d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-document-path.md
@@ -71,6 +71,6 @@ Se a linguagem atuarl for, por exemplo, francês canadense (fr-ca), o comando de
| | |
| --- | --- |
| Número do comando | 1105 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
index cfb9b660c0c2ce..66d5eb4b01f0a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/localized-string.md
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável OK assume o valor 1\. Se *r
| | |
| --- | --- |
| Número do comando | 991 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
index 6d74bd005e4e35..ef344ab69a3f4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-by.md
@@ -45,6 +45,6 @@ nomeProcesso devolve o endereço IP do locker, p. ex. "127.0.0.1"
| | |
| --- | --- |
| Número do comando | 353 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
index 40eeaaaaed523c..9c775d034cca8c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked-records-info.md
@@ -96,6 +96,6 @@ Se o código é executado em um 4D Server e o bloqueio é causado por uma máqui
| | |
| --- | --- |
| Número do comando | 1316 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
index 2f708f4551752a..6721f7526128b8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/locked.md
@@ -40,6 +40,6 @@ Durante uma transação, [LOAD RECORD](load-record.md) e Locked se utilizam com
| | |
| --- | --- |
| Número do comando | 147 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
index 2b7c274d195cc0..6a49480c71e44f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-event.md
@@ -70,6 +70,6 @@ Cada vez que se abre o banco de dados, esta informação será escrita no visor
| | |
| --- | --- |
| Número do comando | 667 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
index 1c91d6716beb8f..7e100de00f78c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file-to-json.md
@@ -102,7 +102,7 @@ Ocomando **LOG FILE TO JSON** modifica o valor das variáveis OK e Document: se
| | |
| --- | --- |
| Número do comando | 1352 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
index 6a1fea010d7a6d..4dcec288d50595 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log-file.md
@@ -37,7 +37,7 @@ Se o banco de dados funciona com um arquivo de histórico, a variável de sistem
| | |
| --- | --- |
| Número do comando | 928 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
index 31d68874df06fd..a1af1872956c1e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/log.md
@@ -37,6 +37,6 @@ A linha a seguir mostra 1:
| | |
| --- | --- |
| Número do comando | 22 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
index 6a09169f4c95d1..641e2e647cd6dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-array-from-selection.md
@@ -41,6 +41,6 @@ Se quiser recuperar os números dos registros da seleção atual:
| | |
| --- | --- |
| Número do comando | 647 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
index 55cf937f22045f..7a56941fbd6a92 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/longint-to-blob.md
@@ -120,6 +120,6 @@ Depois de executar esse código:
| | |
| --- | --- |
| Número do comando | 550 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
index c3b0af3c7430c5..513552455d6308 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/lowercase.md
@@ -53,6 +53,6 @@ Este exemplo compara os resultados obtidos de acordo com se é passado ou não o
| | |
| --- | --- |
| Número do comando | 14 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
index 5e8a5d9e094940..9f902107137138 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-command-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 546 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
index 0f7fe0f0fa3fc4..442603ffbfbdee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-control-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 544 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
index 65d6fbba895448..c6880d3a3cb640 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/macintosh-option-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 545 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
index 593ee2f6d49baa..def39ee6becb9d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/match-regex.md
@@ -118,7 +118,7 @@ Em caso de erro, o comando gera um erro que pode interceptar através de um mét
| | |
| --- | --- |
| Número do comando | 1019 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
index 5389cff7419cd2..c281b57abc5374 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/max.md
@@ -76,7 +76,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 3 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
index 7f8237f4e6dbee..e8b56dd1a4da78 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/maximize-window.md
@@ -85,6 +85,6 @@ Neste contexto, se o usuário fizer clique no botão:
| | |
| --- | --- |
| Número do comando | 453 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
index 11a20716b8440d..2b719ce5be5f00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/memory-statistics.md
@@ -33,6 +33,6 @@ Depois que o comando for executado, as estatísticas são fornecidas nos arrays
| | |
| --- | --- |
| Número do comando | 1118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
index e269b66a5b98f3..962b27c39eddad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-height.md
@@ -35,6 +35,6 @@ O comando retorna 0:
| | |
| --- | --- |
| Número do comando | 440 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
index c64b779bb38ff9..e493d1815d18de 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-bar-screen.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 441 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
index 392a2a046a7dbc..8680b6045bf156 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/menu-selected.md
@@ -67,7 +67,7 @@ O método a seguir de formulário utiliza Menu selected para proporcionar os arg
| | |
| --- | --- |
| Número do comando | 152 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
index 6587f3ebe41a61..30bd6e06b05c23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/message.md
@@ -118,6 +118,6 @@ O resultado é o seguinte (em Windows):
| | |
| --- | --- |
| Número do comando | 88 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
index 8f302045d87732..8293299fcb877f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-off.md
@@ -71,6 +71,6 @@ O exemplo a seguir elimina os termômetros de progresso antes de realizar uma or
| | |
| --- | --- |
| Número do comando | 175 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
index fed12c360863cf..4db4282b894d6e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/messages-on.md
@@ -25,6 +25,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 181 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
index e74b53317ddca2..5ab687ab4aac9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-error.md
@@ -51,6 +51,6 @@ Este comando é particularmente útil no contexto de componentes porque lhe perm
| | |
| --- | --- |
| Número do comando | 704 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
index a40e96fe98075d..c71e92a9ec9ade 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-called-on-event.md
@@ -28,6 +28,6 @@ Se nenhum método do tipo for instalado, uma cadeia vazia ("") é retornada.
| | |
| --- | --- |
| Número do comando | 705 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
index d8dddeaa7d229b..ae6348c9f72ecd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attribute.md
@@ -47,6 +47,6 @@ O comando retorna **True** se for selecionado um atributo e **False** se for des
| | |
| --- | --- |
| Número do comando | 1169 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
index f1b1fcb470c84e..a8ae2b5785fb10 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-attributes.md
@@ -65,6 +65,6 @@ Depois da execução, $att contém, por exemplo:
| | |
| --- | --- |
| Número do comando | 1334 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
index eabb80d73ec599..521ec4ecb43619 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-code.md
@@ -130,6 +130,6 @@ O documento resultante conterá:
| | |
| --- | --- |
| Número do comando | 1190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
index f6106ac605876b..f40b20b287973c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-comments.md
@@ -62,6 +62,6 @@ Se o comando é executado desde um componente, se aplica por defeito aos método
| | |
| --- | --- |
| Número do comando | 1189 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
index 9b62fd2204f516..a6f8e8b1f830c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-folders.md
@@ -35,6 +35,6 @@ Se executado este comando desde um componente, devolve por defeito os caminhos d
| | |
| --- | --- |
| Número do comando | 1206 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
index 19d00bc6d59fa6..aee3e4fe73ba6a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-modification-date.md
@@ -74,6 +74,6 @@ Se quiser obter as datas de modificação dos métodos de um módulo com o prefi
| | |
| --- | --- |
| Número do comando | 1170 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
index 84471da80b125c..0373c2c641774a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-names.md
@@ -46,6 +46,6 @@ Exemplos de uso:
| | |
| --- | --- |
| Número do comando | 1166 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
index 7a41af2ade99ab..0cc94e1cd841c1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-path.md
@@ -70,6 +70,6 @@ Se o comando for executado desde um componente, retorna como padrão as rotas do
| | |
| --- | --- |
| Número do comando | 1164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
index 0aa7d987fa2539..4bc8f67ee2c731 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths-form.md
@@ -75,6 +75,6 @@ Lista de todos os objetos dos formulários "input" da tabela \[Empregados\] a pa
| | |
| --- | --- |
| Número do comando | 1168 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
index 663e126cebf0d5..eb1c7766a421e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-get-paths.md
@@ -90,6 +90,6 @@ Consulte o exemplo do comando [METHOD SET CODE](method-set-code.md).
| | |
| --- | --- |
| Número do comando | 1163 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
index acbeca34ffa9d3..ede2eadbfed09a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-open-path.md
@@ -35,6 +35,6 @@ Pode executar este comando desde um componente, mas neste caso, deve passar o pa
| | |
| --- | --- |
| Número do comando | 1213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
index 6bcb3b06dd0c3c..2ce45eb92e74ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-resolve-path.md
@@ -89,6 +89,6 @@ Resolução de uma rota de método de formulário tabela:
| | |
| --- | --- |
| Número do comando | 1165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
index 458ad1b1925424..380818b653ee32 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-access-mode.md
@@ -31,6 +31,6 @@ Em *modo*, passe uma das seguintes constantes do tema *Design Object Access*:
| | |
| --- | --- |
| Número do comando | 1191 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
index 0e856454b851f0..29a9f1edae4c1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attribute.md
@@ -73,6 +73,6 @@ Definição de vários pares de atributos/valores:
| | |
| --- | --- |
| Número do comando | 1192 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
index 7a0e8a9928e8bf..b9ef3c9b86236d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-attributes.md
@@ -66,6 +66,6 @@ Se você desejar modificar apenas um atributo:
| | |
| --- | --- |
| Número do comando | 1335 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
index 4b6e92b6ec2b66..5b7b86d5985c88 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-code.md
@@ -102,6 +102,6 @@ Este exemplo exporta e importa a totalidade dos métodos projeto de uma aplicaç
| | |
| --- | --- |
| Número do comando | 1194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
index 6dd799ac96b68f..41de27397989e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/method-set-comments.md
@@ -75,6 +75,6 @@ Pode executar o comando de uma componente, mas neste caso você deve passar o pa
| | |
| --- | --- |
| Número do comando | 1193 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
index f35653ca0b8274..70f40de3f566c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/milliseconds.md
@@ -53,6 +53,6 @@ O código abaixo espera até 5 segundos para que um registro bloqueado seja desb
| | |
| --- | --- |
| Número do comando | 459 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
index d1fbcc299d6373..c8b95e668ff7cb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/min.md
@@ -84,7 +84,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 4 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
index 3e9cd4c032e5b7..23a63f49296680 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/minimize-window.md
@@ -56,6 +56,6 @@ Mac OS
| | |
| --- | --- |
| Número do comando | 454 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
index c7f16d5eb12a45..cdbbe9bb2205e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mobile-app-refresh-sessions.md
@@ -51,6 +51,6 @@ Se quiser resetar todas as sessões atuais para todas as aplicações móveis:
| | |
| --- | --- |
| Número do comando | 1596 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
index a2666d95d9b1aa..af0a1495659995 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mod.md
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra o funcionamento de Mod com diferentes argumentos. Cad
| | |
| --- | --- |
| Número do comando | 98 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
index 9e689f60c20384..01ebec192bf277 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified-record.md
@@ -48,6 +48,6 @@ O exemplo a seguir mostra uma utilização típica de Modified record:
| | |
| --- | --- |
| Número do comando | 314 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
index 26de8a9da5510a..63fa57371cfabb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modified.md
@@ -73,6 +73,6 @@ Seleciona um registro para a tabela *\[umaTabela\]*, depois chama múltiplas sub
| | |
| --- | --- |
| Número do comando | 32 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
index f6f2a3631704f8..37147df11e3bfc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-record.md
@@ -54,7 +54,7 @@ A variável sistema OK toma o valor 1 se aceitar o registro e 0 se o cancelar. A
| | |
| --- | --- |
| Número do comando | 57 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
index e610cd0fb6a9bb..e0592c24371f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/modify-selection.md
@@ -36,7 +36,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
index b9a5d309adef21..6d5f54b297098c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/monitored-activity.md
@@ -141,6 +141,6 @@ Ver exemplos para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**
| | |
| --- | --- |
| Número do comando | 1713 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
index b453f55c06c301..fee8bd605c8f1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/month-of.md
@@ -58,6 +58,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 24 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
index 4185d1e0d00996..c599517e1016fa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/mouse-position.md
@@ -47,6 +47,6 @@ Ver o exemplo do comando [Pop up menu](pop-up-menu.md).
| | |
| --- | --- |
| Número do comando | 468 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
index a578dc7a51d0a9..20bfbcc40b5a86 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/move-document.md
@@ -57,7 +57,7 @@ O exemplo abaixo move o documento DocNome:
| | |
| --- | --- |
| Número do comando | 540 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
index 9f0746ba5b6640..8b907efd0e866e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/multi-sort-array.md
@@ -119,6 +119,6 @@ Se quiser que o array de nomes seja usado como um terceiro critério de ordenaç
| | |
| --- | --- |
| Número do comando | 718 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
index a2dd5ffca1561c..f21ad0573495ea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-data-key.md
@@ -61,6 +61,6 @@ Se quiser salvar uma chave de criptografia em um arquivo .4DKeyChain:
| | |
| --- | --- |
| Número do comando | 1611 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
index 76ec5e9f80873f..d15888faa5d44f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-list.md
@@ -50,6 +50,6 @@ Ver o exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 375 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
index 7901ee6aea6997..e66f393b3b1c8e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-object.md
@@ -114,6 +114,6 @@ Com este comando, pode fácilmente manejar objetos em loops:
| | |
| --- | --- |
| Número do comando | 1471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
index 53c1ae787e74a3..ee6c2fd0e3acd2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-process.md
@@ -112,6 +112,6 @@ No editor de barras de menus, pode substituir ADICIONAR CLIENTES pelo método IN
| | |
| --- | --- |
| Número do comando | 317 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
index 667737736b27b9..c9099318daab31 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/new-shared-object.md
@@ -73,6 +73,6 @@ Se quiser criar e modificar um objeto compartido. A estrutura deve ser chamada p
| | |
| --- | --- |
| Número do comando | 1526 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
index f6eacfbcfb5b99..74189639da8cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-record.md
@@ -36,7 +36,7 @@ Ver o exemplo do comando [DISPLAY RECORD](display-record.md "DISPLAY RECORD").
| | |
| --- | --- |
| Número do comando | 51 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
index 2c797723510036..90af57aacc5834 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/next-window.md
@@ -29,6 +29,6 @@ O comando Next window devolve o número de referência da janela localizada “a
| | |
| --- | --- |
| Número do comando | 448 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
index 050d471da31651..f96e83c580574c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/no-default-table.md
@@ -48,6 +48,6 @@ Em um banco que contenha um formulário de projeto chamado "oFormulário" e um f
| | |
| --- | --- |
| Número do comando | 993 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
index 36818f1f757ec1..3f258a07501ad6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/not.md
@@ -38,6 +38,6 @@ Este exemplo atribui primeiro Verdadeiro a uma variável, logo muda o valor da v
| | |
| --- | --- |
| Número do comando | 34 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
index a9b7f5e1bdcbab..845f906cb24bcb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/notify-resources-folder-modification.md
@@ -39,6 +39,6 @@ O parâmetro atual pode estar definido:
| | |
| --- | --- |
| Número do comando | 1052 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
index c3a8bfa342e45d..1d2d97bf92f602 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/null.md
@@ -136,6 +136,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 1517 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
index e5983c4ff4d4bf..f8f59ca20e7258 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-class.md
@@ -48,6 +48,6 @@ Depois, em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1730 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
index 48d71f727a8eb4..5a8b5f6f000104 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-copy.md
@@ -171,6 +171,6 @@ Imagine que queira copiar *$sharedObj* em *$sharedCol mas* como eles pertencem a
| | |
| --- | --- |
| Número do comando | 1225 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
index 1b2660004d4ffa..04f0708de5b4a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-entries.md
@@ -60,6 +60,6 @@ Usando um objeto com um map hash (sistema key/value) oferece um acesso rápido e
| | |
| --- | --- |
| Número do comando | 1720 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
index 62a03bc499d94e..19869a271d9d2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-array.md
@@ -57,6 +57,6 @@ Queremos mudar um valor no primeiro elemento do array:
| | |
| --- | --- |
| Número do comando | 1229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
index a2164eb1fd7de0..cca4c663a36c09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-property-names.md
@@ -103,6 +103,6 @@ Utilizando um elemento de array de objetos:
| | |
| --- | --- |
| Número do comando | 1232 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
index ce618e77cdb54e..3d18000c7c88c4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get-type.md
@@ -59,6 +59,6 @@ Queremos obter o tipo de valores padrão:
| | |
| --- | --- |
| Número do comando | 1230 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
index cdaafe67a4299a..d4a3616a3ae2ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-get.md
@@ -226,6 +226,6 @@ Se quiser conhecer o tamanho de uma imagem armazenada em um atributo objeto:
| | |
| --- | --- |
| Número do comando | 1224 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
index 09458d5b0f129d..ef00d0f68e5331 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-instance-of.md
@@ -58,6 +58,6 @@ Depois em um método, pode escrever:
| | |
| --- | --- |
| Número do comando | 1731 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
index 71a10c2577612e..815c43cff05e77 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-defined.md
@@ -66,6 +66,6 @@ Esta prova é equivalente a:
| | |
| --- | --- |
| Número do comando | 1231 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
index b34aba03cef654..19802458dab338 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-empty.md
@@ -47,6 +47,6 @@ Estes são os diferentes resultados deste comando como também do comando [OB Is
| | |
| --- | --- |
| Número do comando | 1297 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
index 4113a2ee60d38e..a0eeadb2f1720b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-is-shared.md
@@ -26,6 +26,6 @@ Este comando devolve **True** se for passado uma seleção de entidades compaív
| | |
| --- | --- |
| Número do comando | 1759 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
index 6d0cd25e92e502..76daff6b1e52be 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-keys.md
@@ -52,6 +52,6 @@ Se quiser uma coleção com todos os nomes de propriedade de primeiro-nível de
| | |
| --- | --- |
| Número do comando | 1719 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
index e08324ddb819a7..5cd387c1514aef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-remove.md
@@ -43,6 +43,6 @@ Você quer eliminar a propriedade "idade" de um objeto:
| | |
| --- | --- |
| Número do comando | 1226 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
index 1b978bea6fa5ac..5cf8548535af37 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-array.md
@@ -136,6 +136,6 @@ Usar um array de imagem:
| | |
| --- | --- |
| Número do comando | 1227 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
index 2069836da129f3..3eb3f8397fff5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set-null.md
@@ -45,6 +45,6 @@ Queremos colocar o valor nulo na propriedade "idade" para Lea:
| | |
| --- | --- |
| Número do comando | 1233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
index 997512fb89a522..13f459f139c4f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-set.md
@@ -204,6 +204,6 @@ Se quiser armazenar uma imagem em um campo objeto. Pode escrever:
| | |
| --- | --- |
| Número do comando | 1220 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
index a3e3342a5a1d18..8dd53956a36773 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/ob-values.md
@@ -50,6 +50,6 @@ Se quiser uma coleção com todos os valores de propriedade de um objeto:
| | |
| --- | --- |
| Número do comando | 1718 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
index 79446cd713cffe..ec0dee76ebd3e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-duplicate.md
@@ -106,7 +106,7 @@ Criação de um novo botão opção "bRadio6" baseado no botão opção existent
| | |
| --- | --- |
| Número do comando | 1111 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
index e0c9ff2d77db4c..b9f6736013eeb0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-action.md
@@ -49,6 +49,6 @@ Se quiser associar a ação "Cancelar" com todos os objetos no formulário que a
| | |
| --- | --- |
| Número do comando | 1457 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
index 82d4a725c61ac0..caca0a149d969e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-auto-spellcheck.md
@@ -37,6 +37,6 @@ O comando devolve **True** quando a correção ortográfica automática está at
| | |
| --- | --- |
| Número do comando | 1174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
index 011f7265a9ad4b..5ad093fa972cb4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-best-size.md
@@ -57,6 +57,6 @@ Consulte o exemplo no comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 717 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
index 3d95c7bb60af9d..9a22500595c74f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-border-style.md
@@ -44,6 +44,6 @@ O comando devolve um valor que corresponde ao estilo da linha fronteira. Pode co
| | |
| --- | --- |
| Número do comando | 1263 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
index 6721133a284832..03536e45d27362 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-context-menu.md
@@ -34,6 +34,6 @@ O comando devolve **True** se o menu contextual está ativo para o objeto e **Fa
| | |
| --- | --- |
| Número do comando | 1252 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
index c076f29921b443..6b5e83bc00566d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-coordinates.md
@@ -90,6 +90,6 @@ O método devolve as coordenadas teóricas. Se o listbox é redimensionado, pode
| | |
| --- | --- |
| Número do comando | 663 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
index 3b721a07ee9d1b..2949e9b1055bb1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-corner-radius.md
@@ -52,6 +52,6 @@ O seguinte código pode ser adicionado a um método button:
| | |
| --- | --- |
| Número do comando | 1324 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
index 4c6272e1f12749..47e95d463bc99a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-data-source.md
@@ -47,6 +47,6 @@ Executa o seguinte código:
| | |
| --- | --- |
| Número do comando | 1265 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
index dc2305bd047257..d6b1d1c1a822b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-drag-and-drop-options.md
@@ -42,6 +42,6 @@ Cada parâmetro devolve True ou False dependendo se a opção correspondente est
| | |
| --- | --- |
| Número do comando | 1184 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
index 2b79f511d90dd7..e4a7f6b2cdfba3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enabled.md
@@ -40,6 +40,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1079 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
index 4e5f8454ac3770..36df351a077b2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-enterable.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1067 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
index b35dd60224c20e..0d9b9ebac4fb93 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-events.md
@@ -52,6 +52,6 @@ Você quer ativar dois eventos e obter a lista de eventos para um objeto:
| | |
| --- | --- |
| Número do comando | 1238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
index 63827a3606740d..3ecf3e23b79715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-filter.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1073 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
index 04fe876394373e..7c7f6d8828adac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-focus-rectangle-invisible.md
@@ -34,6 +34,6 @@ O comando devolve **True** se o retângulo de foco está oculto e **False** quan
| | |
| --- | --- |
| Número do comando | 1178 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
index 80bbc741621677..0c6ab53ae42512 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-size.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1070 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
index 9ccbd5f339555d..556fafe1ffe4b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font-style.md
@@ -39,6 +39,6 @@ Pode comparar o valor retornado pelo comando com o valor de um ou mais das segui
| | |
| --- | --- |
| Número do comando | 1071 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
index 3fbcdbfd2eba45..2a8eea47fb59ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-font.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro objeto é um nome d
| | |
| --- | --- |
| Número do comando | 1069 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
index 57738696088935..73a3d32240d365 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-format.md
@@ -69,6 +69,6 @@ Customized formats are returned untouched:
| | |
| --- | --- |
| Número do comando | 894 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
index e633a2b34e3cc1..08a10afd388b0b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-help-tip.md
@@ -42,6 +42,6 @@ O título de um botão imagem é guardado em forma de mensagem de ajuda. Este t
| | |
| --- | --- |
| Número do comando | 1182 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
index 6b5fa921f31c32..d9893526d1a771 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-horizontal-alignment.md
@@ -61,6 +61,6 @@ Os objetos de formulário aos quais se pode aplicar alinhamento são os seguinte
| | |
| --- | --- |
| Número do comando | 707 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
index 810004d65c37e1..2aeff68de83c7e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-indicator-type.md
@@ -40,6 +40,6 @@ Pode comparar o valor devolvido pelo comando com as seguintes constantes, que se
| | |
| --- | --- |
| Número do comando | 1247 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
index 5fb93f35984465..61096d03400cd0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-keyboard-layout.md
@@ -32,6 +32,6 @@ O comando devolve uma cadeia indicando o código da linguagem utilizada, baseado
| | |
| --- | --- |
| Número do comando | 1180 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
index f5bd040cc9617c..09de3cbd9920c1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-name.md
@@ -43,6 +43,6 @@ Se nenhuma lista do tipo definido está associada ao *objeto*, o comando devolve
| | |
| --- | --- |
| Número do comando | 1072 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
index 37783c631ef12e..d731bf2bbdbfc8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-list-reference.md
@@ -43,6 +43,6 @@ Se não há uma lista hierárquica associada ao objeto para o *tipoLista* defini
| | |
| --- | --- |
| Número do comando | 1267 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
index af21f520e1539e..ad380208611dbd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-maximum-value.md
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1245 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
index 7f2428db8dfa8e..16509f561bd4ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-minimum-value.md
@@ -33,6 +33,6 @@ Se passar o parâmetro opcional *\** indica que o parâmetro *objeto* é um nome
| | |
| --- | --- |
| Número do comando | 1243 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
index 524d1c4c7eb8c6..98c8336a5bfc25 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-multiline.md
@@ -43,6 +43,6 @@ O valor devolvido corresponde a uma das seguintes constantes do tema "*Proprieda
| | |
| --- | --- |
| Número do comando | 1254 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
index 24d6124cf84e9d..0358e114d7fa83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-name.md
@@ -44,6 +44,6 @@ Depois da execução deste método objeto, a variável *$btnName* contém o valo
| | |
| --- | --- |
| Número do comando | 1087 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
index 277b0f81887cb1..19c03c6e43b19f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-placeholder.md
@@ -42,6 +42,6 @@ Se quer receber o texto do marcador de campo:
| | |
| --- | --- |
| Número do comando | 1296 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
index 4774e96fb5d30a..0d08564586ded9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-pointer.md
@@ -61,6 +61,6 @@ Dado um formulário "SF" utilizado duas vezes como sub-formulário no mesmo form
| | |
| --- | --- |
| Número do comando | 1124 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
index 74f1ba1c6f0638..61c606232e9ad3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-print-variable-frame.md
@@ -41,6 +41,6 @@ Se o *objeto* é um sub formulário e se a impressão em tamanho variável está
| | |
| --- | --- |
| Número do comando | 1241 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
index 1b75dde2dcab80..43794e702c9b07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-resizing-options.md
@@ -49,6 +49,6 @@ O parâmetro *vertical* devolve um valor indicando a opção de redimensionament
| | |
| --- | --- |
| Número do comando | 1176 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
index 6f870415be94f7..f6f70a538179b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-rgb-colors.md
@@ -41,6 +41,6 @@ Para obter mais informação sobre do formato dos parâmetros *corPrimeiroPlano*
| | |
| --- | --- |
| Número do comando | 1074 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
index 651a3ffb44a0e3..aad02be556e0bb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scroll-position.md
@@ -37,6 +37,6 @@ Se *objeto* designa uma imagem (variável ou campo), *vPosição* retorna o movi
| | |
| --- | --- |
| Número do comando | 1114 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
index bdd9f1f27f822b..f2f60e869e2c3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-scrollbar.md
@@ -49,6 +49,6 @@ Para obter mais informação, consulte a descrição do comando [OBJECT SET SCRO
| | |
| --- | --- |
| Número do comando | 1076 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
index c29e73135cf1ef..0680f620f9e2ab 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-shortcut.md
@@ -47,6 +47,6 @@ Se nenhuma tecla de modificação foi definida para o atalho, modificadores devo
| | |
| --- | --- |
| Número do comando | 1186 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
index a4168e8b17971a..6a5d95080e7468 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-style-sheet.md
@@ -52,6 +52,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1258 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
index cf832304c45c7b..ec504667ffa601 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-size.md
@@ -38,6 +38,6 @@ O evento On Resize é gerado no método formulario de subformulário se o objeto
| | |
| --- | --- |
| Número do comando | 1148 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
index 953360ebdbfa09..4b83c6f2c5a5b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform-container-value.md
@@ -61,6 +61,6 @@ As a result, at runtime, updating the value of the main form's Input object also
| | |
| --- | --- |
| Número do comando | 1785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
index c7d6c8646aa793..8ae7822fd2632d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-subform.md
@@ -46,6 +46,6 @@ Se não houver formulário lista, uma string vazia é devolvida no parâmetro *s
| | |
| --- | --- |
| Número do comando | 1139 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
index 091911132a4699..d93511891c69c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-text-orientation.md
@@ -61,6 +61,6 @@ Quando se executa o formulário, é chamada a seguinte declaração:
| | |
| --- | --- |
| Número do comando | 1283 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
index 67dcf5ca559a2a..07478df0ac6318 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-three-states-checkbox.md
@@ -30,6 +30,6 @@ A propriedade "Três estados" se pode definir seja usando a lista de propriedade
| | |
| --- | --- |
| Número do comando | 1250 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
index 31b68882ab6f09..2f4c0a7153af99 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-title.md
@@ -36,6 +36,6 @@ Se passar o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nom
| | |
| --- | --- |
| Número do comando | 1068 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
index 5b39ad299c5c7b..7e0233f8a7de44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-type.md
@@ -101,6 +101,6 @@ Você quer carregar um formulário e obter a lista de todos os objetos dos list
| | |
| --- | --- |
| Número do comando | 1300 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
index d2b825e7320360..01e0503c9f0b27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-value.md
@@ -44,6 +44,6 @@ Ver o exemplo para o comando [OBJECT SET VALUE](object-set-value.md).
| | |
| --- | --- |
| Número do comando | 1743 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
index e198154f386e0c..c0c0b4c7b63ddc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-vertical-alignment.md
@@ -48,6 +48,6 @@ O alinhamento vertical pode ser aplicado aos seguintes tipos de objetos de formu
| | |
| --- | --- |
| Número do comando | 1188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
index fb771dc9abd231..1261ecd76ba132 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-get-visible.md
@@ -30,6 +30,6 @@ Se passa o parâmetro opcional *\**, indica que o parâmetro *objeto é* um nome
| | |
| --- | --- |
| Número do comando | 1075 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
index c9513357754e67..c0ce9cee1bd358 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-is-styled-text.md
@@ -48,6 +48,6 @@ Um formulário contém um campo representado por dois objetos diferentes, um dos
| | |
| --- | --- |
| Número do comando | 1261 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
index c9e58fb9ce6934..0dfef8ebb8225b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-move.md
@@ -72,6 +72,6 @@ A seguinte instrução move o botão “botão\_1” as seguintes coordenadas (1
| | |
| --- | --- |
| Número do comando | 664 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
index d6972fea9ea921..0f19867fff73e5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-action.md
@@ -95,6 +95,6 @@ Se quiser associar a ação padrão **Validate** com um botão:
| | |
| --- | --- |
| Número do comando | 1259 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
index 21e9373c6ea4d5..66eb19abea51b3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-auto-spellcheck.md
@@ -37,6 +37,6 @@ Passe **True** em *correAuto* para ativar esta função para objeto e **False**
| | |
| --- | --- |
| Número do comando | 1173 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
index 3841fbb06ac4f0..d56b4a831036dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-border-style.md
@@ -44,6 +44,6 @@ No parâmetro *estiloBorde*, passe o valor do estilo da linha fronteira que dese
| | |
| --- | --- |
| Número do comando | 1262 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
index 9535970b5d5263..d4a05e35d4c28e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-context-menu.md
@@ -34,6 +34,6 @@ Passe **True** no parâmetro *menuContext* para ativar o menu contextual, e **Fa
| | |
| --- | --- |
| Número do comando | 1251 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
index b0e88beec16117..0c615333c0f2ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-coordinates.md
@@ -60,6 +60,6 @@ A seguinte declaração localiza oi objeto "button\_1" nas coordenadas (10,20) (
| | |
| --- | --- |
| Número do comando | 1248 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
index 27be4a5ad4b10f..47d7817c1ece12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-corner-radius.md
@@ -70,6 +70,6 @@ Note that for text areas (as well as inputs), unlike for rectangles, the corner
| | |
| --- | --- |
| Número do comando | 1323 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
index 4c161fdde61d75..0a9ba529220231 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-data-source.md
@@ -55,6 +55,6 @@ Mudança da fonte de dados para uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1264 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
index a478cf3c6cd33b..c9688328cb8478 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-drag-and-drop-options.md
@@ -48,6 +48,6 @@ Definição de uma área de texto em arrastar e soltar auto:
| | |
| --- | --- |
| Número do comando | 1183 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
index 4fd862752acf52..e060e8c95a3ff2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enabled.md
@@ -44,6 +44,6 @@ Este comando pode ser aplicado aos seguintes tipos de objetos:
| | |
| --- | --- |
| Número do comando | 1123 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
index bf868f70c3796f..2859509d7e3584 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-enterable.md
@@ -78,6 +78,6 @@ Este é o método de objeto de uma caixa de seleção localizada no cabeçalho d
| | |
| --- | --- |
| Número do comando | 238 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
index fa0545ec89c2fa..6194c6e85a21b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-events.md
@@ -111,6 +111,6 @@ Desativação de um só evento do formulário sem modificar os outros:
| | |
| --- | --- |
| Número do comando | 1239 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
index 081525f9855e3f..cafdf4a81aa434 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-filter.md
@@ -61,6 +61,6 @@ O exemplo a seguir permite unicamente a entrada das letras “a,” “b,” “
| | |
| --- | --- |
| Número do comando | 235 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
index 0c95898c6f01fe..e01216be2ac070 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-focus-rectangle-invisible.md
@@ -35,6 +35,6 @@ Passe **True** no parâmetro *invisível* para ocultar o retângulo de foco e **
| | |
| --- | --- |
| Número do comando | 1177 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
index 0633c2e5b940e1..90dfef22398d90 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-size.md
@@ -57,6 +57,6 @@ O exemplo a seguir define o tamanho de fonte para todos os objetos de formulári
| | |
| --- | --- |
| Número do comando | 165 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
index 39665217ea3fff..1f3daa6907ded9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font-style.md
@@ -59,6 +59,6 @@ Este exemplo define o estilo de fonte Plain para todos os objetos de formulário
| | |
| --- | --- |
| Número do comando | 166 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
index 6b3b7ed44e00ef..459217e506377e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-font.md
@@ -66,6 +66,6 @@ O seguinte exemplo utiliza a opção especial *%password*, desenhada para a entr
| | |
| --- | --- |
| Número do comando | 164 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
index 1c2b571fe0b448..a3e3d1ce0eb3a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-format.md
@@ -373,6 +373,6 @@ Passe um termômetro ao modo "Barber shop"
| | |
| --- | --- |
| Número do comando | 236 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
index f1b28b51ad97b6..322998a2756b70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-help-tip.md
@@ -135,6 +135,6 @@ O resultado é...
| | |
| --- | --- |
| Número do comando | 1181 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
index 2a9a96a7927976..e94c1fb7e4633d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-horizontal-alignment.md
@@ -59,6 +59,6 @@ Os objetos de formulário aos quais pode aplicar este comando são os seguintes:
| | |
| --- | --- |
| Número do comando | 706 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
index 776b08b8ed0bdf..e0e3ff3106932f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-indicator-type.md
@@ -40,6 +40,6 @@ No parâmetro *indicador*, passe o tipo de indicador a mostrar. Pode utilizar um
| | |
| --- | --- |
| Número do comando | 1246 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
index 8cca80fb091200..02ed0b5636e77e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-keyboard-layout.md
@@ -32,6 +32,6 @@ Em *codigoLing*, passe uma cadeia indicando o código de linguagem a utilizar, b
| | |
| --- | --- |
| Número do comando | 1179 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
index 7800adade5c043..858372de45ea45 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-name.md
@@ -99,6 +99,6 @@ Você quer eliminar a lista de associações:
| | |
| --- | --- |
| Número do comando | 237 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
index 3ea1aa9fe11c0a..f568b2ca8d6456 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-list-by-reference.md
@@ -134,6 +134,6 @@ Com o propósito de atualizar a lista associada ao pop-up gerenciado por array,
| | |
| --- | --- |
| Número do comando | 1266 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
index e4b2e90a999b31..70dee6955b19b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-maximum-value.md
@@ -35,6 +35,6 @@ Em *valorMax*, passe o novo valor máximo que deseja atribuir ao objeto para o p
| | |
| --- | --- |
| Número do comando | 1244 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
index ef5eed1c6c34a4..865e68b301d874 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-minimum-value.md
@@ -35,6 +35,6 @@ Em *valorMinimo*, passe o novo valor mínimo a atribuir ao objeto para o process
| | |
| --- | --- |
| Número do comando | 1242 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
index 5e853697a8c5ae..5232fcb545ba2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-multiline.md
@@ -48,6 +48,6 @@ Você quer proibir várias linhas em uma área de entrada:
| | |
| --- | --- |
| Número do comando | 1253 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
index 52a9b04de24ab0..99105d45e607b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-placeholder.md
@@ -50,6 +50,6 @@ Você quer mostrar o texto "Buscar" um combo box:
| | |
| --- | --- |
| Número do comando | 1295 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
index 5810ede217ffcb..5cdbdc8e0cfe75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-print-variable-frame.md
@@ -46,6 +46,6 @@ O parâmetro opcional *subformFixo* lhe permite configurar uma opção adicional
| | |
| --- | --- |
| Número do comando | 1240 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
index 933f730c4c05bc..8cf624dede655b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-resizing-options.md
@@ -48,6 +48,6 @@ No parâmetro *vertical*, passe um valor que indique a opção de redimensioname
| | |
| --- | --- |
| Número do comando | 1175 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
index 2b1efdeef96db4..cc68127d241d23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-rgb-colors.md
@@ -110,6 +110,6 @@ Muda o fundo transparente com uma cor de fonte clara:
| | |
| --- | --- |
| Número do comando | 628 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
index a6ace0fc6b72fe..f1ce31eee66569 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scroll-position.md
@@ -96,6 +96,6 @@ Tenha a certeza de não omitir o segundo parâmetro *\** neste caso, caso contr
| | |
| --- | --- |
| Número do comando | 906 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
index 2088077ff867bf..f9dcf0f1fdde94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-scrollbar.md
@@ -49,6 +49,6 @@ Passe nos parâmetros *horizontal* e *vertical* os valores booleanos indicando s
| | |
| --- | --- |
| Número do comando | 843 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
index d5a15c1c696768..7fb549651e8534 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-shortcut.md
@@ -94,6 +94,6 @@ Você quer associar um atalho de teclado diferente em função da linguagem atua
| | |
| --- | --- |
| Número do comando | 1185 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
index abf463649a34dd..0e576f64404daa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-style-sheet.md
@@ -54,6 +54,6 @@ Em **arquitetura de projeto**, só as três folhas de estilo automáticas são c
| | |
| --- | --- |
| Número do comando | 1257 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
index 4b47ab001e3a66..687e654615a357 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform-container-value.md
@@ -37,6 +37,6 @@ A detailed example is available in the [OBJECT Get subform container value](obje
| | |
| --- | --- |
| Número do comando | 1784 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
index efcd4365cc9b81..2df29ad959618f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-subform.md
@@ -48,6 +48,6 @@ Quando modifica um sub-formulário página, o comando pode executar-se em qualqu
| | |
| --- | --- |
| Número do comando | 1138 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
index 3bd887841c22b2..2c2bac421672c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-text-orientation.md
@@ -55,6 +55,6 @@ Deseja aplicar uma orientação de 270° a uma variável em seu formulário:
| | |
| --- | --- |
| Número do comando | 1284 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
index f74d6f16cfae43..7359255a1b00c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-three-states-checkbox.md
@@ -36,6 +36,6 @@ No parâmetro *tresEsta*, passe **True** para ativar o modo "três estados", ou
| | |
| --- | --- |
| Número do comando | 1249 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
index 65791437e7aab3..41a71eae39e49b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-title.md
@@ -72,6 +72,6 @@ Você quer inserir os títulos em duas linhas:
| | |
| --- | --- |
| Número do comando | 194 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
index d7bba722ade4f0..0b6a2b3551b218 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-value.md
@@ -45,6 +45,6 @@ Se quiser o valor da data source de um objeto formulário, obtenha seu nome e es
| | |
| --- | --- |
| Número do comando | 1742 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
index 14f5a2e57dc1eb..b0bbe745a7b1a5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-vertical-alignment.md
@@ -47,6 +47,6 @@ A alienação vertical pode aplicar-se aos seguintes tipos de objetos de formul
| | |
| --- | --- |
| Número do comando | 1187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
index 5c722a2487ebb5..a18443962e70d5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-set-visible.md
@@ -64,6 +64,6 @@ ou:
| | |
| --- | --- |
| Número do comando | 603 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
index 565b8cf945d493..1a1169fd20c5dc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/object-to-path.md
@@ -61,6 +61,6 @@ Se quisermos duplicar e mudar o nome de um arquivo em sua própria pasta
| | |
| --- | --- |
| Número do comando | 1548 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
index fee1ef99e1a45e..a621e2974915cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-many.md
@@ -31,7 +31,7 @@ OLD RELATED MANY muda a seleção da tabela relacionada e seleciona o primeiro r
| | |
| --- | --- |
| Número do comando | 263 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
index e6c0144767d232..e60fc3b02dea35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old-related-one.md
@@ -37,7 +37,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 44 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
index a7b2a792ecb7b5..76e0f84e350d5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/old.md
@@ -45,6 +45,6 @@ Para restaurar o valor original de um campo, atribua-lhe o valor retornado por O
| | |
| --- | --- |
| Número do comando | 35 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
index 5056ad19e6303e..423367e007eaa2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-err-call.md
@@ -191,6 +191,6 @@ O método abaixo de gestão de erros ignora as interrupções de usuário e most
| | |
| --- | --- |
| Número do comando | 155 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
index 22a83179f97f2b..c85eb7a1687d2d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-event-call.md
@@ -112,7 +112,7 @@ Se um relatório for impresso utilizando [PRINT SELECTION](print-selection.md "P
| | |
| --- | --- |
| Número do comando | 190 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
index 0efa560a6e6ade..f93fc55a62f24d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/on-server-open-connection-database-method.md
@@ -133,6 +133,6 @@ O seguinte exemplo evita uma nova conexão entre as 2 e 4 A.M.
| | |
| --- | --- |
| Número do comando | 16001 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
index c2ac171918cf72..2eb7046383ed68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/one-record-select.md
@@ -37,7 +37,7 @@ Aviso: lembre que um número de registro pode ser reutilizado se o registro for
| | |
| --- | --- |
| Número do comando | 189 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
index e617984d420052..b883beb6f9a728 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-administration-window.md
@@ -55,7 +55,7 @@ Se o comando foi executado corretamente, a variável de sistema OK é definida c
| | |
| --- | --- |
| Número do comando | 1047 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
index e0a2f037ab70fe..d2bb812cbe8701 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-color-picker.md
@@ -34,6 +34,6 @@ Se a cor mudou, o evento formulário On After Edit é gerado para o objeto.
| | |
| --- | --- |
| Número do comando | 1304 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
index 28ad8e3b8b809f..ba4e19e038db4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-data-file.md
@@ -60,6 +60,6 @@ No contexto de implementação de uma aplicação fusionada, se quiser abrir ou
| | |
| --- | --- |
| Número do comando | 312 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
index af7e17e0800cea..160c067c73b292 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-database.md
@@ -77,6 +77,6 @@ Se quiser selecionar um servidor no início desde uma aplicação monousuário.
| | |
| --- | --- |
| Número do comando | 1321 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
index 04af9333f2ed1d..e93bf442f2c2f6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-document.md
@@ -103,7 +103,7 @@ Se passa o valor 3 em *modo*, a função retorna ?00:00:00? (sem referência de
| | |
| --- | --- |
| Número do comando | 264 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
index 791f7cfad2e50f..45910a799db120 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-font-picker.md
@@ -48,6 +48,6 @@ Abaixo o código do botão:
| | |
| --- | --- |
| Número do comando | 1303 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
index 0e41ba8fd1c170..8d13a27310c357 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-form-window.md
@@ -140,6 +140,6 @@ o que retorna:
| | |
| --- | --- |
| Número do comando | 675 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
index e07309a725d5d6..3e7d872e1ab9f5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-printing-job.md
@@ -42,7 +42,7 @@ A variável sistema OK se estabelece em 1 se o trabalho de impressão foi aberto
| | |
| --- | --- |
| Número do comando | 995 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
index 19dfa31b5e2181..752bb93ffa6f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-resource-file.md
@@ -105,7 +105,7 @@ Se o arquivo de recursos não puder ser aberto por um problema do recurso ou de
| | |
| --- | --- |
| Número do comando | 497 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
index 294e22b3f11160..b0fb698cd8c68f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-runtime-explorer.md
@@ -22,6 +22,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
index 3ea2921c9ecd50..9a5a878c0ef1ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-security-center.md
@@ -32,6 +32,6 @@ Dependendo dos privilegios de acesso do usuário atual, certas funções dispon
| | |
| --- | --- |
| Número do comando | 1018 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
index 5ca57cfdeb5858..a9d88d3f3bcc22 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-settings-window.md
@@ -171,7 +171,7 @@ Se a caixa de diálogo Preferências/Propriedades é validada, a variável siste
| | |
| --- | --- |
| Número do comando | 903 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
index ead62a70e25a12..61c733d294863d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-url.md
@@ -84,6 +84,6 @@ Pode abrir um arquivo texto com diferentes aplicações:
| | |
| --- | --- |
| Número do comando | 673 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
index 9c494b25da5e85..f590dfabe73cbf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/open-window.md
@@ -142,6 +142,6 @@ Este exemplo ilustra o mecanismo de “atraso” de mostrar janelas em macOS:
| | |
| --- | --- |
| Número do comando | 153 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
index 939c6a13482ac5..9fb28cf11c8c27 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-attribute.md
@@ -118,6 +118,6 @@ Os registros estão na seguinte ordem:
| | |
| --- | --- |
| Número do comando | 1407 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
index 5cb4f7f199ca09..94e4d0ed91a626 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by-formula.md
@@ -51,7 +51,7 @@ Este exemplo ordena os registros da tabela \[Pessoas\] em ordem descendente, bas
| | |
| --- | --- |
| Número do comando | 300 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
index 671e1ebda15f94..b1f17374a75e16 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/order-by.md
@@ -210,7 +210,7 @@ Sem importar como se defina a ordenação, se a operação de ordenação vai a
| | |
| --- | --- |
| Número do comando | 49 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
index b8f833fba9d4f4..e6a93d94e1b744 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/outside-call.md
@@ -31,6 +31,6 @@ Para que seja gerado o ciclo de execução **Outside call,** tenha certeza de qu
| | |
| --- | --- |
| Número do comando | 328 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
index 4c68e4378a28ab..0b395fa4066426 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/page-break.md
@@ -49,7 +49,7 @@ Consulte o exemplo do comando [SET PRINT MARKER](set-print-marker.md "SET PRINT
| | |
| --- | --- |
| Número do comando | 6 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
index 5a23faa1615574..f711c4fc131770 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/parse-formula.md
@@ -112,6 +112,6 @@ O parâmetro opcional *mensagemE* *rro* receberá uma mensagem de erro se houver
| | |
| --- | --- |
| Número do comando | 1576 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
index dd1cc09df259b8..97f652b0ed99cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pasteboard-data-size.md
@@ -96,7 +96,7 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 400 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
index da89f3af40ad59..2831ed98866b59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/path-to-object.md
@@ -179,6 +179,6 @@ Se quiser saber a quantidade de subpastas em uma rota:
| | |
| --- | --- |
| Número do comando | 1547 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
index c6f93c72b8319a..0a68bf9ca21023 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-indexes.md
@@ -53,6 +53,6 @@ Exemplo de método de importação massivo de dados:
| | |
| --- | --- |
| Número do comando | 1293 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
index 4c39710196130b..1eaec5dbee77c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pause-process.md
@@ -37,6 +37,6 @@ Quando se suspende a execução de um processo, as janelas que pertencem a este
| | |
| --- | --- |
| Número do comando | 319 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
index 688fe3ada5d47a..de66eb16305d4f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-codec-list.md
@@ -41,6 +41,6 @@ Por padrão, se não passa o parâmetro *\**, o comando devolve unicamente os co
| | |
| --- | --- |
| Número do comando | 992 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
index fbe8606c93683d..2aca2086fb3e46 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-library-list.md
@@ -98,6 +98,6 @@ O exemplo a seguir exporta a biblioteca de imagens a um documento armazenado no
| | |
| --- | --- |
| Número do comando | 564 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
index 95e7c1dd3fc993..34ec590ede50c2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-properties.md
@@ -35,6 +35,6 @@ Os parâmetros *hDesp*, *vDesp*, e *modo* devolvem as posições horizontal e ve
| | |
| --- | --- |
| Número do comando | 457 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
index 3f3e6f9a9213d5..74784c79b25ed8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-size.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 356 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
index 52cf99d547cf8c..c45372a023304a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/picture-to-blob.md
@@ -56,7 +56,7 @@ Se quiser converter uma imagem de um formato proprietário a formato GIF e mostr
| | |
| --- | --- |
| Número do comando | 692 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
index 0ac76861501fcf..c10d9e182b4fae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/play.md
@@ -63,6 +63,6 @@ O código de exemplo abaixo reproduz um som do sistema em macOS:
| | |
| --- | --- |
| Número do comando | 290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
index 45960f1281587d..d4c348ecca6b8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/plugin-list.md
@@ -34,6 +34,6 @@ PLUGIN LIST leva todos os plug-ins em consideração, incluindo aqueles que est
| | |
| --- | --- |
| Número do comando | 847 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
index ba088dfc861065..b756042a797709 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-record.md
@@ -39,7 +39,7 @@ O exemplo a seguir recupera o registro de um cliente na pilha:
| | |
| --- | --- |
| Número do comando | 177 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
index 80d33042c501c0..7a3f3be55625e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/pop-up-menu.md
@@ -123,6 +123,6 @@ O próximo é o menu pop-up tal como aparece em Windows (esquerda) e Macintosh (
| | |
| --- | --- |
| Número do comando | 542 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
index 2e99045391e232..7eb6613bab3f1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/position.md
@@ -123,6 +123,6 @@ No exemplo abaixo, se quiser encontrar todas as instâncias de uma string e subs
| | |
| --- | --- |
| Número do comando | 15 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
index cee42b92f0732b..b89a3853587f52 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-click.md
@@ -34,6 +34,6 @@ Se especificar o parâmetro processo *processo*, o clique é enviado ao processo
| | |
| --- | --- |
| Número do comando | 466 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
index 9eb57590e65540..955caef9a4309b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-event.md
@@ -77,6 +77,6 @@ Se passa o parâmetro *processo,* o evento é enviado através do processo cujo
| | |
| --- | --- |
| Número do comando | 467 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
index 6a4c3263103f35..5a64a7d84dce84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-key.md
@@ -41,6 +41,6 @@ Ver exemplo do comando [Process number](../commands/process-number.md).
| | |
| --- | --- |
| Número do comando | 465 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
index 2d867e592ba8f8..d2bc1f3ecd1d63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/post-outside-call.md
@@ -46,7 +46,7 @@ Ver o exemplo de [On Exit Database Method](metodo-banco-de-dados-on-exit.md "On
| | |
| --- | --- |
| Número do comando | 329 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
index 8f12c40a059eb4..2b88f9aefc2ea1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/previous-record.md
@@ -32,7 +32,7 @@ Se PREVIOUS RECORD move o ponteiro do registro atual antes da seleção atual, B
| | |
| --- | --- |
| Número do comando | 110 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
index c87f7163b09a7a..5a8fb74669b9fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-label.md
@@ -111,7 +111,7 @@ O exemplo a seguir lhe permite ao usuário efetuar uma pesquisa na tabela \[Pess
| | |
| --- | --- |
| Número do comando | 39 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
index a65ffb9f1f3721..897eacc0859800 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-object.md
@@ -101,6 +101,6 @@ Exemplo de impressão de um list box completo:
| | |
| --- | --- |
| Número do comando | 1095 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
index b3a3697243cd33..d21c437b4d5a1a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-option-values.md
@@ -59,6 +59,6 @@ Toda a informação devolvida por estes comandos é fornecida pelo sistema opera
| | |
| --- | --- |
| Número do comando | 785 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
index 54d10dfbaf857f..81335db8e5278e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-record.md
@@ -70,6 +70,6 @@ O exemplo a seguir imprime o mesmo registro atual em dois formulários diferente
| | |
| --- | --- |
| Número do comando | 71 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
index 0610af75e6a3ae..f28b1b01681af7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-selection.md
@@ -66,7 +66,7 @@ O exemplo a seguir seleciona todos os registros na tabela \[Pessoas\]. O comando
| | |
| --- | --- |
| Número do comando | 60 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
index c7961d05b10c3d..30b253805a77f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings-to-blob.md
@@ -59,6 +59,6 @@ Se quiser armazenar a configuração de impressão atual no disco:
| | |
| --- | --- |
| Número do comando | 1433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
index 25a0b8da5bf21e..2efc7f3f9f9ad0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/print-settings.md
@@ -46,7 +46,7 @@ Se o usuário clicar em OK em ambas caixas de diálogo, a variável sistema OK t
| | |
| --- | --- |
| Número do comando | 106 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
index 6f66367677f1c5..8879e69d783fa5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printers-list.md
@@ -50,7 +50,7 @@ A variável sistema OK toma o valor 1 se o comando tiver sido executado corretam
| | |
| --- | --- |
| Número do comando | 789 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
index f9b858b3aa08fe..14b69068cb718c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/printing-page.md
@@ -43,6 +43,6 @@ O exemplo a seguir muda a posição dos números de página em um relatório de
| | |
| --- | --- |
| Número do comando | 275 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
index 6634f09802c106..b476ed3823ddc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-4d-tags.md
@@ -87,6 +87,6 @@ PROCESS 4D TAGS($input; $output; "elements = "; ->$array)
| | |
| --- | --- |
| Número do comando | 816 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
index f7ccd99444f604..fa1e5e8508f760 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-aborted.md
@@ -28,6 +28,6 @@ Este status acontece muito raramente. Processos são geralmente parados antes do
| | |
| --- | --- |
| Número do comando | 672 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
index 6489f0598e0187..78f32faa292cc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/process-state.md
@@ -65,6 +65,6 @@ O seguinte exemplo coloca o nome e número de referencia para cada processo nos
| | |
| --- | --- |
| Número do comando | 330 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
index f6832d683f46b9..8beca2437695dd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/push-record.md
@@ -39,6 +39,6 @@ O seguinte exemplo empilha o registro de um cliente:
| | |
| --- | --- |
| Número do comando | 176 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
index d1a6d9f89c3ea7..adacd83fc503d0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-blob-to-report.md
@@ -49,7 +49,7 @@ A instrução a seguir recupera o relatório rápido armazenado em Campo4 e o mo
| | |
| --- | --- |
| Número do comando | 771 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
index 48a57f342c5973..7dec2f46ab47d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-count-columns.md
@@ -39,7 +39,7 @@ O código a seguir permite adicionar uma coluna adicional à direita da última
| | |
| --- | --- |
| Número do comando | 764 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
index efeaafb6d30601..fbd0b56dfff513 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-column.md
@@ -40,7 +40,7 @@ O exemplo a seguir garante de que o relatório seja listado e apaga a terceira c
| | |
| --- | --- |
| Número do comando | 749 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
index 1ae84577909950..15483c1dc8f7e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-delete-offscreen-area.md
@@ -28,7 +28,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 754 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
index a7824e2679ed5e..d25500c416fe84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-execute-command.md
@@ -48,7 +48,7 @@ Se passa um número de *comando* incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 791 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
index 2a400f8f82811d..c700b53ff1fc61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-find-column.md
@@ -48,7 +48,7 @@ $NumColumn:=QR Find column (MiArea; "\[G.NQR Tests\]Trimestre")
| | |
| --- | --- |
| Número do comando | 776 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
index d3cdba83dcb16c..342829cb3f3351 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-area-property.md
@@ -39,7 +39,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 795 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
index 9626480e3d51c6..d34dba28c419ad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-borders.md
@@ -73,7 +73,7 @@ Se o parâmetro *borda* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 798 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
index 68437b94e7fa2f..97c48a147a7584 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-command-status.md
@@ -42,7 +42,7 @@ Se o parâmetro *comando* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 792 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
index 0475378dff8635..0c831a9e438e7b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-destination.md
@@ -42,7 +42,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 756 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
index 42b706ca62632f..e7c16661bdf958 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-document-property.md
@@ -52,6 +52,6 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 773 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
index 6b290a38441259..987ead7ec9fe19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-drop-column.md
@@ -32,7 +32,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 747 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
index 37258962e7e161..6a0cce5d6d2d0c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-header-and-footer.md
@@ -72,7 +72,7 @@ O código a seguir recupera o conteúdo e a altura do título do cabeçalho e os
| | |
| --- | --- |
| Número do comando | 775 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
index a38a5134cf0a2c..1cbd84a30ad73c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-html-template.md
@@ -31,7 +31,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 751 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
index 15b919e0766cae..3a6daeac612775 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-column.md
@@ -117,7 +117,7 @@ Pode escrever:
| | |
| --- | --- |
| Número do comando | 766 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
index 5e5435a88485e1..40f8e265fa8452 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-info-row.md
@@ -44,7 +44,7 @@ Se o parâmetro *linha* é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 769 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
index 6c4c722a4aa396..dd0e0231823494 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-kind.md
@@ -40,7 +40,7 @@ Se passa um número de *area* incorreto, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 755 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
index 64e72a2c114549..d88c418ed1704f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-report-table.md
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 758 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
index a4070bcdf7a487..c88a7661462d63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-selection.md
@@ -44,7 +44,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 793 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
index 620cba93fe01ab..20893124c66c19 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-sorts.md
@@ -40,7 +40,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 753 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
index 007f900e494c37..c03e719ee4957d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-text-property.md
@@ -73,7 +73,7 @@ Se o parâmetro *propriedade* é incorreto, se gera o erro -9854.
| | |
| --- | --- |
| Número do comando | 760 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
index 328ca001b1f04a..2bd46e88f5ffd3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-data.md
@@ -77,7 +77,7 @@ Se o parâmetro *numQuebra* é incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 768 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
index c219a931aa3ed2..628a44cb15e432 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-get-totals-spacing.md
@@ -42,7 +42,7 @@ Se o parâmetro *subtotal* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
index 7273fd494986c0..6c2f78768c737c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-insert-column.md
@@ -44,7 +44,7 @@ A seguinte instrução insere (ou cria) uma primeira coluna na área MinhaArea,
| | |
| --- | --- |
| Número do comando | 748 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
index d27694c61532ba..381d0a4b7b1798 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-move-column.md
@@ -45,6 +45,6 @@ O resultado será:
| | |
| --- | --- |
| Número do comando | 1325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
index 6036e7677c8e92..d967c3e5a3d807 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-area.md
@@ -26,6 +26,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1320 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
index fc741513590068..a10c592ff61992 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-new-offscreen-area.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 735 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
index 9e5c1919e16d10..06a74e1b49fc0d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-on-command.md
@@ -47,7 +47,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 790 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
index d5adc3a0c95404..910c3ba5cf119c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report-to-blob.md
@@ -37,7 +37,7 @@ A seguinte instrução atribui o relatório rápido armazenado na área MinhaAre
| | |
| --- | --- |
| Número do comando | 770 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
index 754d8acdc78420..1645d40627465e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-report.md
@@ -140,7 +140,7 @@ O método myCallbackMeth converte o relatório quando é gerado:
| | |
| --- | --- |
| Número do comando | 197 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
index bed46f737a2ed2..8923d36026ca66 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-run.md
@@ -29,7 +29,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 746 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
index a00e288a2e0119..8ad2be36747ac4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-area-property.md
@@ -47,7 +47,7 @@ Se o parâmetro *propriedade* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 796 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
index 13e1cacb3da997..0eb3322728dd29 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-borders.md
@@ -77,7 +77,7 @@ Se o parâmetro *largura* é incorreto, se gera o erro -9855.
| | |
| --- | --- |
| Número do comando | 797 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
index 3782bad224a85b..14048fab4c289d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-destination.md
@@ -58,7 +58,7 @@ O código a seguir define o arquivo texto Midoc.txt como tipo de destino do rela
| | |
| --- | --- |
| Número do comando | 745 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
index b54001ee4c1455..94d89e1b8ada02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-document-property.md
@@ -41,7 +41,7 @@ Se passa um valor incorreto do parâmetro propriedade, se gera o erro -9852 ou -
| | |
| --- | --- |
| Número do comando | 772 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
index c7f08640a709f2..894af436698462 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-header-and-footer.md
@@ -61,7 +61,7 @@ A seguiete instrução coloca o título “Título do centro” no cabeçalho do
| | |
| --- | --- |
| Número do comando | 774 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
index 8465eae9e54f58..b929a1dda29427 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-html-template.md
@@ -79,7 +79,7 @@ Se passa um número de área inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 750 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
index edf846974bb8ab..cc3766a398e27d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-column.md
@@ -113,7 +113,7 @@ Se o parâmetro *numColuna* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 765 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
index 3b5b887f880e55..6f9bdea021e583 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-info-row.md
@@ -55,7 +55,7 @@ A instrução a seguir oculta o conteúdo da linha detalhe:
| | |
| --- | --- |
| Número do comando | 763 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
index 7b581dfa1b11c7..696d14a8acca15 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-kind.md
@@ -44,7 +44,7 @@ Se passa um valor incorreto do parâmetro *propriedade*, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 738 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
index b461c065c18dc8..ebaa32102bbd5b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-report-table.md
@@ -33,7 +33,7 @@ Se o parâmetro *tabela* for incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 757 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
index 7e3d0e91f0d167..bc795e33ea9040 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-selection.md
@@ -41,7 +41,7 @@ Se passa um número de *area* inválido, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 794 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
index ba08f0b983f8c1..d2b0fcd9df5323 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-sorts.md
@@ -53,7 +53,7 @@ Se passa um número de área *inválido*, se gera o erro -9850.
| | |
| --- | --- |
| Número do comando | 752 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
index 1a129716bec3dc..66e85bab218773 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-text-property.md
@@ -90,7 +90,7 @@ Este método define vários atributos para o título da primeira coluna:
| | |
| --- | --- |
| Número do comando | 759 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
index 5f3dfee1870b0d..8731827c3ca37d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-data.md
@@ -104,7 +104,7 @@ Se o parâmetro *numQuebra* for incorreto, se gera o erro -9853.
| | |
| --- | --- |
| Número do comando | 767 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
index b3331e2e63e5c0..22b25a20ec2cec 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/qr-set-totals-spacing.md
@@ -44,7 +44,7 @@ Se o parâmetro *subtotal*, é incorreto, se gera o erro -9852.
| | |
| --- | --- |
| Número do comando | 761 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
index 24cea723b6e105..2030213c4070c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-attribute.md
@@ -412,7 +412,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 1331 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
index c720b336d8dd03..cb2df0a88cff8c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-example.md
@@ -46,7 +46,7 @@ Se o usuário clicar no botão Aceitar, ou pressionar a tecla Enter, a variável
| | |
| --- | --- |
| Número do comando | 292 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
index 1f24520b19c10d..5657a95b6dddcf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-formula.md
@@ -86,7 +86,7 @@ Este exemplo utiliza uma união para buscar todas as linhas de faturas de client
| | |
| --- | --- |
| Número do comando | 48 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
index 3a53446e0a1e87..c6864029125e20 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-by-sql.md
@@ -169,7 +169,7 @@ Se o formato da condição de pesquisa for correto, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 942 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
index 7c32338e544eb5..2725d26c3163a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-attribute.md
@@ -51,7 +51,7 @@ Se quiser encontrar pessoas com uma idade entre 20 e 30 nos registros que foram
| | |
| --- | --- |
| Número do comando | 1424 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
index 8b956aa2dab6a7..ab88e806228263 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-by-formula.md
@@ -36,7 +36,7 @@ Para maior informação, consulte a descrição do comando [QUERY BY FORMULA](qu
| | |
| --- | --- |
| Número do comando | 207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
index e9d682d5fae309..5a3bc9b25652fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection-with-array.md
@@ -34,7 +34,7 @@ Para maior informação, consulte a descrição do comando [QUERY WITH ARRAY](qu
| | |
| --- | --- |
| Número do comando | 1050 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
index 60cfb6633f5237..d5a6402c0ba8b7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-selection.md
@@ -49,7 +49,7 @@ Isso faz com que encontre todas as empresas localizadas em Nova Iorque, com ativ
| | |
| --- | --- |
| Número do comando | 341 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
index 6a4ea8de46657e..484f9c80f0d5ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query-with-array.md
@@ -45,7 +45,7 @@ O exemplo a seguir lhe permite recuperar os registros de clientes franceses e am
| | |
| --- | --- |
| Número do comando | 644 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
index f83c52cda5a8d8..32e3996901cffb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/query.md
@@ -316,7 +316,7 @@ A variável Ok toma o valor 0 se:
| | |
| --- | --- |
| Número do comando | 277 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
index 1b407bf746795b..809cfcc4cd1e23 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/quit-4d.md
@@ -72,6 +72,6 @@ O método de projeto listado aqui está associado com o item Quit ou Exit do men
| | |
| --- | --- |
| Número do comando | 291 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
index 5a941fa13ccc26..14790443bfd7c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/random.md
@@ -39,6 +39,6 @@ O exemplo a seguir atribui um valor aleatório entre 10 e 30 à variável *vlRes
| | |
| --- | --- |
| Número do comando | 100 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
index 01c82f252bb92d..fb275179779c01 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only-state.md
@@ -44,6 +44,6 @@ O seguinte exemplo testa o estado da tabela \[Faturas\]. Se o estado da tabela \
| | |
| --- | --- |
| Número do comando | 362 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
index 4108625dfef6b1..6a4640cf3faa64 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-only.md
@@ -32,6 +32,6 @@ Utilize READ ONLY quando não necessite modificar os registros.
| | |
| --- | --- |
| Número do comando | 145 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
index 818a61bb6a937f..7b4e802f4af27c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-picture-file.md
@@ -47,7 +47,7 @@ Se a execução do comando é correta, a variável sistema Document contém a ro
| | |
| --- | --- |
| Número do comando | 678 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
index ed68b5e30c1121..daa8d31b010290 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/read-write.md
@@ -36,6 +36,6 @@ Utilize READ WRITE quando tenha que modificar um registro e guardar as mudanças
| | |
| --- | --- |
| Número do comando | 146 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
index 270fe59d69dd87..f5d537ea025ed5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/real-to-blob.md
@@ -138,6 +138,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 552 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
index 58f60de10a56c9..ce75be23e3ff53 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-buffer.md
@@ -70,7 +70,7 @@ Note que o acesso à variável interprocesso *vtBuffer* deve ser protegida por u
| | |
| --- | --- |
| Número do comando | 172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
index 41ca4c67ce14e5..2432b64b7298b9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-packet.md
@@ -121,7 +121,7 @@ Depois de um chamado a RECEIVE PACKET, a variável sistema OK recebe o valor 1 s
| | |
| --- | --- |
| Número do comando | 104 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
index 55cfed8d211116..e8fe6bb679ed68 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-record.md
@@ -157,7 +157,7 @@ The OK system variable is set to 1 if the record is received. Otherwise, the OK
| | |
| --- | --- |
| Número do comando | 79 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
index 62cfe7e1450e10..48d26ec5cbf051 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/receive-variable.md
@@ -47,7 +47,7 @@ A variável de sistema OK é definida como 1 se a variável for recebida. Caso c
| | |
| --- | --- |
| Número do comando | 81 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
index 080cf9065e7503..c7384f1329da03 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/record-number.md
@@ -49,6 +49,6 @@ O exemplo a seguir salva o número do registro atual e depois procura na tabela
| | |
| --- | --- |
| Número do comando | 243 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
index 12eaa3ec46e3c3..b44ba3c6a7d33c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-selection.md
@@ -41,6 +41,6 @@ End for
| | |
| --- | --- |
| Número do comando | 76 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
index 825df14cb703d3..b4f3becb2dcd3f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-set.md
@@ -39,6 +39,6 @@ O seguinte exemplo mostra um alerta indicando a porcentagem de clientes classifi
| | |
| --- | --- |
| Número do comando | 195 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
index 68a89e92d7fe6b..7cef78f279490e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/records-in-table.md
@@ -35,6 +35,6 @@ O exemplo a seguir mostra um alerta que indica o número de registros na tabela:
| | |
| --- | --- |
| Número do comando | 83 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
index 94513ee91f071d..c08f0068ddfcd8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw-window.md
@@ -30,6 +30,6 @@ Se omitir o parâmetro *janela*, REDRAW WINDOW aplica à janela do primeiro plan
| | |
| --- | --- |
| Número do comando | 456 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
index 9b3dbc445e47ae..f7085deb8e9428 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/redraw.md
@@ -28,6 +28,6 @@ No contexto dos list boxes em modo seleção,quando a instrução REDRAW for apl
| | |
| --- | --- |
| Número do comando | 174 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
index 63606e25b6087f..b332b629626f44 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-restore-window.md
@@ -35,6 +35,6 @@ O comando muda o estado da janela:
| | |
| --- | --- |
| Número do comando | 1829 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
index 755a25adf4e559..e12efe8a5d6c7e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reduce-selection.md
@@ -61,7 +61,7 @@ O seguinte exemplo pesquisa as estatísticas corretas para uma concorrência mun
| | |
| --- | --- |
| Número do comando | 351 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
index 941de89ab89b1c..15a42802f57c28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/refresh-license.md
@@ -51,6 +51,6 @@ Se quiser atualizar sua licença e receber uma mensagem quando se completar:
| | |
| --- | --- |
| Número do comando | 1336 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
index 70642eb8af46d1..e6458d3006b7d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/regenerate-missing-table.md
@@ -65,6 +65,6 @@ Este método regenera todas as tabelas não encontradas eventualmente presentes
| | |
| --- | --- |
| Número do comando | 1126 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
index 8448ddb53963a4..6c439e62b88bef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-client.md
@@ -118,7 +118,7 @@ Se um cliente 4D está registrado corretamente, a variável do sistema OK é igu
| | |
| --- | --- |
| Número do comando | 648 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
index c4aca58bfed99d..f9e71d34d391c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/register-data-key.md
@@ -54,6 +54,6 @@ No primeiro parâmetro, passe *curPassPhrase* ou *curDataKey* que define a chave
| | |
| --- | --- |
| Número do comando | 1638 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
index ede7d9c51d896a..253cb046a42279 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject-new-remote-connections.md
@@ -45,6 +45,6 @@ Se quiser rejeitar ou aceitar as novas conexões de clientes:
| | |
| --- | --- |
| Número do comando | 1635 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
index 0663293cd90b7d..058d27215247a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reject.md
@@ -67,6 +67,6 @@ O seguinte exemplo é parte de um método de objeto para um campo *\[Empregados\
| | |
| --- | --- |
| Número do comando | 38 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
index 9edc759de17f65..d73d622e34fc0b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many-selection.md
@@ -41,7 +41,7 @@ Este exemplo seleciona todas as faturas de clientes com crédito superior ou igu
| | |
| --- | --- |
| Número do comando | 340 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
index cf9cbab1ccc7e8..26269cf98d76ae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-many.md
@@ -72,7 +72,7 @@ Note que é necessário o comando RELATE MANY, mesmo que as relações sejam aut
| | |
| --- | --- |
| Número do comando | 262 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
index 9895d0226870f7..176401cce539a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one-selection.md
@@ -64,7 +64,7 @@ A seguinte técnica utiliza **RELATE ONE SELECTION** para obter o mesmo resultad
| | |
| --- | --- |
| Número do comando | 349 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
index e8ad729dffef2c..7a3e0b84b95cb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/relate-one.md
@@ -95,7 +95,7 @@ Se o comando for executado corretamente e se os registros relacionados forem car
| | |
| --- | --- |
| Número do comando | 42 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
index 0a5977ac1303d9..8d04d4f31ac3da 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/release-menu.md
@@ -60,6 +60,6 @@ Este exemplo mostra as diferentes formas de utilizar este comando:
| | |
| --- | --- |
| Número do comando | 978 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
index bc940569239a7c..9db426924d9527 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-external-data.md
@@ -32,6 +32,6 @@ A continuação deve recarregar os dados utilizando o comando **RELOAD EXTERNAL
| | |
| --- | --- |
| Número do comando | 1135 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
index 8c498c54845b80..cf7f22fa8464f3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/reload-project.md
@@ -40,6 +40,6 @@ Quando o comando for chamado de:
| | |
| --- | --- |
| Número do comando | 1739 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
index 8858662b71c060..c4e2cfaa6aa484 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-from-set.md
@@ -27,7 +27,7 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 561 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
index 531f9f2b8de18e..ce50203c273ffb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/remove-picture-from-library.md
@@ -55,7 +55,7 @@ O exemplo a seguir apaga da biblioteca de imagens toda imagem cujo nome comece p
| | |
| --- | --- |
| Número do comando | 567 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
index 163e593cf7ec46..620712be06a92f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/replace-string.md
@@ -78,6 +78,6 @@ O exemplo abaixo ilustra o uso do parâmetro \* no caso de uma avaliação diacr
| | |
| --- | --- |
| Número do comando | 233 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
index 9fcd615a350abe..9d0829eba615bf 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/request.md
@@ -84,7 +84,7 @@ Mostrará a seguinte caixa de diálogo (em Windows):
| | |
| --- | --- |
| Número do comando | 163 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
index 07bac0db162637..e5f53d6a5c9a2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resize-form-window.md
@@ -51,6 +51,6 @@ Depois da execução desta linha:
| | |
| --- | --- |
| Número do comando | 890 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
index c54b645f5567b3..dd98542883d7a6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-alias.md
@@ -37,7 +37,7 @@ Se *rotaAlias* especifica um alias/atalho, a variável sistema OK assume o valor
| | |
| --- | --- |
| Número do comando | 695 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
index e67916dc0ab84e..1e9298b7220677 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resolve-pointer.md
@@ -114,6 +114,6 @@ Este é um exemplo de ponteiro a um array 2D:
| | |
| --- | --- |
| Número do comando | 394 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
index e227b40fcb133c..538856f9c66f38 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-list.md
@@ -75,6 +75,6 @@ O exemplo a seguir copia os recursos imagem presentes em todos os arquivos de re
| | |
| --- | --- |
| Número do comando | 500 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
index d32a3167dc27f0..4669a4f0bb8e34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resource-type-list.md
@@ -84,6 +84,6 @@ Quando este método de projeto for implementado em um banco, pode escrever:
| | |
| --- | --- |
| Número do comando | 499 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
index a009df459f57e0..c625a6fad50f09 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restart-4d.md
@@ -40,7 +40,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1, cas
| | |
| --- | --- |
| Número do comando | 1292 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
index 1a25e903ba4f9a..bdee2e25f347a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore-info.md
@@ -41,6 +41,6 @@ O tipo e o conteúdo dos parâmetros *info1* e *info2* dependem do valor do *sel
| | |
| --- | --- |
| Número do comando | 889 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
index 2305ca8eb3edec..6dec36e67c12ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/restore.md
@@ -39,7 +39,7 @@ Nota: em um aplicativo 4D compilado e fusionado com 4D Volume Desktop, o comando
| | |
| --- | --- |
| Número do comando | 918 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
index 01c38f04b6f8fb..a1725f89e81e14 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-indexes.md
@@ -33,6 +33,6 @@ The **RESUME INDEXES** command can only be called from 4D Server or a local 4D.
| | |
| --- | --- |
| Número do comando | 1294 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
index e912723796234e..e11239086957cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-process.md
@@ -31,7 +31,7 @@ Se *processo* foi atrasado anteriormente, consulte os comandos [PAUSE PROCESS](p
| | |
| --- | --- |
| Número do comando | 320 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
index b60f4f4c6c61d8..90dad76cb4665c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/resume-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1386 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
index 558c8cddf256b0..de60796cb39780 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/right-click.md
@@ -29,6 +29,6 @@ Este comando deve ser utilizado unicamente no contexto do evento de formulário
| | |
| --- | --- |
| Número do comando | 712 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
index 9b2a4f8bbca70a..b916318b07dd1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/round.md
@@ -43,6 +43,6 @@ O exemplo a seguir ilustra como Round funciona com diferentes argumentos. Cada l
| | |
| --- | --- |
| Número do comando | 94 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
index f9776a5323e0a2..d84e6842376f8a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-list.md
@@ -31,6 +31,6 @@ Seus conteúdos são substituídos se houver uma lista com o mesmo nome.
| | |
| --- | --- |
| Número do comando | 384 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
index 129e55889ce882..62d5c4580c9469 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-record.md
@@ -54,6 +54,6 @@ O exemplo a seguir é parte de um método que lê registros de um documento. Nes
| | |
| --- | --- |
| Número do comando | 53 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
index 4d5ac77f48f461..a143cd6ff75c9a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-related-one.md
@@ -31,6 +31,6 @@ SAVE RELATED ONE não guardará um registro bloqueado. Quando utilize este coman
| | |
| --- | --- |
| Número do comando | 43 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
index 35237aa742398d..47fab03772dcbe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-set.md
@@ -48,7 +48,7 @@ Se o usuário clicar no botão Cancelar na caixa de diálogo de salvar arquivos,
| | |
| --- | --- |
| Número do comando | 184 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
index 64e90c3fc51d26..f62222b609afea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/save-variables.md
@@ -54,7 +54,7 @@ Se as variáveis são guardadas corretamente, a variável sistema OK assume o va
| | |
| --- | --- |
| Número do comando | 75 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
index 9acf029cb5aff2..687af29c3e1bb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-processing-instruction.md
@@ -51,7 +51,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 857 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
index 2851a02f448256..d28c65aa9622a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-cdata.md
@@ -81,7 +81,7 @@ Se ou comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 856 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
index 4183e85e6fcb1a..4be2b0912f76fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-comment.md
@@ -52,7 +52,7 @@ No caso de um erro, o comando devolve um erro que pode ser interceptado usando u
| | |
| --- | --- |
| Número do comando | 852 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
index ff006b54066754..67f5dad141daca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-doctype.md
@@ -52,7 +52,7 @@ Em caso de erro, o comando retorna um erro que possa ser interceptado usando um
| | |
| --- | --- |
| Número do comando | 851 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
index af95e9bc75a5b5..0a790746b957e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-add-xml-element-value.md
@@ -58,7 +58,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 855 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
index 2030a3ad4d8948..64d77bd1cd2946 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-close-xml-element.md
@@ -43,6 +43,6 @@ Se o último elemento aberto for **, a instrução abaixo:
| | |
| --- | --- |
| Número do comando | 854 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
index be3d9f40b1575f..da01ebfc265157 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-cdata.md
@@ -55,7 +55,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 878 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
index bab6fcaa2b11b9..da0a21a86d5925 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-comment.md
@@ -32,7 +32,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 874 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
index d953f1ab0de676..f1e660ea76cc87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-document-values.md
@@ -36,7 +36,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 873 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
index ccc8215dfdfa05..b8ba0ad4c81cbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element-value.md
@@ -50,7 +50,7 @@ Se o comando se executa corretamente, a variável sistema OK toma o valor 1\. Ca
| | |
| --- | --- |
| Número do comando | 877 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
index 1f6a9f1ed0a6fe..18f71cf63e85e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-element.md
@@ -63,7 +63,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 876 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
index 78523f2c695fa6..45656e19d1b9ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-entity.md
@@ -54,7 +54,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 879 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
index 766fb7507a62c0..db498f759a6e65 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-node.md
@@ -62,7 +62,7 @@ Se o comando tiver sido executado corretamente, a variável sistema Ok assume o
| | |
| --- | --- |
| Número do comando | 860 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
index e3d5a7fa15dda3..6d461907e45c2b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-get-xml-processing-instruction.md
@@ -46,6 +46,6 @@ A instrução abaixo devolverá “PI” em *vNom* e “TextProcess” em *vValo
| | |
| --- | --- |
| Número do comando | 875 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
index 1953574c739935..30ac483550ee57 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element-arrays.md
@@ -60,6 +60,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 921 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
index c710a6cf21687f..ccaf8049c468ef 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-open-xml-element.md
@@ -57,7 +57,7 @@ Se passar em tag um caractere inválido, se gera um erro.
| | |
| --- | --- |
| Número do comando | 853 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
index 8025a371e6858f..a3f0a7f69668c0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sax-set-xml-declaration.md
@@ -50,6 +50,6 @@ O código abaixo:
| | |
| --- | --- |
| Número do comando | 858 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
index 692e5e1f813a04..2729f7ca898093 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/scan-index.md
@@ -57,7 +57,7 @@ O seguinte exemplo envia cartas aos 50 piores clientes e aos 50 melhores cliente
| | |
| --- | --- |
| Número do comando | 350 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
index 1a3042eba87c9e..0fb02807ca996a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-coordinates.md
@@ -51,6 +51,6 @@ As imagens abaixo demostram as diferenças entre o tamanho da tela e a área de
| | |
| --- | --- |
| Número do comando | 438 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
index 1fc3b0ece745ac..9081bd5fda837c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-depth.md
@@ -65,6 +65,6 @@ Sua aplicação mostra vários gráficos a cor. Pode escrever em alguma parte em
| | |
| --- | --- |
| Número do comando | 439 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
index 30892339844ab0..09ffcfca0e4f91 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-height.md
@@ -30,6 +30,6 @@ Em Mac OS, Screen height devolve a altura da tela principal, ou seja a tela onde
| | |
| --- | --- |
| Número do comando | 188 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
index b6f84e32ba1965..71b62009300a3a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/screen-width.md
@@ -30,6 +30,6 @@ Em Macintosh, Screen width devolve o largo da tela principal, ou seja o largo da
| | |
| --- | --- |
| Número do comando | 187 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
index bf14ed4dad33d9..b555103279d860 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-document.md
@@ -103,7 +103,7 @@ Se não for selecionado nenhum arquivo (por exemplo, se o usuário clicar no bot
| | |
| --- | --- |
| Número do comando | 905 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
index 60a59854a02d6d..f04faa4317c45d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-folder.md
@@ -95,7 +95,7 @@ O exemplo abaixo lhe permite selecionar a pasta na qual serão armazenadas as im
| | |
| --- | --- |
| Número do comando | 670 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
index 9e6ca62a7f1bda..dfc97cff05e7d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-position.md
@@ -78,6 +78,6 @@ São selecionados os elementos segundo, terceiro e quinto da lista hierárquica
| | |
| --- | --- |
| Número do comando | 381 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
index c5b7ac1dad0cd3..1ceabe51b3d9a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-list-items-by-reference.md
@@ -55,6 +55,6 @@ Se trabalha com os números de referência dos elementos, tenha certeza de const
| | |
| --- | --- |
| Número do comando | 630 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
index e35f038b408902..e37cd4a1e5151e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/select-rgb-color.md
@@ -46,7 +46,7 @@ O efeito da validação desta caixa de diálogo muda dependendo da plataforma:
| | |
| --- | --- |
| Número do comando | 956 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
index 20bd3db7531272..18bb0cc0e3edc3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-list-items.md
@@ -90,6 +90,6 @@ Esta é uma lista chamada *hList,* mostrada no ambiente Aplicação:
| | |
| --- | --- |
| Número do comando | 379 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
index 98123549011004..4f0fb786f7afa0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selected-record-number.md
@@ -41,6 +41,6 @@ O seguinte exemplo guarda o número do registro atual da seleção em uma variá
| | |
| --- | --- |
| Número do comando | 246 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
index be9ed057e763c2..993034a57b19a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-range-to-array.md
@@ -114,6 +114,6 @@ Use os 50 primeiros registros atuais da tabela \[facturas\] para carregar vário
| | |
| --- | --- |
| Número do comando | 368 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
index 4260e54080038c..1d9b96b02d66ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-array.md
@@ -85,6 +85,6 @@ O mesmo exemplo pode ser escrito:
| | |
| --- | --- |
| Número do comando | 260 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
index fb08f9c47c6b84..89b19a82b7423e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/selection-to-json.md
@@ -97,6 +97,6 @@ Pode usar a sintaxe *modelo* para exportar campos de tabelas diferentes:
| | |
| --- | --- |
| Número do comando | 1234 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
index d541db3734dea5..ae2aeb102f1df3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/self.md
@@ -48,6 +48,6 @@ Ver o exemplo do comando [RESOLVE POINTER](resolve-pointer.md "RESOLVE POINTER")
| | |
| --- | --- |
| Número do comando | 308 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
index 150ec16c078b29..82a3450ab9f477 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/semaphore.md
@@ -160,6 +160,6 @@ Sintaxe:
| | |
| --- | --- |
| Número do comando | 143 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
index 020275461c5a1a..6feef35f584220 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-message-to-remote-user.md
@@ -58,6 +58,6 @@ You want to send a message to all users, then send a message to a specific user:
| | |
| --- | --- |
| Número do comando | 1632 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
index 96864af34ba099..7ad504a8526d87 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-packet.md
@@ -88,6 +88,6 @@ Este exemplo ilustra o envio e recuperação de caracteres estendidos através d
| | |
| --- | --- |
| Número do comando | 103 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
index c4bfeecd7a37f7..228171d71276d7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-record.md
@@ -40,6 +40,6 @@ O registro completo é enviado. Isso significa que imagens e BLOBs armazenados o
| | |
| --- | --- |
| Número do comando | 78 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
index babb27a927346e..64644d3e6f02cc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/send-variable.md
@@ -38,6 +38,6 @@ Veja o exemplo para o comando [RECEIVE RECORD](receive-record.md "RECEIVE RECORD
| | |
| --- | --- |
| Número do comando | 80 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
index 041ca73ccd0f9c..c2d247866e2f07 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sequence-number.md
@@ -65,6 +65,6 @@ O exemplo a seguir é parte de um método de formulário. Estas linhas de códig
| | |
| --- | --- |
| Número do comando | 244 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
index 0c57b700c9dcf2..3555b6b97cb02f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-about.md
@@ -49,6 +49,6 @@ O exemplo abaixo reinicializa o comando de menu Sobre 4D:
| | |
| --- | --- |
| Número do comando | 316 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
index ee861138b88e3c..cce3296f25944e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-application-color-scheme.md
@@ -42,6 +42,6 @@ No parâmetro *esquemaCor*, passe um esquema de cores a aplicar:
| | |
| --- | --- |
| Número do comando | 1762 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
index 5deae5a2fde741..fdff3d6bb9e9ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-assert-enabled.md
@@ -44,6 +44,6 @@ Desativação de asserções
| | |
| --- | --- |
| Número do comando | 1131 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
index 390200ecc448b7..c7ca44b8cb414b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-automatic-relations.md
@@ -50,6 +50,6 @@ O exemplo a seguir torna automáticas todas as relações Muitos a Um e restabel
| | |
| --- | --- |
| Número do comando | 310 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
index 0408644f96e3a8..8501876b6357f8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blob-size.md
@@ -56,6 +56,6 @@ O exemplo a seguir cria um BLOB de 16K cheios de 0xFF:
| | |
| --- | --- |
| Número do comando | 606 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
index 5e781c6b7cabea..bc7bc34e35f7e2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-blobs-cache-priority.md
@@ -54,6 +54,6 @@ Em , se quiser definir uma prioridade alta para a tabela \[Customer\]:
| | |
| --- | --- |
| Número do comando | 1425 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
index bb1d7f31485b0b..9ab6523d8cba83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cache-size.md
@@ -45,6 +45,6 @@ Se quiser adicionar 100 MB ao tamanho da cache de seu banco de ados atual. Pode
| | |
| --- | --- |
| Número do comando | 1399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
index 2c59763682f6b3..53a43b89993454 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-channel.md
@@ -175,7 +175,7 @@ Veja os exemplos para os comandos [RECEIVE BUFFER](receive-buffer.md "RECEIVE BU
| | |
| --- | --- |
| Número do comando | 77 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
index 396093ebf31528..4f70dd197fc0ba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-current-printer.md
@@ -60,7 +60,7 @@ Criação de um documento PDF em Windows:
| | |
| --- | --- |
| Número do comando | 787 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
index 9abbf381cc77cd..14e86366b5399f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-cursor.md
@@ -42,6 +42,6 @@ Se quiser que o cursor seja exibido )\[#/code4D\]
| | |
| --- | --- |
| Número do comando | 919 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
index de78f15102e3ad..c14f0f8c7dcc83 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-titles.md
@@ -66,6 +66,6 @@ Ver o exemplo do comando [SET TABLE TITLES](set-table-titles.md).
| | |
| --- | --- |
| Número do comando | 602 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
index 5185097731b586..610aa20e493404 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-field-value-null.md
@@ -34,6 +34,6 @@ O valor NULL é utilizado pelo motor SQL de 4D. Para maior informação, consult
| | |
| --- | --- |
| Número do comando | 965 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
index be49f23ca7a15f..287352471db6ca 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-file-to-pasteboard.md
@@ -33,6 +33,6 @@ O comando admite o asterisco *\** como parâmetro opcional. Automaticamente, qua
| | |
| --- | --- |
| Número do comando | 975 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
index 5160463b2d30d2..10234ae3d94266 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-access.md
@@ -50,7 +50,7 @@ Se quiser promover o usuário atual aos grupos "admin" e "plugins" durante a ses
| | |
| --- | --- |
| Número do comando | 1737 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
index c7b54af7ca0a51..f6d40797a5ff2f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-group-properties.md
@@ -62,7 +62,7 @@ Se você não tiver os acessos de privilégio para chamar Set group properties o
| | |
| --- | --- |
| Número do comando | 614 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
index 55781c270c8a11..8c85caf3f1f942 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-help-menu.md
@@ -65,6 +65,6 @@ Se quiser personalizar o menu **Ajuda** de sua aplicação:
| | |
| --- | --- |
| Número do comando | 1801 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
index 6489f85a35f35d..ab7fe5e94c0490 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index-cache-priority.md
@@ -54,6 +54,6 @@ Em , se quiser estabelecer uma alta prioridade para os índices campo \[Customer
| | |
| --- | --- |
| Número do comando | 1401 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
index 2343edf4d1d55d..f131e23fd43fd6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-index.md
@@ -96,6 +96,6 @@ O exemplo abaixo indexa o campo *\[Clientes\]Num*:
| | |
| --- | --- |
| Número do comando | 344 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
index 0f97d4a257446c..441d5991643e96 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-font.md
@@ -50,6 +50,6 @@ Aplicar a fonte Times ao elemento atual da lista:
| | |
| --- | --- |
| Número do comando | 953 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
index 5dfad97bd5e137..3a90f779effeb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-icon.md
@@ -52,6 +52,6 @@ Queremos atribuir a mesma imagem a dois elementos diferentes. O seguinte código
| | |
| --- | --- |
| Número do comando | 950 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
index 252cd4e8f1eb89..913a6275cc0dbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-parameter.md
@@ -69,6 +69,6 @@ APPEND TO LIST($myList;ak standard action title;1)
| | |
| --- | --- |
| Número do comando | 986 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
index 50473a12b36a01..142c668cc7e95c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item-properties.md
@@ -85,6 +85,6 @@ O exemplo a seguir modifica o texto do elemento atual de *lista* negrito e verme
| | |
| --- | --- |
| Número do comando | 386 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
index abea7a48689e8e..0c5f016389d293 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-item.md
@@ -83,6 +83,6 @@ Ver exemplo do comando [APPEND TO LIST](append-to-list.md "APPEND TO LIST").
| | |
| --- | --- |
| Número do comando | 385 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
index 75671b04ce0235..b75ab92b52dfbc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-list-properties.md
@@ -70,6 +70,6 @@ Se deseja recusar a sublista de expandir/contrair ao dar duplo clique, pode escr
| | |
| --- | --- |
| Número do comando | 387 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
index d6de072df27e2b..fcfbfebe467715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-macro-parameter.md
@@ -62,6 +62,6 @@ Esta macro cria um novo texto que será devolvido ao método que faz a chamada:
| | |
| --- | --- |
| Número do comando | 998 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
index 570f3f5facb957..ad405a330d060d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-bar.md
@@ -124,6 +124,6 @@ Neste exemplo, criaremos por programação, uma barra de menus incluindo os segu
| | |
| --- | --- |
| Número do comando | 67 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
index 3f79bd6a1b3768..5817ba92bf9fee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-icon.md
@@ -49,6 +49,6 @@ Uso de uma imagem localizada na pasta Recursos do banco de dados:
| | |
| --- | --- |
| Número do comando | 984 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
index 2414ce389ef1a5..ead24816b800ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-mark.md
@@ -42,7 +42,7 @@ Ver exemplo para o comando [Get menu item mark](get-menu-item-mark.md "Get menu
| | |
| --- | --- |
| Número do comando | 208 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
index 066f2f7a1dd46e..db56ec962e6a1f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-method.md
@@ -41,6 +41,6 @@ Consulte o exemplo do comando [SET MENU BAR](set-menu-bar.md "SET MENU BAR").
| | |
| --- | --- |
| Número do comando | 982 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
index ff42ac0c6dc0ff..0082471a7a341a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-parameter.md
@@ -47,6 +47,6 @@ Este código oferece um menu que inclui os nomes das janelas abertas e permite r
| | |
| --- | --- |
| Número do comando | 1004 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
index e8858aca133090..ccda53fb2dcc6f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-property.md
@@ -68,6 +68,6 @@ Proprierdade personalizada - Nesta propriedade pode passar qualquer texto person
| | |
| --- | --- |
| Número do comando | 973 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
index 917609c912dd2b..89f70324284603 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-shortcut.md
@@ -82,7 +82,7 @@ Definição do atalho\\shortcut para o item de menu "Close:
| | |
| --- | --- |
| Número do comando | 423 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
index c44ca3c8e2fa92..0eb92c000be840 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item-style.md
@@ -44,7 +44,7 @@ No parâmetro *itemEstilo* pode definir o estilo do elemento. Passe uma combina
| | |
| --- | --- |
| Número do comando | 425 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
index 1c8889b0000543..3ddb26dd87ffa1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-menu-item.md
@@ -38,7 +38,7 @@ Se omitir o parâmetro *processo*, SET MENU ITEM é aplicada à barra de menus d
| | |
| --- | --- |
| Número do comando | 348 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
index 08724708fc07e6..096fb1aa712471 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-file-name.md
@@ -32,6 +32,6 @@ O nome por defeito se utiliza como nome de arquivo quando a imagem se exporta em
| | |
| --- | --- |
| Número do comando | 1172 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
index 6072c79fe081b9..0ff3198ebfec61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-metadata.md
@@ -93,7 +93,7 @@ Quanto todos os metadados são manipulados via uma referência de elementos DOM,
| | |
| --- | --- |
| Número do comando | 1121 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
index 458ed3480a54ad..94735f6dbb3cbb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-library.md
@@ -98,7 +98,7 @@ Se não houver suficiente memória para adicionar a imagem à biblioteca de imag
| | |
| --- | --- |
| Número do comando | 566 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | error |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
index 26869f8eada82d..477fad54c4a7d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-picture-to-pasteboard.md
@@ -54,7 +54,7 @@ Se não houver suficiente memória para colocar uma cópia da imagem na área de
| | |
| --- | --- |
| Número do comando | 521 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
index 587d200faabc56..dbb51debbfdc4e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-plugin-access.md
@@ -49,6 +49,6 @@ Passe no parâmetro *grupo* o nome do grupo cujos usuários estão autorizados a
| | |
| --- | --- |
| Número do comando | 845 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
index 19aaa57019010e..7283a24d6372b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-marker.md
@@ -192,6 +192,6 @@ El método de formulario List\_Imp3 es el siguiente:
| | |
| --- | --- |
| Número do comando | 709 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
index 34bd80231247b2..f3fa50f0ec796b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-option.md
@@ -86,7 +86,7 @@ Se o valor passado por uma *opção* é incorreto ou se não estiver disponível
| | |
| --- | --- |
| Número do comando | 733 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
index fcf698b84f585d..e8839e7c1b0857 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-print-preview.md
@@ -42,6 +42,6 @@ O exemplo a seguir seleciona a opção Pré-visualização em tela para mostrar
| | |
| --- | --- |
| Número do comando | 364 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
index 3846ddba741032..6e6d6708417b84 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-printable-margin.md
@@ -63,6 +63,6 @@ O exemplo a seguir lhe permite obter o tamanho do papel:
| | |
| --- | --- |
| Número do comando | 710 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
index b6da796384460c..bb7ff5426d0d28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-process-variable.md
@@ -102,6 +102,6 @@ Este exemplo escreve a instância das variáveis *v1*, *v2* e *v3* utilizando a
| | |
| --- | --- |
| Número do comando | 370 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
index c63155b0429f6d..9539f0ae51997c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-and-lock.md
@@ -75,7 +75,7 @@ Se o comando não é chamado no contexto de uma transação, um erro é gerado.
| | |
| --- | --- |
| Número do comando | 661 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
index 03747d3013696a..8311b247b14fdc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-destination.md
@@ -260,6 +260,6 @@ Depois de implementar este método de projeto em sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 396 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
index 9e37fcf57b8537..f42f63f9aaed00 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-query-limit.md
@@ -69,6 +69,6 @@ Ver o segundo exemplo do comando [SET QUERY DESTINATION](set-query-destination.m
| | |
| --- | --- |
| Número do comando | 395 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
index 2594ce9bf5c686..b8a49d80f3d879 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-real-comparison-level.md
@@ -41,6 +41,6 @@ Utilizando **SET REAL COMPARISON LEVEL** , pode aumentar ou reduzir o valor epsi
| | |
| --- | --- |
| Número do comando | 623 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
index bc2fdeb8a12a63..edf134bd682376 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-recent-fonts.md
@@ -47,6 +47,6 @@ Then the menu contains:
| | |
| --- | --- |
| Número do comando | 1305 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
index b0a389fbcc7913..6fed23b8ace5cd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-cache-priority.md
@@ -55,6 +55,6 @@ Em , se quiser estabelecer uma prioridade mais alta para os dados escalares \[Cu
| | |
| --- | --- |
| Número do comando | 1400 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
index db33419f1ee5d4..0635d44f89694b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-table-titles.md
@@ -185,6 +185,6 @@ Se quiser remover todos os campos personalizados e nomes de tabela definidos:
| | |
| --- | --- |
| Número do comando | 601 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
index add0df1906b67f..ce0ce5e8d65895 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-text-to-pasteboard.md
@@ -43,7 +43,7 @@ Se o texto se coloca corretamente na área de transferência, a variável OK tom
| | |
| --- | --- |
| Número do comando | 523 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
index 480c7f5a7980ab..696a39dc618c33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timeout.md
@@ -55,7 +55,7 @@ O exemplo a seguir define a porta serial para receber dados. Em seguida, ele def
| | |
| --- | --- |
| Número do comando | 268 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
index 78e6f6774af247..f094f098a0fcaa 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-timer.md
@@ -51,6 +51,6 @@ Imaginemos que você queira, quando um formulário aparece em tela, que o comput
| | |
| --- | --- |
| Número do comando | 645 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
index 35de72115cbdcd..609bdc568fd9d3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-update-folder.md
@@ -59,7 +59,7 @@ Você criou uma pasta "MyUpdates" em seu disco, na qual localizou uma nova vers
| | |
| --- | --- |
| Número do comando | 1291 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
index 803978307a67ca..781b0ffa9bdfd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-alias.md
@@ -46,7 +46,7 @@ Seus usuários se administran através de uma tabela personalizada e utilizam a
| | |
| --- | --- |
| Número do comando | 1666 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
index af1a2da5dbd594..e5ca0429471987 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-user-properties.md
@@ -70,6 +70,6 @@ Se você não tiver os acessos de privilégio para chamar Set user properties ou
| | |
| --- | --- |
| Número do comando | 612 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
index dcb4c75f243def..9d618d92e62cb8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-rect.md
@@ -66,6 +66,6 @@ A janela aparece desta forma:
| | |
| --- | --- |
| Número do comando | 444 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
index 2e0c7ce37232e5..4c526b5dddcfd1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/set-window-title.md
@@ -55,6 +55,6 @@ Enquanto realiza uma entrada de dados em um formulário, você clica em um botã
| | |
| --- | --- |
| Número do comando | 213 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
index c24df7a23432bf..2dee0356cd8da8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/shift-down.md
@@ -57,6 +57,6 @@ O método abaixo de objeto para o botão *bUnBotao* realiza diferentes ações d
| | |
| --- | --- |
| Número do comando | 543 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
index 3201e023231be9..332e46ee195c1c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-menu-bar.md
@@ -33,7 +33,7 @@ Ver exemplo do comando [HIDE MENU BAR](hide-menu-bar.md).
| | |
| --- | --- |
| Número do comando | 431 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Proibido no servidor ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
index 3a7dcd441de488..e22dcf1bc11d59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-on-disk.md
@@ -54,7 +54,7 @@ A variável sistema OK assume o valor 1 se o comando for executado corretamente,
| | |
| --- | --- |
| Número do comando | 922 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
index a515aba1145695..7c189a89abc4a1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-process.md
@@ -37,6 +37,6 @@ O exemplo a seguir mostra um processo chamado Clientes, que foi ocultado previam
| | |
| --- | --- |
| Número do comando | 325 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
index 8aa99d9f6dcaf3..15ae20957e3db8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-tool-bar.md
@@ -31,6 +31,6 @@ Consulte o exemplo do comando [HIDE TOOL BAR](hide-tool-bar.md).
| | |
| --- | --- |
| Número do comando | 433 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
index 47bf686ab4e6f7..26a1c0e755d5ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/show-window.md
@@ -32,6 +32,6 @@ Consulte o exemplo do comando [HIDE WINDOW](hide-window.md).
| | |
| --- | --- |
| Número do comando | 435 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
index d5fdb4035b6679..29c6d6096adc5f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sin.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 17 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
index 4e55615a7cd735..60046b12eb99ff 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/size-of-array.md
@@ -52,6 +52,6 @@ O exemplo a seguir retorna o número de colunas em um array bidimensional:
| | |
| --- | --- |
| Número do comando | 274 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
index d5169dd07de118..3130cc1aaab1e0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-declaration.md
@@ -187,6 +187,6 @@ Este exemplo illustra os resultados dos diferentes tipos de declarações:
| | |
| --- | --- |
| Número do comando | 782 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
index 2bbb3c4bdd82d4..63e39861afab7a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-get-info.md
@@ -40,6 +40,6 @@ Passe no parâmetro *numInfo* o número do tipo de informação SOAP que deseja
| | |
| --- | --- |
| Número do comando | 784 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
index 7d2f65be1bb3e3..b230d9faf2134e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-reject-new-requests.md
@@ -42,6 +42,6 @@ Se quiser recusar qualquer petição nova a seu servidor de serviços web:
| | |
| --- | --- |
| Número do comando | 1636 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
index a4c01ca7d5a69b..40ba01664cbee5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-request.md
@@ -28,6 +28,6 @@ Este comando pode ser utilizado por razões de segurança no *On Web Authenticat
| | |
| --- | --- |
| Número do comando | 783 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
index f72b5291c48a0c..d2444b7940ba80 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/soap-send-fault.md
@@ -50,6 +50,6 @@ Regresando ao exemplo do serviço Web “Raiz\_quadrada” da descrição do com
| | |
| --- | --- |
| Número do comando | 781 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
index d10fe7b66fcbb9..f6c732801fbe69 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-array.md
@@ -87,6 +87,6 @@ Você exibe os nomes da tabela *\[Pessoas\]* em uma janela flutuante. Quando voc
| | |
| --- | --- |
| Número do comando | 229 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
index c0805083da3e69..31581374f46211 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sort-list.md
@@ -62,6 +62,6 @@ A lista se verá assim:
| | |
| --- | --- |
| Número do comando | 391 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
index f981c1497a0441..08adccaa84391c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-add-to-user-dictionary.md
@@ -42,6 +42,6 @@ Adição de nomes próprios ao dicionário de usuário:
| | |
| --- | --- |
| Número do comando | 1214 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
index dd79e97a8b9107..da46f174451025 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-check-text.md
@@ -58,7 +58,7 @@ Queremos contar o número possível de erros em um texto:
| | |
| --- | --- |
| Número do comando | 1215 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
index ea0ea7e1641117..f9fc23652c2e11 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-checking.md
@@ -39,6 +39,6 @@ A verificação ortográfica começa com a primeira palavra de campo ou variáve
| | |
| --- | --- |
| Número do comando | 900 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
index 1a7d6ba24459cb..dc3fd9cd3c9cb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-current-dictionary.md
@@ -39,6 +39,6 @@ Queremos mostrar a linguagem do dicionário atual:
| | |
| --- | --- |
| Número do comando | 1205 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
index 282f9610990834..c3f4f3bd1612f9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-get-dictionary-list.md
@@ -57,6 +57,6 @@ Você coloca "fr-classic+reform1990.aff" e "fr-classic+reform1990.dic" como tamb
| | |
| --- | --- |
| Número do comando | 1204 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
index ba9bbfd6bcae3e..9688afba03e293 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/spell-set-current-dictionary.md
@@ -55,7 +55,7 @@ Loading of the "fr-classic" dictionary found in the Hunspell folder:
| | |
| --- | --- |
| Número do comando | 904 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
index 31552055bbcc71..0b7e6698b93601 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/split-string.md
@@ -63,6 +63,6 @@ O parâmetro *separador* pode ser uma string de múltiplos caracteres:
| | |
| --- | --- |
| Número do comando | 1554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
index 76482ba1b08bed..a9c1080b5dea63 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-cancel-load.md
@@ -57,7 +57,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 824 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
index 4f2c931efa03e5..2a4d97ff6fe828 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-end-selection.md
@@ -44,6 +44,6 @@ Este código devolverá na variável 4D *vNome* os nomes (ename) armazenados na
| | |
| --- | --- |
| Número do comando | 821 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
index 042f5f28163303..1270c772932ccd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute-script.md
@@ -65,7 +65,7 @@ Se o script for executado corretamente (nenhum erro ocorre), a variável Sistema
| | |
| --- | --- |
| Número do comando | 1089 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
index 2e2d03a3eca295..044413ffa9545a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-execute.md
@@ -163,7 +163,7 @@ Se o comando for executado corretamente, a variável sistema OK retorna 1, do co
| | |
| --- | --- |
| Número do comando | 820 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
index 85b8749743949c..dc20c7dfc40c89 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-database.md
@@ -60,7 +60,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1065 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
index d47aa826aa9a02..7435229919066b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-export-selection.md
@@ -42,7 +42,7 @@ Se a exportação for realizada corretamente, a variável OK assume o valor 1\.
| | |
| --- | --- |
| Número do comando | 1064 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
index b9b0a93b3b111a..a95aab02fae9e7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-current-data-source.md
@@ -34,6 +34,6 @@ Este comando permite verificar a fonte de dados atual, geralmente antes de execu
| | |
| --- | --- |
| Número do comando | 990 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
index 71f492dbe38a8d..50107d943063d4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-data-source-list.md
@@ -60,7 +60,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 989 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
index 9bddf0eb395755..359b20042bae33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-last-error.md
@@ -38,6 +38,6 @@ Os dos últimos parâmetros apenas são preenchidos quando o erro vem da fonte O
| | |
| --- | --- |
| Número do comando | 825 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
index 77c33b8d2b0117..55bd0dcb9619fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-get-option.md
@@ -33,7 +33,7 @@ Se o comando for executado corretamente, a variável Sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 819 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
index 9c21b606cf706b..dd07cf791aa83c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-load-record.md
@@ -38,7 +38,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 822 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
index eac948a7751658..34dd401d9326fd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-login.md
@@ -208,7 +208,7 @@ Se a conexão for exitosa, a variável sistema OK assume o valor 1, do contrári
| | |
| --- | --- |
| Número do comando | 817 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
index c6904fcfdb5232..5813744cd097b1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-logout.md
@@ -29,7 +29,7 @@ Se o logout é feito corretamente, a variável Sistema OK assume o valor 1; do c
| | |
| --- | --- |
| Número do comando | 872 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
index b4266380c6afcb..be96d73f22ff0a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-option.md
@@ -51,7 +51,7 @@ Se o comando for executado corretamente, a variável Sistema OK retorna 1\. Do c
| | |
| --- | --- |
| Número do comando | 818 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
index 0dba1473319610..32fb422f16cb34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sql-set-parameter.md
@@ -81,7 +81,7 @@ Se o comando tiver sido executado corretamente, a variável Sistema OK retorna 1
| | |
| --- | --- |
| Número do comando | 823 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
index 78633e57d1c302..273478c552d589 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/square-root.md
@@ -48,6 +48,6 @@ Por exemplo, Hipotenusa (4;3) devolve 5.
| | |
| --- | --- |
| Número do comando | 539 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
index 1ff2825c2feee1..9bd1f6277b4629 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-compute-expressions.md
@@ -72,7 +72,7 @@ Você deseja atualizar as referências incluídas na seleção de texto:
| | |
| --- | --- |
| Número do comando | 1285 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
index d6cc9e524fb20f..4516d71278a616 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-freeze-expressions.md
@@ -72,6 +72,6 @@ Você quer inserir a hora atual ao início do texto e logo congelar ela antes de
| | |
| --- | --- |
| Número do comando | 1282 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
index a613da34dd341f..aecc95668c47d9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-attributes.md
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1094 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
index 45a9ddb8814021..db41c27435cf34 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-content-type.md
@@ -106,7 +106,7 @@ Você deseja mostrar os comandos de um menu contextual baseado no tipo de conte
| | |
| --- | --- |
| Número do comando | 1286 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
index df9a07507e8bfc..e287d12fbbbd2a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-expression.md
@@ -98,7 +98,7 @@ Você quer executar um método 4D quando é feito clique em um link de um usuár
| | |
| --- | --- |
| Número do comando | 1287 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
index 4b3f42d90de8f5..5b7063f1c6323a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-options.md
@@ -40,6 +40,6 @@ Passe o código da opção a ler no parâmetro *opcao*. O comando devolve em *va
| | |
| --- | --- |
| Número do comando | 1290 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
index 2349e6d819eb29..a7561b9a0b45fe 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-plain-text.md
@@ -114,7 +114,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1092 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
index d27aedadcc7f9a..de9b419a973f3c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-text.md
@@ -67,7 +67,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1116 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
index c015a42585f495..1e38e00daf4240 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-get-url.md
@@ -75,6 +75,6 @@ Quando há um evento de duplo clique, se comprova que não existe em realidade u
| | |
| --- | --- |
| Número do comando | 1288 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
index d067bdf52e4ced..cc9d8f5e59eeb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-expression.md
@@ -94,7 +94,7 @@ Deseja substituir o texto selecionado com o resultado de um método projeto:
| | |
| --- | --- |
| Número do comando | 1281 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
index be9a39621a2036..f37f2f665348b5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-insert-url.md
@@ -68,7 +68,7 @@ Você deseja inserir um link ao web site de 4D para substituir o texto seleciona
| | |
| --- | --- |
| Número do comando | 1280 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
index 7035da313593f8..973c34a21f4594 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-attributes.md
@@ -109,7 +109,7 @@ No caso de erro, não modifica a variável. Quando ocorre um erro em uma variáv
| | |
| --- | --- |
| Número do comando | 1093 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
index 1ae4b5598541be..068cc94882427d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-options.md
@@ -67,6 +67,6 @@ O seguinte código permite mudar o modo de visualização da área:
| | |
| --- | --- |
| Número do comando | 1289 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
index 2d3f3e78fcdf80..0b62bab597a2ac 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-plain-text.md
@@ -98,7 +98,7 @@ No caso de um erro, a variável não muda. Quando se produz um erro em uma vari
| | |
| --- | --- |
| Número do comando | 1136 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
index 5f7c81a27d66e4..f1f77bf230acd4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/st-set-text.md
@@ -95,7 +95,7 @@ Consulte o exemplo do comando [ST SET PLAIN TEXT](st-set-plain-text.md).
| | |
| --- | --- |
| Número do comando | 1115 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
index caf38ef4c219f3..012b8d87dc4f4d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-monitoring-activity.md
@@ -98,6 +98,6 @@ Se quiser iniciar/parar o monitoramento e revisão de dados 4D e atividades de d
| | |
| --- | --- |
| Número do comando | 1712 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
index e86821839b3596..316f5be51d44ed 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-sql-server.md
@@ -31,7 +31,7 @@ Se o servidor SQL tiver sido lançado corretamente, a variável Sistema OK assum
| | |
| --- | --- |
| Número do comando | 962 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
index 93bfc49e92d927..3046583e92e646 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/start-transaction.md
@@ -31,6 +31,6 @@ A partir da versão 11 de 4D, pode aninhar várias transações (subtransações
| | |
| --- | --- |
| Número do comando | 239 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
index 695a9a8e37a524..860be26caf8c9f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/std-deviation.md
@@ -64,6 +64,6 @@ Este exemplo obtém o desvio padrão de uma série de valores localizados num ar
| | |
| --- | --- |
| Número do comando | 26 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
index c4432a27f9e300..645f011dc86005 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-monitoring-activity.md
@@ -32,6 +32,6 @@ Ver exemplo para **[START MONITORING ACTIVITY](start-monitoring-activity.md)**.
| | |
| --- | --- |
| Número do comando | 1721 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
index 6f8a956484f650..6af82de68ebad1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/stop-sql-server.md
@@ -29,6 +29,6 @@ Se o servidor SQL foi lançado, todas as conexões SQL são interrompidas e o se
| | |
| --- | --- |
| Número do comando | 963 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
index da5319d7e8d255..daa8fde4f47070 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/storage.md
@@ -88,6 +88,6 @@ Este exemplo mostra uma forma padrão de estabelecer valores de **Armazenamento*
| | |
| --- | --- |
| Número do comando | 1525 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
index 05b1c117d78714..28bb0baeefc058 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/string-list-to-array.md
@@ -48,7 +48,7 @@ Se o recurso for encontrado, a variável sistema OK assume o valor 1, do contrá
| | |
| --- | --- |
| Número do comando | 511 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
index ad28cd42d23555..2caf6ec1f51d66 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/structure-file.md
@@ -79,6 +79,6 @@ O exemplo a seguir pode ser usado para descobrir se o método é chamado de um c
| | |
| --- | --- |
| Número do comando | 489 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
index e0910cf9b91cad..5e2f0c51186aad 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/substring.md
@@ -70,6 +70,6 @@ O seguinte método de projeto adiciona os parágrafos que são encontrados no te
| | |
| --- | --- |
| Número do comando | 12 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
index 289aa12ed78661..d9cc5c722be8c9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/subtotal.md
@@ -67,6 +67,6 @@ A função Subtotal é necessária para mostrar valores em um formulário.
| | |
| --- | --- |
| Número do comando | 97 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
index b0ea2c6618c4d5..34c5f20531ceb6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum-squares.md
@@ -64,6 +64,6 @@ Este exemplo permite obter a soma de quadrados dos valores localizados num array
| | |
| --- | --- |
| Número do comando | 28 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
index 0e8487b01befae..8f3425526b203f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/sum.md
@@ -79,7 +79,7 @@ Para um exemplo de computar um atributo campo objeto, veja o exemplo 3 da descri
| | |
| --- | --- |
| Número do comando | 1 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
index 41f14e2005420c..ef6f95a8ad446c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/suspend-transaction.md
@@ -29,6 +29,6 @@ Para saber mais, consulte *Suspender as transações*.
| | |
| --- | --- |
| Número do comando | 1385 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
index 9759e06fd372ca..6e97fc7b767305 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-export-to-picture.md
@@ -59,6 +59,6 @@ O exemplo abaixo pode ser utilizado para mostrar “Hello World” em uma imagem
| | |
| --- | --- |
| Número do comando | 1017 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
index 22d1644e0cd68d..da68ce1e15da59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-id-by-coordinates.md
@@ -57,7 +57,7 @@ Se *objetoImagem* não contiver uma imagem SVG válida, o comando retorna uma ca
| | |
| --- | --- |
| Número do comando | 1054 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
index b5fbf356b9078a..b39e72a3e62a35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-find-element-ids-by-rect.md
@@ -47,6 +47,6 @@ Todos os elementos cujo retângulo circundante está em intersecção com o ret
| | |
| --- | --- |
| Número do comando | 1109 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
index 38a90682b2297d..c6d140228d538c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-get-attribute.md
@@ -48,6 +48,6 @@ Para obter mais informação acerca dos atributos SVG, consulte a descripção d
| | |
| --- | --- |
| Número do comando | 1056 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
index 71668792fc4ff1..b479247d36d223 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-set-attribute.md
@@ -100,7 +100,7 @@ Modificação do conteúdo de um elemento de tipo texto:
| | |
| --- | --- |
| Número do comando | 1055 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
index 99e556a53227e4..8eb24f261f1bbb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/svg-show-element.md
@@ -34,7 +34,7 @@ Se este comando não for executado no contexto de um formulário ou se for passa
| | |
| --- | --- |
| Número do comando | 1108 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
index 00b6ecd24d27e4..6e6b23a2c7c8eb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-folder.md
@@ -55,6 +55,6 @@ Se omitido o parâmetro *tipo*, a função devolverá a rota à pasta sistema at
| | |
| --- | --- |
| Número do comando | 487 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
index 5756dd933242c1..91b85212c1c350 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/system-info.md
@@ -150,6 +150,6 @@ devolve um objeto que contém a informação abaixo:
| | |
| --- | --- |
| Número do comando | 1571 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
index 6848822275c460..8dabdadb00175e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-fragmentation.md
@@ -47,6 +47,6 @@ Este método lhe permite requisitar a compactação do arquivo de dados no caso
| | |
| --- | --- |
| Número do comando | 1127 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
index 519029087d76d4..9b383debde10f1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table-name.md
@@ -44,6 +44,6 @@ O seguinte é um exemplo de um método genérico que mostra os registros de uma
| | |
| --- | --- |
| Número do comando | 256 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
index 93ddf40fefc6e3..6a66e893c157d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/table.md
@@ -68,6 +68,6 @@ Este exemplo, a variável *numTabela* é igual ao número da tabela a qual perte
| | |
| --- | --- |
| Número do comando | 252 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
index 46aeb70193912b..ab1809804b44b2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tan.md
@@ -29,6 +29,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 19 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
index 51abf30210f8bb..44a7af018ece7c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/temporary-folder.md
@@ -30,6 +30,6 @@ Ver o exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.m
| | |
| --- | --- |
| Número do comando | 486 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
index 2701e0d2c7afdf..8ac09bb1fe4589 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-path-name.md
@@ -56,6 +56,6 @@ O seguinte exemplo prova a presença do documento “Diário” na pasta da base
| | |
| --- | --- |
| Número do comando | 476 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
index 981ec3431ea1d1..80ef4376551718 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/test-semaphore.md
@@ -48,6 +48,6 @@ O exemplo a seguir lhe permite conhecer o estado de um processo (em nosso caso,
| | |
| --- | --- |
| Número do comando | 652 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
index 11de3eea24b0ab..afc06391232fea 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-array.md
@@ -114,6 +114,6 @@ Deve imprimir em uma área de 400 pixeles de largo um texto de um máximo de 80
| | |
| --- | --- |
| Número do comando | 1149 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
index a40071b30a5fec..b25e8a9d8f4506 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-blob.md
@@ -112,6 +112,6 @@ Depois de executar este código:
| | |
| --- | --- |
| Número do comando | 554 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
index 1d5b93a2c4dd9a..22cea08a07f3b0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/text-to-document.md
@@ -88,6 +88,6 @@ Exemplo que permite ao usuário indicar a localização do arquivo a criar:
| | |
| --- | --- |
| Número do comando | 1237 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
index 94fabd42170ddd..e53177e933446c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/throw.md
@@ -111,6 +111,6 @@ throw({componentSignature: "xbox"; errCode: 600; name: "myFileName"; path: "myFi
| | |
| --- | --- |
| Número do comando | 1805 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
index d38b5b18e03de7..df7b70511a2bfb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tickcount.md
@@ -31,6 +31,6 @@ Ver o exemplo do comando [Milliseconds](milliseconds.md "Milliseconds").
| | |
| --- | --- |
| Número do comando | 458 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
index 5b5a7d9eaf783c..e34d197e24a9d1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time-string.md
@@ -42,6 +42,6 @@ O exemplo a seguir mostra uma caixa de alerta com a mensagem, “46 800 segundos
| | |
| --- | --- |
| Número do comando | 180 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
index 246b704d3641d3..b58b3b2c572167 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/time.md
@@ -57,6 +57,6 @@ Pode expressar todo valor numérico como uma hora:
| | |
| --- | --- |
| Número do comando | 179 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
index 5220e3ef76a7be..1733c2192c97c6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/timestamp.md
@@ -48,6 +48,6 @@ Resultado:
| | |
| --- | --- |
| Número do comando | 1445 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
index c59585ab3b3121..2e5a5b32509d47 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/tool-bar-height.md
@@ -30,6 +30,6 @@ Se não se mostrar nenhuma barra de ferramentas, o comando devolve 0.
| | |
| --- | --- |
| Número do comando | 1016 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
index 3d7827114f3e6d..e7d72358baa439 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trace.md
@@ -66,6 +66,6 @@ O método de projeto DEBUG é listado aqui:
| | |
| --- | --- |
| Número do comando | 157 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
index 316002dc4317d8..42116dfd72057d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transaction-level.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 961 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
index 324c996ad586b9..c81646f7fb41a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/transform-picture.md
@@ -78,6 +78,6 @@ Este é um exemplo de corte de uma imagem (a imagem se mostra no formulário com
| | |
| --- | --- |
| Número do comando | 988 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
index a8f48256d41c8f..cf5107bbda31c5 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-event.md
@@ -60,6 +60,6 @@ Utilize o comando **Trigger event** para estruturar seus triggers desta maneira:
| | |
| --- | --- |
| Número do comando | 369 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
index b0f478baa7b365..3ef5751940a151 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-level.md
@@ -30,6 +30,6 @@ Para maior informação sobre níveis de execução, consulte o tema triggers em
| | |
| --- | --- |
| Número do comando | 398 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
index 8659df6b324255..4919d7f94bffae 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trigger-properties.md
@@ -45,6 +45,6 @@ O número de tabela e de registro para o registro relacionado pelo evento de ban
| | |
| --- | --- |
| Número do comando | 399 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
index 5cc1ad9887f6e6..58461d1a68a3f2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/true.md
@@ -35,6 +35,6 @@ O exemplo a seguir atribui a variável *vbOpcoes* a Verdadeiro :
| | |
| --- | --- |
| Número do comando | 214 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
index 260ff6a9bca935..a1121a22f7c715 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/trunc.md
@@ -41,6 +41,6 @@ O exemplo a seguir ilustra a maneira como **Trunc** funciona com diferentes argu
| | |
| --- | --- |
| Número do comando | 95 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
index cb8bd37e9b4cfd..589074f179f1f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/truncate-table.md
@@ -44,7 +44,7 @@ Se o comando tiver sido executado corretamente, a variável sistema OK assume o
| | |
| --- | --- |
| Número do comando | 1051 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
index b9da50bc3133e4..813b3e1cf6d0bd 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/type.md
@@ -147,6 +147,6 @@ Ver exemplo do comando [APPEND DATA TO PASTEBOARD](append-data-to-pasteboard.md
| | |
| --- | --- |
| Número do comando | 295 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
index a057cdd8cce4ae..0b967f8a18fe58 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/undefined.md
@@ -68,6 +68,6 @@ Abaixo os diferentes resultados do comando [Undefined](undefined.md) assim como
| | |
| --- | --- |
| Número do comando | 82 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
index 900d6eff78a388..a93499fa3433d6 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/union.md
@@ -57,6 +57,6 @@ Este exemplo adiciona registros ao conjunto de melhores clientes. Os registros s
| | |
| --- | --- |
| Número do comando | 120 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
index eab8929bc03e5b..acff0da5747616 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unload-record.md
@@ -35,6 +35,6 @@ Se um registro tiver uma quantidade importante de dados, de campos de imagem, ou
| | |
| --- | --- |
| Número do comando | 212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
index 72d6efe4ac9588..9e7ba14863e600 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/unregister-client.md
@@ -39,7 +39,7 @@ Se o registro de um cliente é cancelado corretamente, a variável do sistema OK
| | |
| --- | --- |
| Número do comando | 649 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
index 702ec95d312474..dc10de0936cd94 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/uppercase.md
@@ -43,6 +43,6 @@ Ver o exemplo para [Lowercase](lowercase.md "Lowercase").
| | |
| --- | --- |
| Número do comando | 13 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
index 39839af4f61a47..5d6b94d9141475 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-character-set.md
@@ -58,7 +58,7 @@ A variável de sistema OK é definida como 1 se o mapa é carregado corretamente
| | |
| --- | --- |
| Número do comando | 205 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
index b7632dc66d3620..537b570615bc70 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-named-selection.md
@@ -35,7 +35,7 @@ Lembre que uma seleção temporária é uma representação de uma seleção de
| | |
| --- | --- |
| Número do comando | 332 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
index b7200361d1f848..70f0034e813054 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/use-set.md
@@ -41,7 +41,7 @@ O seguinte exemplo utiliza [LOAD SET](load-set.md) para carregar um conjunto de
| | |
| --- | --- |
| Número do comando | 118 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar o registro atual ||
| Modificar a seleção atual ||
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
index 71ed8f0dde7510..8e398a1759ca02 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/user-in-group.md
@@ -48,6 +48,6 @@ O exemplo abaixo procura faturas específicas. Se o usuário atual estiver no gr
| | |
| --- | --- |
| Número do comando | 338 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
index 9de894423e4c8b..082ff21ee9bb36 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/users-to-blob.md
@@ -37,7 +37,7 @@ Este conceito permite conservar um backup de usuários no banco e implementar um
| | |
| --- | --- |
| Número do comando | 849 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
index cc42039416852d..ebdb2f109e8e78 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-password.md
@@ -65,6 +65,6 @@ No [On 4D Mobile Authentication database method](on-4d-mobile-authentication-dat
| | |
| --- | --- |
| Número do comando | 638 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
index 60920cecbbfe2a..8f45486d5fd487 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/validate-transaction.md
@@ -36,7 +36,7 @@ Note que quando OK for estabelecido como 0, a transação é automaticamente can
| | |
| --- | --- |
| Número do comando | 240 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
index 5d97e07d3f0c14..d54988e3f3063d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/value-type.md
@@ -122,6 +122,6 @@ var $sum : Real
| | |
| --- | --- |
| Número do comando | 1509 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
index 3cae34d5f2c3e4..3caee7e52165ee 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-blob.md
@@ -139,7 +139,7 @@ Depois que esses métodos foram adicionados a sua aplicação, pode escrever:
| | |
| --- | --- |
| Número do comando | 532 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
index 68ff5e5b9c55a5..94dda25d517bba 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variable-to-variable.md
@@ -66,6 +66,6 @@ O exemplo a seguir lê um array processo desde o processo indicado por *$vlProce
| | |
| --- | --- |
| Número do comando | 635 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
index ea1bcb37258aa8..fee656bd24fde4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/variance.md
@@ -72,6 +72,6 @@ Este exemplo permite obter a variância de valores localizados num array:
| | |
| --- | --- |
| Número do comando | 27 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
index f3d094fe7ae447..e585219f632021 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-current-data-file.md
@@ -48,7 +48,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 1008 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
index c5aa97607c4c85..519ada3861fa8b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-data-file.md
@@ -160,7 +160,7 @@ Se o método de callback não existir, a verificação não é efetuada, é gera
| | |
| --- | --- |
| Número do comando | 939 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
index 99c38736146dff..0457f3107951c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/verify-password-hash.md
@@ -59,6 +59,6 @@ Este exemplo verifica um hash de senha previamente criado por [Generate password
| | |
| --- | --- |
| Número do comando | 1534 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
index c23802925d5698..950e1379c4d3f4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/version-type.md
@@ -49,6 +49,6 @@ Esta prova permite executar código diferente dependendo de que versão é uma a
| | |
| --- | --- |
| Número do comando | 495 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
index 924373c324ab02..bdbcfd66c4329e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-attributes.md
@@ -101,7 +101,7 @@ Quando tiver sido adicionado este método de projeto a sua aplicação, pode esc
| | |
| --- | --- |
| Número do comando | 472 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
index 3889715b85ddc5..44de29882d961a 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/volume-list.md
@@ -45,6 +45,6 @@ Utilizando uma área de rolagem chamada *atVolumes*,se quiser mostrar a lista de
| | |
| --- | --- |
| Número do comando | 471 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
index cc512ae0f5812b..a0e2f70f4469d8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-back-url-available.md
@@ -31,6 +31,6 @@ O comando retorna *True* se existe uma URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1026 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
index 1a1f494cd1d981..b188644a84f8fc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-create-url-history-menu.md
@@ -73,6 +73,6 @@ O código abaixo pode estar associado a um botão 3D com menu pop up chamado "An
| | |
| --- | --- |
| Número do comando | 1049 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
index 6e2e8833b2ec13..4b646911340272 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-evaluate-javascript.md
@@ -107,6 +107,6 @@ Logo pode avaliar o código JavaScript desde 4D:
| | |
| --- | --- |
| Número do comando | 1029 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
index 6b58e769ca5e60..532cd129cad168 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-execute-javascript-function.md
@@ -63,6 +63,6 @@ A função JavaScript "getCustomerInfo" recebe um número ID como parâmetro e d
| | |
| --- | --- |
| Número do comando | 1043 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
index 379b046a5f247e..c2fcf3230801a7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-forward-url-available.md
@@ -31,6 +31,6 @@ O comando retorna *True* se existir um URL e do contrário *False*. Particularme
| | |
| --- | --- |
| Número do comando | 1027 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
index f0aa20a5dd7158..b21039de284a8d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-current-url.md
@@ -41,6 +41,6 @@ A página mostrada na URL "www.apple.com" e a página "www.4dhispano.com" está
| | |
| --- | --- |
| Número do comando | 1025 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
index 30732cb3aafade..013a2238cc86a9 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-external-links-filters.md
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando [WA SET EXTERNAL LINKS FILTERS](wa-set-e
| | |
| --- | --- |
| Número do comando | 1033 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
index b1478385c135d7..35e9420c47ea59 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-filtered-url.md
@@ -38,6 +38,6 @@ A URL pode ter sido filtrada por uma das seguintes razões:
| | |
| --- | --- |
| Número do comando | 1035 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
index 2b6c2d388e626f..b9f967310409df 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-last-url-error.md
@@ -40,6 +40,6 @@ Esta informação se retorna em três variáveis:
| | |
| --- | --- |
| Número do comando | 1034 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
index 31cd582cc42cf0..3c8266f7c567a2 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-content.md
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se o conteúdo da página atual não estiv
| | |
| --- | --- |
| Número do comando | 1038 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
index 36bc821b478688..4f42eae4954c28 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-page-title.md
@@ -30,6 +30,6 @@ Este comando retorna uma string vazia se não houver título disponível para o
| | |
| --- | --- |
| Número do comando | 1036 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
index ac716f4e4c48cb..6b761783c45718 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-preference.md
@@ -40,6 +40,6 @@ Passe no parâmetro *valor* uma variável que receberá o valor atual da prefer
| | |
| --- | --- |
| Número do comando | 1042 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
index a7cb89a868e941..767626549f2161 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-filters.md
@@ -32,6 +32,6 @@ Os filtros são instalados pelo comando WA GET URL FILTERS. Se os arrays se rein
| | |
| --- | --- |
| Número do comando | 1031 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
index 0bbc268d953cf8..3faa64fff20f3b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-get-url-history.md
@@ -49,6 +49,6 @@ Nota de Compatibilidade: A partir de 4D v19 R5, esse comando só retorna a URL a
| | |
| --- | --- |
| Número do comando | 1048 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
index fa769253a72bdb..2f491b0cf56b2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-back-url.md
@@ -30,6 +30,6 @@ Se não houver um URL antecedente, o comando não faz nada. Pode testar a dispon
| | |
| --- | --- |
| Número do comando | 1021 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
index 35195d480c92c3..a76f2950365325 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-forward-url.md
@@ -30,6 +30,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1022 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
index d54805b9542cfc..70b149f4bf840c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-url.md
@@ -51,6 +51,6 @@ Este comando tem o mesmo efeito que a modificação do valor da variável "URL"
| | |
| --- | --- |
| Número do comando | 1020 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
index 93728d1c0a4ab7..5436d716387d6b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-open-web-inspector.md
@@ -28,6 +28,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1736 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
index 10b4ff9566a62b..690a8975e82252 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-refresh-current-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1023 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
index 7adeffa62b03e7..c7282dbec45e35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-run-offscreen-area.md
@@ -101,7 +101,7 @@ A variável de sistema OK é estabelecida como 0 se o timeout foi alcançaddo ou
| | |
| --- | --- |
| Número do comando | 1727 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
index f29981bf9c0171..2c0877bda09f5c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-external-links-filters.md
@@ -79,6 +79,6 @@ Este exemplo combina os filtros de sites e de links externos:
| | |
| --- | --- |
| Número do comando | 1032 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
index 55b5120accae59..6cf18be7091bb7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-page-content.md
@@ -51,6 +51,6 @@ Mostrar a frase "Olá mundo!" e definição de uma URL de banco "file:///" banco
| | |
| --- | --- |
| Número do comando | 1037 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
index c4a9ee405d0c9c..c2eb9336cd9b61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-preference.md
@@ -58,6 +58,6 @@ WA SET PREFERENCE( *;"myarea"; WA enable URL drop ; True)
| | |
| --- | --- |
| Número do comando | 1041 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
index b93037b2af090b..c76f0e0557255f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-set-url-filters.md
@@ -145,6 +145,6 @@ Imagine que deseja negar o acesso a endereços IP específicos:
| | |
| --- | --- |
| Número do comando | 1030 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
index a9c21f44ebdc93..898fac0ff600d7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-stop-loading-url.md
@@ -27,6 +27,6 @@ displayed_sidebar: docs
| | |
| --- | --- |
| Número do comando | 1024 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
index 181d4385cf0f39..0e62c260a27490 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-in.md
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1039 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
index 7d98dd328e8d43..db80558b9ad234 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/wa-zoom-out.md
@@ -31,6 +31,6 @@ Em Windows, o alcance deste comando é global: a configuração se conserva depo
| | |
| --- | --- |
| Número do comando | 1040 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
index a974122f5c3d8f..66975a05a69dc1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part-count.md
@@ -30,6 +30,6 @@ Consulte o exemplo do comando [WEB GET BODY PART](web-get-body-part.md).
| | |
| --- | --- |
| Número do comando | 1211 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
index 0d00dc002732b2..50c8c2c3bdddfc 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-body-part.md
@@ -98,6 +98,6 @@ Este é o código do método GetFile:
| | |
| --- | --- |
| Número do comando | 1212 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
index c1da2c04176b5f..5cc8ac7671cd61 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-current-session-id.md
@@ -29,6 +29,6 @@ Se este comando se chama fora do contexto de uma sessão web, devolve uma cadeia
| | |
| --- | --- |
| Número do comando | 1162 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
index 00bbaf87a010f5..d0c03170a5aeb3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-body.md
@@ -54,6 +54,6 @@ Quando o formulário é enviado ao servidor web, a variável $textoPetição rec
| | |
| --- | --- |
| Número do comando | 814 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
index ce866963da24ec..751d86cdc2bcf8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-http-header.md
@@ -123,6 +123,6 @@ O seguinte método permite recuperar o conteúdo de todo campo de cabeçalho de
| | |
| --- | --- |
| Número do comando | 697 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
index d0cd6a1fc2a158..2a2eb018fb867b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-option.md
@@ -69,6 +69,6 @@ Quando usar o seletor web debug log, pode receber uma das constantes abaixo no p
| | |
| --- | --- |
| Número do comando | 1209 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
index 15d647b7df0e80..4937143cbf53f7 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-server-info.md
@@ -94,6 +94,6 @@ Depois de executar o código abaixo:
| | |
| --- | --- |
| Número do comando | 1531 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
index def4ed1281a3fb..78db4808358904 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-statistics.md
@@ -68,6 +68,6 @@ Pode enviar a página "stats.shtm" utilizando um link URL ou utilizando o comand
| | |
| --- | --- |
| Número do comando | 658 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
index 5a23d645060217..d689b3505d7aa1 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-get-variables.md
@@ -69,6 +69,6 @@ A variável vNOME contém ROBERTO e vCIDADE contém PARIS.
| | |
| --- | --- |
| Número do comando | 683 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
index b03257f652ebbd..66f213e98eff35 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-secured-connection.md
@@ -33,6 +33,6 @@ Este comando permite, por exemplo, recusar as tentativas de conexão em modo nã
| | |
| --- | --- |
| Número do comando | 698 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
index 0beb0e3441d67b..b56a079f8ced0e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-is-server-running.md
@@ -43,6 +43,6 @@ Você quer verificar que o servidor web se está executando:
| | |
| --- | --- |
| Número do comando | 1313 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
index 645aa96e7228cc..aa0edc8ac9f4e8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-close-session.md
@@ -41,6 +41,6 @@ Depois da execução deste comando, se um cliente web envia um pedido com uma co
| | |
| --- | --- |
| Número do comando | 1208 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
index 63c6dbddba7e21..33f7b65aed206f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-legacy-get-session-expiration.md
@@ -44,6 +44,6 @@ O parâmetro *dataVenc* recebe a data de vencimento e o parâmetro *horaVenc* re
| | |
| --- | --- |
| Número do comando | 1207 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
index 8c2c57cc4577bb..adc7bd6ed87019 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-blob.md
@@ -43,6 +43,6 @@ Consulte o exemplo da rotina [PICTURE TO BLOB](picture-to-blob.md).
| | |
| --- | --- |
| Número do comando | 654 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
index 8bd34953d8d786..e122e9462f3936 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-file.md
@@ -54,7 +54,7 @@ Se o arquivo a ser enviado existir e o timeout não tiver passado, OK é estabel
| | |
| --- | --- |
| Número do comando | 619 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
index cfb336fc67ce6b..4b2897e66023c8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-http-redirect.md
@@ -62,6 +62,6 @@ End case
| | |
| --- | --- |
| Número do comando | 659 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
index cd90608f3bfbd2..71fb4b8e828f85 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-raw-data.md
@@ -89,6 +89,6 @@ Este exemplo ilustra o uso da opção chunked com o comando **WEB SEND RAW DATA*
| | |
| --- | --- |
| Número do comando | 815 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
index 9165b8bfe67768..a3eb0a067c6788 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-send-text.md
@@ -50,6 +50,6 @@ O método abaixo:
| | |
| --- | --- |
| Número do comando | 677 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
index ead975821b28ba..66d8d2310cb279 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-authenticate.md
@@ -57,6 +57,6 @@ Autenticação com um serviço web localizado atrás de um proxy:
| | |
| --- | --- |
| Número do comando | 786 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
index 9eaaf1dbbd05bd..a17744248aea33 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-call.md
@@ -173,7 +173,7 @@ Se a petição for corretamente encaminhada, e o Web Service a aceitar, a variá
| | |
| --- | --- |
| Número do comando | 778 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
index e5f5c838a54cbf..e36dd4f71224a8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-info.md
@@ -35,6 +35,6 @@ Uma string vazia é retornada quando não há informação disponível, particul
| | |
| --- | --- |
| Número do comando | 780 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
index 0b91e16285e977..15b50ff80df43c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-get-result.md
@@ -57,6 +57,6 @@ Imagine um serviço web que devolve a hora atual em qualquer cidade do mundo. Os
| | |
| --- | --- |
| Número do comando | 779 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
index 43afd7be19ce30..776e0095eda6a0 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-option.md
@@ -68,6 +68,6 @@ Utilização da versão 1.2 do protocolo SOAP:
| | |
| --- | --- |
| Número do comando | 901 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
index 1e4457e42d1126..cb78eb4171c8a4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-service-set-parameter.md
@@ -78,6 +78,6 @@ Este exemplo define dois parâmetros:
| | |
| --- | --- |
| Número do comando | 777 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
index d5d2515aa57b4c..647c92c0b56824 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-home-page.md
@@ -33,6 +33,6 @@ Para não enviar *pagInicio* como página de inicio para o processo web atual, e
| | |
| --- | --- |
| Número do comando | 639 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
index 1f4d74ee2c2b89..b70d00015163a3 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-http-header.md
@@ -73,6 +73,6 @@ Os campos **Date** e **Content-Length** sempre são definidos por padrão por 4D
| | |
| --- | --- |
| Número do comando | 660 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
index 0c4d8549691b03..33974d39d5295f 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-option.md
@@ -89,6 +89,6 @@ Uma entrada registrada se vê dessa maneira:
| | |
| --- | --- |
| Número do comando | 5 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
index d30d2fdbef80a8..5c2b9aae11b17d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-set-root-folder.md
@@ -44,7 +44,7 @@ Se especificar uma rota de acesso inválida, será gerado um erro do administrad
| | |
| --- | --- |
| Número do comando | 634 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | error |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
index 4952b96f3961a2..aeddf8640a0933 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-start-server.md
@@ -31,7 +31,7 @@ Se o servidor Web é iniciado corretamente, Ok assume o valor 1; do contrário O
| | |
| --- | --- |
| Número do comando | 617 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
index 2d0f1e9ed08680..ebda38803e1365 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-stop-server.md
@@ -27,6 +27,6 @@ Se o servidor web não for iniciado, o comando não faz nada.
| | |
| --- | --- |
| Número do comando | 618 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
index 593250ea88f87e..f898087880ba75 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/web-validate-digest.md
@@ -63,6 +63,6 @@ Exemplo de método de base On Web Authentication em modo Digest:
| | |
| --- | --- |
| Número do comando | 946 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
index fa4900ce8f19b2..c9471bb7be66b4 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-kind.md
@@ -45,6 +45,6 @@ Ver o exemplo do comando [WINDOW LIST](window-list.md).
| | |
| --- | --- |
| Número do comando | 445 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
index bf62935d813cf6..13f0b3c22d0b12 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-list.md
@@ -56,6 +56,6 @@ O método de projeto abaixo coloca em mosaico todas as janelas abertas atualment
| | |
| --- | --- |
| Número do comando | 442 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
index 641820ea757815..e0cad6882b5f2c 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/window-process.md
@@ -29,6 +29,6 @@ Se omitir o parâmetro *janela*, Window process devolve o número do processo da
| | |
| --- | --- |
| Número do comando | 446 |
-| Thread-seguro | ✗ |
+| Thread-seguro | no |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
index 7aa0be8b8564e9..9f0e2c2df8b598 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-alt-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 563 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
index e7c3b932e3e103..51e525647b8fb8 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/windows-ctrl-down.md
@@ -37,6 +37,6 @@ Ver exemplo do comando [Shift down](shift-down.md).
| | |
| --- | --- |
| Número do comando | 562 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
index 8a9759e742bbb8..cf142b2ec8633b 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/write-picture-file.md
@@ -56,7 +56,7 @@ Se a execução do comando for correta, a variável sistema Document contém a r
| | |
| --- | --- |
| Número do comando | 680 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK, Document |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
index 10ca52d4ed1487..8dd29daf5d3b18 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-decode.md
@@ -82,6 +82,6 @@ Exemplo do documento XML:
| | |
| --- | --- |
| Número do comando | 1091 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
index 31908f4a791e8f..18ccbf84329510 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-error.md
@@ -35,7 +35,7 @@ Se o comando for executado corretamente, a variável sistema OK assume o valor 1
| | |
| --- | --- |
| Número do comando | 732 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
| Modificar variáveis | OK |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
index ab7a8e2e6c48dc..ac87e91192396e 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-get-options.md
@@ -43,6 +43,6 @@ Em seletor, passe uma das constantes do tema "*XML*" indicando a opção a obter
| | |
| --- | --- |
| Número do comando | 1096 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
index e6fe262cbf2454..453aad392fd4fb 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/xml-set-options.md
@@ -75,6 +75,6 @@ Inserir uma imagem SVG:
| | |
| --- | --- |
| Número do comando | 1090 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
index 09067134e16c5f..01803444eb6927 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands-legacy/year-of.md
@@ -44,6 +44,6 @@ Ver o exemplo do comando [Current date](current-date.md "Current date").
| | |
| --- | --- |
| Número do comando | 25 |
-| Thread-seguro | ✓ |
+| Thread-seguro | yes |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/license-info.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/license-info.md
index 425413649a3176..00f087e04b394d 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/license-info.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/license-info.md
@@ -10,7 +10,7 @@ displayed_sidebar: docs
| Parâmetro | Tipo | | Descrição |
| --------- | ------ | --------------------------- | ------------------------------------ |
-| Resultado | Object | ← | Information about the active licence |
+| Resultado | Object | ← | Information about the active license |
@@ -142,9 +142,9 @@ You want to get information on your current 4D Server license:
## Propriedades
-| | |
-| ----------------- | --------------------------- |
-| Número de comando | 1489 |
-| Thread safe | ✓ |
+| | |
+| ----------------- | ---- |
+| Número de comando | 1489 |
+| Thread safe | sim |
diff --git a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
index ee406cf5ac976a..54cf1fb343ca39 100644
--- a/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
+++ b/i18n/pt/docusaurus-plugin-content-docs/version-21/commands/listbox-get-property.md
@@ -37,6 +37,8 @@ In the *property* parameter, pass a constant indicating the property whose value
| lk column max width | 26 | **[Maximum Width](../FormObjects/properties_CoordinatesAndSizing.md#maximum-width)** property